readme.txt000064400000000721150211537140006541 0ustar00 _ _ | \ | ___ _ _ _ ___ ___ ___ ___ ___ _ _ | |/ ._>| | | |<_-<| . \<_> || . \/ ._>| '_> |_\_|\___.|__/_/ /__/| _/<___|| _/\___.|_| |_| |_| ~ tagDiv 2025 ~ The documentations is here: https://forum.tagdiv.com/newspaper-theme-documentation/ Thanks for your support and feel free to contact us any time :) . Our support forum is here: https://forum.tagdiv.com/ ~ tagDiv 2025 ~search.php000064400000005242150211537140006524 0ustar00
'search', )); ?>

-

archive.php000064400000003262150211537140006700 0ustar00
'archive', )); ?>

bbpress.php000064400000002457150211537140006724 0ustar00

functions.php000064400000054116150211537140007273 0ustar00 'Newspaper default', 'id' => 'td-default', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
' ) ); }); add_filter( 'pre_handle_404', 'tagdiv_pre_handle_404', 10, 2); function tagdiv_pre_handle_404( $param1, $param2 ) { global $_SERVER; $req_scheme = is_ssl() ? 'https' : 'http'; $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ''; $uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; $post_id = url_to_postid($req_scheme . '://' . $host . $uri); if ( defined('TD_COMPOSER') && !empty($post_id) ) { $td_post_theme_settings = td_util::get_post_meta_array($post_id, 'td_post_theme_settings'); $td_default_site_post_template = td_util::get_option('td_default_site_post_template'); $is_smart_list_template = false; // Check if smart list template is specified in post theme settings if (is_array($td_post_theme_settings) && array_key_exists('smart_list_template', $td_post_theme_settings)) { $is_smart_list_template = true; } elseif (td_global::is_tdb_registered()) { // Check if smart list template is used individually or global post template $template_to_check = (!empty($td_post_theme_settings['td_post_template'])) ? $td_post_theme_settings['td_post_template'] : $td_default_site_post_template; if (!empty($template_to_check) && td_global::is_tdb_template($template_to_check, true)) { $td_template_id = td_global::tdb_get_template_id($template_to_check); $td_template_content = get_post_field('post_content', $td_template_id); $is_tdb_smartlist = tdb_util::get_shortcode($td_template_content, 'tdb_single_smartlist'); if ($is_tdb_smartlist) { $is_smart_list_template = true; } } } return $is_smart_list_template; } return $param1; } /** * Theme setup. */ add_action( 'after_setup_theme', function () { /** * Loads the theme's translated strings. */ load_theme_textdomain( strtolower(TD_THEME_NAME ), get_template_directory() . '/translation' ); /** * Theme menu location. */ register_nav_menus( array( 'header-menu' => 'Header Menu (main)', 'footer-menu' => 'Footer Menu', ) ); }); /* ---------------------------------------------------------------------------- * Add theme support for features */ add_theme_support('title-tag'); add_theme_support('post-thumbnails'); add_theme_support('automatic-feed-links'); add_theme_support('html5', array('comment-list', 'comment-form', 'search-form', 'gallery', 'caption')); add_theme_support('woocommerce'); add_theme_support('bbpress'); add_theme_support('align-wide'); add_theme_support('align-full'); global $content_width; if ( !isset($content_width) ) { $content_width = 696; } /* ---------------------------------------------------------------------------- * Woo Commerce */ // breadcrumb add_filter('woocommerce_breadcrumb_defaults', 'tagdiv_woocommerce_breadcrumbs'); function tagdiv_woocommerce_breadcrumbs() { return array( 'delimiter' => ' ', 'wrap_before' => '
', 'wrap_after' => '
', 'before' => '', 'after' => '', 'home' => _x('Home', 'breadcrumb', 'newspaper'), ); } /* ---------------------------------------------------------------------------- * SEOPress */ // Fix custom title meta tags from not applying if( defined( 'SEOPRESS_VERSION' ) ) { add_action( 'after_setup_theme', 'tagdiv_seopress_fix_title_meta', 99999999999999 ); function tagdiv_seopress_fix_title_meta() { add_theme_support( 'title-tag' ); remove_all_filters( 'wp_title' ); remove_all_filters( 'wpseo_title' ); remove_all_actions( 'wp_head', 'theme_slug_render_title' ); add_filter( 'wp_title', 'tagdiv_seopress_remove_title', 9999999999999, 2 ); } function tagdiv_seopress_remove_title( $title, $sep ) { return false; } add_action( 'wp_loaded', 'tagdiv_seopress_buffer_start' ); function tagdiv_seopress_buffer_start() { ob_start( 'tagdiv_seopress_remove_empty_title' ); } function tagdiv_seopress_remove_empty_title( $buffer ) { return str_replace( '', '', $buffer ); } } /* ---------------------------------------------------------------------------- * front end css files */ if( !function_exists('tagdiv_theme_css') ) { function tagdiv_theme_css() { wp_enqueue_style('td-theme', get_stylesheet_uri() ); // load the WooCommerce CSS only when needed if ( class_exists('WooCommerce', false) ) { wp_enqueue_style('td-theme-woo', get_template_directory_uri() . '/style-woocommerce.css' ); } // load the Bbpress CSS only when needed if ( class_exists('bbPress', false) ) { wp_enqueue_style('td-theme-bbpress', get_template_directory_uri() . '/style-bbpress.css' ); } } } add_action('wp_enqueue_scripts', 'tagdiv_theme_css', 1001); /* ---------------------------------------------------------------------------- * dequeue the front end gutenberg block library css files */ if( !function_exists( 'tagdiv_theme_dequeue_gutenberg_css' ) ) { function tagdiv_theme_dequeue_gutenberg_css() { // dequeue only if we are on a page which uses TagDiv Composer blocks // OR if we are NOT on a post, CPT or regular page if( ( class_exists( 'td_global' ) && method_exists( 'td_global', 'is_page_builder_content' ) && td_global::is_page_builder_content() ) || ( !( is_single() && !is_attachment() && get_post_type() != 'product' ) && !is_page() ) ) { wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); wp_dequeue_style( 'wc-blocks-style' ); } } } add_action( 'wp_enqueue_scripts', 'tagdiv_theme_dequeue_gutenberg_css', 100 ); add_filter('upgrader_clear_destination', function($removed, $local_destination, $remote_destination, $args) { usleep(500); return $removed; }, 10, 4); if ( defined('TD_COMPOSER' ) ) { if ( is_admin() ) { $user = get_userdata( get_current_user_id() ); if ( $user instanceof WP_User && in_array( 'administrator', (array) $user->roles ) ) { $value = get_transient( 'td_update_theme_' . TD_THEME_NAME ); if ( false === $value ) { tagdiv_check_theme_version(); } else { $td_theme_update_to_version = get_transient( 'td_update_theme_to_version_' . TD_THEME_NAME ); if ( false !== $td_theme_update_to_version ) { $theme_update_to_version = tagdiv_util::get_option( 'theme_update_to_version' ); if ( ! empty( $theme_update_to_version ) ) { add_filter( 'pre_set_site_transient_update_themes', function ( $transient ) { $to_version = tagdiv_util::get_option( 'theme_update_to_version' ); if ( ! empty( $to_version ) ) { $args = array(); $to_version = json_decode( $to_version, true ); $to_version_keys = array_keys( $to_version ); if ( is_array( $to_version_keys ) && count( $to_version_keys ) ) { $to_version_serial = $to_version_keys[ 0 ]; $to_version_url = $to_version[ $to_version_serial ]; $theme_slug = get_template(); $transient->response[ $theme_slug ] = array( 'theme' => $theme_slug, 'new_version' => $to_version_serial, 'url' => "https://tagdiv.com/" . TD_THEME_NAME, 'clear_destination' => true, 'package' => add_query_arg( $args, $to_version_url ), ); } } return $transient; } ); delete_site_transient( 'update_themes' ); } } else { $td_theme_update_latest_version = get_transient( 'td_update_theme_latest_version_' . TD_THEME_NAME ); if ( false !== $td_theme_update_latest_version ) { add_filter( 'pre_set_site_transient_update_themes', function ( $transient ) { $latest_version = tagdiv_util::get_option( 'theme_update_latest_version' ); if ( ! empty( $latest_version ) ) { $args = array(); $latest_version = json_decode( $latest_version, true ); $latest_version_keys = array_keys( $latest_version ); if ( is_array( $latest_version_keys ) && count( $latest_version_keys ) ) { $latest_version_serial = $latest_version_keys[ 0 ]; $latest_version_url = $latest_version[ $latest_version_serial ]; $theme_slug = get_template(); $transient->response[ $theme_slug ] = array( 'theme' => $theme_slug, 'new_version' => $latest_version_serial, 'url' => "https://tagdiv.com/" . TD_THEME_NAME, 'clear_destination' => true, 'package' => add_query_arg( $args, $latest_version_url ), ); } } return $transient; } ); delete_site_transient( 'update_themes' ); } } } if ( is_plugin_active('td-subscription/td-subscription.php') && defined('TD_SUBSCRIPTION_VERSION') ) { $transient_plugin_subscription = get_transient( 'td_update_plugin_subscription' ); if ( false === $transient_plugin_subscription ) { tagdiv_check_plugin_subscription_version(); } else { $transient_update_plugin_subscription_latest_version = get_transient( 'td_update_plugin_subscription_latest_version' ); if ( false !== $transient_update_plugin_subscription_latest_version ) { $latest_version = tagdiv_util::get_option('plugin_subscription_update_latest_version'); $latest_version = json_decode($latest_version, true); if ( !empty($latest_version) && is_array($latest_version) && count($latest_version) ) { $latest_version_keys = array_keys($latest_version); if ( is_array($latest_version_keys) && count($latest_version_keys) ) { $latest_version_serial = $latest_version_keys[0]; if ( 1 == version_compare($latest_version_serial, TD_SUBSCRIPTION_VERSION) ) { add_filter('pre_set_site_transient_update_plugins', function ($transient) { $latest_version = tagdiv_util::get_option('plugin_subscription_update_latest_version'); $latest_version = json_decode($latest_version, true); if ( !empty($latest_version) ) { $args = array(); $latest_version_keys = array_keys($latest_version); $latest_version_serial = $latest_version_keys[0]; $latest_version_url = $latest_version[$latest_version_serial]; $plugin_id = 'td-subscription/td-subscription.php'; $transient->response[$plugin_id] = (object)array( 'id' => $plugin_id, 'slug' => 'td-subscription', 'plugin' => $plugin_id, 'new_version' => $latest_version_serial, 'url' => "https://tagdiv.com/td_subscription", 'package' => add_query_arg($args, $latest_version_url), ); } return $transient; }); delete_site_transient('update_plugins'); } } } } } } } } add_filter( 'admin_body_class', function ( $classes ) { // Check for Theme updates $new_update_available = false; $latest_version = tagdiv_util::get_option( 'theme_update_latest_version' ); if ( ! empty( $latest_version ) ) { $latest_version = json_decode( $latest_version, true ); $latest_version_keys = array_keys( $latest_version ); if ( is_array( $latest_version_keys ) && count( $latest_version_keys ) ) { $latest_version_serial = $latest_version_keys[ 0 ]; if ( 1 == version_compare( $latest_version_serial, TD_THEME_VERSION ) ) { $new_update_available = true; } } } if ( $new_update_available ) { $classes .= ' td-theme-update'; } // Check for Plugin updates wp_update_plugins(); $plugin_updates = get_site_transient( 'update_plugins' ); foreach ( tagdiv_global::get_td_plugins() as $constant => $settings ) { $plugin_id = 'td-subscription/td-subscription.php'; $plugin_name = strtolower( str_replace('_', '-', $constant ) ); $plugin = $plugin_name . '/' . $plugin_name . '.php'; if ( $plugin === $plugin_id && !empty($plugin_updates->response[$plugin_id]) ) { $classes .= ' td-subscription-plugin-update'; break; } } return $classes; } ); add_filter( 'admin_head', function () { $td_update_theme_ready = get_transient( 'td_update_theme_' . TD_THEME_NAME ); if ( false !== $td_update_theme_ready ) { $td_checked_licence = get_transient( 'TD_CHECKED_LICENSE' ); $update_data = ''; $td_theme_update_to_version = get_transient( 'td_update_theme_to_version_' . TD_THEME_NAME ); if ( false !== $td_theme_update_to_version ) { $data = tagdiv_util::get_option( 'theme_update_to_version' ); if ( ! empty( $data ) ) { $update_data = $data; } } else { $data = tagdiv_util::get_option( 'theme_update_latest_version' ); if ( ! empty( $data ) ) { $update_data = $data; } } if ( ! empty( $update_data ) ) { ob_start(); ?> theme_plugins( array_keys( $current_deactivated_plugins ) ); ob_start(); ?> td_deactivate_current_plugins( true ); return $return; }, 10, 2); add_action( 'current_screen', function() { $current_screen = get_current_screen(); if ( 'update-core' === $current_screen->id && isset( $_REQUEST['update_theme'] )) { add_action('admin_head', function() { $theme_name = $_REQUEST['update_theme']; ob_start(); ?> 0 ) { $new_url = $url . '&enablejsapi=1'; } else { $new_url = $url . '?enablejsapi=1'; } $block_content = str_replace( $url, $new_url, $block_content); } return $block_content; } add_filter('the_content', 'td_remove_inactive_shortcodes'); // post_content is used for header content add_filter('post_content', 'td_remove_inactive_shortcodes'); /** * Function to remove inactive shortcodes from content * * @param string $content The content of the post. * @return string Modified content with inactive shortcodes removed. */ function td_remove_inactive_shortcodes($content) { // Return the content unmodified for administrators if (current_user_can('administrator')) { return $content; } $header_content_filtered = array(); // Check if the content is base64 encoded (header content) if ( tagdiv_util::is_base64($content) ) { $header_content_arr = json_decode(base64_decode($content), true); if ( is_array($header_content_arr) ) { foreach ( $header_content_arr as $index => $header_content ) { $header_content_filtered[$index] = tagdiv_util::remove_inactive_shortcodes($header_content); } } // Encode the filtered content back to base64 $content = base64_encode(json_encode($header_content_filtered)); } else { // Remove inactive shortcodes from basic content $content = tagdiv_util::remove_inactive_shortcodes($content); } return $content; }header.php000064400000016562150211537140006516 0ustar00 > itemscope="itemscope" itemtype="https://schema.org/WebPage">
loop-archive.php000064400000011200150211537140007636 0ustar00 'post', 'showposts' => 6, 'ignore_sticky_posts' => true ); query_posts($args); } if ( have_posts() ) { while ( have_posts() ) : the_post(); if( $column_count == 1 ) { ?>
>
cat_ID); $cat_name = $categories[0]->name; ?>

post_count ) { ?>

woocommerce/archive-product.php000064400000002323150211537140012672 0ustar00
screenshot.png000064400001513372150211537140007442 0ustar00PNG  IHDR%iVtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp Z^P IDATxlH%]?O:+ە$7kfnLIU+Y?_?;{V?O֊W}_P~OZcD/wlM5Lo/^&?ok_fd_Z/6d42[qޖ揼^o+WU^IտK㽱ǯkl|y|ʡww#ϯϦ_QnDUHgjY)c:?Msz5_3_^y?z'y^y-DCF$?q>A|W0ڵ_Goyy}%\_/h|M׉-vlP|y<8Squu7o1y"<ϹD}{>uǥKԮw>׾oc|<{27>/|>?G/ujۆo=gm]{qppm7+jg^u̥7?blkyx_skDBtei+wnַT?nmXҌi-k44s cMb>w>s5F-Mj*ܢ>?vF.JvӷG/Xgb}CĆ_s]\knlރ=̿p} }s+=~ֱϵsHQ,`1Ff~j\Q9v{~8 S4EUgGRB+etkSՕ7%[5b˦&r.xS W47b3'iw}1Ӌc4e4Njsx޺EGZu)[2SxkDcy̕{0e~\?Uf%`c9J2vQҲ"^w$g)?؅u2UKk*V0~W;=Ag͈׍JwCꊨ|8,^+IxS/HRk~fPό1] \bߚ1{nl[yh<Ҝai %&ο=x޶5L=iow?=744Vp (`w{XYeYKN{OʓZf;[Q465J&a/k(àfSX֬ /oaMk:o,`}1{dW턨~lJS#&1b>[^jٶ%ջ_Z9gDƠi}V{…J~j,Ԣ!k( oن_Ѫrߓh G?J"4TIq'0W2EI[7q-r礬LffgьXww0Q|'L;73"`ciM$CqΓ]m ygŲ$k ~o"45Ql(|+VP^rG?o1֝gDN a`}7Ȧf}P ADۇ:أ<7Wu^u ,f5yc06}f] $nw*c*rM/ksCh+i~|Vȳ9E=E]4w8gކZ࠺#>…^mõh\Flzc}bt305\6TWK9Jj(Ug-9 sĂR""Y Ң#poaƅc)'Q% :OAU<ĤP,Jd Q*?)e*rD94WnBLru ~|\$6' g݈V Yg5DLjgN!'VR}X#J3mͲh*TlS={Q|ZgG%:ϱ48X=Ϗ-fR@y(8_v0C+, '$:z0e{k;qK5LJMϛe<ޠHc>ڦY&͠Kë0:9ˌdբv~3AEh+mʣqc8˺R-Aas^Na|Z4ga==z8,vΪ+o(3\Al8m=[Bʂ{{:/l:g'O}f,3O62  z j %N.EWu裹Q=I24Ԧ. 7kZ6 ه;6C *UILiZZTt,fdžΘĽ,9} +?:6d&[GOW1La~y'}k6, CRoljӂhO~ӬQWLX6AVbe"yg`8i}e@Q\اgZ7^ӚLµ_ouj҄XM';E3oL  h]OGlb>C f*5m- t < 64 JV Xցhu9 >PXźF\,]~~YmWC'5^?C| -2zc j]%bzcH0lŎ;7xa}輀ǁaɾ?Ol4 ʲ˂%S<9l.?(*=zIۃ֡po]Pxrp3#ԟ8{@ɔ5r,2M`XQ N0P\nͮhЎj ;*MQϙʎ6BL=cC.Io΍_so{졵/ÂzϗQ /MyfAj+zyǥ~f(#5Q6D A:ᛤB^$ߛmLX{/h+soL;^W7'V.苙);/+uYw O- p :C!HX.R`&gj<B='h=JI͑[q|"`Xg9E]UA i-MT_9Y KF88|ײ,h ) t2P|Ye;j]q'cWM`Dr4 2]~`( ںdIIx&qyviH|9 n>ZmuCvVC\vsV{׿Qԯ; vwiCr|w%n֍ߝ餡u3ρ/bn#9FGZKp"Bb& scI@I93I-V[S ذTt`OԾ.Ӳϯ gz_܏+s^4R3)VNBHlF xm;t1шkJo' $d}12Ж0 :$Zz pIp|e9}j,zQFkhhz{^fqO4eyo7 Rl*G)lo뙚]9 ar™ ('LEƢm[.v}72mV#Gi}M'qa&N [ļoag7m4߃Kc,c57U $L$/aH#֏ӱ {dVbtJÚ8X%<%e5=k7Bm4i DsI.YœNgDvђt$w\VzktbuJ|];{45DUSRfҷtQN3}Mˉ۸s35xё`xˤ8$7\dcK65b(3 , :%5.9;(-W?OkJl< &1qL"!v-ثD'3;I\eu^+ mь'<`6"Mc!P#aEfU```=JujX7 3YȲ my?̈|zG:S]kJ Y@&5.3en,K0gXʼnHor-8q4C,i_Uzj@_F`Ĩ,gէEA$9lJ9nXEDO!Agpc53-[;o^4v"^9EBxijr/$ݘoWq HbX{P_E3rPGB7V7.^)ڔHuRA4XU.yZ?A&ɂ-Z/A G6z` [gIa* M=7Nm @~V )[3rs.DVJ]a',ǙA YnZoĩ.VծauzV|5b?>6=r l7IuIP|]sx@C;)ƻ(刳|!EM%q7޾%C~Fc^)ܤdfZB52dlY$j)l8F(B$X5a'^Hw6m75@kplTHv,~RRK[fR66@ Glp`DZb (B!EɏU0FZvrz+C<}} _ٙ`(7TdʙH"'{6Pk:ÅM%gIb!1an+Kk,fxL "V? kJ5[%pͷh;@2 FRz]Xдz{Fs.s7 AI-MtQv9ʲ}(f((i:|G߾:_(VZ*{f*@˵l0BcW!N̶}RӀ9HwG\O8tJY3rlXLdi軨4gHi P)R??(mi)UԺY@N%-c_y7 n~L{(K dIqJC}~~"'2,Wns8AN:^۸x!jT˩Rd]G͈7Bt- Ns?}9/:@]PVCKLnϣb|BI h\Y7 IRo d N&I,۵qY_X*o1v~X<‘רՐ2X:OK|ȒO@]Y2zʃ]zWvFOBi&d621vsp6]%ɸ|âa$ma(Ƭ="L} u Q,В0bjchOΤbnnYz%3At!s@I ]:UlYKf-0Lj bs! pAkFp[B(uSO*֬ФMm j,bHP1 `~Vj~Zkjf-yZ{5;[]6̘dNM%_d' !si dZ|ڤ-U|JBr'\o$'T#˫RYסfg[ &K펏i,R(f7Kƨ"޷0Dq3dB.a$tQ6m *>n_]a»^o=)2VO BY _u?S\=vl6O"XF'UG[CӢABB`8Wy>bEY$a&%U%z*,IEf+0/ PÊ`-܊F=vAwtFRtó'xOhP]ԝI!cH%*!֎_z֌A.#T+m#^W%` ͨPNG\}zO( ڛ.W "[iN!TE˜GҐ_#S<)<9Cc@Hl,ҐTg3,Zi}q?JZCq霸$k$>1D2;DۺOJӬ5wW n (1X"lo؊#[&H);@B]NZ-n'77|4 T)l8|5 _?SOO21aI3u&jrBfI,k\kޠKZraNWݕs\:D^2_?hk|@KVL+YT/"eo}pE9>W&e)6%xtle1]Ú  A 5i9L䗚oi& |f`wzd4/iU);_;X"wFGmđ};R3 x'.E~|b+RXQ6oMFѕPM?_m\zuߦmb0-ZKz8j(}v bvt;t^/c~oN#ndY6L3ChW-VӮl~3;)- eʁT/GNp}Йg5pE.9X#d%(!2ާbG 7s_ҾbrYH$haS- z3liFjkȫ&1iΡGUؼ^ ΅5#k|[7ej@r[QQKfuHp1w-CO$oq$92!С;<\H]۷zU-xЊ䱘 `K^3P.')Hg~Gd(' Ye2[%8H"½%1LgSnlR 51gz5\GrW'`߳6E DS:sCn;U`(S/^7pPz szTTw Kh0Ћ~rs0zW:Chtt@20Buu51m&3/e,ā!7~O{tP47^}4թZVJm%(D"WGNa-Hڔ=>փ' Q", r!roYaK2lj dH 'Zbˤu Jh ww`-WEV8I~5BXa+ hV\oQQŒǐ uPy%[2R->OdT7 ic]S[D.ɝ.FI1o['f]f߽f 6+AEQ8Ȑ` <x(Cb) C~lXCm7lѐgJN;?YU/}c>'eY(bRn= R@5SX0|O^aKum rpQSuC=>>V0Z)IZ5<ɋyN?fkY{.zK؉.*IZTɼl@nEq=w%1yMc S] 1JkuiUoufV-Un45g`p0lOliLe &!*BK+mr;W2Sr6)3)|SZƒ[>u$j6*T-X#rO+ـ~)  ] V/ ~p>rYc>fc>*!*Y95f f" [3m7d>l+ɼ;B -եhcI|ꏴ۹~rԪF+.{y|774P~MX3)'`֬# ƄoxNKm,NNIp\C򼰛ɸ~K\rM$N#uzu&wX.K3T0G*Qc?{yaWkY`r#KHbC[Fxdg^5aBnӉɜ+7R~?$#\cxɻ@gOUU9{t倝:\Y~a]mFp"R?)Uk<5lm@,RƖkZڿ~ԹaQP J3Z&uh;PXWgY=gy1\mY%@ "_ i$C8#_<|jt$.ɇwpXPsD mx꽆^*KA]0xj4gl1%衎:[{zP[7Y?^C*ԡ*DF}[0-H555?;eCl^%~9|Y*̅1_T ǀb,KN1_;8 EF5ޙ] njC=̪wpxR#5hj d~$ضem*!nnN8&HI%z`żT%z: .5:79#}yz.bHmq֒FY]N/>Zh~U.g@)N6 u״{Èt Nc%ؕ"übԌI"W+\WS^Œh'ĘjҞ@b׸@%of8?:y"|}= hRU]D/[IӘ>X0k ѫ eI6F\sf&vň/֦v1IŕdBGlr],8fk6~vёdqtmRm5MK]%oֶoFdL˪~ Qi<#Z'З3 1I^W^vA/Dַ*7Q4(Iޠpq)wǁ8`x yɈF2}23CV#lMKNXGA~aZlX_]:1LCnHY#"+D9ҁh$KSv*"Ik8eM B fh<a6Nbnɝ ~3vc:H/Cjm+soly0:maALjxt[Xu㐤K]ӄVv G; 삾(좘9@>Hgϱ@G4C {ux[փ^7 c3n=y%m5r+)7d VνV CQQIи2Ç8i Y Px( ôKoŒ6sM ~,w1n?3Sy!ϧ[ J>ٙj.<+\/VͬnKݽGJ#os+4ѵ²(Q( ӱBd8(F눬.1M6tQZP E8Zj/,Z o-n % ʖ[BB8Z'|b Eԅs]4-h^ 1[aur!@-Xf>ԼЏ/.n!gc&] }|~:?߃2^ot6 0mǛrk2-$D ς׶0z΅l.ev(C7 UJ]56ߪ J $m"3_ rm7dUAB*6TQ1f$[pFtȾ?~TY8MB=nJWUJ&g5cåG)",K0cc.cyإI5B"1 O8R)y^Ȃr<q9qd:(V숗C $RJajÜ9"U f(+Ň,~VZ]z%w̖fh{R&&kfqL@->8 Ô%kr0SRf,acu.e쪛z;Ĝ_\Lz%Y`٩> ƅG<FrהEY@Ӭ/_}X͘8m nOi<&|8zJGl7Luv|c4h-2ìͪiF7‡5iaّc$vH:!I!.+PjMvb~o緟u3V6 $[T\Rt?`~o73-$e ؄DdQo@BU1G/f.Y܇j+_aC^/*̒/G]lV>Ce|SP{<: E(u YpF]n9'; NN++y0V;W/N|ނN@{Ÿ^(wP +K˲FlLV?ݲxR o5o[]zG΋Kܧʹy,wU_oqNV3S5eSIwo!.?ЈlPؐ1!sD~00Z/g6`Ne3{&7U]Tv|djI$Do)ӷ' PafuIƶke5twѷ]I婵E{AhV7cTS_TiBT[Q\[bB;~!Ȟ80=7}8BKb  \eS!AWHCqAY,y]n&cQ%f6K28ӯ+,j&kڀ%"+"j踎{V)(B,jP&1VAfd/R-:ZnaaYUN>@ [Pɲ٭t>غu,<KA^GwE1 }X˳%K]`Ji ġq^۬׹KF벿J0!:Fa#K3G+YNS@Zn[Г [QF"{8H.xK(M>3 $E[aJH:Z.i/o_r}Wv whj^׿}}Р\&56ͺxA̮aMr\yWK2;eȆX XEaXRJfa0(]7d|~Qbmϯ_*t1jQ턁j.dbe+@$n& ]l6_Lg4t3X\2샆ds8 }Lp# jqf"7sW/vh,P0U[!a:LK۩*{PXmߠW),a<)e2IɍpIԲG2hqͿ =%87V^[:D#wYd-[tJlxY~%Q/L\+jYX%7H9uyJ-!5_[+{PJ54SiEj#(LKdU8l *22A֘P)^E1MrL G#|CHq3x϶Fr̉,)1IjmF|&*) `AYCJ-LY+ Pw.7s*H]s+c%!9%IL85pgl%_tshyU_s (Qe8ldhd WM2Inlg*Akn)xk|o??_-\8ho??f9Ϳ}}Z-"H^q9"<ԆaԩnX-,-?eiQn{(-\b-G/)ڒK~UQv3+b2Fs LA=$ FV\NA.\|NNì$ԨӖ}skG y;&$|QM [٤ө82gU7 Zy> b޷D:P*C? '+RCt3Onӝ>??s t PˉsƤte9FX6T5v[즘;(Wn.ռKD F `z&@P0򟰸%fL.AoIY1ʭ!™c뭪30,~u=V6q]mwsj aIo Zg6+'8؍o&nq0l^TH57ZI "Imzld~ʚ]ts,ND"\շk&Y a?E('ƍamRL Qzf2]+2̉y[[XxePj tȾ谽TOK5˲X deL<{H _B2r_}E ZɎ *c]m׿|}}8q !C[b iI8ng<+2˒kko~őhqf/n'vЕKx+躰cwQ=꧍q8bq-24QT8= $`8cH+) ) h9'VGyrLEz]RT:QL W#rPgF ݅1aw2z)ybTr *ĵtwOɬO 8~` uNoRZ2@1d, ̰: ?Kme:-Cr=ħ9vgujS 6HJA@*v੤hY2I}~}z(|ϣ}%a'%PoV W ћ $|KVU/<|=rYw\} Ӎf-J^4b?>>UU2kWu$6M~ Xt.J'TG/uX.ٹӲ u͏V_qŮ TSN5ޤ/t&%Cߔ":X'|LyxX]B]i8鎤Uv'?^0l8u!pL4RMȢ F믻VE/}5+K'Nc?hhf@N*ώ1iQ~A.՜h2]'O #+':C̕לfv΍m p}A;$<]w:mC.|cEPMUxBkK\VY'J. L`]1D+QZHG |fRxFoY31*Iv Zgmg\#JV)ApQ&X\PJ^6~*o=CG"Z~}~fԮYpV3ܦn,u`φT.{'Bs}$*h'#VYϋ9PzSd뚃-O [MY\BƧ)+r5V$-1CZxԩ c4PpHȊiӅ:UL[Dϧ,-9$(kMq^7 K#qGU)iZL[`'4cْ!Gx[Xm/r|:çF[X*Pigؐ<&DfZ'C%&Sq:}Y.R_8!gDfl ܅\MQGF'"iKrN=L3@61z?jz/?};y6HSHw6i4FY5p<4z: 8Cu15S)M,`WU y| ;?Xޤ؈vǟ?sZ5벳3 F8E O ҰwGroT#W9(Ly`[6yi0UgOD!t, ΠOB~~n&3&Mc,4,;Z?G-Ez(Yjtޖgc3^  j&.7WNi7p zK1rM +ƉZoB*:/hb<}D"~NPipT7D6\y)Z|SzQ4B eU`fRZ[# %fU' ʗڞ-Ԃfs5{%K.eqVo ( aJ&[wJ8ii!(oVTc旅 %y-FV^s3q 0]jБ8}5ĥgzD,1jpb[tI~떘lMHOӭof7*ոl4t=_ |%TT 9 K(늢|>L JxnJЯ ҡf;i8A_1ҭ mShhU[ *jͥR.uT{~*fxcz{ ,kM̾Sg4tesQ~8[t`p6$۫ ߶,mY)u5U B'rGg{i:)<Ԫifn#qJ\k Xqêa GA~G+G uxi@lkB2`->;`&+l$+5~80M6hwjIX$yqBoKTeSI!4a\^B]h=̼nGcjKJ2:I~@K/JsWtň!"i̢j}1xWbC$#BF(wL`0#%Oàl ?c\Ҋ?pP!Ɂe:5XH3 b=u+3FjPXKo T5 vE#5M:,i1':/%EFs{)O.IyC a.>̢H*SUz j]QiS(؏?q+ǁ@53/uF[3x{>ןkARBg7x1aSǬ<`!ں :kHb`+=M!V1̓yLhnZ4&=f+~~oF%g&@[ Ԍ=SI,1GFoXssZ?ş_hht>({Y\Q: Rm;_N q[M-IJHQkB=0"m:xB WO3};(ŒuZ<>\ZמRcuYn25ƬbrNMih*+1Ge5/$]GWYw \Wu9K{F!DڑbpFpHc|S9^RiBH>kbyM􄖓"upq8 OIu6A8`J&v8h뒣_{ =SKbfY}Mu8cvͭZrAlZٖj!"o#pdBtn5j߳%LJh@\K8g:m*j0ar lXYI)r;o@8# u`k`j0ݨiˈkeR׶a:c Zԑ0e"е',,˅6BZ2>fk 74~?inÒï54WHE # 1_ t䱱a~ΠAtJӏ/6AI|>V8{@.1"Co.@N2z樷1&֤^Fą)۲ =izur_udEm1 Nj$oFzn[MԳby.!r *+Ѭfd$K*z q cЩoh.3ɟ\OK J..Y~(fFꙔ5XvtʅhLeԵMG_#Zly&i4q7W;s%ՑچX+oa֤SDїq.)^Ցcm0Ak3ߎ8:1Z5zx&o' gy8?Qa6*2wny<+~ ebHDZIjdD)U/a"X7jLxmc^ys侜 A&f/~RSe~`UұQ_JPg 5g/fch0cHכ*bKho|܀/]5t:7+*er;UW.F oof0]Օ{\"舺DAbdCAu@$qkBeq*jP?Ujn rUՃIMˣa*7!j;xko/E4&SR՚;MG{KWYk8x!*5/lP0Nk<()RusQfΒgTٷ筯۠X l&:'I/*EGgQNedpv،̇Z|(% fI)I}puIjw$ԬKNjaF4L҉+4+zEHz m!rج)$ptX%$Ga[2.kW-?T2g%ʹV^582}LC9 q”NcFCלhSIżͮrZ ڡo~0"OnC NwPEDM猍;Qx Y)@CESE^v:ާ.a!j.GН|[޻ =k+CbD~M-%.nvQ@2㢟sS۪pNTgj?@X~ W7ZGҴ-5%Cc#sgط &^x1]&.Hfz_],L7Fd-RLdraz UVeMueqL/M6OJeg&EV7*k.@ H\iZ8,йe3DA:0k`tB_`˜ ֺ޲Ң$*B@Fhxaf<:jQ?6^XWZ߸iWf^e Zr7'RiD5W[u܁ˁc΅RTzZ*VqF F;$.6̭V̱m55BQBnl&g7?sh7ceE7hNdΎ p_UVp[1CTfXIrí,df7~?i?ZoG&kwГj=y{؇Us#"|6>!ⰶ8Q7BƬ/E_JKfg sw[܊-4 "ȝ.L !2V*nMp)ɹ$\VkbOnG9FNk I>c츼Ns2TBU]}T8 ֶZXg: EpVZ(0]xUEo.\F7 3Fdf*}2arZGfr]Yts|FS 5MQz&@(4 wto^BW r=HB]?\9.֊M8n~e}3ɿK56J$6rr'?H Uڇe):srᅃ+qU*]m[ jF*?k3::8}_s8d?#@G.3zq%/EZFHM娲0jp@ܛcUKbة*9m{ZN?}T 1λ.'@jxLPʚpI/,EuCp?1$7FͿx+ xǵGAJNWTFA%me &>^W;E^GyKL/yA2~|q T |8?Х#;x Sw) f Iԯ2w1єճw73!G轞&DlCd͵Fyo1_^_, OՕWDzD E3C IgI<Vq vU<.!WdYj}m,k~U ТcX"Ki\Pߜ}(r\l#7h!F~CiJLt]|8&){SEd:j́:%t -/w Ieo"gfx}l*)-J 8gd%e٧+pBz?Ka$͕o񯐵,᢫5\BfS3I#XC/|ϯ]%Bs"*f3_u[@zj̓iwDo4H 'ڕ!|f`(kQ̘Ii g~w =HL^Q!"+/WKPq&5L>ʿ. 7J)/z /;ABps_S!c gGtoMkwAPLEARE^͚ސp +\0ۊ:bv]]>d~[] sţ*&gGܙ^_I; m:]q8ylpBSc _"7 Y@[jAY~u9=Rb?M[*_3 4R5*kUUG{ySM-,X 3ī0YE710Г0˧{¹8]dv7@Oޒ,`ΖF@#۳< ckryߠգB Df~]S;z Xj70pb\SW(؏2g| u\T!$ֻ(HH)=21}ww2]K v{gf3# Aqam]H5ͷ1uLVl/'g˟9ItVzJ< t֪`(R<,SE$,֧i PO4Sh&6Z VCE.a<*'K"\+&%.b{j;MPߧt*"yao$Uǧ !;eY!ve[b? f9\V wcc%‹KռM)s]L ޜBuZf5NR?GXc]EX z^Y7iʭͶ2͔3u索c~O_s9N^.USf¦,$2@E;vhQcϾ&9A EBN?Aad/) ivW-vGnkD[ֽ5;x*zڑEM6xvή C9C A&%ص6Ii|fK Dh½G,qb[5j_i8Gr "4;v*c[Mx.W\PD!+mU`6-Dp[P y0I}EJ`C:'Lqb,L Xd'"e }ITm0 酲V FB<[,Ibx>ET* jvF<QKJ!V& F iQ=5r#bx; [1Z(av7^#hI c)<-Lw90 KOkDo,$vx"9crsGPt!*6=6]Y;M`E3Wsc l)ŪM 1E҇u)}H4e@_3>^5 >CeDe{~\_zh'qz#DV%w| ?NIl 2!{f8G.pvI33f-hJH3)7^)q4 yZ9,,ݨƖ0G@:O Y,Oˠ )a+PUiL*Ҥ8.`;2Ru4~}?Z Q-Wʸ"G fA6Ӵa#XH}Ҷu){q(z L>82c8FHEr.SaK!!AFUWweƕ~1h4JjF~jΖIox5y,Nz_ꫧ Fs/*hsT嚃əoW֡)>F5~Luۧ!RlKb8oi'',~j*"\>`G&L7aS5d1H |X{V7EˊXK|D 6ڱ"Zƅ Xǖ&5YA;q| I.G]y8h~/v_,;dLp eS,* /}MeݮRq=Ct+ U,Tw 5Ԯ[<+kdl 9:Aۖk:Xei3|%\K#QcӖ$'Mp\lSfz6tbˑCSJv`٧ֈ M,kQ}.SDɺP1[r-p-CRƆTBAKOBn0 TȒ7^nv.9nᣍXLz#2(d11X/Mh#;!+C2~IA⬭6Fj5|`4^b4|3P,ڰE\䁱, < 2=arEsn:C2UX6O ^[JyeJ}n>+*qS}*Ck\45m_܉ԍaהdž`Ŀ_QSOa֊NBȘ Ty͡ f Ť]\`,2N  %lɌg$mTӦE#MXc;8{ІjX"Uqފ@l n`c89N YG CzS݃ތ6J9I$X>)r^M)<7ֆCˎ;yoL6+x!`Q" Ef݉|"K]'B104 R9Қ r'-۞.-z͢a03XN\ \~%=v \&qoX]ɭ}TwftҷQVXWPDo9(E2)`y'<ч5e]hY=J߹q (Zp_ F0`_y()ys#d"oP~ط^o!\㩭ĞfaQǎ:qVGJR?xQ0&Z c>6l T6-b3e$֧plݡrerEI.ؚڌvܕ\6s)Ą$a. ՟ovV%yfnU-)*~ б8) ityo0HWtnsLԔޯ_i1fY=!tnS<wsBO#+ P%R{k[x4id6`?ٴ-7kpG%ti*.pOj 僭jo^}B> a p +dBpeWyI(`ZK_1봷'F"4ƴPm J ]qvYgXd?vPײUSHD!b cVZvov$vm{דj4>Y6`Pœ hȭty+=t\kVbp<'n0%cyxҵ;( GZ 5 S_E){[==(d69Q*$GDR}&΀2㗳d,;bz'Ku'4=yIp6(F(;8]GW^}pEWoPd:>Nqbռ9|DAxE=W5OoBV5:LnHvtl_?Nz "x:;,&jH.5oףnu3+Yʨ5rc. j1SXևm|xxʁՙTrnͮёi>fAHX G3t{zL4#4QvyB(ݣLj/^lB \lf&e:6k"qb7[씧X(i{YfDD.SB( X@ߧ|J-A ^-z 7X!I:Rʟ_ܬ17{׽=*8^ܚsGN=(FH_w@cq}|?GcFl͛ ݶ6-*z;>WH-襦om [ /i\蔞pUY="ip\:enŮe$]0rx<[H=Ug'i0r.VAc˯ ՙĢ:ϊf?g#nQLg7xFU[-7i눃}kUQ|>(6flm5?vd <>lI-8T@[0EoDM $vg/`y2⥭*gVgأ\jB߲ew-U8uhe2SN-3/<%Qc.t;$_{!4Ŀs"anxj=g:iת&!l&i;?RXEo٥QKs>/my*"uj&clk =-[p;oXD蟢chQf=5+EȼĔs;4:j2(P,a~3C=y~s5[Xsh eJ=E}nlrw+3R\19reBZ)ıDZ[GX Gx@^5A{sN)xb*n!dmQ)әgw9Y8.7䃰? HvGgFhkh=Zy!Sh nz}!Y}xo, nlF9Tǧ~A>%GztyЭ@kq|n~HmsocK&zmdŞC)]^uxlbS׀ꋎM͌37"5ɤvo]"mu ]?bSwAA2^i e9F8zw֙jKQrںPAʫ q4aVN xǴ;UO,q`Nd/KST.[$y&Fj}zrang_Sd1b0 кIʖ.H‹ݡ/?iUqЧu7&A`H-<`#ɲëvY>KgEԯo7xhS Xh+8EYĻq *z:f"/[ 2{~)Z!aݎdaUo!A˳ճ)YGa +y$ P* :{&ίl˰̝[gN~3oZ2vW@ҽ+ ;c23f:_!܇l ;#!3>pZz(4jұRMƳZƕě_r~kj0sֱ"G~$[/Wz[=]3밮noiHd a8S?]/@`PxT^Zјֳ[U]:ol҄cb0fm,iHޫ܍I>.%ylq"V*eRIP:+|f@1`8BcgK/PC\-ˢz'MwoAG?Y*@OjSUc\NVhH/1 YU_Bj&v3T78::cp~{8m9:?ǏmW(~%5;Hv|_֗jUpP#x$-|ru(ҴWKK+G9XL.`ɢXo[{1"}v@Pr=v\=K֔*_ox\ΌN n\@n3${e4*A7 `M̜&d_:/Ym}Lf7oEYm&>gV{=#djN ANGeĵWܧhf8޿Od=̆#KV2K8V&s͏d2s 9QТ.slyx/oUX44QUmb5A>4]5LoNfohurDCP;t6CbX0$GlW;n #o'֏=mhT ~x_FPZr(s_E7`yjϖ~'3.!B$(IF|[N[0[mJiCɲ-JyQ`|= d =.8&N}j9R6tʼJeKjAyEIM6ayFFAqIDh:MD^İK, 6[doPу5MIcq 0o=fnYfe 3.<tڤ$3}$uz ZnC i6 B/ZD 4r~HlFlzm#$LЙyʸ`֜XA)$KѤV~w +@FjTyR=t`bNH}' $M?怏j V1rk,nS~N;18!ӃҺڗb=&v5f<_w$3Ndq$qV/E;7z_~zw45s(*;J@HdE4z7DXrPf%{Ҍd5_TOH+ٚoz6<6*r8m+}ELLReCGi EÀ=+kZqyqM3NS &Ĩ#;f ]{%80e":lgWbC]r%PZJV#WiV]Ϭ/ Ty㝿:56$dF[>,$_:5'мZ)A(oj^Q=zyloR \lIq'Dm??Z8˺ zX@3lcẌ 3&3TԩNF]!p$ AB0=:^̮j6C9va 3^p:3Y:Oy#E U +15ڣnGB=6yX|둵0J7hQ*'G5UJG ƀj+"` { L(Nf>첍r AMI͘D=!P=tSU Z OWhAWf6yR ЭRUaqp6g4T|c.WUy{GQ""~jnbwPzjDy 1~ΨrX/ 4D-zẀ_jȠ|8a'_ko8Y{<ਁ~(KuK󑟸qs,QZHO:1Hd\t|y{2z[fIMKzG=4{TWl?̙ju#zW9D4ȼ~'uݲQg:􋉪< KuQ*Y66zwcR@oӦ:MҰ`9/s~>ιFٓ"ej9k^ZuDxI;2 GJGݍ/?})s:A-M[ ܋pW$d~ &ʗxr - \7,DA߯ߧO{2㳔q0t&6=E.P/wyS]]OT!}j N?|d0.Y4uA~p5]uwOT\,=['FzZ!"+kt;L ZmwP/UJ#Ͱ T;QMi |a:٥:jNHնA_@茛҂ >:հ>UR ý[D=(G[,ef WoN S7D?l.pJ|kJqTݪ.VL q fL%6T O*gYr\ |~g5' Vo:_J,^]Q`Ip+nW}زz/H3W)',|뱁x?!Y`:Y4`el$5>ǝ>Px<t:m5Q&;0^eʻ im]]nvk5Gͤe/JkkM|kgsX$Of3Vu`3+74A+\ا 5z6!ee+'5l aqѺ{^HjN<(v߉f +gI$DK-+_z:-5~t<jeo'Mbksmwl{fpV~5 "jGf.X]eo9gZsD:WB pEMmi%uE{-o_G.3+k̤".d;FP\|lD(ܓ\t) qsi6z&'D#ؖsi6cXIaԻku 1LBm)/zpF̃ffo kܚHs[pF^Obb dKAk_ٮe0kxS[ )EQ-0}r@ tr;?sGC`h~CuA8v]?IY^5#}J{ Z N}IoþÀol^c!bg, '2JkK7rXswNPb+-3y Y4]~]hvxFMi͓l.sI:/@"qA^cٱ9ݳ@*y/1'η jt^i''YB.*\K-2cX&J2d. jҖN6j}a|߈j+[fdHbUjN0"-"$H <߉,qkPn1N,WCfx՟+#ZҗOWNdt#V-iWmJ{jR_q9A  v⒄W[?`$3:H&jvL9c(I@(8q4mMh/f0ЖEEy"o2D.`h<ͮ2gJՕ%g;_ǑQM؏. NU2˜Oc~_o="E|`usi=n/tlF1iE"vɟŗQ*n,Š;iBlYr7~2TT:8db鮚.Gkws4 JXbfsej3 _4)28l7oJ,^́~un:U`bS2^e&ƒ*WX:RcpLkg1dI<ͽY'a=w8[2OFP]J.ƿdU'~`$u0?}*nq7}IJۖ{Qt ݋?#X<{)r*%cvml:rY5+;XaiIJb BHaA[B>Nܟ5Cvׯ׹it@)_hdʄ/R|&O Tv6}Y٨r*AVPA4UPw77ӺՔGvDX8߂2=,gR+!o3 ÀkZVo &<[+!ʛ'$Wܾ½h]04+U,-F9HW&УKe^.2 )!Tm$Zʹ -ͨ xY}52M\u#]7ӗ%JCb〽V#xJ%r3= %0 uv߸ y JjFNͣb}?3*e[> զ]#22$9W,R.u7R'q` JFBqקh΁=1㣸};-tW{˳qN 4>j su%eUa`*-0U9uYGOxwĹnazaӨqUDNVk~hc=\ɍ`ו\Wl5M L샤U&vޒ(JpCFkbuR>j ]7ȹR,Z#״9,&G]iӺպHP]\omc,j٭q*GXvlz zHoWHm^DB'ibQ걝mc*_MX៏r싂?xg,F)z*:Ү9%} Y~+ƪ,W!}H; dD穟_zP䍞(.[bW/vd_.40Mq6*Z(ja](pmp#pߏUyux.J^=+Lj6R=%g=pWfyl0%B##҂ҼF>~63C>?J8Vpccʚ!@^ U2+cHTu'w(uy`'>`hÄY$v JR+p0=*G܃l 'JGp'׵aiEu\kkwIiv/ʶu:W%n.=Ż;Ic@ +;X~ըzPÚ d %FP G,~¤ru%-W}a-S7;;*~~#3(߶Xg]q*IEc@<=x% gqJdh-8ة"#T$w0 5"/?}f,O'$癠8Kqx u%Vj-ٴ^uUA+W 7BZॻ&7 $\Ro6Sp~{ 8,\|󴶴4%|k)-^ Z'dBrML ubZ <랹QQZ] i VtD-0>D3WoHPp-l]*j,R((lUs(!iA0U7RQ{w˥W(Y-hf_dr̾h k??^,__? S :ML*ϗ+OZIֿA91SkBZx {Dׁ)R6Bd-sL1/Ǔ2R&P~lQJAف-@K\fKaqNi1![w/^:e یPiNkM՚=Mv~6is&װs,4qPf[qr-lXE٥&F a|-m98H0ٜ(?Ш:yiFhTLEd%<f{{b $M{;#P gO jgn {Q5l[s/R\?ш&OKCO|{|հm{*g68|7xzi:AF4`+&eFa`H&F d7nkS=fp ] 'E/eϪWѡa5<"@;6wޥc#n/0whBS}e*Ԩ)606a*d3$IlQ!?rؘR' KB+a/y;;ˆݰ!r{ Mj$8N>LTm ; į@"yB)RL SEy2=Cj?K4X,1{6vRrz~ED7>!>&Șpq@wAA񬪤x步s^=rFyF*6%cN:{7C=&Pd·|R'K l2[-4XzB14Z&s=D&_y0L s6$&:N}iP;ǟ?u`@5L-73i߱7 riM[}2qœ'b~=CyyA P" 57,Ux]eDDD,1-^ܶ4FWDOgm6o%α1&fyޱnװd=bAHg5IHLbY()MŔ 9 tL3>z>4~q'H ewEVBubz["rϩ?Ͻ'[ \ف݆9J#]ٚ7뺛:Px-BbRx6IjG?ܻ ń6`pb>ss>Y܁%g$O}|:5{K`bq9hV2I֥gKT~{xjN\}Z1Y نi[$}Y{0" tA(zQ#0ߍ^}2)촉ɀCfE2´ ^g׉34㏇ѯ(]ז?☁Z7o_0kZѿ #<ן[ڋbm/9YY{=D]!|g԰)A]lNL͖r>¯[fr;`DBplQn_{-qIܮVE{BRwrr3gIDQ5X7AIqLb{갾ӝs5jjJ-Aډt<뜛m$WLB->V!z ׋s&e<$m,;.>&f{S>Z8R᫭`$eяu9ߞK K3݊5QfL vWSzt7m'cr$cb*kt~pf28muQV1Se$1V]84qOsZ',$m{aX0x#tmb^tG*JQZZк | O{q-_ԵOnBilƳ>ߔ7z2u=+#E; //Mo!0u+DA-%o@) bNfSEE#aQ>ϡB"AyVi$Dp5z;3UMj_LT.x<FD#-L@l,q℡ KsbflGcMMM6sIbBR6٦r2D*IނbUĵ(־xg#SBRf]+*ϧZ_t>?ˌIaC/S}mӓ !,H{I΁I `>/dHʔD~NQ<ByKeSvT/ĩ)Eɟ*Y1͖= dADMrxtDa/t# q@Qhzz~9D:3hyR 80 BE(k0o=Ute`٢[:/{i:hv*|gC]7l+aTxtf['O hSr6#g8"i{EL6[A@\EKćhޗڦZYG9F`ȳ4yNF9_< ?Mu~;n S F3L@_{,寯'+\W=s<7-qsqkHT [g&y\_gʰHl(~kCk[ݥ̏.DUԅa{WHuj)%tsCOMTX?BJƢ}lp ׇU{gY'AgC;*#K..yNѥ3exOHq03b#˯Z*寜J1ߔ> ЄZ!(MELOڵ\Q FS>+,!㿽 =h3@`\)'-YO_2$W\,Ne\3ȟմHaa9ْ2cGFG}Ҝ1CI3Cx95i眘 ׂq|:CaW6v:`يn9;@%4=S[Vi-6Nd}mS/x1T 9 ̦M~|E7\yP^2D}̶nlg#i)-qߪos6'kFIh {ip$vDLln4͠#X4 3ɫ6 1] 8裉IB~4.b%6LuuBs;OMϯ2.*2PO}5N0n-6}&gTV[T*15Hw7@.xęˮRƃiXOeB;@Le7Qzh+*`tf՗Koz`+Lil~i-&Z&!OE K]eZ"OC,td Bb(x{Z$i! J](((iI#FuǏb=Y7FA:w7G:?/x8>F"m͜¦˳픨Rʈt6Eढ5G;}dx׃?/ɱ {:Pr)QF}|ΕZ@BgG1Va N 75JF؇] U;&z/Ŀ-):͌soRu8*\m@ ):MCq34W&HB׈>ijy'ۦUӎ/n1%ZfAPDWZ$FzhV$5nu[>tLݷq6; 760lD163ّ> L!|y:ws4s[%m8S,](]̈~_M&?lhGMx5Lvsf6u҉+TNkR5S_v\iw[c ࢄ}MΚy>#6wv8"-bW@78O]UsytGg& t (VxՍvy Nǘ:).2SՇY'8bݵ]xќ Q9Ld, /G ǿmN" [Z;h@ࠖ7kឿ;ڑf;lBL{PjI4(Ov+*уo5&K?sC}k#U24l2Nʀݐ_ƽ#M>`[/yk`#:Xk,71g˚s?d# 2l%6}6MXvRӷ X$yl9JU/>}P :}̕|B&çam]{.`?B5Z0z9r'؍ŭ:U,)tn fƩP.@L5]D|ųT3'6YFD@ ]*gtP`"L#[{C/[Cg(kmPx2ڊqd澜CXGpk$X,90 aS[uyqt3REyx՞(3c &!tf dǷVL ;0$qȵAg|nR`lW)DGCjR}7(Ǒ|tGz]ٱtw]D.<bo1μdgGcݹ"Uáu?IsINM -,gtMK[i,V5+M6b#DVˊX7X9',/ź+oV듴kB!BQC~amNN`_%=bv<鍙85@Eu9:A G0k},:y܅-g"SMll6y93]U&$9  ~yw&NR6%@dI?1M8ܴq @C՞|. rJİ(̌Gj@k[ \ZM/PH7^u )tҩv7 fA՛w!x aJcNzp< YU 5_F0,NEO;4G$&jK 63֥:/oհf0*{nK5^rkl\D &1V܉RN*|5߄EDX^ȳ>3(*&/爕Yv]&3k/?HADY adf|zW)JciqET 2qk:~'6 KY+u`A/<-'o߀LL.b.AgLٖi|"LIS.Kڼ~b L.;*dM$xc^{K~ު)PS,Z'b]dKdg84hӇ#r/5Y6*nX&/e&)=jCz|tySRf]kfpHzLl6?n &TA46( E싌ɍ5b69r;tsDՆĥCW~?H`Vg!zo x&mD }=F0E0Ty692K@ />f䳡v)}RnYè|ծx #Zt۩IAYPՆEަhy4N0l>}&Aw_Əe ¤(rf0:D{L2ԋXtTtήpŝdABSWژBΕc266|jK+At7;CDuILeB8Dt %N7#5d*C~ s ެGDXǣu%8xN îY+v_!A f%1a ^qTzl -gG &<fWcvk8c8fz5k"ॴD1Ob_@L$fw)>&Ӎa>9{-Mp?LǖV]6G"򝃂j fw Sٜ \FFLKs\߯8j.UW͎#%P1Sڜe { =i_& LkW {zi61~xλa­M [睝®w-vzjǥY}s s)&hcwj+F1޴hleJԆB _ul’NlXYM6#*!]<`mbt|"ބXׯXZ_(&ZJD?vk@r5Hl줎WPFa햼wCQ-kCPh^ㇿ@m\ f,`]s me8vsz'TUV*Y2s-*1"2uVeQgcu^84=jifsNHdbcC EP`z/Gve*ǩiC$>TQkT9H.ڍ *!6РiS7Ov#e Xjxx3"_8u~}c%|5o/$KbBeYٙ:&-ERlʑ] ;ˤ$ 58f*N,BXlR@AüPN1}TK ~;l F"Jpi +*g JGslb6^QfLJEFd…: ׅۨ`~E0N.!fV8󽓗Us[Vt̮QhG-:g\[FHYq 0b^WGL/mZ9PG?㞞PDK^FFt}CT02yXeޝV~-be}_e=-CIb-F: ƹ3cuTۿ -%If!aG\iH,S\^lJ[-8c9\Rislc bԌӚxˍǞmm];:jUqBkR 9C'nӫn\&+=2erp7P4)8W(fXDDz=~!x nUUO?:6Pecƃd 0&.imَRZuyU. "VvzU>6h(rϯwa6utDIe%vs9'7;ؒH5.jFLH3=@jodiFFQdPoz2H{&{݅PiUV1.v¶[u.io3dF&U84{7JVmE@R0iC,@$ t[^5 t4pxP@r|nwcd5Pߌ?;-]rX?OG ӻn3 r?Jl:ieU8 x.s!ZģFF\O) "!Bjq޲|!̔~`C!}$I ].|aTcrqfe>uaN:fS} 'z뛪PV*q:VAҹz` #b9. Aر, t^^:*r=saNT?ިv*.C"]TylMH#_8ՃJ]5XaHvY\q4;y TJneh%-Wzw_$ņ.pbZ_KZge&C<V$ P>fIl]atjbTL%i= E|> )-ZdUadZ1c}z7%-FZt:/׌ٷ$a+zԬiv2]6f.;%f; Wxxoo7X@öCcMwg#"^wT!O'*i#DkaQȠ}T91%φMmN8izF r1vǁ[2?lv(J,I_$2J@mߋLoZ= Y VNf|2Ai"֠j8BfX t>G>Gi)&OpkIW\'p72> @'`8C  ƢUêna8B}9-RdEχbSPt Oݷ(r3W/Sܮ.8a^敮 DȖq-ۗ8i dX\`HT<YJon@.JHb%ݸgS -‹@ DY)Д`@+Sh)&$lj'lG7τ~xs|G 2q?XwBR轢%#كhx%7Xbp2\Sg7me|t|=nmFP%: _8.b V $ΰg߿_veb(Bg$]മie=4p9E@2 Qdzxt=x) R;|WI<Šu^& 8 F`^ mۂ2ीΚYz(qs w bgΤҹlOb=ڭzk8#SBl~ l^bw~dLOGdTRu|1aBXA{!^ߤhFݶηWXG24s`y#ocd_{hu~OsPuVRunm]hf1HaFR2YlGKʶ[%>G>2(2RZǖ$7EFcsܡr;+-iD;]C(׈ xVbʳΚD'ײ~T2'#+&|RRf[j~qCDhS'p팣z+hf#͙[^p*JLd`Q6|9-L)&;*l NL'<`:{X^$Ț44X%= \߃sslnˠ~I)&I=UI8^Qӧ N_q8n~ns]&ND}O"ȼ_z!q#NAn+zm1Ҵ;LNBg(njgBqVB!gj,Z7hSԿw>q( 8CVo蕔&Ӽ&PMO!]# |9ǺPf-2ǍH[x5Ŕhwp[$cz{;_r>o>ݔ岹=lۛiwXWsz/6hl3F2l{+hSFn4yƛq} TxPv D@HD 7߱Z(]ATfo>|$/oϟ_~uz<}xw7~vr9ջO>n^^vk_kJSj3E} ɵqvxCylpCi?c\8(v{ZNS&>#32WܸZe:5M=:5/,|ޤ#uGfZ, :"i\,к-Hۦ~Ɔ#HRt] Dߤ/۱VURgD1hL81l\҂|1i'-)]/žH1uYȡ1Z {@9Hqk#Ho _x<+V+T#"wM]J+O-6-O]c'[1jsVUJUAv<^T'A`2_;xT?]F=tB; ؘvn7QINي8TB7U2ɰeK)<AՅżH)yD`g.YK-q/CPnZȮ?B6HfK'%V9rAZ%Wc4#=ZbtĄRi-F껍PDQU~ q4/`5`e\b&Ӳ@g,Z!ҚABIWbQR#Y*{>uäExy֦`8`Xd:n@CwJU~Z@Ey:imjY۔IV 1-r@ C;<2igvVŸ?䐚WKҝl rvq.,OR!c8azJnd^%"縈sߔ`Po1(Oq"^WN`Q L.s|c,b_1ˑ;\` T?LjbenBtϐ\NR 6 (@Os.&YfZj1yHxf j[+1Ms:)AoIUI>M?i=R#G^c J3 Jc epuj70lv\t}fC6+[L7G]Y8LJV6ze5^KC㟡-W&'otNI#wK yFq{/O2l)JʴA  e*L&o^֔O\{-rȵǠ0mF^y|bYTa`UM? G6fS4bJ%vz'[TA>/ Vl$zȬJg|\.!8P?fZ2 9<d#wQ+O"bzVG}8/3c$/BR[ܔQ3 hiad4~9SBi[MU uBU^̅W L\0X}C[!0 t566O;6dKQu&\N7q{"y *pDو}f&~P˪xيj4n#q9Y$j \?h5fyAAguM/W<@BoBrc,-7)&kv0 z*eLӧ?%eEg-Eaw/\^E[ ,tf-v6z 4[/Y?ȵ2?}<*bXmLV4N ZmPl) BNe DCVi!P1+d%#{0 lxOPWLqz P !ɐ4]F8Z /;L`2^'Dm2gs'2q$x.LލZpAn*a-O7YEpUoF Cbr* ,#J1!6ǀ,C*z,r Lwp 2vK-]b|=,:-]G,HMimkB>7zWgN颍t7h [j-jrcQQEB (o& uWzCJ +7*.h)!bʠچa69Z!v>4V9>n:>Yhl&{J#%wiK@f9?D\ EɺQCA5(1{f%q+E>Vv~YnC'"9WF/NuEVQ劫:yqB \E1P^M(~p2jc .YbN̿Hg%79j_dQ+鄜1rJ -5jhwzIsXcfv̞3=,$*I4'0ff,ʪ',˥4k4e\vvcIÔDYfJan&RӊU& WH&ȷ2<#?Vm=f)6HH# ^OISҐu hnܠ&URK)ܩ%t'ԩ9zE%tIE jxQ z R3 t}V_+vuQNke*#h!r21aw D dD8]KHiY_aLj 553oߵѥX6hl>O/B\磐Ӻe 4DydzgwI?x/J}]Ut6~Ӱ!Y`HIq+5י9̦lhLrCt-`(tQE1vޥ׈w%G{;G9VJW)?YE_ij3qզL}ֲhڿbhZz9Wqz,팾Hd}P߿OкWwE1$*ld܆  ZVg;v2gRԸ1  Tb{vvlYSix;T]=k&Ϛ)ipDJ YMQcYUX¸ ]Hɪvo+ '# H9Kӹ~cΨC 1(l*4E ͛|GeX6MU^ \_n6轜'#WS(~+Pq[cX5CU|Z C#+G˄zw҄)jY- X8Aԋx}Y{i?l6V?pHIsvd?nDK$%@$\Aaeґ+9 4ۖF)~2^V$p\&<=}ѩ=diK,n>{VoU#a-eFK>mBzC(up[LbOnR{ag(ª|̰h0ĕ&藬TrdE T1̴lTd&Zk0 & S4H)K}QV20X#m[%2dNJ6C\?>8e6ftkMޗE-Zйex,%XoʳM4S|Ce8h}5Ӭ6~-΂Lt. `b@1~,cDe +*e!La*a;qb6Yjaѩ*Y{>Au0 B(@JL룠<  ;;c cbw*(]H#D^C((Qe*Ŀ4bݪ-d ֛v|@m|z`Qڣ  >ܓqոJ{ i+erVi1kUo6V!̉#;[Q.1rSW#  Iʇ/TfT G2lbZy&7Σ13 ހFcW:8fI0:QEeI!En|bX$:.0Qej]RQ6^F%#qjLuY{..ieWuϵz@ZJC?1B eЖ`=v[O ^ZBmR3*xw&9EPQ xg_˚ >Pa7mFIo:p*G{gCUZ|spAĵ+^4SDK|>/͸)$%ִyUh]|R}&Z%72G/eE0=-9Ěf߷ԩa $a+n2p<A`F8K1 ((P;E%}{WpE!痗Zofqc?lw7CflK^yDcc2o'X AAI+tK'Ys,2KM%D%3(.?Gx:/Vl2c[}cG-gCUI(m}*?U*nity3]HѼ&Ĭ\#9*4]Gtu5\sl92WOҏtxn=9~옌\.nԂ 4椴D$ p}}uɿ$@Vьf7ZY,(7tMme0^[Y=d8029P.p,9nfBV̦H-?'PkH싯 ،x#jɌ2 VwΔ&3T4 N !)hU<P\/߼s3iyz#+/7ݛaDn&:g40 @ru]a?4ւu'ڦ@DﳨUBE\pKz@FI~|4EvloaXmL]|{sji1/mٗQ档QIgХ) {s}Uvn:Jáܠ QiV`;RNG@LrbP})>Aе <_\QvԤ|-iXT+rΓBW[ ,AW:t d3 uj#G4vUlF *^/k~I/Su ):(P̫"W+8GH:)oƽsz)=lilUĖ@? fQdtb;*jr]koKtR\q9vqW!U dyYGg ]s+d0m&sv9#:sEљ!gDpJ`kܢ/~vssstՏU4tMq)K̘)I42%pˠ|Qr ^^U7N p :S<)t&MNHc4D}o̩Y.m}sXoXkV(lcB-`wbyף{vB^ oavLU;i*(0KeҿaO![)A[RZggIv|N0[f:*Sҫ 9?ėuд4cnLCºIzL<9;1c}O~OD+VAͫrRq()%S]|SݻV.KlqvI~ԁt\%YTrkxC2o>(#'nGX)EF"I\"_EǍ}h@1;\߼8_%AR?m5T6e뉨yIy]ۃ 6ܗv 7|p6YQW?7W{,.x_Wٹ5:FoG:5bӝ 8Y (0EWrotC{SH)M(Lj y|'Ww!¹ù-n,I9qAOa7Z`W˒KFwmegq³sup3rJ9!r2W5`=6T3`uRTV%Xϼ|&[++A'c>R_f>e|6;hNa8$ qlIܚE +Tl;<62#.ʥO>0?J2ê9[#^~Vۨ5Z<u-ElZgy+#(z2lw+ 㭍25SxH,Vde?2lhGu><:kҬ[/{5k9S8WTq"#-TNSzjP@ z ^⡢$OCJ ըщJrm -0[4|cՂAbqx]aD U8њg>cG^yۇww_-3- a8+߰hK76 aӗwv?ؤC> a4tr{o}uyUmM!u٤cofXF-i7ggqAӉ|R_D-"Y.Sk͔C&>D8Pѧ*5G&ڟE,Ӹd[JoKҬ<ozfFm#TT䳭dTD-7jd$ 96Ck[(#AwKVKM1!P|aPm@2ha9Q7I\R*Lx>Kl9P c$#(۞`)ng /f_Il8W_v"lԶi-Ԙ!-iχt祿SF};ӴW? f6ú% Dڎ~{k  z!Y\Cr-iѐj ="x Sk\fKn nZʣ.Z%)HEd.W1A}С4Wn!٠ usfo~oy:p=nNpv:vno߿aS_|h@B/jiq$Q@&5SL=̧K1E8a-Vqn?C|: 4\>.ds3O,$evwWhу.wߎg7_}Ur|9Zq-Zo~XN_~>I- 2ڛъ4zzV2T`4h4v?;n7nh۞cӥZަtbpmr֐9Al}Ugy$rH]~ u6Bz^}sP  Wcͥ4ъM9$vV3/_0A Y-_NbKegƘ v_˨S3'Cp`8NåZ\ާFvYI!'ZX=f4u-++:ՐA5xSw3c+ꁔ̣Z..atxK2kaLQ5񨅢 9˯k8َMT$ 5\YS )@Fʺ52eYYFp &bq9¥_YaE[n{sAZrXE:(Wn < 39Sj=(YZV $Hajbk04f«cyTm`m'{raWE3sr?Ztft˲Oxrb#`YJG TN!'t{(1E(ͺR ה~woo?K~7mF.Eߋjlຕn7B7Hj$0o޼{᧟??a[K? >~^֛8uZ,zc 'c~ĪWr;>c{w†(~3Dr/h @̌3GT?ZKHܘ5FCi4c3|qk[2)JTt#|V+ecv= %L=K~gqj.u| 8WT5I(2$h GK6 +.\ޑɪOB-[un6 , O"9.`6<g=̱4 *M1:- D"hєf;V64~֕Ncg߰G?\ 5RDl-堏ñBf\تfk{@]9:؀یHL-V~.% | VڀoCiJN V4;wjK3f dlPA]SSkv9DKa2MV1yyP@VNxd2x%s <}Yq6s;V`"\)YLJU|FmbLݒ0b)$tNFrc6ߍF bLL>x"(+rEg ;/lt4cl 0f_g4B$q|i~/.ࠧ&[x !̬7hRٸk=[|l?W:˚ӻo?nx  b ?λw_>/slOW (Wܼ,o>޼~9ۿywv+:￿_~QAp{.ϳdՌß5z:gϏO_~v޾;>^ro=O?Z{w}*~__/zǿǩ}<Ԉy}~wKts}.u缋wr>.J6 (Z`}ݯ~Y>˗~ifr6)c~YL$as ٝ|樂!^\Ʊؤv6I}nW }"V3ފyI0HeX-[~h9}U֯fk6HgSʣuFmSs-rKi8 -%ҭ;/iW^7x)OԺ9(y|![Z%%H%(|Ů̚LQޖzG0Xp gLĶmTcZFwXڽULF)v&j/cZdd ;uJLh7`DKXqۉd8MeR1N6vO/3!UX^2@ǞZҔ5ސAM=Ƀ\8Kr(~pF9* 2,f䯭dJC!bqz~uLRA?#좞߶r x8'T*BP(z0+f D&lׄ^="fؖؿ5H!0rA^ wFAH?ir)21^ > F*(7d)hin.WC eP,u>Ͷ rpzF+\֋~IWl(<_4=D(C%)Nr&tM3'4e+ $c|:O2)r~$}>}ۧݛ_'eyc-6|`*/vZM?8}ۯZ[9_?!nq|ӥb<pwnO4=<{7x粻Fȓ?8Zf\wyo0nO| C|/nN ˏw7/?}x>^O/|y7>\4KXaʫ5̾i00BZڎGٹ e>.~olHYN,B*+{LQ BwdEHJKs]s? 6^Lf ӨeOu0%Wҙ}َ/жPtk֗AW36TWF|R1M0}(cf^Ve2 af OZnO᧴RօR!y)Y/dSaKs%21\RnyU~LǨvnP.|kWXW(Jj$ dی 9ba'ڬ}B2oR`қbSz Q~CXܻX䩺Bsa (0(D j| [3Y mHwN撉C-a-$y&s ߈1To劇6[Gߞ>|^wRb#'ɂ m߽wm*qM q H><_8+[`YY㰛E kK41dK <8=˓nި^xǹ_^\x:_Z᫯?ycHzb!F^=٢4p! &?% zx6/|wêT~!FBk{-ffu!10}Җ]FadU_кBcwncвgU4xv˔^ƼИ 񯥎K̅kG9"5Z'GPj˰dct4ne(i%SףYZfR/|-, .lE#&StDIѥ6. h%,#SPb"PF̾VV|8N!@K_UjN8Y)%j~B%zX?קί=~w&AyL7˹ˢ?7 j|s3 kݲR S̎2Mn/-xЦ.Saz~5=IڳorrG/QI(QNwÑ7X4^Ar1/Юb}KClwbn_hPciOwWB/R}ŁUɪIӣȢg nt7UKfϬ\`\R[(_do5YxJ:PSl, #61=7$uXgy #-TNlEXCHFj|dehb@ZPS&6V_n/g/e kӨĺqܛ rT n1K c\fR O(&z9n/E;4@!Rw2jhveвlp5wJ r@<77~(9vV92%/G~^2#5>D_.Qr||SB,٧ u̹h\cZڃ\&OqG;ݫ+ oY\b-aXgPkS,vR30Џ2bVTn1ٕp>#bFBS1؜U$v>ՍeB%TymVǞtXtx8X *aU`sزǏA&K;%)^y_롗WJfM`,<.c.x(tYBs Oҝrnw4&osΞz %(a4`q1\amQrs[ϰc#F R2V (3EBxE+z#b\I@mUETz)'{MOfCzNG!BHQvͨbwYO(~QU3۩\; ~ʌ@7'nO^fJnWJ)g)ox|9? Px<ϧ4nvbDǫx^ۭ:͒P"Y9g___(7HҰKg/-5leO0^( >S}bIfsyt9r2~ R6y7 /uLZ:.ϯ/unzYˇWlk^"2.;?=>G vq=\Ka;l^^^.9m;7Xݧc}1yLt~.rOsYnα{h`w"!h7Hg͊nf {YjRڅָX*޺c8a9ޗ.k`6YߥF ܘuIה r!ݺl}J:́_f&$P0(;:ȝS=l!IGc-v_.r~U#=.þdXTo!vrY;t;tWYlh**nkgd cۧtPs.;\6s4U(P_1-[lWc-b'MpNnsK*RqGճèzr,6"IDWH/KhV(&b%Aq8ac@6 4:A/GϭtS ) yfFrȎBh⸢eX[0}Bѝl܏@FU=?{nިfJd(32Zş`]fRGax/zR|V[;ø'QˀhG%&j m<UJHxrsi>¤ϊ'AH/ k7wwcn?/G)(y:m>cS_>w?ep=dT`@sv_oxU.SR{hECӓǓs9b= 鼜Ow x&JKj՗o}`1EkJ5G})ܒ| ꄃ\1E{oޔH\oD>r޻( J螯IJv*2};YaĤ(7.Ѕ"NAKCx* O I.6M *s1q%Qhhȸ/kGmi8l]!h؅hH@Q\# roH۳ JInV@ yv T6pXKץA&&1.|۶Ŗ)ưiFf% ` ޖ ;Oi]~a/@W;!S.ofB}1 DK R(D0go1Zk‹< a +DyciϏXM;4فHs'BP3!YK۪ϸ{KVx}<\= I)qvO=~x2f`0FeT֒u  a[o` @,#gu޸Xaq3#Oc2oa pfrT~(zo >|^ z.jQMxD4C_y_RAT~Jc{{2/XZ!Vȕ4ActfL֬]6x9hAE ׺ǓcI8YL94EHҕP^ VXdLЅЅuQM.u%RŝtbPU%fndg4uTHͶbs%٫^aCǚ?!7]"zFN֤xUHO- +QWPvBj w /:|y)4P"x 2(nhv-r'9ڄYI#ϡL+sI^|9Oc]зHǜci*EI}lqTSr8:.祬G&91ڡ10F5uvodsM&> Ȗc-h!4&+kJD[9"P8t<X6Y49m%{c\T|Pj)Kh7eF\NK Dr~8xS?e/0*u#cpYt)lHۗK H,1zgwSNэo! \ZJ-%yuu4aPh߇ kUYY=&K99v5 %{m唗Yl0%ţҋJlӟGJ)x[ =qՁ_ߍkP-(Ê[ J"%êX$ 6׸jͪi LR4sxČAVݶW`bH*F|& TGDEiΊ gU0\3ɿ3$udߊW84['zm;yc,Ar(CH&UD%6ĨɋK\.R3:j%#F&PhZu؛ c_fCKNxZRj$ɂ a *ؔ;6byh2HDrl_֙v߆ftЦ&Mj# rY@-AK pMڊmnk&<#CϤj&hGO.v(nztx9M_<'ݝ, Z*y8(v2c,so͖PBٌ w[#[> 2v0΄SsFv^˹8?%I]Q _Y|y.ZHKA<FHa{akNItMnRYj95؅'''C:g Lſg 58 VcoyjbAc,ѻ*O_cy|v 6?A? 4ZfǶ+>,D$-^戚>΀ֵl N͠>ųP"Hږ?54iWOu9}j{KP*P,c&xg'Z;YPCidÖ,CT/yyRRdh$2;5ۃ-eICYAhjD\"AO7,1cP/K. /~y\ _CEi[P[hY 'Q4JDXiG; ꄦM&CQPo0"Δ^1 x`]R4ZFR]i74M'Ł0#yq-]LH{"E?CX[m[7!}?dRkj 4U:&VE8L q3m WbxCg?I-}}V|+,r͐oiZC$a]hԷdL?B%!(Q<(qGЂ:rdӜ- #yם 6U%'eK)f)QP?IP dtu}bg'9_Eȁt KO[5X|h2 rb6udY8v3J.zn >/6mD9*ȥk5xMJjT/u$WK%Z iX%/(]Hs-Oa'(/:Jx#D_JC0c#ط:bQF798oB4z NqQ`F QlB@ &et~3br!@Nb{O-f[EQi|q(V*m6fwFJ4n^O՛|d'APV_1֔DҽW*"fɫHӚv`vfm狈SvgU,HX„K[fgl[j]~ ɭ'v9[UV )>Ie8b{lDppp?ϋM ?HvMb-ILFv((rJ2׷nERov|bA<4xXNj)7bE"1!Y ϟb[pt?}“wەǤLXbY?4?Ka/0(ku׶z9~@Qxϯj<2/;*{R!RZ6|o?=*ڙRTp^&2ΐ|j|2EME𲐌;<<0~;oכ^EaA-2 LB]_AoP[mhKTveeyHjӿa+`ג7dJ f6y41e6pcd^\[ uNi*.OÖC uMgSrS{ 5`=neٔ=9QڕYy9 /!"6|}yA&sqM<߃kG=ׯqUlSպclKk;J˺ӕXV0_>4˭,QW[ϓU򹜎GqYCx],R o]72NLOGZPLk.SZ/ |uyoc 0O2Ez8䉨r RNo Cݧg |b,WB:<% R"_lт_rOm:r ,,{4 60Rʎ,^ǚgQ %4ٹ81M} C@g6}| (و"%5>Eq +[Mcr`'L:iJF'$*=ŚB{ KF9fRsh–bVX0gl4덍B8t6wlmU62/:s6lAuACFt2Q]n{b@SzQ//3HAa"t5ߺו%뀶GTӇ,ɈV:›jq>zɾvԷZEΈkm58~ُrUJ`<&-@HՒ"HRڈs"[f';^Q gӻ: Tsw$,f"tO>2\fJ34j5+s&Y/5}UYMY1ɯVqW՟WX6#(d>n=iGFd,kk7-HqiInߞo~7wZ",2#|3GffYJ'PF@.{" ٩gN;tV*}X K{ZĪ:)V۠dCRIыx;e {S*i.ETU rzϿu)_O/*!1|u{g/{?{9ׅ`Ow?lVld~zM;U~Az/ϼ62.ǯW_=yj4 Fw矷e3M_Xx:8}wîM\m,{n< j׌k0#(F5{+kMxU# E]6vꨌNU, ˑ6xdEֺE"CO.e2jUib(>Hn`꺋iTe*tR,|m>?!_ VOLxhb8So ܛͦՂqT(ǔ0;F8փزa a*Yj ;d~O[߶yJ*+K~Tqƶ\<;U|}:]HvJe#ΓΒ /;1b%VsiY%˰f3M4`koj[e>=|3 YY]2xÑIzRlrOBHa!ͫO/W7E/_}ן//mM~yzz?~yJϷҝWӇ?Wo.@U[ofO^o6ӻ}x7ũ_UgyFݞ6xo[n??z?>|_/֯?|.޼^nëȸoOG_7;׿y^ͫ_w?__ͷ_/Lrʵĸ5v&n~GKc-,T r7"}4@#F மb6 %ۭ7Qy6YIEaĖԻ)_f頽k- ;Dp=e2GRDlRTp!=JjJg s_(UxYrZ$>Q&i I3Dzv0EHSX]Q4`Q!"tNfbJC7WB)dHM sZ؊"\;λ HcgkTP|h.lYP7_lY$D1Y~J_M֎ClJ|Y q5l0D}כ&1s$JLNR4Y>"a(m] 53`snc DSVHn1x(: yu(-o۞m>|}`ni 4VT.LQ& .d*s4XQ:57 ցdҖEydU(]tAd"[e iı;Pϰ]ɐ|c0*{,Mn Vdlwpiױ-˯|/o={O2q5~.]Yz7}UmU1rnos{>{_{|5x2nO?|϶wo DY̺tJ&(< 6YՇu eydfa/1WL)d0A`՚Ď22Q!`/2ep~t=ǣkFBEBm1D(IA Փ~g PUkCgמrY7V\RI sn h4ӱ s2zqXg}ζ4i6+"S9gY+YM Lcxu|3踇|62Dh ɑ3Pb! 4 n3ꛪ̜gȜ|:Q e(7 Z*P<&A`s@pF9 '=:06:XnA[AAI+ =ȇ#_Vth=;'8aL4*pH 3[4^?"uFXt:Wk}_7r#T@p:KdQs2'E5!eM|THnR y( Ht1j&B;!l=tWj.":> q,lLHfzZ'p }Yvhz:8gˍ$ig̑Ϧ"<6ȶ*u_mlVc}/BL7}gosᶿzty^p{퇟*U(4*;If <\>?04d[/sUr(==~qk[S_/e~Zԁg~ZJ]>y)?_|o~yS\/[}wzz?|'(chiud OZ7;˃[=ijWcy^dHXPbN @PX]S*q#88M"S >0l d1y4ƅM^Qsɭb=e;$% $zo5fm/V|æ{g%C$^v!-ƃtO0HM;FUUHLc,ӳPbtlo{Dz/ (#8H#-=e74`.8RISmk^#8nvHPU! tS3F:d`/eك4D g[pi 5 IFž\* 44omyLɄyyuwcY)(3 U^`i0_L]5s/myMe+$p=\l ICdu C[fbt&13/͙S`*MܶVBX4tqljz"zp^xJ:n!Q0/bHa{Sx4c3hU+mm]sF7-4lj~${bhEg_7Q eZ\b39,. LѴN0$q@MlCܦ.[شGGp/tI$8Ro8hq tI#|wxoIj&;-r}]Zݮ~-vmn3q߮X|J~G )?3V-ז> {MGA+(HgzZ6/|#4mu ][J۲^s6OOJCz{~Z. @KT-d%ogx'Ѓ$ Fs5'|P߹neq"?F|kFetPDzFOg2OQ:D*fn<)CڽwX@\@ԤkAA h솕۝ TTsLpFk&~ć1eGjIL[RuR:Rjޱ-C+Lua֥I Wlao`fJ8Br³s6@\m20c暹 @/~6[m<PȀLUi\\>Y2ʱ`+cwk f1dKfkjݳu]%?փvx[ 5G+D3QR = ֥ÝAmJfF5GNcY쀖Ev{lqکt~ 1dW,TT0lM4h}{Xβa\fnYAjF, $#4 4K#: 2FeI&- k6}%zzgB!RX\==0&h.)JC;(| iF)\؜vn4jcק;Jl1 y'?m KXr2Nb l4 2HX% Tm1.E)jy('56P\)N|ڡKáe]s/y͑6 '8r#"umr*DC .=5D"Qa>gq@@ja NK5(zW=jy1RϤN!ʹkGĐDMt Q6miyY t.B ؋h?@cmC%8M]l[)ݝE6,@ ^Fӵe಺E-i;c;Un_| R;OH21#vr~?);[2p7>I`0)S.QߘmZ.h 搻 2t231d'1C+tE])jB.WEד?]Jp1 %$Z{r\KF-h]:^V0tJ*n )83|8BZ3Tu]m/Lg{9w &`6wsAP|AT[ 1#b5xnKLF7?vFM)5ID‚W$;ؘ ]dAc+\Z-BHHD % =%R$\,\V[W Y~bO F(pcWx> DUG+I Q1;G* bBb-C,eUZu[ a |<Am%ܶVCqdVJ=u y2Ad2iTT0jiOS)RpF4ʐ PW,ED$xBQ^-ь+/B 讍^&B>6Nmz<)1q[MAxiDFQbn 1,K2FGKUĶb\R|/l&!)uHalٖwL>جEw4*%O.68ʰGpxqhUsTd 9bX@$3.#^Jg9 ΓS U5SmAbU/zbF[6?zݷ#ܱh^b%2xH`\F'jdRl8`AFF+V:= t\B|F`"Sg`{=ڶHP0۫qzGwMGr48߹0Y,$=6[WgiI: qFmzt(ԇ̖kqUQE^A"x/ nGL4ҊE?H~۱?K1`:24Cݙj>Gx^WbG2{50 pXzYO;f70Hfr%Q7QyRJQIrz6^К~+F41xm((Z/P%i)/1S;,P4HH]X;<&g?"xR j&̧qiDEseIdC,M'zv ?NN$%,7s{q0zEd]nN ܱ2'WP^U0ɉIcK nxx "NbGA6HZenS*&7Sb2ICX#_Ng뻨 :e@L,DQb^Lx'(:Y! ơ6DG-쎐 EMk4 1LU>wݭO rA;,Y(8f)P~7 쨭NRXg%%XQ|L1ɵڌ@I&IMb dء$*X#V~J2fΝp1s>-s91~Nϕ]oIfRsie@b^u4'Kα VuԦ=>4>=J[N7,AWƟT "㣺GDsQD69ERE:#/k$hiM sM_IAF.ۦ$P1@%D*SŐ1FfAN^{wyy"&omkv*4*~!xȗ m>\I0b_H-!}4&Y$K `5H6J%^YYeY7*GRٜ7"dD6KcvX,X@w3ậ* cPuߞruC7$\4gl@^_u5aWsh+%HmiWle 1c% %#׺]`%P8q{Fpj4qly2c~kLMivx B'B>'=lKb"zs.5smq΃=qᐚna]1 r\lK1SwQ先qh8nRR^DbAht 0J5dX~{Ŷ'^'Qݜ+P W%GGUba7ҩRЩ! T=̶gfrƳ{r{hz]s=G"2? ^'/69L4:Oܣ6ü7P=0kJaxE10&lhg(֋Fv<։;{AFE18;%βXʸ PBEon nf [lEѪpe̜ h^ch]:,#(|XfZ/Me˼QOe `G6r"V Ή:268<'IĔ#Q1QbEhqA(恑( y:_.˙zIۙSi4FsCWJ;Mv-ާ$D31C3=PXՓlkR@K(TE>(f!BV镄暔WNl#abtȢVOXb4)&ӜXQTPH Xf-rPH m@BBBt/ NB1AÒ1|$&TQ<s^p0ڄ-vX~cg3)"WgeK\uPjqF麄:IFpgvST3UX]<}XQyBp/$oBWYӲ.vsp&XPY-j+u6)W}ރl>y+T\yH5w vc@#TR݋cW\e->IIC\@dvEq5/4E"IoPp,^gcTBahUx* eoz+fQ'fGqL J1m}Nb%eIߍc|(1UtSǁ+i$wIb;30zW6 `Z2 $Plj@Av˾Wωu)j*DQiD)&8L 4]yw/^]8dkIә +6Jg۠ww3SNC{xy8 |ݳElWլU9hW(C}EFRSſ'(yk‡BAZ髣TK0! k j7mpm1DO`|?ۙ  yTa_j,;R:CHC@:l/ŚdA:`V-'$"d[V hfbJ[g=tIR#H ُA26q*26ʲb_TiL7Kx)V`BIWxe0wB_5yȞPFBEkn|1iP(tBÒN f#(\ $>!OaO٪,iJUЕ4Vaa\yC9 -guU {< \PEݬѽHEXSK2tdϢÖK;xsiꪶdPkv5ɉok'mk[AJ|wH,HF|4#Bd5nSLI2MIqPJ*9K?YsWh/m4Ĩ'&,xA4P )oWbim1+}TS%oS,{IJ;(0ygj<}ty8].\ʠ b+VVT!eBbx?E=f\4Ίx,*[^U]:Ӡs~i7Wd, +8R`a[}^S!)E#$$'PuR` A>ї`om|f蓮x`T{>u6qIeG&êވ:?Bt$*`pQl]g1P8D{鶑~` &YRzcbmz ]ʤ@NX-4CZ˄ C˫h.X7' FH.- }7zRF, 7X0EBR815s7+cp90!iA>ᤵEcuCr ApUkOht8Fp#@4vNQe}KxWif}wP X96()Re? l>1\w ѫn hZ渪(qd\U{0VY1KuZ,oVKF5\m$0RUer*)`Zzm틗˅#1"3W/{E?n3* %,=G&l6p4Ʉpp!"B'Q#k: (q̶JvI`o^lak$ 0Ѵɡ KS^Zrz2 ga)Y2+SHՍ$e7ͪ |a&D{ʞ>$^Qpht(*.ܫFI O0+ТC- ,N#{.j:$3lD躑$f޴oQ 3|*4X8DAh\uI%%l7u[UHI4URhCu5T$i7gh@~]#g4À yP,et s#vPߍ:n@*N):\gU3"]R *n"hNʠ3]I*޶y<$֙e,Ƒ:[fxKjS'i2?{ǒIH8!R/,Գ.I] EZ0EQ][;#/CI,&193l|*MUD㼃`нEqhE 3IU35*7ӮȖ6>X:-”Pfs'M̗7h E^!qd6#|E= _Mq+R;7m}M KmJD]%~+ЊM+EJ]\ agaᦟ}CscFm͜F];0G\%Tve؞z&KL?>IoT ;~X@ͧ͞J O;Z`e_c`SK%Hh #&h+svC5QnwEf'ruŜ=cg. kt<[aSY Xv O1s~w"N7j1^Jeuq38l𸪛b bxэEK{p93&f]X9ݒ3f;surz 5Vr.d|EM,R ͧLVډ~\^60F#Z71͸k` jG\cZa9~#÷6ʑkwYFg'ӵM@t򢿻4]Hqѝפ$aHd^$"O~m2WTHU8C6Xm [p;)aS2Zfjdm f4@ l]u~ '!SmrEq rC>|^Úe bS/__%8KI.\,EINbmLHH! ܶx-ID)\f"5S qI[ELI)"D9@}k]~JvnW: ˓8DJno#7Nu nVm>t-_L pP]UCN.֞G'P6ŤӾ:sD@lU ^CiCr5HY07Bqpm6`EX+.H@8?<ÙN ||C',?Jrh2S괠4+1+$\XA5"(/n {^KғYpրC$1C1l$?}1u= {GM`oTS93>pF}C(oG ^%hPeԒAd.BP:U0VlSt:vTu(cNaW,#xy*MTGR9y4<"SWI1T("gˮu]SZLpx%ɯ}Ii3RB'DVq8IlweJ%I))C;9e%{e)^Jwv:$}HhlH=Z$|#5IHrP='fnq+Wh}HX]ěҍf:|wXꝓzG'?`W0V^qVc]y@ ŀWDHfK)(|VP掭.oAɰ؃_*#u[1gՐd4+#\@ƞFoYyr# 4斎hN:$Ǻ L 3%J;Bf!S:"ȉ+Lԡ%*{`ȆkM-*-3f?"N8f#NI v0K|l[Mzj)VDO! Qo|.I#^#$)LC=",qtȚ/2O>Θ.k[ugHL rdd/"h$W%:3^?Jý-rDZRt7:)gktoʆ˾0*WiRzٯSwiI56>n-a-.|jϩQ% Y!Inɰ: K]αQӶ.+cy'Ă tYӮnCRM2Ld^ljԠYe-?kw"WtyNKe׺A]gS1u3t}juu<}^<)HU鬦eFOeg~ɬNĢ O-9&njQԉn$Q`g AE1FOT7|*:?smI`]7_jQxa oŔXdeA٩'H`ZjN(ہRdaTgCքrpuRHl/j" Ì<ѵJMW0^d=6^#)0;eɳ&R3;/P i^O,j[։ \} dI I SV`Ԅ"Ӑ  "]i󍋟.s:a[BDJ0ڠf]yxcy0Xi6" J;̣bI|HRh$AoiN>PU2JlB+3PTm+C=$4hIPQ̽zY{`SP~mG`Bi uFqҷ}pl͠,.ʭ8 dTyݸ K$&ݨ3u+h<!Xjs)HHK;3T!/.{uq& /Qٵm3Aec5l,P(qhHSCvAW78&~taڠ3? 'DCu \YKG܆4?_nub@92e0 vz1/m1$s[m4gm%%ڽlMͰ!J;Q6^jG; 5@J^S5x2iKOF<kкmVA {EeԔ^ ?-9rq\H)iv!TNB $,M;]/U,SU>f@ᄗ $!Q[=av`T6>DLM$%vΐ+LL..j&7nJE1W=5# #M5rVU<;ʱ*T%v$}Kŕ E4oj/L[+#CL^9ܔ( ??(G5#O->˖낳YXJ% av#h>G#-xCyBNb>խjm0 b6^X0i2%^t0л ENmg/24[)s=jB"Fpwh"- jwO6J z{{y=!J#BH 7CuW`LW)xkQ |VDfp%Ǻ ^TkU c: f0m٠<,]>y/wHڏJA 'IoC P8ٜ?ZB䃍^b/VfCwP82z$u=n:zA 4vR!t(aG6`S}PHaY*;l@ gM$&Dg՘2S F P?r! &wnl-wM"ܼɘZBޫpr>pҟ:/\P(d#'sZ]86\|͢pggW~ P2RpIcrG0!Q&\BwH~ 6Lxv;bɈngsѥ4Jgc{)U'PY6\(T߇@wL%v>X#cOG ,;2)\nĮ؋)UJd<`n|xLo; VC"})y${WR aMq-;fKz=rxD 4[<)]g.PMaRVP RMvk=|Ȗt"IǐǑY QUٻф-pz}[U; vVխkq򧞗뭬3r1$xaUv\*L3Ri&ĠTxZ3[o5(fW8=,*U+CN:wv)iؘJ*2!,  AdB09b6^Z;(1MAOE (, #$:YCtx*y7 גciDzޠvyeuBǸqwXMЭbpk/e~'V"SNO 0ރz{58;TS'ϋieI5|u ypubq2(Zڍs ~Jz0?|řmCN!.Ӣf_}Z~ʬ觖X:g> f^X?sE2 !mfu]q{릛s Λ0#u0Xt Toٯ@ d5J=4 CD2NuQ6D0] gվϹ'|4fݳa uسK5ODARu҄총yer>A{U1WA`7nY+t!N%U dg$k(fʦg|[D}*NxJ?0=^H&kT0#c29$$"R{/;hk&teWvΈD8ɷܶ嶗^"ȤQw02aVL,w1NNс gY waHsG0V6$J&7}k!ԕd4O#U(<<8C aj#sJ @5 B$r| 8D+27}6n允]դAl‚˜*n7}byD~<'];߃}LR%-v˥$F5&=Gq2H~{eFg6kzT63 v-p3jA#rc|$*t/qWD]$<$ do^t4m|K쀴ksl)_Y:c |k[Bs)݄zVaO.Ę.83)M,61nEes kߤ5QWCSeۡu;v F Yԥ0ZX#9JSkYq.m9f7g  #fKY* D$z꒰v?,k[.侵y0v*MTiQe]%RR1ہkOv/VN@-Dnۄ5K\N q-0>(k`_yB/[;7wN#ֱNM)my0BK F,봲 y>$m&SE;<(AMGVv*hԻ^BX)U)lVe/H4΢N6胏%_.gƜe]NkOBP n7@L<W%6d|ݲ))ҙ-NޖeOK, X7kzV[mY`ʘGvg~ƃ뛜͆$!:zev^ܕLsS @M:IVwz}pphIbyb #Iq=1̿]M9[}7_崖2h=ctb\3e]D-_0 20CmZb(=(rLUi߁W Eq<hQ6A0o~t2k:/g'`ȠBUE<(dUOU aK% ]T$ܱ͜[W15uI ]*P!.3#d2ئ*<5j5xSGTVA2qUAbrx+>̍e{V`NQ)m9xo `ݚ%t:hxBa}K6vҽ`U?7XCL!5s^m!x} ?5ȳ͔炋[Aժ;i$yz+{s `v)ԁ2N 3H`IBgp랐 iӈC޻U'A6@ űĊ 6ɂN:c\y7@v$%dI}\ƪ[G{6m23y΃tfvyL|c4`OƢR θsc0؝'D@UE`0"@=,@Gϵ1i>Bu*AFNF7 GgG!Q=uYͮTBDŞF;E2ݫ51+,hضjMUΦP?s8y)Oy< Ѫq;t*)sS\otVDRLhPU+#KO4,x&C͎x)}zKYÇ85ZIXQQmtdW=0ׯ_ϤV"lʉY'ʲgdLThl.ޏz~)\ t:w}LfUu^롞4 Egzu~VnWA=C5ӺӁC'`:RRχtx7'"NOSTOO|56&+3+{ Ovd. n X<>|Xj(|ek$- xyM<8  Fvfwc-ˆZ9; @jcl*SRxw0b#gz!Mb Gϐ9&B{kQ T޷r~O pC.׍ m##Dѓ>mLB6v}~@aEb6Pv5wJx V,(Q-Z NZdjSTpo>cyPMOs$cFbÉjʉ+FS706F Kp$n1h|WTlEvعVkBq}hk][:v> UHsv#9ljG{EA$I8Y"q|,r;TJ#mۥC1xdeJ`ޗ6A m+ 3%꿔L1"?6Pʸm[ -g>VWUUǁe;hλ8;a.u1;,c{RxGEacXy gȈKp45Bt:)N#\VE'%~43ml\Ǐ^Qc<*Jn:dXevLjdSfgBdE j)SHTq(F-8g΀x21ԞkVc|Z-HЯeLT@s߅:%f]UX2li <7st@$&T爀X~\L+qk ]wuG Xy>L-ul5,,ؙRz\C*o˾OaD ӲMVbSZܝ~nE:9ָ_QԮ:?vGignAy۶F2 u/++D;ijA.}xEHnk-փ0nx ŴmTrP|c،RXr'͛vPOgE0,lcl1ZQN*\Bc[emWn靌<2bhub 8%(2|J")"O38 !pnL\ E19Md Zv+vֵ#93v9(pcgj;6A.z ^Q".qRji"9Yg@cN^I!,F@Nq0[DwD{`X1:{-s|mk @У˼9&o^՘򃘶E-/ N𙁆q%#a#Y`v[mNXŻ"ϜxOūكG-ac#ĠwIwr0%I2"+6PBhӕeεlV7?}/dC2ix=sI\T>rXs\)*K"FLGzq8jT ^bj_lw zwfGrmf]OGjJ>V6* j|[IJc0}RD+ToBڮʤS-vŃv*6Qrxw4CT;GzGIg)iga=%2y\2zk@ҏQ/&0+^cjcZ 4_YeGՀP}YquBtY]eBFuK㴴DIjX e d'؈X )5vƑ j5QIu^ qfMO^c'U V cabAmF"+]DJK@-xaԙwU _s,&rABB`ȏup1WlXm;ދ1̓C oΒ (v,q7ՠkoӺ4uF&Tҫz8*YT"7cQ,͵#ZD!{W{)>lzbikX({ı86Hߖgoa# {F`=ˈ*w5,чh3^0G~\QmE:I؅W~hp@IwsB^8TNa~yB0nF6iK8 Bt{ /M>>fхhrY6rz#VvyxKŤ<č2]wj$WGȫHcrMl x0mP!M?/r2Q{"oEոt"!^p mpv7h2:,d넴1OrWX!IETT$``Nˑb=p%KJ- y0V~Ac(DT/bwrFp 2n 7Pv]L%aQY|o+_ݽf.IkccnϞmQ$fۢFK.%o I2Amp >Đ&'6@ -Npؼ\.أ$=e{Q/Vt؃`GDHNJLFNIF$urPpuuW H> XO tGjdY]pN-֩(G`*0:͎{x>h]fh<ݩ$\]>;nMNL!Z^%~LKlEaXnU#WO{3@P}ؔXW2%j,0E>Lo޴¥,35c TƱ63 (K1[|o/+g>gٓ^$ys6):f"6}4A_ɿfU i/)j8vjl͈ :2(ʗE-̝9#C<@PKgyjq@ۆWL5KSX ;v.untk`)FoØLJ=`eO> mJc 2e;[f/ kv0XOc Cim /|*~^c|(JƮhjƝ_db 6SڤL3 󉪬H{ꕇY'fkd;*@-LБ|$~Gw. KZ%Q/ =ۘ XN3A};z'zq`r:Nջҁ^){ ,Fug(a %|?gyV:`A8IF"1=Mg'qF"4_90wD#ZpL{Uk.qRŬj (I>|P X#LY(_&97Q,KLCk)2~'$/+ۼ,2׻F|n,,(6E9vU,RdN\mVaO<2n9a){bN{DWUb<"xIzhӒfREjN|Zv\Ghʥ`㓛EE-Su(z$p`g4Y kpaQ)5w,;AGظMQ[ QcV]KZQIgb1fJf,iOabf%i'}D Ge[1ڳ2ߨh3KMD6OukI4t%B&nj%2=bV lЕH{]5!+6*LmeO<ɞɖ-?okkdÜH-_YGg4&U@"3N#is>ۛxo`=c}RypAg܅RޮR-*`ƣN3gyfR*JbLj!gDތO')gb&tZ9; T:\~?}lU~GCtbHeJyә_1m+"103تU0Pܹ/C:>JNcB8f+!h4&eY%aLͯ;OV?o[qZKDJ_1}g.m$3-%Yw/)?xBGέV?0љ!{-=K>g܁OE-Ʊ41~(+JOwdmm_ Zl 7ȸVvR~*U():NnG_ҭFd{s@XrD 6T+zcy>>]vNk)02\_VrU@"rlcS*5ri8\xEAy݊2Ͻҧ<8Pg1s.V@VL2)Ec(ʜCAț8JsI+ _YjQK;몳d$PS+v_A詄R #5S#hi&U@SĩUÛ"}iUD$JI_V" v@(zZ2r6#MT+E4 `#(~,"Mty#g 唱Oճo-[K% 2¾s5HC:< :?ܡC k(?<:vg 5&c];77H%`;(٥ BJ㧳ߌ!^eJ<ؔoܒ.{DDC.6; | 5"9q\P`F=n=[0 "8"{Tj#7< !F$P:{` VFhC &ݓ6[ Ϗ}!7}e+{=% nSzPn+l=^2g^Ptu3\BP'rݱ&c `tc-Q3T%8Sxcrw`G2,m8e7(Yݐ>žB;I^lS&'ʑS~jȒg.zzƈ8*OwR(-\0x8*"Rqi ;9SnbY'Npuы+>2 8 QӜ,V?xtW JOË ]N6rmmu 2ui;E Hɶ)Lid5ַ{u1ӐW&*7\Qi\W6v6N%G=eh؁[Pvrkۯ_nk@T;6 14W(߮rl0Zqu\Ja}j}} >{a߻:%t]&8#E;5n:T F-N(mDN*}uepU8nMreF_PЯ#%?}NmDy ng! % W]pq?J~s_9̱35pHoG_LZ&IFvDLv&%?D.H e`q(L$?p'g+ޠ?g6Ć~qn[=fr lly@h*$A3+B'nᄌi-SOO'hJ(&}E2c`D7-T]% HjZT_Þ1.JyU2PXf(N#"D3hXyc~| )ȭ>PcRZƢp?s_T 2Ayfz5^szFy?XZԍ9MP=9IvEn~Y45VY!cKKd&#ǮKzF%:|,"d|qtG^i =D5Lcu<߮5ڽ>ی!f䨾zG/`-FpJںh#r_dh{[$̅&Yӗ57=qQv9=fx<>Cs~}OD{U7phTakSFp(rμL9BR.BKC)_sΓ=)&2}p;L ~A6ŗ71m|@k24jY?~4V 1nZL=M 61+ e:!BbR?»&6L1nؚf̎X$J`K8NO -.'JIwrE8Bx6j'ׯбx"z3?B\'F۱g bl%lQ>9ڦ5_Mʧy–|`{<w+^U-f\+"m:x5Wi1쒧D 윟0u~<S$] ާDy^R3So\'&cdxcdMO9T2Z0:ugT~A Ʌo`7{AE0rs'`ɻz $9/VL(n%/4m6@F8k.d PDt\?1'LoqlcQ@MLk!SrBťx,;t؈P}^ '=~xZ`knyU}Z|BN،@(M}]nn鮾 p82;rOX,Fp 8{F8SL>F?hws^`dK=s8)q{QQ-? 3]d5y vE[jmܪ^ 1)a!#H\s궸ߕ4-/5мyn7>t$68,c=62>e-;.ʳ5]jjJ.#g66h‘v 푘t6ó{Obzʼn70o4 :3!~>$u8L-0Z.<^D(ɛ]η^e h1JyR/7=bы$JZ9@u.nc0]s=H5GƢ~){`ݒ{w/gX9-%6ZylԌ]OﻻJ轐D m_{_f\/w]CCUvIaLHO}- %ؐ +Mo9D>.q'3fXgc<3ˮ>N)- @dQoucW\tuZG+)AAyQJ\hPdz'b9ȒPHDr>B@.g#W̲y/im6lvrcmu< QR3ekrbm/,?J>cb[uBoLSҞiɸQmL0 ;8`/WȌlH#<[7.,!Ah{`te(+ _RkGbC􆤂0zXkՠW-36yYl GAo!=A,5 h}$ _jܴmVby,j%r^3S}% xUOP>̆'| @Ǚ8gJ, ToEϹ dŋ$ˠoRov;r$]0bc S}17k穓=aqC'GE8^؝"}#{wNZN^Wuy@} @uu)i +ziQEnǎ<* md +\F|8!a]rрE&;[Ĥ} SK'νgk>8 LuQi'>Hf,z @((/bP ggYɽi'z\t=Ca}D^u$  W/>IRE-Ј1z9ٱ֛b&ϣEaLuu0yMz[KCVUϱen) PX  un(V{Z#@v%M8Va\-ufQW¸Ę]qASwL+Lޓ#e"1%ww.KR"kBS{-tvbjJ.Vit],S.n:85B[K`+\gfB ,S{n/|<%:+H#OHjh f4yMcY؃Yk žQᦎ3 SbW:mտx^L:2j!3r_$%2G"xL]eIĕ (-Ē+=nSU2ΆsXw=lD=fښcQmvwWݏ4 k&1`HL(ƫ|X}_zor;>ݼ(j}L~\ kAFw/Qs?b ^ŰT׷v݇ ¼6b+ Kشtp!1: @VAX YoKc)Gj^<|BNM4]=g8)ҺHTu9,^yz-ofb_n= @~:ȰڈX'׆. @CޖG{ JUuO|2)3/ Zx'_&Zl:vlA_àS%/ol8~]oWm 01=l3H2>lU? :"#deGѦ5Ѹ/REc{i\m2䇦_" F↷ǕPj;VdeUFKpe}MDPr|/ư͸cS"f#* D,qt]N9vU~ocJ|<~sM ]N/0TfVEzzk2~' i,ǔYz֟ {+,/:cTڂjtR}˓`sF?nrj/o0qo;NtwYńݓ h1=qI4#lJ%qd\'z!XLO(a"t(&W\|UNj܍&rge $')d7 ;]hV&<|xz*d;⯠5Z̑yǯ03{<=Ⱦ5T)h]X3 ɉwT۷g|UPPGkbO}Cڙ >SrkJ}E7*778Wl/8*G#\@ZÜ[ĺԊ}//q?]v8WRS1ʷ<TiK8'8]Pe_~k-1xA!#1M扣-H$y \OR -o+z5"*+ѾHK|nNZфl+f hZNgq8 Ժ4=D'\<뻢L\Քaʝ+l|踕!/ <P *`z3)jǂƺeX St@6'$ӤED*=Nft3 U) _̈́d >9< A=3XQL.qMTTH[g{F83fFHUѓKC$)7piݕwL=@>) yFĵ8hh4іM))$}`x> S9oR#@K9.DYZrSW^08,})(N"Γ? Yd݈5F*e 3_'yH!\pȐ\s $Q xF ǿZx+~ŴN֞7MˊkPܧhtLcヹG)rG J2}hg-46?Iw;3;KSf]x"/Xbp^BKxA{K4 ^;KV'9WfOB6~/Na$>0EjyMva_aZSP`Bw ,n-銯$q߬r-Lݔo(ٷķP}'z1+X-ԄWH)VLU\__+L&1sS(Aw~Yg:鏍~OqGzγMVVG_A3 |('N&?cW.5#vl!,cPCl,<=z=sr#-`76xyd8QBe([\RRx%${''hn']'&>B95YB>錣4py8WIʘ !xwH[Ay-] :!H೵ȡd{TG4]d2yGαAY.Zyz6,sk\U"f J&[E6u93'=RCyOydjQr۱0WwL"о2k|ƚCf0^@U%Bz8GKBAvqt ܊%)[CkxU4*.>޶2IC0F8 !SF1)_xguG튢2^Yf~:Zg=ѥ*Y<.G<9d >"yMK=E}4;W|6$<=O8q8?>>d&-y;w7PXFjiijnSw@Pp[rqQ-I(#jM\\lMxؘL`Fu㥔n9qP៚)!v8,Ky1-67G`OOfQH>꾷dyӢ 3?qMry_:E]aw~'MH .6؄ŧ/Xsd  /eVJ{fQ|P&/,eHOґ]3TtqE5SV异>9RQ#4e52bJcF<\}+JUykG99F6d Gv˦u-ЂMq܌g2:zlS5^-vqYdץED( -fV@zeU{4R]&Moģ9o }b!)r:3x=;S:)G9T~m!F S9i Tk|`^9ڊ[bBnqa2sb~* iOlHҼ0,DhxY+ϫN: Rk:ãsM *Dl.o׌O I֒rmP{rZ$w9Dc.f,XQgپ}]CwIvJr#gscJ$'*4}>6 k &ϟEdMzNk @ƗwDҥ4~ jO sj5']K+)C2mc7:MFHQQ`ъTrȥ}-ޡ(48;)7km6{&d='Z3nO(mrΖGq?{?^OZ@M`JtL1mxo L$4P;󚪓^H^ghXN3i)LS^F&<zc? >9X-4(2VG]֧CR2D8BWe^/.1^'&Wu.QjXp.GP|㳐)-6<'v#T;]0X[._u޾`Va {j ^5ȕ4#z6|q׳{)w>ϽQ{fapW>eΙ_GcJ)8J+)J#aZ24ύ%ݖQ׉6Hr.$ Υ29= oSjLRk?łHKtvF+Z(ng[sTBeq卤5]ۅdž0qv'د>z*xBg* N);!`Z})W%HyxJ.H^(Xql:­#J%1 uJNĔ}fv hE{av5m$j!nG^?FgHoV`O@wڂ_AVc'?a'ϭcͩbJmKb-~9Iݎr[TC$U{aŃs!Z+ Hox9CiO%/T ;>j*( s3 =UK[D3~wׯSPv)ˉIZD}[ Jz jSamwICZ|[ujׇIs$_~R2/55ދS^hMt< ʹ8^GTkx?ٜ]z5Ƀ̓ K'[[,rv[Ebm8šhƴ*yg<ݩ֟bƒ+q11 O+v͸dԫ#f+utnkp8(<!ub~錭,f>h+~RY< HӤBA7".>M 2?ʁkdYϣ[/wi 'h|qLa'DKR!Sma ]d8Ӵ)~W*x(q03Jg+H^~\64  O*{O&ź/߾}Z/+d$3;\%:a"UrOW{,ٕ\ sƞHQ^ہ7~]`HnxQ~u,S#`\7~n ff+Nv(m V@ONa^[ Dw΂!(G_/a+(I-u40Q{E^ $9 "crۘʭMdm _jCΔf^TVsˮMn4i̚&;diTBKXjS6f 9NTw#SЈ=Xn_Ps)|!.3Hxl?Eڂs:+.TS`9Mz: gqh*>, RO]PфY,ċt00?MCpLW0q3 BX{k^r1Y9>U #ki[ں ;EEK%ћp~u;>2\jP&,Кcssbtpi* SiQ^/*ެytCP!`&_7R%ƮAiY%![-xgS2o7d|BCm)AIghm#*H ͻp9"oXrh]v@Je =U-tu+b7G3 Lv-+޲G ^ޮoo7k| pyfmP>MKz]BE >5CX$昮QǏ#h da3OrvBx, rr\w$AOhE0MI3K!s&IHFIg'\ )EW߻ne%<Fr>Qܮ^ۈźH;%r}U?sb+[rkL^><wmąRG&ل۰I5:sXB7:f"|*MW,"82meѸjE(X,̀ k%h5!/&[`O°i( `O[ Z! $fꉠMdMbp,.},E*eu%V!JP|\^lo@8ު lHLdyOn0%zMٍkTvI]j0kE6?gfH M.h6wq̤e1B\13ߪ1QҦns:i0،8l^NqI.PɫJcܹ-Jl" )=Y͜>F%2M)Oh}q'^,N2y0"cfά#P1@GO+q2-ȫq"&UG"5<}4 WKTio]$ϋLŚLEBndz,9.zn91].XSk1 4Q* A?#*lJ+Ou~:X2qzfyS:G:O׾4k7$IbgVN׿.Gpͺ@g*i+K:UWPQ )AU\Jj yc ,nMQ?~O{K0|$](2Fu:'ilI}ϣO !tqs&.Q<ӑI噾-N?%IP}m=`eMVՙ:U}v}w9Y!9.3zIПQQu2EȖN$HW:PZU6E<䫗G4-Hu)Vo|>N~`=DEqq*wە$RT2. O!} 1iN:9urL-/"T7gbD="?q-؄. G_b#Ru"]<}c,_.] C`+K|[JZ6.wԆC.G=v IԀP[\0ڙZV4rm[罽})ı> k;k ҜE;r4VB,MґmL,8$E5f+%PkKxl{P7X&%8_J2VK\ıv~|UHz4;ǏNV-gq ,;k}* ?RWx4|MȔN$L7A99::#Z!H4CԻ8:ԕZ.e,Gq;0xZr6VG ZH=Sr[=K ,O_k MV'S}"?GUgɥdv(QFsX,Ǡ~%T<e몒ĕ^=@8sH_{ :DRd6;K6[+sCTx I@'5ӒSp-"Z8)L00!;. Z*gYh|K^"I#]2k,мd|^(Mm5Hd^jm_h%C`dR1"GbϷ^⦬LjqDF>l'0&!@GnpZd'WHI =lfG`HiO߮_.YT> cД؊!;Jka,ù\.ƒ"L3>ծLQ$YS&T-{D"GMe|-KCވV8H,3a1Xϻ`F\ 4xِ9.Pu Fטטm(ϟ?ߛGfI}>#ƦzArCqc\83J.sL}%쉑F+%҅kY(qm;KIa z#<~?~~«M̳LOgʰ4NV^eC*3J`g|Ƈ`zM`hP6>e$V:jS*OwzǾc}sko{nYIZc|u)"HcCebQfɓ9CwV&xaw,>]f`P&zRudxamI^|Aӥ}U 'λnHM 9JJ t(BxSiX4*9&7Ytj3oTQܙD8< 6e)]ps$^<^6~L^ǝŠvZPGR2jrЦZHRmb:jvzG񰘰q؛\5篘n\fƙF Kfq¨c!j"~o;BbEq G`% e{^>򨵝wd/6LtAY: \S0tDq2tԄIæˣG炣",[H=5I3(PA%Ȧ8?t.-*X "x ) vFp|tiS?&%SUΩb2Ϻ*6Y,lc P'\% R;4›`QtTc;v _Z ."z*Hm}/*-Cv쀰>sd:Ggd3 zS^u†Oh?vÂ2 O<<~4.Tie+6prdC y:tdAGi8Ul3lm뷯 m%7 ߩr#4'zKr<- ƧR qFq_oK9Ю\^`RZ̈́#Ah|X{il q9Ƒ499n3lcR$e=)ӿf?/t9'0;].UK*Ӻ2a-} ωD?[Q̓G( lQ%Űs Js-{_0ϟ8(<ݤt0D JXY V.(X:~ZSC0gQr qfQBqk'D[.e,"|hD>/ p=}(7^~ʟb9BwS CM`$'~_V*RYN_"$~-&96]lWlø)Հ۳sB]a~V70x$*`ʑk\J;Nl8R}I&etKaU LJ-50wkO$%DLeC8U/:u0ڢNNkբݢWq'0=W]aCd - G&Wǿ}ӧLuH-`F<+R/\ ^MRlؤEأ/]4g ίC/{wkS9.+٢׎[bh_U: v 0@'$84#팋P&=Ċ&VDCioZHdg̞:Hu b&*\'aȠ5c 'Sq,kzU.\7;3^h5? BKӬQ|Ƀ7B+(,+`yj <$Wk~av0= (~2cHp0jɨҥak IՏkh@8 Ϙ?Ԛ6o5~}<;Uק+D3q.5!Xn0\ĵ7!ί&inك0=m!3gW)] tHѽnxjs̱~y!fY7~AȔH؄0nC2j:d:KX&̀e9/hdUE𘻚[! =~K,w 3=ج`SW \2Zľ/$r²eI1xźeS_kadHy~DI .-T{ FUG/ɖO)(fQWuz,}rF+RS,$,€ k<v+v bWksN^hne jdyݍX:籪S߹7t-V=VI]z5D)!RhO/)+-ޡUA|S 񃻜zx`%+czPAo]: x縀̬4f=7"V!KwlCmJZq%UPh ,T+8BPXԎX 1X ?{R&{7MNHe~KH?tGG>v/ݝ 6 q:=)ea/׷ј^\&f0g(o9vQ@:QgV^>4.[uiQ2P)\^Rg~ 6,XDҁo?a(z[K̡6w:34ȢdXuBUx iq]I=Nrϐ]=ܖrT-і(+Zx{AEoD?G0XEw1!kXTTBⰣgZLiiL>J+xO]{0‰94l'3gQU"Ä[?p8F a,pªhi*/7p(?\}"/RQ$IP(5Qhg. K G^;hufѲ<2*NK|Wtb.Sa#bt=~lޟ8BXB!ZjhxC>zuhG~=5Vq)r!m+!,j:5$5=Q(6Up&f=>1}&9ؓ׀ "q'b O*sEZq9yH ȄdǛ.K W3!zvC#ʗPևgmj&phoA\07fԗwk(2Ai3@'qMH/[IAj!x i1^\G2^#l;nN{vEc_:AuI?b>i^ q1mLKxK| <ʎ<>LJ6I>F Vfmh6)qZKkQd6-|˱f27zm埄wU(a [R#O*i5a[_R0Є2BxY3>÷!eBY 82rE8YH!2hZ^De<9_2Err>II:^7IlJ _|]EѭSBcᮔ.Ei8e[*?//.UJ-6k~8t1>>O/wId_cHu8Y|*'*Ҍ129V{'2+92>`+AɷM+üAڠ㷿rc2VQ8~WG[FAdBU/poȿh8m H'u'CAa"/Sa==< keCO:а[(OѐɑFS tY45()zRS[$_BJT{Ck5HPcERUqs@{o+Tai$;¿fl(7GEIƈ4 ^ڰ]E4b31~v{5Xf;8H&}t$J㩜 iw@h fsOu.߇*6qђ] c:FL 'oV̬՚B/uVr8p}Sqs%y?ahk|{@P0ׁLΟLF8djU:=ߏ~yo:JECbtY;f58t";cDH%9BV^%|IJ\$?~V-,bQ._ގFWPu1L:SE`g3/ծSv*~gUKd-p@&]RE2-!OR i2}^WpR&cj  |8mS( jܢ0# nfIQḄ&$NS%yEřWvz9%Nt7 YsZ C~D*Ihk2h'cJU!}AXR^Ys^ /;^:K:ϋ ;ZNbQJ?@[` e8Q 絧Mp8 g*=<.չRpˋ4Ԧm_nQ\j\؏tml>O+Zo`3 ˶`bP#ގݯN!.%~D8I]LQw^x d$u*rX=giྣxйt?}qBQؽᡆvӋ(KX!SYl8\<:! 27F?t}W9^#% 08+':os pN9rDB8SlY'7W{$8tP=gj߼%pOI(g={dvXёD=x2/u0ϔ?}srҵVf؋XYͥeyT~%XvvwU4; }1ٻsD : MZPYY ;xGGkcrK;::E+: R@Oxc!K/Fpl6e;ۇp]_ pDD4By%U&S8m7m4Z4be]m^MRz<dN-PDC0ɝynp(D Z)U/fZOjyA;DIļH/R<aIjS*-PX D =6QbB>ՍErJ*Qؗ( ؕwDҧ'qV2qɷ.x2^_y2ƹ{`İGD=%gN^*Qlԣ@V*}f'Z'b4S4btМhr!CHt9k4&>6Qo8 xt*‚"DP|T8PtyЙ{$ ?B2%) 2J)dM*fJo #B6nCkJrњx>o.\aJ Tu~>pVO3,%uq0yݮ^ :v7 8:v`(ظԂOD~m,"*$sJx|90G_&Rt$~GGul_sn1lB)i%jOLny]ӱ`g?4~Lpbr뗛vu쏽>͡CHu}:>}3,*,SjYY J 4+ OR<+e>mէnYN6NI|%:&O]^ۗ/_oō JM1.S TxVE"` A}v;Wu{vM~}*wb rBAWV4Gnfآe%)J8G[&|&7KTsTǙ2fBIK)r窔gy)T CY"4T pEU5հE% vLrNg02+)TT؇AfAPY#ٲŲor1c"M1p 9@D{X]iDUheF2b]8u%J>ىv>>45ԮhA/#sÑIF\:h s fcG*bP"o 藓sq/03xdt)Hտ{Vc{f CoRxTs N0 u?1~?㬟~ExLn<x:)+E>- -[~1ժ3#@޴e|u4HK$:LG8먧R̲YϘ;$qQ=u1lrcDXE} 2eiIH\eЗzNJn0`e)/X_Ǭ1 maCUыv'U/QUL= N}:K}J6ej j8F6W2^O3Pi 85< 8BQ\F+dFt߼D(v!Y:o[Fya\{kg/ -m A?ָ4rc%a` d*2 d1—m E[C$rQ# @8(++Gؙ̰蝜:yAPTpD*W4o /x:f5Ň,Dtʓ\ (UN5f[߻K\D|u~Aw7W/4c _rFzX *;0.LduRq<;*T2Wp:gxRɛ{QrO|vL\[̨**/Ke_:J/hw 3-7\9"X>x+=0//qC-|͈~gyUǨfJxSd͡cdZVtEfpbDOh㛒XU*X7SL5LBu4 5~l*y-gZe2dewO(H|:ߕ w&'z&PXf<>_fNtj@=|ԙ+yt皅Tl>?\@hwQhR8?( I2pw ݊ x'lL% ݦԳIuPQhZ37dDj}]4I n1P(p@':=3&?F,.8;~jwX>3c<2Mǀ5 &ű/z=\r`YVŠOZ]"{|R?>>ܻ Ȉ@X!>"ւbbY&rmDBmHQK̊ήoW6PmQijtzYhtw61$%*0v>>.ؕ>)K\g$)Wmp] /J K,h^^ˈ0>~O)q!ۭg/?Ͼq2,B,nthv^K °ʌV,f L_OM @C jm O2bt }0:%tvJ7/WD8帑;b$ɌYagEg)w3%KXB*a` F ]"kAӧ}%9l#⸃0}1<>({FSp1wWj3ewv:yEjr܂I`W,pK! w̌Yt$DŽ1bp٬ƍ)ԼOwxe4D P[7cxn?n8mKp!>pP.,Ed?,0hL j M09Љ|(~`zJk+aT?o]XnΠD }z^"ƪ@ % g; }\:{ 4/ox,%,]T1PC2 SKvl;Zc%]b#[A'=ݝqffD`2H6Ef2̯`+i*bQ>ٜ6[-x\r+|M~‰VRSppo8,k BH^.ex+cL!~% r[N lU{)& Ľ#D(l(F=x?vKCuKZDC-*~#Lf+i,gE݌g k|t)o7=/Mnnv|$]ncea+֬U)x}gSwL8gWZ`;x4s+%Iٵ[t"R:_+`]MZětJcd(kluUَnaXvR2.nm$07%D:&.ZF%WQ?V5s$ `KgI:Yd0pmM8A)L t0)ż̫ׄN w)!S E?J!,TWW'%=uWS"J|F}#5km!/n@,n֣Y<8!5^D&NG›yċP(_־R6%,kNEmVH=uIz-I03:V9[d@'tX=_"p`0fI%~488Qbb$,#8DRN^Utf/Fx x$=8qW8b@|m?NWqt?^ciM> .8oE 0qW(_7P<{9{ۜI~ uWm֨V NzNz^4I@u+H :DOo}4 vo?ILA5kHX!tE꽻N'hB/@o `]>IIkM(35-53wk&jJIbd-Z1;X%5y0^QHJ&SHenP;mW)DR{ņhu,."@>JoA˧2Cs[JH:CM Yd(I-IjҔ'L[F3S'UդU@X<hɘ-"EHZ\:10cR8%4=v׿w;>:^B:)/Gf~盾f;J׾Ed"=*#oeF"c彥򏖾c}؊M_`{ YYmyMxr'ڎΙ{_o_e;`땉1Or@^~pqH̛\b$,.*uCj[LbN1;66,TygrGP(uc!m;}]%&|e{a>^4È\(n[l/=N}Ԙ6mc=HX r6XŇ.-*qM]WFD+b a if<UBMZtm(2)Ȩp7p}v d VZ2r ,qq |K!=PY2fDx{/)4ScDH :99R='JSj\S\IT 8;I17ф+A;wf͗:OȌc$JE1U ́=U(hl'kv@F/ZۂS+.S^}?p,61pټxg#%K+L䒮 yKqcG瞜KB~1143pj:YCozs'o?EsI{ݖ+S}i:Sףw)lz*6O)KE{J.-2y'CKPW?^FyulE,)tVgm6|fnuҠtT?g~M>*Pgx*oC+,Lj<QykB^+j`Z7P! %iI!q.4Sna4l&wt9)fF%n~o@-ޡt\kWTK<*[M6S!5+E`~7{˲"KK*%$^DPa<3~mӉ^'*Jq}k|[^Н!hƜ愭WK>l@JИC{025.O CXqC"CօV .I=r`tuLdfzBw[[Pޣ.[t6x)EBM<Q&voݶВȓ_1TN\*(:_b(ՐgNRvLwF>mCm$ȊO?>c\};[ʧm(ciԉ,G\jg~+S(ݞ+pc$w/ Q 5n Φ-X9;K}-VƗ)OG_|]KET/Y,,HYVqXO΍q8U/6&!颍=sbB?pQy ! їA[u/M[|E~ ˏL;b6$rhSp޽%VSPr @6RN]:m^7;a(%fNp?U' 5cbh(V |1qw}wӠԖ xO86x W'~ ;T}ٴv)_رG]c!T$m0eNNkOuQtO#.wlu)e0Q(?GFF4I)3lO%h\~wv0,q8Mn|=VLs ^] vMН[ݓL=fN1ݭqWFB\p$)Unu+X 5V+A < - b@{`HFZz-jA6w>\,7;]Y+b[p@lʢ#Vo%zy=%k} 'I K6 -6mu~@>4`C/}<"b'-/ D`kd,=?j9hg[KE>mfX הWp:[DВ8/vOGՎeTh2/z쉛%%jQOFkZ-Z fOG%#ZB.y.8d`;@,x+dVW/L`ہ!\'7c7P%q>7Rt]4Dq9OPK{A~2rOLeīHV7mcݟW `X6Pa:|2XdF-d ©&]tbڥblFzN2aV&> 悑և{E  t /t#BpUZHqaf`cuAjq5Y4<cx93G%)-h ;Ԭ$=+3 (Ю"X]Q V(R z]}~zn\HK  +;&! _zyw,1> %~F-y~>~\c7japfV{aCM߷ՍN3c[uuBXeCF-GQpiJ~$SG4c}) F ^ly˼}g.CkYE\IWz-~8d2[Q5~E>X/eNo}GB,K~sܰoFNZTxƍkF۠w"$(-}JT)HVuK|<@]y`$ =?$_z.$a)/(hX<>D~LQeai\Aݱ$ }q\ ].ux|?`hoz V/Uoʈ~x̀B %:BAPtHN0BH翌p;Wʎ/ScQB"'\,v7VR0Xr"Rxr/֧DiQt?:TOdtbz'-bJJ7zCKƏV2F, ]-"t&)x==OA]7ךIؔ jDu{!tMURSŸ݅<Å bvա*e/d5҅Ӵx t^u`=nyJ EmJ-ǐuO-{Eah]5OٶJ;S$(4!1;N \7((9o޻]&aH+XqsTQKĈ8 Ҡ|aQFx:b4.=OgƷ_>ݏx]S+'ⷲ&:!ivrE+qq,9!rE^A+Nxtd7Nщfs :E-i١`-+o-b VB(D(:#d iZV yH4L}z>Yp.%(^5n5ЕGwC誁(DlX'|ޚ wZ9fY ~*wJޢ08MQkl!FUFX^k_g+/8;㪷ISe8CyFD%籓!R?m4/9!wIdZh_:~u)>t,u!@1g5{B2]9^n9pS9S.]+ @‡olN6xv KF;N4!C1H d<(GIr5 k+=ߡ]x) IuRG{#ȃ*8BcESISq5 3Tgc *>3=qV5=6QHh4mD7'F*X{y?ǁT@&fՂtTRZTfvm.E !q`~.7Xء1' 3C"nmvkcUW nA:ha=T;l_%B8#K-tL'py8ZŇEhw2MdyAqdrR:ˋu.ؼz δf~ֵqhf&~pm 3ėM#BBf-JJB?SoTuܥnv㮪bv:oLN1?=e\,LGr}i=r\)_o\gvD/IUX:+MfMQ{ki-.I%(HXE\lx^;Q;pid8<5fcZ8]׎l|~9'|- AH~R3prO|b׭^f(9>r=ݸBХNl 5h\.)ehn$3 4W'`MkO?C2ɮFvlFӉyDC{gXF܏axs.a8n.Vm☸j%„־#,'jDǿK|bZc~h"e`q2a4 T7<:F?^%4fnD9]ȺlHPrZvtD^ݤњzՐfW;n mcC%sKtDws oqsVS(u}Ң^e^ n6m=PT RH:XBdTĿ ?mE LK)SRe?^9A07KL-Rq}17ͽܼ㒶\ՙP9s@ 9}`zЕ=Ԓny_ ,)QrRhܖx8Zb 7@ks06B}`*ʫ5%Zc|sϢA2em}l3Nr?q߶ 'wI>pV w+.E|%[t{_y)tX,c+7ތunj 9TRLuZ#,.aRO( 7?[5}: Ȧo>l;66*5.No]:𒥣Fgl%m Fqn*}?w~\%h ;zL[,ZlQBh#*u[pٸጧ+W[ *:--4ˏ{G(녎v~ ^`tM}%J!4r8506HT!D]z)!fJ/`o+~c C;A*E@!06br b(ቨXh(z}XtKk$꽣 ׇ ?RH`#N+tMBYbb5(Xؤ@o}H *2 z5í=06\X! EeQÞ-Y;48Dq ipN8Adq)wur- bh.1uMHhJxܢ\%2>;BZDͿ;8xh`lB9X❷=gM}iTSo"|~73tclÑs>[c7698:Ovq=nΝ֎\[Vs\SW+S6%=n5B6X^wlն[v9$ӒgI{|F@x ֲ-ZNlæ?=_{'"GHU-sG-94x:>!7l֋KyObǘKzewx -wOE>_"A4Q ;}0' xneFhAzґQg3y NQ%ȹF3Z@^06X)V%\Nҟ<[فs{2|ODXYQaDp`25q%lwJIT{OӛBäFY#5zr P3:(3:4~:p)E=<0/gPOD.p3gm\Ffͭۤo5$.jk`[crȞj\XMjH@G@0躒^Ə c, ,,wE*"XXd0$:FS_\DE |]mv|?GI<@ؚH`~:c;HGPm$uf'}Rf_?jLA"WK(͟q'\`:#?"5k˶:`Qc'FLLkٽJ,KuÛQ֊XI%)К&BҦ5@i>w2'q%V#Z3}(vJֻKe'ُ:o3m?8|-jp~PH/x:qWq`Lob҂fWfFZ=FO3.m|v纚C֝h-AVxѧʏ$ '5b.Mbv6{5da/ wN?bV&ٹ,{ Xalլq6;ke/3*^j E٨eKzWfĖq0avEcc :" <<\*>(|Yٞwb6 bqKfjGnUH.Tx=‘iUMc o [B>I[dVm`rBc@?w&sˌn=#41^B[jn q&7QD79!v7ᆳؕ16H5|_ݟ`$-GY+w >"Y#gcD.Ri4i9bU&O;\nWT )8 `=:=u,&{Lx^&nw$fI=}Z€3ck(pVBApyj ĨlJ2&; |rc )];Gw榳)j8B+ rM"jޱ-AZVu+2\}R̯PpI9nF΅PM H ^eଓ'e^ps33<WP'o&q>p]Etmɀ˕26(ܣ^V4Z }X*ƻ"BEucCPxi./3D6sg^;f%zߙgxW^6(',@e\QE ifC9F?a6Y䓧isP [V@8BſY}?Oe wX4ԱSܧfwt[ڶk 쳏 QZ{PA;JLP.vlDg|Xk#j2sO6ͽa\ݭ8{y)QUCI~/ 1 } |f3u~:y:+DyHg&_ࣽl׿]B=n/0 ݝ1ܢ1d[9~;3Bl-E <8Z~cNG{}Dr\G݋Ən*%]/a,@eLE#42PV Č/ HU91|$sgΘP%;6;!Ǹ^o&D2DncWB39鷥@=:*Qa؎mCՠ-!d("2M"yd<36h]F]WTi6Z"=3 $[)OE6?AFbf{ ZDPi;gCE ~Kv*ݙ/l-}4˛lX;KlٓӺDEb4BzB&Pȱ/tpm8sIgp\b)|N Pj&i`CmPqlV#qZ_0|kc *=Q)6hмxS( fx(xMj]5eĸSxFZͯw%ωt᎗`wG)!2'&I,N, 8 ?抷1[_{5j4i g\#g݈`xIQi;Ğ4"`g7;`m7Yg&H>[웽Ë ȩ=/^1J5k;&lL!rk}/;gc:3mjb:%D7ySꝡ~v6c- f_.y{lxc+(s gBI.HU[ŷ X3 VGX.$N@>(͕_X9ܿކM PQA,ɂKjLRK#Ξ~"ׅj7c1Gfhh,-F{CS&!P.ssHObs^xnW"M!ME3kgH]:0j m_taԽԽ+L6nױT^mJ5 OS=T{| ]j7{^MV|hXeQi|5Pw:!Է WU1"c )\xdөgLxw~;@r~ vnZhb<8G)2miM'F & l fڤ۝./Z:F55FwL[4O bi(bR1V|W97<l=F2|z߂ u + D"y8/EIYYrlB|_~hro]pMPQCG V_}ҘG(9ZFf.ISサھ"6et=dxt?q_{ƽ?+[d0c?Bt,mc|Rdqpk`-`&a8 6C$WY_=xn/'-L,*c'zrzȏ軉B br6ً!3EI&6agpŴN~+aL>rxv<ǽu8m-V7 6`mQ "@Zl2c+`mګЧ2ElkOI.! K [gEuc2s̟xDD|TPX"N76"–6LN!T -z;P9~''ʏS.zaX.M=Mqן(ѭߦ `Vx 8&ECеN)5PMQv.8KBqpt˘I@SYX;GOk$>@ Q,+T?s>!֩E/a)[3"U4()jcJ.{b^#UJ^jL#[c*;MuXqye>VqӖ99& ĿB3=DPhO"̄ 5 ioQى '#GتOE.(:ʟj%tT5~+INIδUϟo5++O^4k(i! dփHytRK9x䭗[}4}(v5Jh<϶~m\lx4aU;fo}l9޿O9+}Q5d@375pɧ!%EjW5)}=U”_ϥvaCWkQ9҂bzۄ CYRdpy.O~Iqo` y563[;l'Z1uO57n9n꒯-@edAF䄤ZKH9)qZ]R+u/9p9i@ /SIZ"1PzyC>^%JwVo>L06:7vͨK !|UT43ǰ#+z;7enŠa.o鿜 <]ԩN5t&'L U|6v鎐ezjJGx%p',!,`CEg-Fd4E9h%bQL+w ["@` &8~:"i=BJ\,D=D4@έ8Κl&1]EVJUs3, n9ՒdWr'&)h=z gDʳ6Uڜ=\6`6xf]Yƥȅ)ZMw1n(Je")57E(DZ/n.l/43`>^ۨI-:O~?*dA;`k-U3,i%#qW7$z풼iyՎTsd}My:_jG zݱUXOB)2\p(m7@zT[c22fװ44K U/f/GQ.CwG(Qp,OmFoFB blYh"&hPe^}\{Ke03UV# 7GGJV׽I"p&G:(BXu`e͔3\h0>uw@t)Oq(`!'Sr)}n 3J1b;lj>Ix߱DEȆ"0%*wMKիLMG^12H#{$4OP39c`^E]ave>p %}?<' ,")6K'D~'0#Kұd= CUû<%|WpH *@W4;U_BP)O9vt[b"~5/Bo᪑^mD z!T6~&n]gi񽣲r P8+ yLP[K?aX/_if[{ɷ<ߠl 4:!'l Q}[ƾmZ];!#@[M_fej H05RuRZ92m| bT${rSRz'qamnQXʸ^/w_ GJ(>I|7s͸)߯m[kbM j|ӌ QoK{L6uo]>p0(4c]TPԍv5P 8yA&6xU@0}זI4\|(ΦHdi?l$h]*Ynrx'сdX׍mNd421{v CA]*O0]CbjptR8<PKӇ"ԛxPdW( txLz Vsnxfw+!#u+1l|uͼ(䨦/ R y+c@ l("~x\햃.h{S".9DZxc4Fmv>;-9 Jg1>z&Ǎݴ'p ,u`Kv<.ݬz b[&\֠\*4֛zhYtޣx?FUM+Ѩ%>S.Gkd, k? ngپ`l4'4ݎZ󐭉fx͏2}7+{t 6?ܮEf5! ']px+f#&A4aDʌa]VVe6b_gg_3U,XϞw8ǣ[4 !)MBJrNٹph8He+ZP[eK#y~AiF[#[xcvC \ʄrw ?9}8jK-|MA5DB: U,*{lE[&C2r#DW懡\%K?6u&3"9`u  io%b':|> zW[H_ ?ź˹ؙ%ЅXj7*t{ckHid%ҭ'u>1YRczp7e}hI0$C<$]Hh-ks6" ޗQ/Q}QcP6!m+P*z"^?v坰焥<[ >\"lyQ BtG sȴz[1@ӌOXQsX M+Bh2(~9fHZ"HFXB9 xmTGC6 /11atJKJ\_̙9J#el~_I8gcQBf[wy\kA W, оf!+f?͢d>t.yWG|NH, u3 }!>vmsXV<'2w7{zGQZƳe Q6G :;-hn>C& *R~=N:Z DWv}a4R(v53q~۩~i9y.}yi8m&D` MXSZw[,Os$225J94ajmQt@,ЧH,J#썇favNe16 ϟMcq؛R8cUi"~&p ˦XجML&cq˂fw"0hM/.l){Oa)`IJ NbN(ᰊf\d?f{1b;NxMjVwt>ICO[}z3x 2  *P=b83C`.\-Ʀ4`Eϧ/H&#3$YC-y ǞWqDODaO+>7 = 5P?M܈A 1TbԢɋxΩQߗL'n {,=Ku:~68z>:pgMC^04,s<җ񟛃)|it.>j%a !E" Vt#,.'eG[:u4NEεLug5ͷ/E p/Vm؇6"c/P܎A޾iJ|j3jP\O([vSuGQqL6Dj7 &){QRll:`䯿.6:JV.dY|a2n K˯c' J%+iӺL f:_,/dYryW=WRSJDT ͜QSJ!ф?ge X Ou.aBRX`68L rY1 ~S[޻Y4@NL֧ -*MmM{VAXuSNr0 uz[$HVǍ";}9a(6W'QU(MV:8#B#: (H' +ܧ>VmIp~X m&Fs=KKmx"87XFQ`"m0*Gh,$8b;p%M1ReA|.,SɅ'\u|͋'uÎ%ֽ0\u0Qhjpt"q EyY6EmlШsT`}e\+ Yvźf( ~]I.(='ܯ[ɐJ hF3OzSr:v1%]Y-B׉P̃&`juPYY ~ޛ{=ǣ\5-]\!)Tާ۔5~זeI+DDԦi30e_&o;>Remnt̄l2X+>͇@x/S }y{;2kxR[+o>C$ILvDb`ACy0شsSIuצJ^AZu&iBֆ(s֏UV n6E.&kx7~,SR(:+}-tjf\Cx,5b<{ye֗:M׬2x')V>Be` Twߓ68/uz|VFbN"VN+sI\h K85캺;jPLfX0?dݱQHJ41&QyFAR챓! e QYgM|fm]C DʂEQ;'7 P^Y^RڝjIY7m/`{^)TzNli S|Z.ԩ)(;OE~=Rbg"WB:L<#i '/ 8~?qi$aV%''5]BX9]SP[2 >|Xgm#;+-R]g] 8 "7Κd $bEldFr[ofq MX_CU84p5fH&gxd|p~J?-iy 'TbgK@uZth @<"Cp㳸+BN^Gtg_Ԏìt*Cu1;Jǎl|JFqLv~L1.)ѕw9cP#өW &[ַoH8p QIQ9P4ڄ}:j0<+e_e<5fms$K~Eavy3ƒ.ϦJ>;N1K 3-3Ln7yx:0ƉҋXa^n`cz #?^/f;~d))8ӂllT{6{ovudUA+}PV?ۍ= }%/0sc}`L ǹt\̀W\\qL1<\VRfmQk/9c? .G6gbǍ㜱-|a˱dbPydޥǾG/D+5yi/  bОݵ_fjB$XgbYN2GRnR8D~b`<L"b)ii`1xyQ^i)/'P4S|Lͦ~$ݵ XqiIQz[Nɪ M)'ջ3)p6&wE ܦ;trZ! c>`{㍀H3%CU®g:=O>#NMwN"V5}RC9kR@8Q}:|`$̒9Xxu->Y?@ ¹46Ky֙1}?W饟56;#TS,iǻԮ{ޮ]0So8uU^`c{?9{KSy~WLѣ jLҰLS ~6%~w߇wo3>Vzd8J}sYۨ82.`tܰ\{Y^oϾ|}u[6ʰ oPouu^nqn,<~~dfzVB2jOd9W۹yɴ,a.@%.~ o{^d㸹4$닍G,ՙ N/@0Àȴ+ h~JG㤈ٚSES`7詀0f߰P(48/?UCihVIu:B˽j+/KbAZk "VoaTiL^PiĚx(<';sbM~#ވ! LVWLrONԎ۵+.Jz;v\)^Bd@쮲b?.*E38&UpAYn;m`Eʱs,HX#;f\(hd]%-kODon4~TQ:#!I2'`T!f[3U0+\ѺPTdp/^;,@t8g I젘!&в ͬz {"zj;JK)vQ]pmjGyMD~\ 1r 2ˢEijJ3S!ewW4h?-0r|L<B8/o~u#B&!򑹭+or/A'j:"Bź_u "J9hh0L F'$ز◬eܢ~0V6ku2b|iB+}n{)iTV/p`ǭIh K g=(6IH+7v5bed >9pê QY"Y6A)9[ԍ T4x2j2;vzb^X `dWz(rux6Js8SDQY{T<ԧ9UJ[G5}p:*Vʌ߫˭3DiG1}cC8ޢ)[Rj2wՅ5]o<+0g5@^9{Vۭ3T0>2tvXnެ_q{lwkWʒ[_[}TˎN,Gu6W"ؕ-k9h,hKhξe3Tڍ>9a 7>:H:=C|gkF㑻⭭!o $)=O'ᰂBv5 +Ѥ _[AoyDC'4rEƫMۣ|lɫat@at5kA]?Pm~$u4E">fGNDVݏ`qy\cBu#ƞ \_6#tCxe:zs7T֊_`mPW/4\w&q[Ku^\_Wr_oM!м3Ap uG YND|J5Ֆӻ vj{y{Y<7ح1!.|]..!nzcOIh[geSxEnɓh^~xݒGf?i/g,bFS64uij0BѬEdq!d]2N쑶D"| kC(a`6䥝"c϶G$0e,?ʉ]gF?j:ks![i]P8^/Wb۰`>KdaMRS!vءQ >.=>FlFT#W v;|7L[T-dFIm9KnNrh>w++lX@VLBxFTPiMCDs22᲌,B*I͋%>t4{Yr2>kv׷ヘc7rBMK(pY?mQ+0 jKF@I!s57ϜZTq]Bu&U1d4 >Օ]JӭaG< 3DڰSY#Pm;2OC #2]W3RqB3%"1ycюM#&o>,p] OqMAHކil -x|6#js'9cd+Y#_y^FY޼i).wPu~uQQ9CIowJt-ۡǯf8.YLghnZ# UqlUL.Y ;xK̝9|r7mg)C˂ÁHY|4(ݶ{\!{Wއƃ'k>L\*̞߾fҵ9 jo6BGݢ|*u"K6 BZ&*Uu>kg<^ٯUΚx% *C Vz1'Gϳ>3?{0gSAD z)ޝ¢N z_vZ }7:Yà3N+Ʊ 6Z?]XyoAc؅@;v7e {Yrnγ$}$4&-7cGDk#e "!-c-@w+$iz D2`>e[y@҆+/m2`|POZUZi`!v[7;JKXޟ"* qىǡb'|Lv>w%-8|O>3N+CLmdh3"c@K>M!K՜uI tMZquhZ=]񼋞ղ%tP֔. М{侌dM~>-.@([O:mcnomu]*+kq曂#W8sH,IqLhovBׂ]YNw+-lW@{}~;2Y9ٍk~Vy=}mE'ؚ3|JKf۞f+u+4f ^v,Q9*#4)ar 8XozכLG{XG<-^ǮE~ӣݸ,JG@Qdljq n`ʈ^  pz,eŁ]^kk{EXX5_(k FJL|ȳ-r2u,Ge9hJ0N>{2H!򵐯 ~#R6qh<җax%,ceu.YZ|p.tGqC3MԌ>AOKD pVg(G"奫&:v2_yp &w?x*#)5M$vúA }ivHZ:ZK;r`&Bp[Ri;>ʅӝ]z0 +DM"^|ƳT\͢MAv촲#$%_+Ăe.l+cN׸oF6!׌gq?;n~aPE~[8}a!cv_P_j{~7Sؖ~11%=O-4~Jw0^ okGEWO:-V/Ws`*4t9Ɉ޳5&Oљ @z6]eZk}ιVE3@G ӣ $Όh$:O-?Ifڱ%JzfD~f摿b(l$Am'`HURukέS)S'֭sg?x|_$\ԚQ7f [S !T+e>%bRV6u9bV`Awq@FĮy:?w,T7Û[xp5s"7'=5}ۙI뽈-vOsC}9N:^/tdž #? S&XJn~QZ71˻Ζ՚^j5zCw|XgYuȒt̏tE\@K (wquqV]u pZ ,Q_d A>LP|HiE9i@+9'{ \ 2XatJr:uhyuCmM C[LM}j,gzq`Xܽ}%\"IN'œi --,_S|#hYREY (8r%;# 3QO!=V6^^p1_bѲ٢S6͢VvI7J6&o'|Jzof+NXovlpJw"r^+֡ eG3_ܫ-߲뚷l ʪsK`4]jZ:%r, M!tЇZ[V邋^y{n|?w` *_,Y)c(YQ$)]3( cP|"m'P1v<›6Zq؂(geG((Amf)UqKh6wm8w5)t̊sp>4^.FVI iUh(vP١ w +ZTpg*Lȵ0Rg#6a cp[27Ę;$Mp5iDz3H^T>W.HrQm 'BE=TVh$ͽsț>).ZzgBcYA&~Pdsc ]xeP3A>'ALB_ٸJ佁Ay&"QgnL.2z8D~p|IhsPE"jN pkϺYސ `*A0g %Ll+WOoVd0ADSV]ADccE5H̻HHic-԰s%+ܠȎ\/љfIw'8(.dlsf:|BBĘ Z_uRRd |QАIێ:72`%t_1kysQvS.84M\  z<]$00&=Ɇup?0 f,GFXЌ˞1q_L@>~L3w2qߦo6>vKe-ap`L)Ų)tADJyE[Qu@"`pGAOժ>(1xd#.8Y503Uh9ɱr\X cYucG%]ujd|{]eInO` :%扎4S+I_PY7Y!>_^/.>Gu=k}}+_j;X,'Z/F8}u=wι q[^w/%@R+Вc6I`|6 OT7СUO ⹫0Gf,zCMuFKf'UAbj1lv_Oo]9hj4 ` X<7K.g jpkU _ +6ʿ'( Q_⇠f1tZD(H2GQ b˧;Xi/Sʓ $M¢F}oշW%`**P-)eB_LUA VY*i(I52jVoR u^Kp"AVΛe+3+o\gD)YclT=P?qv 㯞@ry^!n=+& \dc}#vp*Gq 1SJH2` U ';;G2_~m\.PWx/`ޓVi^8In,`m "7L-\nE+y(/6ne7a&Y.Ƃ8܄-oe͆[̹9IbhK%F#>**K$@ޓqڨ4m?rY-|ٷL`h'gl`טw>Ng*-^IF+\^9`]B.d*DMXRdž.;!MeX=IkKR%t]GOD#F;rlLs3|x+WEnp0}-75E},2ƪug6װhnI PWm~6055#vU,ށi q/x_#Uɺp1ҮJcLO`#})-Y57ia03Xu{KS2<-XU 7UtS5NPKޥtDwRM)­3R$z }666_֛E$h"CYINC׍YY9%WTjx*X:ủ1u鹨0Ǡޗ>%V; =A% +Ģm#xO*gl"\LoUVYId% d0r%g #pu98PϷϒT3R&0=QC|mhN ̀BA+庄'mD |úFa+fp"&I0mJ[:6}M.M+oDitD-XkBdMEAGZddTbx1_C1ub{ֹhDt͹ىp˂jƒxA*+`s *W 央BCK #bKEϔo8͇{S`^0I=RėE*[m,Mi%ZRHg ]x 'ڝD5A,! -p ݄I^q:~g(ԙ&wY9).#"C[v0!PO3ӿhzjZ:-'56 TEɜޗyJPX, LbRҷȊD)S!:߀Ȇעnb!uM/9C^R\i`Q=.|/Lu%b$y`PxC,-wU%J0eO7; URCSM@&fJ i#+.Z<1Vþ@@|٤yxQKC.2c|1ozgǖS.-Ӽ]YH3w8 l)I(\K2E5nԱ,0+{fH3I7D:lVJ{V3!!8x<u`Zt_{X-& >AWNs^LJH/ CNh\:n]wqK!Gci)9?,Pb\}ؐ'(Ya]1Z/6_kr.h]|ua*LGt؛)6؃f7nж#2a 1pb`Ev [mɁ -$*2]_4BȷvX)KS;1F2gS!sKf'Mml\-@N-oi x{tpQB%*A pLܫe˕θOֺ֭ VI8 :O:Oɤ.h=p#ِJ%Q7ʑ\t桧wXzD"S^HA2`U4&MZmW<Ӟv>iT~Z[қ/Nsl`l<\xw.TH+'!ȬA?du =6.zMt MxR:o"@F6V\/"=VVB X GڳE0ZeP\c dXthF d%B@|+у.Jut>H}3N&'||rM H.e86jI7 St|Ϯku9/?*?j}IuáGq`qsG92)Bbx|'zLRj!#"y[f>{PG-xj#U nUear$`X991QK|@Xd-P\jw%߆9+f~G[wK4rhEvk}L};lEY򜖗Df'WeOV[1w.C2X2sEB~>`X l/Ex'mixs. l`PXH2i[L(NUƽfϗjH ,[!:Ħ@\ZDi[3 ׳c6YEah+$RX-Փi6Q}.IWY!Bz U顤LX4u|u.JNGp,+}:0 W _SA>xPo?{@Itmsa-,hPmfN|?M|)#KGRgREeӊOTKS*e550Pz J5=PCQhY M%7/3\͔^!)ӏF夫nT׬QS罴LYd?S =ҳ6uA5u(4u8uC_Xlnsc2ØM|rڮgcg4l jTwr MU DsN>}F)b4*h*x%tTߠ`KOěy'N vZk|$F]|^UQ5{8j*2KYW28&|0Ϭd4_ӧL#tڕ$H}^5 f3,QB$'63i6<̿1q|5svV`t:]q?4&P_OT-t_hxlM@N/ .%[$ WushwC̿ޅ*ݴV4/PC{yÛckj{m~xQ%U{e Wb&΀KeGJqvW#p<{'yNjo =?ߖ_RYSkk9Bt,V۰oy?~s_r3H5(&ӛR*R6[%ȈH[H Wz2*,z{U4έ ErFrKBJm#Lzk>'f1cOJ ~ԍLibWq2cc6"2=Dg9e$S~:~D.E*4$:s.Ůc2W+T;+y)k#yyU#\摩#FވZ:h:*R3r5&+DX!RaC6[H0F"-ie.VLŘ6d!+=Cͪ 2߇=R8AQU˖by b;Dz 0x %y05ɡ=-!|>'wWB`Q̎_2pb k'ό`,,TTjet9hJ9̉"3!VFl8 J9>ÐU".nԌ\&оvy\O7~>!Ш9Dp*:> To1?|dnj,tmICVqA5v/6JN$JJ*Z\sga;w~YgT~G\B15x8< JYz\^5J^ Ωy1k7ocX" ynv>^fB- ں]!w<_7 ~7ܷH:z@pQ[HTRliנ2Lְ$ a 1z^559$2FCCwLa{|FY4jf$ULѪ.pfoì%fkq*ڶXR8Xy)ЀO#oS yr@JV!Z¶SU0D4M*90uVhq;=B \T,!s1ʅ 'r8In*0c4\᎚/aiÓFJK!{RA `({ fkBv r >Ӎ'\%WO<@PkI#6 %B XjUMRLרT;0cnOiQy__QM+HP0+=R٘ҊVKW3[.O~P2-hq_>6ʓy0͉)u5!Mp3CiU`&+mƴlK[$SPVRgän R A̦$B(c& 1pvSfG6xtժr<3,g$f:3]Ll_4Azf_|>w儍mYlٿ+2cq]qtU[R0YO %֌ň 6 aIiB k)e#*y1J ˅R,ua#"#zB$p]:^o$7KJ6LF%p>b/X{7>$]$rdu骣kEU"\<;fz? ki?L֚іwL8!qLK6Ew^Zhzn҅jl[f16ds8$X%Y`^u#^gĹBI,ecG$"´PXa a{KF%Pryh*xdY3iD>o36s&+œ2 JȦtD]Kal 5IY3_DzQbÝ`P8xq5MYRzZo0kz߉@m!TG 5*Bqhx xgaT6疼W[ ЩujѭuǾ慎#/pp[3q7wB9YĿ r{fsW$*Ave:8_^ioIye-335XMxȂ8,=j*AZ,Wk]UT`u"V;ZGBDvyke%#@SuU$dbEDYO(%'ƢMr4KWu;v/墤{rP_ qJ Z]pT7X%EIF /l>#M#~_l1BEmXCpu`u9Yf1{ܸJ9oPgomNgi>_yNߞ/3>'Q:3i|B,%q=Ԙ^J5 @8ڦO3u'&[t=ukuB|N L j$~,gKaMS:i#˥~Oz74Gq-@o '#eWiA%xPH͡ 6)8CQ |K4h@Gbm;ڠظm"eG绎nߞa<JlQ~ŕ\ē ` Te͝iU dGilDD;K!AGpyJؐɥՌ#wMiȬ1]BA >h v;_`r~Nف~'nϼ?{We+'A~]q|tk_tG7Oq[{R9I{=jPw9w͑u@s80_˖=%iV&ی:.:r!V;i fvVs86Xe+0Uae諻x$՛.  +mr!;v ?q:;0> b+ a+/ [tօXL-X$Px<,+k2{8A) U$cma,7 )7Yu5x|Q թy_*!6Zn^,N \nOڟO(&d)4qG}>axA[ͤFDza\CMlWd[2c+2סNE%5FS1&Z%#QFiДƌ(kw`%Kb!or&[:hqN% 2qC>rlv/VlNpȮ͋olBh>e8^ kg4r|q6FٿYTQM'YyP$te/nsL 8ؑhL|:FLS]AXǢʌB6qqu6b\ ͡?MրK+{J:*qbjƃCTչbmPvLRgL+G`(hldI. & sM >E˃јOp:R8xh--wy8`==zR|Гp.x$k~w/~8g~'C5,q()y}m)EmMfcMhss3q.euL!4*P"~gl|FDm'`z†Z ;ZbHU~Y /:2Oup' M {^ەsgLkEz+~\Rch<"K/R{w"몶Ex*A8^dgJuuV՘Gӯ< wSD\;y!Osǎ̓"_^Ayǽ_᫷375-_ak~Ǿ|G=!>$tA'wzM7/-ٴ(Nec вN<ϻټ"}A V\Rh9cb C% cFa0d__ڑᄛ v+buO{Q+KlsAX,gqWFŷtu#c7Q'9yXY32xIBP0+(Yӥ7ш|8ETI<u#[4܃-JuUWPH4$ja>FGY,$@L$m76!S ZLϿ=_hsq?~l?6rـKߋ/0j ?!fpPPJ0G5} e4j@+[_JofN Q]Ptֹ2bZ~rhL!v>-LM EJ Nϴ,n#[/hXn2j1r?!|(ȤKeYB=Q_R5V8Zeב)`C%KHv\ŝX4د FxX-* 2Mb 3>idZ) K&qHR JeAf P]ʤĢ:DU!U51vvqE?3bsZX}ŸU_р[Ee#ϯSwFv,viWP7䡁 wn}ߺߪqv O_ T=o57cvH}#H+QNIr~ܣ7w+ezR6w#ZsWE@x!׽BVcrHPm!B{,WV$x-q2UG:0Ë#J?ZJ ;ơvF][a7g|^@#q]'3{2ũ`)4v6"\\@Am[np7/m9NT A-&UAM77vلxU*c%t:m1sR$2u`/[EPp 0hmM"țQXԝ~:ߚǦ񈅥Q@iRA ŠMb|j^!a nuI6C.m T;yMU{ܗ&P!_0'Ҡ26B&6Sfk|r݋Eu#Ƒ8&ri|`0y$ԸrK˟!"rOK$qGȧ3K #٪d= su?j(AEҵA˷`-RŠ}0R! $G_q2Iy%k)< }g'IƁI7@Н ,HLGtTֈu.!Z%KIχ݈e5ZL4U) XAR*6KYsZX=#E9^y3]ig7¡wy^xg}YgOÏ9r뭷o>O~K_;XG q7J_]yL=7P&Cr0zg g^;/Da~1ؓ+=gާ^dBLח=hdkpdC~:¼rb%-l<GB+4ڐ&bQ;_C67&G䏾5Ee
'page', 'page_title' => get_the_title(), )); ?>

translation/pt_PT.po000064400000104447150211537140010501 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" msgid "View all results" msgstr "Ver todos os resultados" msgid "No results" msgstr "Sem resultados" msgid "Home" msgstr "Início" msgid "CLOSE" msgstr "Fechar" msgid "Page" msgstr "Página" msgid "All" msgstr "Todos" msgid "By" msgstr "Por" msgid "Load more" msgstr "Carregar mais" msgid "View all posts in" msgstr "Ver todos os artigos em" msgid "Tags" msgstr "Tags" msgid "Previous article" msgstr "Artigo anterior" msgid "Next article" msgstr "Próximo artigo" msgid "Authors" msgstr "Autores" msgid "Author" msgstr "Autor" msgid "RELATED ARTICLES" msgstr "ARTIGOS RELACIONADOS" msgid "MORE FROM AUTHOR" msgstr "Mais do autor" msgid "VIA" msgstr "VIA" msgid "SOURCE" msgstr "FONTE" msgid "TAGS" msgstr "TAGS" msgid "SHARE" msgstr "COMPARTILHAR" msgid "Continue" msgstr "Continue" msgid "Read more" msgstr "Leia mais" msgid "Name:" msgstr "Nome:" msgid "Email:" msgstr "E-mail:" msgid "Website:" msgstr "Site:" msgid "Comment:" msgstr "Comentário:" msgid "LEAVE A REPLY" msgstr "DEIXE UMA RESPOSTA" msgid "Post Comment" msgstr "Postar Comentário" msgid "Cancel reply" msgstr "Cancelar resposta" msgid "Reply" msgstr "Responder" msgid "Log in to leave a comment" msgstr "Faça login para deixar um comentário" msgid "NO COMMENTS" msgstr "SEM COMENTÁRIOS" msgid "1 COMMENT" msgstr "1 COMENTÁRIO" msgid "COMMENTS" msgstr "COMENTÁRIOS" msgid "REVIEW OVERVIEW" msgstr "REVER GERAL" msgid "SUMMARY" msgstr "SUMÁRIO" msgid "OVERALL SCORE" msgstr "PONTUAÇÃO GERAL" msgid "Ooops... Error 404" msgstr "Ooops... Erro 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Desculpe, mas a página que está à procura não existe." msgid "You can go to the" msgstr "Você pode ir para" msgid "HOMEPAGE" msgstr "PÁGINA INICIAL" msgid "OUR LATEST POSTS" msgstr "NOSSOS POSTS MAIS RECENTES" msgid "Posts by" msgstr "Posts por" msgid "POSTS" msgstr "POSTS" msgid "Posts tagged with" msgstr "Posts com a tag" msgid "Tag" msgstr "Tag" msgid "Daily Archives:" msgstr "Arquivos diários:" msgid "Monthly Archives:" msgstr "Arquivos Mensais:" msgid "Yearly Archives:" msgstr "Arquivos anuais:" msgid "Archives" msgstr "Arquivos" msgid "LATEST ARTICLES" msgstr "ARTIGOS MAIS RECENTES" msgid "search results" msgstr "resultados da busca" msgid "Search" msgstr "Buscar" msgid "If you're not happy with the results, please do another search" msgstr "Se você não gostou dos resultados, por favor, faça outra pesquisa" msgid "Contact us" msgstr "Contato" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Página %CURRENT_PAGE% de %TOTAL_PAGES%" msgid "Next" msgstr "Próximo" msgid "Prev" msgstr "Anterior" msgid "No results for your search" msgstr "Nenhum resultado para a sua pesquisa" msgid "No posts to display" msgstr "Não há posts para exibir" msgid "LOG IN" msgstr "ENTRAR" msgid "Sign in / Join" msgstr "Entrar / Cadastrar" msgid "Log In" msgstr "Log in" msgid "REGISTER" msgstr "REGISTRAR" msgid "Send My Pass" msgstr "Enviar meu passe" msgid "Forgot your password?" msgstr "Esqueceu sua senha?" msgid "Please wait..." msgstr "Aguarde..." msgid "User or password incorrect!" msgstr "Usuário ou senha incorreta!" msgid "Email or username incorrect!" msgstr "E-mail ou nome de usuário incorreto!" msgid "Email incorrect!" msgstr "E-mail incorreto!" msgid "User or email already exists!" msgstr "Usuário ou e-mail já existe!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Por favor, verifique no seu e-mails (Lixeira ou pasta de spam), a senha já foi enviada." msgid "Email address not found!" msgstr "Endereço de email não encontrado!" msgid "Your password is reset, check your email." msgstr "Sua senha foi redefinida, verifique seu e-mail." msgid "Welcome! Log into your account" msgstr "Bem-vindo! Entre na sua conta" msgid "Register for an account" msgstr "Crie uma conta" msgid "Recover your password" msgstr "Recupere sua senha" msgid "your username" msgstr "seu usuário" msgid "your password" msgstr "sua senha" msgid "your email" msgstr "seu e-mail" msgid "A password will be e-mailed to you." msgstr "Uma senha será enviada por e-mail para você." msgid "Logout" msgstr "Sair" msgid "Like" msgstr "Curtir" msgid "Fans" msgstr "Fãs" msgid "Follow" msgstr "Seguir" msgid "Followers" msgstr "Seguidores" msgid "Subscribe" msgstr "Inscrever" msgid "Subscribers" msgstr "Inscritos" msgid "MORE STORIES" msgstr "MAIS HISTÓRIAS" msgid "Latest" msgstr "Mais recentes" msgid "Featured posts" msgstr "Posts em destaque" msgid "Most popular" msgstr "Mais popular" msgid "7 days popular" msgstr "7 dias populares" msgid "By review score" msgstr "Por pontuação de review" msgid "Random" msgstr "Aleatório" msgid "Trending Now" msgstr "Últimas Notícias" msgid "POPULAR CATEGORY" msgstr "CATEGORIA POPULAR" msgid "EVEN MORE NEWS" msgstr "MAIS NOTÍCIAS" msgid "Previous (Left arrow key)" msgstr "Anterior (Seta a esquerda )" msgid "Next (Right arrow key)" msgstr "Avançar (tecla de seta para a direita)" msgid "%curr% of %total%" msgstr "%curr% de %total%" msgid "The content from %url% could not be loaded." msgstr "O conteúdo de %url% não pode ser carregado." msgid "The image #%curr% could not be loaded." msgstr "A imagem #%curr% não pode ser carregada." msgid "Blog" msgstr "Site" msgid "Share on Facebook" msgstr "Compartilhar no Facebook" msgid "Tweet on Twitter" msgstr "Tweet" msgid "EDITOR PICKS" msgstr "Seleções do editor" msgid "POPULAR POSTS" msgstr "POSTS MAIS POPULARES" msgid "FOLLOW US" msgstr "SIGA-NOS" msgid "ABOUT US" msgstr "SOBRE NÓS" msgid "More" msgstr "Mais" msgid "Featured" msgstr "Destaque" msgid "All time popular" msgstr "Todos os tempos populares" msgid "Likes" msgstr "Curtidas" msgid "Register" msgstr "Registrar" msgid "of" msgstr "de" msgid "Euro Member Countries" msgstr "Países membros do euro" msgid "Your comment is awaiting moderation" msgstr "Seu comentário aguarda moderação" msgid "Follow us on Instagram" msgstr "Siga-nos no instagram" msgid "Back" msgstr "Voltar" msgid "Sign in" msgstr "Entrar" msgid "Sign up" msgstr "Inscrever-se" msgid "Join" msgstr "Junte-se" msgid "Welcome!" msgstr "Bem vinda!" msgid "Log into your account" msgstr "Faça login na sua conta" msgid "Password recovery" msgstr "Recuperar senha" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Por favor, verifique seu e-mail (pasta de índice ou spam), a senha foi enviado para lá." msgid "Australian Dollar" msgstr "Dólar australiano" msgid "Bulgarian Lev" msgstr "Lev Búlgaro" msgid "Brazilian Real" msgstr "Moeda brasileira" msgid "Canadian Dollar" msgstr "Dólar canadense" msgid "Swiss Franc" msgstr "Franco suíço" msgid "Chinese Yuan Renminbi" msgstr "Renminbi chinês yuan" msgid "Czech Republic Koruna" msgstr "Koruna República Checa" msgid "Danish Krone" msgstr "Coroa dinamarquesa" msgid "British Pound" msgstr "Libra britânica" msgid "Hong Kong Dollar" msgstr "Dólar de Hong Kong" msgid "Croatian Kuna" msgstr "Kuna croata" msgid "Hungarian Forint" msgstr "Forint húngaro" msgid "Indonesian Rupiah" msgstr "Rupia indonésia" msgid "Israeli Shekel" msgstr "Shekel israelense" msgid "Indian Rupee" msgstr "Rupia indiana" msgid "Japanese Yen" msgstr "Yen japonês" msgid "Korean (South) Won" msgstr "Coreano (sul) won" msgid "Mexican Peso" msgstr "Peso mexicano" msgid "Malaysian Ringgit" msgstr "Ringgit malaio" msgid "Norwegian Krone" msgstr "Coroa norueguesa" msgid "New Zealand Dollar" msgstr "Dólar da Nova Zelândia" msgid "Philippine Peso" msgstr "Peso filipino" msgid "Polish Zloty" msgstr "Zloty polonês" msgid "Romanian (New) Leu" msgstr "Romena (novo) leu" msgid "Russian Ruble" msgstr "Rublo russo" msgid "Swedish Krona" msgstr "Coroa sueca" msgid "Singapore Dollar" msgstr "Dólar de Singapura" msgid "Thai Baht" msgstr "Baht tailandês" msgid "Turkish Lira" msgstr "Lira turca" msgid "United States Dollar" msgstr "Dolar dos Estados Unidos" msgid "South African Rand" msgstr "Rand sul-africano" msgid "Privacy Policy" msgstr "Política de Privacidade" msgid "views" msgstr "visualizações" msgid "Modified date:" msgstr "Data modificada:" msgid "Please enter your name here" msgstr "Por favor, digite seu nome aqui" msgid "Please enter your email address here" msgstr "Por favor, digite seu endereço de e-mail aqui" msgid "You have entered an incorrect email address!" msgstr "Você digitou um endereço de e-mail incorreto!" msgid "Please enter your comment!" msgstr "Por favor digite seu comentário!" msgid "Logged in as" msgstr "Logado como" msgid "Log out?" msgstr "Sair?" msgid "Logged in as %s. Edit your profile." msgstr "Logado como% s. Edite seu perfil." msgid "Edit" msgstr "Editar" msgid "Login" msgstr "Entrar" msgid "Send My Password" msgstr "Enviar minha senha" msgid "Create an account" msgstr "Crie a sua conta aqui" msgid "Welcome! Register for an account" msgstr "Bem vinda! registre-se para uma conta" msgid "About me" msgstr "Sobre mim" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Salve meu nome, e-mail e site neste navegador para a próxima vez que eu comentar." msgid "Orders" msgstr "Ordens" msgid "Addresses" msgstr "Endereços" msgid "Account settings" msgstr "Configurações de Conta" msgid "Hello" msgstr "Olá" msgid "No products in the cart." msgstr "Nenhum produto no carrinho." msgid "Product categories" msgstr "Categorias de Produtos" msgid "Product tags" msgstr "Etiquetas de produto" msgid "Success" msgstr "Sucesso" msgid "Acknowledgment is required!" msgstr "Reconhecimento é necessário!" msgid "Please fill in a valid email." msgstr "Por favor preencha um email válido." msgid "Please fill in an email address." msgstr "Por favor preencha um endereço de e-mail." msgid "Get into your account." msgstr "Entre em sua conta." msgid "My subscription account" msgstr "Minha conta de assinatura" msgid "Account details" msgstr "Detalhes da conta" msgid "Subscriptions" msgstr "Assinaturas" msgid "My woo account" msgstr "Minha conta woo" msgid "Log out" msgstr "Sair" msgid "Email address" msgstr "Endereço de e-mail" msgid "Username" msgstr "Nome do usuário" msgid "Password" msgstr "Senha" msgid "must contain at least one lower case (a..z)" msgstr "deve conter pelo menos uma minúscula (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "deve conter pelo menos uma caixa alta (a..z)" msgid "must contain at least 6 characters in length" msgstr "deve conter pelo menos 6 caracteres de comprimento" msgid "Repeat password" msgstr "Repita a senha" msgid "Already have an account?" msgstr "Já tem uma conta?" msgid "Recover password" msgstr "Recuperar senha" msgid "Username or Email address" msgstr "Nome de Usuário ou Endereço de Email" msgid "Forgot password?" msgstr "Esqueceu a senha?" msgid "Don't have an account?" msgstr "Não tem uma conta?" msgid "Dashboard" msgstr "Painel de controle" msgid "Welcome to your account!" msgstr "Bem-vindo à sua conta!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Olá% 1 $ s (não% 2 $ s?% 3 $ s)! a partir do painel de sua conta, você pode visualizar suas assinaturas e gerenciar os detalhes de sua conta." msgid "Lost Password" msgstr "Senha perdida" msgid "Manage your account details." msgstr "Gerenciar os detalhes de sua conta." msgid "First name" msgstr "Primeiro nome" msgid "Last name" msgstr "último nome" msgid "Display name" msgstr "Nome em Exibição" msgid "Current password" msgstr "Senha atual" msgid "(leave blank to leave unchanged)" msgstr "(deixe em branco para não alterar)" msgid "New password" msgstr "Nova Senha" msgid "Confirm new password" msgstr "Confirme a nova senha" msgid "Save changes" msgstr "Salvar mudanças" msgid "All your subscriptions." msgstr "Todas as suas assinaturas." msgid "Plan" msgstr "Plano" msgid "Payment type" msgstr "Tipo de pagamento" msgid "Status" msgstr "Status" msgid "Months" msgstr "Meses" msgid "Start date" msgstr "Data de início" msgid "End date" msgstr "Data final" msgid "missing plan" msgstr "plano faltando" msgid "Free" msgstr "Gratuitamente" msgid "Active" msgstr "Ativo" msgid "Trial" msgstr "Julgamento" msgid "Blocked" msgstr "Bloqueado" msgid "Closed" msgstr "Fechado" msgid "Not paid" msgstr "Não pago" msgid "Awaiting payment" msgstr "Aguardando pagamento" msgid "Subscription info" msgstr "Informação de assinatura" msgid "ID" msgstr "IDENTIFICAÇÃO" msgid "Name" msgstr "Nome" msgid "Company name" msgstr "Nome da empresa" msgid "VAT" msgstr "CUBA" msgid "Address" msgstr "Morada" msgid "City" msgstr "Cidade" msgid "Country/State" msgstr "País / estado" msgid "Email" msgstr "O email" msgid "Postal code" msgstr "Código postal" msgid "Direct bank transfer details" msgstr "Detalhes de transferência bancária direta" msgid "Account name" msgstr "Nome da conta" msgid "Account number" msgstr "Número de conta" msgid "Bank name" msgstr "Nome do banco" msgid "Routing number" msgstr "Número de roteamento" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic / swift" msgid "Instructions" msgstr "Instruções" msgid "No subscription created." msgstr "Nenhuma assinatura criada." msgid "Choose plan" msgstr "Escolha o plano" msgid "Payment methods" msgstr "Métodos de Pagamento" msgid "Total" msgstr "Total" msgid "Period" msgstr "Período" msgid "Subscription summary" msgstr "Resumo da assinatura" msgid "Phone" msgstr "Telefone" msgid "Postcode" msgstr "Código postal" msgid "County" msgstr "Município" msgid "Town/City" msgstr "Cidade Cidade" msgid "Street address" msgstr "Endereço" msgid "Country/Region" msgstr "País / região" msgid "VAT Number" msgstr "Número de IVA" msgid "(optional)" msgstr "(opcional)" msgid "Billing details" msgstr "Detalhes de faturamento" msgid "User information" msgstr "Informação do usuário" msgid "It seems that no available payment methods have been configured." msgstr "Parece que nenhum método de pagamento disponível foi configurado." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Obrigada! Estamos muito satisfeitos em vê-lo aqui. sua assinatura será ativada em breve!" msgid "Our bank details" msgstr "Nossos dados bancários" msgid "Your subscription details" msgstr "Detalhes da sua assinatura" msgid "View subscription" msgstr "Ver assinatura" msgid "You have not selected a valid subscription plan." msgstr "Você não selecionou um plano de assinatura válido." msgid "Field empty" msgstr "Campo vazio" msgid "Empty first name" msgstr "Primeiro nome vazio" msgid "Empty last name" msgstr "Sobrenome vazio" msgid "Empty country" msgstr "País vazio" msgid "Empty address" msgstr "Endereço vazio" msgid "Empty city" msgstr "Cidade vazia" msgid "Empty county" msgstr "Condado vazio" msgid "Empty postcode" msgstr "Código postal vazio" msgid "Empty phone" msgstr "Telefone vazio" msgid "Empty email" msgstr "Email vazio" msgid "Email or username empty!" msgstr "E-mail ou nome de usuário vazio!" msgid "Pass empty!" msgstr "Passe vazio!" msgid "Username incorrect!" msgstr "Nome de usuário incorreto!" msgid "Invalid Pass Pattern!" msgstr "Padrão de passagem inválido!" msgid "Please activate your account by following the link sent to your email address." msgstr "Ative sua conta seguindo o link enviado para seu endereço de e-mail." msgid "Resend activation link" msgstr "Reenviar link de ativação" msgid "In order to have access to this section, you have to activate your account." msgstr "Para ter acesso a esta seção, você deve ativar sua conta." msgid "Email empty!" msgstr "E-mail vazio!" msgid "Username empty!" msgstr "Nome de usuário vazio!" msgid "Pass pattern incorrect!" msgstr "Padrão de passagem incorreto!" msgid "Retyped pass empty!" msgstr "Passe redigitado vazio!" msgid "Retyped pass exactly!" msgstr "Passe redigitado exatamente!" msgid "User already exists!" msgstr "Usuário já existe!" msgid "Email already exists!" msgstr "E-mail já existe!" msgid "Your account could not be created." msgstr "Sua conta não pôde ser criada." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Verifique seu e-mail (caixa de entrada ou pasta de spam) para validar sua conta." msgid "User empty!" msgstr "Usuário vazio!" msgid "User does not exists!" msgstr "Usuário não existe!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Novo link de ativação foi gerado. verifique seu e-mail (caixa de entrada ou pasta de spam) para validar sua conta." msgid "CAPTCHA verification failed!" msgstr "Falha na verificação do captcha!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Falha na pontuação do usuário captcha. Por favor, entre em contato conosco!" msgid "Loading" msgstr "Carregando" msgid "Here are the results for the search:" msgstr "Aqui estão os resultados da pesquisa:" msgid "Price" msgstr "Preço" msgid "EXCLUSIVE" msgstr "EXCLUSIVO" msgid "Tel:" msgstr "Telefone:" msgid "Share" msgstr "Compartilhado" msgid "Print" msgstr "Imprimir" msgid "At" msgstr "No" msgid "Comments are closed." msgstr "Comentários estão fechados." msgid "Payment method" msgstr "Forma de pagamento" msgid "You must be logged out to view this page." msgstr "Você deve estar desconectado para visualizar esta página." msgid "Retyped Pass incorrect!" msgstr "Redigitado passe incorreto!" msgid "%s is a required field." msgstr "%s é um campo obrigatório." msgid "Please provide a valid email address." msgstr "Por favor, forneça um endereço de e-mail válido." msgid "This email address is already registered." msgstr "Este endereço de e-mail já está registrado." msgid "Please fill out all password fields." msgstr "Preencha todos os campos de senha." msgid "Please enter your current password." msgstr "Por favor digite sua senha atual." msgid "Please re-enter your password." msgstr "Por favor, digite sua senha novamente." msgid "New passwords do not match." msgstr "Novas senhas não combinam." msgid "Your current password is incorrect." msgstr "Sua senha atual está incorreta." msgid "Account details changed successfully." msgstr "Detalhes da conta alterados com sucesso." msgid "A new activation link has been sent to your email address!" msgstr "Um novo link de ativação foi enviado para seu endereço de e-mail!" msgid "unlimited" msgstr "ilimitado" msgid "Pay with Stripe" msgstr "Pague com tarja" msgid "Cancel subscription" msgstr "Cancelar assinatura" msgid "Please check your email and confirm subscription!" msgstr "Por favor verifique seu e-mail e confirme a assinatura!" msgid "Successfully subscribed!" msgstr "Inscrito com sucesso!" msgid "Successfully unsubscribed!" msgstr "Cancelado com Sucesso!" msgid "Enter promo code here" msgstr "Insira o código promocional aqui" msgid "Apply" msgstr "Aplicar" msgid "Coupon applied" msgstr "Cupom aplicado" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Erro não detectado: algo deu errado, recarregue a página e tente novamente!" msgid "The coupon code you entered is invalid" msgstr "O código do cupom que você digitou é inválido" msgid "The coupon code you entered has reached its usage limit" msgstr "O código do cupom que você digitou atingiu seu limite de uso" msgid "The coupon code you entered has expired" msgstr "O código do cupom que você digitou expirou" msgid "Coupon name is required !" msgstr "O nome do cupom é obrigatório!" msgid "Please enter a coupon code first!" msgstr "Insira um código de cupom primeiro!" msgid "Invalid" msgstr "Inválido" msgid "Applied" msgstr "Aplicado" msgid "Remove" msgstr "Remover" msgid "Price not set" msgstr "Preço não definido" msgid "Grand Total" msgstr "Total geral" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Você já tem uma assinatura, mas ela ainda está esperando para ser paga!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Esta assinatura foi cancelada e terminará em %end_date%." msgid "Go to checkout" msgstr "Vá para a finalização da compra" msgid "Stripe invoice details" msgstr "Detalhes da fatura de faixa" msgid "Stripe subscription details" msgstr "Detalhes da assinatura de stripe" msgid "Current status" msgstr "Status atual" msgid "Initial Invoice Paid" msgstr "Fatura inicial paga" msgid "Subscription Create: Initial Invoice Paid" msgstr "Criação de assinatura: fatura inicial paga" msgid "Subscription Create: Initial Invoice has been created" msgstr "Criação de assinatura: a fatura inicial foi criada" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Criação de assinatura: a fatura inicial foi finalizada e está pronta para ser paga" msgid "Subscription Update: Invoice Paid" msgstr "Atualização de assinatura: fatura paga" msgid "Subscription Renew: Invoice Paid" msgstr "Renovação de assinatura: fatura paga" msgid "Subscription Renew: Invoice Finalized" msgstr "Renovação de assinatura: fatura finalizada" msgid "Subscription Renew: Invoice Created" msgstr "Renovação de assinatura: fatura criada" msgid "Subscription Renew: Invoice Upcoming" msgstr "Renovação de assinatura: fatura futura" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Assinatura expirou: fatura anulada (a primeira fatura não foi paga)" msgid "Subscription Deleted" msgstr "Assinatura excluída" msgid "Subscription Create: Trialing" msgstr "Criação de assinatura: teste" msgid "Subscription Canceled" msgstr "Assinatura cancelada" msgid "Subscription Create: Initial Invoice voided" msgstr "Criação de assinatura: fatura inicial anulada" msgid "Subscription Renew: Invoice voided" msgstr "Renovação de assinatura: fatura anulada" msgid "Subscription Update: Invoice voided" msgstr "Atualização de assinatura: fatura anulada" msgid "Invoice updated" msgstr "Fatura atualizada" msgid "Subscription has been canceled and will end on: " msgstr "A assinatura foi cancelada e terminará em:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Configuração bem-sucedida - você configurou com sucesso sua forma de pagamento para pagamentos futuros." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Falha na configuração. Lamentamos, mas ocorreu um erro ao configurar sua forma de pagamento. tente novamente com uma forma de pagamento diferente." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Pagamento bem sucedido - o último pagamento da sua assinatura foi concluído com sucesso." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Processamento de pagamento - o último pagamento da sua assinatura está sendo processado." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Falha no pagamento - lamentamos, ocorreu um erro ao processar seu pagamento. tente novamente com uma forma de pagamento diferente." msgid "Download" msgstr "Download" msgid "Stripe invoice" msgstr "Fatura de faixa" msgid "N/A" msgstr "N / D" msgid "Latest invoice" msgstr "última fatura" msgid "Invoice" msgstr "Fatura" msgid "Unpaid subscription." msgstr "Assinatura não paga." msgid "Locked subscription." msgstr "Assinatura bloqueada." msgid "Invalid subscription." msgstr "Assinatura inválida." msgid "Pay now" msgstr "Pague agora" msgid "Show more info" msgstr "Mostrar mais informações" msgid "Show less info" msgstr "Mostrar menos informações" msgid "Complete payment" msgstr "Completar o pagamento" msgid "or" msgstr "ou" msgid "Setup Payment" msgstr "Configurar pagamento" msgid "Go to Payment" msgstr "Vá para o pagamento" msgid "Alphabetical A -> Z" msgstr "Alfabético a -> z" msgid "Oldest posts" msgstr "Postagens mais antigas" msgid "Select" msgstr "Selecione" msgid "on" msgstr "sobre" msgid "No bookmarked posts" msgstr "Nenhuma postagem marcada" msgid "Log in With Facebook" msgstr "Entrar com o Facebook" msgid "Forgot your password? Get help" msgstr "Esqueceu sua senha? obter ajuda" msgid "Someone has requested a password reset for the following account:" msgstr "Alguém solicitou uma redefinição de senha para a seguinte conta:" msgid "Username: %s" msgstr "Nome de usuário: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Se isso foi um erro, ignore este e-mail e nada acontecerá." msgid "To reset your password, visit the following address:" msgstr "Para redefinir sua senha, visite o seguinte endereço:" msgid "Members" msgstr "Membros" msgid "Downloads" msgstr "Transferências" msgid "inc. TAX" msgstr "Inc. imposto" msgid "ex. TAX" msgstr "ex. imposto" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Ocorreu um erro inesperado ao tentar criar sua postagem. Por favor, tente novamente." msgid "Your post has been successfully created." msgstr "Sua postagem foi criada com sucesso." msgid "Your post has been successfully updated." msgstr "Sua postagem foi atualizada com sucesso." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Ocorreu um erro inesperado e o e-mail não pôde ser enviado." msgid "Location:" msgstr "Localização:" msgid "The email has been successfully sent." msgstr "O e-mail foi enviado com sucesso." msgid "An unexpected error has occurred. Please try again." msgstr "Ocorreu um erro inesperado. Por favor, tente novamente." msgid "Drag and drop or browse" msgstr "Arraste e solte ou navegue" msgid "Search by keyword..." msgstr "Pesquise por palavra-chave..." msgid "Select parent" msgstr "Selecione pai" msgid "Add new" msgstr "Adicionar novo" msgid "Parent" msgstr "Pai" msgid "Select child" msgstr "Selecione filho" msgid "Select sub-child" msgstr "Selecione subfilho" msgid "Posted by" msgstr "Postado por" msgid "Overall" msgstr "Geral" msgid "Post review" msgstr "Postar revisão" msgid "This field is required!" msgstr "Este campo é obrigatório!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "O seu comentário foi publicado. atualize a página para vê-la." msgid "Your review has been registered and is awaiting approval." msgstr "Sua avaliação foi registrada e aguarda aprovação." msgid "Submit reply" msgstr "Enviar resposta" msgid "Enter your reply" msgstr "Digite sua resposta" msgid "Cancel" msgstr "Cancelar" msgid "Some required fields have been left blank." msgstr "Alguns campos obrigatórios foram deixados em branco." msgid "Please enter a valid email address." msgstr "Por favor insira um endereço de e-mail válido." msgid "The number cannot be lower than" msgstr "O número não pode ser menor que" msgid "The number cannot be higher than" msgstr "O número não pode ser maior que" msgid "Leave a review" msgstr "Deixe um comentário" msgid "Submit" msgstr "Enviar" msgid "Update" msgstr "Atualizar" msgid "out of 5" msgstr "de 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Você atingiu o limite de avaliações que pode enviar para este artigo" msgid "Log in to leave a review." msgstr "Faça login para deixar um comentário." msgid "Enter a title for your review" msgstr "Insira um título para sua avaliação" msgid "Enter your review" msgstr "Insira sua avaliação" msgid "Review criteria" msgstr "Critérios de revisão" msgid "Enter Your Name or Company" msgstr "Digite seu nome ou empresa" msgid "Submit review" msgstr "Enviar revisão" msgid "Delete" msgstr "Excluir" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Sua resposta foi publicada. atualize a página para vê-la." msgid "You have not created any posts." msgstr "Você não criou nenhuma postagem." msgid "The selected post has been successfully deleted." msgstr "A postagem selecionada foi excluída com sucesso." msgid "Rating" msgstr "Avaliação" msgid "Title" msgstr "Título" msgid "Post image" msgstr "Postar imagem" msgid "Categories" msgstr "Categorias" msgid "Date" msgstr "Data" msgid "Source title" msgstr "Título da Fonte" msgid "No rating" msgstr "Sem avaliação" msgid "View" msgstr "Visualizar" msgid "Publish" msgstr "Publicar" msgid "Add new post" msgstr "Adicionar nova postagem" msgid "Edit post" msgstr "Editar post" msgid "Publish a post" msgstr "Publicar uma postagem" msgid "The status for %POST_TITLE% has been changed." msgstr "O status de %post_title% foi alterado." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Tem certeza de que deseja publicar %post_title%?" msgid "Delete a post" msgstr "Excluir uma postagem" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Tem certeza de que deseja excluir %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% foi movido para a lixeira." msgid "You do not hold the required priveleges to execute this request." msgstr "Você não possui os privilégios necessários para executar esta solicitação." msgid "No search results." msgstr "Nenhum resultado de pesquisa." msgid "Yes" msgstr "Sim" msgid "No" msgstr "Não" msgid "Save" msgstr "Salvar" msgid "Search for a location" msgstr "Procure um local" msgid "Address line" msgstr "Linha de endereço" msgid "(Optional)" msgstr "(opcional)" msgid "State" msgstr "Estado" msgid "Country" msgstr "País" msgid "Create new term" msgstr "Criar novo termo" msgid "Description" msgstr "Descrição" msgid "Delete bookmarks" msgstr "Excluir favoritos" msgid "Reset your password" msgstr "Redefinir sua senha" msgid "The password reset key has expired." msgstr "A chave de redefinição de senha expirou." msgid "The password reset key is invalid." msgstr "A chave de redefinição de senha é inválida." msgid "New password *" msgstr "Nova Senha *" msgid "Repeat new password *" msgstr "Repita a nova senha *" msgid "Save password" msgstr "Salvar senha" msgid "Your account has been successfully activated!" msgstr "Sua conta foi ativada com sucesso!" msgid "Your account has already been activated!" msgstr "Sua conta já foi ativada!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Verifique seu e-mail para obter o link de ativação correto. este link é inválido." msgid "Account activation" msgstr "Ativação de conta" msgid "Please enter a new password before proceeding." msgstr "Digite uma nova senha antes de continuar." msgid "Please confirm the new password before proceeding." msgstr "Confirme a nova senha antes de continuar." msgid "Please make sure that the passwords match." msgstr "Certifique-se de que as senhas correspondam." msgid "The password has been reset successfully." msgstr "A senha foi redefinida com sucesso." msgid "Manage your billing details." msgstr "Gerenciar seus detalhes de faturamento." msgid "Profile picture" msgstr "Foto do perfil" msgid "Remaining publishing rights." msgstr "Direitos de publicação restantes." msgid "The number of articles you have left to publish across different post types." msgstr "O número de artigos que você ainda tem para publicar em diferentes tipos de postagem." msgid "Bank transfer" msgstr "Transferência bancária" msgid "Direct Bank Transfer" msgstr "Transferência bancária direta" msgid "Canceled" msgstr "Cancelado" msgid "Cycle Interval" msgstr "Intervalo de ciclo" msgid "In order to update this filed, you have to activate your account." msgstr "Para atualizar este campo, você deve ativar sua conta." msgid "Cannot process %s field." msgstr "Não é possível processar o campo %s." msgid "Modified date" msgstr "Data modificada" translation/el.mo000064400000133141150211537140010041 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,j/Dj-tj%jjjj3kJk ^kik.kk%k,kDlZl2ml*l&l llm)mQBn n$nnnnno0ppdq#~q9qqq*q#(rLr._rrvrs7s*Jsus$ssss%s"t2tBt'Qtytt&tt!tCtF8u7uuuuRvSvbvwv7v#v!vXwIlwww/w0x8x Ux`xwx5x+xxx y !y*-yXypzzLzz7z6{P{GW{5{={|!3|IU|7|3| }+}9>}%x}+}}}*})~#:~^~z~ ~0~~~' !4Vvʀ$BSq ]̈́^ce…V(_{߆*[a`?I17PZD8Y؉.2a#}$''6R.rE! -) W#d'#Ԍ02A] {'2- "9/Ei ?41SBB3ُ2 @@''ɐ "+<*U#0'?"['~)Г&:ӕ@Od%TU$#'K^q<:ߘ#/!S#u&dיh<`P=(R]QSHOQ>QN)1#[$:ȟ!?P_px\8Txac7ŢKSIQT]hNOGPO;bܦ ?L &@`"3(L%u#6ܩ8L&d#_+<R[b9q!ͫ?#Q;I׬y'srGVڮ1_ɯZ)LTѰ:&[aTLH_}{&`6:Q a`PX4-յ+#=lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: el Το %post_title% έχει μετακινηθεί στον κάδο απορριμμάτων.%curr% από %total%Το %s είναι υποχρεωτικό πεδίο.(προαιρετικός)(αφήστε κενό για να αφήσετε αμετάβλητο)(προαιρετικός)1 ΣΧΟΛΙΟΔημοφιλή 7 ημερώνένας νέος σύνδεσμος ενεργοποίησης έχει σταλεί στη διεύθυνση email σας!Ένας κωδικός πρόσβασης θα σταλθεί με e-mail σε εσάς.ΣΧΕΤΙΚΆ ΜΕ ΕΜΆΣσχετικά με μέναΕνεργοποίηση Λογαριασμούλεπτομέρειες λογαριασμούτα στοιχεία λογαριασμού άλλαξαν με επιτυχία.όνομα λογαριασμούαριθμός λογαριασμούρυθμίσεις λογαριασμούαπαιτείται αναγνώριση!ενεργόςπροσθεσε νεοπροσθήκη νέας ανάρτησηςδιεύθυνσηγραμμή διεύθυνσηςδιευθύνσειςΌλαόλων των εποχών δημοφιλήόλες τις συνδρομές σας.αλφαβητικό α -> ζΈχετε ήδη λογαριασμό?Παρουσιάστηκε ένα απροσδόκητο σφάλμα κατά την προσπάθεια δημιουργίας της ανάρτησής σας. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα.προέκυψε ένα απροσδόκητο σφάλμα και δεν ήταν δυνατή η αποστολή του μηνύματος.Παρουσιάστηκε μη αναμενόμενο σφάλμα. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα.εφαρμοσμένοςισχύουνΑρχείοΕίστε βέβαιοι ότι θέλετε να διαγράψετε το %post_title%;Είστε βέβαιοι ότι θέλετε να δημοσιεύσετε το %post_title%;στοδολάριο ΑυστραλίαςΔημιουργόςΔημιουργοίΕν αναμονή πληρωμήςπίσωόνομα τράπεζαςτραπεζική μεταφοράBic/swiftλεπτομέρειες χρέωσηςμπλοκαριστείBlogΡεάλ ΒραζιλίαςΛίρα Αγγλίαςλέβα βουλγαρίαςΑπόΚατά βαθμολογία κριτικήςΗ βαθμολογία χρήστη captcha απέτυχε. Παρακαλώ επικοινωνήστε μαζί μας!Η επαλήθευση captcha απέτυχε!ΚΛΕΙΣΙΜΟΣΧΟΛΙΑκαναδικό δολάριοΜαταίωσηΑκύρωση απάντησηςακύρωση συνδρομήςακυρώθηκεδεν είναι δυνατή η επεξεργασία του πεδίου %s.κατηγορίεςελέγξτε το email σας για τον σωστό σύνδεσμο ενεργοποίησης. αυτός ο σύνδεσμος δεν είναι έγκυρος.κινέζικο γιουάν γιουάνεπιλέξτε σχέδιοπόληκλειστόΣχόλιο:τα σχόλια είναι κλειδωμένα.Όνομα εταιρείαςπλήρης πληρωμήΕπιβεβαιώστε τον καινούριο σας κωδικόΕπικοινωνίαΣυνέχειαΧώραχώρα/περιοχήχώρα/κράτοςκομητείαεφαρμόζεται το κουπόνιΤο όνομα του κουπονιού είναι υποχρεωτικό!δημιουργία λογαριασμούδημιουργία νέου όρουκροατικό κούνατρέχον κωδικό πρόσβασηςτρέχουσα κατάστασημεσοδιάστημα κύκλουκορώνας Τσεχίας ΔημοκρατίαΗμερήσιο Αρχείο:δανική κορώναταμπλόημερομηνίαδιαγράφωδιαγράψτε μια ανάρτησηδιαγραφή σελιδοδεικτώνπεριγραφήαπευθείας τραπεζική μεταφοράστοιχεία απευθείας τραπεζικής μεταφοράςεμφανιζόμενο όνομαδεν έχεις λογαριασμό;Κατεβάστελήψειςμεταφορά και απόθεση ή περιήγησηΕΠΙΛΟΓΈΣ ΣΥΝΤΆΚΤΗΑΚΟΜΑ ΠΕΡΙΣΣΟΤΕΡΑ ΝΕΑΑΠΟΚΛΕΙΣΤΙΚΌΣεπεξεργασίαεπεξεργασία ανάρτησηςΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗδιεύθυνση ηλεκτρονικού ταχυδρομείουΗ διεύθυνση email δεν βρέθηκε!Το email υπάρχει ήδη!το email άδειο!Email λανθασμένο!κενό email ή όνομα χρήστη!Email ή όνομα χρήστη λανθασμένο!Email:κενή διεύθυνσηάδεια πόληάδεια χώραάδεια κομητείακενό emailκενό όνομακενό επώνυμοάδειο τηλέφωνοκενός ταχυδρομικός κώδικαςημερομηνία λήξηςεισάγετε το όνομα ή την εταιρεία σαςεισάγετε έναν τίτλο για την κριτική σαςεισάγετε εδώ τον κωδικό προσφοράςεισάγετε την απάντησή σαςεισάγετε την κριτική σαςχωρών μελών του ευρώΑΚΟΛΟΥΘΗΣΕ ΜΑΣΥποστηρικτέςΠροτεινόμενοΠροτεινόμενες δημοσιεύσειςπεδίο κενόόνομαΑκολουθήστεακολουθήστε μας στο InstagramΑκόλουθοιΞεχάσατε τον κωδικό?Ξεχάσατε τον κωδικό σας;Ξεχάσατε τον κωδικό σας? ζήτα βοήθειαΕλεύθεροςμπείτε στον λογαριασμό σας.πηγαίνετε στην πληρωμήΠηγαίνετε στο ταμείοσύνολοΑΡΧΙΚΗ ΣΕΛΙΔΑγεια σαςγεια %1$s (όχι %2$s; %3$s)! από τον πίνακα ελέγχου του λογαριασμού σας μπορείτε να δείτε τις συνδρομές σας και να διαχειριστείτε τα στοιχεία του λογαριασμού σας.εδώ είναι τα αποτελέσματα για την αναζήτηση:Αρχικήδολάριο Χονγκ Κονγκουγγρικό φιορίνιIBANΤΑΥΤΌΤΗΤΑαν αυτό ήταν λάθος, απλώς αγνοήστε αυτό το email και δεν θα συμβεί τίποτα.Αν δεν είστε ευχαριστημένοι με τα αποτελέσματα, παρακαλούμε πραγματοποιήστε μια άλλη αναζήτησηΓια να έχετε πρόσβαση σε αυτήν την ενότητα, πρέπει να ενεργοποιήσετε τον λογαριασμό σας.Για να ενημερώσετε αυτό το αρχείο, πρέπει να ενεργοποιήσετε τον λογαριασμό σας.ινδική ρουπίαινδονησιακή ρουπίαεξοφλήθηκε το αρχικό τιμολόγιοοδηγίεςΜη έγκυρομη έγκυρο μοτίβο πάσας!μη έγκυρη συνδρομή.τιμολόγιοτο τιμολόγιο ενημερώθηκεσέκελ Ισραήλφαίνεται ότι δεν έχουν διαμορφωθεί διαθέσιμες μέθοδοι πληρωμής.γιεν ΙαπωνίαςΣυμμετοχήκορεάτικα (νότια) γουόνΤΕΛΕΥΤΑΙΑ ΑΡΘΡΑΑΦΗΣΤΕ ΜΙΑ ΑΠΑΝΤΗΣΗΣΥΝΔΕΣΗεπίθετοΤελευταίατελευταίο τιμολόγιοαφήστε μια κριτικήΚάντε LikeόμοιούςΦόρτωση περισσοτέρωνφόρτωσητοποθεσία:κλειδωμένη συνδρομή.ΣύνδεσηΣύνδεση με το FacebookΣυνδεθείτε για να αφήσετε ένα σχόλιοσυνδεθείτε για να αφήσετε μια κριτική.Συνδεθείτε στο λογαριασμό σαςΑποσύνδεσηΑποσυνδέση?Συνδεδεμένος ωςσυνδεθήκατε ως% s. επεξεργασία του προφίλ σας.ΣύνδεσηΑποσύνδεσηχαμένος κωδικόςΠΕΡΙΣΣΟΤΕΡΑ ΑΠΟ ΤΟΝ ΔΗΜΙΟΥΡΓΟΠΕΡΙΣΣΟΤΕΡΑ ΘΕΜΑΤΑΜαλαισίας ρίνγκιτδιαχειριστείτε τα στοιχεία του λογαριασμού σας.διαχειριστείτε τα στοιχεία χρέωσής σας.μέληπέσο Μεξικούτροποποιημένη ημερομηνίατροποποιημένη ημερομηνία:Μηνιαίο Αρχείο:μήνεςπερισσότεροΤα πιο δημοφιλήτον λογαριασμό συνδρομής μουο λογαριασμός μου στο wooα/αΚΑΝΕΝΑ ΣΧΟΛΙΟόνομαΌνομα:Δολάριο Νέας Ζηλανδίαςδημιουργήθηκε νέος σύνδεσμος ενεργοποίησης. ελέγξτε το email σας (εισερχόμενα ή φάκελο ανεπιθύμητης αλληλογραφίας) για να επικυρώσετε τον λογαριασμό σας.Νέος ΚωδικόςΝέος Κωδικός *οι νέοι κωδικοί πρόσβασης δεν ταιριάζουν.ΕπόμενοΕπόμενο (Κουμπί δεξιού βέλους)Επόμενο άρθροόχιδεν υπάρχουν σελιδοδείκτες αναρτήσειςΚαμία δημοσίευση για προβολήΔεν υπάρχουν προϊόντα στο καλάθι.καμία βαθμολογίαΚανένα αποτέλεσμαΚανένα αποτέλεσμα για την αναζήτησή σαςκανένα αποτέλεσμα αναζήτησης.δεν δημιουργήθηκε συνδρομή.νορβηγική κορόνααπληρωτοςΟΙ ΤΕΛΕΥΤΑΙΕΣ ΜΑΣ ΔΗΜΟΣΙΕΥΣΕΙΣΣΥΝΟΛΙΚΗ ΒΑΘΜΟΛΟΓΙΑπαλαιότερες αναρτήσειςΟυπς... Σφάλμα 404παραγγελίεςτραπεζικά στοιχεία μαςΣυνολικάΔΗΜΟΦΙΛΗ ΚΑΤΗΓΟΡΙΑΔΗΜΟΦΙΛΗ ΑΡΘΡΑΔΗΜΟΣΙΕΥΣΕΙΣΣελίδαΣελίδα %CURRENT_PAGE% από %TOTAL_PAGES%μητρική εταιρείαπεράστε άδεια!μοτίβο πέρασμα λάθος!Κωδικός πρόσβασηςΑΝΑΚΤΗΣΗ ΚΩΔΙΚΟΥΠλήρωσε τώραπληρώστε με ρίγαη πληρωμή απέτυχε - λυπούμαστε, παρουσιάστηκε σφάλμα κατά την επεξεργασία της πληρωμής σας. δοκιμάστε ξανά με διαφορετικό τρόπο πληρωμής.μέθοδος πληρωμήςμέθοδοι πληρωμήςεπεξεργασία πληρωμών - η τελευταία πληρωμή της συνδρομής σας βρίσκεται υπό επεξεργασία.επιτυχής πληρωμή - η τελευταία πληρωμή της συνδρομής σας ολοκληρώθηκε με επιτυχία.τρόπος πληρωμήςπερίοδοςΦιλιππίνων πέσοτηλέφωνοσχέδιοπαρακαλούμε ενεργοποιήστε τον λογαριασμό σας ακολουθώντας τον σύνδεσμο που αποστέλλεται στη διεύθυνση email σας.Παρακαλούμε ελέγξτε το email σας (φάκελος εισερχομένων ή spam), ο κωδικός πρόσβασης στάλθηκε εκεί.ελέγξτε το email σας (εισερχόμενα ή φάκελο ανεπιθύμητης αλληλογραφίας) για να επικυρώσετε τον λογαριασμό σας.παρακαλούμε να ελέγξετε το email σας (δείκτη ή του φακέλου spam), ο κωδικός εστάλη εκεί.ελέγξτε το email σας και επιβεβαιώστε τη συνδρομή σας!επιβεβαιώστε τον νέο κωδικό πρόσβασης πριν συνεχίσετε.παρακαλώ εισάγετε πρώτα έναν κωδικό κουπονιού!εισάγετε έναν νέο κωδικό πρόσβασης πριν συνεχίσετε.Παρακαλώ εισάγετε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.εισάγετε το σχόλιό σας!παρακαλώ εισάγετε τον τρέχοντα κωδικό πρόσβασής σας.παρακαλώ εισάγετε εδώ την ηλεκτρονική σας διεύθυνσηπαρακαλώ εισάγετε το όνομά σας εδώσυμπληρώστε ένα έγκυρο email.συμπληρώστε μια διεύθυνση email.συμπληρώστε όλα τα πεδία κωδικού πρόσβασης.βεβαιωθείτε ότι οι κωδικοί πρόσβασης ταιριάζουν.δώστε μια έγκυρη διεύθυνση email.Παρακαλώ εισάγετε ξανά τον κωδικό πρόσβασής σας.Παρακαλούμε περιμένετε...ζλότυ ΠολωνίαςΔημοσίευση σχολίουανάρτηση εικόναςμετά την αξιολόγησηΤαχυδρομικός ΚώδικαςΤΑΧΥΔΡΟΜΙΚΟΣ ΚΩΔΙΚΟΣαναρτήθηκε απόΔημοσιεύσεις απόΔημοσιεύσεις με ετικέτεςΠροηγούμενοΠροηγούμενο (Κουμπί αριστερού βέλους)Προηγούμενο άρθροτιμήτιμή δεν έχει καθοριστείΤυπώνωπολιτική απορρήτουκατηγορίες προϊόντωνετικέτες προϊόντωνεικόνα προφίλδημοσιεύωδημοσιεύσετε μια ανάρτησηΕΓΓΡΑΦΗΠΑΡΟΜΟΙΑ ΑΡΘΡΑΣΥΝΟΨΗ ΚΡΙΤΙΚΗΣΤυχαίοεκτίμησηΔιαβάστε περισσότεραανάκτηση κωδικού πρόσβασηςΑνακτήστε τον κωδικό σαςμητρώοΕγγραφείτε για έναν λογαριασμόεναπομένοντα δικαιώματα δημοσίευσης.αφαιρώεπανάληψη νέου κωδικού πρόσβασης *επανάληψη κωδικού πρόσβασηςΑπάντησηεπανάληψη αποστολής συνδέσμου ενεργοποίησηςΕπαναφορά του κωδικού πρόσβασής σαςπληκτρολογήθηκε ξανά λάθος!ξαναπληκτρολογήθηκε άδεια!ξαναπληκτρολόγησε το πάσο ακριβώς!κριτήρια αναθεώρησηςΡουμανικά (νέα) leuαριθμός δρομολόγησηςρωσικό ρούβλιΚΟΙΝΟΠΟΙΗΣΗΠΗΓΗΠΕΡΙΛΗΨΗαποθηκεύσετεαποθήκευσε τις αλλαγέςαποθηκεύστε το όνομα, το ηλεκτρονικό ταχυδρομείο και τον ιστότοπό μου σε αυτό το πρόγραμμα περιήγησης για την επόμενη φορά που θα σχολιάσω.αποθήκευση κωδικούΑναζήτησηΑναζήτηση με Λέξη-κλειδί...αναζήτηση τοποθεσίαςεπιλέγωεπιλεγμένο παιδίεπιλέξτε γονέαεπιλέξτε υπο-παιδίΣτείλε τον κωδικό μουστείλτε τον κωδικό μουπληρωμή ρύθμισηςΗ ρύθμιση απέτυχε - λυπούμαστε, παρουσιάστηκε σφάλμα κατά τη ρύθμιση του τρόπου πληρωμής σας. δοκιμάστε ξανά με διαφορετικό τρόπο πληρωμής.επιτυχής εγκατάσταση - ρυθμίσατε με επιτυχία τον τρόπο πληρωμής σας για μελλοντικές πληρωμές.μερίδιοΚοινοποίηση στο Facebookεμφάνιση λιγότερων πληροφοριώνεμφάνιση περισσότερων πληροφοριώνσυνδεθείτεΣύνδεση / Εγγραφήεγγραφήδολάριο Σιγκαπούρηςορισμένα υποχρεωτικά πεδία έχουν μείνει κενά.κάποιος ζήτησε επαναφορά κωδικού πρόσβασης για τον ακόλουθο λογαριασμό:Συγνώμη, αλλά η σελίδα που ψάχνετε δεν υπάρχει.τίτλος πηγήςΡαντ Νότιας Αφρικήςημερομηνία έναρξηςκατάστασηκατάστασηδιεύθυνσητιμολόγιο ρίγεςλωρίδες λεπτομέρειες τιμολογίουλεπτομέρειες συνδρομής λωρίδαςυποβάλλουνυποβάλετε απάντησηυποβάλετε κριτικήΓίνετε συνδρομητήςΣυνδρομητέςη συνδρομή ακυρώθηκεδημιουργία συνδρομής: εξόφληση του αρχικού τιμολογίουδημιουργία συνδρομής: δημιουργήθηκε το αρχικό τιμολόγιοδημιουργία συνδρομής: το αρχικό τιμολόγιο έχει οριστικοποιηθεί και είναι έτοιμο για πληρωμήδημιουργία συνδρομής: το αρχικό τιμολόγιο ακυρώθηκεσυνδρομή δημιουργία: δοκιμαστικήη συνδρομή διαγράφηκεη συνδρομή έληξε: το τιμολόγιο ακυρώθηκε (το πρώτο τιμολόγιο δεν πληρώθηκε)ανανέωση συνδρομής: δημιουργήθηκε τιμολόγιοανανέωση συνδρομής: το τιμολόγιο οριστικοποιήθηκεανανέωση συνδρομής: εξοφλήθηκε το τιμολόγιοανανέωση συνδρομής: προσεχές τιμολόγιοανανέωση συνδρομής: το τιμολόγιο ακυρώθηκεενημέρωση συνδρομής: το τιμολόγιο πληρώθηκεενημέρωση συνδρομής: το τιμολόγιο ακυρώθηκεη συνδρομή έχει ακυρωθεί και θα λήξει στις:πληροφορίες συνδρομήςπερίληψη συνδρομήςσυνδρομέςεπιτυχίαεγγράφηκε επιτυχώς!καταργήθηκε επιτυχώς η εγγραφή!σουηδική κορώναελβετικό φράγκοΕΤΙΚΕΤΕΣΕτικέταΕτικέτεςτηλ:ταϊλανδικό μπατσας ευχαριστώ! χαιρόμαστε που σας βλέπουμε εδώ. η συνδρομή σας θα ενεργοποιηθεί σύντομα!Το περιεχόμενο από %url% δεν ήταν δυνατό να φορτωθεί.ο κωδικός κουπονιού που εισαγάγατε έχει λήξειο κωδικός κουπονιού που εισαγάγατε έχει φτάσει το όριο χρήσης τουο κωδικός κουπονιού που εισαγάγατε δεν είναι έγκυροςτο email έχει σταλεί με επιτυχία.Η εικόνα #%curr% δεν ήταν δυνατό να φορτωθεί.ο αριθμός δεν μπορεί να είναι μεγαλύτερος απόο αριθμός δεν μπορεί να είναι μικρότερος απότον αριθμό των άρθρων που έχετε απομείνει για δημοσίευση σε διαφορετικούς τύπους αναρτήσεων.ο κωδικός πρόσβασης επαναφέρθηκε με επιτυχία.το κλειδί επαναφοράς κωδικού πρόσβασης έχει λήξει.το κλειδί επαναφοράς κωδικού πρόσβασης δεν είναι έγκυρο.η επιλεγμένη ανάρτηση διαγράφηκε επιτυχώς.η κατάσταση για το %post_title% έχει αλλάξει.αυτή η διεύθυνση email είναι ήδη εγγεγραμμένη.αυτό το πεδίο είναι υποχρεωτικό!αυτή η συνδρομή έχει ακυρωθεί και θα λήξει στις %end_date%.τίτλοςγια να επαναφέρετε τον κωδικό πρόσβασής σας, επισκεφθείτε την ακόλουθη διεύθυνση:σύνολοπόλη/πόληΟι Τάσεις Τώραδίκητουρκική λίραΚάντε Tweet στο Twitterμη εντοπισμένο σφάλμα: κάτι πήγε στραβά, φορτώστε ξανά τη σελίδα και δοκιμάστε ξανά!Δολάριο ΗΠΑαπλήρωτη συνδρομή.εκσυγχρονίζωο χρήστης υπάρχει ήδη!χρήστης δεν υπάρχει!άδειος χρήστης!Πληροφορίες χρήστηΟ χρήστης ή το email υπάρχει ήδη!Χρήστης ή κωδικός λανθασμένος!όνομα χρήστητο όνομα χρήστη κενό!όνομα χρήστη λάθος!Όνομα χρήστη ή διεύθυνση ηλεκτρονικού ταχυδρομείουόνομα χρήστη: %sΔΕΞΑΜΕΝΉαριθμός ΦΠΑΜΕΣΩθέαΠροβολήΠροβολή όλων των αποτελεσμάτωνπροβολή συνδρομήςΙστοσελίδα:καλώς ορίσατε στον λογαριασμό σας!καλωσόρισμα!Καλωσήρθατε! Συνδεθείτε στον λογαριασμό σαςκαλως ΗΡΘΑΤΕ! εγγραφείτε για λογαριασμόΕτήσιο Αρχείο:Ναίέχετε ήδη μια συνδρομή, αλλά εξακολουθεί να περιμένει να πληρωθεί!Μπορείτε να πάτε στηνδεν διαθέτετε τα απαιτούμενα προνόμια για να εκτελέσετε αυτό το αίτημα.έχετε εισάγει εσφαλμένη διεύθυνση ηλεκτρονικού ταχυδρομείου!δεν έχετε δημιουργήσει καμία ανάρτηση.δεν έχετε επιλέξει έγκυρο πρόγραμμα συνδρομής.έχετε συμπληρώσει το όριο των κριτικών που μπορείτε να υποβάλετε για αυτό το άρθροπρέπει να αποσυνδεθείτε για να δείτε αυτή τη σελίδα.δεν ήταν δυνατή η δημιουργία του λογαριασμού σας.Ο λογαριασμός σου έχει ήδη ενεργοποιηθεί!ο λογαριασμός σας ενεργοποιήθηκε με επιτυχία!Το σχόλιό σας αναμένει εποπτείαΟ τρέχων κωδικός πρόσβασής σας είναι λανθασμένος.Ο κωδικός σας επαναφέρθηκε, ελέγξτε το email σας.Η ανάρτησή σας δημιουργήθηκε με επιτυχία.Η ανάρτησή σας ενημερώθηκε με επιτυχία.η απάντησή σας έχει δημοσιευτεί. ανανεώστε τη σελίδα για να τη δείτε.Η κριτική σας έχει δημοσιευθεί. ανανεώστε τη σελίδα για να τη δείτε.Η κριτική σας έχει καταχωρηθεί και αναμένει έγκριση.τα στοιχεία της συνδρομής σαςπρώην. φόροςInc. φόροςσχέδιο που λείπειπρέπει να περιέχει τουλάχιστον 6 χαρακτήρες σε μήκοςπρέπει να περιέχει τουλάχιστον ένα πεζό (a..z)πρέπει να περιέχει τουλάχιστον ένα κεφαλαίο (a..z)τουεπίήαπο 5αποτελέσματα αναζήτησηςαπεριόριστοςπροβολέςτο email σαςο κωδικός πρόσβασης σαςτο όνομα χρήστη σαςtranslation/pl_PL.mo000064400000104062150211537140010447 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,5  & +8\Wǀ ߀!4+N#z"ˁ# ) 5AGOlÂ#˂ =!_@t'"݃*K+4w)%ք+(((Q4z(-؅MKTC /'7W8ȇʇ͇чՇ lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: pl_PL %post_title% został przeniesiony do kosza.%curr% z %total%%s jest polem wymaganym.(opcjonalny)(pozostaw puste, aby pozostawić bez zmian)(opcjonalny)1 KOMENTARZPopularne 7 dniNowy link aktywacyjny został wysłany na Twój adres e-mail!Hasło zostanie wysłane e-mailem.O NASO mnieAktywacja kontaSzczegóły KontaDane konta zostały pomyślnie zmienione.Nazwa kontaNumer kontaUstawienia kontaWymagane jest potwierdzenie!AktywnyDodaj noweDodaj nowy postAdresWiersz adresuAdresyWszystkoCały czas popularneWszystkie twoje subskrypcje.Alfabetyczne a -> zPosiadasz już konto?Wystąpił nieoczekiwany błąd podczas próby utworzenia Twojego wpisu. proszę spróbuj ponownie.Wystąpił nieoczekiwany błąd i poczta nie mogła zostać wysłana.Wystąpił nieoczekiwany błąd. proszę spróbuj ponownie.StosowanyStosowaćArchiwaCzy na pewno chcesz usunąć %post_title%?Czy na pewno chcesz opublikować %post_title%?WDolar australijskiAutorAutorzyOczekiwanie na zapłatęZ powrotemNazwa bankuPrzelew bankowyBicz/szybkiSzczegóły płatnościZablokowanyBlogReal brazylijskiFunt brytyjskiLew bułgarskiPrzezPrzez wynik przeglądaniaOcena użytkownika captcha nie powiodła się. proszę skontaktuj się z nami!Weryfikacja captcha nie powiodła się!ZAMKNIJKOMENTARZEDolar kanadyjskiAnulowaćAnuluj odpowiedźAnuluj subskrypcjeOdwołanyNie można przetworzyć pola %s.KategorieSprawdź, czy w skrzynce e-mail znajduje się prawidłowy link aktywacyjny. ten link jest nieprawidłowy.Chiński YuanWybierz planMiastoZamknięteKomentarz:Możliwość dodawania komentarzy nie jest dostępna.Nazwa firmyPełna płatnośćPotwierdź nowe hasłoNapisz do nasKontynuujKrajKraj/regionKraj/stanHrabstwoKupon zastosowanyNazwa kuponu jest wymagana!Utwórz kontoUtwórz nowy terminKuna chorwackaAktualne hasłoAktualny stanOdstęp cykluRepublika Czeska koronaDzienne Archiwum:DuńskaPanelDataUsuwaćUsuń postUsuń zakładkiOpisBezpośredni przelew bankowyDane do bezpośredniego przelewu bankowegoWyświetlana nazwaNie masz konta?PobieraćPliki do pobraniaPrzeciągnij i upuść lub przeglądajREDAKCJAJESZCZE WIĘCEJ WIADOMOŚCIEKSKLUZYWNYEdytowaćEdytuj postE-mailAdres e-mailAdres e-mail nie został znaleziony!Email już istnieje!E-mail pusty!E-mail niepoprawny!E-mail lub nazwa użytkownika puste!E-mail lub nazwa użytkownika jest niepoprawna!E-mail:Pusty adresPuste miastoPusty krajPuste hrabstwoPusty e-mailPuste imięPuste nazwiskoPusty telefonPusty kod pocztowyData zakonczeniaWpisz swoje imię i nazwisko lub firmęWprowadź tytuł swojej recenzjiWpisz tutaj kod promocyjnyWpisz swoją odpowiedźWpisz swoją recenzjęKraje członkowskie strefy euroPODĄŻAJ ZA NAMIFaniFunkcjonalnyWyróżnione postyPole pusteImięObserwujśledź nas na InstagramObserwującyZapomniałeś hasła?Nie pamiętasz hasła?Zapomniałeś hasła? sprowadź pomocWolnyDostać się na swoje konto.Przejdź do płatnościIdź do kasyŁączna sumaSTRONA GŁÓWNAWitajCześć %1$s (nie %2$s? %3$s)! z pulpitu nawigacyjnego konta możesz przeglądać swoje subskrypcje i zarządzać danymi konta.Oto wyniki wyszukiwania:Strona głównaDolar hongkońskiForint węgierskiIBANIDJeśli to był błąd, po prostu zignoruj tego e-maila i nic się nie stanie.Jeśli nie jesteś zadowolony z wyników, należy ponownie uruchomić wyszukiwanieAby mieć dostęp do tej sekcji, musisz aktywować swoje konto.Aby zaktualizować to pole, musisz aktywować swoje konto.Rupia indyjskaRupia indonezyjskaFaktura wstępna zapłaconaInstrukcjeNieważnyNieprawidłowy wzór przepustki!Nieważna subskrypcja.FakturaFaktura zaktualizowanaIzraelski szekelWygląda na to, że nie skonfigurowano żadnych dostępnych metod płatności.Jen japońskiPrzyłączyć sięKoreański (południe) zdobyłNAJNOWSZE ARTYKUŁYZOSTAW ODPOWIEDŹZALOGUJ SIĘNazwiskoNajnowszeOstatnia fakturaZostaw recenzjęLubięUpodobaniaZaładuj więcejŁadowanieLokalizacja:Zablokowana subskrypcja.Zaloguj sięZaloguj się przez facebookZaloguj się, aby dodać komentarzZaloguj się, żeby zostawić recenzję.Zaloguj się na swoje kontoWylogujWyloguj?Zalogowany jakoZalogowany jako% s. Edytuj swój profil.Zaloguj SięWylogujZgubiłem hasłoWIĘCEJ OD AUTORAWIĘCEJ HISTORIIMalezyjski ringgitZarządzać danymi swojego konta.Zarządzaj swoimi szczegółami rozliczeniowymi.CzłonkowiePeso meksykańskieZmieniona dataZmieniona data:Miesięczne Archiwum:MiesiąceWięcejNajbardziej popularneMoje konto abonamentoweMoje konto wooNie dotyczyBRAK KOMENTARZYNazwaNazwa:Nowa Zelandia dolaraWygenerowano nowy link aktywacyjny. sprawdź swoją skrzynkę e-mail (skrzynka odbiorcza lub folder ze spamem), aby zweryfikować swoje konto.Nowe hasłoNowe hasło *Nowe hasła nie są zgodne.NastępnyNastępny (Strzałka w prawo)Następny artykułNIEBrak postów z zakładkamiBrak postów do wyświetleniaBrak produktów w koszyku.Brak ocenyBrak wynikówBrak wyników dla Twojego wyszukiwaniaBrak wyników wyszukiwania.Nie utworzono subskrypcji.Korona norweskaNiezapłaconeNASZE NAJNOWSZE WPISYWYNIK OGÓLNYNajstarsze postyUuuups ... Błąd 404ZamówieniaNasze dane bankoweOgólniePOPULARNE KATEGORIEPOPULARNE POSTYPOSTYStronaStrona %CURRENT_PAGE% z %TOTAL_PAGES%RodzicPrzejść pusty!Niepoprawny wzór podania!HasłoOdzyskiwanie hasłaZapłać terazZapłać paskiemPłatność nie powiodła się - przepraszamy, wystąpił błąd podczas przetwarzania Twojej płatności. spróbuj ponownie, używając innej metody płatności.Metoda płatnościMetody PłatnościPrzetwarzanie płatności - Twoja ostatnia płatność za subskrypcję jest przetwarzana.Płatność powiodła się - Twoja ostatnia płatność za subskrypcję została pomyślnie zrealizowana.Typ płatnościKropkaPeso filipińskieTelefonPlanAktywuj swoje konto, klikając link wysłany na Twój adres e-mail.Proszę sprawdź swój e-mail (indeks lub folder spam), hasło zostało tam wysłane.Sprawdź swoją skrzynkę e-mail (skrzynka odbiorcza lub folder ze spamem), aby zweryfikować swoje konto.Proszę sprawdzić pocztę (folder indeksu lub spam), hasło zostało wysłane tam.Sprawdź swoją skrzynkę e-mail i potwierdź subskrypcję!Przed kontynuowaniem potwierdź nowe hasło.Najpierw wprowadź kod kuponu!Przed kontynuowaniem wprowadź nowe hasło.Proszę wpisać aktualny adres e-mail.Proszę wpisać swój komentarz!Proszę podać swoje aktualne hasło.Wpisz tutaj swój adres e-mailProszę podać swoje imię tutajProszę wypełnić poprawny adres e-mail.Proszę podać adres e-mail.Proszę wypełnić wszystkie pola hasła.Upewnij się, że hasła są zgodne.Prosimy o wprowadzenie poprawnego adresu e-mail.Wprowadź ponownie swoje hasło.Proszę czekać ...Polski złotyDodaj komentarzOpublikuj obrazOpublikować recenzjęKod pocztowyKod pocztowyWysłane przezPosty przezWiadomości z tagiemPoprzedniPoprzedni (Strzałka w lewo)Poprzedni artykułCenaCena nie ustalonaWydrukowaćPolityka prywatnościKategorie produktówTagi produktówZdjęcie profilowePublikowaćOpublikować postZAREJESTRUJ SIĘPODOBNE ARTYKUŁYPRZEGLĄD RECENZJILosoweOcenaWięcejOdzyskaj hasłoOdzyskaj swoje hasłoZarejestrowaćZarejestruj kontoPozostałe prawa wydawnicze.UsunąćPowtórz nowe hasło *Powtórz hasłoOdpowiedzPonownie wyślij link aktywacyjnyZresetuj swoje hasłoPrzepisane hasło jest nieprawidłowe!Przepisane przepustka jest pusta!Przepisano dokładnie przepustkę!Kryteria przegląduRumuński (nowy) leuNumer rozliczeniowyRosyjski rubelUDOSTĘPNIJŹRÓDŁOPODSUMOWANIERatowaćZapisz zmianyZapisz moje nazwisko, adres e-mail i stronę internetową w tej przeglądarce na następny raz, gdy skomentuję.Zapisz hasłoWyszukiwanieSzukaj według słowa kluczowego...Wyszukaj lokalizacjęWybieraćWybierz dzieckoWybierz rodzicaWybierz poddzieckoWyślij Moją PrzepustkęWyślij moje hasłoSkonfigurować płatnośćKonfiguracja nie powiodła się - przepraszamy, wystąpił błąd podczas konfigurowania Twojej metody płatności. spróbuj ponownie, używając innej metody płatności.Konfiguracja powiodła się - pomyślnie skonfigurowałeś metodę płatności dla przyszłych płatności.UdziałPodziel się na FacebookuPokaż mniej informacjiPokaż więcej informacjiZalogujZaloguj się / DołączZapisz sięDolar singapurskiNiektóre wymagane pola pozostawiono puste.Ktoś poprosił o zresetowanie hasła do następującego konta:Przepraszamy, ale strona, której szukasz nie istnieje.Tytuł źródłowyRand południowoafrykańskiData rozpoczęciaPaństwoStatusAdres ulicyFaktura w paskiSzczegóły faktury w paskiSzczegóły subskrypcji paskówSkładaćWysłać odpowiedźDodaj recenzjęSubskrybujSubskrybującySubskrypcja anulowanaUtworzenie subskrypcji: faktura wstępna zapłaconaUtworzenie subskrypcji: utworzono fakturę wstępnąUtworzenie subskrypcji: faktura wstępna została sfinalizowana i jest gotowa do zapłatyUtworzenie subskrypcji: faktura wstępna unieważnionaTworzenie subskrypcji: wersja próbnaSubskrypcja usuniętaSubskrypcja wygasła: faktura unieważniona (pierwsza faktura nie została zapłacona)Odnowienie subskrypcji: utworzono fakturęOdnowienie subskrypcji: faktura sfinalizowanaOdnowienie subskrypcji: faktura zapłaconaOdnowienie subskrypcji: zbliża się fakturaOdnowienie subskrypcji: faktura unieważnionaAktualizacja subskrypcji: faktura zapłaconaAktualizacja subskrypcji: faktura unieważnionaSubskrypcja została anulowana i zakończy się:Informacje o subskrypcjiPodsumowanie subskrypcjiSubskrypcjePowodzeniePomyślnie zasubskrybowano!Pomyślnie anulowano subskrypcję!Korona szwedzkaFrank szwajcarskiTAGITagTagiTel:Tajski bahtDziękuję Ci! cieszymy się, że Cię tu widzimy. Twoja subskrypcja zostanie wkrótce aktywowana!Zawartość z %url% nie może być załadowana.Wprowadzony kod kuponu utracił ważnośćWprowadzony kod kuponu osiągnął limit wykorzystaniaWprowadzony kod kuponu jest nieprawidłowyWiadomość e-mail została pomyślnie wysłana.Obraz #%curr% nie może być załadowany.Liczba nie może być wyższa niżLiczba nie może być niższa niżLiczba artykułów pozostałych do opublikowania w różnych typach postów.Hasło zostało pomyślnie zresetowane.Klucz resetowania hasła utracił ważność.Klucz resetowania hasła jest nieprawidłowy.Wybrany post został pomyślnie usunięty.Status %post_title% został zmieniony.Ten adres email jest już zarejestrowany.To pole jest wymagane!Ta subskrypcja została anulowana i zakończy się %end_date%.TytułAby zresetować hasło, odwiedź następujący adres:CałkowityMiasto/miastoNa TopieTestLira tureckaTweet (Ćwierkaj) na TwitterzeNieprzechwycony błąd: coś poszło nie tak, załaduj stronę ponownie i spróbuj ponownie!Dolar amerykańskiNieopłacony abonament.AktualizacjaUżytkownik już istnieje!Użytkownik nie istnieje!Użytkownik pusty!Informacje o użytkownikuUżytkownik lub adres e-mail już istnieje!Użytkownik lub hasło niepoprawne!Nazwa UżytkownikaNazwa użytkownika pusta!Nieprawidłowa nazwa użytkownika!Nazwa użytkownika lub adres e-mailNazwa użytkownika: %sFAKTURA VATNumer kadziPRZEZPoglądZobacz wszystkie wiadomościPokaż wszystkie wynikiZobacz subskrypcjęStrona Internetowa:Witaj na swoim koncie!Witamy!Witamy! Zaloguj się na swoje kontoWitamy! zarejestrować kontoRoczne Archiwum:TakMasz już subskrypcję, ale nadal oczekuje ona na opłacenie!Możesz przejść doNie posiadasz wymaganych uprawnień do wykonania tego żądania.Wpisałeś nieprawidłowy adres e-mail!Nie utworzyłeś żadnych postów.Nie wybrałeś ważnego planu subskrypcji.Osiągnąłeś limit recenzji, które możesz przesłać dla tego artykułuMusisz się wylogować, żeby zobaczyć tę stronę.Twoje konto nie mogło zostać utworzone.Twoje konto zostało już aktywowane!Twoje konto zostało pomyślnie aktywowane!Twój komentarz czeka na moderację jestTwoje obecne hasło jest nieprawidłowe.Twoje hasło jest resetowane, sprawdź swój e-mail.Twój post został pomyślnie utworzony.Twój post został pomyślnie zaktualizowany.Twoja odpowiedź została opublikowana. odśwież stronę, aby ją zobaczyć.Twoja recenzja została opublikowana. odśwież stronę, aby ją zobaczyć.Twoja recenzja została zarejestrowana i oczekuje na zatwierdzenie.Twoje dane subskrypcjibyły. podatekInc. podatekbrakujący planmusi zawierać co najmniej 6 znaków długościmusi zawierać co najmniej jedną małą literę (a..z)musi zawierać co najmniej jedną wielką literę (a..z)zNALubz 5wyniki wyszukiwaniaNieograniczonywidokiTwój e-mailTwoje hasłoTwoja nazwa użytkownikatranslation/id_ID.po000064400000103461150211537140010416 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" msgid "View all results" msgstr "Lihat semua hasil" msgid "No results" msgstr "Tidak ada hasil" msgid "Home" msgstr "Beranda" msgid "CLOSE" msgstr "TUTUP" msgid "Page" msgstr "Halaman" msgid "All" msgstr "Semua" msgid "By" msgstr "Penulis" msgid "Load more" msgstr "Muat lebih banyak" msgid "View all posts in" msgstr "Lihat semua kiriman dalam" msgid "Tags" msgstr "Topik" msgid "Previous article" msgstr "Artikulli paraprak" msgid "Next article" msgstr "Artikulli tjetër" msgid "Authors" msgstr "Penulis" msgid "Author" msgstr "Penulis" msgid "RELATED ARTICLES" msgstr "ARTIKEL TERKAIT" msgid "MORE FROM AUTHOR" msgstr "DARI PENULIS" msgid "VIA" msgstr "VIA" msgid "SOURCE" msgstr "SUMBER" msgid "TAGS" msgstr "TOPIK" msgid "SHARE" msgstr "BAGIKAN" msgid "Continue" msgstr "Lanjutkan" msgid "Read more" msgstr "Baca Selengkapnya" msgid "Name:" msgstr "Nama:" msgid "Email:" msgstr "Email:" msgid "Website:" msgstr "Website:" msgid "Comment:" msgstr "Komentar:" msgid "LEAVE A REPLY" msgstr "TINGGALKAN KOMENTAR" msgid "Post Comment" msgstr "Kirim Komentar" msgid "Cancel reply" msgstr "Batal membalas" msgid "Reply" msgstr "Balas" msgid "Log in to leave a comment" msgstr "Login untuk meninggalkan komentar" msgid "NO COMMENTS" msgstr "TIDAK ADA KOMENTAR" msgid "1 COMMENT" msgstr "1 KOMENTAR" msgid "COMMENTS" msgstr "KOMENTAR" msgid "REVIEW OVERVIEW" msgstr "TINJAUAN IKHTISAR" msgid "SUMMARY" msgstr "RINGKASAN" msgid "OVERALL SCORE" msgstr "NILAI KESELURUHAN" msgid "Ooops... Error 404" msgstr "Ooops ... Kesalahan 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Maaf, halaman yang Anda cari tidak ada." msgid "You can go to the" msgstr "Anda dapat pergi ke" msgid "HOMEPAGE" msgstr "HALAMAN AWAL" msgid "OUR LATEST POSTS" msgstr "KIRIMAN TERBARU KAMI" msgid "Posts by" msgstr "Dikirim oleh" msgid "POSTS" msgstr "KIRIMAN" msgid "Posts tagged with" msgstr "Kiriman ditandai dengan" msgid "Tag" msgstr "Topik" msgid "Daily Archives:" msgstr "Arsip Harian:" msgid "Monthly Archives:" msgstr "Arsip Bulanan:" msgid "Yearly Archives:" msgstr "Arsip Tahunan:" msgid "Archives" msgstr "Arsip" msgid "LATEST ARTICLES" msgstr "ARTIKUJT E FUNDIT" msgid "search results" msgstr "hasil pencarian" msgid "Search" msgstr "Cari" msgid "If you're not happy with the results, please do another search" msgstr "Jika Anda tidak puas dengan hasilnya, silakan melakukan pencarian lain" msgid "Contact us" msgstr "Hubungi kami" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Halaman %CURRENT_PAGE% dari %TOTAL_PAGES%" msgid "Next" msgstr "Berikutnya" msgid "Prev" msgstr "Sebelumnya" msgid "No results for your search" msgstr "Tidak ada hasil untuk pencarian Anda" msgid "No posts to display" msgstr "Tidak ada kiriman yang ditampilkan" msgid "LOG IN" msgstr "MASUK" msgid "Sign in / Join" msgstr "Masuk / Bergabung" msgid "Log In" msgstr "Masuk" msgid "REGISTER" msgstr "DAFTAR" msgid "Send My Pass" msgstr "Kirim Kata Sandi Saya" msgid "Forgot your password?" msgstr "Lupa kata sandi Anda?" msgid "Please wait..." msgstr "Mohon tunggu…" msgid "User or password incorrect!" msgstr "Pengguna dan password salah!" msgid "Email or username incorrect!" msgstr "Email atau nama pengguna salah!" msgid "Email incorrect!" msgstr "Email tidak benar!" msgid "User or email already exists!" msgstr "Pengguna atau email sudah ada!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Silakan cek email (indeks atau folder spam), password dikirim ke sana." msgid "Email address not found!" msgstr "Alamat email tidak ditemukan!" msgid "Your password is reset, check your email." msgstr "Kata sandi Anda diatur ulang, cek email Anda." msgid "Welcome! Log into your account" msgstr "Selamat Datang! Masuk ke akun Anda" msgid "Register for an account" msgstr "Mendaftar membuat akun" msgid "Recover your password" msgstr "Memulihkan kata sandi anda" msgid "your username" msgstr "nama pengguna" msgid "your password" msgstr "kata sandi Anda" msgid "your email" msgstr "email Anda" msgid "A password will be e-mailed to you." msgstr "Sebuah kata sandi akan dikirimkan ke email Anda." msgid "Logout" msgstr "Keluar" msgid "Like" msgstr "Suka" msgid "Fans" msgstr "Fans" msgid "Follow" msgstr "Mengikuti" msgid "Followers" msgstr "Pengikut" msgid "Subscribe" msgstr "Berlangganan" msgid "Subscribers" msgstr "Pelanggan" msgid "MORE STORIES" msgstr "ARTIKEL LEBIH" msgid "Latest" msgstr "Terbaru" msgid "Featured posts" msgstr "Kiriman menarik" msgid "Most popular" msgstr "Terpopuler" msgid "7 days popular" msgstr "7 hari populer" msgid "By review score" msgstr "Dengan nilai peninjauan" msgid "Random" msgstr "Acak" msgid "Trending Now" msgstr "News" msgid "POPULAR CATEGORY" msgstr "KATEGORI E POPULLARIZUAR" msgid "EVEN MORE NEWS" msgstr "ARTIKEL LAINNYA" msgid "Previous (Left arrow key)" msgstr "Sebelumnya (tombol panah kiri)" msgid "Next (Right arrow key)" msgstr "Berikutnya (tombol panah kanan)" msgid "%curr% of %total%" msgstr "%curr% dari %total%" msgid "The content from %url% could not be loaded." msgstr "Isi dari %url% tidak dapat dimuat." msgid "The image #%curr% could not be loaded." msgstr "Gambar #%curr% tidak dapat dimuat." msgid "Blog" msgstr "blog" msgid "Share on Facebook" msgstr "Share ke Facebook" msgid "Tweet on Twitter" msgstr "Tweet on Twitter" msgid "EDITOR PICKS" msgstr "PILIHAN EDITOR" msgid "POPULAR POSTS" msgstr "POSTING POPULER" msgid "FOLLOW US" msgstr "IKUTI KAMI" msgid "ABOUT US" msgstr "TENTANG KAMI" msgid "More" msgstr "Lainnya" msgid "Featured" msgstr "Fitur" msgid "All time popular" msgstr "Populer" msgid "Likes" msgstr "Seperti" msgid "Register" msgstr "Regjistrohu" msgid "of" msgstr "dari" msgid "Euro Member Countries" msgstr "Negara anggota euro" msgid "Your comment is awaiting moderation" msgstr "Komentar dari anda sedang menunggu moderasi" msgid "Follow us on Instagram" msgstr "Ikuti kami di instagram" msgid "Back" msgstr "Kembali" msgid "Sign in" msgstr "Masuk" msgid "Sign up" msgstr "Daftar" msgid "Join" msgstr "Ikut" msgid "Welcome!" msgstr "SELAMAT DATANG!" msgid "Log into your account" msgstr "Masuk ke akun Anda" msgid "Password recovery" msgstr "Pemulihan password" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Silahkan cek email Anda (indeks atau spam folder), password dikirim ke sana." msgid "Australian Dollar" msgstr "Dollar Australia" msgid "Bulgarian Lev" msgstr "Lev Bulgaria" msgid "Brazilian Real" msgstr "Nyata brazilian" msgid "Canadian Dollar" msgstr "Dolar Kanada" msgid "Swiss Franc" msgstr "Swiss franc" msgid "Chinese Yuan Renminbi" msgstr "Cina yuan renminbi" msgid "Czech Republic Koruna" msgstr "Ceko Republik koruna" msgid "Danish Krone" msgstr "Krone Denmark" msgid "British Pound" msgstr "Pound Inggris" msgid "Hong Kong Dollar" msgstr "Dolar hong kong" msgid "Croatian Kuna" msgstr "Kuna Kroasia" msgid "Hungarian Forint" msgstr "Forint Hongaria" msgid "Indonesian Rupiah" msgstr "Rupiah indonesia" msgid "Israeli Shekel" msgstr "Shekel Israel" msgid "Indian Rupee" msgstr "Rupee India" msgid "Japanese Yen" msgstr "Yen Jepang" msgid "Korean (South) Won" msgstr "Korea (selatan) won" msgid "Mexican Peso" msgstr "Meksiko peso" msgid "Malaysian Ringgit" msgstr "Ringgit Malaysia" msgid "Norwegian Krone" msgstr "Krone Norwegia" msgid "New Zealand Dollar" msgstr "Dolar Selandia baru" msgid "Philippine Peso" msgstr "Peso Filipina" msgid "Polish Zloty" msgstr "Zloty Polandia" msgid "Romanian (New) Leu" msgstr "Rumania (baru) leu" msgid "Russian Ruble" msgstr "Rubel Rusia" msgid "Swedish Krona" msgstr "Krona Swedia" msgid "Singapore Dollar" msgstr "Dollar singapore" msgid "Thai Baht" msgstr "Thai baht" msgid "Turkish Lira" msgstr "Lira Turki" msgid "United States Dollar" msgstr "United states dollar" msgid "South African Rand" msgstr "Selatan rand Afrika" msgid "Privacy Policy" msgstr "Rahasia pribadi" msgid "views" msgstr "dilihat" msgid "Modified date:" msgstr "Tanggal yang diubah:" msgid "Please enter your name here" msgstr "Silakan masukkan nama Anda di sini" msgid "Please enter your email address here" msgstr "Silakan masukkan alamat email Anda di sini" msgid "You have entered an incorrect email address!" msgstr "Anda telah memasukkan alamat email yang salah!" msgid "Please enter your comment!" msgstr "Silakan masukkan komentar anda!" msgid "Logged in as" msgstr "Masuk sebagai" msgid "Log out?" msgstr "Keluar?" msgid "Logged in as %s. Edit your profile." msgstr "Masuk sebagai% s. sunting profilmu." msgid "Edit" msgstr "Sunting" msgid "Login" msgstr "Masuk" msgid "Send My Password" msgstr "Kirim kata sandi saya" msgid "Create an account" msgstr "Buat sebuah akun" msgid "Welcome! Register for an account" msgstr "Selamat datang! daftar untuk akun" msgid "About me" msgstr "Tentang saya" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Simpan nama, email, dan situs web saya di browser ini untuk lain kali saya berkomentar." msgid "Orders" msgstr "Pesanan" msgid "Addresses" msgstr "Alamat" msgid "Account settings" msgstr "Pengaturan akun" msgid "Hello" msgstr "Halo" msgid "No products in the cart." msgstr "Tidak ada produk di keranjang." msgid "Product categories" msgstr "Kategori Produk" msgid "Product tags" msgstr "Tag produk" msgid "Success" msgstr "Kesuksesan" msgid "Acknowledgment is required!" msgstr "Pengakuan diperlukan!" msgid "Please fill in a valid email." msgstr "Silahkan isi email yang valid." msgid "Please fill in an email address." msgstr "Silahkan isi alamat email." msgid "Get into your account." msgstr "Masuk ke akun Anda." msgid "My subscription account" msgstr "Akun langganan saya" msgid "Account details" msgstr "Detail akun" msgid "Subscriptions" msgstr "Langganan" msgid "My woo account" msgstr "Akun woo saya" msgid "Log out" msgstr "Keluar" msgid "Email address" msgstr "Alamat email" msgid "Username" msgstr "Nama pengguna" msgid "Password" msgstr "Kata sandi" msgid "must contain at least one lower case (a..z)" msgstr "harus mengandung setidaknya satu huruf kecil (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "harus mengandung setidaknya satu huruf besar (a..z)" msgid "must contain at least 6 characters in length" msgstr "harus berisi minimal 6 karakter" msgid "Repeat password" msgstr "Masukkan kata kunci kembali" msgid "Already have an account?" msgstr "Sudah memiliki akun?" msgid "Recover password" msgstr "Pulihkan kata sandi" msgid "Username or Email address" msgstr "Nama pengguna atau alamat email" msgid "Forgot password?" msgstr "Tidak ingat kata sandi?" msgid "Don't have an account?" msgstr "Tidak punya akun?" msgid "Dashboard" msgstr "Dasbor" msgid "Welcome to your account!" msgstr "Selamat datang di akun Anda!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Halo %1$s (bukan %2$s? %3$s)! dari dasbor akun Anda, Anda dapat melihat langganan dan mengelola detail akun Anda." msgid "Lost Password" msgstr "Kehilangan Kata sandi" msgid "Manage your account details." msgstr "Mengelola detail akun Anda." msgid "First name" msgstr "Nama depan" msgid "Last name" msgstr "Nama keluarga" msgid "Display name" msgstr "Nama tampilan" msgid "Current password" msgstr "Kata sandi saat ini" msgid "(leave blank to leave unchanged)" msgstr "(kosongkan agar tidak berubah)" msgid "New password" msgstr "Kata sandi baru" msgid "Confirm new password" msgstr "Konfirmasi password baru" msgid "Save changes" msgstr "Simpan perubahan" msgid "All your subscriptions." msgstr "Semua langganan Anda." msgid "Plan" msgstr "Rencana" msgid "Payment type" msgstr "Tipe pembayaran" msgid "Status" msgstr "Status" msgid "Months" msgstr "Bulan" msgid "Start date" msgstr "Mulai tanggal" msgid "End date" msgstr "Tanggal akhir" msgid "missing plan" msgstr "rencana yang hilang" msgid "Free" msgstr "Gratis" msgid "Active" msgstr "Aktif" msgid "Trial" msgstr "Uji coba" msgid "Blocked" msgstr "Diblokir" msgid "Closed" msgstr "Tertutup" msgid "Not paid" msgstr "Tidak dibayarkan" msgid "Awaiting payment" msgstr "Menunggu Pembayaran" msgid "Subscription info" msgstr "Info berlangganan" msgid "ID" msgstr "INDO" msgid "Name" msgstr "Nama" msgid "Company name" msgstr "Nama Perusahaan" msgid "VAT" msgstr "TONG" msgid "Address" msgstr "Alamat" msgid "City" msgstr "Kota" msgid "Country/State" msgstr "Negara Bagian" msgid "Email" msgstr "Surel" msgid "Postal code" msgstr "Kode Pos" msgid "Direct bank transfer details" msgstr "Detail transfer bank langsung" msgid "Account name" msgstr "Nama akun" msgid "Account number" msgstr "Nomor akun" msgid "Bank name" msgstr "Nama Bank" msgid "Routing number" msgstr "Nomor perutean" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/cepat" msgid "Instructions" msgstr "Instruksi" msgid "No subscription created." msgstr "Tidak ada langganan yang dibuat." msgid "Choose plan" msgstr "Pilih paket" msgid "Payment methods" msgstr "Cara Pembayaran" msgid "Total" msgstr "Total" msgid "Period" msgstr "Titik" msgid "Subscription summary" msgstr "Ringkasan berlangganan" msgid "Phone" msgstr "Telepon" msgid "Postcode" msgstr "Kode Pos" msgid "County" msgstr "Daerah" msgid "Town/City" msgstr "Kota/kota" msgid "Street address" msgstr "Alamat jalan" msgid "Country/Region" msgstr "Negara/wilayah" msgid "VAT Number" msgstr "Nomor PPN" msgid "(optional)" msgstr "(pilihan)" msgid "Billing details" msgstr "Rincian tagihan" msgid "User information" msgstr "Informasi pengguna" msgid "It seems that no available payment methods have been configured." msgstr "Tampaknya tidak ada metode pembayaran yang tersedia yang telah dikonfigurasi." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Terima kasih! kami senang melihat Anda di sini. langganan Anda akan segera diaktifkan!" msgid "Our bank details" msgstr "Rincian bank kami" msgid "Your subscription details" msgstr "Detail langganan Anda" msgid "View subscription" msgstr "Lihat langganan" msgid "You have not selected a valid subscription plan." msgstr "Anda belum memilih paket berlangganan yang valid." msgid "Field empty" msgstr "Lapangan kosong" msgid "Empty first name" msgstr "Nama depan kosong" msgid "Empty last name" msgstr "Nama belakang kosong" msgid "Empty country" msgstr "Negara kosong" msgid "Empty address" msgstr "Alamat kosong" msgid "Empty city" msgstr "Kota kosong" msgid "Empty county" msgstr "Kabupaten kosong" msgid "Empty postcode" msgstr "Kode pos kosong" msgid "Empty phone" msgstr "Telepon kosong" msgid "Empty email" msgstr "Email kosong" msgid "Email or username empty!" msgstr "Email atau nama pengguna kosong!" msgid "Pass empty!" msgstr "Lulus kosong!" msgid "Username incorrect!" msgstr "Nama pengguna salah!" msgid "Invalid Pass Pattern!" msgstr "Pola lulus tidak valid!" msgid "Please activate your account by following the link sent to your email address." msgstr "Silahkan aktifkan akun anda dengan mengikuti link yang dikirimkan ke alamat email anda." msgid "Resend activation link" msgstr "Kirim ulang tautan aktivasi" msgid "In order to have access to this section, you have to activate your account." msgstr "Untuk memiliki akses ke bagian ini, Anda harus mengaktifkan akun Anda." msgid "Email empty!" msgstr "Email kosong!" msgid "Username empty!" msgstr "Nama pengguna kosong!" msgid "Pass pattern incorrect!" msgstr "Pola lulus salah!" msgid "Retyped pass empty!" msgstr "Ketik ulang pass kosong!" msgid "Retyped pass exactly!" msgstr "Mengetik ulang lulus persis!" msgid "User already exists!" msgstr "Pengguna sudah ada!" msgid "Email already exists!" msgstr "Email sudah ada!" msgid "Your account could not be created." msgstr "Akun Anda tidak dapat dibuat." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Silakan periksa email Anda (kotak masuk atau folder spam) untuk memvalidasi akun Anda." msgid "User empty!" msgstr "Pengguna kosong!" msgid "User does not exists!" msgstr "Pengguna tidak ada!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Tautan aktivasi baru telah dibuat. silakan periksa email Anda (kotak masuk atau folder spam) untuk memvalidasi akun Anda." msgid "CAPTCHA verification failed!" msgstr "Verifikasi captcha gagal!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Skor pengguna captcha gagal. silahkan hubungi kami!" msgid "Loading" msgstr "Memuat" msgid "Here are the results for the search:" msgstr "Berikut hasil pencariannya :" msgid "Price" msgstr "Harga" msgid "EXCLUSIVE" msgstr "EKSKLUSIF" msgid "Tel:" msgstr "Telp:" msgid "Share" msgstr "Bagikan" msgid "Print" msgstr "Mencetak" msgid "At" msgstr "Pada" msgid "Comments are closed." msgstr "Komentar ditutup." msgid "Payment method" msgstr "Cara Pembayaran" msgid "You must be logged out to view this page." msgstr "Anda harus keluar untuk melihat halaman ini." msgid "Retyped Pass incorrect!" msgstr "Mengetik ulang pass salah!" msgid "%s is a required field." msgstr "%s adalah bidang yang wajib diisi." msgid "Please provide a valid email address." msgstr "Harap berikan alamat email yang valid." msgid "This email address is already registered." msgstr "Alamat email ini sudah terdaftar." msgid "Please fill out all password fields." msgstr "Silakan isi semua kolom kata sandi." msgid "Please enter your current password." msgstr "Silakan masukkan kata sandi Anda saat ini." msgid "Please re-enter your password." msgstr "Silakan masukkan kembali kata sandi Anda." msgid "New passwords do not match." msgstr "Kata sandi baru tidak cocok." msgid "Your current password is incorrect." msgstr "Kata sandi Anda saat ini salah." msgid "Account details changed successfully." msgstr "Detail akun berhasil diubah." msgid "A new activation link has been sent to your email address!" msgstr "Tautan aktivasi baru telah dikirim ke alamat email Anda!" msgid "unlimited" msgstr "tak terbatas" msgid "Pay with Stripe" msgstr "Bayar dengan garis" msgid "Cancel subscription" msgstr "Membatalkan langganan" msgid "Please check your email and confirm subscription!" msgstr "Silakan periksa email Anda dan konfirmasi berlangganan!" msgid "Successfully subscribed!" msgstr "Berhasil berlangganan!" msgid "Successfully unsubscribed!" msgstr "Berhasil berhenti berlangganan!" msgid "Enter promo code here" msgstr "Masukkan kode promo di sini" msgid "Apply" msgstr "Menerapkan" msgid "Coupon applied" msgstr "Kupon diterapkan" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Kesalahan yang tidak tertangkap: ada yang tidak beres, harap muat ulang halaman dan coba lagi!" msgid "The coupon code you entered is invalid" msgstr "Kode kupon yang Anda masukkan tidak valid" msgid "The coupon code you entered has reached its usage limit" msgstr "Kode kupon yang Anda masukkan telah mencapai batas pemakaian" msgid "The coupon code you entered has expired" msgstr "Kode kupon yang Anda masukkan telah kedaluwarsa" msgid "Coupon name is required !" msgstr "Nama kupon wajib diisi!" msgid "Please enter a coupon code first!" msgstr "Silakan masukkan kode kupon terlebih dahulu!" msgid "Invalid" msgstr "Tidak sah" msgid "Applied" msgstr "Terapan" msgid "Remove" msgstr "Menghapus" msgid "Price not set" msgstr "Harga tidak ditetapkan" msgid "Grand Total" msgstr "Total keseluruhan" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Anda sudah berlangganan, namun masih menunggu pembayaran!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Langganan ini telah dibatalkan dan akan berakhir pada %end_date%." msgid "Go to checkout" msgstr "Pergi ke kasir" msgid "Stripe invoice details" msgstr "Rincian faktur stripe" msgid "Stripe subscription details" msgstr "Detail langganan stripe" msgid "Current status" msgstr "Status terkini" msgid "Initial Invoice Paid" msgstr "Faktur awal dibayar" msgid "Subscription Create: Initial Invoice Paid" msgstr "Pembuatan langganan: faktur awal dibayar" msgid "Subscription Create: Initial Invoice has been created" msgstr "Pembuatan langganan: faktur awal telah dibuat" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Pembuatan langganan: faktur awal telah diselesaikan, dan siap dibayar" msgid "Subscription Update: Invoice Paid" msgstr "Pembaruan berlangganan: faktur dibayar" msgid "Subscription Renew: Invoice Paid" msgstr "Perpanjangan langganan: faktur dibayar" msgid "Subscription Renew: Invoice Finalized" msgstr "Perpanjangan langganan: faktur diselesaikan" msgid "Subscription Renew: Invoice Created" msgstr "Perpanjangan langganan: faktur dibuat" msgid "Subscription Renew: Invoice Upcoming" msgstr "Perpanjangan langganan: faktur akan datang" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Langganan kedaluwarsa: faktur dibatalkan (faktur pertama belum dibayar)" msgid "Subscription Deleted" msgstr "Langganan dihapus" msgid "Subscription Create: Trialing" msgstr "Pembuatan langganan: uji coba" msgid "Subscription Canceled" msgstr "Langganan dibatalkan" msgid "Subscription Create: Initial Invoice voided" msgstr "Pembuatan langganan: faktur awal dibatalkan" msgid "Subscription Renew: Invoice voided" msgstr "Perpanjangan langganan: faktur dibatalkan" msgid "Subscription Update: Invoice voided" msgstr "Pembaruan langganan: faktur dibatalkan" msgid "Invoice updated" msgstr "Faktur diperbarui" msgid "Subscription has been canceled and will end on: " msgstr "Langganan telah dibatalkan dan akan berakhir pada:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Penyiapan berhasil - Anda telah berhasil menyiapkan metode pembayaran untuk pembayaran berikutnya." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Penyiapan gagal - kami minta maaf, terjadi kesalahan saat menyiapkan metode pembayaran Anda. silakan coba lagi dengan metode pembayaran lain." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Pembayaran berhasil - pembayaran langganan terakhir Anda berhasil diselesaikan." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Pemrosesan pembayaran - pembayaran langganan terbaru Anda sedang diproses." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Pembayaran gagal - kami minta maaf, terjadi kesalahan saat memproses pembayaran Anda. silakan coba lagi dengan metode pembayaran lain." msgid "Download" msgstr "Unduh" msgid "Stripe invoice" msgstr "Faktur bergaris" msgid "N/A" msgstr "Tidak ada" msgid "Latest invoice" msgstr "Faktur terbaru" msgid "Invoice" msgstr "Faktur" msgid "Unpaid subscription." msgstr "Langganan yang belum dibayar." msgid "Locked subscription." msgstr "Langganan terkunci." msgid "Invalid subscription." msgstr "Langganan tidak valid." msgid "Pay now" msgstr "Bayar sekarang" msgid "Show more info" msgstr "Tampilkan info lebih lanjut" msgid "Show less info" msgstr "Tampilkan lebih sedikit info" msgid "Complete payment" msgstr "Pembayaran lengkap" msgid "or" msgstr "atau" msgid "Setup Payment" msgstr "Pembayaran pengaturan" msgid "Go to Payment" msgstr "Pergi ke pembayaran" msgid "Alphabetical A -> Z" msgstr "Abjad a -> z" msgid "Oldest posts" msgstr "Postingan tertua" msgid "Select" msgstr "Pilih" msgid "on" msgstr "pada" msgid "No bookmarked posts" msgstr "Tidak ada posting yang ditandai" msgid "Log in With Facebook" msgstr "Masuk dengan Facebook" msgid "Forgot your password? Get help" msgstr "Lupa kata sandi Anda? mendapatkan bantuan" msgid "Someone has requested a password reset for the following account:" msgstr "Seseorang telah meminta pengaturan ulang kata sandi untuk akun berikut:" msgid "Username: %s" msgstr "Nama pengguna: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Jika ini adalah kesalahan, abaikan saja email ini dan tidak akan terjadi apa-apa." msgid "To reset your password, visit the following address:" msgstr "Untuk mengatur ulang kata sandi Anda, kunjungi alamat berikut:" msgid "Members" msgstr "Anggota" msgid "Downloads" msgstr "Unduhan" msgid "inc. TAX" msgstr "inc. pajak" msgid "ex. TAX" msgstr "mantan. pajak" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Terjadi kesalahan tak terduga saat mencoba membuat postingan Anda. silakan coba lagi." msgid "Your post has been successfully created." msgstr "Postingan Anda telah berhasil dibuat." msgid "Your post has been successfully updated." msgstr "Postingan anda telah berhasil diupdate." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Telah terjadi kesalahan yang tidak terduga dan email tidak dapat dikirim." msgid "Location:" msgstr "Lokasi:" msgid "The email has been successfully sent." msgstr "Email telah berhasil dikirim." msgid "An unexpected error has occurred. Please try again." msgstr "Sebuah kesalahan yang tidak terduga telah terjadi. silakan coba lagi." msgid "Drag and drop or browse" msgstr "Seret dan lepas atau jelajahi" msgid "Search by keyword..." msgstr "Cari menggunakan kata kunci..." msgid "Select parent" msgstr "Pilih orang tua" msgid "Add new" msgstr "Tambah baru" msgid "Parent" msgstr "Induk" msgid "Select child" msgstr "Pilih anak" msgid "Select sub-child" msgstr "Pilih sub-anak" msgid "Posted by" msgstr "Diposting oleh" msgid "Overall" msgstr "Keseluruhan" msgid "Post review" msgstr "Posting ulasan" msgid "This field is required!" msgstr "Bagian ini diperlukan!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Ulasan Anda telah dipublikasikan. harap segarkan halaman untuk melihatnya." msgid "Your review has been registered and is awaiting approval." msgstr "Ulasan Anda telah terdaftar dan sedang menunggu persetujuan." msgid "Submit reply" msgstr "Kirimkan balasan" msgid "Enter your reply" msgstr "Masukkan balasan Anda" msgid "Cancel" msgstr "Membatalkan" msgid "Some required fields have been left blank." msgstr "Beberapa bidang wajib dikosongkan." msgid "Please enter a valid email address." msgstr "Silakan isi alamat email." msgid "The number cannot be lower than" msgstr "Jumlahnya tidak boleh lebih rendah dari" msgid "The number cannot be higher than" msgstr "Jumlahnya tidak boleh lebih tinggi dari" msgid "Leave a review" msgstr "Tinggalkan ulasan" msgid "Submit" msgstr "Kirim" msgid "Update" msgstr "Memperbarui" msgid "out of 5" msgstr "dari 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Anda telah mencapai batas ulasan yang dapat Anda kirimkan untuk artikel ini" msgid "Log in to leave a review." msgstr "Masuk untuk meninggalkan ulasan." msgid "Enter a title for your review" msgstr "Masukkan judul ulasan Anda" msgid "Enter your review" msgstr "Masukkan ulasan Anda" msgid "Review criteria" msgstr "Kriteria tinjauan" msgid "Enter Your Name or Company" msgstr "Masukkan nama atau perusahaan Anda" msgid "Submit review" msgstr "Mengirimkan ulasan" msgid "Delete" msgstr "Menghapus" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Balasan Anda telah dipublikasikan. harap segarkan halaman untuk melihatnya." msgid "You have not created any posts." msgstr "Anda belum membuat postingan apa pun." msgid "The selected post has been successfully deleted." msgstr "Postingan yang dipilih telah berhasil dihapus." msgid "Rating" msgstr "Peringkat" msgid "Title" msgstr "Judul" msgid "Post image" msgstr "Gambar posting" msgid "Categories" msgstr "Kategori" msgid "Date" msgstr "Tanggal" msgid "Source title" msgstr "Judul sumber" msgid "No rating" msgstr "Tidak ada peringkat" msgid "View" msgstr "Melihat" msgid "Publish" msgstr "Menerbitkan" msgid "Add new post" msgstr "Menambahkan postingan baru" msgid "Edit post" msgstr "Edit posting" msgid "Publish a post" msgstr "Mempublikasikan postingan" msgid "The status for %POST_TITLE% has been changed." msgstr "Status %post_title% telah diubah." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Apakah Anda yakin ingin mempublikasikan %post_title%?" msgid "Delete a post" msgstr "Menghapus postingan" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Apakah Anda yakin ingin menghapus %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% telah dipindahkan ke sampah." msgid "You do not hold the required priveleges to execute this request." msgstr "Anda tidak memiliki hak istimewa yang diperlukan untuk melaksanakan permintaan ini." msgid "No search results." msgstr "Tidak ada hasil pencarian." msgid "Yes" msgstr "Ya" msgid "No" msgstr "TIDAK" msgid "Save" msgstr "Menyimpan" msgid "Search for a location" msgstr "Mencari lokasi" msgid "Address line" msgstr "Baris alamat" msgid "(Optional)" msgstr "(opsional)" msgid "State" msgstr "Negara" msgid "Country" msgstr "Negara" msgid "Create new term" msgstr "Membuat istilah baru" msgid "Description" msgstr "Keterangan" msgid "Delete bookmarks" msgstr "Menghapus bookmark" msgid "Reset your password" msgstr "Mereset password Anda" msgid "The password reset key has expired." msgstr "Kunci pengaturan ulang kata sandi telah kedaluwarsa." msgid "The password reset key is invalid." msgstr "Kunci pengaturan ulang kata sandi tidak valid." msgid "New password *" msgstr "Kata sandi baru *" msgid "Repeat new password *" msgstr "Ulangi kata sandi baru *" msgid "Save password" msgstr "Simpan kata sandi" msgid "Your account has been successfully activated!" msgstr "Akun Anda telah berhasil diaktifkan!" msgid "Your account has already been activated!" msgstr "Akun Anda telah diaktifkan!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Periksa email Anda untuk tautan aktivasi yang benar. tautan ini tidak valid." msgid "Account activation" msgstr "Aktivasi akun" msgid "Please enter a new password before proceeding." msgstr "Silakan masukkan kata sandi baru sebelum melanjutkan." msgid "Please confirm the new password before proceeding." msgstr "Harap konfirmasi kata sandi baru sebelum melanjutkan." msgid "Please make sure that the passwords match." msgstr "Harap pastikan kata sandinya cocok." msgid "The password has been reset successfully." msgstr "Kata sandi telah berhasil diatur ulang." msgid "Manage your billing details." msgstr "Mengelola detail penagihan Anda." msgid "Profile picture" msgstr "Foto profil" msgid "Remaining publishing rights." msgstr "Hak penerbitan yang tersisa." msgid "The number of articles you have left to publish across different post types." msgstr "Jumlah artikel yang tersisa untuk dipublikasikan di berbagai jenis postingan." msgid "Bank transfer" msgstr "Transfer Bank" msgid "Direct Bank Transfer" msgstr "Transfer bank langsung" msgid "Canceled" msgstr "Dibatalkan" msgid "Cycle Interval" msgstr "Interval siklus" msgid "In order to update this filed, you have to activate your account." msgstr "Untuk memperbarui file ini, Anda harus mengaktifkan akun Anda." msgid "Cannot process %s field." msgstr "Tidak dapat memproses bidang %s." msgid "Modified date" msgstr "Tanggal yang diubah" translation/hi_IN.mo000064400000143601150211537140010431 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,`6`a&a% ^)/%K&rlb,] ;[VXHqj|#HitSMST*k2/b|ZVS_ !";"^lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: hi_IN %post_title% को ट्रैश में ले जाया गया है।%total% का %curr%%s एक आवश्यक फ़ील्ड है.(वैकल्पिक)(अपरिवर्तित छोड़ने के लिए खाली छोड़ दें)(वैकल्पिक)1 टिप्पणी7 दिनों के लोकप्रियआपके ईमेल पते पर एक नया सक्रियण लिंक भेज दिया गया है!एक पासवर्ड आपको ईमेल कर दिया जाएगा।हमारे बारे मेंमेरे बारे मेंखाता सक्रियणखाता विवरणखाता विवरण सफलतापूर्वक बदला गया.खाते का नामखाता संख्याअकाउंट सेटिंगस्वीकृति की आवश्यकता है!सक्रियनया जोड़ोनई पोस्ट जोड़ेंपतापता पंक्तिपतोंसभीलोकप्रिय सभी समयआपकी सभी सदस्यताएँ।वर्णमाला a -> zक्या आपके पास पहले से एक खाता मौजूद है?आपकी पोस्ट बनाने का प्रयास करते समय एक अप्रत्याशित त्रुटि उत्पन्न हुई है। कृपया पुन: प्रयास करें।एक अप्रत्याशित त्रुटि उत्पन्न हुई और मेल नहीं भेजा जा सका.एक अप्रत्याशित त्रुटि सामने आई है। कृपया पुन: प्रयास करें।लागूआवेदन करनाआर्काइव:क्या आप वाकई %post_title% को हटाना चाहते हैं?क्या आप वाकई %post_title% प्रकाशित करना चाहते हैं?परऑस्ट्रलियन डॉलरलेखकलेखकभुगतान का इंतजारवापसबैंक का नामबैंक ट्रांसफरबीआईसी/स्विफ्टबिलिंग विवरणअवरोधितब्लॉगब्राजीली रियलब्रिटिश पाउंडबल्गेरियाई लेवद्वारासमीक्षा स्कोर द्वाराकैप्चा उपयोगकर्ता स्कोर विफल रहा। कृपया हमसे संपर्क करें!कैप्चा सत्यापन विफल!बंद करेंटिप्पणीकैनेडियन डॉलररद्द करनाजवाब कैंसिल करेंसदस्यता रद्दरद्द%s फ़ील्ड संसाधित नहीं कर सकता.श्रेणियाँसही सक्रियण लिंक के लिए अपना ईमेल जांचें। यह लिंक अमान्य है.चीनी युआन रॅन्मिन्बीयोजना चुनेंशहरबंद किया हुआटिप्पणी:टिप्पणियाँ बंद हैं।कंपनी का नामपूर्ण भुगताननए पासवर्ड की पुष्टि करेंहमें संपर्क करेंजारी रखेंदेशदेश/क्षेत्रदेश राज्यकाउंटीकूपन लागूकूपन नाम आवश्यक है!खाता बनाएंनया शब्द बनाएँक्रोएशियाई कुनावर्तमान पासवर्डवर्तमान स्थितिचक्र अंतरालचेक गणराज्य कोरुनादैनिक आर्काइव:डेनमार्क क्रोनडैशबोर्डतारीखमिटानाएक पोस्ट हटाएंबुकमार्क हटाएंविवरणबैंक में सीधे अंतरणप्रत्यक्ष बैंक हस्तांतरण विवरणप्रदर्शित होने वाला नामखाता नहीं है?डाउनलोड करनाडाउनलोडखींचें और छोड़ें या ब्राउज़ करेंसंपादक की पसंदऔर भी अधिक न्यूज़अनन्यसंपादित करेंसंपादित पोस्टईमेलमेल पताईमेल एड्रेस नहीं मिला!ईमेल पहले से मौजूद है!ईमेल खाली!ईमेल गलत है!ईमेल या उपयोगकर्ता नाम खाली!ईमेल या यूजरनेम गलत है!ईमेल:खाली पताखाली शहरखाली देशखाली काउंटीखाली ईमेलखाली पहला नामखाली उपनामखाली फोनखाली पोस्टकोडसमाप्ति तिथिअपना नाम या कंपनी दर्ज करेंअपनी समीक्षा के लिए एक शीर्षक दर्ज करेंयहां प्रोमो कोड दर्ज करेंअपना उत्तर दर्ज करेंअपनी समीक्षा दर्ज करेंयूरो के सदस्य देशोंहमें का पालन करेंफैंसचित्रित कियाविशेष पोस्टमैदान खालीपहला नामफॉलो करेंइंस्टाग्राम पर हमें का पालन करेंफॉलोवरपासवर्ड भूल गए?अपना पासवर्ड भूल गए?अपना कूट शब्द भूल गए? मदद लेंनि: शुल्कअपने खाते में जाओ।भुगतान पर जाएंपरिक्षण के लिए जाएंकुल योगहोमपेजनमस्तेनमस्ते %1$s (%2$s नहीं? %3$s)! अपने खाता डैशबोर्ड से आप अपनी सदस्यताएँ देख सकते हैं और अपने खाते के विवरण प्रबंधित कर सकते हैं।यहाँ खोज के परिणाम हैं:होमहांगकांग का डॉलरहंगरी फ़ोरिंटइबनपहचानयदि यह एक गलती थी, तो बस इस ईमेल को अनदेखा करें और कुछ नहीं होगा।यदि आप परिणामों से खुश नहीं हैं तो कृपया कोई अन्य खोज करेंइस अनुभाग तक पहुंचने के लिए, आपको अपना खाता सक्रिय करना होगा।इस फ़ाइल को अद्यतन करने के लिए, आपको अपना खाता सक्रिय करना होगा।भारतीय रुपयाइंडोनेशियाई रुपियाप्रारंभिक चालान का भुगतान किया गयानिर्देशअमान्यअमान्य पास पैटर्न!अमान्य सदस्यता.चालानचालान अद्यतन किया गयाइस्राइली शेकेलऐसा लगता है कि कोई भी उपलब्ध भुगतान विधि कॉन्फ़िगर नहीं की गई है।जापानी येनशामिल होकोरियाई (दक्षिण) वोननवीनतम लेखकोई जवाब देंलॉग इनअंतिम नामनवीनतमनवीनतम चालानसमीक्षा लिखेंलाइक करेंपसंदऔर अधिक लोड करेंलोड हो रहा हैजगह:बंद सदस्यता.लॉग इनफ़ेसबुक लॉगिन करेंटिप्पणी करने के लिए लॉग इन करेंसमीक्षा छोड़ने के लिए लॉग इन करें.अपने खाते में प्रवेश करेंलॉग आउटलोग आउट?के रूप में लॉग इन किया% s के रूप में लॉग इन किया। अपनी प्रोफाइल सम्पादित करें।लॉग इन करेंलॉगआउटपासवर्ड खो गयालेखक से और अधिकऔर अधिक कहानियांमलेशियाई रिंग्गितअपने खाते के विवरण प्रबंधित करें।अपने बिलिंग विवरण प्रबंधित करें.सदस्योंमेक्सिकन पीसोसंशोधित तिथिसंशोधित तिथि:मासिक आर्काइव:महीनेअधिकसबसे अधिक लोकप्रियमेरा सदस्यता खातामेरा वू खाताएन/एकोई टिप्पणी नहीं हैनामनाम:न्यूजीलैंड डॉलरनया सक्रियण लिंक उत्पन्न हुआ। अपना खाता सत्यापित करने के लिए कृपया अपना ईमेल (इनबॉक्स या स्पैम फ़ोल्डर) जांचें।नया पासवर्डनया पासवर्ड *नये पासवर्ड मेल नहीं खाते.अगलाअगला (दायीं तीर वाला बटन)अगला लेखनहींकोई बुकमार्क की गई पोस्ट नहींडिस्प्ले करने के लिए कोई पोस्ट नहीं हैंकार्ट में कोई प्रोडक्ट नहीं हैं।कोई रेटिंग नहींकोई परिणाम नहीं हैइस खोज के लिए कोई परिणाम नहीं हैखोजने पर कोई परिणाम नहीं मिला।कोई सदस्यता नहीं बनाई गई।नॉर्वे क्रोननहीं चुकायाहमारे नवीनतम पोस्टकुल स्कोरसबसे पुरानी पोस्टऊप्स...त्रुटि 404आदेशहमारे बैंक विवरणकुल मिलाकरलोकप्रिय श्रेणीलोकप्रिय पोस्टपोस्टपेजपेज %TOTAL_PAGES% का %CURRENT_PAGE%माता-पिताखाली पास!पास पैटर्न गलत!पासवर्डपासवर्ड की दोबारा प्राप्तिअब भुगतान करेंधारी के साथ भुगतान करेंभुगतान विफल - हमें खेद है, आपका भुगतान संसाधित करने में त्रुटि हुई। कृपया किसी भिन्न भुगतान विधि के साथ पुनः प्रयास करें।भुगतान का तरीकाभुगतान की विधिभुगतान प्रसंस्करण - आपका नवीनतम सदस्यता भुगतान संसाधित किया जा रहा है।भुगतान सफल - आपका नवीनतम सदस्यता भुगतान सफलतापूर्वक पूरा हो गया।भुगतान के प्रकारअवधिफ़िलिपीनी पीसोफ़ोनयोजनाकृपया अपने ईमेल पते पर भेजे गए लिंक का अनुसरण करके अपना खाता सक्रिय करें।कृपया अपना ईमेल देखें (इंडेक्स या स्पैम फोल्डर), पासवर्ड वहां भेजा गया था।अपना खाता सत्यापित करने के लिए कृपया अपना ईमेल (इनबॉक्स या स्पैम फ़ोल्डर) जांचें।आपका ईमेल (सूचकांक या स्पैम फोल्डर) की जाँच करें, पासवर्ड वहां भेजा गया था।कृपया अपना ईमेल जांचें और सदस्यता की पुष्टि करें!कृपया आगे बढ़ने से पहले नए पासवर्ड की पुष्टि करें।कृपया पहले एक कूपन कोड दर्ज करें!कृपया आगे बढ़ने से पहले एक नया पासवर्ड दर्ज करें।कृपया एक मान्य ईमेल पता प्रविष्ट करें।कृपया अपनी टिप्पणी दर्ज करें!कृपया अपना वर्तमान पासवर्ड दर्ज करें.कृपया अपना ईमेल पता यहाँ दर्ज करेंकृपया अपना नाम यहाँ दर्ज करेंकृपया एक वैध ईमेल भरें।कृपया एक ईमेल पता भरें।कृपया सभी पासवर्ड फ़ील्ड भरें।कृपया सुनिश्चित करें कि पासवर्ड मेल खाते हों।एक वैध ईमेल पता प्रदान करें।अपना पासवर्ड दोबारा दर्ज करें।कृपया प्रतीक्षा करें...पोलिश ज़्लॉटीटिप्पणी पोस्ट करेंछवि पोस्ट करेंसमीक्षा पोस्ट करेंडाक कोडपोस्टकोडके द्वारा प्रकाशित किया गयाद्वारा पोस्टपोस्ट के साथ टैगपिछलापिछला (बायीं तीर वाला बटन)पिछला लेखकीमतकीमत निर्धारित नहीं हैप्रिंटगोपनीयता नीतिउत्पाद श्रेणियाँउत्पाद टैगप्रोफ़ाइल फोटोप्रकाशितएक पोस्ट प्रकाशित करेंरजिस्टर करेंसंबंधित लेखसमीक्षा निरीक्षणक्रमरहितरेटिंगऔर अधिक पढ़ेंगोपनीय शब्द पुन प्राप्त करेअपना पासवर्ड रिकवर करेंरजिस्टरअकाउंट के लिए रजिस्टर करेंशेष प्रकाशन अधिकार.निकालनानया पासवर्ड दोहराएँ *पासवर्ड दोहराएंजवाब देंसक्रियण लिंक पुनः भेजेंअपना पासवर्ड रीसेट करेंदोबारा टाइप किया गया पास गलत!फिर से टाइप किया हुआ पास खाली!पास बिल्कुल सही!समीक्षा मानदंडरोमानियाई (नया) लियूराउटिंग नम्बररूसी रूबलशेयर करेंस्रोतसारांशबचानापरिवर्तनों को सुरक्षित करेंअगली बार टिप्पणी के लिए इस ब्राउज़र में मेरा नाम, ईमेल और वेबसाइट सहेजेंपासवर्ड को बचाओखोजेंसंकेतशब्द द्वारा खोजें...एक स्थान खोजेंचुननाबच्चे का चयन करेंमाता-पिता का चयन करेंउप-बच्चे का चयन करेंमेरा पास भेजेंमेरा पासवर्ड भेजोसेटअप भुगतानसेटअप विफल - हमें खेद है, आपकी भुगतान विधि सेट करने में त्रुटि हुई। कृपया किसी भिन्न भुगतान विधि के साथ पुनः प्रयास करें।सेटअप सफल - आपने भविष्य के भुगतानों के लिए अपनी भुगतान विधि सफलतापूर्वक सेट कर ली है।साझा करनाफेसबुक पर शेयर करेंकम जानकारी दिखाएंअधिक जानकारी दिखाएंसाइन इन करेंसाइन इन/ ज्वाइन करेंसाइन अप करेंसिंगापुर का डॉलरकुछ आवश्यक फ़ील्ड खाली छोड़ दी गई हैं.किसी ने निम्नलिखित खाते के लिए पासवर्ड रीसेट का अनुरोध किया है:माफ़ करें, लेकिन आप जो पेज खोज रहे हैं वो मौजूद नहीं है।स्रोत शीर्षकदक्षिण अफ्रीकी रैंडआरंभ करने की तिथिराज्यस्थितिगली का पताधारी चालानधारी चालान विवरणधारी सदस्यता विवरणजमा करनाजवाब सबमिट करेंसमीक्षा जमा करेंसब्सक्राइब करेंसब्सक्राइबर्ससदस्यता रद्दसदस्यता निर्माण: प्रारंभिक चालान का भुगतान किया गयासदस्यता निर्माण: प्रारंभिक चालान बनाया गया हैसदस्यता निर्माण: प्रारंभिक चालान को अंतिम रूप दे दिया गया है, और यह भुगतान के लिए तैयार हैसदस्यता निर्माण: प्रारंभिक चालान रद्द कर दिया गयासदस्यता निर्माण: परीक्षणसदस्यता हटा दी गईसदस्यता समाप्त हो गई: चालान रद्द कर दिया गया (पहले चालान का भुगतान नहीं किया गया था)सदस्यता नवीनीकरण: चालान बनाया गयासदस्यता नवीनीकरण: चालान को अंतिम रूप दिया गयासदस्यता नवीनीकरण: चालान का भुगतान किया गयासदस्यता नवीनीकरण: चालान आगामीसदस्यता नवीनीकरण: चालान रद्द कर दिया गयासदस्यता अद्यतन: चालान का भुगतान किया गयासदस्यता अद्यतन: चालान रद्द कर दिया गयासदस्यता रद्द कर दी गई है और यह समाप्त हो जाएगी:सदस्यता जानकारीसदस्यता सारांशसदस्यतासफलतासफलतापूर्वक सदस्यता ले ली!सफलतापूर्वक सदस्यता समाप्त!स्वीडिश क्रोनास्विस फ्रैंकटैग्सटैगटैग्सदूरभाष:थाई बातधन्यवाद! हम आपको यहां देखकर प्रसन्न हैं। आपकी सदस्यता जल्द ही सक्रिय हो जाएगी!%url% से कंटेंट लोड नहीं हो पाया।आपके द्वारा दर्ज किया गया कूपन कोड समाप्त हो गया हैआपके द्वारा दर्ज किया गया कूपन कोड अपनी उपयोग सीमा तक पहुंच गया हैआपके द्वारा दर्ज किया गया कूपन कोड अमान्य हैईमेल सफलतापूर्वक भेज दिया गया है.इमेज #%curr% लोड नहीं हो पाया।संख्या इससे अधिक नहीं हो सकतीसंख्या इससे कम नहीं हो सकतीआपके द्वारा विभिन्न पोस्ट प्रकारों में प्रकाशित करने के लिए छोड़े गए लेखों की संख्या।पासवर्ड सफलतापूर्वक रीसेट कर दिया गया है.पासवर्ड रीसेट कुंजी समाप्त हो गई है.पासवर्ड रीसेट कुंजी अमान्य है.चयनित पोस्ट सफलतापूर्वक हटा दी गई है.%post_title% की स्थिति बदल दी गई है।यह ईमेल पता पहले से ही पंजीकृत है।यह फ़ील्ड आवश्यक है!यह सदस्यता रद्द कर दी गई है और यह %end_date% पर समाप्त हो जाएगी।शीर्षकअपना पासवर्ड रीसेट करने के लिए, निम्नलिखित पते पर जाएँ:कुलशहर/शहरअभी प्रचलितपरीक्षणतुर्की लीराट्विटर पर ट्वीट करेंध्यान में न आई त्रुटि: कुछ गलत हो गया, कृपया पृष्ठ पुनः लोड करें और पुनः प्रयास करें!यूनाइटेड स्टेट का डॉलरअवैतनिक सदस्यता.अद्यतनउपयोगकर्ता पहले से मौजूद है!उपयोगकर्ता मौजूद नहीं है!उपयोगकर्ता खाली!यूजर जानकारीयूजर या ईमेल पहले से मौजूद है!यूजर या पासवर्ड गलत है!उपयोगकर्ता नामउपयोगकर्ता नाम खाली!उपयोगकर्ता नाम गलत है!उपयोगकर्ता का नाम या ईमेल पताउपयोक्तानाम: %sटबवैट क्रमांकके माध्यम सेदेखनासभी पोस्ट देखेंसभी परिणाम दिखाएँसदस्यता देखेंवेबसाइट:आपके खाते में आपका स्वागत है!स्वागत हे!आपका स्वागत है! अपने अकाउंट पर लॉग इन करेंस्वागत हे! एक खाते के लिए रजिस्टर करेंवार्षिक आर्काइव:हाँआपके पास पहले से ही एक सदस्यता है, लेकिन यह अभी भी भुगतान की प्रतीक्षा में है!आप निम्न पर जा सकते हैंइस अनुरोध को निष्पादित करने के लिए आपके पास आवश्यक विशेषाधिकार नहीं हैं।आपने एक गलत ईमेल पता दर्ज किया है!आपने कोई पोस्ट नहीं बनाई है.आपने वैध सदस्यता योजना का चयन नहीं किया है।आप इस लेख के लिए सबमिट की जा सकने वाली समीक्षाओं की सीमा तक पहुंच गए हैंइस पृष्ठ को देखने के लिए आपको लॉग आउट होना होगा।आपका खाता नहीं बनाया जा सका.आपका खाता पहले ही सक्रिय किया जा चुका है!आपका खाता सफलतापूर्वक सक्रिय कर दिया गया है!आपकी टिप्पणी संतुलित किए जाने की प्रतीक्षा कर रही हैआपका वर्तमान पासवर्ड ग़लत है.आपका पासवर्ड रीसेट हो गया है, कृपया अपना ईमेल देखें।आपकी पोस्ट सफलतापूर्वक बन गई है.आपकी पोस्ट सफलतापूर्वक अपडेट कर दी गई है.आपका उत्तर प्रकाशित हो चुका है. कृपया इसे देखने के लिए पृष्ठ को ताज़ा करें।आपकी समीक्षा प्रकाशित कर दी गयी है। कृपया इसे देखने के लिए पृष्ठ को ताज़ा करें।आपकी समीक्षा पंजीकृत कर ली गई है और अनुमोदन की प्रतीक्षा कर रही है।आपकी सदस्यता विवरणपूर्व। करइंक करलापता योजनालंबाई में कम से कम 6 वर्ण होने चाहिएकम से कम एक लोअर केस (a..z) होना चाहिएकम से कम एक अपर केस (a..z) होना चाहिएकीपरया5 में सेखोज परिणामअसीमितविचारोंआपका ईमेलआपका पासवर्डआपका यूजरनेमtranslation/ur_IN.po000064400000124117150211537140010463 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ur_IN\n" msgid "View all results" msgstr "تمام نتائج دیکھيے" msgid "No results" msgstr "کوئی نتائج نہیں" msgid "Home" msgstr "ہوم" msgid "CLOSE" msgstr "بند" msgid "Page" msgstr "صفحہ" msgid "All" msgstr "تمام" msgid "By" msgstr "کی طرف" msgid "Load more" msgstr "مزید لوڈ کریں" msgid "View all posts in" msgstr "تمام مراسلات ان میں دیکھیں" msgid "Tags" msgstr "ٹیگز" msgid "Previous article" msgstr "گزشتہ مضمون" msgid "Next article" msgstr "اگلا مضمون" msgid "Authors" msgstr "مصنفین" msgid "Author" msgstr "مصنف" msgid "RELATED ARTICLES" msgstr "متعلقہ مضامین" msgid "MORE FROM AUTHOR" msgstr "زیادہ مصنف کی طرف سے" msgid "VIA" msgstr "کے ذریعے" msgid "SOURCE" msgstr "ذریعہ" msgid "TAGS" msgstr "ٹیگز" msgid "SHARE" msgstr "حصہ" msgid "Continue" msgstr "جاری" msgid "Read more" msgstr "مزید پڑھیں" msgid "Name:" msgstr "نام" msgid "Email:" msgstr "ای میل" msgid "Website:" msgstr "ویب سائٹ" msgid "Comment:" msgstr "تبصرہ" msgid "LEAVE A REPLY" msgstr "جواب چھوڑ دیں" msgid "Post Comment" msgstr "رائے دیجئے" msgid "Cancel reply" msgstr "جواب منسوخ کریں" msgid "Reply" msgstr "جواب" msgid "Log in to leave a comment" msgstr "تبصرہ چھوڑنے کے لئے لاگ ان کریں" msgid "NO COMMENTS" msgstr "کوئی تبصرہ نہیں" msgid "1 COMMENT" msgstr "1 تبصرہ" msgid "COMMENTS" msgstr "تبصرے" msgid "REVIEW OVERVIEW" msgstr "جائزہ مجموعی جائزہ" msgid "SUMMARY" msgstr "خلاصہ" msgid "OVERALL SCORE" msgstr "مجموعی اسکور" msgid "Ooops... Error 404" msgstr "افوہ ... 404 ايرر" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "معذرت، لیکن آپ جو صفحہ تلاش کر رہے ہیں موجود نہیں ہے" msgid "You can go to the" msgstr "آپ جا سکتے ہیں" msgid "HOMEPAGE" msgstr "مرکزی صفحہ" msgid "OUR LATEST POSTS" msgstr "ہمارے تازہ ترین مراسلات" msgid "Posts by" msgstr "کے ذریعے پیغامات" msgid "POSTS" msgstr "مراسلات" msgid "Posts tagged with" msgstr "پیغامات کوساتھ ٹیگ کیا" msgid "Tag" msgstr "ٹیگ" msgid "Daily Archives:" msgstr "ڈیلی آرکائیو" msgid "Monthly Archives:" msgstr "ماہانہ آرکائیو" msgid "Yearly Archives:" msgstr "سالانہ آرکائیو" msgid "Archives" msgstr "آرکائیو" msgid "LATEST ARTICLES" msgstr "تازہ ترین مضامین" msgid "search results" msgstr "تلاش کے نتائج" msgid "Search" msgstr "تلاش کریں" msgid "If you're not happy with the results, please do another search" msgstr "اگر آپ نتائج کے ساتھ خوش نہیں ہيں، تو براہ مہربانی دوبارہ تلاش کریں" msgid "Contact us" msgstr "ہم سے رابطہ کريں" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "صفحہ%موجودہ صفحہ%کا%کل صفحات" msgid "Next" msgstr "اگلا" msgid "Prev" msgstr "پچھلا" msgid "No results for your search" msgstr "آپ کی تلاش کا کوئی نتيجہ نہیں" msgid "No posts to display" msgstr "کوئی تحریر نہیں ظاہر کرنے کے لئے" msgid "LOG IN" msgstr "لاگ ان" msgid "Sign in / Join" msgstr "سائن ان / شمولیت" msgid "Log In" msgstr "لاگ ان کریں" msgid "REGISTER" msgstr "رجسٹر" msgid "Send My Pass" msgstr "میرا پاس ارسال کریں" msgid "Forgot your password?" msgstr "کيا آپ پاس ورڈ بھول گئے ہیں؟" msgid "Please wait..." msgstr "براہ مہربانی انتظار کریں …" msgid "User or password incorrect!" msgstr "صارف یا غلط پاس ورڈ" msgid "Email or username incorrect!" msgstr "ای میل یا غلط کا صارف کا نام" msgid "Email incorrect!" msgstr "غلط ای ميل" msgid "User or email already exists!" msgstr "صارف یا ای میل پہلے سے موجود ہے" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "آپ براہ مہربانی اپنا ای میل چیک کریں ( انڈیکس یا اسپيم فولڈر ) پاس ورڈ وہاں بھیجا گیا تھا" msgid "Email address not found!" msgstr "ای میل ایڈریس نہیں ملا" msgid "Your password is reset, check your email." msgstr "آپ کا پاس ورڈ دوبارہ ترتیب کر ديا گيا ہے اپنی ای میل چيک کريں" msgid "Welcome! Log into your account" msgstr "خوش آمدید! اپنے اکاؤنٹ میں لاگ ان کریں" msgid "Register for an account" msgstr "ایک اکاؤنٹ کے لئے رجسٹر کريں" msgid "Recover your password" msgstr "اپنا پاسورڈ ريکور کريں" msgid "your username" msgstr "آپ کا يوزر نيم" msgid "your password" msgstr "آپ کا پاس ورڈ" msgid "your email" msgstr "آپ کا ای میل" msgid "A password will be e-mailed to you." msgstr "ایک پاس ورڈ آپ کو ای ميل ميں بھیج دیا جائے گا" msgid "Logout" msgstr "لاگ آؤٹ کریں" msgid "Like" msgstr "پسند" msgid "Fans" msgstr "مداح" msgid "Follow" msgstr "فالور" msgid "Followers" msgstr "فالورز" msgid "Subscribe" msgstr "سبسکرائب کریں" msgid "Subscribers" msgstr "سبسکرائبرز" msgid "MORE STORIES" msgstr "مزید کہانیاں" msgid "Latest" msgstr "تازہ ترین" msgid "Featured posts" msgstr "فيچرڈ پوسٹ" msgid "Most popular" msgstr "سب سے زیادہ مقبول" msgid "7 days popular" msgstr "دنوں ميں مقبول 7" msgid "By review score" msgstr "اسکورکا جائزہ لینا" msgid "Random" msgstr "رینڈم" msgid "Trending Now" msgstr "رجحان سازی اس وقت" msgid "POPULAR CATEGORY" msgstr "مقبول قسم" msgid "EVEN MORE NEWS" msgstr "زيادہ خبريں" msgid "Previous (Left arrow key)" msgstr "پچھلا (بائیں ايرو کي" msgid "Next (Right arrow key)" msgstr "اگلا (دائیں ا یرو کي" msgid "%curr% of %total%" msgstr "%موجودہ% کا%کل%" msgid "The content from %url% could not be loaded." msgstr "سے يہ مواد لوڈ نہیں کیا جا سکتا%url%" msgid "The image #%curr% could not be loaded." msgstr "سے یہ تصویر لوڈ نہیں کی جا سکتی #%curr%" msgid "Blog" msgstr "بلاگ" msgid "Share on Facebook" msgstr "فيس بک پر شیئر کیجئیے" msgid "Tweet on Twitter" msgstr "ٹویٹر پر ٹویٹ کريں" msgid "EDITOR PICKS" msgstr "ایڈیٹر چنتا" msgid "POPULAR POSTS" msgstr "مقبول پوسٹس" msgid "FOLLOW US" msgstr "ہمیں فالو کریں" msgid "ABOUT US" msgstr "ہمارے بارے میں" msgid "More" msgstr "مزید" msgid "Featured" msgstr "نمایاں" msgid "All time popular" msgstr "مقبول ہر وقت" msgid "Likes" msgstr "پسند کرتا ہے" msgid "Register" msgstr "رجسٹر" msgid "of" msgstr "کے" msgid "Euro Member Countries" msgstr "یورو رکن ممالک" msgid "Your comment is awaiting moderation" msgstr "آپ کا تبصرہ اعتدال پسندی کا منتظر ہے" msgid "Follow us on Instagram" msgstr "Instagram پر ہمارے ساتھ چلیے" msgid "Back" msgstr "واپس" msgid "Sign in" msgstr "داخلہ" msgid "Sign up" msgstr "سائن اپ" msgid "Join" msgstr "شامل ہو جائیے" msgid "Welcome!" msgstr "خوش آمدید!" msgid "Log into your account" msgstr "اپنے اکاؤنٹ میں لاگ" msgid "Password recovery" msgstr "پاس ورڈ کی وصولی" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "آپ کا ای میل (انڈیکس یا سپیم فولڈر) براہ مہربانی چیک کریں، پاس ورڈ وہاں بھیجا گیا تھا." msgid "Australian Dollar" msgstr "آسٹریلوی ڈالر" msgid "Bulgarian Lev" msgstr "بلغارین لیو" msgid "Brazilian Real" msgstr "برازیل حقیقی" msgid "Canadian Dollar" msgstr "کینیڈین ڈالر" msgid "Swiss Franc" msgstr "سوئس فرانک" msgid "Chinese Yuan Renminbi" msgstr "چینی یوآن رینمنبی" msgid "Czech Republic Koruna" msgstr "جمہوریہ چیک کرونا" msgid "Danish Krone" msgstr "ڈینش کرون" msgid "British Pound" msgstr "برطانوی پاؤنڈ" msgid "Hong Kong Dollar" msgstr "ہانگ کانگ ڈالر" msgid "Croatian Kuna" msgstr "کروشین کونا" msgid "Hungarian Forint" msgstr "ہنگرین فورنٹ" msgid "Indonesian Rupiah" msgstr "انڈونیشین روپیہ" msgid "Israeli Shekel" msgstr "اسرائیلی شیکل" msgid "Indian Rupee" msgstr "بھارتی روپیہ" msgid "Japanese Yen" msgstr "جاپانی ین" msgid "Korean (South) Won" msgstr "کوریا (جنوبی) جیت لیا" msgid "Mexican Peso" msgstr "میکسیکن پیسہ" msgid "Malaysian Ringgit" msgstr "ملائشین رنگٹ" msgid "Norwegian Krone" msgstr "نارویجن کرون" msgid "New Zealand Dollar" msgstr "نیوزی لینڈ ڈالر" msgid "Philippine Peso" msgstr "فلپائینی پیسہ" msgid "Polish Zloty" msgstr "پولش زلوٹی" msgid "Romanian (New) Leu" msgstr "رومنی (نئے) لیو" msgid "Russian Ruble" msgstr "روسی روبل" msgid "Swedish Krona" msgstr "سویڈش کرونا" msgid "Singapore Dollar" msgstr "سنگاپور ڈالر" msgid "Thai Baht" msgstr "تھائی باہت" msgid "Turkish Lira" msgstr "ترکی کا لیرا" msgid "United States Dollar" msgstr "امریکی ڈالر" msgid "South African Rand" msgstr "جنوبی افریقی رانڈ" msgid "Privacy Policy" msgstr "رازداری کی پالیسی" msgid "views" msgstr "خیالات" msgid "Modified date:" msgstr "نظر ثانی شدہ تاریخ:" msgid "Please enter your name here" msgstr "اپنا نام یہاں درج کریں" msgid "Please enter your email address here" msgstr "برائے مہربانی اپنا ای میل پتہ یہاں درج کریں" msgid "You have entered an incorrect email address!" msgstr "آپ نے غلط ای میل پتہ درج کیا ہے!" msgid "Please enter your comment!" msgstr "براہ مہربانی اپنی رائے درج کریں!" msgid "Logged in as" msgstr "کے طور پر لاگ ان" msgid "Log out?" msgstr "لاگ آوٹ؟" msgid "Logged in as %s. Edit your profile." msgstr "٪ s کے طور پر لاگ ان اپنی پروفائل میں ترمیم کریں." msgid "Edit" msgstr "ترمیم" msgid "Login" msgstr "میں لاگ ان کریں" msgid "Send My Password" msgstr "اپنا پاس ورڈ بھیجیں" msgid "Create an account" msgstr "کھاتا کھولیں" msgid "Welcome! Register for an account" msgstr "خوش آمدید! ایک اکاؤنٹ کے لئے رجسٹر کریں" msgid "About me" msgstr "میرے بارے میں" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "میرے براؤزر میں میرا نام، ای میل، اور ویب سائٹ محفوظ کریں اگلا وقت میں تبصرہ کریں." msgid "Orders" msgstr "احکامات" msgid "Addresses" msgstr "پتے" msgid "Account settings" msgstr "اکاؤنٹ کی ترتیبات" msgid "Hello" msgstr "ہیلو" msgid "No products in the cart." msgstr "ٹوکری میں کوئی مصنوعات نہیں." msgid "Product categories" msgstr "مصنوعات کی اقسام" msgid "Product tags" msgstr "مصنوعات کے ٹیگز" msgid "Success" msgstr "کامیابی" msgid "Acknowledgment is required!" msgstr "اعتراف ضروری ہے!" msgid "Please fill in a valid email." msgstr "براہ کرم ایک درست ای میل پُر کریں۔" msgid "Please fill in an email address." msgstr "براہ کرم ایک ای میل ایڈریس پُر کریں۔" msgid "Get into your account." msgstr "اپنے اکاؤنٹ میں داخل ہوں." msgid "My subscription account" msgstr "میرا سبسکرپشن اکاؤنٹ" msgid "Account details" msgstr "اکاؤنٹ کی تفصیلات" msgid "Subscriptions" msgstr "سبسکرپشنز" msgid "My woo account" msgstr "میرا وو اکاؤنٹ" msgid "Log out" msgstr "لاگ آوٹ" msgid "Email address" msgstr "ای میل اڈریس" msgid "Username" msgstr "صارف نام" msgid "Password" msgstr "پاس ورڈ" msgid "must contain at least one lower case (a..z)" msgstr "کم از کم ایک لوئر کیس (a..z) پر مشتمل ہونا چاہیے" msgid "must contain at least one upper case (A..Z)" msgstr "کم از کم ایک اپر کیس (a..z) پر مشتمل ہونا چاہیے" msgid "must contain at least 6 characters in length" msgstr "لمبائی میں کم از کم 6 حروف پر مشتمل ہونا چاہیے۔" msgid "Repeat password" msgstr "پاس ورڈ دہراؤ" msgid "Already have an account?" msgstr "پہلے سے اکاؤنٹ ہے؟" msgid "Recover password" msgstr "پاس ورڈ بازیافت کریں۔" msgid "Username or Email address" msgstr "استعمال کنندہ کا نام یا ای میل پتہ" msgid "Forgot password?" msgstr "پاسورڈ بھول گے؟" msgid "Don't have an account?" msgstr "اکاؤنٹ نہیں ہے؟" msgid "Dashboard" msgstr "ڈیش بورڈ" msgid "Welcome to your account!" msgstr "آپ کے اکاؤنٹ میں خوش آمدید!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "ہیلو %1$s (%2$s نہیں؟ %3$s)! اپنے اکاؤنٹ کے ڈیش بورڈ سے آپ اپنی سبسکرپشنز دیکھ سکتے ہیں اور اپنے اکاؤنٹ کی تفصیلات کا نظم کر سکتے ہیں۔" msgid "Lost Password" msgstr "کھوئے ہوئے پاس ورڈ" msgid "Manage your account details." msgstr "اپنے اکاؤنٹ کی تفصیلات کا نظم کریں۔" msgid "First name" msgstr "پہلا نام" msgid "Last name" msgstr "آخری نام" msgid "Display name" msgstr "ڈسپلے نام" msgid "Current password" msgstr "موجودہ خفیہ لفظ" msgid "(leave blank to leave unchanged)" msgstr "(بغیر تبدیل ہونے کے لیے خالی چھوڑ دیں)" msgid "New password" msgstr "نیا پاس ورڈ" msgid "Confirm new password" msgstr "نئے پاس ورڈ کی توثیق کریں" msgid "Save changes" msgstr "تبدیلیاں محفوظ کرو" msgid "All your subscriptions." msgstr "آپ کی تمام سبسکرپشنز۔" msgid "Plan" msgstr "منصوبہ" msgid "Payment type" msgstr "ادائیگی کی قسم" msgid "Status" msgstr "حالت" msgid "Months" msgstr "مہینے" msgid "Start date" msgstr "شروع کرنے کی تاریخ" msgid "End date" msgstr "آخری تاریخ" msgid "missing plan" msgstr "لاپتہ منصوبہ" msgid "Free" msgstr "مفت" msgid "Active" msgstr "فعال" msgid "Trial" msgstr "مقدمے کی سماعت" msgid "Blocked" msgstr "مسدود" msgid "Closed" msgstr "بند" msgid "Not paid" msgstr "ادائیگی نہیں کی" msgid "Awaiting payment" msgstr "ادائیگی کے منتظر" msgid "Subscription info" msgstr "رکنیت کی معلومات" msgid "ID" msgstr "آئی ڈی" msgid "Name" msgstr "نام" msgid "Company name" msgstr "کمپنی کا نام" msgid "VAT" msgstr "VAT" msgid "Address" msgstr "پتہ" msgid "City" msgstr "شہر" msgid "Country/State" msgstr "ملک/ریاست" msgid "Email" msgstr "ای میل" msgid "Postal code" msgstr "ڈاک کامخصوص نمبر" msgid "Direct bank transfer details" msgstr "براہ راست بینک ٹرانسفر کی تفصیلات" msgid "Account name" msgstr "کھاتے کا نام" msgid "Account number" msgstr "اکاؤنٹ نمبر" msgid "Bank name" msgstr "بینک کا نام" msgid "Routing number" msgstr "رہنما عدد" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "ہدایات" msgid "No subscription created." msgstr "کوئی رکنیت نہیں بنائی گئی۔" msgid "Choose plan" msgstr "منصوبہ منتخب کریں" msgid "Payment methods" msgstr "ادائیگی کے طریقے" msgid "Total" msgstr "کل" msgid "Period" msgstr "مدت" msgid "Subscription summary" msgstr "رکنیت کا خلاصہ" msgid "Phone" msgstr "فون" msgid "Postcode" msgstr "پوسٹ کوڈ" msgid "County" msgstr "کاؤنٹی" msgid "Town/City" msgstr "قصبہ/شہر" msgid "Street address" msgstr "گلی کا پتہ" msgid "Country/Region" msgstr "ملک/علاقہ" msgid "VAT Number" msgstr "واٹ نمبر" msgid "(optional)" msgstr "(اختیاری)" msgid "Billing details" msgstr "بل کی تفصیلات" msgid "User information" msgstr "صارف کی معلومات" msgid "It seems that no available payment methods have been configured." msgstr "ایسا لگتا ہے کہ ادائیگی کا کوئی دستیاب طریقہ ترتیب نہیں دیا گیا ہے۔" msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "شکریہ! ہمیں آپ کو یہاں دیکھ کر خوشی ہوئی ہے۔ آپ کی رکنیت جلد ہی چالو ہو جائے گی!" msgid "Our bank details" msgstr "ہمارے بینک کی تفصیلات" msgid "Your subscription details" msgstr "آپ کی رکنیت کی تفصیلات" msgid "View subscription" msgstr "سبسکرپشن دیکھیں" msgid "You have not selected a valid subscription plan." msgstr "آپ نے ایک درست رکنیت کا منصوبہ منتخب نہیں کیا ہے۔" msgid "Field empty" msgstr "میدان خالی" msgid "Empty first name" msgstr "خالی پہلا نام" msgid "Empty last name" msgstr "خالی آخری نام" msgid "Empty country" msgstr "خالی ملک" msgid "Empty address" msgstr "خالی پتہ" msgid "Empty city" msgstr "خالی شہر" msgid "Empty county" msgstr "خالی کاؤنٹی" msgid "Empty postcode" msgstr "خالی پوسٹ کوڈ" msgid "Empty phone" msgstr "خالی فون" msgid "Empty email" msgstr "خالی ای میل" msgid "Email or username empty!" msgstr "ای میل یا صارف نام خالی!" msgid "Pass empty!" msgstr "خالی پاس!" msgid "Username incorrect!" msgstr "صارف نام غلط ہے!" msgid "Invalid Pass Pattern!" msgstr "غلط پاس پیٹرن!" msgid "Please activate your account by following the link sent to your email address." msgstr "براہ کرم اپنے ای میل ایڈریس پر بھیجے گئے لنک پر عمل کرکے اپنا اکاؤنٹ فعال کریں۔" msgid "Resend activation link" msgstr "ایکٹیویشن لنک دوبارہ بھیجیں۔" msgid "In order to have access to this section, you have to activate your account." msgstr "اس سیکشن تک رسائی حاصل کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔" msgid "Email empty!" msgstr "ای میل خالی!" msgid "Username empty!" msgstr "صارف نام خالی ہے!" msgid "Pass pattern incorrect!" msgstr "پاس پیٹرن غلط!" msgid "Retyped pass empty!" msgstr "دوبارہ ٹائپ شدہ پاس خالی!" msgid "Retyped pass exactly!" msgstr "بالکل دوبارہ ٹائپ کیا گیا پاس!" msgid "User already exists!" msgstr "صارف پہلے سے موجود ہے!" msgid "Email already exists!" msgstr "ای میل پہلے سے موجود ہے!" msgid "Your account could not be created." msgstr "آپ کا اکاؤنٹ نہیں بنایا جا سکا۔" msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "اپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔" msgid "User empty!" msgstr "صارف خالی!" msgid "User does not exists!" msgstr "صارف موجود نہیں ہے!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "ایکٹیویشن کا نیا لنک تیار کیا گیا تھا۔ اپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔" msgid "CAPTCHA verification failed!" msgstr "کیپچا کی توثیق ناکام!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "کیپچا صارف سکور ناکام ہو گیا۔ براے مہربانی ہم سے رابطہ کریں!" msgid "Loading" msgstr "لوڈ ہو رہا ہے" msgid "Here are the results for the search:" msgstr "تلاش کے نتائج یہ ہیں:" msgid "Price" msgstr "قیمت" msgid "EXCLUSIVE" msgstr "خصوصی" msgid "Tel:" msgstr "ٹیلی فون:" msgid "Share" msgstr "بانٹیں" msgid "Print" msgstr "پرنٹ کریں" msgid "At" msgstr "پر" msgid "Comments are closed." msgstr "تبصرے بند ہیں." msgid "Payment method" msgstr "ادائیگی کا طریقہ" msgid "You must be logged out to view this page." msgstr "اس صفحہ کو دیکھنے کے لیے آپ کو لاگ آؤٹ کرنا ہوگا۔" msgid "Retyped Pass incorrect!" msgstr "دوبارہ ٹائپ شدہ پاس غلط!" msgid "%s is a required field." msgstr "%s ایک مطلوبہ فیلڈ ہے۔" msgid "Please provide a valid email address." msgstr "براہ کرم ایک درست ای میل ایڈریس فراہم کریں۔" msgid "This email address is already registered." msgstr "یہ ای میل پتہ پہلے سے رجسٹرڈ ہے." msgid "Please fill out all password fields." msgstr "براہ کرم تمام پاس ورڈ فیلڈز کو پُر کریں۔" msgid "Please enter your current password." msgstr "براہ کرم اپنا موجودہ پاس ورڈ درج کریں۔" msgid "Please re-enter your password." msgstr "براہ مہربانی اپنے پاس ورڈ کا دوبارہ اندراج کیجیے." msgid "New passwords do not match." msgstr "نئے پاس ورڈز مماثل نہیں ہیں۔" msgid "Your current password is incorrect." msgstr "آپ کا موجودہ پاس ورڈ غلط ہے۔" msgid "Account details changed successfully." msgstr "اکاؤنٹ کی تفصیلات کامیابی کے ساتھ تبدیل ہوگئیں۔" msgid "A new activation link has been sent to your email address!" msgstr "ایک نیا ایکٹیویشن لنک آپ کے ای میل ایڈریس پر بھیج دیا گیا ہے!" msgid "unlimited" msgstr "لامحدود" msgid "Pay with Stripe" msgstr "پٹی کے ساتھ ادائیگی کریں" msgid "Cancel subscription" msgstr "رکنیت منسوخ کریں" msgid "Please check your email and confirm subscription!" msgstr "براہ کرم اپنا ای میل چیک کریں اور سبسکرپشن کی تصدیق کریں!" msgid "Successfully subscribed!" msgstr "کامیابی سے سبسکرائب کر لیا!" msgid "Successfully unsubscribed!" msgstr "کامیابی سے رکنیت ختم کر دی گئی!" msgid "Enter promo code here" msgstr "یہاں پرومو کوڈ درج کریں۔" msgid "Apply" msgstr "درخواست دیں" msgid "Coupon applied" msgstr "کوپن لاگو" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Uncaught error: کچھ غلط ہو گیا، براہ کرم صفحہ دوبارہ لوڈ کریں اور دوبارہ کوشش کریں!" msgid "The coupon code you entered is invalid" msgstr "آپ کا درج کردہ کوپن کوڈ غلط ہے۔" msgid "The coupon code you entered has reached its usage limit" msgstr "آپ نے جو کوپن کوڈ درج کیا ہے وہ اس کے استعمال کی حد کو پہنچ گیا ہے۔" msgid "The coupon code you entered has expired" msgstr "آپ کے درج کردہ کوپن کوڈ کی میعاد ختم ہو گئی ہے۔" msgid "Coupon name is required !" msgstr "کوپن کا نام درکار ہے!" msgid "Please enter a coupon code first!" msgstr "براہ کرم پہلے ایک کوپن کوڈ درج کریں!" msgid "Invalid" msgstr "غلط" msgid "Applied" msgstr "لاگو" msgid "Remove" msgstr "دور" msgid "Price not set" msgstr "قیمت مقرر نہیں" msgid "Grand Total" msgstr "مجموعی عدد" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "آپ کے پاس پہلے سے ہی سبسکرپشن ہے، لیکن یہ ابھی بھی ادائیگی کے انتظار میں ہے!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "یہ رکنیت منسوخ کر دی گئی ہے اور یہ %end_date% کو ختم ہو جائے گی۔" msgid "Go to checkout" msgstr "چیک آؤٹ پر جائیں۔" msgid "Stripe invoice details" msgstr "پٹی رسید کی تفصیلات" msgid "Stripe subscription details" msgstr "پٹی سبسکرپشن کی تفصیلات" msgid "Current status" msgstr "موجودہ صورت حال" msgid "Initial Invoice Paid" msgstr "ابتدائی رسید کی ادائیگی" msgid "Subscription Create: Initial Invoice Paid" msgstr "سبسکرپشن بنائیں: ابتدائی انوائس ادا کی گئی۔" msgid "Subscription Create: Initial Invoice has been created" msgstr "سبسکرپشن تخلیق: ابتدائی رسید بنائی گئی ہے۔" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "سبسکرپشن تخلیق: ابتدائی انوائس کو حتمی شکل دے دی گئی ہے، اور یہ ادا کرنے کے لیے تیار ہے۔" msgid "Subscription Update: Invoice Paid" msgstr "سبسکرپشن اپ ڈیٹ: رسید کی ادائیگی" msgid "Subscription Renew: Invoice Paid" msgstr "رکنیت کی تجدید: رسید کی ادائیگی" msgid "Subscription Renew: Invoice Finalized" msgstr "رکنیت کی تجدید: انوائس کو حتمی شکل دی گئی۔" msgid "Subscription Renew: Invoice Created" msgstr "سبسکرپشن کی تجدید: انوائس بنائی گئی۔" msgid "Subscription Renew: Invoice Upcoming" msgstr "سبسکرپشن کی تجدید: انوائس آنے والی" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "سبسکرپشن کی میعاد ختم ہو گئی: انوائس کالعدم ہو گئی (پہلی رسید ادا نہیں کی گئی تھی)" msgid "Subscription Deleted" msgstr "رکنیت حذف کر دی گئی" msgid "Subscription Create: Trialing" msgstr "سبسکرپشن تخلیق: ٹرائل کرنا" msgid "Subscription Canceled" msgstr "رکنیت منسوخ کر دی گئی۔" msgid "Subscription Create: Initial Invoice voided" msgstr "سبسکرپشن بنائیں: ابتدائی رسید کالعدم" msgid "Subscription Renew: Invoice voided" msgstr "رکنیت کی تجدید: رسید کالعدم" msgid "Subscription Update: Invoice voided" msgstr "سبسکرپشن اپ ڈیٹ: رسید کالعدم" msgid "Invoice updated" msgstr "انوائس اپ ڈیٹ" msgid "Subscription has been canceled and will end on: " msgstr "سبسکرپشن منسوخ کر دی گئی ہے اور اس پر ختم ہو جائے گی:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "سیٹ اپ کامیاب - آپ نے مستقبل کی ادائیگیوں کے لیے اپنی ادائیگی کا طریقہ کامیابی سے ترتیب دیا ہے۔" msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "سیٹ اپ ناکام ہو گیا - ہمیں افسوس ہے، آپ کی ادائیگی کا طریقہ ترتیب دینے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔" msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "ادائیگی کامیاب - آپ کی تازہ ترین رکنیت کی ادائیگی کامیابی کے ساتھ مکمل ہو گئی۔" msgid "Payment processing - Your latest subscription payment is being processed." msgstr "ادائیگی کی کارروائی - آپ کی سبسکرپشن کی تازہ ترین ادائیگی پر کارروائی کی جا رہی ہے۔" msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "ادائیگی ناکام ہو گئی - ہم معذرت خواہ ہیں، آپ کی ادائیگی پر کارروائی کرنے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔" msgid "Download" msgstr "ڈاؤن لوڈ کریں" msgid "Stripe invoice" msgstr "پٹی رسید" msgid "N/A" msgstr "N / A" msgid "Latest invoice" msgstr "تازہ ترین رسید" msgid "Invoice" msgstr "رسید" msgid "Unpaid subscription." msgstr "بلا معاوضہ رکنیت." msgid "Locked subscription." msgstr "مقفل سبسکرپشن۔" msgid "Invalid subscription." msgstr "غلط رکنیت." msgid "Pay now" msgstr "اب ادا" msgid "Show more info" msgstr "مزید معلومات دکھائیں" msgid "Show less info" msgstr "کم معلومات دکھائیں" msgid "Complete payment" msgstr "مکمل ادائیگی" msgid "or" msgstr "یا" msgid "Setup Payment" msgstr "سیٹ اپ ادائیگی" msgid "Go to Payment" msgstr "ادائیگی پر جائیں" msgid "Alphabetical A -> Z" msgstr "حروف تہجی a -> z" msgid "Oldest posts" msgstr "سب سے پرانی پوسٹس" msgid "Select" msgstr "منتخب کریں" msgid "on" msgstr "پر" msgid "No bookmarked posts" msgstr "کوئی بک مارک پوسٹ نہیں" msgid "Log in With Facebook" msgstr "فیس بک لاگ ان کریں" msgid "Forgot your password? Get help" msgstr "اپنا پاس ورڈ بھول گئے؟ مدد حاصل کرو" msgid "Someone has requested a password reset for the following account:" msgstr "کسی نے درج ذیل اکاؤنٹ کے لیے پاس ورڈ دوبارہ ترتیب دینے کی درخواست کی ہے۔" msgid "Username: %s" msgstr "صارف نام: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "اگر یہ غلطی تھی تو اس ای میل کو نظر انداز کر دیں اور کچھ نہیں ہوگا۔" msgid "To reset your password, visit the following address:" msgstr "اپنا پاس ورڈ دوبارہ ترتیب دینے کے لیے درج ذیل پتے پر جائیں:" msgid "Members" msgstr "اراکین" msgid "Downloads" msgstr "ڈاؤن لوڈ" msgid "inc. TAX" msgstr "inc. ٹیکس" msgid "ex. TAX" msgstr "سابق. ٹیکس" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "آپ کی پوسٹ بنانے کی کوشش کے دوران ایک غیر متوقع خرابی واقع ہو گئی ہے۔ دوبارہ کوشش کریں." msgid "Your post has been successfully created." msgstr "آپ کی پوسٹ کامیابی کے ساتھ بنائی گئی ہے۔" msgid "Your post has been successfully updated." msgstr "آپ کی پوسٹ کو کامیابی سے اپ ڈیٹ کر دیا گیا ہے۔" msgid "An unexpected error has occurred and the mail could not be sent." msgstr "ایک غیر متوقع خرابی پیش آ گئی ہے اور میل نہیں بھیجی جا سکی۔" msgid "Location:" msgstr "مقام:" msgid "The email has been successfully sent." msgstr "ای میل کامیابی سے بھیج دیا گیا ہے۔" msgid "An unexpected error has occurred. Please try again." msgstr "ایک غیر متوقع خرابی واقع ہوئی ہے. دوبارہ کوشش کریں." msgid "Drag and drop or browse" msgstr "گھسیٹیں اور چھوڑیں یا براؤز کریں۔" msgid "Search by keyword..." msgstr "مطلوبہ الفاظ سے تلاش کریں..." msgid "Select parent" msgstr "والدین کو منتخب کریں" msgid "Add new" msgstr "نیا شامل کریں" msgid "Parent" msgstr "والدین" msgid "Select child" msgstr "بچے کو منتخب کریں" msgid "Select sub-child" msgstr "ذیلی بچے کو منتخب کریں۔" msgid "Posted by" msgstr "کی طرف سے پوسٹ کیا گیا" msgid "Overall" msgstr "مجموعی طور پر" msgid "Post review" msgstr "جائزہ پوسٹ کریں" msgid "This field is required!" msgstr "اس کو پر کرنا ضروری ہے!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "آپ کا جائزہ شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔" msgid "Your review has been registered and is awaiting approval." msgstr "آپ کا جائزہ رجسٹر ہو چکا ہے اور منظوری کا انتظار ہے۔" msgid "Submit reply" msgstr "جواب جمع کروائیں" msgid "Enter your reply" msgstr "اپنا جواب درج کریں۔" msgid "Cancel" msgstr "منسوخ" msgid "Some required fields have been left blank." msgstr "کچھ مطلوبہ فیلڈز کو خالی چھوڑ دیا گیا ہے۔" msgid "Please enter a valid email address." msgstr "برائے مہربانی قابل قبول ای میل ایڈریس لکھیں." msgid "The number cannot be lower than" msgstr "تعداد سے کم نہیں ہو سکتی" msgid "The number cannot be higher than" msgstr "تعداد سے زیادہ نہیں ہو سکتی" msgid "Leave a review" msgstr "ایک جائزہ چھوڑ دو" msgid "Submit" msgstr "جمع کرائیں" msgid "Update" msgstr "اپ ڈیٹ" msgid "out of 5" msgstr "5 میں سے" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "آپ جائزوں کی حد تک پہنچ گئے ہیں جو آپ اس مضمون کے لیے جمع کرا سکتے ہیں۔" msgid "Log in to leave a review." msgstr "ایک جائزہ چھوڑنے کے لیے لاگ ان کریں۔" msgid "Enter a title for your review" msgstr "اپنے جائزے کے لیے ایک عنوان درج کریں۔" msgid "Enter your review" msgstr "اپنا جائزہ درج کریں۔" msgid "Review criteria" msgstr "معیار کا جائزہ لیں" msgid "Enter Your Name or Company" msgstr "اپنا نام یا کمپنی درج کریں۔" msgid "Submit review" msgstr "جائزہ جمع کروائیں" msgid "Delete" msgstr "حذف کریں" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "آپ کا جواب شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔" msgid "You have not created any posts." msgstr "آپ نے کوئی پوسٹس نہیں بنائی ہیں۔" msgid "The selected post has been successfully deleted." msgstr "منتخب پوسٹ کو کامیابی سے حذف کر دیا گیا ہے۔" msgid "Rating" msgstr "درجہ بندی" msgid "Title" msgstr "عنوان" msgid "Post image" msgstr "تصویر پوسٹ کریں" msgid "Categories" msgstr "اقسام" msgid "Date" msgstr "تاریخ" msgid "Source title" msgstr "ماخذ کا عنوان" msgid "No rating" msgstr "کوئی درجہ بندی نہیں" msgid "View" msgstr "دیکھیں" msgid "Publish" msgstr "شائع کریں" msgid "Add new post" msgstr "نئی پوسٹ شامل کریں" msgid "Edit post" msgstr "پوسٹ میں ترمیم کریں" msgid "Publish a post" msgstr "ایک پوسٹ شائع کریں" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title% کی حیثیت تبدیل کر دی گئی ہے۔" msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "کیا آپ واقعی %post_title% شائع کرنا چاہتے ہیں؟" msgid "Delete a post" msgstr "ایک پوسٹ کو حذف کریں" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "کیا آپ واقعی %post_title% کو حذف کرنا چاہتے ہیں؟" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% کو کوڑے دان میں ڈال دیا گیا ہے۔" msgid "You do not hold the required priveleges to execute this request." msgstr "آپ کے پاس اس درخواست پر عمل کرنے کے لیے مطلوبہ مراعات نہیں ہیں۔" msgid "No search results." msgstr "تلاش کا کوئی نتیجہ نہیں" msgid "Yes" msgstr "جی ہاں" msgid "No" msgstr "نہیں" msgid "Save" msgstr "محفوظ کریں" msgid "Search for a location" msgstr "ایک مقام تلاش کریں" msgid "Address line" msgstr "پتہ کی ستر" msgid "(Optional)" msgstr "(اختیاری)" msgid "State" msgstr "حالت" msgid "Country" msgstr "ملک" msgid "Create new term" msgstr "نئی اصطلاح بنائیں" msgid "Description" msgstr "تفصیل" msgid "Delete bookmarks" msgstr "بک مارکس کو حذف کریں" msgid "Reset your password" msgstr "آپ کا پاس ورڈ دوبارہ ترتیب دیں" msgid "The password reset key has expired." msgstr "پاس ورڈ دوبارہ ترتیب دینے کی کلید ختم ہو گئی ہے۔" msgid "The password reset key is invalid." msgstr "پاس ورڈ دوبارہ ترتیب دینے کی کلید غلط ہے۔" msgid "New password *" msgstr "نیا پاس ورڈ *" msgid "Repeat new password *" msgstr "نیا پاس ورڈ دہرائیں *" msgid "Save password" msgstr "پاس ورڈ محفوظ کریں" msgid "Your account has been successfully activated!" msgstr "آپ کا اکاؤنٹ کامیابی سے ایکٹیویٹ ہو گیا ہے!" msgid "Your account has already been activated!" msgstr "آپ کا اکاؤنٹ پہلے ہی ایکٹیویٹ ہو چکا ہے!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "درست ایکٹیویشن لنک کے لیے اپنا ای میل چیک کریں۔ یہ لنک غلط ہے۔" msgid "Account activation" msgstr "اکاونٹ ایکٹو کرنا" msgid "Please enter a new password before proceeding." msgstr "براہ کرم آگے بڑھنے سے پہلے نیا پاس ورڈ درج کریں۔" msgid "Please confirm the new password before proceeding." msgstr "براہ کرم آگے بڑھنے سے پہلے نئے پاس ورڈ کی تصدیق کریں۔" msgid "Please make sure that the passwords match." msgstr "براہ کرم یقینی بنائیں کہ پاس ورڈ مماثل ہیں۔" msgid "The password has been reset successfully." msgstr "پاس ورڈ کامیابی سے دوبارہ ترتیب دیا گیا ہے۔" msgid "Manage your billing details." msgstr "اپنی بلنگ کی تفصیلات کا نظم کریں۔" msgid "Profile picture" msgstr "پروفائل تصویر" msgid "Remaining publishing rights." msgstr "باقی اشاعتی حقوق۔" msgid "The number of articles you have left to publish across different post types." msgstr "مضامین کی تعداد جو آپ نے پوسٹ کی مختلف اقسام میں شائع کرنے کے لیے چھوڑی ہے۔" msgid "Bank transfer" msgstr "بینک ٹرانسفر" msgid "Direct Bank Transfer" msgstr "براہ راست بینک ٹرانسفر" msgid "Canceled" msgstr "منسوخ" msgid "Cycle Interval" msgstr "سائیکل وقفہ" msgid "In order to update this filed, you have to activate your account." msgstr "اس فائل کو اپ ڈیٹ کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔" msgid "Cannot process %s field." msgstr "%s فیلڈ پر کارروائی نہیں کر سکتے۔" msgid "Modified date" msgstr "ترمیم شدہ تاریخ" translation/pt_PT.mo000064400000102773150211537140010476 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,`R`i````` ` ``` ```a 2a@aTa"ia aaaa&>bebmbbbb;bDb<'c7dc ccc c ccdd"d4dCFd dddddd d dd e!e(e 1e ?eJeYeoeve&e'eeee e! f-f4f 9f GfUfef#tf'ff ffff gg g!g;gKgQgbgggmgtg g hh/h'8h`hphuhhhhh$h i'iBi Si]ixiiiiiiiiij' j5j 9jFjejkj {jjjk-kZCkZkk l l"l+lE1lXwlPlY!m7{m)m$m)n0,n!]n!n.nn$n*o"@o,co3o&o oop p&p6pEp Tp `pjpzppppppppqq(q1q GqQq fq rq }q qqq qq#qqqr r*rFrZrvrrrrr r rs sssR*s }ssss ss sss tt4tjt 4uBuwuuu uu5uCv9Gvvvvvv vvv vw w0w @w JwTw,iw4wUw/!xQxpxDx(x,x& y(Gy)py(y+y+yz6z KzWz_zuz zzzzz zzZz-*{,X{>{1{!{)|!B|!d|W|#|*}/-}1]}&}.}}9~;~6C~z~ ~~ ~ ~~M~ $ :DYo&@UZi mx Հ%$5J9P/"5;Gq; "1#T x/$Ƀ(;@S5ʄ 2 ,@,m Ʌ م lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: pt_PT %post_title% foi movido para a lixeira.%curr% de %total%%s é um campo obrigatório.(opcional)(deixe em branco para não alterar)(opcional)1 COMENTÁRIO7 dias popularesUm novo link de ativação foi enviado para seu endereço de e-mail!Uma senha será enviada por e-mail para você.SOBRE NÓSSobre mimAtivação de contaDetalhes da contaDetalhes da conta alterados com sucesso.Nome da contaNúmero de contaConfigurações de ContaReconhecimento é necessário!AtivoAdicionar novoAdicionar nova postagemMoradaLinha de endereçoEndereçosTodosTodos os tempos popularesTodas as suas assinaturas.Alfabético a -> zJá tem uma conta?Ocorreu um erro inesperado ao tentar criar sua postagem. Por favor, tente novamente.Ocorreu um erro inesperado e o e-mail não pôde ser enviado.Ocorreu um erro inesperado. Por favor, tente novamente.AplicadoAplicarArquivosTem certeza de que deseja excluir %post_title%?Tem certeza de que deseja publicar %post_title%?NoDólar australianoAutorAutoresAguardando pagamentoVoltarNome do bancoTransferência bancáriaBic / swiftDetalhes de faturamentoBloqueadoSiteMoeda brasileiraLibra britânicaLev BúlgaroPorPor pontuação de reviewFalha na pontuação do usuário captcha. Por favor, entre em contato conosco!Falha na verificação do captcha!FecharCOMENTÁRIOSDólar canadenseCancelarCancelar respostaCancelar assinaturaCanceladoNão é possível processar o campo %s.CategoriasVerifique seu e-mail para obter o link de ativação correto. este link é inválido.Renminbi chinês yuanEscolha o planoCidadeFechadoComentário:Comentários estão fechados.Nome da empresaCompletar o pagamentoConfirme a nova senhaContatoContinuePaísPaís / regiãoPaís / estadoMunicípioCupom aplicadoO nome do cupom é obrigatório!Crie a sua conta aquiCriar novo termoKuna croataSenha atualStatus atualIntervalo de cicloKoruna República ChecaArquivos diários:Coroa dinamarquesaPainel de controleDataExcluirExcluir uma postagemExcluir favoritosDescriçãoTransferência bancária diretaDetalhes de transferência bancária diretaNome em ExibiçãoNão tem uma conta?DownloadTransferênciasArraste e solte ou navegueSeleções do editorMAIS NOTÍCIASEXCLUSIVOEditarEditar postO emailEndereço de e-mailEndereço de email não encontrado!E-mail já existe!E-mail vazio!E-mail incorreto!E-mail ou nome de usuário vazio!E-mail ou nome de usuário incorreto!E-mail:Endereço vazioCidade vaziaPaís vazioCondado vazioEmail vazioPrimeiro nome vazioSobrenome vazioTelefone vazioCódigo postal vazioData finalDigite seu nome ou empresaInsira um título para sua avaliaçãoInsira o código promocional aquiDigite sua respostaInsira sua avaliaçãoPaíses membros do euroSIGA-NOSFãsDestaquePosts em destaqueCampo vazioPrimeiro nomeSeguirSiga-nos no instagramSeguidoresEsqueceu a senha?Esqueceu sua senha?Esqueceu sua senha? obter ajudaGratuitamenteEntre em sua conta.Vá para o pagamentoVá para a finalização da compraTotal geralPÁGINA INICIALOláOlá% 1 $ s (não% 2 $ s?% 3 $ s)! a partir do painel de sua conta, você pode visualizar suas assinaturas e gerenciar os detalhes de sua conta.Aqui estão os resultados da pesquisa:InícioDólar de Hong KongForint húngaroIBANIDENTIFICAÇÃOSe isso foi um erro, ignore este e-mail e nada acontecerá.Se você não gostou dos resultados, por favor, faça outra pesquisaPara ter acesso a esta seção, você deve ativar sua conta.Para atualizar este campo, você deve ativar sua conta.Rupia indianaRupia indonésiaFatura inicial pagaInstruçõesInválidoPadrão de passagem inválido!Assinatura inválida.FaturaFatura atualizadaShekel israelenseParece que nenhum método de pagamento disponível foi configurado.Yen japonêsJunte-seCoreano (sul) wonARTIGOS MAIS RECENTESDEIXE UMA RESPOSTAENTRARúltimo nomeMais recentesúltima faturaDeixe um comentárioCurtirCurtidasCarregar maisCarregandoLocalização:Assinatura bloqueada.Log inEntrar com o FacebookFaça login para deixar um comentárioFaça login para deixar um comentário.Faça login na sua contaSairSair?Logado comoLogado como% s. Edite seu perfil.EntrarSairSenha perdidaMais do autorMAIS HISTÓRIASRinggit malaioGerenciar os detalhes de sua conta.Gerenciar seus detalhes de faturamento.MembrosPeso mexicanoData modificadaData modificada:Arquivos Mensais:MesesMaisMais popularMinha conta de assinaturaMinha conta wooN / DSEM COMENTÁRIOSNomeNome:Dólar da Nova ZelândiaNovo link de ativação foi gerado. verifique seu e-mail (caixa de entrada ou pasta de spam) para validar sua conta.Nova SenhaNova Senha *Novas senhas não combinam.PróximoAvançar (tecla de seta para a direita)Próximo artigoNãoNenhuma postagem marcadaNão há posts para exibirNenhum produto no carrinho.Sem avaliaçãoSem resultadosNenhum resultado para a sua pesquisaNenhum resultado de pesquisa.Nenhuma assinatura criada.Coroa norueguesaNão pagoNOSSOS POSTS MAIS RECENTESPONTUAÇÃO GERALPostagens mais antigasOoops... Erro 404OrdensNossos dados bancáriosGeralCATEGORIA POPULARPOSTS MAIS POPULARESPOSTSPáginaPágina %CURRENT_PAGE% de %TOTAL_PAGES%PaiPasse vazio!Padrão de passagem incorreto!SenhaRecuperar senhaPague agoraPague com tarjaFalha no pagamento - lamentamos, ocorreu um erro ao processar seu pagamento. tente novamente com uma forma de pagamento diferente.Forma de pagamentoMétodos de PagamentoProcessamento de pagamento - o último pagamento da sua assinatura está sendo processado.Pagamento bem sucedido - o último pagamento da sua assinatura foi concluído com sucesso.Tipo de pagamentoPeríodoPeso filipinoTelefonePlanoAtive sua conta seguindo o link enviado para seu endereço de e-mail.Por favor, verifique no seu e-mails (Lixeira ou pasta de spam), a senha já foi enviada.Verifique seu e-mail (caixa de entrada ou pasta de spam) para validar sua conta.Por favor, verifique seu e-mail (pasta de índice ou spam), a senha foi enviado para lá.Por favor verifique seu e-mail e confirme a assinatura!Confirme a nova senha antes de continuar.Insira um código de cupom primeiro!Digite uma nova senha antes de continuar.Por favor insira um endereço de e-mail válido.Por favor digite seu comentário!Por favor digite sua senha atual.Por favor, digite seu endereço de e-mail aquiPor favor, digite seu nome aquiPor favor preencha um email válido.Por favor preencha um endereço de e-mail.Preencha todos os campos de senha.Certifique-se de que as senhas correspondam.Por favor, forneça um endereço de e-mail válido.Por favor, digite sua senha novamente.Aguarde...Zloty polonêsPostar ComentárioPostar imagemPostar revisãoCódigo postalCódigo postalPostado porPosts porPosts com a tagAnteriorAnterior (Seta a esquerda )Artigo anteriorPreçoPreço não definidoImprimirPolítica de PrivacidadeCategorias de ProdutosEtiquetas de produtoFoto do perfilPublicarPublicar uma postagemREGISTRARARTIGOS RELACIONADOSREVER GERALAleatórioAvaliaçãoLeia maisRecuperar senhaRecupere sua senhaRegistrarCrie uma contaDireitos de publicação restantes.RemoverRepita a nova senha *Repita a senhaResponderReenviar link de ativaçãoRedefinir sua senhaRedigitado passe incorreto!Passe redigitado vazio!Passe redigitado exatamente!Critérios de revisãoRomena (novo) leuNúmero de roteamentoRublo russoCOMPARTILHARFONTESUMÁRIOSalvarSalvar mudançasSalve meu nome, e-mail e site neste navegador para a próxima vez que eu comentar.Salvar senhaBuscarPesquise por palavra-chave...Procure um localSelecioneSelecione filhoSelecione paiSelecione subfilhoEnviar meu passeEnviar minha senhaConfigurar pagamentoFalha na configuração. Lamentamos, mas ocorreu um erro ao configurar sua forma de pagamento. tente novamente com uma forma de pagamento diferente.Configuração bem-sucedida - você configurou com sucesso sua forma de pagamento para pagamentos futuros.CompartilhadoCompartilhar no FacebookMostrar menos informaçõesMostrar mais informaçõesEntrarEntrar / CadastrarInscrever-seDólar de SingapuraAlguns campos obrigatórios foram deixados em branco.Alguém solicitou uma redefinição de senha para a seguinte conta:Desculpe, mas a página que está à procura não existe.Título da FonteRand sul-africanoData de inícioEstadoStatusEndereçoFatura de faixaDetalhes da fatura de faixaDetalhes da assinatura de stripeEnviarEnviar respostaEnviar revisãoInscreverInscritosAssinatura canceladaCriação de assinatura: fatura inicial pagaCriação de assinatura: a fatura inicial foi criadaCriação de assinatura: a fatura inicial foi finalizada e está pronta para ser pagaCriação de assinatura: fatura inicial anuladaCriação de assinatura: testeAssinatura excluídaAssinatura expirou: fatura anulada (a primeira fatura não foi paga)Renovação de assinatura: fatura criadaRenovação de assinatura: fatura finalizadaRenovação de assinatura: fatura pagaRenovação de assinatura: fatura futuraRenovação de assinatura: fatura anuladaAtualização de assinatura: fatura pagaAtualização de assinatura: fatura anuladaA assinatura foi cancelada e terminará em:Informação de assinaturaResumo da assinaturaAssinaturasSucessoInscrito com sucesso!Cancelado com Sucesso!Coroa suecaFranco suíçoTAGSTagTagsTelefone:Baht tailandêsObrigada! Estamos muito satisfeitos em vê-lo aqui. sua assinatura será ativada em breve!O conteúdo de %url% não pode ser carregado.O código do cupom que você digitou expirouO código do cupom que você digitou atingiu seu limite de usoO código do cupom que você digitou é inválidoO e-mail foi enviado com sucesso.A imagem #%curr% não pode ser carregada.O número não pode ser maior queO número não pode ser menor queO número de artigos que você ainda tem para publicar em diferentes tipos de postagem.A senha foi redefinida com sucesso.A chave de redefinição de senha expirou.A chave de redefinição de senha é inválida.A postagem selecionada foi excluída com sucesso.O status de %post_title% foi alterado.Este endereço de e-mail já está registrado.Este campo é obrigatório!Esta assinatura foi cancelada e terminará em %end_date%.TítuloPara redefinir sua senha, visite o seguinte endereço:TotalCidade CidadeÚltimas NotíciasJulgamentoLira turcaTweetErro não detectado: algo deu errado, recarregue a página e tente novamente!Dolar dos Estados UnidosAssinatura não paga.AtualizarUsuário já existe!Usuário não existe!Usuário vazio!Informação do usuárioUsuário ou e-mail já existe!Usuário ou senha incorreta!Nome do usuárioNome de usuário vazio!Nome de usuário incorreto!Nome de Usuário ou Endereço de EmailNome de usuário: %sCUBANúmero de IVAVIAVisualizarVer todos os artigos emVer todos os resultadosVer assinaturaSite:Bem-vindo à sua conta!Bem vinda!Bem-vindo! Entre na sua contaBem vinda! registre-se para uma contaArquivos anuais:SimVocê já tem uma assinatura, mas ela ainda está esperando para ser paga!Você pode ir paraVocê não possui os privilégios necessários para executar esta solicitação.Você digitou um endereço de e-mail incorreto!Você não criou nenhuma postagem.Você não selecionou um plano de assinatura válido.Você atingiu o limite de avaliações que pode enviar para este artigoVocê deve estar desconectado para visualizar esta página.Sua conta não pôde ser criada.Sua conta já foi ativada!Sua conta foi ativada com sucesso!Seu comentário aguarda moderaçãoSua senha atual está incorreta.Sua senha foi redefinida, verifique seu e-mail.Sua postagem foi criada com sucesso.Sua postagem foi atualizada com sucesso.Sua resposta foi publicada. atualize a página para vê-la.O seu comentário foi publicado. atualize a página para vê-la.Sua avaliação foi registrada e aguarda aprovação.Detalhes da sua assinaturaex. impostoInc. impostoplano faltandodeve conter pelo menos 6 caracteres de comprimentodeve conter pelo menos uma minúscula (a..z)deve conter pelo menos uma caixa alta (a..z)desobreoude 5resultados da buscailimitadovisualizaçõesseu e-mailsua senhaseu usuáriotranslation/ta_LK.po000064400000164313150211537140010443 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ta_LK\n" msgid "View all results" msgstr "எல்லா முடிவுகளையும் காண்க" msgid "No results" msgstr "முடிவுகள் இல்லை" msgid "Home" msgstr "முகப்பு" msgid "CLOSE" msgstr "வெளியேறு" msgid "Page" msgstr "பக்கம்" msgid "All" msgstr "அனைத்தும்" msgid "By" msgstr "மூலம்" msgid "Load more" msgstr "மேலும் ஏற்றுக" msgid "View all posts in" msgstr "உள்ள அனைத்துச் செய்திகளையும் பார்க்க" msgid "Tags" msgstr "குறிச்சொற்கள்" msgid "Previous article" msgstr "முந்தைய கட்டுரை" msgid "Next article" msgstr "அடுத்த கட்டுரை" msgid "Authors" msgstr "எழுத்தாளர்கள்" msgid "Author" msgstr "எழுத்தாளர்" msgid "RELATED ARTICLES" msgstr "தொடர்புடைய கட்டுரைகள்" msgid "MORE FROM AUTHOR" msgstr "ஆசிரியரிடமிருந்து மிகவும்" msgid "VIA" msgstr "மூலமாக" msgid "SOURCE" msgstr "மற்ற ஆதாரங்கள்" msgid "TAGS" msgstr "குறிகள்" msgid "SHARE" msgstr "பகிர்ந்து" msgid "Continue" msgstr "தொடர்க" msgid "Read more" msgstr "மேலும் வாசிக்க" msgid "Name:" msgstr "பெயர்:" msgid "Email:" msgstr "மின்னஞ்சல்:" msgid "Website:" msgstr "வலைத்தளம்:" msgid "Comment:" msgstr "கருத்து:" msgid "LEAVE A REPLY" msgstr "ஒரு பதிலை விடவும்" msgid "Post Comment" msgstr "கருத்து தெரிவிக்க" msgid "Cancel reply" msgstr "பதில் ரத்து" msgid "Reply" msgstr "பதிலளிக்க" msgid "Log in to leave a comment" msgstr "ஒரு கருத்தை விட உள் நுழையவும்" msgid "NO COMMENTS" msgstr "கருத்துகள் இல்லை" msgid "1 COMMENT" msgstr "1 கருத்து" msgid "COMMENTS" msgstr "கருத்துக்கள்" msgid "REVIEW OVERVIEW" msgstr "சி.ஆர்.டி. கண்ணோட்டம்" msgid "SUMMARY" msgstr "சுருக்கமான விபரம்" msgid "OVERALL SCORE" msgstr "ஒட்டுமொத்த ஸ்கோர்" msgid "Ooops... Error 404" msgstr "அச்சச்சோ ... 404 பிழை" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "மன்னிக்கவும், நீங்கள் தேடும் பக்கம் இல்லை." msgid "You can go to the" msgstr "நீங்கள் செல்லலாம்" msgid "HOMEPAGE" msgstr "முகப்பு பக்கம்" msgid "OUR LATEST POSTS" msgstr "எங்கள் சமீபத்திய இடுகைகள்" msgid "Posts by" msgstr "இடுகைகள் மூலம்" msgid "POSTS" msgstr "இடுகைகள்" msgid "Posts tagged with" msgstr "இடுகைகளுடன் குறியிடபட்டுவிட்டது" msgid "Tag" msgstr "குறிச்சொல்" msgid "Daily Archives:" msgstr "தினசரி தொகுப்புகள்:" msgid "Monthly Archives:" msgstr "மாதாந்திர தொகுப்புகள்:" msgid "Yearly Archives:" msgstr "வருடாந்திர தொகுப்புகள்:" msgid "Archives" msgstr "தொகுப்புகள்" msgid "LATEST ARTICLES" msgstr "சமீபத்திய கட்டுரைகள்" msgid "search results" msgstr "தேடல் முடிவுகள்" msgid "Search" msgstr "தேடல்" msgid "If you're not happy with the results, please do another search" msgstr "நீங்கள் முடிவுகளள் மகிழ்ச்சியாக இல்லை என்றால், தயவுசெய்த மற்றொரு தேடலை செய்யவும்" msgid "Contact us" msgstr "எங்களை தொடர்பு கொள்ளுங்கள்" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "பக்கம்%தற்போதைய பக்கம்% இன் மொத்த பக்கங்கள்%" msgid "Next" msgstr "அடுத்த" msgid "Prev" msgstr "முன்" msgid "No results for your search" msgstr "உங்கள் தேடல் க்கான முடிவுகள் ஏதுமில்லை" msgid "No posts to display" msgstr "பதிவுகள் காண்பிக்க இல்லை" msgid "LOG IN" msgstr "உள்நுழைக" msgid "Sign in / Join" msgstr "உள்நுழையவும் / சேரவும்" msgid "Log In" msgstr "உள்நுழைய" msgid "REGISTER" msgstr "பதிவு" msgid "Send My Pass" msgstr "என் பாஸ் அனுப்பவும்" msgid "Forgot your password?" msgstr "உங்கள் கடவுச்சொல்லை மறந்து விட்டீர்களா?" msgid "Please wait..." msgstr "தயவு செய்து காத்திருக்கவும் …" msgid "User or password incorrect!" msgstr "பயனர் அல்லது கடவுச்சொல் தவறானது!" msgid "Email or username incorrect!" msgstr "மின்னஞ்சல் அல்லது பயனர் பெயர் தவறானது!" msgid "Email incorrect!" msgstr "மின்னஞ்சல் தவறானது!" msgid "User or email already exists!" msgstr "பயனர் அல்லது மின்னஞ்சல் ஏற்கனவே உள்ளது!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கவும்(குறியீடு அல்லது ஸ்பேம் கோப்புறை) கடவுச்சொல் அனுப்பப்பட்டது." msgid "Email address not found!" msgstr "மின்னஞ்சல் முகவரி காணப்படவில்லை!" msgid "Your password is reset, check your email." msgstr "உங்கள் கடவுச்சொல் மீட்டமைக்கப்பட்டது, உங்கள் மின்னஞ்சல் சரிபார்க்கவும்." msgid "Welcome! Log into your account" msgstr "வரவேற்கிறோம்! உங்கள் கணக்கில் உள்நுழைவு" msgid "Register for an account" msgstr "ஒரு கணக்கை பதிவு செய்யவும்" msgid "Recover your password" msgstr "உங்கள் கடவுச்சொல்லை மீட்டெடுக்கவும்" msgid "your username" msgstr "உங்கள் பயனர் பெயர்" msgid "your password" msgstr "உங்கள் கடவுச்சொல்" msgid "your email" msgstr "உங்கள் மின்னஞ்சல்" msgid "A password will be e-mailed to you." msgstr "ஒரு கடவுச்சொல்லை உங்களுக்கு மின்னஞ்சல் மூலம் அனுப்பப்படும்." msgid "Logout" msgstr "வெளியேறு" msgid "Like" msgstr "லைக்" msgid "Fans" msgstr "ரசிகர்கள்" msgid "Follow" msgstr "பின்பற்றவும்" msgid "Followers" msgstr "பின்பற்றுபவர்கள்" msgid "Subscribe" msgstr "குழுசேர்" msgid "Subscribers" msgstr "சந்தாதாரர்கள்" msgid "MORE STORIES" msgstr "இன்னும் கதைகள்" msgid "Latest" msgstr "சமீபத்திய" msgid "Featured posts" msgstr "சிறப்பு பதிவுகள்" msgid "Most popular" msgstr "மிகவும் பிரபலமான" msgid "7 days popular" msgstr "7 நாட்கள் பிரபலமான" msgid "By review score" msgstr "விமர்சனம் ஸ்கோர் மூலம்" msgid "Random" msgstr "ராண்டம்" msgid "Trending Now" msgstr "இப்போது பிரபலமாகும்" msgid "POPULAR CATEGORY" msgstr "பிரபலமான வகை" msgid "EVEN MORE NEWS" msgstr "இன்னும் அதிக செய்திகள்" msgid "Previous (Left arrow key)" msgstr "முந்தைய (இடது அம்புக்குறி விசையை)" msgid "Next (Right arrow key)" msgstr "அடுத்து (வலது அம்பு விசை)" msgid "%curr% of %total%" msgstr "%curr% இன் %total%" msgid "The content from %url% could not be loaded." msgstr "உள்ளடக்கத்தை இருந்து %url% இருந்து ஏற்ற முடியவில்லை." msgid "The image #%curr% could not be loaded." msgstr "படம் #%curr% ஏற்ற முடியவில்லை." msgid "Blog" msgstr "வலைப்பதிவு" msgid "Share on Facebook" msgstr "Facebook இல் பகிர்ந்துகொல்லவும்" msgid "Tweet on Twitter" msgstr "Twitter இல் ட்வீட் செய்யவும்" msgid "EDITOR PICKS" msgstr "ஆசிரியர் தேர்வு" msgid "POPULAR POSTS" msgstr "பிரபலமான பதிவுகள்" msgid "FOLLOW US" msgstr "நம்மை பின்பற்ற" msgid "ABOUT US" msgstr "எங்களை பற்றி" msgid "More" msgstr "மேலும்" msgid "Featured" msgstr "சிறப்பு" msgid "All time popular" msgstr "பிரபலமான அனைத்து நேரம்" msgid "Likes" msgstr "விருப்பு" msgid "Register" msgstr "பதிவு" msgid "of" msgstr "என்ற" msgid "Euro Member Countries" msgstr "யூரோ உறுப்பு நாடுகள்" msgid "Your comment is awaiting moderation" msgstr "உங்கள் கருத்துரை காத்திருக்கிறது உள்ளது" msgid "Follow us on Instagram" msgstr "Instagram நம்மை பின்பற்ற" msgid "Back" msgstr "மீண்டும்" msgid "Sign in" msgstr "உள்நுழைய" msgid "Sign up" msgstr "பதிவு" msgid "Join" msgstr "சேர" msgid "Welcome!" msgstr "வரவேற்பு!" msgid "Log into your account" msgstr "உங்கள் கணக்கில் உள்நுழைய" msgid "Password recovery" msgstr "கடவுச்சொல் மீட்பு" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "உங்கள் மின்னஞ்சல் (குறியீட்டு அல்லது ஸ்பேம் கோப்புறை) சரிபார்க்கவும், கடவுச்சொல்லை அங்கு அனுப்பப்பட்டான்." msgid "Australian Dollar" msgstr "ஆஸ்திரேலிய டாலர்" msgid "Bulgarian Lev" msgstr "பல்கேரியன் லெவ்" msgid "Brazilian Real" msgstr "பிரேசிலிய உண்மையான" msgid "Canadian Dollar" msgstr "கனடா டாலர்" msgid "Swiss Franc" msgstr "சுவிஸ் பிராங்க்" msgid "Chinese Yuan Renminbi" msgstr "சீன யுவான் ரென்மின்பி" msgid "Czech Republic Koruna" msgstr "செக் குடியரசு கொருனா" msgid "Danish Krone" msgstr "டானிஷ் க்ரோன்" msgid "British Pound" msgstr "பிரிட்டிஷ் பவுண்ட்" msgid "Hong Kong Dollar" msgstr "ஹாங்காங் டாலர்" msgid "Croatian Kuna" msgstr "குரோஷியன் குனா" msgid "Hungarian Forint" msgstr "ஹங்கேரியன் ஃபோரின்ட்" msgid "Indonesian Rupiah" msgstr "இந்தோனேசிய ரூபாவின்" msgid "Israeli Shekel" msgstr "இஸ்ரேல் சேக்கல்" msgid "Indian Rupee" msgstr "இந்திய ரூபாயின் மதிப்பு" msgid "Japanese Yen" msgstr "ஜப்பனீஸ் யென்" msgid "Korean (South) Won" msgstr "கொரியன் (தென்) வெற்றி" msgid "Mexican Peso" msgstr "மெக்சிகன் பெசோ" msgid "Malaysian Ringgit" msgstr "மலேசிய ரிங்கிட்" msgid "Norwegian Krone" msgstr "நார்வேஜியன் க்ரோன்" msgid "New Zealand Dollar" msgstr "நியூசிலாந்து டாலர்" msgid "Philippine Peso" msgstr "பிலிப்பைன்ஸ் பேசோ" msgid "Polish Zloty" msgstr "போலந்து ஜூலுட்டி" msgid "Romanian (New) Leu" msgstr "ரோமானியம் (புதிய) Leu" msgid "Russian Ruble" msgstr "ரஷியன் ரூபிள்" msgid "Swedish Krona" msgstr "ஸ்வீடிஷ் குரோனா" msgid "Singapore Dollar" msgstr "சிங்கப்பூர் டாலர்" msgid "Thai Baht" msgstr "தாய் பட்" msgid "Turkish Lira" msgstr "துருக்கிய லிரா" msgid "United States Dollar" msgstr "ஐக்கிய அமெரிக்க டாலர்" msgid "South African Rand" msgstr "தென்னாப்பிரிக்க ராண்ட்" msgid "Privacy Policy" msgstr "தனியுரிமை கொள்கை" msgid "views" msgstr "காட்சிகள்" msgid "Modified date:" msgstr "திருத்தப்பட்ட தேதி:" msgid "Please enter your name here" msgstr "இங்கே உங்கள் பெயரை உள்ளிடவும்" msgid "Please enter your email address here" msgstr "இங்கே உங்கள் மின்னஞ்சல் முகவரியை உள்ளிடவும்" msgid "You have entered an incorrect email address!" msgstr "நீங்கள் தவறான மின்னஞ்சல் முகவரியை உள்ளிட்டுள்ளீர்கள்!" msgid "Please enter your comment!" msgstr "தயவு செய்து உங்கள் கருத்தை உள்ளிடவும்!" msgid "Logged in as" msgstr "உள்நுழைந்துள்ளீர்" msgid "Log out?" msgstr "வெளியேறு?" msgid "Logged in as %s. Edit your profile." msgstr "% s ஆக உள்நுழைந்துள்ளீர்கள். உங்கள் சுயவிவரத்தை திருத்தவும்." msgid "Edit" msgstr "தொகு" msgid "Login" msgstr "உள் நுழை" msgid "Send My Password" msgstr "என் கடவுச்சொல்லை அனுப்பவும்" msgid "Create an account" msgstr "ஒரு கணக்கை உருவாக்க" msgid "Welcome! Register for an account" msgstr "வரவேற்பு! ஒரு கணக்கு பதிவு" msgid "About me" msgstr "என்னை பற்றி" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "அடுத்த முறை நான் கருத்து தெரிவிக்க இந்த உலாவியில் எனது பெயர், மின்னஞ்சல் மற்றும் வலைத்தளத்தை சேமிக்கவும்." msgid "Orders" msgstr "உத்தரவு" msgid "Addresses" msgstr "முகவரிகள்" msgid "Account settings" msgstr "கணக்கு அமைப்புகள்" msgid "Hello" msgstr "வணக்கம்" msgid "No products in the cart." msgstr "வண்டியில் பொருட்கள் இல்லை." msgid "Product categories" msgstr "தயாரிப்பு வகைகள்" msgid "Product tags" msgstr "தயாரிப்பு குறிச்சொற்கள்" msgid "Success" msgstr "வெற்றி" msgid "Acknowledgment is required!" msgstr "அங்கீகாரம் தேவை!" msgid "Please fill in a valid email." msgstr "சரியான மின்னஞ்சலை நிரப்பவும்." msgid "Please fill in an email address." msgstr "மின்னஞ்சல் முகவரியை நிரப்பவும்." msgid "Get into your account." msgstr "உங்கள் கணக்கில் நுழையுங்கள்." msgid "My subscription account" msgstr "எனது சந்தா கணக்கு" msgid "Account details" msgstr "கணக்கு விவரங்கள்" msgid "Subscriptions" msgstr "சந்தாக்கள்" msgid "My woo account" msgstr "என் வூ கணக்கு" msgid "Log out" msgstr "வெளியேறு" msgid "Email address" msgstr "மின்னஞ்சல் முகவரி" msgid "Username" msgstr "பயனர் பெயர்" msgid "Password" msgstr "கடவுச்சொல்" msgid "must contain at least one lower case (a..z)" msgstr "குறைந்தபட்சம் ஒரு சிறிய எழுத்து (a..z) இருக்க வேண்டும்" msgid "must contain at least one upper case (A..Z)" msgstr "குறைந்தபட்சம் ஒரு பெரிய எழுத்து (a..z) இருக்க வேண்டும்" msgid "must contain at least 6 characters in length" msgstr "குறைந்தபட்சம் 6 எழுத்துகள் நீளம் இருக்க வேண்டும்" msgid "Repeat password" msgstr "ரகசிய குறியீட்டை திரும்பச்சொல்" msgid "Already have an account?" msgstr "ஏற்கனவே ஒரு கணக்கு உள்ளதா?" msgid "Recover password" msgstr "கடவுச்சொல்லை மீட்டெடுக்கவும்" msgid "Username or Email address" msgstr "பயனர்பெயர் அல்லது மின்னஞ்சல் முகவரி" msgid "Forgot password?" msgstr "கடவுச்சொல்லை மறந்துவிட்டீர்களா?" msgid "Don't have an account?" msgstr "கணக்கு இல்லையா?" msgid "Dashboard" msgstr "டாஷ்போர்டு" msgid "Welcome to your account!" msgstr "உங்கள் கணக்கிற்கு வரவேற்கிறோம்!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "வணக்கம் %1$s (%2$s அல்லவா? %3$s)! உங்கள் கணக்கு டாஷ்போர்டில் இருந்து உங்கள் சந்தாக்களைப் பார்க்கலாம் மற்றும் உங்கள் கணக்கு விவரங்களை நிர்வகிக்கலாம்." msgid "Lost Password" msgstr "கடவுச்சொல்லை இழந்தது" msgid "Manage your account details." msgstr "உங்கள் கணக்கு விவரங்களை நிர்வகிக்கவும்." msgid "First name" msgstr "முதல் பெயர்" msgid "Last name" msgstr "கடைசி பெயர்" msgid "Display name" msgstr "காட்சி பெயர்" msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" msgid "(leave blank to leave unchanged)" msgstr "(மாறாமல் இருக்க வெறுமையாக விடவும்)" msgid "New password" msgstr "புதிய கடவுச்சொல்" msgid "Confirm new password" msgstr "புதிய கடவு சொல்லை உறுதி செய்" msgid "Save changes" msgstr "மாற்றங்களை சேமியுங்கள்" msgid "All your subscriptions." msgstr "உங்கள் சந்தாக்கள் அனைத்தும்." msgid "Plan" msgstr "திட்டம்" msgid "Payment type" msgstr "கட்டணம் வகை" msgid "Status" msgstr "நிலை" msgid "Months" msgstr "மாதங்கள்" msgid "Start date" msgstr "தொடக்க தேதி" msgid "End date" msgstr "கடைசி தேதி" msgid "missing plan" msgstr "காணாமல் போன திட்டம்" msgid "Free" msgstr "இலவசம்" msgid "Active" msgstr "செயலில்" msgid "Trial" msgstr "விசாரணை" msgid "Blocked" msgstr "தடுக்கப்பட்டது" msgid "Closed" msgstr "மூடப்பட்டது" msgid "Not paid" msgstr "செலுத்தப்படவில்லை" msgid "Awaiting payment" msgstr "பணம் காத்திருக்கிறது" msgid "Subscription info" msgstr "சந்தா தகவல்" msgid "ID" msgstr "ஐடி" msgid "Name" msgstr "பெயர்" msgid "Company name" msgstr "நிறுவனத்தின் பெயர்" msgid "VAT" msgstr "வாட்" msgid "Address" msgstr "முகவரி" msgid "City" msgstr "நகரம்" msgid "Country/State" msgstr "நாடு/மாநிலம்" msgid "Email" msgstr "மின்னஞ்சல்" msgid "Postal code" msgstr "அஞ்சல் குறியீடு" msgid "Direct bank transfer details" msgstr "நேரடி வங்கி பரிமாற்ற விவரங்கள்" msgid "Account name" msgstr "கணக்கின் பெயர்" msgid "Account number" msgstr "கணக்கு எண்" msgid "Bank name" msgstr "வங்கி பெயர்" msgid "Routing number" msgstr "வழித்தட எண்" msgid "IBAN" msgstr "ஐபான்" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "அறிவுறுத்தல்கள்" msgid "No subscription created." msgstr "சந்தா எதுவும் உருவாக்கப்படவில்லை." msgid "Choose plan" msgstr "திட்டத்தை தேர்வு செய்யவும்" msgid "Payment methods" msgstr "பணம் செலுத்தும் முறைகள்" msgid "Total" msgstr "மொத்தம்" msgid "Period" msgstr "காலம்" msgid "Subscription summary" msgstr "சந்தா சுருக்கம்" msgid "Phone" msgstr "தொலைபேசி" msgid "Postcode" msgstr "அஞ்சல் குறியீடு" msgid "County" msgstr "மாவட்டம்" msgid "Town/City" msgstr "நகரம்/நகரம்" msgid "Street address" msgstr "தெரு முகவரி" msgid "Country/Region" msgstr "நாடு/பகுதி" msgid "VAT Number" msgstr "வாட் எண்" msgid "(optional)" msgstr "(விரும்பினால்)" msgid "Billing details" msgstr "பில்லிங் விவரங்கள்" msgid "User information" msgstr "பயனர் தகவல்" msgid "It seems that no available payment methods have been configured." msgstr "கிடைக்கக்கூடிய கட்டண முறைகள் எதுவும் கட்டமைக்கப்படவில்லை என்று தெரிகிறது." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "நன்றி! உங்களை இங்கு காண்பதில் நாங்கள் மகிழ்ச்சியடைகிறோம். உங்கள் சந்தா விரைவில் செயல்படுத்தப்படும்!" msgid "Our bank details" msgstr "எங்கள் வங்கி விவரங்கள்" msgid "Your subscription details" msgstr "உங்கள் சந்தா விவரங்கள்" msgid "View subscription" msgstr "சந்தாவைப் பார்க்கவும்" msgid "You have not selected a valid subscription plan." msgstr "சரியான சந்தா திட்டத்தை நீங்கள் தேர்ந்தெடுக்கவில்லை." msgid "Field empty" msgstr "வயல் காலி" msgid "Empty first name" msgstr "வெற்று முதல் பெயர்" msgid "Empty last name" msgstr "வெற்று கடைசி பெயர்" msgid "Empty country" msgstr "வெற்று நாடு" msgid "Empty address" msgstr "வெற்று முகவரி" msgid "Empty city" msgstr "வெற்று நகரம்" msgid "Empty county" msgstr "காலி மாவட்டம்" msgid "Empty postcode" msgstr "வெற்று அஞ்சல் குறியீடு" msgid "Empty phone" msgstr "காலி தொலைபேசி" msgid "Empty email" msgstr "வெற்று மின்னஞ்சல்" msgid "Email or username empty!" msgstr "மின்னஞ்சல் அல்லது பயனர் பெயர் காலியாக உள்ளது!" msgid "Pass empty!" msgstr "காலியாக கடந்து செல்லுங்கள்!" msgid "Username incorrect!" msgstr "பயனர் பெயர் தவறானது!" msgid "Invalid Pass Pattern!" msgstr "தவறான பாஸ் முறை!" msgid "Please activate your account by following the link sent to your email address." msgstr "உங்கள் மின்னஞ்சல் முகவரிக்கு அனுப்பப்பட்ட இணைப்பைப் பின்தொடர்ந்து உங்கள் கணக்கைச் செயல்படுத்தவும்." msgid "Resend activation link" msgstr "செயல்படுத்தும் இணைப்பை மீண்டும் அனுப்பவும்" msgid "In order to have access to this section, you have to activate your account." msgstr "இந்த பிரிவை அணுக, உங்கள் கணக்கை நீங்கள் செயல்படுத்த வேண்டும்." msgid "Email empty!" msgstr "மின்னஞ்சல் காலி!" msgid "Username empty!" msgstr "பயனர் பெயர் காலியாக உள்ளது!" msgid "Pass pattern incorrect!" msgstr "கடந்து செல்லும் முறை தவறானது!" msgid "Retyped pass empty!" msgstr "மீண்டும் தட்டச்சு செய்த பாஸ் காலியாக உள்ளது!" msgid "Retyped pass exactly!" msgstr "சரியாக மீண்டும் தட்டச்சு செய்த பாஸ்!" msgid "User already exists!" msgstr "பயனர் ஏற்கனவே இருக்கிறார்!" msgid "Email already exists!" msgstr "மின்னஞ்சல் முன்பே பதிவில் இருக்கிறது!" msgid "Your account could not be created." msgstr "உங்கள் கணக்கை உருவாக்க முடியவில்லை." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "உங்கள் கணக்கைச் சரிபார்க்க உங்கள் மின்னஞ்சலை (இன்பாக்ஸ் அல்லது ஸ்பேம் கோப்புறை) சரிபார்க்கவும்." msgid "User empty!" msgstr "பயனர் காலி!" msgid "User does not exists!" msgstr "பயனர் இல்லை!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "புதிய செயல்படுத்தும் இணைப்பு உருவாக்கப்பட்டது. உங்கள் கணக்கைச் சரிபார்க்க உங்கள் மின்னஞ்சலை (இன்பாக்ஸ் அல்லது ஸ்பேம் கோப்புறை) சரிபார்க்கவும்." msgid "CAPTCHA verification failed!" msgstr "கேப்ட்சா சரிபார்ப்பு தோல்வியடைந்தது!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "கேப்ட்சா பயனர் மதிப்பெண் தோல்வியடைந்தது. தயவு செய்து எங்களை தொடர்பு கொள்ளவும்!" msgid "Loading" msgstr "ஏற்றுகிறது" msgid "Here are the results for the search:" msgstr "தேடலுக்கான முடிவுகள் இதோ:" msgid "Price" msgstr "விலை" msgid "EXCLUSIVE" msgstr "பிரத்தியேகமானது" msgid "Tel:" msgstr "தொலைபேசி:" msgid "Share" msgstr "பகிர்" msgid "Print" msgstr "அச்சு" msgid "At" msgstr "மணிக்கு" msgid "Comments are closed." msgstr "கருத்துகள் மூடப்பட்டுள்ளன." msgid "Payment method" msgstr "கட்டணம் செலுத்தும் முறை" msgid "You must be logged out to view this page." msgstr "இந்தப் பக்கத்தைப் பார்க்க நீங்கள் வெளியேறியிருக்க வேண்டும்." msgid "Retyped Pass incorrect!" msgstr "மீண்டும் தட்டச்சு செய்த பாஸ் தவறானது!" msgid "%s is a required field." msgstr "%s ஒரு தேவையான புலம்." msgid "Please provide a valid email address." msgstr "சரியான மின்னஞ்சல் முகவரியை வழங்கவும்." msgid "This email address is already registered." msgstr "இந்த மின்னஞ்சல் முகவரி ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது." msgid "Please fill out all password fields." msgstr "அனைத்து கடவுச்சொல் புலங்களையும் நிரப்பவும்." msgid "Please enter your current password." msgstr "உங்கள் தற்போதைய கடவுச்சொல்லை உள்ளிடவும்." msgid "Please re-enter your password." msgstr "தயவு செய்து தங்கள் கடவுச்சொல்லை மீண்டும் உள்ளீடுக." msgid "New passwords do not match." msgstr "புதிய கடவுச்சொற்கள் பொருந்தவில்லை." msgid "Your current password is incorrect." msgstr "உங்கள் தற்போதைய கடவுச்சொல் தவறானது." msgid "Account details changed successfully." msgstr "கணக்கு விவரங்கள் வெற்றிகரமாக மாற்றப்பட்டன." msgid "A new activation link has been sent to your email address!" msgstr "உங்கள் மின்னஞ்சல் முகவரிக்கு ஒரு புதிய செயல்படுத்தும் இணைப்பு அனுப்பப்பட்டுள்ளது!" msgid "unlimited" msgstr "வரம்பற்ற" msgid "Pay with Stripe" msgstr "பட்டையுடன் செலுத்துங்கள்" msgid "Cancel subscription" msgstr "சந்தாவை ரத்து செய்" msgid "Please check your email and confirm subscription!" msgstr "தயவுசெய்து உங்கள் மின்னஞ்சலைச் சரிபார்த்து, சந்தாவை உறுதிப்படுத்தவும்!" msgid "Successfully subscribed!" msgstr "வெற்றிகரமாக சந்தா!" msgid "Successfully unsubscribed!" msgstr "வெற்றிகரமாக குழுவிலகப்பட்டது!" msgid "Enter promo code here" msgstr "விளம்பரக் குறியீட்டை இங்கே உள்ளிடவும்" msgid "Apply" msgstr "விண்ணப்பிக்க" msgid "Coupon applied" msgstr "கூப்பன் பயன்படுத்தப்பட்டது" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "கண்டறியப்படாத பிழை: ஏதோ தவறாகிவிட்டது, பக்கத்தை மீண்டும் ஏற்றி மீண்டும் முயற்சிக்கவும்!" msgid "The coupon code you entered is invalid" msgstr "நீங்கள் உள்ளிட்ட கூப்பன் குறியீடு தவறானது" msgid "The coupon code you entered has reached its usage limit" msgstr "நீங்கள் உள்ளிட்ட கூப்பன் குறியீடு அதன் பயன்பாட்டு வரம்பை எட்டிவிட்டது" msgid "The coupon code you entered has expired" msgstr "நீங்கள் உள்ளிட்ட கூப்பன் குறியீடு காலாவதியானது" msgid "Coupon name is required !" msgstr "கூப்பன் பெயர் தேவை!" msgid "Please enter a coupon code first!" msgstr "முதலில் கூப்பன் குறியீட்டை உள்ளிடவும்!" msgid "Invalid" msgstr "செல்லாது" msgid "Applied" msgstr "விண்ணப்பித்தார்" msgid "Remove" msgstr "அகற்று" msgid "Price not set" msgstr "விலை நிர்ணயிக்கப்படவில்லை" msgid "Grand Total" msgstr "பெரும் மொத்தம்" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "உங்களிடம் ஏற்கனவே சந்தா உள்ளது, ஆனால் அது இன்னும் பணம் செலுத்த காத்திருக்கிறது!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "இந்த சந்தா ரத்துசெய்யப்பட்டது, அது %end_date% அன்று முடிவடையும்." msgid "Go to checkout" msgstr "செக்அவுட் செல்ல" msgid "Stripe invoice details" msgstr "பட்டை விலைப்பட்டியல் விவரங்கள்" msgid "Stripe subscription details" msgstr "பட்டை சந்தா விவரங்கள்" msgid "Current status" msgstr "தற்போதைய நிலை" msgid "Initial Invoice Paid" msgstr "ஆரம்ப விலைப்பட்டியல் செலுத்தப்பட்டது" msgid "Subscription Create: Initial Invoice Paid" msgstr "சந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் செலுத்தப்பட்டது" msgid "Subscription Create: Initial Invoice has been created" msgstr "சந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் உருவாக்கப்பட்டது" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "சந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் இறுதி செய்யப்பட்டுள்ளது, மேலும் அது செலுத்த தயாராக உள்ளது" msgid "Subscription Update: Invoice Paid" msgstr "சந்தா புதுப்பிப்பு: விலைப்பட்டியல் செலுத்தப்பட்டது" msgid "Subscription Renew: Invoice Paid" msgstr "சந்தா புதுப்பித்தல்: விலைப்பட்டியல் செலுத்தப்பட்டது" msgid "Subscription Renew: Invoice Finalized" msgstr "சந்தா புதுப்பித்தல்: விலைப்பட்டியல் இறுதி செய்யப்பட்டது" msgid "Subscription Renew: Invoice Created" msgstr "சந்தா புதுப்பித்தல்: விலைப்பட்டியல் உருவாக்கப்பட்டது" msgid "Subscription Renew: Invoice Upcoming" msgstr "சந்தா புதுப்பித்தல்: வரவிருக்கும் விலைப்பட்டியல்" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "சந்தா காலாவதியானது: விலைப்பட்டியல் செல்லாது (முதல் விலைப்பட்டியல் செலுத்தப்படவில்லை)" msgid "Subscription Deleted" msgstr "சந்தா நீக்கப்பட்டது" msgid "Subscription Create: Trialing" msgstr "சந்தா உருவாக்கம்: சோதனை" msgid "Subscription Canceled" msgstr "சந்தா ரத்து செய்யப்பட்டது" msgid "Subscription Create: Initial Invoice voided" msgstr "சந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் செல்லாது" msgid "Subscription Renew: Invoice voided" msgstr "சந்தா புதுப்பித்தல்: விலைப்பட்டியல் செல்லாது" msgid "Subscription Update: Invoice voided" msgstr "சந்தா புதுப்பிப்பு: விலைப்பட்டியல் செல்லாது" msgid "Invoice updated" msgstr "விலைப்பட்டியல் புதுப்பிக்கப்பட்டது" msgid "Subscription has been canceled and will end on: " msgstr "சந்தா ரத்துசெய்யப்பட்டது மற்றும் முடிவடையும் தேதி:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "அமைப்பு வெற்றிகரமாக உள்ளது - எதிர்கால கட்டணங்களுக்கான உங்கள் கட்டண முறையை வெற்றிகரமாக அமைத்துள்ளீர்கள்." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "அமைவு தோல்வியடைந்தது - மன்னிக்கவும், உங்கள் கட்டண முறையை அமைப்பதில் பிழை ஏற்பட்டது. வேறு கட்டண முறையைக் கொண்டு மீண்டும் முயற்சிக்கவும்." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "பணம் செலுத்துதல் வெற்றிகரமாக - உங்கள் சமீபத்திய சந்தா செலுத்துதல் வெற்றிகரமாக முடிந்தது." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "கட்டணச் செயலாக்கம் - உங்கள் சமீபத்திய சந்தா செலுத்துதல் செயலாக்கப்படுகிறது." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "பணம் செலுத்துவதில் தோல்வி - மன்னிக்கவும், உங்கள் கட்டணத்தைச் செயலாக்குவதில் பிழை ஏற்பட்டது. வேறு கட்டண முறையைக் கொண்டு மீண்டும் முயற்சிக்கவும்." msgid "Download" msgstr "பதிவிறக்க Tamil" msgid "Stripe invoice" msgstr "பட்டை விலைப்பட்டியல்" msgid "N/A" msgstr "N/a" msgid "Latest invoice" msgstr "சமீபத்திய விலைப்பட்டியல்" msgid "Invoice" msgstr "விலைப்பட்டியல்" msgid "Unpaid subscription." msgstr "செலுத்தப்படாத சந்தா." msgid "Locked subscription." msgstr "பூட்டப்பட்ட சந்தா." msgid "Invalid subscription." msgstr "தவறான சந்தா." msgid "Pay now" msgstr "இப்போது செலுத்த" msgid "Show more info" msgstr "மேலும் தகவலைக் காட்டு" msgid "Show less info" msgstr "குறைவான தகவலைக் காட்டு" msgid "Complete payment" msgstr "முழுமையான கட்டணம்" msgid "or" msgstr "அல்லது" msgid "Setup Payment" msgstr "அமைப்பு கட்டணம்" msgid "Go to Payment" msgstr "பணம் செலுத்த செல்ல" msgid "Alphabetical A -> Z" msgstr "அகரவரிசை a -> z" msgid "Oldest posts" msgstr "பழமையான பதிவுகள்" msgid "Select" msgstr "தேர்ந்தெடுக்கவும்" msgid "on" msgstr "அன்று" msgid "No bookmarked posts" msgstr "புக்மார்க் செய்யப்பட்ட இடுகைகள் இல்லை" msgid "Log in With Facebook" msgstr "Facebook மூலம் உள்நுழையவும்" msgid "Forgot your password? Get help" msgstr "உங்கள் கடவுச்சொல்லை மறந்து விட்டீர்களா? உதவி பெறு" msgid "Someone has requested a password reset for the following account:" msgstr "பின்வரும் கணக்கிற்கான கடவுச்சொல் மீட்டமைப்பை ஒருவர் கோரியுள்ளார்:" msgid "Username: %s" msgstr "பயனர்பெயர்: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "இது தவறு என்றால், இந்த மின்னஞ்சலைப் புறக்கணிக்கவும், எதுவும் நடக்காது." msgid "To reset your password, visit the following address:" msgstr "உங்கள் கடவுச்சொல்லை மீட்டமைக்க, பின்வரும் முகவரியைப் பார்வையிடவும்:" msgid "Members" msgstr "உறுப்பினர்கள்" msgid "Downloads" msgstr "பதிவிறக்கங்கள்" msgid "inc. TAX" msgstr "இன்க் வரி" msgid "ex. TAX" msgstr "ex. வரி" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "உங்கள் இடுகையை உருவாக்க முயற்சிக்கும்போது எதிர்பாராத பிழை ஏற்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும்." msgid "Your post has been successfully created." msgstr "உங்கள் இடுகை வெற்றிகரமாக உருவாக்கப்பட்டது." msgid "Your post has been successfully updated." msgstr "உங்கள் இடுகை வெற்றிகரமாக புதுப்பிக்கப்பட்டது." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "எதிர்பாராத பிழை ஏற்பட்டது மற்றும் அஞ்சலை அனுப்ப முடியவில்லை." msgid "Location:" msgstr "இடம்:" msgid "The email has been successfully sent." msgstr "மின்னஞ்சல் வெற்றிகரமாக அனுப்பப்பட்டது." msgid "An unexpected error has occurred. Please try again." msgstr "எதிர்பாராத பிழை ஏற்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும்." msgid "Drag and drop or browse" msgstr "இழுத்து விடவும் அல்லது உலாவவும்" msgid "Search by keyword..." msgstr "முக்கிய வார்த்தை மூலம் தேடு..." msgid "Select parent" msgstr "பெற்றோரைத் தேர்ந்தெடுக்கவும்" msgid "Add new" msgstr "புதிதாக சேர்க்கவும்" msgid "Parent" msgstr "பெற்றோர்" msgid "Select child" msgstr "குழந்தை தேர்ந்தெடுக்கவும்" msgid "Select sub-child" msgstr "துணைக் குழந்தையைத் தேர்ந்தெடுக்கவும்" msgid "Posted by" msgstr "பதிவிட்டவர்" msgid "Overall" msgstr "ஒட்டுமொத்த" msgid "Post review" msgstr "மறுஆய்வு" msgid "This field is required!" msgstr "இந்த புலம் தேவை!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "உங்கள் விமர்சனம் வெளியிடப்பட்டது. அதைப் பார்க்க பக்கத்தைப் புதுப்பிக்கவும்." msgid "Your review has been registered and is awaiting approval." msgstr "உங்கள் மதிப்பாய்வு பதிவு செய்யப்பட்டு, ஒப்புதலுக்காகக் காத்திருக்கிறது." msgid "Submit reply" msgstr "பதில் சமர்ப்பிக்க" msgid "Enter your reply" msgstr "உங்கள் பதிலை உள்ளிடவும்" msgid "Cancel" msgstr "ரத்து செய்" msgid "Some required fields have been left blank." msgstr "தேவையான சில புலங்கள் காலியாக விடப்பட்டுள்ளன." msgid "Please enter a valid email address." msgstr "சரியான மின்னஞ்சல் முகவரியை உள்ளிடவும்." msgid "The number cannot be lower than" msgstr "எண்ணிக்கை குறைவாக இருக்க முடியாது" msgid "The number cannot be higher than" msgstr "எண்ணிக்கையை விட அதிகமாக இருக்க முடியாது" msgid "Leave a review" msgstr "ஒரு மதிப்பாய்வை விடுங்கள்" msgid "Submit" msgstr "சமர்ப்பிக்க" msgid "Update" msgstr "மேம்படுத்தல்" msgid "out of 5" msgstr "5 இல்" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "இந்தக் கட்டுரைக்கு நீங்கள் சமர்ப்பிக்கக்கூடிய மதிப்புரைகளின் வரம்பை அடைந்துவிட்டீர்கள்" msgid "Log in to leave a review." msgstr "மதிப்பாய்வு செய்ய உள்நுழைக." msgid "Enter a title for your review" msgstr "உங்கள் மதிப்பாய்விற்கு ஒரு தலைப்பை உள்ளிடவும்" msgid "Enter your review" msgstr "உங்கள் மதிப்பாய்வை உள்ளிடவும்" msgid "Review criteria" msgstr "மதிப்பாய்வு அளவுகோல்கள்" msgid "Enter Your Name or Company" msgstr "உங்கள் பெயர் அல்லது நிறுவனத்தை உள்ளிடவும்" msgid "Submit review" msgstr "விமர்சனத்தை சமர்ப்பிக்கவும்" msgid "Delete" msgstr "அழி" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "உங்கள் பதில் வெளியிடப்பட்டது. அதைப் பார்க்க பக்கத்தைப் புதுப்பிக்கவும்." msgid "You have not created any posts." msgstr "நீங்கள் எந்த இடுகைகளையும் உருவாக்கவில்லை." msgid "The selected post has been successfully deleted." msgstr "தேர்ந்தெடுக்கப்பட்ட இடுகை வெற்றிகரமாக நீக்கப்பட்டது." msgid "Rating" msgstr "மதிப்பீடு" msgid "Title" msgstr "தலைப்பு" msgid "Post image" msgstr "இடுகை படம்" msgid "Categories" msgstr "வகைகள்" msgid "Date" msgstr "தேதி" msgid "Source title" msgstr "மூல தலைப்பு" msgid "No rating" msgstr "மதிப்பீடு இல்லை" msgid "View" msgstr "பார்வை" msgid "Publish" msgstr "வெளியிட" msgid "Add new post" msgstr "புதிய இடுகையைச் சேர்க்கவும்" msgid "Edit post" msgstr "இடுகையைத் திருத்தவும்" msgid "Publish a post" msgstr "ஒரு இடுகையை வெளியிடுங்கள்" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title% இன் நிலை மாற்றப்பட்டுள்ளது." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "%post_title% ஐ நிச்சயமாக வெளியிட விரும்புகிறீர்களா?" msgid "Delete a post" msgstr "ஒரு இடுகையை நீக்கவும்" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "%post_title% ஐ நிச்சயமாக நீக்க விரும்புகிறீர்களா?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% குப்பைக்கு நகர்த்தப்பட்டது." msgid "You do not hold the required priveleges to execute this request." msgstr "இந்த கோரிக்கையை செயல்படுத்த தேவையான சிறப்புரிமைகளை நீங்கள் கொண்டிருக்கவில்லை." msgid "No search results." msgstr "தேடல் முடிவுகள் இல்லை." msgid "Yes" msgstr "ஆம்" msgid "No" msgstr "இல்லை" msgid "Save" msgstr "சேமிக்க" msgid "Search for a location" msgstr "ஒரு இடம் தேட" msgid "Address line" msgstr "முகவரி வரி" msgid "(Optional)" msgstr "(விரும்பினால்)" msgid "State" msgstr "நிலை" msgid "Country" msgstr "நாடு" msgid "Create new term" msgstr "புதிய வார்த்தையை உருவாக்குங்கள்" msgid "Description" msgstr "விளக்கம்" msgid "Delete bookmarks" msgstr "புக்மார்க்குகளை நீக்கு" msgid "Reset your password" msgstr "உங்கள் கடவுச்சொல்லை மீட்டமைக்க" msgid "The password reset key has expired." msgstr "கடவுச்சொல் மீட்டமைப்பு விசை காலாவதியானது." msgid "The password reset key is invalid." msgstr "கடவுச்சொல் மீட்டமைப்பு விசை தவறானது." msgid "New password *" msgstr "புதிய கடவுச்சொல் *" msgid "Repeat new password *" msgstr "புதிய கடவுச்சொல்லை மீண்டும் செய்யவும் *" msgid "Save password" msgstr "கடவுச்சொல்லை சேமிக்கவும்" msgid "Your account has been successfully activated!" msgstr "உங்கள் கணக்கு வெற்றிகரமாக செயல்படுத்தப்பட்டது!" msgid "Your account has already been activated!" msgstr "உங்கள் கணக்கு ஏற்கனவே செயல்படுத்தப்பட்டுள்ளது!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "சரியான செயல்படுத்தும் இணைப்புக்கு உங்கள் மின்னஞ்சலைச் சரிபார்க்கவும். இந்த இணைப்பு தவறானது." msgid "Account activation" msgstr "கணக்கை செயல்படுத்தல்" msgid "Please enter a new password before proceeding." msgstr "தொடர்வதற்கு முன் புதிய கடவுச்சொல்லை உள்ளிடவும்." msgid "Please confirm the new password before proceeding." msgstr "தொடர்வதற்கு முன் புதிய கடவுச்சொல்லை உறுதிப்படுத்தவும்." msgid "Please make sure that the passwords match." msgstr "கடவுச்சொற்கள் பொருந்துமா என்பதை உறுதிப்படுத்தவும்." msgid "The password has been reset successfully." msgstr "கடவுச்சொல் வெற்றிகரமாக மீட்டமைக்கப்பட்டது." msgid "Manage your billing details." msgstr "உங்கள் பில்லிங் விவரங்களை நிர்வகிக்கவும்." msgid "Profile picture" msgstr "சுயவிவர படம்" msgid "Remaining publishing rights." msgstr "மீதமுள்ள வெளியீட்டு உரிமைகள்." msgid "The number of articles you have left to publish across different post types." msgstr "வெவ்வேறு இடுகை வகைகளில் நீங்கள் வெளியிட மீதமுள்ள கட்டுரைகளின் எண்ணிக்கை." msgid "Bank transfer" msgstr "வங்கி பரிமாற்றம்" msgid "Direct Bank Transfer" msgstr "நேரடி வங்கி பரிமாற்றம்" msgid "Canceled" msgstr "ரத்து செய்யப்பட்டது" msgid "Cycle Interval" msgstr "சுழற்சி இடைவெளி" msgid "In order to update this filed, you have to activate your account." msgstr "இதைப் புதுப்பிக்க, உங்கள் கணக்கைச் செயல்படுத்த வேண்டும்." msgid "Cannot process %s field." msgstr "%s புலத்தை செயலாக்க முடியாது." msgid "Modified date" msgstr "மாற்றியமைக்கப்பட்ட தேதி" translation/ro_RO.po000064400000106126150211537140010467 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro_RO\n" msgid "View all results" msgstr "Vezi toate rezultatele" msgid "No results" msgstr "Niciun rezultat" msgid "Home" msgstr "Acasă" msgid "CLOSE" msgstr "ÎNCHIDEȚI" msgid "Page" msgstr "Pagina" msgid "All" msgstr "Toate" msgid "By" msgstr "De către" msgid "Load more" msgstr "Încărcați mai multe" msgid "View all posts in" msgstr "Vedeți toate articolele în" msgid "Tags" msgstr "Etichete" msgid "Previous article" msgstr "Articolul precedent" msgid "Next article" msgstr "Articolul următor" msgid "Authors" msgstr "Autori" msgid "Author" msgstr "Autor" msgid "RELATED ARTICLES" msgstr "ARTICOLE SIMILARE" msgid "MORE FROM AUTHOR" msgstr "DE LA ACELAȘI AUTOR" msgid "VIA" msgstr "VIA" msgid "SOURCE" msgstr "SURSĂ" msgid "TAGS" msgstr "ETICHETE" msgid "SHARE" msgstr "DISTRIBUIȚI" msgid "Continue" msgstr "Continuați" msgid "Read more" msgstr "Citiți mai mult" msgid "Name:" msgstr "Nume:" msgid "Email:" msgstr "Email:" msgid "Website:" msgstr "Website:" msgid "Comment:" msgstr "Comentariu:" msgid "LEAVE A REPLY" msgstr "LĂSAȚI UN MESAJ" msgid "Post Comment" msgstr "Trimiteți comentariu" msgid "Cancel reply" msgstr "Renunțați la răspuns" msgid "Reply" msgstr "Răspundeți" msgid "Log in to leave a comment" msgstr "Autentificați-vă pentru a lăsa un comentariu" msgid "NO COMMENTS" msgstr "NICIUN COMENTARIU" msgid "1 COMMENT" msgstr "1 COMENTARIU" msgid "COMMENTS" msgstr "COMENTARII" msgid "REVIEW OVERVIEW" msgstr "REVEDEȚI PREZENTAREA" msgid "SUMMARY" msgstr "CUPRINS" msgid "OVERALL SCORE" msgstr "SCOR GENERAL" msgid "Ooops... Error 404" msgstr "Upps ... Eroare 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Ne pare rău, dar pagina pe care o cautați nu există." msgid "You can go to the" msgstr "Puteți merge la" msgid "HOMEPAGE" msgstr "HOMEPAGE" msgid "OUR LATEST POSTS" msgstr "ULTIMELE NOASTRE ARTICOLE" msgid "Posts by" msgstr "Articole adaugate de către" msgid "POSTS" msgstr "ARTICOLE" msgid "Posts tagged with" msgstr "Articole etichetate cu" msgid "Tag" msgstr "Etichetă" msgid "Daily Archives:" msgstr "Arhive Zilnice:" msgid "Monthly Archives:" msgstr "Arhive Lunare:" msgid "Yearly Archives:" msgstr "Arhive Anuale:" msgid "Archives" msgstr "Arhive" msgid "LATEST ARTICLES" msgstr "ULTIMELE ARTICOLE" msgid "search results" msgstr "rezultatele căutării" msgid "Search" msgstr "Căutați" msgid "If you're not happy with the results, please do another search" msgstr "Dacă nu sunteți mulțumiți de rezultate, vă rugăm folosiți alt criteriu de căutare" msgid "Contact us" msgstr "Contactați-ne" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Pagina %CURRENT_PAGE% din %TOTAL_PAGES%" msgid "Next" msgstr "Înainte" msgid "Prev" msgstr "Înapoi" msgid "No results for your search" msgstr "Niciun rezultat pentru căutarea dvs" msgid "No posts to display" msgstr "Niciun articol afișat" msgid "LOG IN" msgstr "AUTENTIFICAȚI-VĂ" msgid "Sign in / Join" msgstr "Autentificați-vă / Înregistrați-vă" msgid "Log In" msgstr "Autentificați-vă" msgid "REGISTER" msgstr "ÎNREGISTRAȚI-VĂ" msgid "Send My Pass" msgstr "Trimiteți-mi parola" msgid "Forgot your password?" msgstr "V-ați uitat parola?" msgid "Please wait..." msgstr "Vă rugăm așteptați..." msgid "User or password incorrect!" msgstr "Nume de utilizator sau parola incorectă!" msgid "Email or username incorrect!" msgstr "Email sau nume de utilizator incorect!" msgid "Email incorrect!" msgstr "Email incorect!" msgid "User or email already exists!" msgstr "Nume de utilizator sau email deja existent!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Vă rugăm verificați-vă email-ul (directorul index sau spam), parola v-a fost trimisă într-unul dintre acestea" msgid "Email address not found!" msgstr "Adresa de email nu a fost gasită!" msgid "Your password is reset, check your email." msgstr "Parola dvs a fost resetată, verificați-vă adresa de email." msgid "Welcome! Log into your account" msgstr "Bine ați venit! Autentificați-vă in contul dvs" msgid "Register for an account" msgstr "Inregistrați-vă pentru un cont" msgid "Recover your password" msgstr "Recuperați-vă parola" msgid "your username" msgstr "numele dvs de utilizator" msgid "your password" msgstr "parola dvs" msgid "your email" msgstr "adresa dvs de email" msgid "A password will be e-mailed to you." msgstr "O parola va fi trimisă pe adresa dvs de email." msgid "Logout" msgstr "Ieșire" msgid "Like" msgstr "Îmi place" msgid "Fans" msgstr "Fani" msgid "Follow" msgstr "Conectați-vă" msgid "Followers" msgstr "Cititori" msgid "Subscribe" msgstr "Abonați-vă" msgid "Subscribers" msgstr "Abonați" msgid "MORE STORIES" msgstr "MAI MULTE ARTICOLE" msgid "Latest" msgstr "Ultimele" msgid "Featured posts" msgstr "Articole recomandate" msgid "Most popular" msgstr "Cele mai populare" msgid "7 days popular" msgstr "Cele mai populare din ultimele 7 zile" msgid "By review score" msgstr "După recenzie" msgid "Random" msgstr "Aleator" msgid "Trending Now" msgstr "De Actualitate" msgid "POPULAR CATEGORY" msgstr "CATEGORIE POPULARĂ" msgid "EVEN MORE NEWS" msgstr "ȘI MAI MULTE ȘTIRI" msgid "Previous (Left arrow key)" msgstr "Înainte (Tasta direcționare stânga)" msgid "Next (Right arrow key)" msgstr "Înapoi (Tasta direcționare dreapta)" msgid "%curr% of %total%" msgstr "%curr% din %total%" msgid "The content from %url% could not be loaded." msgstr "Conținutul de la %url% nu poate fi încărcat." msgid "The image #%curr% could not be loaded." msgstr "Imaginea #%curr% nu poate fi încărcată." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Distribuiți pe Facebook" msgid "Tweet on Twitter" msgstr "Distribuiți pe Twitter" msgid "EDITOR PICKS" msgstr "ALEGEREA EDITORULUI" msgid "POPULAR POSTS" msgstr "POSTĂRI POPULARE" msgid "FOLLOW US" msgstr "URMAȚI-NE" msgid "ABOUT US" msgstr "DESPRE NOI" msgid "More" msgstr "Mai mult" msgid "Featured" msgstr "Recomandate" msgid "All time popular" msgstr "Tot timpul populare" msgid "Likes" msgstr "Likes" msgid "Register" msgstr "Înregistrare" msgid "of" msgstr "de" msgid "Euro Member Countries" msgstr "țările membre ale euro" msgid "Your comment is awaiting moderation" msgstr "Comentariul dvs. așteaptă să fie moderat" msgid "Follow us on Instagram" msgstr "Urmați-ne pe Instagram" msgid "Back" msgstr "înapoi" msgid "Sign in" msgstr "Conectare" msgid "Sign up" msgstr "Inscrie-te" msgid "Join" msgstr "A adera" msgid "Welcome!" msgstr "Bine ati venit!" msgid "Log into your account" msgstr "Conecteaza-te la contul tau" msgid "Password recovery" msgstr "Recuperare parola" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Vă rugăm să verificați email-ul (indexul sau spam dosar), parola a fost trimisă acolo." msgid "Australian Dollar" msgstr "Dolar australian" msgid "Bulgarian Lev" msgstr "Leva bulgară" msgid "Brazilian Real" msgstr "Realul brazilian" msgid "Canadian Dollar" msgstr "Dolarul canadian" msgid "Swiss Franc" msgstr "Franc elvețian" msgid "Chinese Yuan Renminbi" msgstr "Yuani renminbi Chineză" msgid "Czech Republic Koruna" msgstr "Koruna Republica Cehă" msgid "Danish Krone" msgstr "Coroane daneze" msgid "British Pound" msgstr "Lira sterlină" msgid "Hong Kong Dollar" msgstr "Dolar Hong Kong" msgid "Croatian Kuna" msgstr "Kuna croată" msgid "Hungarian Forint" msgstr "Forint maghiar" msgid "Indonesian Rupiah" msgstr "Rupie indoneziană" msgid "Israeli Shekel" msgstr "Shekel Israeli" msgid "Indian Rupee" msgstr "Rupie indiană" msgid "Japanese Yen" msgstr "Yeni japonezi" msgid "Korean (South) Won" msgstr "Coreeană (sud), a câștigat" msgid "Mexican Peso" msgstr "Peso mexican" msgid "Malaysian Ringgit" msgstr "Ringitt malaezian" msgid "Norwegian Krone" msgstr "Coroană norvegiană" msgid "New Zealand Dollar" msgstr "Dolar nou zeelanda" msgid "Philippine Peso" msgstr "Peso Philippine" msgid "Polish Zloty" msgstr "Zloți polonezi" msgid "Romanian (New) Leu" msgstr "Română (nou) leu" msgid "Russian Ruble" msgstr "Rubla rusă" msgid "Swedish Krona" msgstr "Coroana suedeză" msgid "Singapore Dollar" msgstr "Dolar singapore" msgid "Thai Baht" msgstr "Baht thai" msgid "Turkish Lira" msgstr "Liră turcească" msgid "United States Dollar" msgstr "Dolarul Statelor Unite" msgid "South African Rand" msgstr "Rand sud-african" msgid "Privacy Policy" msgstr "Politica de confidentialitate" msgid "views" msgstr "vizualizari" msgid "Modified date:" msgstr "Data modificata:" msgid "Please enter your name here" msgstr "Introduceți aici numele dvs." msgid "Please enter your email address here" msgstr "Vă rugăm să introduceți adresa dvs. de e-mail aici" msgid "You have entered an incorrect email address!" msgstr "Ați introdus o adresă de e-mail incorectă!" msgid "Please enter your comment!" msgstr "Vă rugăm să introduceți comentariul dvs.!" msgid "Logged in as" msgstr "Conectat ca" msgid "Log out?" msgstr "Ieșiți?" msgid "Logged in as %s. Edit your profile." msgstr "Conectat ca% s. Editeaza-ti profilul." msgid "Edit" msgstr "Editați | ×" msgid "Login" msgstr "Logare" msgid "Send My Password" msgstr "Trimite parola" msgid "Create an account" msgstr "Creează un cont" msgid "Welcome! Register for an account" msgstr "Bine ati venit! înregistrați-vă pentru un cont" msgid "About me" msgstr "Despre mine" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Salvați numele meu, adresa de e-mail și site-ul web în acest browser pentru data viitoare i comentariu." msgid "My account" msgstr "Contul meu" msgid "Orders" msgstr "Comenzi" msgid "Addresses" msgstr "Adrese" msgid "Account settings" msgstr "Setările contului" msgid "Hello" msgstr "Buna ziua" msgid "No products in the cart." msgstr "Nu există produse în coș." msgid "Product categories" msgstr "Categorii de produse" msgid "Product tags" msgstr "Etichete de produs" msgid "Success" msgstr "Succes" msgid "Acknowledgment is required!" msgstr "Este necesară recunoașterea!" msgid "Please fill in a valid email." msgstr "Vă rugăm să completați un e-mail valid." msgid "Please fill in an email address." msgstr "Vă rugăm să completați o adresă de e-mail." msgid "Get into your account." msgstr "Intra in contul tau." msgid "My subscription account" msgstr "Contul meu de abonament" msgid "Account details" msgstr "Detalii cont" msgid "Subscriptions" msgstr "Abonamente" msgid "My woo account" msgstr "Contul meu woo" msgid "Log out" msgstr "Deconectați-vă" msgid "Email address" msgstr "Adresa de email" msgid "Username" msgstr "Nume de utilizator" msgid "Password" msgstr "Parola" msgid "must contain at least one lower case (a..z)" msgstr "trebuie să conțină cel puțin o literă mică (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "trebuie să conțină cel puțin o literă mare (a..z)" msgid "must contain at least 6 characters in length" msgstr "trebuie să conțină cel puțin 6 caractere lungime" msgid "Repeat password" msgstr "Repeta parola" msgid "Already have an account?" msgstr "Ai deja un cont?" msgid "Recover password" msgstr "Recuperează parola" msgid "Username or Email address" msgstr "Nume de utilizator sau Adresa de email" msgid "Forgot password?" msgstr "Ați uitat parola?" msgid "Don't have an account?" msgstr "Nu ai cont?" msgid "Dashboard" msgstr "Bord" msgid "Welcome to your account!" msgstr "Bun venit in contul tau!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Salut %1$s (nu %2$s? %3$s)! din tabloul de bord al contului, vă puteți vedea abonamentele și puteți gestiona detaliile contului." msgid "Lost Password" msgstr "Parola pierdută" msgid "Manage your account details." msgstr "Gestionați detaliile contului dvs." msgid "First name" msgstr "Nume" msgid "Last name" msgstr "Numele de familie" msgid "Display name" msgstr "Numele afisat" msgid "Current password" msgstr "Parola actuală" msgid "(leave blank to leave unchanged)" msgstr "(lasa gol pentru a lasa neschimbat)" msgid "New password" msgstr "Parolă Nouă" msgid "Confirm new password" msgstr "Confirmă noua parolă" msgid "Save changes" msgstr "Salvează modificările" msgid "All your subscriptions." msgstr "Toate abonamentele tale." msgid "Plan" msgstr "Plan" msgid "Payment type" msgstr "Tipul de plată" msgid "Status" msgstr "Stare" msgid "Months" msgstr "Luni" msgid "Start date" msgstr "Data de început" msgid "End date" msgstr "Data de încheiere" msgid "missing plan" msgstr "plan lipsă" msgid "Free" msgstr "Gratuit" msgid "Active" msgstr "Activ" msgid "Trial" msgstr "Proces" msgid "Blocked" msgstr "Blocat" msgid "Closed" msgstr "închis" msgid "Not paid" msgstr "Neplatit" msgid "Awaiting payment" msgstr "în așteptarea plății" msgid "Subscription info" msgstr "Informații despre abonament" msgid "ID" msgstr "ID" msgid "Name" msgstr "Nume" msgid "Company name" msgstr "Numele companiei" msgid "VAT" msgstr "TVA" msgid "Address" msgstr "Abordare" msgid "City" msgstr "Oraș" msgid "Country/State" msgstr "Tara/stat" msgid "Email" msgstr "E-mail" msgid "Postal code" msgstr "Cod poștal" msgid "Direct bank transfer details" msgstr "Detaliile transferului bancar direct" msgid "Account name" msgstr "Nume de cont" msgid "Account number" msgstr "Numar de cont" msgid "Bank name" msgstr "Numele băncii" msgid "Routing number" msgstr "Numărul de rutare" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "Instrucțiuni" msgid "No subscription created." msgstr "Nu a fost creat niciun abonament." msgid "Choose plan" msgstr "Alege planul" msgid "Payment methods" msgstr "Metode de plata" msgid "Total" msgstr "Total" msgid "Period" msgstr "Perioadă" msgid "Subscription summary" msgstr "Rezumatul abonamentului" msgid "Phone" msgstr "Telefon" msgid "Postcode" msgstr "Cod poștal" msgid "County" msgstr "Judetul" msgid "Town/City" msgstr "Oraș/oraș" msgid "Street address" msgstr "Adresa străzii" msgid "Country/Region" msgstr "Tara/regiune" msgid "VAT Number" msgstr "TVA" msgid "(optional)" msgstr "(optional)" msgid "Billing details" msgstr "Detalii de facturare" msgid "User information" msgstr "Informații despre utilizator" msgid "It seems that no available payment methods have been configured." msgstr "Se pare că nu au fost configurate metode de plată disponibile." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Mulțumesc! suntem încântați să vă vedem aici. abonamentul tau va fi activat in curand!" msgid "Our bank details" msgstr "Detaliile noastre bancare" msgid "Your subscription details" msgstr "Detaliile abonamentului dvs" msgid "View subscription" msgstr "Vizualizați abonamentul" msgid "You have not selected a valid subscription plan." msgstr "Nu ați selectat un plan de abonament valid." msgid "Field empty" msgstr "Câmp gol" msgid "Empty first name" msgstr "Prenume gol" msgid "Empty last name" msgstr "Nume de familie gol" msgid "Empty country" msgstr "Tara goala" msgid "Empty address" msgstr "Adresa goală" msgid "Empty city" msgstr "Oraș gol" msgid "Empty county" msgstr "Judetul gol" msgid "Empty postcode" msgstr "Cod poștal gol" msgid "Empty phone" msgstr "Telefon gol" msgid "Empty email" msgstr "E-mail gol" msgid "Email or username empty!" msgstr "E-mail sau nume de utilizator gol!" msgid "Pass empty!" msgstr "Trece gol!" msgid "Username incorrect!" msgstr "Nume de utilizator incorect!" msgid "Invalid Pass Pattern!" msgstr "Model de trecere nevalid!" msgid "Please activate your account by following the link sent to your email address." msgstr "Vă rugăm să vă activați contul urmând linkul trimis la adresa dvs. de e-mail." msgid "Resend activation link" msgstr "Retrimiteți linkul de activare" msgid "In order to have access to this section, you have to activate your account." msgstr "Pentru a avea acces la aceasta sectiune trebuie sa iti activezi contul." msgid "Email empty!" msgstr "E-mail gol!" msgid "Username empty!" msgstr "Numele de utilizator este gol!" msgid "Pass pattern incorrect!" msgstr "Model de trecere incorect!" msgid "Retyped pass empty!" msgstr "Permis reintrodus gol!" msgid "Retyped pass exactly!" msgstr "Trecerea rescrisă exact!" msgid "User already exists!" msgstr "Utilizatorul deja există!" msgid "Email already exists!" msgstr "E-mail există deja!" msgid "Your account could not be created." msgstr "Contul dvs. nu a putut fi creat." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Vă rugăm să vă verificați e-mailul (inbox sau dosarul de spam) pentru a vă valida contul." msgid "User empty!" msgstr "Utilizator gol!" msgid "User does not exists!" msgstr "Utilizatorul nu există!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "A fost generat un nou link de activare. vă rugăm să vă verificați e-mailul (inbox sau dosarul de spam) pentru a vă valida contul." msgid "CAPTCHA verification failed!" msgstr "Verificarea captcha a eșuat!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Scorul utilizatorului captcha a eșuat. va rog sa ne contactati!" msgid "Loading" msgstr "Se încarcă" msgid "Here are the results for the search:" msgstr "Iată rezultatele căutării:" msgid "Price" msgstr "Preț" msgid "EXCLUSIVE" msgstr "EXCLUSIV" msgid "Tel:" msgstr "Tel:" msgid "Share" msgstr "Acțiune" msgid "Print" msgstr "Imprimare" msgid "At" msgstr "La" msgid "Comments are closed." msgstr "Comentariile sunt închise." msgid "Payment method" msgstr "Modalitate de plată" msgid "You must be logged out to view this page." msgstr "Trebuie să fii deconectat pentru a vedea această pagină." msgid "Retyped Pass incorrect!" msgstr "Trecerea reintrodusă incorectă!" msgid "%s is a required field." msgstr "%s este un câmp obligatoriu." msgid "Please provide a valid email address." msgstr "Vă rugăm să furnizați o adresă de e-mail validă." msgid "This email address is already registered." msgstr "Această adresă de email este deja înregistrată." msgid "Please fill out all password fields." msgstr "Vă rugăm să completați toate câmpurile pentru parole." msgid "Please enter your current password." msgstr "Vă rugăm să introduceți parola dvs. actuală." msgid "Please re-enter your password." msgstr "Vă rugăm să reintroduceți parola." msgid "New passwords do not match." msgstr "Parolele noi nu se potrivesc." msgid "Your current password is incorrect." msgstr "Parola dvs. actuală este incorectă." msgid "Account details changed successfully." msgstr "Detaliile contului s-au schimbat cu succes." msgid "A new activation link has been sent to your email address!" msgstr "Un nou link de activare a fost trimis la adresa ta de e-mail!" msgid "unlimited" msgstr "nelimitat" msgid "Pay with Stripe" msgstr "Plătiți cu dungă" msgid "Cancel subscription" msgstr "Anuleaza abonarea" msgid "Please check your email and confirm subscription!" msgstr "Vă rugăm să vă verificați e-mailul și să confirmați abonamentul!" msgid "Successfully subscribed!" msgstr "Abonat cu succes!" msgid "Successfully unsubscribed!" msgstr "Dezabonat cu succes!" msgid "Enter promo code here" msgstr "Introduceți codul promoțional aici" msgid "Apply" msgstr "Aplica" msgid "Coupon applied" msgstr "Cupon aplicat" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Eroare nedepistată: ceva a mers prost, vă rugăm să reîncărcați pagina și încercați din nou!" msgid "The coupon code you entered is invalid" msgstr "Codul de cupon pe care l-ați introdus este nevalid" msgid "The coupon code you entered has reached its usage limit" msgstr "Codul de cupon pe care l-ați introdus a atins limita de utilizare" msgid "The coupon code you entered has expired" msgstr "Codul de cupon pe care l-ați introdus a expirat" msgid "Coupon name is required !" msgstr "Numele cuponului este necesar!" msgid "Please enter a coupon code first!" msgstr "Vă rugăm să introduceți mai întâi un cod de cupon!" msgid "Invalid" msgstr "Invalid" msgid "Applied" msgstr "Aplicat" msgid "Remove" msgstr "Elimina" msgid "Price not set" msgstr "Pretul nu este stabilit" msgid "Grand Total" msgstr "Total general" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Ai deja un abonament, dar este încă în așteptare să fie plătit!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Acest abonament a fost anulat și se va încheia pe %end_date%." msgid "Go to checkout" msgstr "Mergi la casa" msgid "Stripe invoice details" msgstr "Detaliile facturii stripe" msgid "Stripe subscription details" msgstr "Detaliile abonamentului stripe" msgid "Current status" msgstr "Statusul curent" msgid "Initial Invoice Paid" msgstr "Factura initiala platita" msgid "Subscription Create: Initial Invoice Paid" msgstr "Creare abonament: factura inițială plătită" msgid "Subscription Create: Initial Invoice has been created" msgstr "Creare abonament: a fost creată factura inițială" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Creare abonament: factura inițială a fost finalizată și este gata de plată" msgid "Subscription Update: Invoice Paid" msgstr "Actualizare abonament: factura plătită" msgid "Subscription Renew: Invoice Paid" msgstr "Reînnoire abonament: factura plătită" msgid "Subscription Renew: Invoice Finalized" msgstr "Reînnoire abonament: factura finalizată" msgid "Subscription Renew: Invoice Created" msgstr "Reînnoire abonament: factura creată" msgid "Subscription Renew: Invoice Upcoming" msgstr "Reînnoire abonament: factura viitoare" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Abonamentul a expirat: factura anulată (prima factură nu a fost plătită)" msgid "Subscription Deleted" msgstr "Abonamentul a fost șters" msgid "Subscription Create: Trialing" msgstr "Crearea abonamentului: încercare" msgid "Subscription Canceled" msgstr "Abonament anulat" msgid "Subscription Create: Initial Invoice voided" msgstr "Crearea abonamentului: factura inițială anulată" msgid "Subscription Renew: Invoice voided" msgstr "Reînnoire abonament: factura anulată" msgid "Subscription Update: Invoice voided" msgstr "Actualizare abonament: factura anulată" msgid "Invoice updated" msgstr "Factura actualizata" msgid "Subscription has been canceled and will end on: " msgstr "Abonamentul a fost anulat și se va încheia pe:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Configurare cu succes - ați configurat cu succes metoda de plată pentru plățile viitoare." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Configurarea a eșuat - ne pare rău, a apărut o eroare la configurarea metodei dvs. de plată. vă rugăm să încercați din nou cu o altă metodă de plată." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Plată reușită - ultima plată a abonamentului a fost finalizată cu succes." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Procesarea plăților - cea mai recentă plată a abonamentului este în curs de procesare." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Plata nu a reușit - ne pare rău, a apărut o eroare la procesarea plății dvs. vă rugăm să încercați din nou cu o altă metodă de plată." msgid "Download" msgstr "Descarca" msgid "Stripe invoice" msgstr "Factură cu dungi" msgid "N/A" msgstr "N / A" msgid "Latest invoice" msgstr "Ultima factura" msgid "Invoice" msgstr "Factura fiscala" msgid "Unpaid subscription." msgstr "Abonament neplătit." msgid "Locked subscription." msgstr "Abonament blocat." msgid "Invalid subscription." msgstr "Abonament nevalid." msgid "Pay now" msgstr "Plătește acum" msgid "Show more info" msgstr "Arata mai multe informatii" msgid "Show less info" msgstr "Arata mai putine informatii" msgid "Complete payment" msgstr "Plata completă" msgid "or" msgstr "sau" msgid "Setup Payment" msgstr "Configurarea plății" msgid "Go to Payment" msgstr "Mergi la plata" msgid "Alphabetical A -> Z" msgstr "Alfabetic a -> z" msgid "Oldest posts" msgstr "Cele mai vechi postări" msgid "Select" msgstr "Selectați" msgid "on" msgstr "pe" msgid "No bookmarked posts" msgstr "Fără postări marcate" msgid "Log in With Facebook" msgstr "Logheaza-te cu Facebook" msgid "Forgot your password? Get help" msgstr "Ați uitat parola? obține ajutor" msgid "Someone has requested a password reset for the following account:" msgstr "Cineva a cerut o resetare a parolei pentru următorul cont:" msgid "Username: %s" msgstr "Nume de utilizator: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Dacă aceasta a fost o greșeală, ignorați acest e-mail și nu se va întâmpla nimic." msgid "To reset your password, visit the following address:" msgstr "Pentru a vă reseta parola, vizitați următoarea adresă:" msgid "Members" msgstr "Membrii" msgid "Downloads" msgstr "Descărcări" msgid "inc. TAX" msgstr "inc. impozit" msgid "ex. TAX" msgstr "ex. impozit" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "A apărut o eroare neașteptată în timp ce încercați să vă creați postarea. vă rugăm să încercați din nou." msgid "Your post has been successfully created." msgstr "Postarea ta a fost creată cu succes." msgid "Your post has been successfully updated." msgstr "Postarea ta a fost actualizată cu succes." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "A apărut o eroare neașteptată și e-mailul nu a putut fi trimis." msgid "Location:" msgstr "Locație:" msgid "The email has been successfully sent." msgstr "E-mailul a fost trimis cu succes." msgid "An unexpected error has occurred. Please try again." msgstr "A aparut o eroare neasteptata. vă rugăm să încercați din nou." msgid "Drag and drop or browse" msgstr "Trageți și plasați sau răsfoiți" msgid "Search by keyword..." msgstr "Cauta dupa cuvinte cheie..." msgid "Select parent" msgstr "Selectați părintele" msgid "Add new" msgstr "Adăuga nou" msgid "Parent" msgstr "Mamă" msgid "Select child" msgstr "Selectați copilul" msgid "Select sub-child" msgstr "Selectați subcopilul" msgid "Posted by" msgstr "Postat de" msgid "Overall" msgstr "Per total" msgid "Post review" msgstr "Post recenzie" msgid "This field is required!" msgstr "Acest câmp este obligatoriu!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Recenzia dvs. a fost publicată. vă rugăm să reîmprospătați pagina pentru a o vedea." msgid "Your review has been registered and is awaiting approval." msgstr "Recenzia dvs. a fost înregistrată și așteaptă aprobarea." msgid "Submit reply" msgstr "Trimite raspuns" msgid "Enter your reply" msgstr "Introduceți răspunsul dvs" msgid "Cancel" msgstr "Anulare" msgid "Some required fields have been left blank." msgstr "Unele câmpuri obligatorii au fost lăsate necompletate." msgid "Please enter a valid email address." msgstr "Vă rugăm să introduceți o adresă de email validă." msgid "The number cannot be lower than" msgstr "Numărul nu poate fi mai mic decât" msgid "The number cannot be higher than" msgstr "Numărul nu poate fi mai mare decât" msgid "Leave a review" msgstr "Lasa o recenzie" msgid "Submit" msgstr "Trimite" msgid "Update" msgstr "Actualizați" msgid "out of 5" msgstr "din 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Ați atins limita de recenzii pe care le puteți trimite pentru acest articol" msgid "Log in to leave a review." msgstr "Conectați-vă pentru a lăsa o recenzie." msgid "Enter a title for your review" msgstr "Introduceți un titlu pentru recenzia dvs" msgid "Enter your review" msgstr "Introduceți recenzia dvs" msgid "Review criteria" msgstr "Criteriile de revizuire" msgid "Enter Your Name or Company" msgstr "Introduceți numele sau compania dvs" msgid "Submit review" msgstr "Trimite recenzie" msgid "Delete" msgstr "șterge" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Raspunsul tau a fost publicat. vă rugăm să reîmprospătați pagina pentru a o vedea." msgid "You have not created any posts." msgstr "Nu ai creat nicio postare." msgid "The selected post has been successfully deleted." msgstr "Postarea selectată a fost ștearsă cu succes." msgid "Rating" msgstr "Rating" msgid "Title" msgstr "Titlu" msgid "Post image" msgstr "Postați imaginea" msgid "Categories" msgstr "Categorii" msgid "Date" msgstr "Data" msgid "Source title" msgstr "Titlul sursei" msgid "No rating" msgstr "Nici un rating" msgid "View" msgstr "Vedere" msgid "Publish" msgstr "Publica" msgid "Add new post" msgstr "Adauga postare noua" msgid "Edit post" msgstr "Editează postarea" msgid "Publish a post" msgstr "Publica o postare" msgid "The status for %POST_TITLE% has been changed." msgstr "Starea pentru %post_title% a fost schimbată." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Sunteți sigur că doriți să publicați %post_title%?" msgid "Delete a post" msgstr "șterge o postare" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Sunteți sigur că doriți să ștergeți %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% a fost mutat în coșul de gunoi." msgid "You do not hold the required priveleges to execute this request." msgstr "Nu dețineți privilegiile necesare pentru a executa această solicitare." msgid "No search results." msgstr "Nu există Rezultate." msgid "Yes" msgstr "Da" msgid "No" msgstr "Nu" msgid "Save" msgstr "Salvați" msgid "Search for a location" msgstr "Caută o locație" msgid "Address line" msgstr "Linia de adresa" msgid "(Optional)" msgstr "(optional)" msgid "State" msgstr "Stat" msgid "Country" msgstr "țară" msgid "Create new term" msgstr "Creați un nou termen" msgid "Description" msgstr "Descriere" msgid "Delete bookmarks" msgstr "ștergeți marcajele" msgid "Reset your password" msgstr "Reseteaza parola" msgid "The password reset key has expired." msgstr "Cheia de resetare a parolei a expirat." msgid "The password reset key is invalid." msgstr "Cheia de resetare a parolei este nevalidă." msgid "New password *" msgstr "Parolă Nouă *" msgid "Repeat new password *" msgstr "Repeta noua parola *" msgid "Save password" msgstr "Salveaza parola" msgid "Your account has been successfully activated!" msgstr "Contul dvs. a fost activat cu succes!" msgid "Your account has already been activated!" msgstr "Contul dvs. a fost deja activat!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Verificați e-mailul pentru link-ul de activare corect. acest link este invalid." msgid "Account activation" msgstr "Activare cont" msgid "Please enter a new password before proceeding." msgstr "Vă rugăm să introduceți o nouă parolă înainte de a continua." msgid "Please confirm the new password before proceeding." msgstr "Vă rugăm să confirmați noua parolă înainte de a continua." msgid "Please make sure that the passwords match." msgstr "Vă rugăm să vă asigurați că parolele se potrivesc." msgid "The password has been reset successfully." msgstr "Parola a fost resetată cu succes." msgid "Manage your billing details." msgstr "Gestionați detaliile dvs. de facturare." msgid "Profile picture" msgstr "Poză de profil" msgid "Remaining publishing rights." msgstr "Drepturile de publicare rămase." msgid "The number of articles you have left to publish across different post types." msgstr "Numărul de articole pe care le-ai rămas de publicat în diferite tipuri de postări." msgid "Bank transfer" msgstr "Transfer bancar" msgid "Direct Bank Transfer" msgstr "Transfer bancar direct" msgid "Canceled" msgstr "Anulat" msgid "Cycle Interval" msgstr "Interval de ciclu" msgid "In order to update this filed, you have to activate your account." msgstr "Pentru a actualiza acest fișier, trebuie să vă activați contul." msgid "Cannot process %s field." msgstr "Nu poate procesa câmpul %s." msgid "Modified date" msgstr "Data modificata" translation/de_DE.mo000064400000105172150211537140010404 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,aHaPaWata}aa0a aaab "b .b9b?bbbbb c c[cGwcIcB dLd[dod d ddddddIdIe Xebeeeee eee e f f f (f2f IfSf1jf0ff f fg)g 9gCgLg_g ngzgg"g gggghh&h+h;hJhYh_hphuh{hhi$i(5i^igiii*ii iij jAjWjqj jjjjj jjkkk .k8k&>k ekpkkkkkkkl lFlVl AmMmVmkmsm\zmcm_;nanGn>Eo/o=o1o$$p+Ip,up$p)p(p*q?Eq0q(qqqr r r 2r ?rLr \rjr rrrrrrrs s s+s,=k5-߀, :;XCށ +q>  ҂%37"k  "%+1Iat}'9քH" k[x1ԅ#0*b[7'+&J%q#@'+$YP[<C Z eq#66ۉ$ 3 >H \ilR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: de_DE %post_title% wurde in den Papierkorb verschoben.%curr% von %total%%s ist ein Pflichtfeld.(Optional)(Leer lassen, um unverändert zu lassen)(Optional)1 Kommentar7 Tage beliebtEin neuer Aktivierungslink wurde an Ihre E-Mail-Adresse gesendet!Ein Passwort wird Ihnen per Email zugeschickt.Über unsüber michAccount AktivierungKontodetailsKontodaten erfolgreich geändert.KontobezeichnungAccountnummerAccount EinstellungenBestätigung ist erforderlich!AktivNeue hinzufügenNeuen Beitrag hinzufügenDie AnschriftAdresszeileAdressenAlleDie beliebtesten Beiträge aller ZeitenAlle Ihre Abonnements.Alphabetisch a -> zSie haben bereits ein Konto?Beim Versuch, Ihren Beitrag zu erstellen, ist ein unerwarteter Fehler aufgetreten. Bitte versuche es erneut.Es ist ein unerwarteter Fehler aufgetreten und die E-Mail konnte nicht gesendet werden.Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es erneut.AngewandtAnwendenArchiveSind Sie sicher, dass Sie %post_title% löschen möchten?Sind Sie sicher, dass Sie %post_title% veröffentlichen möchten?BeimAustralischer DollarAutorAutorenWarten auf ZahlungZurückBank NameBanküberweisungBic/swiftRechnungsdetailsVerstopftBlogBrasilianischer RealBritisches PfundLewVonNach BewertungCaptcha-Benutzerbewertung fehlgeschlagen. bitte kontaktieren Sie uns!Captcha-Überprüfung fehlgeschlagen!SCHLIESSENKommentareKanadischer DollarStornierenAntwort abbrechenAbonnement beendenAbgesagt%s Feld kann nicht verarbeitet werden.KategorienÜberprüfen Sie Ihre E-Mails auf den richtigen Aktivierungslink. Dieser Link ist ungültig.Chinesischer Renminbi YuanWählen Sie einen PlanStadtAbgeschlossenKommentar:Kommentarfunktion ist geschlossen.Name der FirmaZur vollständigen BezahlungBestätige neues PasswortKontaktieren Sie unsWeiterLandLand/RegionLand/StaatBezirkGutschein angewendetGutscheinname ist erforderlich!Ein Konto erstellenNeuen Begriff erstellenKroatische KunaJetziges PasswortAktueller StatusZyklusintervallTschechische KroneTagesarchive:Dänische KroneArmaturenbrettDatumLöschenEinen Beitrag löschenLesezeichen löschenBeschreibungDirekte BanküberweisungDetails zur direkten BanküberweisungAnzeigenameSie haben kein Konto?HerunterladenDownloadsDrag & Drop oder DurchsuchenRedaktionstippMehr erfahrenEXKLUSIVBearbeitenBeitrag bearbeitenEmailE-Mail-AddresseE-Mail-Adresse wurde nicht gefunden!E-Mail existiert bereits!E-Mail leer!E-Mail-Adresse nicht korrekt!E-Mail oder Benutzername leer!E-Mail-Adresse oder Benutzername falsch!E-Mail:Leere AdresseLeere StadtLeeres LandLeere GrafschaftLeere E-MailLeerer VornameLeerer NachnameLeeres TelefonLeere PostleitzahlEndterminGeben Sie Ihren Namen oder Ihr Unternehmen einGeben Sie einen Titel für Ihre Bewertung einGeben Sie hier den Aktionscode einGeben Sie Ihre Antwort einGeben Sie Ihre Bewertung einEuro-Länder MitgliedFolgen Sie unsFansBesondereBeliebte BeiträgeFeld leerVornameFolgenFolgen Sie uns auf instagramFollowerPasswort vergessen?Passwort vergessen?Haben Sie Ihr Passwort vergessen? Hilfe bekommenKostenlosAuf Ihr Konto einziehen.Gehen Sie zur ZahlungZum Checkout gehenGesamtsummeStartseiteHalloHallo %1$s (nicht %2$s? %3$s)! Von Ihrem Konto-Dashboard aus können Sie Ihre Abonnements anzeigen und Ihre Kontodetails verwalten.Hier die Ergebnisse der Suche:StartHongkong DollarUngarischer ForintIBANICH WÜRDEWenn dies ein Fehler war, ignorieren Sie diese E-Mail einfach und es wird nichts passieren.Wenn Sie mit dem Ergebnis nicht zufrieden sind, suchen Sie bitte erneutUm Zugang zu diesem Abschnitt zu haben, müssen Sie Ihr Konto aktivieren.Um dieses Feld zu aktualisieren, müssen Sie Ihr Konto aktivieren.Indische RupieIndonesische RupiahErste Rechnung bezahltAnweisungenUngültigUngültiges Passmuster!Ungültiges Abonnement.RechnungRechnung aktualisiertIsraelische SchekelEs scheint, dass keine verfügbaren Zahlungsmethoden konfiguriert wurden.Japanische YENBeitretenKoreanisches (Süden) gewonnenNeueste BeiträgeKommentieren Sie den ArtikelAnmeldenNachnameAktuellsteLetzte RechnungHinterlassen Sie eine BewertungGefällt mirLikesMehr ladenWird geladenStandort:Gesperrtes Abonnement.EinloggenMit Facebook einloggenLoggen Sie sich ein, um einen Kommentar abzugebenMelden Sie sich an, um eine Bewertung abzugeben.Melde dich in deinem Konto anAusloggenAusloggen?Eingeloggt alsAls% s angemeldet. bearbeite dein Profil.AnmeldungAbmeldenPasswort vergessenMehr vom AutorMEHR STORYSMalaysischer RinggitVerwalten Sie Ihre Kontodaten.Verwalten Sie Ihre Rechnungsdaten.MitgliederMexikanischer PesoÄnderungsdatumÄnderungsdatum:Monatsarchive:MonateMehrAm beliebtestenMein Abo-KontoMein woo-KontoN / AKeine KommentareNameName:Neuseeland-DollarNeuer Aktivierungslink wurde generiert. Bitte überprüfen Sie Ihre E-Mail (Posteingang oder Spam-Ordner), um Ihr Konto zu bestätigen.Neues PasswortNeues Kennwort *Neue Passwörter stimmen nicht überein.NächsteWeiter (rechte Pfeiltaste)Nächster ArtikelNEINKeine mit Lesezeichen versehenen BeiträgeKeine Beiträge vorhandenKeine Produkte im Einkaufswagen.Keine BewertungKeine ErgebnisseKeine Ergebnisse für Ihre SucheKeine Suchergebnisse.Kein Abonnement erstellt.Norwegische KroneNicht bezahltDie neuesten BeiträgeGesamtpunktzahlälteste BeiträgeUuuups ... Fehler 404AufträgeUnsere BankverbindungGesamtBeliebte KategorieBeliebte BeiträgeBEITRÄGESeiteSeite %CURRENT_PAGE% von %TOTAL_PAGES%ElternteilLeer passieren!Passmuster falsch!PasswortPasswort-WiederherstellungZahlen Sie jetztMit Streifen bezahlenDie Zahlung ist fehlgeschlagen. Leider ist bei der Verarbeitung Ihrer Zahlung ein Fehler aufgetreten. Bitte versuchen Sie es erneut mit einer anderen Zahlungsmethode.ZahlungsmethodeZahlungsartenZahlungsabwicklung – Ihre letzte Abonnementzahlung wird verarbeitet.Zahlung erfolgreich – Ihre letzte Abonnementzahlung wurde erfolgreich abgeschlossen.ZahlungsartZeitraumPhilippinischer PesoTelefonPlanenBitte aktivieren Sie Ihr Konto, indem Sie dem an Ihre E-Mail-Adresse gesendeten Link folgen.Bitte überprüfen Sie Ihre E-Mails (Index oder Spam-Ordner), das Passwort wurde dorthin geschickt.Bitte überprüfen Sie Ihre E-Mail (Posteingang oder Spam-Ordner), um Ihr Konto zu bestätigen.überprüfen Sie bitte Ihre E-Mail (Index oder Spam-Ordner) wurde das Passwort dorthin geschickt.Bitte überprüfen Sie Ihre E-Mails und bestätigen Sie das Abonnement!Bitte bestätigen Sie das neue Passwort, bevor Sie fortfahren.Bitte geben Sie zuerst einen Gutscheincode ein!Bitte geben Sie ein neues Passwort ein, bevor Sie fortfahren.Bitte geben Sie eine gültige E-Mail-Adresse ein.Bitte geben Sie Ihren Kommentar ein!Bitte geben Sie Ihr aktuelles Passwort ein.Bitte geben Sie hier Ihre E-Mail-Adresse einBitte geben Sie hier Ihren Namen einBitte geben Sie eine gültige E-Mail ein.Bitte geben Sie eine E-Mail-Adresse ein.Bitte füllen Sie alle Passwortfelder aus.Bitte stellen Sie sicher, dass die Passwörter übereinstimmen.Bitte geben Sie eine gültige E-Mail Adresse an.Bitte geben Sie Ihr Passwort erneut ein.Bitte warten...Polnischer ZlotyKommentar speichernBild postenBeitragsrezensionPostleitzahlPostleitzahlGeschrieben vonBeiträge vonEinträge mit den SchlagwortenVorherigeVorherige (Pfeiltaste links)Vorheriger ArtikelPreisPreis nicht festgelegtDruckenDatenschutz-BestimmungenProduktkategorienProdukt TagsProfilbildVeröffentlichenEinen Beitrag veröffentlichenRegistrierenVerwandte ArtikelÜberblick der RezensionenZufälligBewertungWeiterlesenPasswort wiederherstellenPasswort zurücksetzenRegistrierenRegistrieren Sie sich für ein KontoVerbleibende Veröffentlichungsrechte.EntfernenWiederhole das neue Passwort *Wiederhole das PasswortAntwortAktivierungslink erneut sendenSetze dein Passwort zurückErneut eingegebener Pass falsch!Erneut eingegebener Pass leer!Genau abgetippter Pass!BewertungskriterienRumänisch (neu) leuRouting-NummerRussischer RubelTeilenQuelleZusammenfassungSpeichernÄnderungen speichernSpeichern Sie meinen Namen, meine E-Mail-Adresse und meine Website für den nächsten Kommentar in diesem Browser.Passwort speichernSucheüber Schlüsselwort suchen...Nach einem Ort suchenWählenKind auswählenEltern auswählenUntergeordnetes Kind auswählenSenden Sie mein PasswortSende mein PasswortZahlung einrichtenEinrichtung fehlgeschlagen – es tut uns leid, beim Einrichten Ihrer Zahlungsmethode ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut mit einer anderen Zahlungsmethode.Einrichtung erfolgreich – Sie haben Ihre Zahlungsmethode für zukünftige Zahlungen erfolgreich eingerichtet.TeilenBei Facebook teilenWeniger Infos anzeigenWeitere Infos anzeigenAnmeldenAnmelden / BeitretenAnmeldenSingapur-DollarEinige Pflichtfelder wurden leer gelassen.Jemand hat eine Passwortzurücksetzung für das folgende Konto angefordert:Es tut uns leid, die gesuchte Seite existiert nicht.QuellentitelSüdafrikanischer RandStartdatumZustandStatusAdresseStreifenrechnungRechnungsdetails streifenDetails zum Stripe-AbonnementEinreichenAntwort einreichenBewertung abschickenAbonnierenAbonnentenAbonnement gekündigtAbonnement erstellen: erste Rechnung bezahltAbonnement erstellen: Die erste Rechnung wurde erstelltAbonnement erstellen: Die ursprüngliche Rechnung wurde abgeschlossen und kann nun bezahlt werdenAbonnement erstellen: ursprüngliche Rechnung storniertAbonnement erstellen: TestversionAbonnement gelöschtAbonnement abgelaufen: Rechnung storniert (die erste Rechnung wurde nicht bezahlt)Abonnement verlängern: Rechnung erstelltAbonnementverlängerung: Rechnung abgeschlossenAbonnementverlängerung: Rechnung bezahltAbonnement erneuern: Rechnung steht bevorAbonnementverlängerung: Rechnung ungültigAbonnement-Update: Rechnung bezahltAbonnement-Update: Rechnung storniertDas Abonnement wurde gekündigt und endet am:Abo-InfoAbonnement-ZusammenfassungAbonnementsErfolgErfolgreich abonniert!Erfolgreich abgemeldet!Schwedische KroneSchweizerfrankenSchlagworteSchlagwortSchlagworteTel:Thai BahtDanke schön! wir freuen uns, Sie hier zu sehen. Ihr Abonnement wird in Kürze aktiviert!Der Inhalt von %url% konnte nicht geladen werden.Der von Ihnen eingegebene Gutscheincode ist abgelaufenDer von Ihnen eingegebene Gutscheincode hat sein Nutzungslimit erreichtDer von Ihnen eingegebene Gutscheincode ist ungültigDie E-Mail wurde erfolgreich gesendet.Das Bild #%curr% konnte nicht geladen werden.Die Zahl darf nicht höher sein alsDie Zahl darf nicht kleiner sein alsDie Anzahl der Artikel, die Sie noch in verschiedenen Beitragstypen veröffentlichen müssen.Das Passwort wurde erfolgreich zurückgesetzt.Der Schlüssel zum Zurücksetzen des Passworts ist abgelaufen.Der Schlüssel zum Zurücksetzen des Passworts ist ungültig.Der ausgewählte Beitrag wurde erfolgreich gelöscht.Der Status für %post_title% wurde geändert.Diese Email-Adresse ist bereits registriert.Dieses Feld ist erforderlich!Dieses Abonnement wurde gekündigt und endet am %end_date%.TitelUm Ihr Passwort zurückzusetzen, besuchen Sie die folgende Adresse:GesamtStadt/StadtMomentan sehr beliebtGerichtsverhandlungTürkische LiraBei Twitter teilenNicht erfasster Fehler: Es ist ein Fehler aufgetreten. Bitte laden Sie die Seite neu und versuchen Sie es erneut!US-DollarUnbezahltes Abonnement.AktualisierenBenutzer existiert bereits!Benutzer existiert nicht!Benutzer leer!NutzerinformationBenutzername oder E-Mail-Adresse existiert bereits!Benutzername oder Passwort falsch!NutzernameBenutzername leer!Benutzername falsch!Benutzername oder E-mail AdresseBenutzername: %sMEHRWERTSTEUERUmsatzsteuer-IdentifikationsnummerüberSichtAlle Beiträge anzeigenAlle Ergebnisse ansehenAbonnement ansehenWebsite:Willkommen auf Ihrem Konto!Herzlich willkommen!Herzlich willkommen! Melden Sie sich anHerzlich willkommen! Registrieren Sie sich für ein KontoJahresarchive:JaSie haben bereits ein Abonnement, aber es wartet noch auf die Bezahlung!Gehen Sie zuSie verfügen nicht über die erforderlichen Berechtigungen, um diese Anfrage auszuführen.Sie haben eine falsche E-Mail-Adresse eingegeben!Sie haben keine Beiträge erstellt.Sie haben kein gültiges Abonnement ausgewählt.Sie haben die maximale Anzahl an Bewertungen erreicht, die Sie für diesen Artikel abgeben könnenSie müssen abgemeldet sein, um diese Seite anzuzeigen.Ihr Konto konnte nicht erstellt werden.Dein Benutzerkonto wurde bereits aktiviert!Ihr Konto wurde erfolgreich aktiviert!Ihr Beitrag wartet auf die ModerationDein aktuelles Passwort ist falsch.Ihr Passwort wurde zurückgesetzt, überprüfen Sie Ihre Emails.Ihr Beitrag wurde erfolgreich erstellt.Ihr Beitrag wurde erfolgreich aktualisiert.Ihre Antwort wurde veröffentlicht. Bitte aktualisieren Sie die Seite, um sie anzuzeigen.Ihre Rezension wurde veröffentlicht. Bitte aktualisieren Sie die Seite, um sie anzuzeigen.Ihre Bewertung wurde registriert und wartet auf Genehmigung.Ihre Abonnementdetailsex. Steuerinc. Steuerfehlender Planmuss mindestens 6 Zeichen lang seinmuss mindestens einen Kleinbuchstaben enthalten (a..z)muss mindestens einen Großbuchstaben enthalten (a..z)vonAnodervon 5SuchergebnisseunbegrenztAnsichtenIhre E-Mail-AdresseIhr PasswortIhr Benutzernametranslation/ur.po000064400000124114150211537140010072 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ur\n" msgid "View all results" msgstr "تمام نتائج دیکھيے" msgid "No results" msgstr "کوئی نتائج نہیں" msgid "Home" msgstr "ہوم" msgid "CLOSE" msgstr "بند" msgid "Page" msgstr "صفحہ" msgid "All" msgstr "تمام" msgid "By" msgstr "کی طرف" msgid "Load more" msgstr "مزید لوڈ کریں" msgid "View all posts in" msgstr "تمام مراسلات ان میں دیکھیں" msgid "Tags" msgstr "ٹیگز" msgid "Previous article" msgstr "گزشتہ مضمون" msgid "Next article" msgstr "اگلا مضمون" msgid "Authors" msgstr "مصنفین" msgid "Author" msgstr "مصنف" msgid "RELATED ARTICLES" msgstr "متعلقہ مضامین" msgid "MORE FROM AUTHOR" msgstr "زیادہ مصنف کی طرف سے" msgid "VIA" msgstr "کے ذریعے" msgid "SOURCE" msgstr "ذریعہ" msgid "TAGS" msgstr "ٹیگز" msgid "SHARE" msgstr "حصہ" msgid "Continue" msgstr "جاری" msgid "Read more" msgstr "مزید پڑھیں" msgid "Name:" msgstr "نام" msgid "Email:" msgstr "ای میل" msgid "Website:" msgstr "ویب سائٹ" msgid "Comment:" msgstr "تبصرہ" msgid "LEAVE A REPLY" msgstr "جواب چھوڑ دیں" msgid "Post Comment" msgstr "رائے دیجئے" msgid "Cancel reply" msgstr "جواب منسوخ کریں" msgid "Reply" msgstr "جواب" msgid "Log in to leave a comment" msgstr "تبصرہ چھوڑنے کے لئے لاگ ان کریں" msgid "NO COMMENTS" msgstr "کوئی تبصرہ نہیں" msgid "1 COMMENT" msgstr "1 تبصرہ" msgid "COMMENTS" msgstr "تبصرے" msgid "REVIEW OVERVIEW" msgstr "جائزہ مجموعی جائزہ" msgid "SUMMARY" msgstr "خلاصہ" msgid "OVERALL SCORE" msgstr "مجموعی اسکور" msgid "Ooops... Error 404" msgstr "افوہ ... 404 ايرر" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "معذرت، لیکن آپ جو صفحہ تلاش کر رہے ہیں موجود نہیں ہے" msgid "You can go to the" msgstr "آپ جا سکتے ہیں" msgid "HOMEPAGE" msgstr "مرکزی صفحہ" msgid "OUR LATEST POSTS" msgstr "ہمارے تازہ ترین مراسلات" msgid "Posts by" msgstr "کے ذریعے پیغامات" msgid "POSTS" msgstr "مراسلات" msgid "Posts tagged with" msgstr "پیغامات کوساتھ ٹیگ کیا" msgid "Tag" msgstr "ٹیگ" msgid "Daily Archives:" msgstr "ڈیلی آرکائیو" msgid "Monthly Archives:" msgstr "ماہانہ آرکائیو" msgid "Yearly Archives:" msgstr "سالانہ آرکائیو" msgid "Archives" msgstr "آرکائیو" msgid "LATEST ARTICLES" msgstr "تازہ ترین مضامین" msgid "search results" msgstr "تلاش کے نتائج" msgid "Search" msgstr "تلاش کریں" msgid "If you're not happy with the results, please do another search" msgstr "اگر آپ نتائج کے ساتھ خوش نہیں ہيں، تو براہ مہربانی دوبارہ تلاش کریں" msgid "Contact us" msgstr "ہم سے رابطہ کريں" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "صفحہ%موجودہ صفحہ%کا%کل صفحات" msgid "Next" msgstr "اگلا" msgid "Prev" msgstr "پچھلا" msgid "No results for your search" msgstr "آپ کی تلاش کا کوئی نتيجہ نہیں" msgid "No posts to display" msgstr "کوئی تحریر نہیں ظاہر کرنے کے لئے" msgid "LOG IN" msgstr "لاگ ان" msgid "Sign in / Join" msgstr "سائن ان / شمولیت" msgid "Log In" msgstr "لاگ ان کریں" msgid "REGISTER" msgstr "رجسٹر" msgid "Send My Pass" msgstr "میرا پاس ارسال کریں" msgid "Forgot your password?" msgstr "کيا آپ پاس ورڈ بھول گئے ہیں؟" msgid "Please wait..." msgstr "براہ مہربانی انتظار کریں …" msgid "User or password incorrect!" msgstr "صارف یا غلط پاس ورڈ" msgid "Email or username incorrect!" msgstr "ای میل یا غلط کا صارف کا نام" msgid "Email incorrect!" msgstr "غلط ای ميل" msgid "User or email already exists!" msgstr "صارف یا ای میل پہلے سے موجود ہے" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "آپ براہ مہربانی اپنا ای میل چیک کریں ( انڈیکس یا اسپيم فولڈر ) پاس ورڈ وہاں بھیجا گیا تھا" msgid "Email address not found!" msgstr "ای میل ایڈریس نہیں ملا" msgid "Your password is reset, check your email." msgstr "آپ کا پاس ورڈ دوبارہ ترتیب کر ديا گيا ہے اپنی ای میل چيک کريں" msgid "Welcome! Log into your account" msgstr "خوش آمدید! اپنے اکاؤنٹ میں لاگ ان کریں" msgid "Register for an account" msgstr "ایک اکاؤنٹ کے لئے رجسٹر کريں" msgid "Recover your password" msgstr "اپنا پاسورڈ ريکور کريں" msgid "your username" msgstr "آپ کا يوزر نيم" msgid "your password" msgstr "آپ کا پاس ورڈ" msgid "your email" msgstr "آپ کا ای میل" msgid "A password will be e-mailed to you." msgstr "ایک پاس ورڈ آپ کو ای ميل ميں بھیج دیا جائے گا" msgid "Logout" msgstr "لاگ آؤٹ کریں" msgid "Like" msgstr "پسند" msgid "Fans" msgstr "مداح" msgid "Follow" msgstr "فالور" msgid "Followers" msgstr "فالورز" msgid "Subscribe" msgstr "سبسکرائب کریں" msgid "Subscribers" msgstr "سبسکرائبرز" msgid "MORE STORIES" msgstr "مزید کہانیاں" msgid "Latest" msgstr "تازہ ترین" msgid "Featured posts" msgstr "فيچرڈ پوسٹ" msgid "Most popular" msgstr "سب سے زیادہ مقبول" msgid "7 days popular" msgstr "دنوں ميں مقبول 7" msgid "By review score" msgstr "اسکورکا جائزہ لینا" msgid "Random" msgstr "رینڈم" msgid "Trending Now" msgstr "رجحان سازی اس وقت" msgid "POPULAR CATEGORY" msgstr "مقبول قسم" msgid "EVEN MORE NEWS" msgstr "زيادہ خبريں" msgid "Previous (Left arrow key)" msgstr "پچھلا (بائیں ايرو کي" msgid "Next (Right arrow key)" msgstr "اگلا (دائیں ا یرو کي" msgid "%curr% of %total%" msgstr "%موجودہ% کا%کل%" msgid "The content from %url% could not be loaded." msgstr "سے يہ مواد لوڈ نہیں کیا جا سکتا%url%" msgid "The image #%curr% could not be loaded." msgstr "سے یہ تصویر لوڈ نہیں کی جا سکتی #%curr%" msgid "Blog" msgstr "بلاگ" msgid "Share on Facebook" msgstr "فيس بک پر شیئر کیجئیے" msgid "Tweet on Twitter" msgstr "ٹویٹر پر ٹویٹ کريں" msgid "EDITOR PICKS" msgstr "ایڈیٹر چنتا" msgid "POPULAR POSTS" msgstr "مقبول پوسٹس" msgid "FOLLOW US" msgstr "ہمیں فالو کریں" msgid "ABOUT US" msgstr "ہمارے بارے میں" msgid "More" msgstr "مزید" msgid "Featured" msgstr "نمایاں" msgid "All time popular" msgstr "مقبول ہر وقت" msgid "Likes" msgstr "پسند کرتا ہے" msgid "Register" msgstr "رجسٹر" msgid "of" msgstr "کے" msgid "Euro Member Countries" msgstr "یورو رکن ممالک" msgid "Your comment is awaiting moderation" msgstr "آپ کا تبصرہ اعتدال پسندی کا منتظر ہے" msgid "Follow us on Instagram" msgstr "Instagram پر ہمارے ساتھ چلیے" msgid "Back" msgstr "واپس" msgid "Sign in" msgstr "داخلہ" msgid "Sign up" msgstr "سائن اپ" msgid "Join" msgstr "شامل ہو جائیے" msgid "Welcome!" msgstr "خوش آمدید!" msgid "Log into your account" msgstr "اپنے اکاؤنٹ میں لاگ" msgid "Password recovery" msgstr "پاس ورڈ کی وصولی" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "آپ کا ای میل (انڈیکس یا سپیم فولڈر) براہ مہربانی چیک کریں، پاس ورڈ وہاں بھیجا گیا تھا." msgid "Australian Dollar" msgstr "آسٹریلوی ڈالر" msgid "Bulgarian Lev" msgstr "بلغارین لیو" msgid "Brazilian Real" msgstr "برازیل حقیقی" msgid "Canadian Dollar" msgstr "کینیڈین ڈالر" msgid "Swiss Franc" msgstr "سوئس فرانک" msgid "Chinese Yuan Renminbi" msgstr "چینی یوآن رینمنبی" msgid "Czech Republic Koruna" msgstr "جمہوریہ چیک کرونا" msgid "Danish Krone" msgstr "ڈینش کرون" msgid "British Pound" msgstr "برطانوی پاؤنڈ" msgid "Hong Kong Dollar" msgstr "ہانگ کانگ ڈالر" msgid "Croatian Kuna" msgstr "کروشین کونا" msgid "Hungarian Forint" msgstr "ہنگرین فورنٹ" msgid "Indonesian Rupiah" msgstr "انڈونیشین روپیہ" msgid "Israeli Shekel" msgstr "اسرائیلی شیکل" msgid "Indian Rupee" msgstr "بھارتی روپیہ" msgid "Japanese Yen" msgstr "جاپانی ین" msgid "Korean (South) Won" msgstr "کوریا (جنوبی) جیت لیا" msgid "Mexican Peso" msgstr "میکسیکن پیسہ" msgid "Malaysian Ringgit" msgstr "ملائشین رنگٹ" msgid "Norwegian Krone" msgstr "نارویجن کرون" msgid "New Zealand Dollar" msgstr "نیوزی لینڈ ڈالر" msgid "Philippine Peso" msgstr "فلپائینی پیسہ" msgid "Polish Zloty" msgstr "پولش زلوٹی" msgid "Romanian (New) Leu" msgstr "رومنی (نئے) لیو" msgid "Russian Ruble" msgstr "روسی روبل" msgid "Swedish Krona" msgstr "سویڈش کرونا" msgid "Singapore Dollar" msgstr "سنگاپور ڈالر" msgid "Thai Baht" msgstr "تھائی باہت" msgid "Turkish Lira" msgstr "ترکی کا لیرا" msgid "United States Dollar" msgstr "امریکی ڈالر" msgid "South African Rand" msgstr "جنوبی افریقی رانڈ" msgid "Privacy Policy" msgstr "رازداری کی پالیسی" msgid "views" msgstr "خیالات" msgid "Modified date:" msgstr "نظر ثانی شدہ تاریخ:" msgid "Please enter your name here" msgstr "اپنا نام یہاں درج کریں" msgid "Please enter your email address here" msgstr "برائے مہربانی اپنا ای میل پتہ یہاں درج کریں" msgid "You have entered an incorrect email address!" msgstr "آپ نے غلط ای میل پتہ درج کیا ہے!" msgid "Please enter your comment!" msgstr "براہ مہربانی اپنی رائے درج کریں!" msgid "Logged in as" msgstr "کے طور پر لاگ ان" msgid "Log out?" msgstr "لاگ آوٹ؟" msgid "Logged in as %s. Edit your profile." msgstr "٪ s کے طور پر لاگ ان اپنی پروفائل میں ترمیم کریں." msgid "Edit" msgstr "ترمیم" msgid "Login" msgstr "میں لاگ ان کریں" msgid "Send My Password" msgstr "اپنا پاس ورڈ بھیجیں" msgid "Create an account" msgstr "کھاتا کھولیں" msgid "Welcome! Register for an account" msgstr "خوش آمدید! ایک اکاؤنٹ کے لئے رجسٹر کریں" msgid "About me" msgstr "میرے بارے میں" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "میرے براؤزر میں میرا نام، ای میل، اور ویب سائٹ محفوظ کریں اگلا وقت میں تبصرہ کریں." msgid "Orders" msgstr "احکامات" msgid "Addresses" msgstr "پتے" msgid "Account settings" msgstr "اکاؤنٹ کی ترتیبات" msgid "Hello" msgstr "ہیلو" msgid "No products in the cart." msgstr "ٹوکری میں کوئی مصنوعات نہیں." msgid "Product categories" msgstr "مصنوعات کی اقسام" msgid "Product tags" msgstr "مصنوعات کے ٹیگز" msgid "Success" msgstr "کامیابی" msgid "Acknowledgment is required!" msgstr "اعتراف ضروری ہے!" msgid "Please fill in a valid email." msgstr "براہ کرم ایک درست ای میل پُر کریں۔" msgid "Please fill in an email address." msgstr "براہ کرم ایک ای میل ایڈریس پُر کریں۔" msgid "Get into your account." msgstr "اپنے اکاؤنٹ میں داخل ہوں." msgid "My subscription account" msgstr "میرا سبسکرپشن اکاؤنٹ" msgid "Account details" msgstr "اکاؤنٹ کی تفصیلات" msgid "Subscriptions" msgstr "سبسکرپشنز" msgid "My woo account" msgstr "میرا وو اکاؤنٹ" msgid "Log out" msgstr "لاگ آوٹ" msgid "Email address" msgstr "ای میل اڈریس" msgid "Username" msgstr "صارف نام" msgid "Password" msgstr "پاس ورڈ" msgid "must contain at least one lower case (a..z)" msgstr "کم از کم ایک لوئر کیس (a..z) پر مشتمل ہونا چاہیے" msgid "must contain at least one upper case (A..Z)" msgstr "کم از کم ایک اپر کیس (a..z) پر مشتمل ہونا چاہیے" msgid "must contain at least 6 characters in length" msgstr "لمبائی میں کم از کم 6 حروف پر مشتمل ہونا چاہیے۔" msgid "Repeat password" msgstr "پاس ورڈ دہراؤ" msgid "Already have an account?" msgstr "پہلے سے اکاؤنٹ ہے؟" msgid "Recover password" msgstr "پاس ورڈ بازیافت کریں۔" msgid "Username or Email address" msgstr "استعمال کنندہ کا نام یا ای میل پتہ" msgid "Forgot password?" msgstr "پاسورڈ بھول گے؟" msgid "Don't have an account?" msgstr "اکاؤنٹ نہیں ہے؟" msgid "Dashboard" msgstr "ڈیش بورڈ" msgid "Welcome to your account!" msgstr "آپ کے اکاؤنٹ میں خوش آمدید!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "ہیلو %1$s (%2$s نہیں؟ %3$s)! اپنے اکاؤنٹ کے ڈیش بورڈ سے آپ اپنی سبسکرپشنز دیکھ سکتے ہیں اور اپنے اکاؤنٹ کی تفصیلات کا نظم کر سکتے ہیں۔" msgid "Lost Password" msgstr "کھوئے ہوئے پاس ورڈ" msgid "Manage your account details." msgstr "اپنے اکاؤنٹ کی تفصیلات کا نظم کریں۔" msgid "First name" msgstr "پہلا نام" msgid "Last name" msgstr "آخری نام" msgid "Display name" msgstr "ڈسپلے نام" msgid "Current password" msgstr "موجودہ خفیہ لفظ" msgid "(leave blank to leave unchanged)" msgstr "(بغیر تبدیل ہونے کے لیے خالی چھوڑ دیں)" msgid "New password" msgstr "نیا پاس ورڈ" msgid "Confirm new password" msgstr "نئے پاس ورڈ کی توثیق کریں" msgid "Save changes" msgstr "تبدیلیاں محفوظ کرو" msgid "All your subscriptions." msgstr "آپ کی تمام سبسکرپشنز۔" msgid "Plan" msgstr "منصوبہ" msgid "Payment type" msgstr "ادائیگی کی قسم" msgid "Status" msgstr "حالت" msgid "Months" msgstr "مہینے" msgid "Start date" msgstr "شروع کرنے کی تاریخ" msgid "End date" msgstr "آخری تاریخ" msgid "missing plan" msgstr "لاپتہ منصوبہ" msgid "Free" msgstr "مفت" msgid "Active" msgstr "فعال" msgid "Trial" msgstr "مقدمے کی سماعت" msgid "Blocked" msgstr "مسدود" msgid "Closed" msgstr "بند" msgid "Not paid" msgstr "ادائیگی نہیں کی" msgid "Awaiting payment" msgstr "ادائیگی کے منتظر" msgid "Subscription info" msgstr "رکنیت کی معلومات" msgid "ID" msgstr "آئی ڈی" msgid "Name" msgstr "نام" msgid "Company name" msgstr "کمپنی کا نام" msgid "VAT" msgstr "VAT" msgid "Address" msgstr "پتہ" msgid "City" msgstr "شہر" msgid "Country/State" msgstr "ملک/ریاست" msgid "Email" msgstr "ای میل" msgid "Postal code" msgstr "ڈاک کامخصوص نمبر" msgid "Direct bank transfer details" msgstr "براہ راست بینک ٹرانسفر کی تفصیلات" msgid "Account name" msgstr "کھاتے کا نام" msgid "Account number" msgstr "اکاؤنٹ نمبر" msgid "Bank name" msgstr "بینک کا نام" msgid "Routing number" msgstr "رہنما عدد" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "ہدایات" msgid "No subscription created." msgstr "کوئی رکنیت نہیں بنائی گئی۔" msgid "Choose plan" msgstr "منصوبہ منتخب کریں" msgid "Payment methods" msgstr "ادائیگی کے طریقے" msgid "Total" msgstr "کل" msgid "Period" msgstr "مدت" msgid "Subscription summary" msgstr "رکنیت کا خلاصہ" msgid "Phone" msgstr "فون" msgid "Postcode" msgstr "پوسٹ کوڈ" msgid "County" msgstr "کاؤنٹی" msgid "Town/City" msgstr "قصبہ/شہر" msgid "Street address" msgstr "گلی کا پتہ" msgid "Country/Region" msgstr "ملک/علاقہ" msgid "VAT Number" msgstr "واٹ نمبر" msgid "(optional)" msgstr "(اختیاری)" msgid "Billing details" msgstr "بل کی تفصیلات" msgid "User information" msgstr "صارف کی معلومات" msgid "It seems that no available payment methods have been configured." msgstr "ایسا لگتا ہے کہ ادائیگی کا کوئی دستیاب طریقہ ترتیب نہیں دیا گیا ہے۔" msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "شکریہ! ہمیں آپ کو یہاں دیکھ کر خوشی ہوئی ہے۔ آپ کی رکنیت جلد ہی چالو ہو جائے گی!" msgid "Our bank details" msgstr "ہمارے بینک کی تفصیلات" msgid "Your subscription details" msgstr "آپ کی رکنیت کی تفصیلات" msgid "View subscription" msgstr "سبسکرپشن دیکھیں" msgid "You have not selected a valid subscription plan." msgstr "آپ نے ایک درست رکنیت کا منصوبہ منتخب نہیں کیا ہے۔" msgid "Field empty" msgstr "میدان خالی" msgid "Empty first name" msgstr "خالی پہلا نام" msgid "Empty last name" msgstr "خالی آخری نام" msgid "Empty country" msgstr "خالی ملک" msgid "Empty address" msgstr "خالی پتہ" msgid "Empty city" msgstr "خالی شہر" msgid "Empty county" msgstr "خالی کاؤنٹی" msgid "Empty postcode" msgstr "خالی پوسٹ کوڈ" msgid "Empty phone" msgstr "خالی فون" msgid "Empty email" msgstr "خالی ای میل" msgid "Email or username empty!" msgstr "ای میل یا صارف نام خالی!" msgid "Pass empty!" msgstr "خالی پاس!" msgid "Username incorrect!" msgstr "صارف نام غلط ہے!" msgid "Invalid Pass Pattern!" msgstr "غلط پاس پیٹرن!" msgid "Please activate your account by following the link sent to your email address." msgstr "براہ کرم اپنے ای میل ایڈریس پر بھیجے گئے لنک پر عمل کرکے اپنا اکاؤنٹ فعال کریں۔" msgid "Resend activation link" msgstr "ایکٹیویشن لنک دوبارہ بھیجیں۔" msgid "In order to have access to this section, you have to activate your account." msgstr "اس سیکشن تک رسائی حاصل کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔" msgid "Email empty!" msgstr "ای میل خالی!" msgid "Username empty!" msgstr "صارف نام خالی ہے!" msgid "Pass pattern incorrect!" msgstr "پاس پیٹرن غلط!" msgid "Retyped pass empty!" msgstr "دوبارہ ٹائپ شدہ پاس خالی!" msgid "Retyped pass exactly!" msgstr "بالکل دوبارہ ٹائپ کیا گیا پاس!" msgid "User already exists!" msgstr "صارف پہلے سے موجود ہے!" msgid "Email already exists!" msgstr "ای میل پہلے سے موجود ہے!" msgid "Your account could not be created." msgstr "آپ کا اکاؤنٹ نہیں بنایا جا سکا۔" msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "اپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔" msgid "User empty!" msgstr "صارف خالی!" msgid "User does not exists!" msgstr "صارف موجود نہیں ہے!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "ایکٹیویشن کا نیا لنک تیار کیا گیا تھا۔ اپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔" msgid "CAPTCHA verification failed!" msgstr "کیپچا کی توثیق ناکام!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "کیپچا صارف سکور ناکام ہو گیا۔ براے مہربانی ہم سے رابطہ کریں!" msgid "Loading" msgstr "لوڈ ہو رہا ہے" msgid "Here are the results for the search:" msgstr "تلاش کے نتائج یہ ہیں:" msgid "Price" msgstr "قیمت" msgid "EXCLUSIVE" msgstr "خصوصی" msgid "Tel:" msgstr "ٹیلی فون:" msgid "Share" msgstr "بانٹیں" msgid "Print" msgstr "پرنٹ کریں" msgid "At" msgstr "پر" msgid "Comments are closed." msgstr "تبصرے بند ہیں." msgid "Payment method" msgstr "ادائیگی کا طریقہ" msgid "You must be logged out to view this page." msgstr "اس صفحہ کو دیکھنے کے لیے آپ کو لاگ آؤٹ کرنا ہوگا۔" msgid "Retyped Pass incorrect!" msgstr "دوبارہ ٹائپ شدہ پاس غلط!" msgid "%s is a required field." msgstr "%s ایک مطلوبہ فیلڈ ہے۔" msgid "Please provide a valid email address." msgstr "براہ کرم ایک درست ای میل ایڈریس فراہم کریں۔" msgid "This email address is already registered." msgstr "یہ ای میل پتہ پہلے سے رجسٹرڈ ہے." msgid "Please fill out all password fields." msgstr "براہ کرم تمام پاس ورڈ فیلڈز کو پُر کریں۔" msgid "Please enter your current password." msgstr "براہ کرم اپنا موجودہ پاس ورڈ درج کریں۔" msgid "Please re-enter your password." msgstr "براہ مہربانی اپنے پاس ورڈ کا دوبارہ اندراج کیجیے." msgid "New passwords do not match." msgstr "نئے پاس ورڈز مماثل نہیں ہیں۔" msgid "Your current password is incorrect." msgstr "آپ کا موجودہ پاس ورڈ غلط ہے۔" msgid "Account details changed successfully." msgstr "اکاؤنٹ کی تفصیلات کامیابی کے ساتھ تبدیل ہوگئیں۔" msgid "A new activation link has been sent to your email address!" msgstr "ایک نیا ایکٹیویشن لنک آپ کے ای میل ایڈریس پر بھیج دیا گیا ہے!" msgid "unlimited" msgstr "لامحدود" msgid "Pay with Stripe" msgstr "پٹی کے ساتھ ادائیگی کریں" msgid "Cancel subscription" msgstr "رکنیت منسوخ کریں" msgid "Please check your email and confirm subscription!" msgstr "براہ کرم اپنا ای میل چیک کریں اور سبسکرپشن کی تصدیق کریں!" msgid "Successfully subscribed!" msgstr "کامیابی سے سبسکرائب کر لیا!" msgid "Successfully unsubscribed!" msgstr "کامیابی سے رکنیت ختم کر دی گئی!" msgid "Enter promo code here" msgstr "یہاں پرومو کوڈ درج کریں۔" msgid "Apply" msgstr "درخواست دیں" msgid "Coupon applied" msgstr "کوپن لاگو" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Uncaught error: کچھ غلط ہو گیا، براہ کرم صفحہ دوبارہ لوڈ کریں اور دوبارہ کوشش کریں!" msgid "The coupon code you entered is invalid" msgstr "آپ کا درج کردہ کوپن کوڈ غلط ہے۔" msgid "The coupon code you entered has reached its usage limit" msgstr "آپ نے جو کوپن کوڈ درج کیا ہے وہ اس کے استعمال کی حد کو پہنچ گیا ہے۔" msgid "The coupon code you entered has expired" msgstr "آپ کے درج کردہ کوپن کوڈ کی میعاد ختم ہو گئی ہے۔" msgid "Coupon name is required !" msgstr "کوپن کا نام درکار ہے!" msgid "Please enter a coupon code first!" msgstr "براہ کرم پہلے ایک کوپن کوڈ درج کریں!" msgid "Invalid" msgstr "غلط" msgid "Applied" msgstr "لاگو" msgid "Remove" msgstr "دور" msgid "Price not set" msgstr "قیمت مقرر نہیں" msgid "Grand Total" msgstr "مجموعی عدد" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "آپ کے پاس پہلے سے ہی سبسکرپشن ہے، لیکن یہ ابھی بھی ادائیگی کے انتظار میں ہے!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "یہ رکنیت منسوخ کر دی گئی ہے اور یہ %end_date% کو ختم ہو جائے گی۔" msgid "Go to checkout" msgstr "چیک آؤٹ پر جائیں۔" msgid "Stripe invoice details" msgstr "پٹی رسید کی تفصیلات" msgid "Stripe subscription details" msgstr "پٹی سبسکرپشن کی تفصیلات" msgid "Current status" msgstr "موجودہ صورت حال" msgid "Initial Invoice Paid" msgstr "ابتدائی رسید کی ادائیگی" msgid "Subscription Create: Initial Invoice Paid" msgstr "سبسکرپشن بنائیں: ابتدائی انوائس ادا کی گئی۔" msgid "Subscription Create: Initial Invoice has been created" msgstr "سبسکرپشن تخلیق: ابتدائی رسید بنائی گئی ہے۔" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "سبسکرپشن تخلیق: ابتدائی انوائس کو حتمی شکل دے دی گئی ہے، اور یہ ادا کرنے کے لیے تیار ہے۔" msgid "Subscription Update: Invoice Paid" msgstr "سبسکرپشن اپ ڈیٹ: رسید کی ادائیگی" msgid "Subscription Renew: Invoice Paid" msgstr "رکنیت کی تجدید: رسید کی ادائیگی" msgid "Subscription Renew: Invoice Finalized" msgstr "رکنیت کی تجدید: انوائس کو حتمی شکل دی گئی۔" msgid "Subscription Renew: Invoice Created" msgstr "سبسکرپشن کی تجدید: انوائس بنائی گئی۔" msgid "Subscription Renew: Invoice Upcoming" msgstr "سبسکرپشن کی تجدید: انوائس آنے والی" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "سبسکرپشن کی میعاد ختم ہو گئی: انوائس کالعدم ہو گئی (پہلی رسید ادا نہیں کی گئی تھی)" msgid "Subscription Deleted" msgstr "رکنیت حذف کر دی گئی" msgid "Subscription Create: Trialing" msgstr "سبسکرپشن تخلیق: ٹرائل کرنا" msgid "Subscription Canceled" msgstr "رکنیت منسوخ کر دی گئی۔" msgid "Subscription Create: Initial Invoice voided" msgstr "سبسکرپشن بنائیں: ابتدائی رسید کالعدم" msgid "Subscription Renew: Invoice voided" msgstr "رکنیت کی تجدید: رسید کالعدم" msgid "Subscription Update: Invoice voided" msgstr "سبسکرپشن اپ ڈیٹ: رسید کالعدم" msgid "Invoice updated" msgstr "انوائس اپ ڈیٹ" msgid "Subscription has been canceled and will end on: " msgstr "سبسکرپشن منسوخ کر دی گئی ہے اور اس پر ختم ہو جائے گی:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "سیٹ اپ کامیاب - آپ نے مستقبل کی ادائیگیوں کے لیے اپنی ادائیگی کا طریقہ کامیابی سے ترتیب دیا ہے۔" msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "سیٹ اپ ناکام ہو گیا - ہمیں افسوس ہے، آپ کی ادائیگی کا طریقہ ترتیب دینے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔" msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "ادائیگی کامیاب - آپ کی تازہ ترین رکنیت کی ادائیگی کامیابی کے ساتھ مکمل ہو گئی۔" msgid "Payment processing - Your latest subscription payment is being processed." msgstr "ادائیگی کی کارروائی - آپ کی سبسکرپشن کی تازہ ترین ادائیگی پر کارروائی کی جا رہی ہے۔" msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "ادائیگی ناکام ہو گئی - ہم معذرت خواہ ہیں، آپ کی ادائیگی پر کارروائی کرنے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔" msgid "Download" msgstr "ڈاؤن لوڈ کریں" msgid "Stripe invoice" msgstr "پٹی رسید" msgid "N/A" msgstr "N / A" msgid "Latest invoice" msgstr "تازہ ترین رسید" msgid "Invoice" msgstr "رسید" msgid "Unpaid subscription." msgstr "بلا معاوضہ رکنیت." msgid "Locked subscription." msgstr "مقفل سبسکرپشن۔" msgid "Invalid subscription." msgstr "غلط رکنیت." msgid "Pay now" msgstr "اب ادا" msgid "Show more info" msgstr "مزید معلومات دکھائیں" msgid "Show less info" msgstr "کم معلومات دکھائیں" msgid "Complete payment" msgstr "مکمل ادائیگی" msgid "or" msgstr "یا" msgid "Setup Payment" msgstr "سیٹ اپ ادائیگی" msgid "Go to Payment" msgstr "ادائیگی پر جائیں" msgid "Alphabetical A -> Z" msgstr "حروف تہجی a -> z" msgid "Oldest posts" msgstr "سب سے پرانی پوسٹس" msgid "Select" msgstr "منتخب کریں" msgid "on" msgstr "پر" msgid "No bookmarked posts" msgstr "کوئی بک مارک پوسٹ نہیں" msgid "Log in With Facebook" msgstr "فیس بک لاگ ان کریں" msgid "Forgot your password? Get help" msgstr "اپنا پاس ورڈ بھول گئے؟ مدد حاصل کرو" msgid "Someone has requested a password reset for the following account:" msgstr "کسی نے درج ذیل اکاؤنٹ کے لیے پاس ورڈ دوبارہ ترتیب دینے کی درخواست کی ہے۔" msgid "Username: %s" msgstr "صارف نام: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "اگر یہ غلطی تھی تو اس ای میل کو نظر انداز کر دیں اور کچھ نہیں ہوگا۔" msgid "To reset your password, visit the following address:" msgstr "اپنا پاس ورڈ دوبارہ ترتیب دینے کے لیے درج ذیل پتے پر جائیں:" msgid "Members" msgstr "اراکین" msgid "Downloads" msgstr "ڈاؤن لوڈ" msgid "inc. TAX" msgstr "inc. ٹیکس" msgid "ex. TAX" msgstr "سابق. ٹیکس" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "آپ کی پوسٹ بنانے کی کوشش کے دوران ایک غیر متوقع خرابی واقع ہو گئی ہے۔ دوبارہ کوشش کریں." msgid "Your post has been successfully created." msgstr "آپ کی پوسٹ کامیابی کے ساتھ بنائی گئی ہے۔" msgid "Your post has been successfully updated." msgstr "آپ کی پوسٹ کو کامیابی سے اپ ڈیٹ کر دیا گیا ہے۔" msgid "An unexpected error has occurred and the mail could not be sent." msgstr "ایک غیر متوقع خرابی پیش آ گئی ہے اور میل نہیں بھیجی جا سکی۔" msgid "Location:" msgstr "مقام:" msgid "The email has been successfully sent." msgstr "ای میل کامیابی سے بھیج دیا گیا ہے۔" msgid "An unexpected error has occurred. Please try again." msgstr "ایک غیر متوقع خرابی واقع ہوئی ہے. دوبارہ کوشش کریں." msgid "Drag and drop or browse" msgstr "گھسیٹیں اور چھوڑیں یا براؤز کریں۔" msgid "Search by keyword..." msgstr "مطلوبہ الفاظ سے تلاش کریں..." msgid "Select parent" msgstr "والدین کو منتخب کریں" msgid "Add new" msgstr "نیا شامل کریں" msgid "Parent" msgstr "والدین" msgid "Select child" msgstr "بچے کو منتخب کریں" msgid "Select sub-child" msgstr "ذیلی بچے کو منتخب کریں۔" msgid "Posted by" msgstr "کی طرف سے پوسٹ کیا گیا" msgid "Overall" msgstr "مجموعی طور پر" msgid "Post review" msgstr "جائزہ پوسٹ کریں" msgid "This field is required!" msgstr "اس کو پر کرنا ضروری ہے!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "آپ کا جائزہ شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔" msgid "Your review has been registered and is awaiting approval." msgstr "آپ کا جائزہ رجسٹر ہو چکا ہے اور منظوری کا انتظار ہے۔" msgid "Submit reply" msgstr "جواب جمع کروائیں" msgid "Enter your reply" msgstr "اپنا جواب درج کریں۔" msgid "Cancel" msgstr "منسوخ" msgid "Some required fields have been left blank." msgstr "کچھ مطلوبہ فیلڈز کو خالی چھوڑ دیا گیا ہے۔" msgid "Please enter a valid email address." msgstr "برائے مہربانی قابل قبول ای میل ایڈریس لکھیں." msgid "The number cannot be lower than" msgstr "تعداد سے کم نہیں ہو سکتی" msgid "The number cannot be higher than" msgstr "تعداد سے زیادہ نہیں ہو سکتی" msgid "Leave a review" msgstr "ایک جائزہ چھوڑ دو" msgid "Submit" msgstr "جمع کرائیں" msgid "Update" msgstr "اپ ڈیٹ" msgid "out of 5" msgstr "5 میں سے" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "آپ جائزوں کی حد تک پہنچ گئے ہیں جو آپ اس مضمون کے لیے جمع کرا سکتے ہیں۔" msgid "Log in to leave a review." msgstr "ایک جائزہ چھوڑنے کے لیے لاگ ان کریں۔" msgid "Enter a title for your review" msgstr "اپنے جائزے کے لیے ایک عنوان درج کریں۔" msgid "Enter your review" msgstr "اپنا جائزہ درج کریں۔" msgid "Review criteria" msgstr "معیار کا جائزہ لیں" msgid "Enter Your Name or Company" msgstr "اپنا نام یا کمپنی درج کریں۔" msgid "Submit review" msgstr "جائزہ جمع کروائیں" msgid "Delete" msgstr "حذف کریں" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "آپ کا جواب شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔" msgid "You have not created any posts." msgstr "آپ نے کوئی پوسٹس نہیں بنائی ہیں۔" msgid "The selected post has been successfully deleted." msgstr "منتخب پوسٹ کو کامیابی سے حذف کر دیا گیا ہے۔" msgid "Rating" msgstr "درجہ بندی" msgid "Title" msgstr "عنوان" msgid "Post image" msgstr "تصویر پوسٹ کریں" msgid "Categories" msgstr "اقسام" msgid "Date" msgstr "تاریخ" msgid "Source title" msgstr "ماخذ کا عنوان" msgid "No rating" msgstr "کوئی درجہ بندی نہیں" msgid "View" msgstr "دیکھیں" msgid "Publish" msgstr "شائع کریں" msgid "Add new post" msgstr "نئی پوسٹ شامل کریں" msgid "Edit post" msgstr "پوسٹ میں ترمیم کریں" msgid "Publish a post" msgstr "ایک پوسٹ شائع کریں" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title% کی حیثیت تبدیل کر دی گئی ہے۔" msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "کیا آپ واقعی %post_title% شائع کرنا چاہتے ہیں؟" msgid "Delete a post" msgstr "ایک پوسٹ کو حذف کریں" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "کیا آپ واقعی %post_title% کو حذف کرنا چاہتے ہیں؟" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% کو کوڑے دان میں ڈال دیا گیا ہے۔" msgid "You do not hold the required priveleges to execute this request." msgstr "آپ کے پاس اس درخواست پر عمل کرنے کے لیے مطلوبہ مراعات نہیں ہیں۔" msgid "No search results." msgstr "تلاش کا کوئی نتیجہ نہیں" msgid "Yes" msgstr "جی ہاں" msgid "No" msgstr "نہیں" msgid "Save" msgstr "محفوظ کریں" msgid "Search for a location" msgstr "ایک مقام تلاش کریں" msgid "Address line" msgstr "پتہ کی ستر" msgid "(Optional)" msgstr "(اختیاری)" msgid "State" msgstr "حالت" msgid "Country" msgstr "ملک" msgid "Create new term" msgstr "نئی اصطلاح بنائیں" msgid "Description" msgstr "تفصیل" msgid "Delete bookmarks" msgstr "بک مارکس کو حذف کریں" msgid "Reset your password" msgstr "آپ کا پاس ورڈ دوبارہ ترتیب دیں" msgid "The password reset key has expired." msgstr "پاس ورڈ دوبارہ ترتیب دینے کی کلید ختم ہو گئی ہے۔" msgid "The password reset key is invalid." msgstr "پاس ورڈ دوبارہ ترتیب دینے کی کلید غلط ہے۔" msgid "New password *" msgstr "نیا پاس ورڈ *" msgid "Repeat new password *" msgstr "نیا پاس ورڈ دہرائیں *" msgid "Save password" msgstr "پاس ورڈ محفوظ کریں" msgid "Your account has been successfully activated!" msgstr "آپ کا اکاؤنٹ کامیابی سے ایکٹیویٹ ہو گیا ہے!" msgid "Your account has already been activated!" msgstr "آپ کا اکاؤنٹ پہلے ہی ایکٹیویٹ ہو چکا ہے!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "درست ایکٹیویشن لنک کے لیے اپنا ای میل چیک کریں۔ یہ لنک غلط ہے۔" msgid "Account activation" msgstr "اکاونٹ ایکٹو کرنا" msgid "Please enter a new password before proceeding." msgstr "براہ کرم آگے بڑھنے سے پہلے نیا پاس ورڈ درج کریں۔" msgid "Please confirm the new password before proceeding." msgstr "براہ کرم آگے بڑھنے سے پہلے نئے پاس ورڈ کی تصدیق کریں۔" msgid "Please make sure that the passwords match." msgstr "براہ کرم یقینی بنائیں کہ پاس ورڈ مماثل ہیں۔" msgid "The password has been reset successfully." msgstr "پاس ورڈ کامیابی سے دوبارہ ترتیب دیا گیا ہے۔" msgid "Manage your billing details." msgstr "اپنی بلنگ کی تفصیلات کا نظم کریں۔" msgid "Profile picture" msgstr "پروفائل تصویر" msgid "Remaining publishing rights." msgstr "باقی اشاعتی حقوق۔" msgid "The number of articles you have left to publish across different post types." msgstr "مضامین کی تعداد جو آپ نے پوسٹ کی مختلف اقسام میں شائع کرنے کے لیے چھوڑی ہے۔" msgid "Bank transfer" msgstr "بینک ٹرانسفر" msgid "Direct Bank Transfer" msgstr "براہ راست بینک ٹرانسفر" msgid "Canceled" msgstr "منسوخ" msgid "Cycle Interval" msgstr "سائیکل وقفہ" msgid "In order to update this filed, you have to activate your account." msgstr "اس فائل کو اپ ڈیٹ کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔" msgid "Cannot process %s field." msgstr "%s فیلڈ پر کارروائی نہیں کر سکتے۔" msgid "Modified date" msgstr "ترمیم شدہ تاریخ" translation/fi.mo000064400000102044150211537140010035 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,Y#ZCZ IZSZ cZmZ}Z Z ZZQZ[([<[E[ N[$Y[~[[[[[[[ [[[ \"\+\ <\J\ \\j\|\\\ \\\ \\\\] -]:]T] []e] ]] ]]] ]]#]^!^6^0Q^.^ ^ ^^ ^ ^^ __(_7_J_]_|____ _ __ ` ``(`0`7` O`Y`m```` `` ```j`]atayaaaaUa0a;,bGhb bbbb bbc1c7cIcQYcccccc dd $d.d>dOdXd adod xdddd*d,de1e@ePe6pee eeeeef'fBf KfYfrff ff f fffffffrg gg!ggggh)h2hNh ih vhhhh h hhhii &i0i?iOibiwii#ii iiii iirj {j j;jDj k k&k8k @kKLkUkSkTBl+l)ll% m0/m`mvm'mm!mmn(.n$Wn|nn nn nn n n n oo ,o 6oWokoqooo oo o oo oo p $p0p 9pEpVp ipsp#ppppp#p q$q"Bq#eqqqqqqq q qqhrlr~rrrr rrrrrs{sYssstt1tCt]tft/yt8t8tu,uFu ]ugu luwuuuuuuuuu(u($vMMv+vvvHv 5w'Vw#~w"w&ww" x/x Ox\x qx{xx xxxxxxx xRx.Ry$y4y%y)z+zJzizGz#z'z({*E{ p{.{"{7{|<#|`|q| || ||Q|}+} <}I}e}}}9}*}~#~=~&Y~~~ ~~~~~ ~ ~ 2&!Y{5E-* X/y37݀"."Qt / &:-:h7ۂ  )8H6 Ń Ƀ Ӄ  lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: fi %post_title% on siirretty roskakoriin.%curr% / %total%%s on pakollinen kenttä.(valinnainen)(jätä tyhjäksi jättääksesi ennalleen)(valinnainen)1 KOMMENTTI7 päivän suosituinUusi aktivointilinkki on lähetetty sähköpostiosoitteeseesi!Salasana lähetetään sinulla sähköpostitse.MEISTÄMinustaTilin aktivointiTilin tiedotTilitietojen muutos onnistui.Tilin nimiTilinumeroTilin asetuksetTunnustus vaaditaan!AktiivinenLisää uusiLisää uusi viestiOsoiteOsoiteriviOsoitteitaKaikkiKaikkien aikojen suosituimpiaKaikki tilauksesi.Aakkosellinen a -> zOnko sinulla jo tili?Odottamaton virhe yritettäessä luoda viestiäsi. yritä uudelleen.Tapahtui odottamaton virhe, eikä postia voitu lähettää.Odottamaton virhe on tapahtunut. yritä uudelleen.SovelletaanKäytäArkistotOletko varma, että haluat poistaa %post_title%?Oletko varma, että haluat julkaista %post_title%?KloAustralian dollariTekijäTekijätOdotetaan maksuaTakaisinPankin nimiPankkisiirtoBic/swiftLaskutustiedotTukossaBlogiBrasilian realEnglannin puntaBulgarian levTekijäArvostelupisteiden mukaanCaptcha-käyttäjän tulos epäonnistui. ota meihin yhteyttä!Captcha-vahvistus epäonnistui!SULJEKOMMENTITKanadan dollariPeruuttaaPeruuta vastausPeruuttaa tilausPeruutettu%s kenttää ei voi käsitellä.LuokatTarkista sähköpostistasi oikea aktivointilinkki. tämä linkki on virheellinen.Kiinan yuan renminbiValitse suunnitelmaKaupunkiSuljettuKommentti:Kommenttien lisääminen on estetty.Yrityksen nimiTäydellinen maksuVahvista uusi salasanaOta meihin yhteyttäJatkaMaaMaa/alueMaa/osavaltioLääniKuponki käytössäKupongin nimi vaaditaan!Luo tiliLuoda uusi termiKroatian kunaNykyinen salasanaNykyinen tilaSyklin intervalliTšekki korunaPäivittäiset Arkistot:Tanskan kruunuKojelautaPäivämääräPoistaaPoista viestiPoista kirjanmerkitKuvausSuora pankkisiirtoSuoran pankkisiirron tiedotNäyttönimiEikö sinulla ole tiliä?LadataLatauksetVedä ja pudota tai selaaPOIMINTOJALISÄÄ UUTISIAYKSINOMAINENMuokataMuokkaa viestiäSähköpostiSähköpostiosoiteSähköpostiosoitetta ei löytynyt!Sähköposti on jo olemassa!Sähköposti tyhjä!Sähköposti oli väärä!Sähköpostiosoite tai käyttäjätunnus tyhjä!Sähköposti tai käyttäjänimi oli väärä!Sähköposti:Tyhjä osoiteTyhjä kaupunkiTyhjä maaTyhjä kuntaTyhjä sähköpostiTyhjä etunimiTyhjä sukunimiTyhjä puhelinTyhjä postinumeroPäättymispäiväKirjoita nimesi tai yrityksesiAnna arvostelullesi otsikkoSyötä tarjouskoodi tähänKirjoita vastauksesiKirjoita arvostelusiEuro- maissaSEURAA MEITÄFanitVarustellunPääviestitKenttä tyhjäEtunimiSeuraaSeuraa meitä instagramSeuraajatUnohtuiko salasana?Unohditko salasanasi?Unohditko salasanasi? Hae apuaVapaaPäästä tilillesi.Mene maksuunSiirry kassalleLoppusummaKOTISIVUHeiHei %1$s (ei %2$s? %3$s)! tilisi hallintapaneelista voit tarkastella tilauksiasi ja hallita tilitietojasi.Tässä haun tulokset:KotiHongkongin dollariUnkarin forinttiIBANIDJos tämä oli virhe, jätä tämä sähköposti huomiotta, niin mitään ei tapahdu.Jos et ole tyytyväinen tuloksiin, hae uudelleenPäästäksesi tähän osioon, sinun on aktivoitava tilisi.Jotta voit päivittää tämän tiedoston, sinun on aktivoitava tilisi.Intian rupiaIndonesian rupiaAlkuperäinen lasku maksettuOhjeetVirheellinenVirheellinen läpäisymalli!Virheellinen tilaus.LaskuLasku päivitettyIsraelin shekelNäyttää siltä, että käytettävissä olevia maksutapoja ei ole määritetty.Japanin jeniäLiittyä seuraanKorean (etelä) woniaVIIMEISIMMÄT ARTIKKELITJÄTÄ VASTAUSKIRJAUDU SISÄÄNSukunimiViimeisinViimeisin laskuJätä arvosteluTykkääTykkääLataa lisääLadataanSijainti:Lukittu liittymä.Kirjaudu sisäänKirjaudu sisään facebookillaKirjaudu sisään jättääksesi kommentinKirjaudu sisään jättääksesi arvostelun.Kirjaudu tilillesiKirjautua ulosKirjautua ulos?Kirjautuneena sisään nimelläKirjautunut sisään nimellä% s. Muokkaa profiiliasi.Kirjaudu sisäänKirjaudu ulosKadonnut SalasanaLISÄÄ TEKIJÄLTÄLISÄÄ TARINOITAMalesian ringgitHallita tilitietojasi.Hallita laskutustietojasi.JäsenetMeksikon pesoMuokattu päivämääräMuokattu päivämäärä:Kuukausittaiset Arkistot:KuukaudetLisääSuosituinTilaustiliniMinun woo tiliniN/aEI KOMMENTTEJANimiNimi:Uuden-Seelannin dollariUusi aktivointilinkki luotiin. tarkista sähköpostisi (postilaatikko tai roskapostikansio) vahvistaaksesi tilisi.Uusi salasanaUusi salasana *Uudet salasanat eivät täsmää.SeuraavaSeuraava (Oikea nuolinäppäin)Seuraava artikkeliEiEi kirjanmerkkeihin merkittyjä viestejäEi näytettäviä viestejäEi tuotteita ostoskorissa.Ei arvosanaaEi tuloksiaHakusi ei tuottanut tuloksiaEi hakutuloksia.Tilausta ei luotu.Norja kruunuEi maksettuVIIMEISIMMÄT VIESTITKOKONAISPISTEETVanhimmat viestitHups… Error 404TilauksiaPankkitietommeYleensä ottaenSUOSITTU KATEGORIASUOSITUIMMAT VIESTITVIESTITSivuSivu %CURRENT_PAGE% / %TOTAL_PAGES%VanhempiPass tyhjä!Passikuvio väärä!SalasanaSalasanan palautusMaksa nytMaksa raidallaMaksu epäonnistui - valitettavasti maksusi käsittelyssä tapahtui virhe. yritä uudelleen toisella maksutavalla.MaksutapaMaksutavatMaksun käsittely - viimeisin tilausmaksusi käsitellään.Maksu onnistui - viimeisin tilausmaksusi suoritettiin onnistuneesti.MaksutapaAjanjaksoaFilippiinien pesoPuhelinSuunnitelmaAktivoi tilisi seuraamalla sähköpostiosoitteeseesi lähetettyä linkkiä.Tarkista sähköpostisi (saapuvat tai roskapostikansio), salasana lähetettiin sinne.Tarkista sähköpostisi (postilaatikko tai roskapostikansio) vahvistaaksesi tilisi.Tarkista sähköpostisi (indeksi tai roskapostikansio), salasana lähetettiin sinne.Tarkista sähköpostisi ja vahvista tilaus!Vahvista uusi salasana ennen kuin jatkat.Syötä ensin kuponkikoodi!Anna uusi salasana ennen kuin jatkat.Ole hyvä ja syötä toimiva sähköpostiosoite.Kirjoita kommenttisi!Anna nykyinen salasanasi.Kirjoita sähköpostiosoitteesi tähänKirjoita nimesi tähänTäytä kelvollinen sähköposti.Täytä sähköpostiosoite.Täytä kaikki salasanakentät.Varmista, että salasanat täsmäävät.Anna kelvollinen sähköpostiosoite.Kirjoita salasanasi uudelleen.Odota…Puolan zlotyLähetä KommenttiLähetä kuvaLähetä arvosteluPostinumeroPostinumeroLähettänytViestitViestit, jotka on tagattuEdellinenEdellinen (Vasen nuolinäppäin)Edellinen artikkeliHintaHintaa ei asetettuTulostaTietosuojakäytäntöTuoteryhmätTuotetunnisteetProfiilikuvaJulkaistaJulkaise postausREKISTERÖIDYLIITTYVÄT ARTIKKELITARVOSTELUN YLEISNÄKYMÄSatunnainenLuokitusLue lisääPalauta salasanaPalauta salasanasiRekisteriRekisteröi käyttäjätiliJäljellä olevat julkaisuoikeudet.PoistaToista uusi salasana *Toista salasanaVastausLähetä aktivointilinkki uudelleenNollaa salasanaUudelleenkirjoitettu passi väärin!Uudelleenkirjoitettu passi tyhjä!Kirjoitettu uudelleen täsmälleen!TarkistuskriteeritRomania (uusi) leuReititysnumeroVenäjän ruplaJAALÄHDETIIVISTELMÄTallentaaTallenna muutoksetTallenna nimi, sähköpostiosoite ja verkkosivusto tällä selaimella seuraavan kerran kommentoidessani.Tallenna salasanaHakuEtsi hakusanalla...Etsi sijaintiaValitseValitse lapsiValitse vanhempiValitse alalapsiLähetä SalasananiLähetä salasananiMääritä maksuAsennus epäonnistui - valitettavasti tapahtui virhe määritettäessä maksutapaa. yritä uudelleen toisella maksutavalla.Asennus onnistui – olet onnistuneesti määrittänyt maksutavan tulevia maksuja varten.JaaJaa FacebookissaNäytä vähemmän tietoaNäytä lisätietojaKirjaudu sisäänKirjaudu sisään / LiityKirjauduSingaporen dollariJotkut pakolliset kentät on jätetty tyhjiksi.Joku on pyytänyt salasanan vaihtoa seuraavalle tilille:Pahoittelut, mutta etsimääsi sivustoa ei ole olemassa.Lähteen otsikkoEtelä-afrikkalainen randAloituspäivämääräOsavaltioTilaKatuosoiteRaidallinen laskuRaitalaskun tiedotRaidan tilaustiedotLähetäLähetä vastausLähetä arvosteluTilaaTilaajatTilaus peruttuTilaus luo: alkuperäinen lasku maksettuTilaus luo: alkuperäinen lasku on luotuTilaus luo: alkuperäinen lasku on viimeistelty ja se on valmis maksettavaksiTilaus luo: alkuperäinen lasku mitätöityTilaus luo: kokeiluTilaus poistettuTilaus vanhentunut: lasku mitätöity (ensimmäistä laskua ei maksettu)Tilauksen uusiminen: lasku luotuTilauksen uusiminen: lasku viimeisteltyTilauksen uusiminen: lasku maksettuTilauksen uusiminen: lasku tulossaTilauksen uusiminen: lasku mitätöityTilauspäivitys: lasku maksettuTilauspäivitys: lasku mitätöityTilaus on peruttu ja päättyy:TilaustiedotTilausten yhteenvetoTilauksiaMenestysTilattu onnistuneesti!Tilaus peruutettu onnistuneesti!Ruotsin kruunuSveitsin frangiTAGITTagiTagitPuh:Thaimaan bahtKiitos! olemme iloisia nähdessämme sinut täällä. tilauksesi aktivoidaan pian!Sisältöä osoitteesta %url% ei voitu ladata.Antamasi kuponkikoodi on vanhentunutAntamasi kuponkikoodi on saavuttanut käyttörajansaAntamasi kuponkikoodi on virheellinenSähköposti on lähetetty onnistuneesti.Kuvaa #%curr% ei voitu ladata.Luku ei voi olla suurempi kuinLuku ei voi olla pienempi kuinKuinka monta artikkelia sinulla on julkaistavaksi eri viestityypeissä.Salasana on nollattu onnistuneesti.Salasanan palautusavain on vanhentunut.Salasanan palautusavain on virheellinen.Valittu viesti on poistettu onnistuneesti.%post_title%:n tila on muutettu.Tämä sähköpostiosoite on jo rekisteröity.Tämä kenttä pitää täyttää!Tämä tilaus on peruutettu ja se päättyy %end_date%.OtsikkoVoit vaihtaa salasanasi käymällä seuraavassa osoitteessa:Kaikki yhteensäKaupunki kaupunkiNouseva NytOikeudenkäyntiäTurkin liiraTweettaa TwitterissäHuomaamaton virhe: jotain meni pieleen, lataa sivu uudelleen ja yritä uudelleen!Yhdysvaltain dollariMaksuton tilaus.PäivittääKäyttäjä on jo olemassa!Käyttäjää ei ole olemassa!Käyttäjä tyhjä!Käyttäjän tiedotKäyttäjänimi tai sähköpostiosoite on jo käytössä!Käyttäjänimi tai salasana oli väärä!KäyttäjätunnusKäyttäjätunnus tyhjä!Käyttäjätunnus väärä!Käyttäjänimi tai SähköpostiosoiteKäyttäjätunnus: %sARVONLISÄVEROAlv numeroKAUTTANäkymäKatso kaikki viestitKatso kaikki tuloksetKatso tilausVerkkosivu:Tervetuloa tilillesi!Tervetuloa!Tervetuloa! Kirjaudu sisään käyttäjätilillesiTervetuloa! rekisteröidy tililleVuosittaiset Arkistot:JooSinulla on jo tilaus, mutta se odottaa vielä maksua!Voit mennä kotisivulleSinulla ei ole tämän pyynnön suorittamiseen vaadittavia oikeuksia.Olet antanut väärän sähköpostiosoitteen!Et ole luonut yhtään viestiä.Et ole valinnut kelvollista tilaussuunnitelmaa.Olet saavuttanut tämän artikkelin arvioiden rajanSinun on kirjauduttava ulos nähdäksesi tämän sivun.Tiliäsi ei voitu luoda.Käyttäjätilisi on jo aktivoitu!Tilisi on aktivoitu onnistuneesti!Kommenttisi odottaa moderointiaNykyinen salasanasi on väärä.Salasanasi nollattiin, tarkista sähköpostisi.Viestisi on luotu onnistuneesti.Viestisi on päivitetty onnistuneesti.Vastauksesi on julkaistu. päivitä sivu nähdäksesi sen.Arvostelusi on julkaistu. päivitä sivu nähdäksesi sen.Arvostelusi on rekisteröity ja odottaa hyväksyntää.Tilauksesi tiedotesim. verottaaInc. verottaasuunnitelma puuttuutulee sisältää vähintään 6 merkkiätulee sisältää vähintään yksi pieni kirjain (a..z)tulee sisältää vähintään yksi iso kirjain (a..z)ofpäällätaiviidestähakutuloksetrajoittamatonnäkymätsähköpostisisalasanasikäyttäjänimesitranslation/ru_RU.mo000064400000127657150211537140010514 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T, fT_fRf"g*gBgZgtg9gggg*h=h6Yh9h*h"h"i ;i\i {ii!iii i-ij.j(Ij8rjj*jj3kx+.y%Zyyy&y#y*z,z Gz0Tz z'zz zz2z'{8{/S{ {){{-{|}5}Q}}W~ q~!~~~~~9 o=Hgo^C΃He[?mVoFƅQ q_Gц+E/c/#Ç5E`.i!$È5!5W%s+$܉-/IZi%.؊V:F,݋C27P3+#*F`u%ȍ{ 0׎0>&o& ݏw 62/4$d%Ukcq#Փ'!7 JWm89”63Qm!Udwv_>Nq:>Z<Y֘D0>uF:(6_} $"!(/8@VGX1fL:>Fy00"+J@-Mn0\?JLנY DOg%_*5â3&-0TiE5-U1S# -4 FQ+X2'ߥ;,WKP U%psN >YJlgMԩ;"M^?2b,GzV(T}#PͭY[xԮٮޮ!+3>r(lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: ru_RU %post_title% перемещен в корзину.%curr% из %total%%s — обязательное поле.(необязательный)(оставьте поле пустым, чтобы оставить без изменений)(по желанию)1 КОММЕНТАРИЙПопулярное за 7 днейна ваш адрес электронной почты отправлена новая ссылка активации!Пароль будет выслан Вам по электронной почте.О НАСобо мнеактивация аккаунтаДетали учетной записиданные учетной записи успешно изменены.название аккаунтаномер счетаНастройки аккаунтаподтверждение обязательно!активныйДобавить новоедобавить новый постадресадресная строкаадресаВсеВсе время популярныевсе ваши подписки.алфавитный а -> яуже есть аккаунт?при попытке создать публикацию произошла непредвиденная ошибка. Пожалуйста, попробуйте еще раз.произошла непредвиденная ошибка, и письмо не удалось отправить.Произошла непредвиденная ошибка. Пожалуйста, попробуйте еще раз.применяемыйприменятьАрхивывы уверены, что хотите удалить %post_title%?вы уверены, что хотите опубликовать %post_title%?вАвстралийский долларАвторАвторыОжидание оплатыназадназвание банкабанковский переводBic / swiftПлатежные реквизитызаблокированБлогбразильский реаланглийский фунтболгарский левОтПо оценкам в отзывахоценка пользователя капчи не удалась. пожалуйста свяжитесь с нами!проверка капчи не удалась!ЗАКРЫТЬКОММЕНТАРИИканадский долларотменаОтменить ответОтписаться от рассылкиотмененневозможно обработать поле %s.категориипроверьте свою электронную почту на наличие правильной ссылки активации. эта ссылка недействительна.китайский юаньвыбрать плангородзакрытоКомментарий:комментарии закрыты.название компанииполная оплатаподтвердите новый парольСвяжитесь с намиПродолжитьстранастрана / регионштатокругкупон примененТребуется имя купона!завести аккаунтсоздать новый терминхорватская кунатекущий парольТекущее состояниеинтервал циклачехия кронаЕжедневные Архивы:Датская кронаприборная доскадатаудалитьудалить сообщениеудалить закладкиописаниепрямой банковский переводреквизиты для прямого банковского переводапоказать имянет учетной записи?скачатьзагрузкиперетащите или просмотритеВыбор редактораЕЩЁ БОЛЬШЕ НОВОСТЕЙЭКСКЛЮЗИВНЫЙредактироватьРедактировать сообщениеэлектронное письмоадрес электронной почтыАдрес электронной почты не найден!Эл. адрес уже существует!электронная почта пуста!Неверный адрес электронной почты!электронная почта или имя пользователя пусто!Неверный адрес электронной почты или пароль!Электронная почта:пустой адреспустой городпустая странапустой округпустой адрес электронной почтыпустое имяпустая фамилияпустой телефонпустой почтовый индексДата окончаниявведите свое имя или компаниювведите название вашего обзоравведите промокод здесьвведите свой ответвведите свой отзывСтраны-члены евроСледуйте за намиФанатыРекомендуемыеОбсуждаемые постыполе пустоеимяЧитатьследуйте за нами на InstagramЧитателиЗабыли пароль?Вы забыли свой пароль?Забыли пароль? получить помощьбесплатнопопасть в свой аккаунт.перейти к оплатеперейти к оформлению заказаобщий итогГЛАВНАЯ СТРАНИЦАПриветпривет% 1 $ s (не% 2 $ s?% 3 $ s)! на панели управления вашей учетной записи вы можете просматривать свои подписки и управлять данными своей учетной записи.вот результаты поиска:ДомойГонконгский долларВенгерский форинтИБАНЯ БЫесли это была ошибка, просто проигнорируйте это письмо, и ничего не произойдет.Если результаты Вас не удовлетворяют, пожалуйста, попробуйте еще разчтобы получить доступ к этому разделу, вам необходимо активировать свою учетную запись.Чтобы обновить это поле, вам необходимо активировать свою учетную запись.Индийская рупияИндонезийская рупияпервоначальный счет оплаченинструкцииневерныйневерный шаблон прохода!недействительная подписка.счетсчет обновленIsraeli Shekelпохоже, что не настроены доступные способы оплаты.Японская иенаприсоединитьсякорейская вона (юг)САМЫЕ ПОСЛЕДНИЕ СТАТЬИОСТАВЬТЕ ОТВЕТВОЙТИфамилияПоследнеепоследний счетоставить отзывМне нравитсяЛайкиЗагрузить большезагрузкарасположение:заблокированная подписка.ВойтиВойти с FacebookВойдите, чтобы оставить комментарийвойдите, чтобы оставить отзыв.Войдите в свой аккаунтвыйтивыйти?вошли каквошел как% s. Редактировать профиль.авторизоватьсяВыйтипотерянный парольЕЩЕ ОТ АВТОРАБОЛЬШЕ ИСТОРИЙмалазийский ринггитуправлять данными вашей учетной записи.управлять своими платежными данными.членымексиканский песодата измененияДата изменения:Ежемесячные Архивы:месяцыПодробнееСамое популярноемоя учетная запись подпискимой аккаунт Wooн/дНЕТ КОММЕНТАРИЕВназваниеИмя:Новозеландецсоздана новая ссылка для активации. пожалуйста, проверьте свою электронную почту (входящие или папку со спамом), чтобы подтвердить свою учетную запись.новый парольНовый пароль *новые пароли не совпадают.СледСледующий (Кнопка вправо)Следующая статьянетнет записей в закладкахНет постов для отображенияНет товаров в корзине.без рейтингаНет результатовНет результатов по Вашему запросуНет Результатов Поиска.подписка не создана.Норвежская кронане оплаченоНАШИ ПОСЛЕДНИЕ ПОСТЫКОНЕЧНЫЙ РЕЗУЛЬТАТсамые старые сообщенияУпс... Ошибка 404заказынаши банковские реквизитыобщийПОПУЛЯРНЫЕ КАТЕГОРИИПопулярные постыПОСТЫСтраницаСтраница %CURRENT_PAGE% из %TOTAL_PAGES%родительпройти пустой!неверный шаблон передачи!парольвосстановление паролязаплатить сейчасплатить с помощью полосыоплата не удалась. Приносим извинения, при обработке вашего платежа произошла ошибка. пожалуйста, попробуйте еще раз, используя другой способ оплаты.способ оплатыСпособы оплатыобработка платежа — обрабатывается ваш последний платеж по подписке.платеж успешен — ваш последний платеж по подписке был успешно завершен.способ оплатыпериодФилиппинское песоТелефонпланпожалуйста, активируйте свою учетную запись, перейдя по ссылке, отправленной на ваш адрес электронной почты.Пожалуйста, проверьте свою электронную почту (входящие или спам), пароль был выслан по Вашему адресу.пожалуйста, проверьте свою электронную почту (входящие или папку со спамом), чтобы подтвердить свою учетную запись.пожалуйста, проверьте свою электронную почту (индекс или спам папки), пароль был направлен туда.пожалуйста, проверьте свою электронную почту и подтвердите подписку!пожалуйста, подтвердите новый пароль, прежде чем продолжить.пожалуйста, сначала введите код купона!пожалуйста, введите новый пароль, прежде чем продолжить.Пожалуйста, введите действительный адрес электронной почты.Пожалуйста, введите ваш комментарий!пожалуйста, введите ваш текущий пароль.пожалуйста, введите свой адрес электронной почты здесьпожалуйста, введите ваше имя здесьпожалуйста, заполните действующий адрес электронной почты.пожалуйста, заполните адрес электронной почты.пожалуйста, заполните все поля пароля.пожалуйста, убедитесь, что пароли совпадают.Пожалуйста, представьте действующий адрес электронной почты.Пожалуйста, введите еще раз ваш пароль.Пожалуйста, подождите...польский злотыйОпубликовать Комментарийопубликовать изображениеопубликовать обзорПочтовый Кодпочтовый индексСообщение отПосты отПосты с тегамиПредПредыдущий (Кнопка влево)Предыдущая статьяценацена не установленаРаспечататьполитика конфиденциальностикатегории товаровбирки продуктаизображение профиляпубликоватьопубликовать сообщениеЗАРЕГИСТРИРОВАТЬСЯЭТО МОЖЕТ БЫТЬ ИНТЕРЕСНООЦЕНИТЬ ОБЗОРСлучайнорейтингУзнать большевосстановить парольВосстановите свой парольРегистрацияЗарегистрируйтесь для создания учетной записиоставшиеся права на публикацию.удалятьповторите новый пароль *Повторите парольОтветитьповторно отправить ссылку активациисбросить парольперепечатал пропуск неверный!перепечатал пропуск пустой!точно перепечатал пасс!критерии обзораРумынская (новый) Leuномер маршрутаРусский рубльПОДЕЛИТЬСЯИСТОЧНИКИТОГсохранятьСохранить изменениясохраните мое имя, адрес электронной почты и веб-сайт в этом браузере для следующего комментария.Сохраните парольПоискПоиск по ключевым словам...искать местовыбиратьвыбрать ребенкавыбрать родителявыбрать дочернего ребенкаОтправить Мой Парольотправить мой парольнастроить платежустановка не удалась. К сожалению, при настройке способа оплаты произошла ошибка. пожалуйста, попробуйте еще раз, используя другой способ оплаты.установка успешна — вы успешно настроили способ оплаты для будущих платежей.ПоделитьсяПоделиться в Facebookпоказывать меньше информациипоказать больше информациивойти в системуРегистрация / АвторизацияЗарегистрироватьсяСингапурский долларнекоторые обязательные поля остались пустыми.кто-то запросил сброс пароля для следующей учетной записи:Извините, но страница, которую Вы ищете, не существует.название источникаЮжноафриканский рэндДата началасостояниестатусадрес улицыполосатый счетдетали счета-фактуры в полоскуподробности подписки на полосупредставлять на рассмотрениеотправить ответдобавить отзывПодписатьсяПодписчикиподписка отмененасоздать подписку: первоначальный счет оплаченсоздание подписки: создан первоначальный счет-фактурасоздание подписки: первоначальный счет оформлен и готов к оплатесоздание подписки: первоначальный счет аннулировансоздание подписки: пробная версияподписка удаленасрок подписки истек: счет аннулирован (первый счет не оплачен)продление подписки: счет созданпродление подписки: счет завершенпродление подписки: счет оплаченпродление подписки: ожидается выставление счетапродление подписки: счет аннулированобновление подписки: счет оплаченобновление подписки: счет аннулированподписка отменена и завершится:информация о подпискесводка подпискиПодпискиуспехуспешно подписался!успешно отписался!Шведская кронашвейцарский франкТЕГИТегТегител:тайский батСпасибо! мы очень рады видеть вас здесь. ваша подписка скоро будет активирована!Содержимое %url% не может быть загружено.срок действия введенного вами кода купона истеквведенный вами код купона достиг предела использованиявведенный вами код купона недействителенписьмо было успешно отправлено.Изображение #%curr% не удалось загрузить.число не может быть большечисло не может быть меньшеколичество статей, которые вам осталось опубликовать в разных типах публикаций.пароль успешно сброшен.Срок действия ключа сброса пароля истек.ключ сброса пароля недействителен.выбранное сообщение было успешно удалено.статус %post_title% был изменен.Этот адрес электронной почты уже зарегистрирован.Это поле обязательно к заполнению!эта подписка отменена и завершится %end_date%.заголовокчтобы сбросить пароль, посетите следующий адрес:Всегогород / городСейчас В Трендепробныйтурецкая лираТвитнутьнеобнаруженная ошибка: что-то пошло не так, перезагрузите страницу и повторите попытку!Американский долларнеоплаченная подписка.обновлятьПользователь уже существует!пользователь не существует!пользователь пустой!информация о пользователеПользователь или адрес электронной почты уже существует!Неверное имя пользователя или пароль!имя пользователяимя пользователя пустое!неверное имя пользователя!имя пользователя или адрес электронной почтыимя пользователя: %sНДСНомер НДСЧЕРЕЗвидПросмотреть все посты вПросмотреть все результатыпросмотреть подпискуВеб-Сайт:добро пожаловать в свой аккаунт!Добро пожаловат!Добро пожаловать! Войдите в свою учётную записьДобро пожаловать! зарегистрировать аккаунтЕжегодные Архивы:дау вас уже есть подписка, но она еще ждет оплаты!Вы можете перейти нау вас нет необходимых привилегий для выполнения этого запроса.Вы ввели неверный адрес электронной почты!вы не создали ни одной публикации.вы не выбрали действующий план подписки.вы достигли лимита отзывов, которые вы можете отправить для этой статьивы должны выйти из системы, чтобы просмотреть эту страницу.ваша учетная запись не может быть создана.Ваш аккаунт уже был активирован!ваша учетная запись успешно активирована!Ваш комментарий ожидает модерацииваш текущий пароль неверен.Ваш пароль сброшен, проверьте свою электронную почту.ваш пост успешно создан.ваше сообщение было успешно обновлено.ваш ответ опубликован. пожалуйста, обновите страницу, чтобы увидеть ее.ваш отзыв опубликован. пожалуйста, обновите страницу, чтобы увидеть ее.Ваш отзыв зарегистрирован и ожидает одобрения.данные вашей подпискибывший. налогинк. налоготсутствующий пландолжен содержать не менее 6 символов в длинудолжен содержать хотя бы одну строчную букву (a..z)должен содержать хотя бы один верхний регистр (a..z)изнаилииз 5результаты поисканеограниченныйПросмотрыВаш адрес электронной почтыВаш парольВаше имя пользователяtranslation/fr_FR.po000064400000107070150211537140010444 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr_FR\n" msgid "View all results" msgstr "Voir tous les résultats" msgid "No results" msgstr "Pas de résultats" msgid "Home" msgstr "Accueil" msgid "CLOSE" msgstr "FERMER" msgid "Page" msgstr "Page" msgid "All" msgstr "Tous" msgid "By" msgstr "Par" msgid "Load more" msgstr "Voir plus" msgid "View all posts in" msgstr "Voir tous les articles dans" msgid "Tags" msgstr "Tags" msgid "Previous article" msgstr "Article précédent" msgid "Next article" msgstr "Article suivant" msgid "Authors" msgstr "Auteurs" msgid "Author" msgstr "Auteur" msgid "RELATED ARTICLES" msgstr "ARTICLES CONNEXES" msgid "MORE FROM AUTHOR" msgstr "PLUS DE L'AUTEUR" msgid "VIA" msgstr "Via" msgid "SOURCE" msgstr "Source" msgid "TAGS" msgstr "TAGS" msgid "SHARE" msgstr "PARTAGER" msgid "Continue" msgstr "Continuer" msgid "Read more" msgstr "Lire la suite" msgid "Name:" msgstr "Nom :" msgid "Email:" msgstr "Email :" msgid "Website:" msgstr "Site :" msgid "Comment:" msgstr "Commenter :" msgid "LEAVE A REPLY" msgstr "LAISSER UN COMMENTAIRE" msgid "Post Comment" msgstr "Poster un commentaire" msgid "Cancel reply" msgstr "Annuler la réponse" msgid "Reply" msgstr "Répondre" msgid "Log in to leave a comment" msgstr "Connecter pour laisser un commentaire" msgid "NO COMMENTS" msgstr "AUCUN COMMENTAIRE" msgid "1 COMMENT" msgstr "1 COMMENTAIRE" msgid "COMMENTS" msgstr "Commentaires" msgid "REVIEW OVERVIEW" msgstr "NOS NOTES ..." msgid "SUMMARY" msgstr "RÉSUMÉ" msgid "OVERALL SCORE" msgstr "SCORE GLOBAL" msgid "Ooops... Error 404" msgstr "Oups ... Erreur 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Désolé, mais la page que vous recherchez n'existe pas." msgid "You can go to the" msgstr "Vous pouvez aller à" msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" msgid "OUR LATEST POSTS" msgstr "NOS DERNIERS ARTICLES" msgid "Posts by" msgstr "Articles postés par" msgid "POSTS" msgstr "ARTICLES" msgid "Posts tagged with" msgstr "Articles taggés" msgid "Tag" msgstr "Tag" msgid "Daily Archives:" msgstr "Archives quotidiennes:" msgid "Monthly Archives:" msgstr "Archives mensuelles:" msgid "Yearly Archives:" msgstr "Archives annuelles:" msgid "Archives" msgstr "Archives" msgid "LATEST ARTICLES" msgstr "Derniers articles" msgid "search results" msgstr "résultats de la recherche" msgid "Search" msgstr "Recherche" msgid "If you're not happy with the results, please do another search" msgstr "Si les résultats ne sont pas satisfaisants, veuillez effectuer une autre recherche" msgid "Contact us" msgstr "Contactez-nous" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Page %CURRENT_PAGE% sur %TOTAL_PAGES%" msgid "Next" msgstr "Suivant" msgid "Prev" msgstr "Précédent" msgid "No results for your search" msgstr "Aucun résultat pour votre recherche" msgid "No posts to display" msgstr "Aucun article à afficher" msgid "LOG IN" msgstr "SE CONNECTER" msgid "Sign in / Join" msgstr "Connecter / rejoindre" msgid "Log In" msgstr "Se connecter" msgid "REGISTER" msgstr "ENREGISTRER" msgid "Send My Pass" msgstr "Envoyer mon mot de passe" msgid "Forgot your password?" msgstr "Mot de passe oublié ?" msgid "Please wait..." msgstr "S'il vous plaît patienter ..." msgid "User or password incorrect!" msgstr "Utilisateur ou mot de passe incorrect!" msgid "Email or username incorrect!" msgstr "E-mail ou nom d'utilisateur incorrect !" msgid "Email incorrect!" msgstr "Email incorrect !" msgid "User or email already exists!" msgstr "Utilisateur ou email existe déjà!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Veuillez vérifier vos emails (boîte principale ou spam), votre mot de passe vous a été envoyé." msgid "Email address not found!" msgstr "Adresse email non trouvée !" msgid "Your password is reset, check your email." msgstr "Votre mot de passe a été réinitialisé, vérifiez vos emails." msgid "Welcome! Log into your account" msgstr "Bienvenue ! Connectez-vous à votre compte :" msgid "Register for an account" msgstr "Créer un compte" msgid "Recover your password" msgstr "Récupérer votre mot de passe" msgid "your username" msgstr "votre nom d'utilisateur" msgid "your password" msgstr "votre mot de passe" msgid "your email" msgstr "votre email" msgid "A password will be e-mailed to you." msgstr "Un mot de passe vous sera envoyé par email." msgid "Logout" msgstr "Déconnexion" msgid "Like" msgstr "J'aime" msgid "Fans" msgstr "Fans" msgid "Follow" msgstr "Suivre" msgid "Followers" msgstr "Suiveurs" msgid "Subscribe" msgstr "S'abonner" msgid "Subscribers" msgstr "Abonnés" msgid "MORE STORIES" msgstr "PLUS D'ARTICLES" msgid "Latest" msgstr "Dernier" msgid "Featured posts" msgstr "Les articles en vedette" msgid "Most popular" msgstr "Plus populaire" msgid "7 days popular" msgstr "7 jours populaire" msgid "By review score" msgstr "Les mieux notés" msgid "Random" msgstr "Au hasard" msgid "Trending Now" msgstr "A la une" msgid "POPULAR CATEGORY" msgstr "CATÉGORIE POPULAIRE" msgid "EVEN MORE NEWS" msgstr "ENCORE PLUS D'ARTICLES" msgid "Previous (Left arrow key)" msgstr "Précédente (flèche gauche)" msgid "Next (Right arrow key)" msgstr "Suivante (flèche droite)" msgid "%curr% of %total%" msgstr "%curr% sur %total%" msgid "The content from %url% could not be loaded." msgstr "Le contenu de %url% pas pu être chargé." msgid "The image #%curr% could not be loaded." msgstr "L'image #%curr% pas pu être chargée." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Partager sur Facebook" msgid "Tweet on Twitter" msgstr "Tweeter sur twitter" msgid "EDITOR PICKS" msgstr "SÉLECTION DE L'EDITEUR" msgid "POPULAR POSTS" msgstr "ARTICLES POPULAIRES" msgid "FOLLOW US" msgstr "SUIVEZ NOUS" msgid "ABOUT US" msgstr "À PROPOS" msgid "More" msgstr "Plus" msgid "Featured" msgstr "En vedette" msgid "All time popular" msgstr "Tous les temps populaire" msgid "Likes" msgstr "J'aimes" msgid "Register" msgstr "Créer un compte" msgid "of" msgstr "de" msgid "Euro Member Countries" msgstr "Les pays membres de la zone euro" msgid "Your comment is awaiting moderation" msgstr "Votre commentaire est en attente de modération" msgid "Follow us on Instagram" msgstr "Suivez-nous sur instagram" msgid "Back" msgstr "Arrière" msgid "Sign in" msgstr "Se connecter" msgid "Sign up" msgstr "S'inscrire" msgid "Join" msgstr "Joindre" msgid "Welcome!" msgstr "Bienvenue!" msgid "Log into your account" msgstr "Connectez-vous à votre compte" msgid "Password recovery" msgstr "Récupération de mot de passe" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "S'il vous plaît vérifier votre e-mail (dossier d'index ou spam), le mot de passe a été envoyé là-bas." msgid "Australian Dollar" msgstr "Dollar australien" msgid "Bulgarian Lev" msgstr "Lev bulgare" msgid "Brazilian Real" msgstr "Real brésilien" msgid "Canadian Dollar" msgstr "Dollar canadien" msgid "Swiss Franc" msgstr "Franc suisse" msgid "Chinese Yuan Renminbi" msgstr "Chinese yuan renminbi" msgid "Czech Republic Koruna" msgstr "République tchèque koruna" msgid "Danish Krone" msgstr "Couronne danoise" msgid "British Pound" msgstr "Livre sterling" msgid "Hong Kong Dollar" msgstr "Dollar de Hong Kong" msgid "Croatian Kuna" msgstr "Kuna croatian" msgid "Hungarian Forint" msgstr "Forint hongrois" msgid "Indonesian Rupiah" msgstr "Roupie indonésienne" msgid "Israeli Shekel" msgstr "Shekel israelien" msgid "Indian Rupee" msgstr "Roupie indienne" msgid "Japanese Yen" msgstr "Yen japonais" msgid "Korean (South) Won" msgstr "Korean (sud) won" msgid "Mexican Peso" msgstr "Peso mexicain" msgid "Malaysian Ringgit" msgstr "Ringgit malaisien" msgid "Norwegian Krone" msgstr "Couronne norvégienne" msgid "New Zealand Dollar" msgstr "Dollar néo-zélandais" msgid "Philippine Peso" msgstr "Peso philippin" msgid "Polish Zloty" msgstr "Zloty polonais" msgid "Romanian (New) Leu" msgstr "Romanian (nouveau) leu" msgid "Russian Ruble" msgstr "Rouble russe" msgid "Swedish Krona" msgstr "Couronne suédoise" msgid "Singapore Dollar" msgstr "Dollar singapour" msgid "Thai Baht" msgstr "Baht thaïlandais" msgid "Turkish Lira" msgstr "Lire turque" msgid "United States Dollar" msgstr "Dollar américain" msgid "South African Rand" msgstr "Rand sud-africain" msgid "Privacy Policy" msgstr "Politique de confidentialité" msgid "views" msgstr "vues" msgid "Modified date:" msgstr "Date modifiée:" msgid "Please enter your name here" msgstr "S'il vous plaît entrez votre nom ici" msgid "Please enter your email address here" msgstr "Veuillez entrer votre adresse email ici" msgid "You have entered an incorrect email address!" msgstr "Vous avez entré une adresse email incorrecte!" msgid "Please enter your comment!" msgstr "S'il vous plaît entrez votre commentaire!" msgid "Logged in as" msgstr "Connecté en tant que" msgid "Log out?" msgstr "Connectez - Out?" msgid "Logged in as %s. Edit your profile." msgstr "Connecté en tant que% s. Modifier votre profil." msgid "Edit" msgstr "Modifier" msgid "Login" msgstr "S'identifier" msgid "Send My Password" msgstr "Envoyer mon mot de passe" msgid "Create an account" msgstr "Créer un compte" msgid "Welcome! Register for an account" msgstr "Bienvenue! s'inscrire pour un compte" msgid "About me" msgstr "À propos de moi" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Enregistrer mon nom, email et site web dans ce navigateur pour la prochaine fois que je commenterai." msgid "Orders" msgstr "Ordres" msgid "Addresses" msgstr "Adresses" msgid "Account settings" msgstr "Paramètres du compte" msgid "Hello" msgstr "Bonjour" msgid "No products in the cart." msgstr "Aucun produit dans le chariot." msgid "Product categories" msgstr "Catégories de produits" msgid "Product tags" msgstr "étiquettes de produits" msgid "Success" msgstr "Succès" msgid "Acknowledgment is required!" msgstr "L'accusé de réception est requis !" msgid "Please fill in a valid email." msgstr "S'il vous plaît remplir un email valide." msgid "Please fill in an email address." msgstr "S'il vous plaît remplir une adresse e-mail." msgid "Get into your account." msgstr "Entrer dans votre compte." msgid "My subscription account" msgstr "Mon compte d'abonnement" msgid "Account details" msgstr "Détails du compte" msgid "Subscriptions" msgstr "Abonnements" msgid "My woo account" msgstr "Mon compte woo" msgid "Log out" msgstr "Se déconnecter" msgid "Email address" msgstr "Adresse e-mail" msgid "Username" msgstr "Nom d'utilisateur" msgid "Password" msgstr "Le mot de passe" msgid "must contain at least one lower case (a..z)" msgstr "doit contenir au moins une minuscule (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "doit contenir au moins une majuscule (a..z)" msgid "must contain at least 6 characters in length" msgstr "doit contenir au moins 6 caractères" msgid "Repeat password" msgstr "Répéter le mot de passe" msgid "Already have an account?" msgstr "Vous avez déjà un compte?" msgid "Recover password" msgstr "Récupérer mot de passe" msgid "Username or Email address" msgstr "Nom d'utilisateur ou adresse e-mail" msgid "Forgot password?" msgstr "Mot de passe oublié?" msgid "Don't have an account?" msgstr "Vous n'avez pas de compte ?" msgid "Dashboard" msgstr "Tableau de bord" msgid "Welcome to your account!" msgstr "Bienvenue sur votre compte !" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Bonjour %1$s (pas %2$s ? %3$s) ! depuis le tableau de bord de votre compte, vous pouvez consulter vos abonnements et gérer les détails de votre compte." msgid "Lost Password" msgstr "Mot de passe perdu" msgid "Manage your account details." msgstr "Gérer les détails de votre compte." msgid "First name" msgstr "Prénom" msgid "Last name" msgstr "Nom de famille" msgid "Display name" msgstr "Afficher un nom" msgid "Current password" msgstr "Mot de passe actuel" msgid "(leave blank to leave unchanged)" msgstr "(laisser vide pour ne pas changer)" msgid "New password" msgstr "Nouveau mot de passe" msgid "Confirm new password" msgstr "Confirmer le nouveau mot de passe" msgid "Save changes" msgstr "Sauvegarder les modifications" msgid "All your subscriptions." msgstr "Tous vos abonnements." msgid "Plan" msgstr "Planifier" msgid "Payment type" msgstr "Type de paiement" msgid "Status" msgstr "Statut" msgid "Months" msgstr "Mois" msgid "Start date" msgstr "Date de début" msgid "End date" msgstr "Date de fin" msgid "missing plan" msgstr "plan manquant" msgid "Free" msgstr "Gratuit" msgid "Active" msgstr "Actif" msgid "Trial" msgstr "Essai" msgid "Blocked" msgstr "Bloqué" msgid "Closed" msgstr "Fermé" msgid "Not paid" msgstr "Impayé" msgid "Awaiting payment" msgstr "En attente de paiement" msgid "Subscription info" msgstr "Informations d'abonnement" msgid "ID" msgstr "IDENTIFIANT" msgid "Name" msgstr "Nom" msgid "Company name" msgstr "Nom de la compagnie" msgid "VAT" msgstr "T.V.A" msgid "Address" msgstr "Adresse" msgid "City" msgstr "Ville" msgid "Country/State" msgstr "Etat" msgid "Email" msgstr "E-mail" msgid "Postal code" msgstr "Code postal" msgid "Direct bank transfer details" msgstr "Coordonnées de virement bancaire direct" msgid "Account name" msgstr "Nom du compte" msgid "Account number" msgstr "Numéro de compte" msgid "Bank name" msgstr "Nom de banque" msgid "Routing number" msgstr "Numéro de routage" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/rapide" msgid "Instructions" msgstr "Instructions" msgid "No subscription created." msgstr "Aucun abonnement créé." msgid "Choose plan" msgstr "Choisir le forfait" msgid "Payment methods" msgstr "Méthodes de payement" msgid "Total" msgstr "Le total" msgid "Period" msgstr "Point final" msgid "Subscription summary" msgstr "Résumé de l'abonnement" msgid "Phone" msgstr "Téléphoner" msgid "Postcode" msgstr "Code postal" msgid "County" msgstr "Comté" msgid "Town/City" msgstr "Ville/ville" msgid "Street address" msgstr "Adresse de la rue" msgid "Country/Region" msgstr "Pays/région" msgid "VAT Number" msgstr "Numéro de TVA" msgid "(optional)" msgstr "(optionnel)" msgid "Billing details" msgstr "Détails de la facturation" msgid "User information" msgstr "Informations de l'utilisateur" msgid "It seems that no available payment methods have been configured." msgstr "Il semble qu'aucun mode de paiement disponible n'ait été configuré." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Je vous remercie! nous sommes ravis de vous voir ici. votre abonnement sera bientôt activé !" msgid "Our bank details" msgstr "Nos coordonnées bancaires" msgid "Your subscription details" msgstr "Les détails de votre abonnement" msgid "View subscription" msgstr "Voir l'abonnement" msgid "You have not selected a valid subscription plan." msgstr "Vous n'avez pas sélectionné de formule d'abonnement valide." msgid "Field empty" msgstr "Champ vide" msgid "Empty first name" msgstr "Prénom vide" msgid "Empty last name" msgstr "Nom de famille vide" msgid "Empty country" msgstr "Pays vide" msgid "Empty address" msgstr "Adresse vide" msgid "Empty city" msgstr "Ville vide" msgid "Empty county" msgstr "Comté vide" msgid "Empty postcode" msgstr "Code postal vide" msgid "Empty phone" msgstr "Téléphone vide" msgid "Empty email" msgstr "E-mail vide" msgid "Email or username empty!" msgstr "Email ou nom d'utilisateur vide !" msgid "Pass empty!" msgstr "Passe à vide !" msgid "Username incorrect!" msgstr "Nom d'utilisateur incorrect !" msgid "Invalid Pass Pattern!" msgstr "Modèle de passe invalide !" msgid "Please activate your account by following the link sent to your email address." msgstr "Veuillez activer votre compte en suivant le lien envoyé à votre adresse e-mail." msgid "Resend activation link" msgstr "Renvoyer le lien d'activation" msgid "In order to have access to this section, you have to activate your account." msgstr "Pour avoir accès à cette section, vous devez activer votre compte." msgid "Email empty!" msgstr "Email vide !" msgid "Username empty!" msgstr "Nom d'utilisateur vide !" msgid "Pass pattern incorrect!" msgstr "Modèle de réussite incorrect !" msgid "Retyped pass empty!" msgstr "Passe retapé vide !" msgid "Retyped pass exactly!" msgstr "Passe retapé exactement !" msgid "User already exists!" msgstr "L'utilisateur existe déjà!" msgid "Email already exists!" msgstr "L'email existe déjà!" msgid "Your account could not be created." msgstr "Votre compte n'a pas pu être créé." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Veuillez vérifier votre email (boîte de réception ou dossier spam) pour valider votre compte." msgid "User empty!" msgstr "Utilisateur vide !" msgid "User does not exists!" msgstr "L'utilisateur n'existe pas !" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Un nouveau lien d'activation a été généré. veuillez vérifier votre email (boîte de réception ou dossier spam) pour valider votre compte." msgid "CAPTCHA verification failed!" msgstr "La vérification du captcha a échoué !" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Le score de l'utilisateur captcha a échoué. Contactez nous s'il vous plait!" msgid "Loading" msgstr "Chargement en cours" msgid "Here are the results for the search:" msgstr "Voici les résultats de la recherche :" msgid "Price" msgstr "Le prix" msgid "EXCLUSIVE" msgstr "EXCLUSIF" msgid "Tel:" msgstr "Tél :" msgid "Share" msgstr "Partager" msgid "Print" msgstr "Imprimer" msgid "At" msgstr "à" msgid "Comments are closed." msgstr "Les commentaires sont fermés." msgid "Payment method" msgstr "Mode de paiement" msgid "You must be logged out to view this page." msgstr "Vous devez être déconnecté pour voir cette page." msgid "Retyped Pass incorrect!" msgstr "Passe retapé incorrecte !" msgid "%s is a required field." msgstr "%s est un champ obligatoire." msgid "Please provide a valid email address." msgstr "Veuillez fournir une adresse email valide." msgid "This email address is already registered." msgstr "Cette adresse email est déjà enregistrée." msgid "Please fill out all password fields." msgstr "Veuillez remplir tous les champs de mot de passe." msgid "Please enter your current password." msgstr "Veuillez entrer votre mot de passe actuel." msgid "Please re-enter your password." msgstr "Veuillez re-taper votre mot de passe." msgid "New passwords do not match." msgstr "Les nouveaux mots de passe ne correspondent pas." msgid "Your current password is incorrect." msgstr "Votre mot de passe actuel est incorrect." msgid "Account details changed successfully." msgstr "Les détails du compte ont été modifiés avec succès." msgid "A new activation link has been sent to your email address!" msgstr "Un nouveau lien d'activation a été envoyé à votre adresse email !" msgid "unlimited" msgstr "illimité" msgid "Pay with Stripe" msgstr "Payer avec Stripe" msgid "Cancel subscription" msgstr "Annuler l'abonnement" msgid "Please check your email and confirm subscription!" msgstr "Veuillez vérifier votre courrier électronique et confirmer votre abonnement !" msgid "Successfully subscribed!" msgstr "Abonné avec succès !" msgid "Successfully unsubscribed!" msgstr "Désabonnement réussi !" msgid "Enter promo code here" msgstr "Entrez le code promo ici" msgid "Apply" msgstr "Appliquer" msgid "Coupon applied" msgstr "Coupon appliqué" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Erreur non détectée : quelque chose s'est mal passé, veuillez recharger la page et réessayer !" msgid "The coupon code you entered is invalid" msgstr "Le code promo que vous avez entré n'est pas valide" msgid "The coupon code you entered has reached its usage limit" msgstr "Le code promo que vous avez entré a atteint sa limite d'utilisation" msgid "The coupon code you entered has expired" msgstr "Le code promo que vous avez entré a expiré" msgid "Coupon name is required !" msgstr "Le nom du coupon est requis !" msgid "Please enter a coupon code first!" msgstr "Veuillez d'abord entrer un code promo !" msgid "Invalid" msgstr "Invalide" msgid "Applied" msgstr "Appliqué" msgid "Remove" msgstr "Retirer" msgid "Price not set" msgstr "Prix non fixé" msgid "Grand Total" msgstr "Total" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Vous avez déjà un abonnement, mais il attend toujours d'être payé !" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Cet abonnement a été annulé et il prendra fin le %end_date%." msgid "Go to checkout" msgstr "Aller à la caisse" msgid "Stripe invoice details" msgstr "Détails de la facture Stripe" msgid "Stripe subscription details" msgstr "Détails de l'abonnement Stripe" msgid "Current status" msgstr "Statut actuel" msgid "Initial Invoice Paid" msgstr "Facture initiale payée" msgid "Subscription Create: Initial Invoice Paid" msgstr "Création d'abonnement : facture initiale payée" msgid "Subscription Create: Initial Invoice has been created" msgstr "Création d'abonnement : la facture initiale a été créée" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Création d'abonnement : la facture initiale a été finalisée et elle est prête à être payée" msgid "Subscription Update: Invoice Paid" msgstr "Mise à jour de l'abonnement : facture payée" msgid "Subscription Renew: Invoice Paid" msgstr "Renouvellement de l'abonnement : facture payée" msgid "Subscription Renew: Invoice Finalized" msgstr "Renouvellement de l'abonnement : facture finalisée" msgid "Subscription Renew: Invoice Created" msgstr "Renouvellement de l'abonnement : facture créée" msgid "Subscription Renew: Invoice Upcoming" msgstr "Renouvellement de l'abonnement : facture à venir" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Abonnement expiré : facture annulée (la première facture n'a pas été payée)" msgid "Subscription Deleted" msgstr "Abonnement supprimé" msgid "Subscription Create: Trialing" msgstr "Création d'abonnement : essai" msgid "Subscription Canceled" msgstr "Abonnement annulé" msgid "Subscription Create: Initial Invoice voided" msgstr "Création d'abonnement : facture initiale annulée" msgid "Subscription Renew: Invoice voided" msgstr "Renouvellement de l'abonnement : facture annulée" msgid "Subscription Update: Invoice voided" msgstr "Mise à jour de l'abonnement : facture annulée" msgid "Invoice updated" msgstr "Facture mise à jour" msgid "Subscription has been canceled and will end on: " msgstr "L'abonnement a été annulé et prendra fin le :" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Configuration réussie : vous avez configuré avec succès votre mode de paiement pour les paiements futurs." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "La configuration a échoué - nous sommes désolés, une erreur s'est produite lors de la configuration de votre mode de paiement. veuillez réessayer avec un autre mode de paiement." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Paiement réussi : votre dernier paiement d'abonnement a été effectué avec succès." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Traitement des paiements : votre dernier paiement d'abonnement est en cours de traitement." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Le paiement a échoué - nous sommes désolés, une erreur s'est produite lors du traitement de votre paiement. veuillez réessayer avec un autre mode de paiement." msgid "Download" msgstr "Télécharger" msgid "Stripe invoice" msgstr "Facture rayée" msgid "N/A" msgstr "N / A" msgid "Latest invoice" msgstr "Dernière facture" msgid "Invoice" msgstr "Facture" msgid "Unpaid subscription." msgstr "Abonnement impayé." msgid "Locked subscription." msgstr "Abonnement verrouillé." msgid "Invalid subscription." msgstr "Abonnement invalide." msgid "Pay now" msgstr "Payez maintenant" msgid "Show more info" msgstr "Afficher plus d'informations" msgid "Show less info" msgstr "Afficher moins d'informations" msgid "Complete payment" msgstr "Paiement complet" msgid "or" msgstr "ou" msgid "Setup Payment" msgstr "Paiement de configuration" msgid "Go to Payment" msgstr "Aller au paiement" msgid "Alphabetical A -> Z" msgstr "Alphabétique a -> z" msgid "Oldest posts" msgstr "Messages les plus anciens" msgid "Select" msgstr "Sélectionner" msgid "on" msgstr "sur" msgid "No bookmarked posts" msgstr "Aucun article marqué dans mes favoris" msgid "Log in With Facebook" msgstr "Se connecter avec Facebook" msgid "Forgot your password? Get help" msgstr "Mot de passe oublié? obtenir de l'aide" msgid "Someone has requested a password reset for the following account:" msgstr "Quelqu'un a demandé une réinitialisation du mot de passe pour le compte suivant :" msgid "Username: %s" msgstr "Nom d'utilisateur : %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "S'il s'agit d'une erreur, ignorez simplement cet e-mail et rien ne se passera." msgid "To reset your password, visit the following address:" msgstr "Pour réinitialiser votre mot de passe, visitez l'adresse suivante :" msgid "Members" msgstr "Membres" msgid "Downloads" msgstr "Téléchargements" msgid "inc. TAX" msgstr "inc. impôt" msgid "ex. TAX" msgstr "ex. impôt" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Une erreur inattendue s'est produite lors de la tentative de création de votre message. Veuillez réessayer." msgid "Your post has been successfully created." msgstr "Votre message a été créé avec succès." msgid "Your post has been successfully updated." msgstr "Votre message a été mis à jour avec succès." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Une erreur inattendue s'est produite et le courrier n'a pas pu être envoyé." msgid "Location:" msgstr "Emplacement:" msgid "The email has been successfully sent." msgstr "L'e-mail a été envoyé avec succès." msgid "An unexpected error has occurred. Please try again." msgstr "Une erreur imprévue s'est produite. Veuillez réessayer." msgid "Drag and drop or browse" msgstr "Glisser-déposer ou parcourir" msgid "Search by keyword..." msgstr "Recherche par mots-clés..." msgid "Select parent" msgstr "Sélectionner le parent" msgid "Add new" msgstr "Ajouter un nouveau" msgid "Parent" msgstr "Parent" msgid "Select child" msgstr "Sélectionner un enfant" msgid "Select sub-child" msgstr "Sélectionner un sous-enfant" msgid "Posted by" msgstr "Posté par" msgid "Overall" msgstr "Dans l'ensemble" msgid "Post review" msgstr "Après examen" msgid "This field is required!" msgstr "Ce champ est obligatoire!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Votre avis a été publié. veuillez actualiser la page pour la voir." msgid "Your review has been registered and is awaiting approval." msgstr "Votre avis a été enregistré et est en attente d'approbation." msgid "Submit reply" msgstr "Soumettre une réponse" msgid "Enter your reply" msgstr "Entrez votre réponse" msgid "Cancel" msgstr "Annuler" msgid "Some required fields have been left blank." msgstr "Certains champs obligatoires ont été laissés vides." msgid "Please enter a valid email address." msgstr "S'il vous plaît, mettez une adresse email valide." msgid "The number cannot be lower than" msgstr "Le nombre ne peut pas être inférieur à" msgid "The number cannot be higher than" msgstr "Le nombre ne peut pas être supérieur à" msgid "Leave a review" msgstr "Laisser un commentaire" msgid "Submit" msgstr "Soumettre" msgid "Update" msgstr "Mise à jour" msgid "out of 5" msgstr "sur 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Vous avez atteint la limite d'avis que vous pouvez soumettre pour cet article" msgid "Log in to leave a review." msgstr "Connectez-vous pour laisser un avis." msgid "Enter a title for your review" msgstr "Entrez un titre pour votre avis" msgid "Enter your review" msgstr "Entrez votre avis" msgid "Review criteria" msgstr "Critères d'examen" msgid "Enter Your Name or Company" msgstr "Entrez votre nom ou votre entreprise" msgid "Submit review" msgstr "Poster le commentaire" msgid "Delete" msgstr "Supprimer" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Votre réponse a été publiée. veuillez actualiser la page pour la voir." msgid "You have not created any posts." msgstr "Vous n'avez créé aucun message." msgid "The selected post has been successfully deleted." msgstr "Le message sélectionné a été supprimé avec succès." msgid "Rating" msgstr "Notation" msgid "Title" msgstr "Titre" msgid "Post image" msgstr "Publier une image" msgid "Categories" msgstr "Catégories" msgid "Date" msgstr "Date" msgid "Source title" msgstr "Titre source" msgid "No rating" msgstr "Pas de notation" msgid "View" msgstr "Voir" msgid "Publish" msgstr "Publier" msgid "Add new post" msgstr "Ajouter un nouveau message" msgid "Edit post" msgstr "Modifier le message" msgid "Publish a post" msgstr "Publier un article" msgid "The status for %POST_TITLE% has been changed." msgstr "Le statut de %post_title% a été modifié." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "êtes-vous sûr de vouloir publier %post_title% ?" msgid "Delete a post" msgstr "Supprimer un message" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "êtes-vous sûr de vouloir supprimer %post_title% ?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% a été déplacé vers la corbeille." msgid "You do not hold the required priveleges to execute this request." msgstr "Vous ne disposez pas des privilèges requis pour exécuter cette demande." msgid "No search results." msgstr "Aucun résultat trouvé." msgid "Yes" msgstr "Oui" msgid "No" msgstr "Non" msgid "Save" msgstr "Sauvegarder" msgid "Search for a location" msgstr "Rechercher un emplacement" msgid "Address line" msgstr "Ligne d'adresse" msgid "(Optional)" msgstr "(facultatif)" msgid "State" msgstr "État" msgid "Country" msgstr "Pays" msgid "Create new term" msgstr "Créer un nouveau terme" msgid "Description" msgstr "Description" msgid "Delete bookmarks" msgstr "Supprimer des favoris" msgid "Reset your password" msgstr "Réinitialisez votre mot de passe" msgid "The password reset key has expired." msgstr "La clé de réinitialisation du mot de passe a expiré." msgid "The password reset key is invalid." msgstr "La clé de réinitialisation du mot de passe n'est pas valide." msgid "New password *" msgstr "Nouveau mot de passe *" msgid "Repeat new password *" msgstr "Répété le nouveau mot de passe *" msgid "Save password" msgstr "Enregistrer le mot de passe" msgid "Your account has been successfully activated!" msgstr "Votre compte a été activé avec succès!" msgid "Your account has already been activated!" msgstr "Votre compte a déjà été activé!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Vérifiez votre courrier électronique pour le lien d'activation correct. ce lien est invalide." msgid "Account activation" msgstr "Activation de compte" msgid "Please enter a new password before proceeding." msgstr "Veuillez entrer un nouveau mot de passe avant de continuer." msgid "Please confirm the new password before proceeding." msgstr "Veuillez confirmer le nouveau mot de passe avant de continuer." msgid "Please make sure that the passwords match." msgstr "Veuillez vous assurer que les mots de passe correspondent." msgid "The password has been reset successfully." msgstr "Le mot de passe a été réinitialisé avec succès." msgid "Manage your billing details." msgstr "Gérer vos informations de facturation." msgid "Profile picture" msgstr "Image de profil" msgid "Remaining publishing rights." msgstr "Droits de publication restants." msgid "The number of articles you have left to publish across different post types." msgstr "Le nombre d'articles qu'il vous reste à publier dans différents types de publications." msgid "Bank transfer" msgstr "Virement" msgid "Direct Bank Transfer" msgstr "Virement bancaire direct" msgid "Canceled" msgstr "Annulé" msgid "Cycle Interval" msgstr "Intervalle de cycle" msgid "In order to update this filed, you have to activate your account." msgstr "Afin de mettre à jour ce dossier, vous devez activer votre compte." msgid "Cannot process %s field." msgstr "Ne peut pas traiter le champ %s." msgid "Modified date" msgstr "Date modifiée" translation/default.mo000064400000001256150211537140011066 0ustar00$,8t9Project-Id-Version: Newsmag POT-Creation-Date: 2014-11-28 13:30+0200 PO-Revision-Date: 2015-06-15 10:11+0200 Last-Translator: Language-Team: tagDiv Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.7.3 X-Poedit-Basepath: . Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-SourceCharset: UTF-8 X-Poedit-KeywordsList: __;_e X-Poedit-SearchPath-0: .. X-Poedit-SearchPathExcluded-0: ../includes/wp_booster/external X-Poedit-SearchPathExcluded-1: ../includes/td_theme_init.php X-Poedit-SearchPathExcluded-2: ../includes/wp_booster/td_wp_booster_init.php translation/ja.mo000064400000114666150211537140010046 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,VTV dVtrV.VW/W?WUW<kWW WWWWXXp!]p6pp ppppq+q2qNqUqhqxq q/qqq0qqr 'r1rMr ss`%srss tt)t0t7tyt{6uuBXvKv<vH$w<mw6w6wFx6_x<x3xHyHPy<y0yzz6zLzbz ~z z zzzzz zz$z${+{D{ W{d{{{ { {{ {{{{$|&|-|L| b|/o|0||-|*}.0}'_}*} }}}} ~ ~~~&~<~~~~ + 8 EReux} !$"G`pH^6a ǂтՂ܂-6- dq <PP9nS8M3GSD>JJj>JR?!$و!=\ov}@8EyB0-3?a<<ދ`9|H363:jBe mczގ 6 *ď-$0Uq:6-%-S  Б$ -!OB_-ВlZWm9œ$K$EpQ3E<L9ϕ3 X=**flSQ$ 7AQ%gJJؘ#' . 8 F S ]g~lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: ja %post_title% はゴミ箱に移動されました。%curr%の%total%%s は必須フィールドです。(オプション)(変更しない場合は空白のままにします)(オプション)1コメント7日間人気新しいアクティベーション リンクがあなたの電子メール アドレスに送信されました。パスワードはEメールで送られます私たちに関しては私についてアカウント開設アカウント詳細アカウントの詳細が正常に変更されました。アカウント名口座番号アカウント設定承認が必要です!アクティブ新しく追加する新しい投稿を追加する住所住所欄住所全部すべての時間の人気すべてのサブスクリプション。アルファベットの a -> zすでにアカウントをお持ちですか?投稿を作成しようとしたときに予期しないエラーが発生しました。もう一度試してください。予期しないエラーが発生し、メールを送信できませんでした。予期しないエラーが発生しました。もう一度試してください。適用済み適用するアーカイブ%post_title% を削除してもよろしいですか?%post_title% を公開してもよろしいですか?でオーストラリアドル著者著者支払いを待っているバック銀行名銀行振込Bic / swift支払明細ブロックされたブログブラジルレアル英国ポンドブルガリアレフから評価順Captchaユーザースコアが失敗しました。お問い合わせください!キャプチャの検証に失敗しました!閉じるコメントカナダドルキャンセル返事をキャンセルサブスクリプションをキャンセルするキャンセル%s フィールドを処理できません。カテゴリ正しいアクティベーション リンクがあるかどうか電子メールを確認してください。このリンクは無効です。中国人民元プランを選択市閉まっているコメント:コメントは締め切りました。会社名支払いを完了する新しいパスワードを確認お問い合わせ続ける国国/地域国/州郡クーポンが適用されましたクーポン名は必須です!アカウントを作成する新しい用語を作成するクロアチアクーナ現在のパスワード現在のステータスサイクル間隔チェココルナデイリーアーカイブデンマーク・クローネダッシュボード日付消去投稿を削除するブックマークを削除する説明直接銀行振込銀行振込の詳細表示名アカウントをお持ちではありませんか?ダウンロードダウンロードドラッグ アンド ドロップまたは参照エディタのピックもっと他のニュースエクスクルーシブ編集する投稿を編集するEメール電子メールアドレスEメールアドレスは見つかりませんでしたメールは既に存在します!メールが空です!Eメールが間違ってます!メールアドレスまたはユーザー名が空です!Eメールかユーザ名が間違ってます!Eメール:空のアドレス空の街空の国空の郡空のメール空の名空の姓空の電話空の郵便番号終了日名前または会社名を入力してくださいレビューのタイトルを入力してくださいここにプロモーションコードを入力してください返信を入力してくださいレビューを入力してくださいユーロ加盟国フォローしますファンおすすめの特集投稿空のフィールドファーストネームフォローInstagramの上で私たちに従いますフォロワーパスワードをお忘れですか?パスワードを忘れましたか?パスワードをお忘れですか?助けを得ます自由アカウントにアクセスします。支払いに行くチェックアウトに行きます総計ホームページこんにちはこんにちは%1 $ s(%2 $ sではありませんか?%3 $ s)!アカウントダッシュボードから、サブスクリプションを表示し、アカウントの詳細を管理できます。検索結果は次のとおりです。ホーム香港ドルハンガリーフォリントイバンIDこれが間違いだった場合は、このメールを無視してください。何も起こりません。結果が一致しない場合はもう一度検索してくださいこのセクションにアクセスするには、アカウントをアクティブ化する必要があります。このフィールドを更新するには、アカウントをアクティブ化する必要があります。インドルピーインドネシアルピア最初の請求書が支払われました手順無効パスパターンが無効です!無効なサブスクリプションです。請求書請求書が更新されましたイスラエル・シェケル利用可能な支払い方法が設定されていないようです。日本円参加します韓国(南)ウォン最新アーカイブ返事を書くログイン苗字最新最新の請求書レビューを残すいいね同類もっとロードする読み込み中位置:ロックされたサブスクリプション。ログインFacebookでログインするログインしてコメントを書くレビューを残すにはログインしてください。あなたのアカウントにログインログアウトログアウト?としてログイン%sとしてログインしました。あなたのプロフィールを編集します。ログインログアウトパスワードを紛失した同じ著者から他の記事マレーシアリンギットアカウントの詳細を管理します。請求の詳細を管理します。メンバーメキシコペソ変更日変更日:マンスリーアーカイブ月もっと人気順私のサブスクリプションアカウント私のウーアカウント該当なしコメントなし名前名前:ニュージーランドドル新しいアクティベーションリンクが生成されました。メール(受信トレイまたはスパムフォルダ)を確認して、アカウントを検証してください。新しいパスワード新しいパスワード *新しいパスワードが一致しません。次次(右アロー キー)次の記事いいえブックマークされた投稿はありません表示できる投稿はありませんカートに商品はありません。評価なし結果なし検索結果はありません検索結果はありません。サブスクリプションは作成されません。ノルウェークローネ未払い最近の投稿全体のスコア最も古い投稿エラー404発生注文私たちの銀行の詳細全体人気カテゴリ人気の投稿投稿ページページ%CURRENT_PAGE%の%TOTAL_PAGES%親空を渡す!パスパターンが正しくありません!パスワードパスワードの復元今払うストライプで支払う支払いに失敗しました - 申し訳ありませんが、支払いの処理中にエラーが発生しました。別のお支払い方法でもう一度お試しください。支払方法お支払い方法支払い処理中 - 最新のサブスクリプション支払いが処理されています。支払いが成功しました - 最新のサブスクリプションの支払いが正常に完了しました。支払いタイプ限目フィリピンペソ電話予定あなたのメールアドレスに送信されたリンクをたどってアカウントをアクティブにしてください。パスワードが送信されたEメール(インデックスかスパムフォルダ)を確認してください。メール(受信トレイまたはスパムフォルダ)を確認して、アカウントを検証してください。あなたの電子メール(インデックスまたは迷惑メールフォルダ)を確認してください、パスワードはそこに送られました。メールをチェックして購読を確認してください。続行する前に、新しいパスワードを確認してください。まずはクーポンコードを入力してください!続行する前に新しいパスワードを入力してください。有効なメールアドレスを入力してください。あなたのコメントを入力してください。現在のパスワードを入力してください。ここにあなたのEメールアドレスを入力してくださいここにあなたの名前を入力してください有効なメールアドレスを入力してください。メールアドレスを入力してください。すべてのパスワードフィールドに入力してください。パスワードが一致していることを確認してください。有効なメールアドレスを入力してください。パスワードを再入力してください。お待ちくださいポーランドズロチコメントを書く画像を投稿するレビューを投稿する郵便番号郵便番号投稿者からの投稿同じタグの投稿前前(左アロー キー)前の記事価格価格は設定されていません印刷個人情報保護方針製品カテゴリ商品タグプロフィールの写真公開投稿を公開する新規登録関連記事概要を観覧ランダム評価もっと読むパスワード復旧パスワードをリカバーする登録アカウントを取得する残りの出版権。取り除く新しいパスワードを繰り返します *パスワードを再度入力してください返事アクティベーションリンクを再送あなたのパスワードをリセット再入力したパスが間違っています!再入力されたパスは空です!パスを正確に再入力しました!審査基準ルーマニア(新)レイ銀行コードロシアルーブルシェアソース概要保存変更内容を保存次回の私のコメントのためにこのブラウザに私の名前、電子メール、そしてウェブサイトを保存してください。パスワードを保存する検索キーワードで探す...場所を検索する選択する子を選択親を選択サブ子を選択パスを送るパスワードを送信する支払いの設定セットアップに失敗しました - 申し訳ありませんが、お支払い方法のセットアップ中にエラーが発生しました。別のお支払い方法でもう一度お試しください。セットアップ成功 - 今後の支払いのための支払い方法が正常にセットアップされました。シェアフェイスブックでシェア表示する情報を減らしますさらに情報を表示サインインサインイン/登録するサインアップシンガポールドル一部の必須フィールドが空白のままになっています。誰かが次のアカウントのパスワードのリセットをリクエストしました:すみません。 ページは存在しません。ソースタイトル南アフリカランド開始日州状態住所ストライプの請求書請求書の詳細をストライプ化するストライプのサブスクリプションの詳細提出する返信を送信するレビュー送信購読購読者サブスクリプションがキャンセルされましたサブスクリプションの作成: 初回の請求書が支払われましたサブスクリプションの作成: 最初の請求書が作成されましたサブスクリプションの作成: 最初の請求書が完成し、支払う準備ができています。サブスクリプションの作成: 初回の請求書は無効になりましたサブスクリプションの作成: トライアル中サブスクリプションが削除されましたサブスクリプションの有効期限が切れました: 請求書は無効になりました (最初の請求書は支払われませんでした)サブスクリプションの更新: 請求書が作成されましたサブスクリプションの更新: 請求書が完成しましたサブスクリプションの更新: 請求書支払い済みサブスクリプションの更新: 請求書が近日発行されますサブスクリプションの更新: 請求書は無効になりましたサブスクリプションの更新: 請求書支払い済みサブスクリプションの更新: 請求書は無効になりましたサブスクリプションはキャンセルされ、次の日に終了します:サブスクリプション情報サブスクリプションの概要サブスクリプション成功無事購読されました!無事に退会できました!スウェーデンクローナスイスフランタグタグタグTel:タイバーツありがとう!ここでお会いできることをうれしく思います。サブスクリプションはまもなくアクティブになります!%url%のコンテンツはロードできませんでした。入力したクーポンコードの有効期限が切れています入力したクーポンコードは使用制限に達しました入力したクーポンコードは無効ですメールは正常に送信されました。#%curr%からの画像はロードできませんでした。数値をこれより大きくすることはできません数値をこれより小さくすることはできませんさまざまな投稿タイプにわたって公開するために残っている記事の数。パスワードは正常にリセットされました。パスワードリセットキーの有効期限が切れています。パスワードリセットキーが無効です。選択した投稿は正常に削除されました。%post_title% のステータスが変更されました。このメールアドレスはすでに登録されています。この項目は必須です!このサブスクリプションはキャンセルされており、%end_date% に終了します。タイトルパスワードをリセットするには、次のアドレスにアクセスしてください。合計町/市今話題トライアルトルコリラツイッターでツイートキャッチされないエラー: 問題が発生しました。ページをリロードしてもう一度お試しください。米ドル未払いのサブスクリプション。アップデートこのユーザーは既に存在します!ユーザーが存在しません!ユーザーが空です!ユーザー情報ユーザーかEメールはすで登録されてます!ユーザーかパスワードが間違ってます!ユーザー名ユーザー名が空です!ユーザー名が正しくありません!ユーザー名またはメールアドレスユーザー名: %sバットVAT番号からビュー投稿を全部見る結果を全部見るサブスクリプションを表示ウェブサイト:あなたのアカウントへようこそ!ようこそ!ようこそ! アカウントにログインしてくださいようこそ!アカウントを登録する年間アーカイブはいすでにサブスクリプションをお持ちですが、まだ支払いを待っている状態です。次にいけますこのリクエストを実行するために必要な権限を持っていません。間違ったメールアドレスを入力しました。投稿を作成していません。有効なサブスクリプションプランを選択していません。この記事に送信できるレビューの制限に達しましたこのページを表示するにはログアウトする必要があります。アカウントを作成できませんでした。あなたのアカウントはすでに有効化されています!あなたのアカウントは正常にアクティベートされました!あなたのコメントは管理者の承認待ちです現在のパスワードが間違っています。パスワードはリセットされました。 Eメールを確認してください投稿は正常に作成されました。投稿は正常に更新されました。あなたの返信は公開されました。表示するにはページを更新してください。あなたのレビューが公開されました。表示するにはページを更新してください。あなたのレビューは登録されており、承認を待っています。サブスクリプションの詳細元。税株式会社税行方不明の計画6文字以上の長さが必要です少なくとも1つの小文字(a..z)を含める必要があります少なくとも1つの大文字(a..z)を含める必要がありますのの上または5つのうち検索結果無制限ビューあなたのEメールあなたのパスワードあなたのユーザー名translation/nl_NL.po000064400000103624150211537140010451 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl_NL\n" msgid "View all results" msgstr "Bekijk alle resultaten" msgid "No results" msgstr "Geen resultaten" msgid "Home" msgstr "Home" msgid "CLOSE" msgstr "SLUITEN" msgid "Page" msgstr "Pagina" msgid "All" msgstr "Alle" msgid "By" msgstr "Door" msgid "Load more" msgstr "Laad meer" msgid "View all posts in" msgstr "Bekijk alle posts in" msgid "Tags" msgstr "Tags" msgid "Previous article" msgstr "Vorig artikel" msgid "Next article" msgstr "Volgend artikel" msgid "Authors" msgstr "Auteurs" msgid "Author" msgstr "Auteur" msgid "RELATED ARTICLES" msgstr "GERELATEERDE ARTIKELEN" msgid "MORE FROM AUTHOR" msgstr "MEER VAN DEZE AUTEUR" msgid "VIA" msgstr "VIA" msgid "SOURCE" msgstr "BRON" msgid "TAGS" msgstr "TAGS" msgid "SHARE" msgstr "DELEN" msgid "Continue" msgstr "Verder" msgid "Read more" msgstr "Lees meer" msgid "Name:" msgstr "Naam:" msgid "Email:" msgstr "Email:" msgid "Website:" msgstr "Website:" msgid "Comment:" msgstr "Opmerking:" msgid "LEAVE A REPLY" msgstr "LAAT EEN REACTIE ACHTER" msgid "Post Comment" msgstr "Plaats Opmerking" msgid "Cancel reply" msgstr "Annuleer reactie" msgid "Reply" msgstr "Reageer" msgid "Log in to leave a comment" msgstr "Log in om een opmerking achter te laten" msgid "NO COMMENTS" msgstr "GEEN REACTIES" msgid "1 COMMENT" msgstr "1 REACTIE" msgid "COMMENTS" msgstr "REACTIES" msgid "REVIEW OVERVIEW" msgstr "RECENSIES OVERZICHT" msgid "SUMMARY" msgstr "SAMENVATTING" msgid "OVERALL SCORE" msgstr "TOTALE SCORE" msgid "Ooops... Error 404" msgstr "Oeps… Error 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Sorry, maar de pagina die je zoekt bestaat niet meer.." msgid "You can go to the" msgstr "Je kunt naar de (homepage) gaan" msgid "HOMEPAGE" msgstr "HOMEPAGE" msgid "OUR LATEST POSTS" msgstr "ONZE LAATSTE POSTS" msgid "Posts by" msgstr "Posts van" msgid "POSTS" msgstr "POSTS" msgid "Posts tagged with" msgstr "Posts getagd met" msgid "Tag" msgstr "Tag" msgid "Daily Archives:" msgstr "Dagelijkse Archieven:" msgid "Monthly Archives:" msgstr "Maandelijkse Archieven:" msgid "Yearly Archives:" msgstr "Jaarlijkse Archieven:" msgid "Archives" msgstr "Archieven" msgid "LATEST ARTICLES" msgstr "LAATSTE ARTIKELEN" msgid "search results" msgstr "zoekresultaten" msgid "Search" msgstr "Zoek" msgid "If you're not happy with the results, please do another search" msgstr "Wanneer u niet blij bent met de resultaten, kunt u een nieuwe zoekopdracht geven" msgid "Contact us" msgstr "Neem contact met ons op" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Pagina %CURRENT_PAGE% van %TOTAL_PAGES%" msgid "Next" msgstr "Volgende" msgid "Prev" msgstr "Vorige" msgid "No results for your search" msgstr "Geen resultaten voor uw zoekopdracht" msgid "No posts to display" msgstr "Geen posts om weer te geven" msgid "LOG IN" msgstr "LOG IN" msgid "Sign in / Join" msgstr "Aanmelden" msgid "Log In" msgstr "Log In" msgid "REGISTER" msgstr "REGISTREER" msgid "Send My Pass" msgstr "Stuur Mijn Pas" msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" msgid "Please wait..." msgstr "Even geduld…" msgid "User or password incorrect!" msgstr "Gebruikersnaam of wachtwoord is incorrect!" msgid "Email or username incorrect!" msgstr "E-mail of gebruikersnaam is onjuist" msgid "Email incorrect!" msgstr "E-mail is onjuist" msgid "User or email already exists!" msgstr "Gebruikersnaam of email bestaat al!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Check alsublieft uw mail (inbox of spam), het wachtwoord is daarheen gestuurd" msgid "Email address not found!" msgstr "Emailadres niet gevonden!" msgid "Your password is reset, check your email." msgstr "Wachtwoord is gereset, check email." msgid "Welcome! Log into your account" msgstr "Welkom! Log in op je account" msgid "Register for an account" msgstr "Registreer voor een account" msgid "Recover your password" msgstr "Vind je wachtwoord terug" msgid "your username" msgstr "jouw gebruikersnaam" msgid "your password" msgstr "jouw wachtwoord" msgid "your email" msgstr "jouw mailadres" msgid "A password will be e-mailed to you." msgstr "Er zal een wachtwoord naar je gemaild worden" msgid "Logout" msgstr "Log uit" msgid "Like" msgstr "Like" msgid "Fans" msgstr "Fans" msgid "Follow" msgstr "Volg" msgid "Followers" msgstr "Volgers" msgid "Subscribe" msgstr "Abonneer" msgid "Subscribers" msgstr "Abonnees" msgid "MORE STORIES" msgstr "MEER VERHALEN" msgid "Latest" msgstr "Laatste" msgid "Featured posts" msgstr "Aanbevolen posts" msgid "Most popular" msgstr "Meest populair" msgid "7 days popular" msgstr "7 dagen populair" msgid "By review score" msgstr "Op recensie scores" msgid "Random" msgstr "Willekeurig" msgid "Trending Now" msgstr "Nu Trending" msgid "POPULAR CATEGORY" msgstr "POPULAIRE CATEGORIE" msgid "EVEN MORE NEWS" msgstr "NOG MEER NIEUWS" msgid "Previous (Left arrow key)" msgstr "Vorige (Pijl naar links)" msgid "Next (Right arrow key)" msgstr "Volgende (Pijl naar rechts)" msgid "%curr% of %total%" msgstr "%curr% van %total%" msgid "The content from %url% could not be loaded." msgstr "De inhoud van %url% kan niet worden geladen." msgid "The image #%curr% could not be loaded." msgstr "De afbeelding #%curr% kan niet worden geladen." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Deel op Facebook" msgid "Tweet on Twitter" msgstr "Tweet op Twitter" msgid "EDITOR PICKS" msgstr "SELECTIE VAN DE REDACTIE" msgid "POPULAR POSTS" msgstr "POPULAIRE BERICHTEN" msgid "FOLLOW US" msgstr "VOLG ONS" msgid "ABOUT US" msgstr "OVER ONS" msgid "More" msgstr "Meer" msgid "Featured" msgstr "Uitgelicht" msgid "All time popular" msgstr "Steeds Populair" msgid "Likes" msgstr "Likes" msgid "Register" msgstr "Registreren" msgid "of" msgstr "van" msgid "Euro Member Countries" msgstr "Euro-landen" msgid "Your comment is awaiting moderation" msgstr "Je opmerking moet nog beoordeeld worden" msgid "Follow us on Instagram" msgstr "Volg ons op Instagram" msgid "Back" msgstr "Terug" msgid "Sign in" msgstr "Aanmelden" msgid "Sign up" msgstr "Aanmelden" msgid "Join" msgstr "Toetreden" msgid "Welcome!" msgstr "Welkom!" msgid "Log into your account" msgstr "Log in op jouw account" msgid "Password recovery" msgstr "Wachtwoord herstel" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Controleer dan uw e-mail (index of spam map), werd het wachtwoord daar gestuurd." msgid "Australian Dollar" msgstr "Australische dollar" msgid "Bulgarian Lev" msgstr "Bulgaarse lev" msgid "Brazilian Real" msgstr "Braziliaanse real" msgid "Canadian Dollar" msgstr "Canadese dollar" msgid "Swiss Franc" msgstr "Zwitserse frank" msgid "Chinese Yuan Renminbi" msgstr "Chinese Yuan Renminbi" msgid "Czech Republic Koruna" msgstr "Tsjechië koruna" msgid "Danish Krone" msgstr "Deense kroon" msgid "British Pound" msgstr "Britse pond" msgid "Hong Kong Dollar" msgstr "Hong kong dollar" msgid "Croatian Kuna" msgstr "Kroatische kuna" msgid "Hungarian Forint" msgstr "Hongaarse forint" msgid "Indonesian Rupiah" msgstr "Indonesische roepia" msgid "Israeli Shekel" msgstr "Israëlische shekel" msgid "Indian Rupee" msgstr "Indiase rupee" msgid "Japanese Yen" msgstr "Japanse Yen" msgid "Korean (South) Won" msgstr "Koreaans (zuid) won" msgid "Mexican Peso" msgstr "Mexicaanse Peso" msgid "Malaysian Ringgit" msgstr "Maleisische ringgit" msgid "Norwegian Krone" msgstr "Noorse kroon" msgid "New Zealand Dollar" msgstr "Nieuw-Zeelandse Dollar" msgid "Philippine Peso" msgstr "Filippijnse peso" msgid "Polish Zloty" msgstr "Poolse zloty" msgid "Romanian (New) Leu" msgstr "Roemeens (nieuw) leu" msgid "Russian Ruble" msgstr "Russische roebel" msgid "Swedish Krona" msgstr "Zweedse kroon" msgid "Singapore Dollar" msgstr "Singapore dollar" msgid "Thai Baht" msgstr "Thaise baht" msgid "Turkish Lira" msgstr "Turkse lira" msgid "United States Dollar" msgstr "Verenigde Staten Dollar" msgid "South African Rand" msgstr "Zuid-Afrikaanse Rand" msgid "Privacy Policy" msgstr "Privacybeleid" msgid "views" msgstr "keer bekeken" msgid "Modified date:" msgstr "Aangepaste datum:" msgid "Please enter your name here" msgstr "Vul hier uw naam in" msgid "Please enter your email address here" msgstr "Vul hier uw e-mailadres in" msgid "You have entered an incorrect email address!" msgstr "Je hebt een verkeerd e-mailadres ingevoerd!" msgid "Please enter your comment!" msgstr "Vul alstublieft uw commentaar in!" msgid "Logged in as" msgstr "Ingelogd als" msgid "Log out?" msgstr "Uitloggen?" msgid "Logged in as %s. Edit your profile." msgstr "Ingelogd als% s. pas je profiel aan." msgid "Edit" msgstr "Bewerk" msgid "Login" msgstr "Log in" msgid "Send My Password" msgstr "Stuur mijn wachtwoord" msgid "Create an account" msgstr "Account aanmaken" msgid "Welcome! Register for an account" msgstr "Welkom! registreer voor een account" msgid "About me" msgstr "Over mij" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Bewaar mijn naam, e-mailadres en website in deze browser voor de volgende keer dat ik een opmerking maak." msgid "Orders" msgstr "Bestellingen" msgid "Addresses" msgstr "Adressen" msgid "Account settings" msgstr "Account instellingen" msgid "Hello" msgstr "Hallo" msgid "No products in the cart." msgstr "Geen producten in de winkelwagen." msgid "Product categories" msgstr "Productcategorieën" msgid "Product tags" msgstr "Producttags" msgid "Success" msgstr "Succes" msgid "Acknowledgment is required!" msgstr "Bevestiging is vereist!" msgid "Please fill in a valid email." msgstr "Vul a.u.b. een geldig e-mailadres in." msgid "Please fill in an email address." msgstr "Vul dan een e-mailadres in." msgid "Get into your account." msgstr "In uw account komen." msgid "My subscription account" msgstr "Mijn abonnementsaccount" msgid "Account details" msgstr "Accountgegevens" msgid "Subscriptions" msgstr "Abonnementen" msgid "My woo account" msgstr "Mijn woo account" msgid "Log out" msgstr "Uitloggen" msgid "Email address" msgstr "E-mailadres" msgid "Username" msgstr "Gebruikersnaam" msgid "Password" msgstr "Wachtwoord" msgid "must contain at least one lower case (a..z)" msgstr "moet ten minste één kleine letter (a..z) bevatten" msgid "must contain at least one upper case (A..Z)" msgstr "moet minimaal één hoofdletter (a..z) bevatten" msgid "must contain at least 6 characters in length" msgstr "moet minimaal 6 tekens lang zijn" msgid "Repeat password" msgstr "Herhaal wachtwoord" msgid "Already have an account?" msgstr "Heb je al een account?" msgid "Recover password" msgstr "Wachtwoord herstellen" msgid "Username or Email address" msgstr "Gebruikersnaam of e-mailadres" msgid "Forgot password?" msgstr "Wachtwoord vergeten?" msgid "Don't have an account?" msgstr "Heb je geen account?" msgid "Dashboard" msgstr "Dashboard" msgid "Welcome to your account!" msgstr "Welkom op je account!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Hallo %1$s (niet %2$s? %3$s)! vanuit uw accountdashboard kunt u uw abonnementen bekijken en uw accountgegevens beheren." msgid "Lost Password" msgstr "Vergeten wachtwoord" msgid "Manage your account details." msgstr "Uw accountgegevens beheren." msgid "First name" msgstr "Voornaam" msgid "Last name" msgstr "Achternaam" msgid "Display name" msgstr "Weergavenaam" msgid "Current password" msgstr "Huidig wachtwoord" msgid "(leave blank to leave unchanged)" msgstr "(leeg laten om ongewijzigd te laten)" msgid "New password" msgstr "Nieuw paswoord" msgid "Confirm new password" msgstr "Bevestig nieuw wachtwoord" msgid "Save changes" msgstr "Wijzigingen opslaan" msgid "All your subscriptions." msgstr "Al uw abonnementen." msgid "Plan" msgstr "Plan" msgid "Payment type" msgstr "Betalingswijze" msgid "Status" msgstr "Toestand" msgid "Months" msgstr "Maanden" msgid "Start date" msgstr "Begin datum" msgid "End date" msgstr "Einddatum" msgid "missing plan" msgstr "ontbrekend plan" msgid "Free" msgstr "Vrij" msgid "Active" msgstr "Actief" msgid "Trial" msgstr "Proces" msgid "Blocked" msgstr "Geblokkeerd" msgid "Closed" msgstr "Gesloten" msgid "Not paid" msgstr "Niet betaald" msgid "Awaiting payment" msgstr "In afwachting van betaling" msgid "Subscription info" msgstr "Abonnement info" msgid "ID" msgstr "ID KAART" msgid "Name" msgstr "Naam" msgid "Company name" msgstr "Bedrijfsnaam" msgid "VAT" msgstr "VAT" msgid "Address" msgstr "Adres" msgid "City" msgstr "Stad" msgid "Country/State" msgstr "Land/staat" msgid "Email" msgstr "E-mail" msgid "Postal code" msgstr "Postcode" msgid "Direct bank transfer details" msgstr "Directe bankoverschrijvingsgegevens" msgid "Account name" msgstr "Gebruikersnaam" msgid "Account number" msgstr "Rekeningnummer" msgid "Bank name" msgstr "Banknaam" msgid "Routing number" msgstr "Routeringsnummer:" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "Instructies" msgid "No subscription created." msgstr "Geen abonnement aangemaakt." msgid "Choose plan" msgstr "Kies plan" msgid "Payment methods" msgstr "Betaalmethoden" msgid "Total" msgstr "Totaal" msgid "Period" msgstr "Periode" msgid "Subscription summary" msgstr "Abonnement overzicht" msgid "Phone" msgstr "Telefoon" msgid "Postcode" msgstr "Postcode" msgid "County" msgstr "District" msgid "Town/City" msgstr "Stad/stad" msgid "Street address" msgstr "Adres" msgid "Country/Region" msgstr "Land/regio" msgid "VAT Number" msgstr "Btw-nummer" msgid "(optional)" msgstr "(optioneel)" msgid "Billing details" msgstr "Factuurgegevens" msgid "User information" msgstr "Gebruikers informatie" msgid "It seems that no available payment methods have been configured." msgstr "Het lijkt erop dat er geen beschikbare betaalmethoden zijn geconfigureerd." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Bedankt! we zijn verheugd u hier te zien. je abonnement wordt binnenkort geactiveerd!" msgid "Our bank details" msgstr "Onze bankgegevens" msgid "Your subscription details" msgstr "Uw abonnementsgegevens" msgid "View subscription" msgstr "Bekijk abonnement" msgid "You have not selected a valid subscription plan." msgstr "Je hebt geen geldig abonnement gekozen." msgid "Field empty" msgstr "Veld leeg" msgid "Empty first name" msgstr "Lege voornaam" msgid "Empty last name" msgstr "Lege achternaam" msgid "Empty country" msgstr "Leeg land" msgid "Empty address" msgstr "Leeg adres" msgid "Empty city" msgstr "Lege stad" msgid "Empty county" msgstr "Lege provincie" msgid "Empty postcode" msgstr "Lege postcode" msgid "Empty phone" msgstr "Lege telefoon" msgid "Empty email" msgstr "Lege e-mail" msgid "Email or username empty!" msgstr "E-mail of gebruikersnaam leeg!" msgid "Pass empty!" msgstr "Ga leeg!" msgid "Username incorrect!" msgstr "Gebruikersnaam onjuist!" msgid "Invalid Pass Pattern!" msgstr "Ongeldig paspatroon!" msgid "Please activate your account by following the link sent to your email address." msgstr "Activeer uw account door de link te volgen die naar uw e-mailadres is verzonden." msgid "Resend activation link" msgstr "Activatielink opnieuw verzenden" msgid "In order to have access to this section, you have to activate your account." msgstr "Om toegang te krijgen tot deze sectie, moet u uw account activeren." msgid "Email empty!" msgstr "E-mail leeg!" msgid "Username empty!" msgstr "Gebruikersnaam leeg!" msgid "Pass pattern incorrect!" msgstr "Paspatroon onjuist!" msgid "Retyped pass empty!" msgstr "Overgetypte pas leeg!" msgid "Retyped pass exactly!" msgstr "Overgetypt pas precies!" msgid "User already exists!" msgstr "Gebruiker bestaat al!" msgid "Email already exists!" msgstr "E-mail bestaat al!" msgid "Your account could not be created." msgstr "Uw account kon niet worden aangemaakt." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Controleer uw e-mail (inbox of spammap) om uw account te valideren." msgid "User empty!" msgstr "Gebruiker leeg!" msgid "User does not exists!" msgstr "Gebruiker bestaat niet!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Er is een nieuwe activeringslink gegenereerd. controleer uw e-mail (inbox of spammap) om uw account te valideren." msgid "CAPTCHA verification failed!" msgstr "Captcha-verificatie mislukt!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Captcha gebruikersscore mislukt. Gelieve ons te contacteren!" msgid "Loading" msgstr "Bezig met laden" msgid "Here are the results for the search:" msgstr "Hier zijn de resultaten voor de zoekopdracht:" msgid "Price" msgstr "Prijs" msgid "EXCLUSIVE" msgstr "EXCLUSIEF" msgid "Tel:" msgstr "Tel:" msgid "Share" msgstr "Deel" msgid "Print" msgstr "Afdrukken" msgid "At" msgstr "Bij" msgid "Comments are closed." msgstr "Reacties zijn gesloten." msgid "Payment method" msgstr "Betalingsmiddel" msgid "You must be logged out to view this page." msgstr "Om deze pagina te bekijken moet u uitgelogd zijn." msgid "Retyped Pass incorrect!" msgstr "Opnieuw getypte pas onjuist!" msgid "%s is a required field." msgstr "%s is een verplicht veld." msgid "Please provide a valid email address." msgstr "Geef alstublieft een geldig email adres." msgid "This email address is already registered." msgstr "Dit emailadres is al geregistreerd." msgid "Please fill out all password fields." msgstr "Vul alle wachtwoordvelden in." msgid "Please enter your current password." msgstr "Voer uw huidige wachtwoord in." msgid "Please re-enter your password." msgstr "Vul alstublieft uw wachtwoord opnieuw in." msgid "New passwords do not match." msgstr "Nieuwe wachtwoorden komen niet overeen." msgid "Your current password is incorrect." msgstr "Uw huidige wachtwoord is onjuist." msgid "Account details changed successfully." msgstr "Accountgegevens zijn succesvol gewijzigd." msgid "A new activation link has been sent to your email address!" msgstr "Er is een nieuwe activatielink naar uw e-mailadres verzonden!" msgid "unlimited" msgstr "onbeperkt" msgid "Pay with Stripe" msgstr "Betalen met streep" msgid "Cancel subscription" msgstr "Annuleer abonnement" msgid "Please check your email and confirm subscription!" msgstr "Controleer uw e-mail en bevestig uw inschrijving!" msgid "Successfully subscribed!" msgstr "Succesvol geabonneerd!" msgid "Successfully unsubscribed!" msgstr "Succesvol uitgeschreven!" msgid "Enter promo code here" msgstr "Voer hier de promotiecode in" msgid "Apply" msgstr "Toepassen" msgid "Coupon applied" msgstr "Coupon toegepast" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Onopgemerkte fout: er is iets misgegaan, herlaad de pagina en probeer het opnieuw!" msgid "The coupon code you entered is invalid" msgstr "De couponcode die u heeft ingevoerd is ongeldig" msgid "The coupon code you entered has reached its usage limit" msgstr "De couponcode die u heeft ingevoerd heeft de gebruikslimiet bereikt" msgid "The coupon code you entered has expired" msgstr "De couponcode die u heeft ingevoerd is verlopen" msgid "Coupon name is required !" msgstr "Couponnaam is vereist!" msgid "Please enter a coupon code first!" msgstr "Voer eerst een couponcode in!" msgid "Invalid" msgstr "Ongeldig" msgid "Applied" msgstr "Toegepast" msgid "Remove" msgstr "Verwijderen" msgid "Price not set" msgstr "Prijs niet ingesteld" msgid "Grand Total" msgstr "Eindtotaal" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Je hebt al een abonnement, maar het wacht nog op betaling!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Dit abonnement is opgezegd en eindigt op %end_date%." msgid "Go to checkout" msgstr "Ga naar de kassa" msgid "Stripe invoice details" msgstr "Gestreepte factuurgegevens" msgid "Stripe subscription details" msgstr "Stripe-abonnementsgegevens" msgid "Current status" msgstr "Huidige status" msgid "Initial Invoice Paid" msgstr "Eerste factuur betaald" msgid "Subscription Create: Initial Invoice Paid" msgstr "Abonnement aanmaken: eerste factuur betaald" msgid "Subscription Create: Initial Invoice has been created" msgstr "Abonnement aanmaken: initiële factuur is aangemaakt" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Abonnement aanmaken: de eerste factuur is afgerond en is klaar om te worden betaald" msgid "Subscription Update: Invoice Paid" msgstr "Abonnementsupdate: factuur betaald" msgid "Subscription Renew: Invoice Paid" msgstr "Abonnement verlengen: factuur betaald" msgid "Subscription Renew: Invoice Finalized" msgstr "Abonnement verlengen: factuur afgerond" msgid "Subscription Renew: Invoice Created" msgstr "Abonnement verlengen: factuur aangemaakt" msgid "Subscription Renew: Invoice Upcoming" msgstr "Abonnement verlengen: factuur binnenkort" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Abonnement verlopen: factuur ongeldig (de eerste factuur is niet betaald)" msgid "Subscription Deleted" msgstr "Abonnement verwijderd" msgid "Subscription Create: Trialing" msgstr "Abonnement aanmaken: uitproberen" msgid "Subscription Canceled" msgstr "Abonnement opgezegd" msgid "Subscription Create: Initial Invoice voided" msgstr "Abonnement aanmaken: initiële factuur ongeldig" msgid "Subscription Renew: Invoice voided" msgstr "Abonnement verlengen: factuur ongeldig" msgid "Subscription Update: Invoice voided" msgstr "Abonnementsupdate: factuur ongeldig verklaard" msgid "Invoice updated" msgstr "Factuur bijgewerkt" msgid "Subscription has been canceled and will end on: " msgstr "Abonnement is opgezegd en eindigt op:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Installatie succesvol - u heeft uw betaalmethode voor toekomstige betalingen succesvol ingesteld." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Installatie mislukt - het spijt ons, er is een fout opgetreden bij het instellen van uw betaalmethode. Probeer het opnieuw met een andere betaalmethode." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Betaling succesvol - uw laatste abonnementsbetaling is succesvol voltooid." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Betalingsverwerking - uw laatste abonnementsbetaling wordt verwerkt." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Betaling mislukt - het spijt ons, er is een fout opgetreden bij het verwerken van uw betaling. Probeer het opnieuw met een andere betaalmethode." msgid "Download" msgstr "Downloaden" msgid "Stripe invoice" msgstr "Streep factuur" msgid "N/A" msgstr "N.v.t" msgid "Latest invoice" msgstr "Laatste factuur" msgid "Invoice" msgstr "Factuur" msgid "Unpaid subscription." msgstr "Onbetaald abonnement." msgid "Locked subscription." msgstr "Vergrendeld abonnement." msgid "Invalid subscription." msgstr "Ongeldig abonnement." msgid "Pay now" msgstr "Nu betalen" msgid "Show more info" msgstr "Meer informatie weergeven" msgid "Show less info" msgstr "Minder informatie weergeven" msgid "Complete payment" msgstr "Volledige betaling" msgid "or" msgstr "of" msgid "Setup Payment" msgstr "Betaling instellen" msgid "Go to Payment" msgstr "Ga naar betaling" msgid "Alphabetical A -> Z" msgstr "Alfabetisch a -> z" msgid "Oldest posts" msgstr "Oudste berichten" msgid "Select" msgstr "Selecteren" msgid "on" msgstr "op" msgid "No bookmarked posts" msgstr "Geen berichten met bladwijzers" msgid "Log in With Facebook" msgstr "Inloggen met Facebook" msgid "Forgot your password? Get help" msgstr "Je wachtwoord vergeten? hulp krijgen" msgid "Someone has requested a password reset for the following account:" msgstr "Iemand heeft een wachtwoordreset aangevraagd voor het volgende account:" msgid "Username: %s" msgstr "Gebruikersnaam: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Als dit een vergissing was, negeer dan deze e-mail en er zal niets gebeuren." msgid "To reset your password, visit the following address:" msgstr "Om uw wachtwoord opnieuw in te stellen, gaat u naar het volgende adres:" msgid "Members" msgstr "Leden" msgid "Downloads" msgstr "Downloads" msgid "inc. TAX" msgstr "incl. belasting" msgid "ex. TAX" msgstr "ex. belasting" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Er is een onverwachte fout opgetreden tijdens het maken van uw bericht. Probeer het opnieuw." msgid "Your post has been successfully created." msgstr "Je bericht is succesvol aangemaakt." msgid "Your post has been successfully updated." msgstr "Uw bericht is succesvol bijgewerkt." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Er is een onverwachte fout opgetreden en de e-mail kon niet worden verzonden." msgid "Location:" msgstr "Plaats:" msgid "The email has been successfully sent." msgstr "De e-mail is succesvol verzonden." msgid "An unexpected error has occurred. Please try again." msgstr "Er is een onverwachte fout opgetreden. Probeer het opnieuw." msgid "Drag and drop or browse" msgstr "Slepen en neerzetten of bladeren" msgid "Search by keyword..." msgstr "Zoek op trefwoord..." msgid "Select parent" msgstr "Selecteer ouder" msgid "Add new" msgstr "Nieuw toevoegen" msgid "Parent" msgstr "Ouder" msgid "Select child" msgstr "Kind selecteren" msgid "Select sub-child" msgstr "Selecteer subkind" msgid "Posted by" msgstr "Gepost door" msgid "Overall" msgstr "Algemeen" msgid "Post review" msgstr "Beoordeling plaatsen" msgid "This field is required!" msgstr "Dit veld is verplicht!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Uw recensie is gepubliceerd. Vernieuw de pagina om deze te zien." msgid "Your review has been registered and is awaiting approval." msgstr "Uw recensie is geregistreerd en wacht op goedkeuring." msgid "Submit reply" msgstr "Verzend antwoord" msgid "Enter your reply" msgstr "Voer uw antwoord in" msgid "Cancel" msgstr "Annuleren" msgid "Some required fields have been left blank." msgstr "Sommige verplichte velden zijn leeg gelaten." msgid "Please enter a valid email address." msgstr "Gelieve een geldig e-mailadres in te geven." msgid "The number cannot be lower than" msgstr "Het getal kan niet lager zijn dan" msgid "The number cannot be higher than" msgstr "Het getal kan niet hoger zijn dan" msgid "Leave a review" msgstr "Laat een beoordeling achter" msgid "Submit" msgstr "Indienen" msgid "Update" msgstr "Update" msgid "out of 5" msgstr "uit 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "U heeft de limiet bereikt van het aantal beoordelingen dat u voor dit artikel kunt indienen" msgid "Log in to leave a review." msgstr "Log in om een recensie achter te laten." msgid "Enter a title for your review" msgstr "Voer een titel in voor uw recensie" msgid "Enter your review" msgstr "Voer uw recensie in" msgid "Review criteria" msgstr "Beoordelingscriteria" msgid "Enter Your Name or Company" msgstr "Vul uw naam of bedrijf in" msgid "Submit review" msgstr "Review versturen" msgid "Delete" msgstr "Verwijderen" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Uw antwoord is gepubliceerd. Vernieuw de pagina om deze te zien." msgid "You have not created any posts." msgstr "Je hebt geen berichten aangemaakt." msgid "The selected post has been successfully deleted." msgstr "Het geselecteerde bericht is succesvol verwijderd." msgid "Rating" msgstr "Beoordeling" msgid "Title" msgstr "Titel" msgid "Post image" msgstr "Afbeelding plaatsen" msgid "Categories" msgstr "Categorieën" msgid "Date" msgstr "Datum" msgid "Source title" msgstr "Bron titel" msgid "No rating" msgstr "Geen beoordeling" msgid "View" msgstr "Weergave" msgid "Publish" msgstr "Publiceren" msgid "Add new post" msgstr "Nieuw bericht toevoegen" msgid "Edit post" msgstr "Bericht bewerken" msgid "Publish a post" msgstr "Een bericht publiceren" msgid "The status for %POST_TITLE% has been changed." msgstr "De status voor %post_title% is gewijzigd." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Weet je zeker dat je %post_title% wilt publiceren?" msgid "Delete a post" msgstr "Verwijder een bericht" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Weet je zeker dat je %post_title% wilt verwijderen?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% is verplaatst naar de prullenbak." msgid "You do not hold the required priveleges to execute this request." msgstr "U beschikt niet over de vereiste rechten om dit verzoek uit te voeren." msgid "No search results." msgstr "Geen resultaten gevonden." msgid "Yes" msgstr "Ja" msgid "No" msgstr "Nee" msgid "Save" msgstr "Redden" msgid "Search for a location" msgstr "Zoek naar een locatie" msgid "Address line" msgstr "Adresregel" msgid "(Optional)" msgstr "(optioneel)" msgid "State" msgstr "Staat" msgid "Country" msgstr "Land" msgid "Create new term" msgstr "Nieuwe termijn creëren" msgid "Description" msgstr "Beschrijving" msgid "Delete bookmarks" msgstr "Bladwijzers verwijderen" msgid "Reset your password" msgstr "Stel je wachtwoord opnieuw in" msgid "The password reset key has expired." msgstr "De wachtwoordherstelsleutel is verlopen." msgid "The password reset key is invalid." msgstr "De wachtwoordresetsleutel is ongeldig." msgid "New password *" msgstr "Nieuw paswoord *" msgid "Repeat new password *" msgstr "Herhaal nieuw wachtwoord *" msgid "Save password" msgstr "Wachtwoord opslaan" msgid "Your account has been successfully activated!" msgstr "Uw account is succesvol geactiveerd!" msgid "Your account has already been activated!" msgstr "Uw account is al geactiveerd!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Controleer uw e-mail voor de juiste activatielink. deze link is ongeldig." msgid "Account activation" msgstr "Account activatie" msgid "Please enter a new password before proceeding." msgstr "Voer een nieuw wachtwoord in voordat u doorgaat." msgid "Please confirm the new password before proceeding." msgstr "Bevestig het nieuwe wachtwoord voordat u doorgaat." msgid "Please make sure that the passwords match." msgstr "Zorg ervoor dat de wachtwoorden overeenkomen." msgid "The password has been reset successfully." msgstr "Het wachtwoord is succesvol gereset." msgid "Manage your billing details." msgstr "Beheer uw factuurgegevens." msgid "Profile picture" msgstr "Profielfoto" msgid "Remaining publishing rights." msgstr "Resterende publicatierechten." msgid "The number of articles you have left to publish across different post types." msgstr "Het aantal artikelen dat u nog moet publiceren over verschillende berichttypen." msgid "Bank transfer" msgstr "Overschrijving" msgid "Direct Bank Transfer" msgstr "Directe bankoverschrijving" msgid "Canceled" msgstr "Geannuleerd" msgid "Cycle Interval" msgstr "Cyclus interval" msgid "In order to update this filed, you have to activate your account." msgstr "Om dit bestand bij te werken, moet u uw account activeren." msgid "Cannot process %s field." msgstr "Kan %s veld niet verwerken." msgid "Modified date" msgstr "Aangepaste datum" translation/th.mo000064400000145035150211537140010061 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,gEg![g}gEglg!Ihkhhh<h*i-+iYiiiyii$i"i.i+j1KjU}j[j/k0Bk3sk6k-k l0+l0\l'l?l'lHmWfmEm-n?2n0rnnnnn' o2oKo"^oo"o4oeo [p6ep0p!p'pq-q!@qRbrr'r*rs.s1stt,u!u9uWvlvvFvHv1w<Pw-ww3Ux x1x$x$x!y4yJy0]y-y y*y'yz5zHLz!z6zTz]C{H{{ |3)|m]|!||! }<.}6k}*}Q}r~~$~!~"~6FV'lB&0 ? L3Y:$ȁ&?T6d!9Ђ3 9>0x?-]-$3Ƅ!?8\B'9&` p3}ĆF(*Al-C--+Y_32f3̋ߋrvFrC0otIL.]{`ّH:H-̒llgZԓ]/-<ה-$L$q$•9K!3m -ܖ?*,Wv$З9!& H!U'w*<ʘ$<,Zię5˙! #N-<|C@.>-m+*Ǜ'0 O\<o*˝3۝$4D*]$336OL00ѡ9'<:d-cvD*<0g*äӤ'E*Qp ¥̥$0 ;HN!S<qh}ewLīeHt}#<$$a3@ٮI!d ̯ׯJZWWٱ?1@q99&H̳WTm]´V ]w.յ bx'ٷ-#Ef=:..!$POuUź::=uN"-%!S u0!0ܼ O&%vhb-h *'RXK9 ]T#Ux^-`NugH[]pMp /9 @ MYo$*0lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: th %post_title% ถูกย้ายไปที่ถังขยะแล้ว%curr%ของ%total%%s เป็นฟิลด์บังคับ(ไม่จำเป็น)(เว้นว่างไว้ไม่เปลี่ยนแปลง)(ไม่จำเป็น)1 ความคิดเห็น7 วันที่เป็นที่นิยมลิงค์เปิดใช้งานใหม่ได้ถูกส่งไปยังที่อยู่อีเมลของคุณแล้ว!รหัสผ่านจะถูกอีเมล์ถึงคุณเกี่ยวกับเราเกี่ยวกับฉันการเปิดใช้งานบัญชีรายละเอียดบัญชีรายละเอียดบัญชีเปลี่ยนแปลงเรียบร้อยแล้วชื่อบัญชีหมายเลขบัญชีการตั้งค่าบัญชีจำเป็นต้องรับทราบ!คล่องแคล่วเพิ่มใหม่เพิ่มโพสต์ใหม่ที่อยู่บรรทัดที่อยู่ที่อยู่ทั้งหมดเวลาที่นิยมทั้งหมดการสมัครสมาชิกทั้งหมดของคุณตามตัวอักษร a -> zมีบัญชีอยู่แล้ว?เกิดข้อผิดพลาดที่ไม่คาดคิดขณะพยายามสร้างโพสต์ของคุณ กรุณาลองอีกครั้ง.เกิดข้อผิดพลาดที่ไม่คาดคิดและไม่สามารถส่งอีเมลได้ข้อผิดพลาดที่ไม่คาดคิดได้เกิดขึ้น. กรุณาลองอีกครั้ง.สมัครแล้วนำมาใช้จดหมายเหตุคุณแน่ใจหรือไม่ว่าต้องการลบ %post_title%?คุณแน่ใจหรือไม่ว่าต้องการเผยแพร่ %post_title%?ที่ดอลลาร์ออสเตรเลียผู้เขียนผู้เขียนรอการชำระเงินกลับชื่อธนาคารโอนเงินผ่านธนาคารBic/swiftรายละเอียดการเรียกเก็บเงินถูกบล็อกบล็อกเรียลบราซิลปอนด์อังกฤษบัลแกเรีย Levโดยโดยคะแนนทบทวนคะแนนผู้ใช้ captcha ล้มเหลว กรุณาติดต่อเรา!การตรวจสอบ captcha ล้มเหลว!ปิดความคิดเห็นดอลลาร์แคนาดายกเลิกยกเลิกการตอบยกเลิกการสมัครสมาชิกยกเลิกไม่สามารถประมวลผลฟิลด์ %s ได้หมวดหมู่ตรวจสอบอีเมลของคุณเพื่อดูลิงก์เปิดใช้งานที่ถูกต้อง ลิงค์นี้ไม่ถูกต้องหยวนหยวนจีนเลือกแผนเมืองปิดความคิดเห็นความคิดเห็นถูกปิดชื่อ บริษัทชำระเงินให้เสร็จสิ้นยืนยันรหัสผ่านใหม่ติดต่อเราดำเนินการต่อประเทศประเทศ/ภูมิภาคประเทศ/รัฐเขตใช้คูปองแล้วต้องระบุชื่อคูปอง !สร้างบัญชีสร้างคำศัพท์ใหม่คูนาโครเอเชียรหัสผ่านปัจจุบันสถานะปัจจุบันช่วงเวลาของรอบวักสาธารณรัฐเช็กจดหมายเหตุประจำวันKrone เดนมาร์กแผงควบคุมวันที่ลบลบโพสต์ลบบุ๊กมาร์กคำอธิบายโอนเงินผ่านธนาคารโดยตรงรายละเอียดการโอนเงินผ่านธนาคารโดยตรงชื่อที่แสดงไม่มีบัญชี?ดาวน์โหลดดาวน์โหลดลากและวางหรือเรียกดูหยิบบรรณาธิการข่าวมากยิ่งขึ้นพิเศษแก้ไขแก้ไขโพสต์อีเมลที่อยู่อีเมลไม่พบอีเมล์!มีอีเมลอยู่แล้ว!อีเมลว่างเปล่า!อีเมล์ไม่ถูกต้อง!อีเมลหรือชื่อผู้ใช้ว่างเปล่า!อีเมล์หรือชื่อผู้ใช้ไม่ถูกต้อง!อีเมล์ที่อยู่ว่างเปล่าเมืองที่ว่างเปล่าประเทศที่ว่างเปล่าเขตที่ว่างเปล่าอีเมลเปล่าชื่อที่ว่างเปล่านามสกุลว่างเปล่าโทรศัพท์เปล่ารหัสไปรษณีย์ว่างเปล่าวันที่สิ้นสุดป้อนชื่อหรือบริษัทของคุณป้อนชื่อสำหรับบทวิจารณ์ของคุณกรอกรหัสโปรโมชั่นที่นี่ป้อนคำตอบของคุณป้อนความคิดเห็นของคุณประเทศสมาชิกยูโรตามเราแฟนคลับที่โดดเด่นโพสต์แนะนำช่องว่างเปล่าชื่อจริงติดตามติดตามบน Instagramผู้ติดตามลืมรหัสผ่าน?ลืมรหัสผ่านของคุณ?ลืมรหัสผ่านหรือไม่? ขอความช่วยเหลือฟรีเข้าสู่บัญชีของคุณไปที่การชำระเงินไปเช็คเอาท์ผลรวมทั้งสิ้นหน้าแรกสวัสดีสวัสดี %1$s (ไม่ใช่ %2$s? %3$s)! จากแดชบอร์ดบัญชีของคุณ คุณสามารถดูการสมัครของคุณและจัดการรายละเอียดบัญชีของคุณนี่คือผลลัพธ์สำหรับการค้นหา:หน้าแรกดอลลาร์ฮ่องกงโฟรินท์ฮังการีอิบันIDหากนี่เป็นข้อผิดพลาด เพียงเพิกเฉยต่ออีเมลฉบับนี้และจะไม่มีอะไรเกิดขึ้นหากคุณไม่มีความสุขกับผลที่ได้ โปรดดำเนินการค้นหาอื่นเพื่อเข้าถึงส่วนนี้ คุณต้องเปิดใช้งานบัญชีของคุณเพื่ออัปเดตไฟล์นี้ คุณต้องเปิดใช้งานบัญชีของคุณรูปีอินเดียรูเปียห์อินโดนีเซียใบแจ้งหนี้เริ่มต้นที่ชำระแล้วคำแนะนำไม่ถูกต้องรูปแบบการผ่านไม่ถูกต้อง!การสมัครสมาชิกไม่ถูกต้องใบแจ้งหนี้อัปเดตใบแจ้งหนี้แล้วเชคเคิลอิสราเอลดูเหมือนว่าไม่มีการกำหนดค่าวิธีการชำระเงินที่ใช้ได้เงินเยนของญี่ปุ่นร่วมเกาหลี (ภาคใต้) ชนะบทความล่าสุดทิ้งคำตอบไว้เข้าสู่ระบบนามสกุลล่าสุดใบแจ้งหนี้ล่าสุดแสดงความคิดเห็นชอบทำเช่นเดียวกับโหลดเพิ่มเติมกำลังโหลดที่ตั้ง:การสมัครสมาชิกที่ถูกล็อคเข้าสู่ระบบเข้าสู่ระบบด้วย Facebookเข้าระบบเพื่อแสดงความคิดเห็นเข้าสู่ระบบเพื่อแสดงความคิดเห็นลงชื่อเข้าใช้บัญชีของคุณออกจากระบบออกจากระบบ?เข้าสู่ระบบในฐานะลงชื่อเข้าใช้ด้วย% s แก้ไขโปรไฟล์ของคุณเข้าสู่ระบบออกจากระบบรหัสผ่านหายเพิ่มเติมจากผู้เขียนเรื่องราวเพิ่มเติมริงกิตมาเลเซียจัดการรายละเอียดบัญชีของคุณจัดการรายละเอียดการเรียกเก็บเงินของคุณสมาชิกเปโซเม็กซิโกวันที่แก้ไขวันที่แก้ไข:จดหมายเหตุรายเดือนเดือนมากกว่านิยมมากที่สุดบัญชีสมัครสมาชิกของฉันบัญชี woo ของฉันไม่มีไม่มีความคิดเห็นชื่อชื่อดอลลาร์นิวซีแลนด์ลิงค์เปิดใช้งานใหม่ถูกสร้างขึ้น โปรดตรวจสอบอีเมลของคุณ (กล่องจดหมายหรือโฟลเดอร์สแปม) เพื่อตรวจสอบบัญชีของคุณรหัสผ่านใหม่รหัสผ่านใหม่ *รหัสผ่านใหม่ไม่ตรงกันถัดไปถัดไป (ปุ่มลูกศรขวา)บทความถัดไปเลขที่ไม่มีบุ๊กมาร์กโพสต์ไม่มีโพสต์ที่แสดงไม่มีสินค้าในรถเข็นไม่มีการให้คะแนนไม่มีผลไม่มีผลการค้นหาขอลคุณไม่มีผลการค้นหาไม่มีการสมัครสมาชิกที่สร้างขึ้นโครนนอร์เวย์ไม่จ่ายโพสต์ล่าสุดของเราคะแนนโดยรวมโพสต์ที่เก่าแก่ที่สุดโอ๊ะโอ… ข้อผิดพลาด 404คำสั่งรายละเอียดธนาคารของเราโดยรวมประเภทยอดนิยมโพสต์ที่เป็นที่นิยมโพสต์หน้าหน้า %CURRENT_PAGE% ของ %TOTAL_PAGES%พ่อแม่ผ่านเปล่า!รูปแบบการผ่านไม่ถูกต้อง!รหัสผ่านกู้คืนรหัสผ่านจ่ายตอนนี้ชำระเงินด้วยแถบการชำระเงินล้มเหลว - ขออภัย มีข้อผิดพลาดในการประมวลผลการชำระเงินของคุณ โปรดลองอีกครั้งโดยใช้วิธีการชำระเงินอื่นวิธีการชำระเงินวิธีการชำระเงินการประมวลผลการชำระเงิน - การชำระเงินการสมัครสมาชิกครั้งล่าสุดของคุณกำลังได้รับการประมวลผลชำระเงินสำเร็จ - ชำระเงินค่าสมัครสมาชิกครั้งล่าสุดของคุณเสร็จสมบูรณ์แล้วประเภทการชำระเงินระยะเวลาเปโซของฟิลิปปินส์โทรศัพท์วางแผนโปรดเปิดใช้งานบัญชีของคุณโดยไปที่ลิงก์ที่ส่งไปยังที่อยู่อีเมลของคุณกรุณาตรวจสอบอีเมล์ของคุณ (ดัชนีหรือโฟลเดอร์อีเมล์ขยะ) รหัสผ่านถูกส่งไปที่นั่นแล้วโปรดตรวจสอบอีเมลของคุณ (กล่องจดหมายหรือโฟลเดอร์สแปม) เพื่อตรวจสอบบัญชีของคุณโปรดตรวจสอบอีเมลของคุณ (ดัชนีหรือสแปมโฟลเดอร์) รหัสผ่านที่ถูกส่งไปที่นั่นโปรดตรวจสอบอีเมลของคุณและยืนยันการสมัคร!โปรดยืนยันรหัสผ่านใหม่ก่อนดำเนินการต่อกรุณากรอกรหัสคูปองก่อน!กรุณากรอกรหัสผ่านใหม่ก่อนดำเนินการต่อกรุณาใส่อีเมล์ที่ถูกต้อง.กรุณาใส่ความคิดเห็นของคุณ!กรุณากรอกรหัสผ่านปัจจุบันของคุณกรุณาใส่ที่อยู่อีเมลของคุณที่นี่กรุณาใส่ชื่อของคุณที่นี่กรุณากรอกอีเมลที่ถูกต้องกรุณากรอกอีเมล์กรุณากรอกข้อมูลในช่องรหัสผ่านทั้งหมดโปรดตรวจสอบให้แน่ใจว่ารหัสผ่านตรงกันโปรดระบุที่อยู่อีเมลที่ถูกต้องกรุณากรอกรหัสผ่านของคุณอีกครั้งกรุณารอสักครู่…โปแลนด์ Zlotyโพสต์แสดงความคิดเห็นโพสต์ภาพโพสต์รีวิวรหัสไปรษณีย์รหัสไปรษณีย์โพสโดยโพสต์ของโพสต์แท็กกับย้อนกลับหน้าที่แล้วก่อนหน้านี้ (ปุ่มลูกศรซ้าย)บทความก่อนหน้านี้ราคาไม่ได้กำหนดราคาพิมพ์นโยบายความเป็นส่วนตัวหมวดหมู่สินค้าป้ายสินค้ารูปประวัติเผยแพร่เผยแพร่โพสต์ลงทะเบียนบทความที่เกี่ยวข้องทบทวนภาพรวมสุ่มการให้คะแนนอ่านเพิ่มเติมกู้คืนรหัสผ่านกู้คืนรหัสผ่านของคุณการลงทะเบียนลงทะเบียนสำหรับบัญชีสิทธิ์ในการเผยแพร่ที่เหลืออยู่ลบทำซ้ำรหัสผ่านใหม่ *รหัสผ่านซ้ำตอบส่งลิงค์เปิดใช้งานอีกครั้งรีเซ็ตรหัสผ่านของคุณพิมพ์ซ้ำผ่านไม่ถูกต้อง!พิมพ์ซ้ำผ่านว่างเปล่า!พิมพ์ซ้ำผ่านตรง!เกณฑ์การพิจารณาโรมาเนีย (ใหม่) Leuเส้นทางหมายเลขรูเบิลรัสเซียแบ่งปันแหล่งที่มาสรุปบันทึกบันทึกการเปลี่ยนแปลงบันทึกชื่ออีเมลและเว็บไซต์ของฉันในเบราว์เซอร์นี้ในครั้งต่อไปที่ฉันแสดงความคิดเห็นบันทึกรหัสผ่านค้นหาค้นหาด้วยคำสำคัญ...ค้นหาสถานที่เลือกเลือกลูกเลือกผู้ปกครองเลือกลูกย่อยส่งรหัสผ่านของฉันส่งรหัสผ่านของฉันตั้งค่าการชำระเงินการตั้งค่าล้มเหลว - ขออภัย เกิดข้อผิดพลาดในการตั้งค่าวิธีการชำระเงินของคุณ โปรดลองอีกครั้งโดยใช้วิธีการชำระเงินอื่นการตั้งค่าสำเร็จ - คุณได้ตั้งค่าวิธีการชำระเงินสำหรับการชำระเงินในอนาคตสำเร็จแล้วแบ่งปันแบ่งปันบนเฟสบุ๊คแสดงข้อมูลน้อยลงแสดงข้อมูลเพิ่มเติมลงชื่อเข้าใช้เข้าสู่ระบบ/เข้าร่วมลงชื่อดอลลาร์สิงคโปร์ช่องที่ต้องกรอกบางช่องเว้นว่างไว้มีคนขอรีเซ็ตรหัสผ่านสำหรับบัญชีต่อไปนี้:ขออภัย, แต่หน้าที่คุณกำลังมองหานั้นไม่มีอยู่ชื่อแหล่งที่มาภาคใต้ Rand แอฟริกันวันที่เริ่มต้นสถานะสถานะที่อยู่ถนนใบแจ้งหนี้ลายรายละเอียดใบแจ้งหนี้แถบรายละเอียดการสมัครสมาชิกแถบส่งส่งคำตอบส่งบทวิจารณ์บอกรับเป็นสมาชิกสมาชิกยกเลิกการสมัครสมาชิกแล้วสร้างการสมัครสมาชิก: ชำระใบแจ้งหนี้เริ่มต้นแล้วสร้างการสมัครสมาชิก: สร้างใบแจ้งหนี้เริ่มต้นแล้วสร้างการสมัครสมาชิก: ใบแจ้งหนี้เริ่มแรกได้รับการสรุปแล้ว และพร้อมที่จะชำระเงินสร้างการสมัครสมาชิก: ใบแจ้งหนี้เริ่มต้นเป็นโมฆะสร้างการสมัครสมาชิก: ทดลองใช้ลบการสมัครสมาชิกแล้วการสมัครสมาชิกหมดอายุ: ใบแจ้งหนี้ถือเป็นโมฆะ (ไม่ได้ชำระใบแจ้งหนี้ใบแรก)ต่ออายุการสมัคร: สร้างใบแจ้งหนี้แล้วต่ออายุการสมัคร: สรุปใบแจ้งหนี้แล้วต่ออายุการสมัครสมาชิก: ชำระใบแจ้งหนี้แล้วต่ออายุการสมัคร: ใบแจ้งหนี้ที่กำลังจะเกิดขึ้นต่ออายุการสมัคร: ใบแจ้งหนี้เป็นโมฆะอัปเดตการสมัครสมาชิก: ชำระใบแจ้งหนี้แล้วการอัปเดตการสมัครสมาชิก: ใบแจ้งหนี้เป็นโมฆะการสมัครสมาชิกถูกยกเลิกและจะสิ้นสุดในวันที่:ข้อมูลการสมัครสมาชิกสรุปการสมัครการสมัครรับข้อมูลความสำเร็จสมัครสมาชิกสำเร็จแล้ว!ยกเลิกการสมัครสำเร็จแล้ว!โครนาสวีเดนฟรังก์สวิสแท็กแท็กแท็กโทร:บาทไทยขอบคุณ! เราดีใจที่ได้พบคุณที่นี่ การสมัครของคุณจะเปิดใช้งานเร็ว ๆ นี้!เนื้อหาจาก%url%ไม่สามารถโหลดรหัสคูปองที่คุณป้อนหมดอายุแล้วรหัสคูปองที่คุณป้อนถึงขีดจำกัดการใช้งานแล้วรหัสคูปองที่คุณป้อนไม่ถูกต้องส่งอีเมลเรียบร้อยแล้วรูปภาพ#%curr%ไม่สามารถโหลดจำนวนต้องไม่สูงกว่าจำนวนต้องไม่ต่ำกว่าจำนวนบทความที่คุณเหลือไว้เพื่อเผยแพร่ในโพสต์ประเภทต่างๆรีเซ็ตรหัสผ่านสำเร็จแล้วรหัสรีเซ็ตรหัสผ่านหมดอายุแล้วรหัสรีเซ็ตรหัสผ่านไม่ถูกต้องโพสต์ที่เลือกถูกลบเรียบร้อยแล้วสถานะของ %post_title% มีการเปลี่ยนแปลงที่อยู่อีเมลนี้ลงทะเบียนไว้แล้วช่องนี้ต้องระบุ!การสมัครรับข้อมูลนี้ถูกยกเลิกแล้ว และจะสิ้นสุดในวันที่ %end_date%ชื่อหากต้องการรีเซ็ตรหัสผ่านของคุณ โปรดไปที่ที่อยู่ต่อไปนี้:ทั้งหมดเมือง/เมืองแนวโน้มตอนนี้การทดลองลีราตุรกีทวีตบนทวิตเตอร์ข้อผิดพลาดที่ตรวจไม่พบ: มีบางอย่างผิดพลาด โปรดโหลดหน้าซ้ำแล้วลองอีกครั้ง!เงินดอลลาร์สหรัฐอเมริกาการสมัครสมาชิกที่ยังไม่ได้ชำระเงินอัปเดตมีผู้ใช้นี้อยู่แล้ว!ผู้ใช้ไม่มีอยู่!ผู้ใช้ว่างเปล่า!ข้อมูลผู้ใช้ผู้ใช้หรืออีเมล์มีอยู่แล้ว!ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง!ชื่อผู้ใช้ชื่อผู้ใช้ว่างเปล่า!ชื่อผู้ใช้ไม่ถูกต้อง!ชื่อผู้ใช้หรือที่อยู่อีเมลชื่อผู้ใช้: %sภาษีมูลค่าเพิ่มหมายเลขภาษีผ่านดูดูโพสต์ทั้งหมดในดูผลทั้งหมดดูการสมัครสมาชิกเว็บไซต์ยินดีต้อนรับสู่บัญชีของคุณ!ยินดีต้อนรับ!ยินดีต้อนรับ! เข้าสู่ระบบบัญชีของคุณยินดีต้อนรับ! ลงทะเบียนสำหรับบัญชีจดหมายเหตุรายปีใช่คุณได้สมัครสมาชิกแล้ว แต่ยังรอการชำระเงินอยู่!คุณสามารถไปที่คุณไม่มีสิทธิ์ที่จำเป็นในการดำเนินการตามคำขอนี้คุณป้อนที่อยู่อีเมลไม่ถูกต้อง!คุณยังไม่ได้สร้างโพสต์ใดๆคุณยังไม่ได้เลือกแผนการสมัครสมาชิกที่ถูกต้องคุณมีบทวิจารณ์ถึงขีดจำกัดที่คุณสามารถส่งสำหรับบทความนี้ได้แล้วคุณต้องออกจากระบบเพื่อดูหน้านี้ไม่สามารถสร้างบัญชีของคุณได้บัญชีของคุณถูกเปิดใช้งานแล้ว!บัญชีของคุณเปิดใช้งานสำเร็จแล้ว!ความคิดเห็นของคุณอยู่ในระหว่างรอการกลั่นกรองรหัสผ่านปัจจุบันของคุณไม่ถูกต้องรหัสผ่านของคุณถูกตั้งค่าใหม่ ตรวจสอบอีเมล์ของคุณสร้างโพสต์ของคุณสำเร็จแล้วโพสต์ของคุณได้รับการอัปเดตเรียบร้อยแล้วคำตอบของคุณได้รับการเผยแพร่แล้ว โปรดรีเฟรชหน้าเพื่อดูบทวิจารณ์ของคุณได้รับการเผยแพร่แล้ว โปรดรีเฟรชหน้าเพื่อดูบทวิจารณ์ของคุณได้รับการลงทะเบียนแล้วและกำลังรอการอนุมัติรายละเอียดการสมัครของคุณอดีต. ภาษีอิงค์ ภาษีขาดแผนต้องมีความยาวอย่างน้อย 6 ตัวอักษรต้องมีตัวพิมพ์เล็กอย่างน้อยหนึ่งตัว (a..z)ต้องมีตัวพิมพ์ใหญ่อย่างน้อยหนึ่งตัว (a..z)ของบนหรือจาก 5ค้นหาผลไม่ จำกัดมุมมองอีเมล์ของคุณรหัสผ่านของคุณชื่อผู้ใช้ของคุณtranslation/id_ID.mo000064400000102005150211537140010404 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,oQoWonowoo o o oooooo p pp2p MpYppp ppppppqq8qUqgqzq qqq q qqWq!r3r8rWrfr lrwrrrrrrbfsssstt"t4t;t"LtGot't tt uuu u)u9uOugumu~u u uu(u-uEv+ZvvvGv%v+$w&Pw*ww)w&w&w2xMx_x vx xxx x xxxxx xVx"Ty/wy<y)yz",z'Oz'wzMz'z4{.J{.y{!{!{{A|E|>K|| ||| ||^|#}8} V}b}v}}}}} }}~#~C~U~ Z~d~h~p~~~~~~"~!'699sS.% 10Kb,ۀ$+:f-%'ځKJN<ւ 393m ǃԃ ܃ lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: id_ID %post_title% telah dipindahkan ke sampah.%curr% dari %total%%s adalah bidang yang wajib diisi.(opsional)(kosongkan agar tidak berubah)(pilihan)1 KOMENTAR7 hari populerTautan aktivasi baru telah dikirim ke alamat email Anda!Sebuah kata sandi akan dikirimkan ke email Anda.TENTANG KAMITentang sayaAktivasi akunDetail akunDetail akun berhasil diubah.Nama akunNomor akunPengaturan akunPengakuan diperlukan!AktifTambah baruMenambahkan postingan baruAlamatBaris alamatAlamatSemuaPopulerSemua langganan Anda.Abjad a -> zSudah memiliki akun?Terjadi kesalahan tak terduga saat mencoba membuat postingan Anda. silakan coba lagi.Telah terjadi kesalahan yang tidak terduga dan email tidak dapat dikirim.Sebuah kesalahan yang tidak terduga telah terjadi. silakan coba lagi.TerapanMenerapkanArsipApakah Anda yakin ingin menghapus %post_title%?Apakah Anda yakin ingin mempublikasikan %post_title%?PadaDollar AustraliaPenulisPenulisMenunggu PembayaranKembaliNama BankTransfer BankBic/cepatRincian tagihanDiblokirblogNyata brazilianPound InggrisLev BulgariaPenulisDengan nilai peninjauanSkor pengguna captcha gagal. silahkan hubungi kami!Verifikasi captcha gagal!TUTUPKOMENTARDolar KanadaMembatalkanBatal membalasMembatalkan langgananDibatalkanTidak dapat memproses bidang %s.KategoriPeriksa email Anda untuk tautan aktivasi yang benar. tautan ini tidak valid.Cina yuan renminbiPilih paketKotaTertutupKomentar:Komentar ditutup.Nama PerusahaanPembayaran lengkapKonfirmasi password baruHubungi kamiLanjutkanNegaraNegara/wilayahNegara BagianDaerahKupon diterapkanNama kupon wajib diisi!Buat sebuah akunMembuat istilah baruKuna KroasiaKata sandi saat iniStatus terkiniInterval siklusCeko Republik korunaArsip Harian:Krone DenmarkDasborTanggalMenghapusMenghapus postinganMenghapus bookmarkKeteranganTransfer bank langsungDetail transfer bank langsungNama tampilanTidak punya akun?UnduhUnduhanSeret dan lepas atau jelajahiPILIHAN EDITORARTIKEL LAINNYAEKSKLUSIFSuntingEdit postingSurelAlamat emailAlamat email tidak ditemukan!Email sudah ada!Email kosong!Email tidak benar!Email atau nama pengguna kosong!Email atau nama pengguna salah!Email:Alamat kosongKota kosongNegara kosongKabupaten kosongEmail kosongNama depan kosongNama belakang kosongTelepon kosongKode pos kosongTanggal akhirMasukkan nama atau perusahaan AndaMasukkan judul ulasan AndaMasukkan kode promo di siniMasukkan balasan AndaMasukkan ulasan AndaNegara anggota euroIKUTI KAMIFansFiturKiriman menarikLapangan kosongNama depanMengikutiIkuti kami di instagramPengikutTidak ingat kata sandi?Lupa kata sandi Anda?Lupa kata sandi Anda? mendapatkan bantuanGratisMasuk ke akun Anda.Pergi ke pembayaranPergi ke kasirTotal keseluruhanHALAMAN AWALHaloHalo %1$s (bukan %2$s? %3$s)! dari dasbor akun Anda, Anda dapat melihat langganan dan mengelola detail akun Anda.Berikut hasil pencariannya :BerandaDolar hong kongForint HongariaIBANINDOJika ini adalah kesalahan, abaikan saja email ini dan tidak akan terjadi apa-apa.Jika Anda tidak puas dengan hasilnya, silakan melakukan pencarian lainUntuk memiliki akses ke bagian ini, Anda harus mengaktifkan akun Anda.Untuk memperbarui file ini, Anda harus mengaktifkan akun Anda.Rupee IndiaRupiah indonesiaFaktur awal dibayarInstruksiTidak sahPola lulus tidak valid!Langganan tidak valid.FakturFaktur diperbaruiShekel IsraelTampaknya tidak ada metode pembayaran yang tersedia yang telah dikonfigurasi.Yen JepangIkutKorea (selatan) wonARTIKUJT E FUNDITTINGGALKAN KOMENTARMASUKNama keluargaTerbaruFaktur terbaruTinggalkan ulasanSukaSepertiMuat lebih banyakMemuatLokasi:Langganan terkunci.MasukMasuk dengan FacebookLogin untuk meninggalkan komentarMasuk untuk meninggalkan ulasan.Masuk ke akun AndaKeluarKeluar?Masuk sebagaiMasuk sebagai% s. sunting profilmu.MasukKeluarKehilangan Kata sandiDARI PENULISARTIKEL LEBIHRinggit MalaysiaMengelola detail akun Anda.Mengelola detail penagihan Anda.AnggotaMeksiko pesoTanggal yang diubahTanggal yang diubah:Arsip Bulanan:BulanLainnyaTerpopulerAkun langganan sayaAkun woo sayaTidak adaTIDAK ADA KOMENTARNamaNama:Dolar Selandia baruTautan aktivasi baru telah dibuat. silakan periksa email Anda (kotak masuk atau folder spam) untuk memvalidasi akun Anda.Kata sandi baruKata sandi baru *Kata sandi baru tidak cocok.BerikutnyaBerikutnya (tombol panah kanan)Artikulli tjetërTIDAKTidak ada posting yang ditandaiTidak ada kiriman yang ditampilkanTidak ada produk di keranjang.Tidak ada peringkatTidak ada hasilTidak ada hasil untuk pencarian AndaTidak ada hasil pencarian.Tidak ada langganan yang dibuat.Krone NorwegiaTidak dibayarkanKIRIMAN TERBARU KAMINILAI KESELURUHANPostingan tertuaOoops ... Kesalahan 404PesananRincian bank kamiKeseluruhanKATEGORI E POPULLARIZUARPOSTING POPULERKIRIMANHalamanHalaman %CURRENT_PAGE% dari %TOTAL_PAGES%IndukLulus kosong!Pola lulus salah!Kata sandiPemulihan passwordBayar sekarangBayar dengan garisPembayaran gagal - kami minta maaf, terjadi kesalahan saat memproses pembayaran Anda. silakan coba lagi dengan metode pembayaran lain.Cara PembayaranCara PembayaranPemrosesan pembayaran - pembayaran langganan terbaru Anda sedang diproses.Pembayaran berhasil - pembayaran langganan terakhir Anda berhasil diselesaikan.Tipe pembayaranTitikPeso FilipinaTeleponRencanaSilahkan aktifkan akun anda dengan mengikuti link yang dikirimkan ke alamat email anda.Silakan cek email (indeks atau folder spam), password dikirim ke sana.Silakan periksa email Anda (kotak masuk atau folder spam) untuk memvalidasi akun Anda.Silahkan cek email Anda (indeks atau spam folder), password dikirim ke sana.Silakan periksa email Anda dan konfirmasi berlangganan!Harap konfirmasi kata sandi baru sebelum melanjutkan.Silakan masukkan kode kupon terlebih dahulu!Silakan masukkan kata sandi baru sebelum melanjutkan.Silakan isi alamat email.Silakan masukkan komentar anda!Silakan masukkan kata sandi Anda saat ini.Silakan masukkan alamat email Anda di siniSilakan masukkan nama Anda di siniSilahkan isi email yang valid.Silahkan isi alamat email.Silakan isi semua kolom kata sandi.Harap pastikan kata sandinya cocok.Harap berikan alamat email yang valid.Silakan masukkan kembali kata sandi Anda.Mohon tunggu…Zloty PolandiaKirim KomentarGambar postingPosting ulasanKode PosKode PosDiposting olehDikirim olehKiriman ditandai denganSebelumnyaSebelumnya (tombol panah kiri)Artikulli paraprakHargaHarga tidak ditetapkanMencetakRahasia pribadiKategori ProdukTag produkFoto profilMenerbitkanMempublikasikan postinganDAFTARARTIKEL TERKAITTINJAUAN IKHTISARAcakPeringkatBaca SelengkapnyaPulihkan kata sandiMemulihkan kata sandi andaRegjistrohuMendaftar membuat akunHak penerbitan yang tersisa.MenghapusUlangi kata sandi baru *Masukkan kata kunci kembaliBalasKirim ulang tautan aktivasiMereset password AndaMengetik ulang pass salah!Ketik ulang pass kosong!Mengetik ulang lulus persis!Kriteria tinjauanRumania (baru) leuNomor peruteanRubel RusiaBAGIKANSUMBERRINGKASANMenyimpanSimpan perubahanSimpan nama, email, dan situs web saya di browser ini untuk lain kali saya berkomentar.Simpan kata sandiCariCari menggunakan kata kunci...Mencari lokasiPilihPilih anakPilih orang tuaPilih sub-anakKirim Kata Sandi SayaKirim kata sandi sayaPembayaran pengaturanPenyiapan gagal - kami minta maaf, terjadi kesalahan saat menyiapkan metode pembayaran Anda. silakan coba lagi dengan metode pembayaran lain.Penyiapan berhasil - Anda telah berhasil menyiapkan metode pembayaran untuk pembayaran berikutnya.BagikanShare ke FacebookTampilkan lebih sedikit infoTampilkan info lebih lanjutMasukMasuk / BergabungDaftarDollar singaporeBeberapa bidang wajib dikosongkan.Seseorang telah meminta pengaturan ulang kata sandi untuk akun berikut:Maaf, halaman yang Anda cari tidak ada.Judul sumberSelatan rand AfrikaMulai tanggalNegaraStatusAlamat jalanFaktur bergarisRincian faktur stripeDetail langganan stripeKirimKirimkan balasanMengirimkan ulasanBerlanggananPelangganLangganan dibatalkanPembuatan langganan: faktur awal dibayarPembuatan langganan: faktur awal telah dibuatPembuatan langganan: faktur awal telah diselesaikan, dan siap dibayarPembuatan langganan: faktur awal dibatalkanPembuatan langganan: uji cobaLangganan dihapusLangganan kedaluwarsa: faktur dibatalkan (faktur pertama belum dibayar)Perpanjangan langganan: faktur dibuatPerpanjangan langganan: faktur diselesaikanPerpanjangan langganan: faktur dibayarPerpanjangan langganan: faktur akan datangPerpanjangan langganan: faktur dibatalkanPembaruan berlangganan: faktur dibayarPembaruan langganan: faktur dibatalkanLangganan telah dibatalkan dan akan berakhir pada:Info berlanggananRingkasan berlanggananLanggananKesuksesanBerhasil berlangganan!Berhasil berhenti berlangganan!Krona SwediaSwiss francTOPIKTopikTopikTelp:Thai bahtTerima kasih! kami senang melihat Anda di sini. langganan Anda akan segera diaktifkan!Isi dari %url% tidak dapat dimuat.Kode kupon yang Anda masukkan telah kedaluwarsaKode kupon yang Anda masukkan telah mencapai batas pemakaianKode kupon yang Anda masukkan tidak validEmail telah berhasil dikirim.Gambar #%curr% tidak dapat dimuat.Jumlahnya tidak boleh lebih tinggi dariJumlahnya tidak boleh lebih rendah dariJumlah artikel yang tersisa untuk dipublikasikan di berbagai jenis postingan.Kata sandi telah berhasil diatur ulang.Kunci pengaturan ulang kata sandi telah kedaluwarsa.Kunci pengaturan ulang kata sandi tidak valid.Postingan yang dipilih telah berhasil dihapus.Status %post_title% telah diubah.Alamat email ini sudah terdaftar.Bagian ini diperlukan!Langganan ini telah dibatalkan dan akan berakhir pada %end_date%.JudulUntuk mengatur ulang kata sandi Anda, kunjungi alamat berikut:TotalKota/kotaNewsUji cobaLira TurkiTweet on TwitterKesalahan yang tidak tertangkap: ada yang tidak beres, harap muat ulang halaman dan coba lagi!United states dollarLangganan yang belum dibayar.MemperbaruiPengguna sudah ada!Pengguna tidak ada!Pengguna kosong!Informasi penggunaPengguna atau email sudah ada!Pengguna dan password salah!Nama penggunaNama pengguna kosong!Nama pengguna salah!Nama pengguna atau alamat emailNama pengguna: %sTONGNomor PPNVIAMelihatLihat semua kiriman dalamLihat semua hasilLihat langgananWebsite:Selamat datang di akun Anda!SELAMAT DATANG!Selamat Datang! Masuk ke akun AndaSelamat datang! daftar untuk akunArsip Tahunan:YaAnda sudah berlangganan, namun masih menunggu pembayaran!Anda dapat pergi keAnda tidak memiliki hak istimewa yang diperlukan untuk melaksanakan permintaan ini.Anda telah memasukkan alamat email yang salah!Anda belum membuat postingan apa pun.Anda belum memilih paket berlangganan yang valid.Anda telah mencapai batas ulasan yang dapat Anda kirimkan untuk artikel iniAnda harus keluar untuk melihat halaman ini.Akun Anda tidak dapat dibuat.Akun Anda telah diaktifkan!Akun Anda telah berhasil diaktifkan!Komentar dari anda sedang menunggu moderasiKata sandi Anda saat ini salah.Kata sandi Anda diatur ulang, cek email Anda.Postingan Anda telah berhasil dibuat.Postingan anda telah berhasil diupdate.Balasan Anda telah dipublikasikan. harap segarkan halaman untuk melihatnya.Ulasan Anda telah dipublikasikan. harap segarkan halaman untuk melihatnya.Ulasan Anda telah terdaftar dan sedang menunggu persetujuan.Detail langganan Andamantan. pajakinc. pajakrencana yang hilangharus berisi minimal 6 karakterharus mengandung setidaknya satu huruf kecil (a..z)harus mengandung setidaknya satu huruf besar (a..z)daripadaataudari 5hasil pencariantak terbatasdilihatemail Andakata sandi Andanama penggunatranslation/es_ES.mo000064400000105111150211537140010433 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,YFY4OY4YYYYYYYYZ Z+Z DZNZSZcZ tZZZFZ%Z[ [![2[;[N[ d[!n[ [d[\ \\#\ +\ 7\X\j\{\ \ \\\ \\\#\ ]] 2]>] Q]_]r]] ]]]]]] ]^'#^K^_^ u^ ^^^^ ^^ ^^!^ _=_S_o_/_3___ ` `'`6` Q`_`o`~` ``"`&`aa0a NaXa ]aga a aaa aaa*a)b0b Db Ob Zbebwb|b, c7c>cQcbcgcCwcGc:d5>d tddd d ddddde> e _eleseeeeeeeeef ff f)fAfQf(nf&fffff-g0g@gFgZgigg&g$gg gghh.h4h9hHh bhphvhhhhhKi]i%qi i#iiii!ij x Sx_x4qxRx1x+y@yQyayhy oyzyy!yyyy y zz1%z:WzZz2z! {B{GY{+{/{+{-)|,W|.|/|3|}4} L}Z}a}%x} } } }} } }}R}'C~/k~@~1~4#C!g"Z0887q:+;L@i@  "-VB ΂ق#/!Su5 )-3Rk | ")Є DUGfC#3KJ* ߆**+$VA{,/PMk?  & 4/B,r,̉ω҉ԉى %4lR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: es_ES %post_title% ha sido movido a la papelera.%curr% de %total%%s es un campo obligatorio.(opcional)(déjelo en blanco para dejarlo sin cambios)(Opcional)1 COMENTARIOPopulares en los últimos 7 días¡Se ha enviado un nuevo enlace de activación a su dirección de correo electrónico!Se te ha enviado una contraseña por correo electrónico.SOBRE NOSOTROSSobre miActivación de cuentaDetalles de la cuentaLos detalles de la cuenta cambiaron exitosamente.Nombre de la cuentaNúmero de cuentaConfiguraciones de la cuenta¡Se requiere reconocimiento!ActivoAgregar nuevoAgregar nueva publicaciónHabla aDirecciónDireccionesTodoLo más popularTodas tus suscripciones.Alfabético a -> z¿Ya tienes una cuenta?Ha ocurrido un error inesperado al intentar crear tu publicación. Inténtalo de nuevo.Se ha producido un error inesperado y no se ha podido enviar el correo.Ha ocurrido un error inesperado. Inténtalo de nuevo.AplicadoAplicarArchivos¿Estás seguro de que deseas eliminar %post_title%?¿Estás seguro de que deseas publicar %post_title%?EnDólar australianoAutorAutoresEn espera de pagoEspaldaNombre del bancoTransferencia bancariaBic / velozDetalles de facturaciónObstruidoBlogReal brasileñoLibra británicaLev búlgaroPorPor puntuación de reseñasLa puntuación de usuario de captcha falló. ¡por favor contáctenos!¡La verificación de captcha falló!CerrarCOMENTARIOSDolar canadienseCancelarCancelar respuestaCancelar suscripciónCanceladoNo se puede procesar el campo %s.CategoriasRevise su correo electrónico para ver el enlace de activación correcto. este enlace no es válido.Renminbí chinoElegir planCiudadCerradoComentario:Los comentarios están cerrados.Nombre de empresaEl pago completoConfirmar nueva contraseñaContáctanosContinuarPaísPaís / regiónEstado PaísCondadoCupón aplicado¡Se requiere el nombre del cupón!Crea una cuentaCrear nuevo términoKuna croataContraseña actualEstado actualIntervalo de cicloCorona República ChecaArchivos diarios:Corona danesaTablero de mandosFechaBorrarEliminar una publicaciónEliminar marcadoresDescripciónTransferencia bancaria directaDatos de transferencia bancaria directaNombre para mostrarNo tienes una cuenta?DescargarDescargasArrastrar y soltar o navegarRECOMENDACIONES DEL EDITORIncluso más noticiasEXCLUSIVOEditarEditar postEmailDirección de correo electrónico¡No se encontró la dirección!¡el Email ya existe!Correo electrónico vacío!Email incorrecto!Correo electrónico o nombre de usuario vacío!Correo electrónico o nombre de usuario incorrecto!Correo electrónico:Dirección vacíaCiudad vacíaPaís vacíoCondado vacíoCorreo electrónico vacíoNombre vacíoApellido vacíoTelefono vacioCódigo postal vacíoFecha finalIntroduce tu nombre o empresaIngresa un título para tu reseñaIngrese el código de promoción aquíIngresa tu respuestaIngresa tu reseñaLos países miembros del euroSÍGUENOSFansDestacadoPublicaciones destacadasCampo vacioPrimer nombreSeguirSíguenos en InstagramSeguidores¿Has olvidado tu contraseña?¿Olvidaste tu contraseña?¿Olvidaste tu contraseña? consigue ayudaGratisEntra en tu cuenta.Ir al pagoIr a pagarGran totalPÁGINA PRINCIPALHolaHola% 1 $ s (no% 2 $ s?% 3 $ s)! desde el panel de control de su cuenta, puede ver sus suscripciones y administrar los detalles de su cuenta.Aquí están los resultados de la búsqueda:InicioDolar de Hong KongFlorín húngaroIBANIDENTIFICACIÓNSi fue un error, ignora este correo electrónico y no pasará nada.Si no estás feliz con los resultados, por favor realiza otra búsquedaPara tener acceso a esta sección, debe activar su cuenta.Para actualizar este archivo, debe activar su cuenta.Rupia indiaRupia indonesiaFactura inicial pagadaInstruccionesInválidoPatrón de paso no válido!Suscripción no válida.FacturaFactura actualizadaShekel israelíParece que no se han configurado métodos de pago disponibles.Yen japonésUnirseCoreano (sur) de wonÚLTIMAS NOTICIASDEJA UNA RESPUESTAIniciar sesiónApellidoMás recientesúltima facturaDejar un comentarioMe gustaLikesCargar másCargandoUbicación:Suscripción bloqueada.Iniciar sesiónIniciar sesión con FacebookIniciar sesión para dejar un comentarioInicia sesión para dejar una reseña.Ingrese a su cuentaCerrar sesión¿cerrar sesión?Conectado comoHa iniciado sesión como% s. Edite su perfil.Iniciar sesiónSalirContraseña perdidaMás del autorTe recomendamos leer:Ringgit malayoAdministrar los detalles de su cuenta.Gestionar tus datos de facturación.MiembrosPeso mejicanoFecha de modificaciónFecha modificada:Archivos mensuales:MesesMásMás popularesMi cuenta de suscripciónMi cuenta wooN / ASIN COMENTARIOSNombreNombre:Dolar de Nueva ZelandaSe generó un nuevo enlace de activación. por favor revise su correo electrónico (bandeja de entrada o carpeta de correo no deseado) para validar su cuenta.Nueva contraseñaNueva contraseña *Las nuevas contraseñas no coinciden.SiguienteSiguiente (tecla de flecha derecha)Artículo siguienteNoNo hay publicaciones marcadasNo hay publicaciones para mostrarNo hay productos en el carrito.Sin evaluarSin resultadosNo hay ningún resultado de su búsquedaSin resultados de búsqueda.No se creó ninguna suscripción.Corona noruegaNo pagadoNUESTRAS ÚLTIMAS ENTRADASPUNTUACIÓN GENERALPublicaciones más antiguasUps... Error 404PedidosNuestros datos bancariosEn generalCATEGORÍA POPULARENTRADAS POPULARESPublicacionesPáginaPágina %CURRENT_PAGE% de %TOTAL_PAGES%PadrePase vacío!Patrón de paso incorrecto!ContraseñaRecuperación de contraseñaPagar ahoraPagar con rayaEl pago falló. Lo sentimos, hubo un error al procesar su pago. Inténtalo de nuevo con un método de pago diferente.Método de pagoMétodos de pagoProcesamiento de pagos: se está procesando el último pago de su suscripción.Pago exitoso: el pago de su última suscripción se completó exitosamente.Tipo de pagoPeríodoPeso filipinoTeléfonoPlanActive su cuenta siguiendo el enlace enviado a su dirección de correo electrónico.Por favor revisa tu correo electrónico (el índice o la carpeta de spam), la contraseña fue enviada ahí.Por favor revise su correo electrónico (bandeja de entrada o carpeta de correo no deseado) para validar su cuenta.Por favor revise su correo electrónico (carpeta de índice o spam), la contraseña fue enviada allí.¡Por favor revisa tu correo electrónico y confirma la suscripción!Confirme la nueva contraseña antes de continuar.¡Ingrese primero un código de cupón!Ingrese una nueva contraseña antes de continuar.Por favor, introduce una dirección de correo electrónico válida.Por favor ingrese su comentario!Por favor ingrese su contraseña actual.Por favor ingrese su dirección de correo electrónico aquíPor favor ingrese su nombre aquíPor favor complete un correo electrónico válido.Por favor ingrese una dirección de correo electrónico.Complete todos los campos de contraseña.Asegúrese de que las contraseñas coincidan.Por favor ingrese su dirección de correo electrónico válida.Por favor re ingrese su contraseña.Por favor espera...Zloty polacoPublicar comentarioPublicar imagenRevisión posteriorCódigo postalCódigo postalPublicado porPublicaciones porMensajes etiquetados conAnteriorAnterior (tecla de flecha izquierda)Artículo anteriorPrecioPrecio no establecidoImpresiónPolítica de privacidadCategorías de ProductoEtiquetas de productosFoto de perfilPublicarPublicar una publicaciónRegistrarseArtículos relacionadosReseñaAl azarClasificaciónLeer másRecuperar contraseñaRecupera tu contraseñaRegistrarRegístrate para una cuentaRestantes derechos de publicación.EliminarRepita la nueva contraseña *Repite la contraseñaRespuestaReenviar enlace de activaciónRestablecer su contraseña¡El pase reescrito es incorrecto!¡pase vacío!Reescribió pasar exactamente!Criterios de revisiónRumano (nuevo) leuNúmero de rutaRublo rusoCompartirFuenteRESUMENAhorrarGuardar cambiosGuardar mi nombre, correo electrónico y sitio web en este navegador la próxima vez que comente.Guardar contraseñaBuscarBuscar por palabra clave...Buscar una ubicaciónSeleccionarSeleccionar niñoSeleccionar padreSeleccionar sub-hijoEnviar contraseñaEnviar mi contraseñaPago de configuraciónError de configuración: lo sentimos, se produjo un error al configurar su método de pago. Inténtalo de nuevo con un método de pago diferente.Configuración exitosa: ha configurado exitosamente su método de pago para pagos futuros.CuotaCompartir en FacebookMostrar menos informaciónMostrar más informaciónRegistrarseRegistrarse / UnirseRegístrateDolar de SingapurAlgunos campos obligatorios se han dejado en blanco.Alguien ha solicitado un restablecimiento de contraseña para la siguiente cuenta:Lo sentimos, pero la página que busca no existe.Título de la fuenteRand sudafricanoFecha de inicioEstadoEstadoDirecciónFactura rayadaDetalles de la factura de rayasDetalles de suscripción de bandaEntregarEnviar respuestaEnviar opiniónSuscribirteSuscriptoresSuscripción canceladaCreación de suscripción: factura inicial pagadaCreación de suscripción: se ha creado la factura inicialCreación de suscripción: la factura inicial se ha finalizado y está lista para pagarse.Creación de suscripción: factura inicial anuladaCreación de suscripción: pruebaSuscripción eliminadaSuscripción caducada: factura anulada (la primera factura no se pagó)Renovación de suscripción: factura creadaRenovación de suscripción: factura finalizadaRenovación de suscripción: factura pagadaRenovación de suscripción: factura próximaRenovación de suscripción: factura anuladaActualización de suscripción: factura pagadaActualización de suscripción: factura anuladaLa suscripción ha sido cancelada y finalizará el:Información de suscripciónResumen de suscripciónSuscripcioneséxitoSuscrito exitosamente!Cancelado la suscripción con éxito!Corona suecaFranco suizoEtiquetasEtiquetaEtiquetasTeléfono:Baht tailandés¡gracias! estamos encantados de verte aquí. su suscripción se activará pronto!El contenido de %url% no pudo cargarse.El código de cupón que ingresaste ha caducadoEl código de cupón que ingresó ha alcanzado su límite de usoEl código de cupón que ingresaste no es válidoEl correo electrónico ha sido enviado exitosamente.La imagen #%curr% no pudo cargarse.El número no puede ser mayor queEl número no puede ser inferior aLa cantidad de artículos que le quedan por publicar en diferentes tipos de publicaciones.La contraseña se ha restablecido correctamente.La clave de restablecimiento de contraseña ha caducado.La clave para restablecer la contraseña no es válida.La publicación seleccionada se ha eliminado exitosamente.El estado de %post_title% ha sido cambiado.Esta dirección de correo electrónico ya está registrada.¡Este campo es obligatorio!Esta suscripción ha sido cancelada y finalizará el %end_date%.TítuloPara restablecer su contraseña, visite la siguiente dirección:TotalPueblo / ciudadÚltimas entradasJuicioLira turcaCompartir en TwitterError no detectado: algo salió mal. Vuelva a cargar la página e inténtelo de nuevo.Dólar de los Estados UnidosSuscripción no pagada.Actualizar¡el usuario ya existe!El usuario no existe!Usuario vacío!Informacion del usuarioUtilisateur ou email existe déjà!Usuario o contraseña incorrecta!Nombre de usuarioNombre de usuario vacío!Nombre de usuario incorrecto!Nombre de usuario o dirección de correo electrónicoNombre de usuario: %sIVANúmero de valor agregadoVIAVistaVer todas las publicaciones enVer todos los resultadosVer suscripciónSitio web:Bienvenido a tu cuenta!¡Bienvenido!¡Bienvenido! Ingresa en tu cuenta¡Bienvenido! registrarse para una cuentaArchivos anuales:Sí¡Ya tienes una suscripción, pero aún estás esperando ser pagada!Usted puede ir aUsted no tiene los privilegios necesarios para ejecutar esta solicitud.¡Has introducido una dirección de correo electrónico incorrecta!No has creado ninguna publicación.No ha seleccionado un plan de suscripción válido.Has alcanzado el límite de reseñas que puedes enviar para este artículo.Debe cerrar sesión para ver esta página.Su cuenta no pudo ser creada.¡Tu cuenta ya ha sido activada!¡Su cuenta ha sido activada exitosamente!Tu comentario está esperando ser moderadoTu contraseña actual es incorrecta.Tu contraseña ha sido reiniciada, revisa tu correo electrónico.Tu publicación ha sido creada exitosamente.Tu publicación se ha actualizado exitosamente.Tu respuesta ha sido publicada. Por favor actualice la página para poder verla.Tu opinión se ha publicado. Por favor actualice la página para poder verla.Su reseña ha sido registrada y está pendiente de aprobación.Los detalles de su suscripciónex. impuestoCª. impuestoplan faltantedebe contener al menos 6 caracteres de longituddebe contener al menos una minúscula (a..z)debe contener al menos una mayúscula (a..z)deenode 5Resultados de la búsquedailimitadopuntos de vistatu correo electrónicotu contraseñatu nombre de usuariotranslation/nl_NL.mo000064400000102150150211537140010437 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,T\#y:F+X"'[π1+&]$'ǁ!##5#Y@}@55 LZj z3/σ   (5DTlR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: nl_NL %post_title% is verplaatst naar de prullenbak.%curr% van %total%%s is een verplicht veld.(optioneel)(leeg laten om ongewijzigd te laten)(optioneel)1 REACTIE7 dagen populairEr is een nieuwe activatielink naar uw e-mailadres verzonden!Er zal een wachtwoord naar je gemaild wordenOVER ONSOver mijAccount activatieAccountgegevensAccountgegevens zijn succesvol gewijzigd.GebruikersnaamRekeningnummerAccount instellingenBevestiging is vereist!ActiefNieuw toevoegenNieuw bericht toevoegenAdresAdresregelAdressenAlleSteeds PopulairAl uw abonnementen.Alfabetisch a -> zHeb je al een account?Er is een onverwachte fout opgetreden tijdens het maken van uw bericht. Probeer het opnieuw.Er is een onverwachte fout opgetreden en de e-mail kon niet worden verzonden.Er is een onverwachte fout opgetreden. Probeer het opnieuw.ToegepastToepassenArchievenWeet je zeker dat je %post_title% wilt verwijderen?Weet je zeker dat je %post_title% wilt publiceren?BijAustralische dollarAuteurAuteursIn afwachting van betalingTerugBanknaamOverschrijvingBic/swiftFactuurgegevensGeblokkeerdBlogBraziliaanse realBritse pondBulgaarse levDoorOp recensie scoresCaptcha gebruikersscore mislukt. Gelieve ons te contacteren!Captcha-verificatie mislukt!SLUITENREACTIESCanadese dollarAnnulerenAnnuleer reactieAnnuleer abonnementGeannuleerdKan %s veld niet verwerken.CategorieënControleer uw e-mail voor de juiste activatielink. deze link is ongeldig.Chinese Yuan RenminbiKies planStadGeslotenOpmerking:Reacties zijn gesloten.BedrijfsnaamVolledige betalingBevestig nieuw wachtwoordNeem contact met ons opVerderLandLand/regioLand/staatDistrictCoupon toegepastCouponnaam is vereist!Account aanmakenNieuwe termijn creërenKroatische kunaHuidig wachtwoordHuidige statusCyclus intervalTsjechië korunaDagelijkse Archieven:Deense kroonDashboardDatumVerwijderenVerwijder een berichtBladwijzers verwijderenBeschrijvingDirecte bankoverschrijvingDirecte bankoverschrijvingsgegevensWeergavenaamHeb je geen account?DownloadenDownloadsSlepen en neerzetten of bladerenSELECTIE VAN DE REDACTIENOG MEER NIEUWSEXCLUSIEFBewerkBericht bewerkenE-mailE-mailadresEmailadres niet gevonden!E-mail bestaat al!E-mail leeg!E-mail is onjuistE-mail of gebruikersnaam leeg!E-mail of gebruikersnaam is onjuistEmail:Leeg adresLege stadLeeg landLege provincieLege e-mailLege voornaamLege achternaamLege telefoonLege postcodeEinddatumVul uw naam of bedrijf inVoer een titel in voor uw recensieVoer hier de promotiecode inVoer uw antwoord inVoer uw recensie inEuro-landenVOLG ONSFansUitgelichtAanbevolen postsVeld leegVoornaamVolgVolg ons op InstagramVolgersWachtwoord vergeten?Wachtwoord vergeten?Je wachtwoord vergeten? hulp krijgenVrijIn uw account komen.Ga naar betalingGa naar de kassaEindtotaalHOMEPAGEHalloHallo %1$s (niet %2$s? %3$s)! vanuit uw accountdashboard kunt u uw abonnementen bekijken en uw accountgegevens beheren.Hier zijn de resultaten voor de zoekopdracht:HomeHong kong dollarHongaarse forintIBANID KAARTAls dit een vergissing was, negeer dan deze e-mail en er zal niets gebeuren.Wanneer u niet blij bent met de resultaten, kunt u een nieuwe zoekopdracht gevenOm toegang te krijgen tot deze sectie, moet u uw account activeren.Om dit bestand bij te werken, moet u uw account activeren.Indiase rupeeIndonesische roepiaEerste factuur betaaldInstructiesOngeldigOngeldig paspatroon!Ongeldig abonnement.FactuurFactuur bijgewerktIsraëlische shekelHet lijkt erop dat er geen beschikbare betaalmethoden zijn geconfigureerd.Japanse YenToetredenKoreaans (zuid) wonLAATSTE ARTIKELENLAAT EEN REACTIE ACHTERLOG INAchternaamLaatsteLaatste factuurLaat een beoordeling achterLikeLikesLaad meerBezig met ladenPlaats:Vergrendeld abonnement.Log InInloggen met FacebookLog in om een opmerking achter te latenLog in om een recensie achter te laten.Log in op jouw accountUitloggenUitloggen?Ingelogd alsIngelogd als% s. pas je profiel aan.Log inLog uitVergeten wachtwoordMEER VAN DEZE AUTEURMEER VERHALENMaleisische ringgitUw accountgegevens beheren.Beheer uw factuurgegevens.LedenMexicaanse PesoAangepaste datumAangepaste datum:Maandelijkse Archieven:MaandenMeerMeest populairMijn abonnementsaccountMijn woo accountN.v.tGEEN REACTIESNaamNaam:Nieuw-Zeelandse DollarEr is een nieuwe activeringslink gegenereerd. controleer uw e-mail (inbox of spammap) om uw account te valideren.Nieuw paswoordNieuw paswoord *Nieuwe wachtwoorden komen niet overeen.VolgendeVolgende (Pijl naar rechts)Volgend artikelNeeGeen berichten met bladwijzersGeen posts om weer te gevenGeen producten in de winkelwagen.Geen beoordelingGeen resultatenGeen resultaten voor uw zoekopdrachtGeen resultaten gevonden.Geen abonnement aangemaakt.Noorse kroonNiet betaaldONZE LAATSTE POSTSTOTALE SCOREOudste berichtenOeps… Error 404BestellingenOnze bankgegevensAlgemeenPOPULAIRE CATEGORIEPOPULAIRE BERICHTENPOSTSPaginaPagina %CURRENT_PAGE% van %TOTAL_PAGES%OuderGa leeg!Paspatroon onjuist!WachtwoordWachtwoord herstelNu betalenBetalen met streepBetaling mislukt - het spijt ons, er is een fout opgetreden bij het verwerken van uw betaling. Probeer het opnieuw met een andere betaalmethode.BetalingsmiddelBetaalmethodenBetalingsverwerking - uw laatste abonnementsbetaling wordt verwerkt.Betaling succesvol - uw laatste abonnementsbetaling is succesvol voltooid.BetalingswijzePeriodeFilippijnse pesoTelefoonPlanActiveer uw account door de link te volgen die naar uw e-mailadres is verzonden.Check alsublieft uw mail (inbox of spam), het wachtwoord is daarheen gestuurdControleer uw e-mail (inbox of spammap) om uw account te valideren.Controleer dan uw e-mail (index of spam map), werd het wachtwoord daar gestuurd.Controleer uw e-mail en bevestig uw inschrijving!Bevestig het nieuwe wachtwoord voordat u doorgaat.Voer eerst een couponcode in!Voer een nieuw wachtwoord in voordat u doorgaat.Gelieve een geldig e-mailadres in te geven.Vul alstublieft uw commentaar in!Voer uw huidige wachtwoord in.Vul hier uw e-mailadres inVul hier uw naam inVul a.u.b. een geldig e-mailadres in.Vul dan een e-mailadres in.Vul alle wachtwoordvelden in.Zorg ervoor dat de wachtwoorden overeenkomen.Geef alstublieft een geldig email adres.Vul alstublieft uw wachtwoord opnieuw in.Even geduld…Poolse zlotyPlaats OpmerkingAfbeelding plaatsenBeoordeling plaatsenPostcodePostcodeGepost doorPosts vanPosts getagd metVorigeVorige (Pijl naar links)Vorig artikelPrijsPrijs niet ingesteldAfdrukkenPrivacybeleidProductcategorieënProducttagsProfielfotoPublicerenEen bericht publicerenREGISTREERGERELATEERDE ARTIKELENRECENSIES OVERZICHTWillekeurigBeoordelingLees meerWachtwoord herstellenVind je wachtwoord terugRegistrerenRegistreer voor een accountResterende publicatierechten.VerwijderenHerhaal nieuw wachtwoord *Herhaal wachtwoordReageerActivatielink opnieuw verzendenStel je wachtwoord opnieuw inOpnieuw getypte pas onjuist!Overgetypte pas leeg!Overgetypt pas precies!BeoordelingscriteriaRoemeens (nieuw) leuRouteringsnummer:Russische roebelDELENBRONSAMENVATTINGReddenWijzigingen opslaanBewaar mijn naam, e-mailadres en website in deze browser voor de volgende keer dat ik een opmerking maak.Wachtwoord opslaanZoekZoek op trefwoord...Zoek naar een locatieSelecterenKind selecterenSelecteer ouderSelecteer subkindStuur Mijn PasStuur mijn wachtwoordBetaling instellenInstallatie mislukt - het spijt ons, er is een fout opgetreden bij het instellen van uw betaalmethode. Probeer het opnieuw met een andere betaalmethode.Installatie succesvol - u heeft uw betaalmethode voor toekomstige betalingen succesvol ingesteld.DeelDeel op FacebookMinder informatie weergevenMeer informatie weergevenAanmeldenAanmeldenAanmeldenSingapore dollarSommige verplichte velden zijn leeg gelaten.Iemand heeft een wachtwoordreset aangevraagd voor het volgende account:Sorry, maar de pagina die je zoekt bestaat niet meer..Bron titelZuid-Afrikaanse RandBegin datumStaatToestandAdresStreep factuurGestreepte factuurgegevensStripe-abonnementsgegevensIndienenVerzend antwoordReview versturenAbonneerAbonneesAbonnement opgezegdAbonnement aanmaken: eerste factuur betaaldAbonnement aanmaken: initiële factuur is aangemaaktAbonnement aanmaken: de eerste factuur is afgerond en is klaar om te worden betaaldAbonnement aanmaken: initiële factuur ongeldigAbonnement aanmaken: uitproberenAbonnement verwijderdAbonnement verlopen: factuur ongeldig (de eerste factuur is niet betaald)Abonnement verlengen: factuur aangemaaktAbonnement verlengen: factuur afgerondAbonnement verlengen: factuur betaaldAbonnement verlengen: factuur binnenkortAbonnement verlengen: factuur ongeldigAbonnementsupdate: factuur betaaldAbonnementsupdate: factuur ongeldig verklaardAbonnement is opgezegd en eindigt op:Abonnement infoAbonnement overzichtAbonnementenSuccesSuccesvol geabonneerd!Succesvol uitgeschreven!Zweedse kroonZwitserse frankTAGSTagTagsTel:Thaise bahtBedankt! we zijn verheugd u hier te zien. je abonnement wordt binnenkort geactiveerd!De inhoud van %url% kan niet worden geladen.De couponcode die u heeft ingevoerd is verlopenDe couponcode die u heeft ingevoerd heeft de gebruikslimiet bereiktDe couponcode die u heeft ingevoerd is ongeldigDe e-mail is succesvol verzonden.De afbeelding #%curr% kan niet worden geladen.Het getal kan niet hoger zijn danHet getal kan niet lager zijn danHet aantal artikelen dat u nog moet publiceren over verschillende berichttypen.Het wachtwoord is succesvol gereset.De wachtwoordherstelsleutel is verlopen.De wachtwoordresetsleutel is ongeldig.Het geselecteerde bericht is succesvol verwijderd.De status voor %post_title% is gewijzigd.Dit emailadres is al geregistreerd.Dit veld is verplicht!Dit abonnement is opgezegd en eindigt op %end_date%.TitelOm uw wachtwoord opnieuw in te stellen, gaat u naar het volgende adres:TotaalStad/stadNu TrendingProcesTurkse liraTweet op TwitterOnopgemerkte fout: er is iets misgegaan, herlaad de pagina en probeer het opnieuw!Verenigde Staten DollarOnbetaald abonnement.UpdateGebruiker bestaat al!Gebruiker bestaat niet!Gebruiker leeg!Gebruikers informatieGebruikersnaam of email bestaat al!Gebruikersnaam of wachtwoord is incorrect!GebruikersnaamGebruikersnaam leeg!Gebruikersnaam onjuist!Gebruikersnaam of e-mailadresGebruikersnaam: %sVATBtw-nummerVIAWeergaveBekijk alle posts inBekijk alle resultatenBekijk abonnementWebsite:Welkom op je account!Welkom!Welkom! Log in op je accountWelkom! registreer voor een accountJaarlijkse Archieven:JaJe hebt al een abonnement, maar het wacht nog op betaling!Je kunt naar de (homepage) gaanU beschikt niet over de vereiste rechten om dit verzoek uit te voeren.Je hebt een verkeerd e-mailadres ingevoerd!Je hebt geen berichten aangemaakt.Je hebt geen geldig abonnement gekozen.U heeft de limiet bereikt van het aantal beoordelingen dat u voor dit artikel kunt indienenOm deze pagina te bekijken moet u uitgelogd zijn.Uw account kon niet worden aangemaakt.Uw account is al geactiveerd!Uw account is succesvol geactiveerd!Je opmerking moet nog beoordeeld wordenUw huidige wachtwoord is onjuist.Wachtwoord is gereset, check email.Je bericht is succesvol aangemaakt.Uw bericht is succesvol bijgewerkt.Uw antwoord is gepubliceerd. Vernieuw de pagina om deze te zien.Uw recensie is gepubliceerd. Vernieuw de pagina om deze te zien.Uw recensie is geregistreerd en wacht op goedkeuring.Uw abonnementsgegevensex. belastingincl. belastingontbrekend planmoet minimaal 6 tekens lang zijnmoet ten minste één kleine letter (a..z) bevattenmoet minimaal één hoofdletter (a..z) bevattenvanopofuit 5zoekresultatenonbeperktkeer bekekenjouw mailadresjouw wachtwoordjouw gebruikersnaamtranslation/ur_IN.mo000064400000122443150211537140010460 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,Y!WYyYiZ[ZZZZL [IV[[[[ [[[[\ *\4\ M\X\a\y\\ \"\l\&E]l] s]~] ]]] ]:] #^o.^ ^ ^^^ ^^_*_-B_p_____ __%_` `@`V`s`` ```` a a$a$Aa fa)qa=aaab!b=1bobb b b#b bb)b*"cMccc*vc1c ccccd%d:dSdld|dd1dCd,e#Le%peeee eee f f+%f Qf^f2{f?ff-f#gBgbgvggg%whhhhh hvhz_i|irWjjj+k ,k9k@kZkmkvkkyk#l5l%Nltll lllllmm5mNm fmpmm m9mAm#>n bnpnnUnno!&o$Homoo@o<o p(p@p"]pp ppp&ppqq5q1P!%؆*#)#Mq F&S"z& ĉω J]^ߊ> W!x#ϋ+3 Rs(OˌMiC0K"|B1Kt8>18:j3]ِ7Vq17ő'07@Qe<S/u7=1Ao1+NVJ<M?Ֆ8(Nhw iUZj!ޘg} '"љ7$"\=˚ !1 A0N 0ΛDFW ƜNqh7ڝ:XM}W$8|GMAK2lH-QvȡM]Ԣ(2[ n|SPN9  ͤڤlR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: ur_IN %post_title% کو کوڑے دان میں ڈال دیا گیا ہے۔%موجودہ% کا%کل%%s ایک مطلوبہ فیلڈ ہے۔(اختیاری)(بغیر تبدیل ہونے کے لیے خالی چھوڑ دیں)(اختیاری)1 تبصرہدنوں ميں مقبول 7ایک نیا ایکٹیویشن لنک آپ کے ای میل ایڈریس پر بھیج دیا گیا ہے!ایک پاس ورڈ آپ کو ای ميل ميں بھیج دیا جائے گاہمارے بارے میںمیرے بارے میںاکاونٹ ایکٹو کرنااکاؤنٹ کی تفصیلاتاکاؤنٹ کی تفصیلات کامیابی کے ساتھ تبدیل ہوگئیں۔کھاتے کا ناماکاؤنٹ نمبراکاؤنٹ کی ترتیباتاعتراف ضروری ہے!فعالنیا شامل کریںنئی پوسٹ شامل کریںپتہپتہ کی سترپتےتماممقبول ہر وقتآپ کی تمام سبسکرپشنز۔حروف تہجی a -> zپہلے سے اکاؤنٹ ہے؟آپ کی پوسٹ بنانے کی کوشش کے دوران ایک غیر متوقع خرابی واقع ہو گئی ہے۔ دوبارہ کوشش کریں.ایک غیر متوقع خرابی پیش آ گئی ہے اور میل نہیں بھیجی جا سکی۔ایک غیر متوقع خرابی واقع ہوئی ہے. دوبارہ کوشش کریں.لاگودرخواست دیںآرکائیوکیا آپ واقعی %post_title% کو حذف کرنا چاہتے ہیں؟کیا آپ واقعی %post_title% شائع کرنا چاہتے ہیں؟پرآسٹریلوی ڈالرمصنفمصنفینادائیگی کے منتظرواپسبینک کا نامبینک ٹرانسفرBic/swiftبل کی تفصیلاتمسدودبلاگبرازیل حقیقیبرطانوی پاؤنڈبلغارین لیوکی طرفاسکورکا جائزہ لیناکیپچا صارف سکور ناکام ہو گیا۔ براے مہربانی ہم سے رابطہ کریں!کیپچا کی توثیق ناکام!بندتبصرےکینیڈین ڈالرمنسوخجواب منسوخ کریںرکنیت منسوخ کریںمنسوخ%s فیلڈ پر کارروائی نہیں کر سکتے۔اقسامدرست ایکٹیویشن لنک کے لیے اپنا ای میل چیک کریں۔ یہ لنک غلط ہے۔چینی یوآن رینمنبیمنصوبہ منتخب کریںشہربندتبصرہتبصرے بند ہیں.کمپنی کا ناممکمل ادائیگینئے پاس ورڈ کی توثیق کریںہم سے رابطہ کريںجاریملکملک/علاقہملک/ریاستکاؤنٹیکوپن لاگوکوپن کا نام درکار ہے!کھاتا کھولیںنئی اصطلاح بنائیںکروشین کوناموجودہ خفیہ لفظموجودہ صورت حالسائیکل وقفہجمہوریہ چیک کروناڈیلی آرکائیوڈینش کرونڈیش بورڈتاریخحذف کریںایک پوسٹ کو حذف کریںبک مارکس کو حذف کریںتفصیلبراہ راست بینک ٹرانسفربراہ راست بینک ٹرانسفر کی تفصیلاتڈسپلے ناماکاؤنٹ نہیں ہے؟ڈاؤن لوڈ کریںڈاؤن لوڈگھسیٹیں اور چھوڑیں یا براؤز کریں۔ایڈیٹر چنتازيادہ خبريںخصوصیترمیمپوسٹ میں ترمیم کریںای میلای میل اڈریسای میل ایڈریس نہیں ملاای میل پہلے سے موجود ہے!ای میل خالی!غلط ای ميلای میل یا صارف نام خالی!ای میل یا غلط کا صارف کا نامای میلخالی پتہخالی شہرخالی ملکخالی کاؤنٹیخالی ای میلخالی پہلا نامخالی آخری نامخالی فونخالی پوسٹ کوڈآخری تاریخاپنا نام یا کمپنی درج کریں۔اپنے جائزے کے لیے ایک عنوان درج کریں۔یہاں پرومو کوڈ درج کریں۔اپنا جواب درج کریں۔اپنا جائزہ درج کریں۔یورو رکن ممالکہمیں فالو کریںمداحنمایاںفيچرڈ پوسٹمیدان خالیپہلا نامفالورInstagram پر ہمارے ساتھ چلیےفالورزپاسورڈ بھول گے؟کيا آپ پاس ورڈ بھول گئے ہیں؟اپنا پاس ورڈ بھول گئے؟ مدد حاصل کرومفتاپنے اکاؤنٹ میں داخل ہوں.ادائیگی پر جائیںچیک آؤٹ پر جائیں۔مجموعی عددمرکزی صفحہہیلوہیلو %1$s (%2$s نہیں؟ %3$s)! اپنے اکاؤنٹ کے ڈیش بورڈ سے آپ اپنی سبسکرپشنز دیکھ سکتے ہیں اور اپنے اکاؤنٹ کی تفصیلات کا نظم کر سکتے ہیں۔تلاش کے نتائج یہ ہیں:ہومہانگ کانگ ڈالرہنگرین فورنٹIBANآئی ڈیاگر یہ غلطی تھی تو اس ای میل کو نظر انداز کر دیں اور کچھ نہیں ہوگا۔اگر آپ نتائج کے ساتھ خوش نہیں ہيں، تو براہ مہربانی دوبارہ تلاش کریںاس سیکشن تک رسائی حاصل کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔اس فائل کو اپ ڈیٹ کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔بھارتی روپیہانڈونیشین روپیہابتدائی رسید کی ادائیگیہدایاتغلطغلط پاس پیٹرن!غلط رکنیت.رسیدانوائس اپ ڈیٹاسرائیلی شیکلایسا لگتا ہے کہ ادائیگی کا کوئی دستیاب طریقہ ترتیب نہیں دیا گیا ہے۔جاپانی ینشامل ہو جائیےکوریا (جنوبی) جیت لیاتازہ ترین مضامینجواب چھوڑ دیںلاگ انآخری نامتازہ ترینتازہ ترین رسیدایک جائزہ چھوڑ دوپسندپسند کرتا ہےمزید لوڈ کریںلوڈ ہو رہا ہےمقام:مقفل سبسکرپشن۔لاگ ان کریںفیس بک لاگ ان کریںتبصرہ چھوڑنے کے لئے لاگ ان کریںایک جائزہ چھوڑنے کے لیے لاگ ان کریں۔اپنے اکاؤنٹ میں لاگلاگ آوٹلاگ آوٹ؟کے طور پر لاگ ان٪ s کے طور پر لاگ ان اپنی پروفائل میں ترمیم کریں.میں لاگ ان کریںلاگ آؤٹ کریںکھوئے ہوئے پاس ورڈزیادہ مصنف کی طرف سےمزید کہانیاںملائشین رنگٹاپنے اکاؤنٹ کی تفصیلات کا نظم کریں۔اپنی بلنگ کی تفصیلات کا نظم کریں۔اراکینمیکسیکن پیسہترمیم شدہ تاریخنظر ثانی شدہ تاریخ:ماہانہ آرکائیومہینےمزیدسب سے زیادہ مقبولمیرا سبسکرپشن اکاؤنٹمیرا وو اکاؤنٹN / Aکوئی تبصرہ نہیںنامنامنیوزی لینڈ ڈالرایکٹیویشن کا نیا لنک تیار کیا گیا تھا۔ اپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔نیا پاس ورڈنیا پاس ورڈ *نئے پاس ورڈز مماثل نہیں ہیں۔اگلااگلا (دائیں ا یرو کياگلا مضموننہیںکوئی بک مارک پوسٹ نہیںکوئی تحریر نہیں ظاہر کرنے کے لئےٹوکری میں کوئی مصنوعات نہیں.کوئی درجہ بندی نہیںکوئی نتائج نہیںآپ کی تلاش کا کوئی نتيجہ نہیںتلاش کا کوئی نتیجہ نہیںکوئی رکنیت نہیں بنائی گئی۔نارویجن کرونادائیگی نہیں کیہمارے تازہ ترین مراسلاتمجموعی اسکورسب سے پرانی پوسٹسافوہ ... 404 ايرراحکاماتہمارے بینک کی تفصیلاتمجموعی طور پرمقبول قسممقبول پوسٹسمراسلاتصفحہصفحہ%موجودہ صفحہ%کا%کل صفحاتوالدینخالی پاس!پاس پیٹرن غلط!پاس ورڈپاس ورڈ کی وصولیاب اداپٹی کے ساتھ ادائیگی کریںادائیگی ناکام ہو گئی - ہم معذرت خواہ ہیں، آپ کی ادائیگی پر کارروائی کرنے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔ادائیگی کا طریقہادائیگی کے طریقےادائیگی کی کارروائی - آپ کی سبسکرپشن کی تازہ ترین ادائیگی پر کارروائی کی جا رہی ہے۔ادائیگی کامیاب - آپ کی تازہ ترین رکنیت کی ادائیگی کامیابی کے ساتھ مکمل ہو گئی۔ادائیگی کی قسممدتفلپائینی پیسہفونمنصوبہبراہ کرم اپنے ای میل ایڈریس پر بھیجے گئے لنک پر عمل کرکے اپنا اکاؤنٹ فعال کریں۔آپ براہ مہربانی اپنا ای میل چیک کریں ( انڈیکس یا اسپيم فولڈر ) پاس ورڈ وہاں بھیجا گیا تھااپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔آپ کا ای میل (انڈیکس یا سپیم فولڈر) براہ مہربانی چیک کریں، پاس ورڈ وہاں بھیجا گیا تھا.براہ کرم اپنا ای میل چیک کریں اور سبسکرپشن کی تصدیق کریں!براہ کرم آگے بڑھنے سے پہلے نئے پاس ورڈ کی تصدیق کریں۔براہ کرم پہلے ایک کوپن کوڈ درج کریں!براہ کرم آگے بڑھنے سے پہلے نیا پاس ورڈ درج کریں۔برائے مہربانی قابل قبول ای میل ایڈریس لکھیں.براہ مہربانی اپنی رائے درج کریں!براہ کرم اپنا موجودہ پاس ورڈ درج کریں۔برائے مہربانی اپنا ای میل پتہ یہاں درج کریںاپنا نام یہاں درج کریںبراہ کرم ایک درست ای میل پُر کریں۔براہ کرم ایک ای میل ایڈریس پُر کریں۔براہ کرم تمام پاس ورڈ فیلڈز کو پُر کریں۔براہ کرم یقینی بنائیں کہ پاس ورڈ مماثل ہیں۔براہ کرم ایک درست ای میل ایڈریس فراہم کریں۔براہ مہربانی اپنے پاس ورڈ کا دوبارہ اندراج کیجیے.براہ مہربانی انتظار کریں …پولش زلوٹیرائے دیجئےتصویر پوسٹ کریںجائزہ پوسٹ کریںڈاک کامخصوص نمبرپوسٹ کوڈکی طرف سے پوسٹ کیا گیاکے ذریعے پیغاماتپیغامات کوساتھ ٹیگ کیاپچھلاپچھلا (بائیں ايرو کيگزشتہ مضمونقیمتقیمت مقرر نہیںپرنٹ کریںرازداری کی پالیسیمصنوعات کی اقساممصنوعات کے ٹیگزپروفائل تصویرشائع کریںایک پوسٹ شائع کریںرجسٹرمتعلقہ مضامینجائزہ مجموعی جائزہرینڈمدرجہ بندیمزید پڑھیںپاس ورڈ بازیافت کریں۔اپنا پاسورڈ ريکور کريںرجسٹرایک اکاؤنٹ کے لئے رجسٹر کريںباقی اشاعتی حقوق۔دورنیا پاس ورڈ دہرائیں *پاس ورڈ دہراؤجوابایکٹیویشن لنک دوبارہ بھیجیں۔آپ کا پاس ورڈ دوبارہ ترتیب دیںدوبارہ ٹائپ شدہ پاس غلط!دوبارہ ٹائپ شدہ پاس خالی!بالکل دوبارہ ٹائپ کیا گیا پاس!معیار کا جائزہ لیںرومنی (نئے) لیورہنما عددروسی روبلحصہذریعہخلاصہمحفوظ کریںتبدیلیاں محفوظ کرومیرے براؤزر میں میرا نام، ای میل، اور ویب سائٹ محفوظ کریں اگلا وقت میں تبصرہ کریں.پاس ورڈ محفوظ کریںتلاش کریںمطلوبہ الفاظ سے تلاش کریں...ایک مقام تلاش کریںمنتخب کریںبچے کو منتخب کریںوالدین کو منتخب کریںذیلی بچے کو منتخب کریں۔میرا پاس ارسال کریںاپنا پاس ورڈ بھیجیںسیٹ اپ ادائیگیسیٹ اپ ناکام ہو گیا - ہمیں افسوس ہے، آپ کی ادائیگی کا طریقہ ترتیب دینے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔سیٹ اپ کامیاب - آپ نے مستقبل کی ادائیگیوں کے لیے اپنی ادائیگی کا طریقہ کامیابی سے ترتیب دیا ہے۔بانٹیںفيس بک پر شیئر کیجئیےکم معلومات دکھائیںمزید معلومات دکھائیںداخلہسائن ان / شمولیتسائن اپسنگاپور ڈالرکچھ مطلوبہ فیلڈز کو خالی چھوڑ دیا گیا ہے۔کسی نے درج ذیل اکاؤنٹ کے لیے پاس ورڈ دوبارہ ترتیب دینے کی درخواست کی ہے۔معذرت، لیکن آپ جو صفحہ تلاش کر رہے ہیں موجود نہیں ہےماخذ کا عنوانجنوبی افریقی رانڈشروع کرنے کی تاریخحالتحالتگلی کا پتہپٹی رسیدپٹی رسید کی تفصیلاتپٹی سبسکرپشن کی تفصیلاتجمع کرائیںجواب جمع کروائیںجائزہ جمع کروائیںسبسکرائب کریںسبسکرائبرزرکنیت منسوخ کر دی گئی۔سبسکرپشن بنائیں: ابتدائی انوائس ادا کی گئی۔سبسکرپشن تخلیق: ابتدائی رسید بنائی گئی ہے۔سبسکرپشن تخلیق: ابتدائی انوائس کو حتمی شکل دے دی گئی ہے، اور یہ ادا کرنے کے لیے تیار ہے۔سبسکرپشن بنائیں: ابتدائی رسید کالعدمسبسکرپشن تخلیق: ٹرائل کرنارکنیت حذف کر دی گئیسبسکرپشن کی میعاد ختم ہو گئی: انوائس کالعدم ہو گئی (پہلی رسید ادا نہیں کی گئی تھی)سبسکرپشن کی تجدید: انوائس بنائی گئی۔رکنیت کی تجدید: انوائس کو حتمی شکل دی گئی۔رکنیت کی تجدید: رسید کی ادائیگیسبسکرپشن کی تجدید: انوائس آنے والیرکنیت کی تجدید: رسید کالعدمسبسکرپشن اپ ڈیٹ: رسید کی ادائیگیسبسکرپشن اپ ڈیٹ: رسید کالعدمسبسکرپشن منسوخ کر دی گئی ہے اور اس پر ختم ہو جائے گی:رکنیت کی معلوماترکنیت کا خلاصہسبسکرپشنزکامیابیکامیابی سے سبسکرائب کر لیا!کامیابی سے رکنیت ختم کر دی گئی!سویڈش کروناسوئس فرانکٹیگزٹیگٹیگزٹیلی فون:تھائی باہتشکریہ! ہمیں آپ کو یہاں دیکھ کر خوشی ہوئی ہے۔ آپ کی رکنیت جلد ہی چالو ہو جائے گی!سے يہ مواد لوڈ نہیں کیا جا سکتا%url%آپ کے درج کردہ کوپن کوڈ کی میعاد ختم ہو گئی ہے۔آپ نے جو کوپن کوڈ درج کیا ہے وہ اس کے استعمال کی حد کو پہنچ گیا ہے۔آپ کا درج کردہ کوپن کوڈ غلط ہے۔ای میل کامیابی سے بھیج دیا گیا ہے۔سے یہ تصویر لوڈ نہیں کی جا سکتی #%curr%تعداد سے زیادہ نہیں ہو سکتیتعداد سے کم نہیں ہو سکتیمضامین کی تعداد جو آپ نے پوسٹ کی مختلف اقسام میں شائع کرنے کے لیے چھوڑی ہے۔پاس ورڈ کامیابی سے دوبارہ ترتیب دیا گیا ہے۔پاس ورڈ دوبارہ ترتیب دینے کی کلید ختم ہو گئی ہے۔پاس ورڈ دوبارہ ترتیب دینے کی کلید غلط ہے۔منتخب پوسٹ کو کامیابی سے حذف کر دیا گیا ہے۔%post_title% کی حیثیت تبدیل کر دی گئی ہے۔یہ ای میل پتہ پہلے سے رجسٹرڈ ہے.اس کو پر کرنا ضروری ہے!یہ رکنیت منسوخ کر دی گئی ہے اور یہ %end_date% کو ختم ہو جائے گی۔عنواناپنا پاس ورڈ دوبارہ ترتیب دینے کے لیے درج ذیل پتے پر جائیں:کلقصبہ/شہررجحان سازی اس وقتمقدمے کی سماعتترکی کا لیراٹویٹر پر ٹویٹ کريںUncaught error: کچھ غلط ہو گیا، براہ کرم صفحہ دوبارہ لوڈ کریں اور دوبارہ کوشش کریں!امریکی ڈالربلا معاوضہ رکنیت.اپ ڈیٹصارف پہلے سے موجود ہے!صارف موجود نہیں ہے!صارف خالی!صارف کی معلوماتصارف یا ای میل پہلے سے موجود ہےصارف یا غلط پاس ورڈصارف نامصارف نام خالی ہے!صارف نام غلط ہے!استعمال کنندہ کا نام یا ای میل پتہصارف نام: %sVATواٹ نمبرکے ذریعےدیکھیںتمام مراسلات ان میں دیکھیںتمام نتائج دیکھيےسبسکرپشن دیکھیںویب سائٹآپ کے اکاؤنٹ میں خوش آمدید!خوش آمدید!خوش آمدید! اپنے اکاؤنٹ میں لاگ ان کریںخوش آمدید! ایک اکاؤنٹ کے لئے رجسٹر کریںسالانہ آرکائیوجی ہاںآپ کے پاس پہلے سے ہی سبسکرپشن ہے، لیکن یہ ابھی بھی ادائیگی کے انتظار میں ہے!آپ جا سکتے ہیںآپ کے پاس اس درخواست پر عمل کرنے کے لیے مطلوبہ مراعات نہیں ہیں۔آپ نے غلط ای میل پتہ درج کیا ہے!آپ نے کوئی پوسٹس نہیں بنائی ہیں۔آپ نے ایک درست رکنیت کا منصوبہ منتخب نہیں کیا ہے۔آپ جائزوں کی حد تک پہنچ گئے ہیں جو آپ اس مضمون کے لیے جمع کرا سکتے ہیں۔اس صفحہ کو دیکھنے کے لیے آپ کو لاگ آؤٹ کرنا ہوگا۔آپ کا اکاؤنٹ نہیں بنایا جا سکا۔آپ کا اکاؤنٹ پہلے ہی ایکٹیویٹ ہو چکا ہے!آپ کا اکاؤنٹ کامیابی سے ایکٹیویٹ ہو گیا ہے!آپ کا تبصرہ اعتدال پسندی کا منتظر ہےآپ کا موجودہ پاس ورڈ غلط ہے۔آپ کا پاس ورڈ دوبارہ ترتیب کر ديا گيا ہے اپنی ای میل چيک کريںآپ کی پوسٹ کامیابی کے ساتھ بنائی گئی ہے۔آپ کی پوسٹ کو کامیابی سے اپ ڈیٹ کر دیا گیا ہے۔آپ کا جواب شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔آپ کا جائزہ شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔آپ کا جائزہ رجسٹر ہو چکا ہے اور منظوری کا انتظار ہے۔آپ کی رکنیت کی تفصیلاتسابق. ٹیکسinc. ٹیکسلاپتہ منصوبہلمبائی میں کم از کم 6 حروف پر مشتمل ہونا چاہیے۔کم از کم ایک لوئر کیس (a..z) پر مشتمل ہونا چاہیےکم از کم ایک اپر کیس (a..z) پر مشتمل ہونا چاہیےکےپریا5 میں سےتلاش کے نتائجلامحدودخیالاتآپ کا ای میلآپ کا پاس ورڈآپ کا يوزر نيمtranslation/ur.mo000064400000122440150211537140010067 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,a ca)na=aaabb=.blbb b b#b bb)b*cJc`c*sc1c cccc d"d7dPdidydd1dCd,e#Ie%meeee eeef f+"f Nf[f2xf?ff-f g?g_gsggg%thhhhh hvhz\i|irTjjj+j )k6k=kWkjkskkyk l2l%Klqll lllllmm2mKm cmmmm m9mAm#;n _nmn}nUnn o!#o$Eojoo@o<o p%p=p"Zp}p ppp&ppqq2q9q@q]q@rUr3lrr$rrr(r:s3Os#ss4s*s0$tUtmt+ttttu'u?uXujuuu3u uuu vv 0v,15:g3]֐4Sn17‘$-4=Nb<S,u7=.Al1+ NVJ9M?Җ8(Kht ݗiRWg!ۘdz '"Ι7!"Y|=Ț. >0K |0˛DFT ÜKqe7ם:XJ}W!8yGMAH2lH*QsšJ]Ѣ(/X kySPN6  ʤפlR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: ur %post_title% کو کوڑے دان میں ڈال دیا گیا ہے۔%موجودہ% کا%کل%%s ایک مطلوبہ فیلڈ ہے۔(اختیاری)(بغیر تبدیل ہونے کے لیے خالی چھوڑ دیں)(اختیاری)1 تبصرہدنوں ميں مقبول 7ایک نیا ایکٹیویشن لنک آپ کے ای میل ایڈریس پر بھیج دیا گیا ہے!ایک پاس ورڈ آپ کو ای ميل ميں بھیج دیا جائے گاہمارے بارے میںمیرے بارے میںاکاونٹ ایکٹو کرنااکاؤنٹ کی تفصیلاتاکاؤنٹ کی تفصیلات کامیابی کے ساتھ تبدیل ہوگئیں۔کھاتے کا ناماکاؤنٹ نمبراکاؤنٹ کی ترتیباتاعتراف ضروری ہے!فعالنیا شامل کریںنئی پوسٹ شامل کریںپتہپتہ کی سترپتےتماممقبول ہر وقتآپ کی تمام سبسکرپشنز۔حروف تہجی a -> zپہلے سے اکاؤنٹ ہے؟آپ کی پوسٹ بنانے کی کوشش کے دوران ایک غیر متوقع خرابی واقع ہو گئی ہے۔ دوبارہ کوشش کریں.ایک غیر متوقع خرابی پیش آ گئی ہے اور میل نہیں بھیجی جا سکی۔ایک غیر متوقع خرابی واقع ہوئی ہے. دوبارہ کوشش کریں.لاگودرخواست دیںآرکائیوکیا آپ واقعی %post_title% کو حذف کرنا چاہتے ہیں؟کیا آپ واقعی %post_title% شائع کرنا چاہتے ہیں؟پرآسٹریلوی ڈالرمصنفمصنفینادائیگی کے منتظرواپسبینک کا نامبینک ٹرانسفرBic/swiftبل کی تفصیلاتمسدودبلاگبرازیل حقیقیبرطانوی پاؤنڈبلغارین لیوکی طرفاسکورکا جائزہ لیناکیپچا صارف سکور ناکام ہو گیا۔ براے مہربانی ہم سے رابطہ کریں!کیپچا کی توثیق ناکام!بندتبصرےکینیڈین ڈالرمنسوخجواب منسوخ کریںرکنیت منسوخ کریںمنسوخ%s فیلڈ پر کارروائی نہیں کر سکتے۔اقسامدرست ایکٹیویشن لنک کے لیے اپنا ای میل چیک کریں۔ یہ لنک غلط ہے۔چینی یوآن رینمنبیمنصوبہ منتخب کریںشہربندتبصرہتبصرے بند ہیں.کمپنی کا ناممکمل ادائیگینئے پاس ورڈ کی توثیق کریںہم سے رابطہ کريںجاریملکملک/علاقہملک/ریاستکاؤنٹیکوپن لاگوکوپن کا نام درکار ہے!کھاتا کھولیںنئی اصطلاح بنائیںکروشین کوناموجودہ خفیہ لفظموجودہ صورت حالسائیکل وقفہجمہوریہ چیک کروناڈیلی آرکائیوڈینش کرونڈیش بورڈتاریخحذف کریںایک پوسٹ کو حذف کریںبک مارکس کو حذف کریںتفصیلبراہ راست بینک ٹرانسفربراہ راست بینک ٹرانسفر کی تفصیلاتڈسپلے ناماکاؤنٹ نہیں ہے؟ڈاؤن لوڈ کریںڈاؤن لوڈگھسیٹیں اور چھوڑیں یا براؤز کریں۔ایڈیٹر چنتازيادہ خبريںخصوصیترمیمپوسٹ میں ترمیم کریںای میلای میل اڈریسای میل ایڈریس نہیں ملاای میل پہلے سے موجود ہے!ای میل خالی!غلط ای ميلای میل یا صارف نام خالی!ای میل یا غلط کا صارف کا نامای میلخالی پتہخالی شہرخالی ملکخالی کاؤنٹیخالی ای میلخالی پہلا نامخالی آخری نامخالی فونخالی پوسٹ کوڈآخری تاریخاپنا نام یا کمپنی درج کریں۔اپنے جائزے کے لیے ایک عنوان درج کریں۔یہاں پرومو کوڈ درج کریں۔اپنا جواب درج کریں۔اپنا جائزہ درج کریں۔یورو رکن ممالکہمیں فالو کریںمداحنمایاںفيچرڈ پوسٹمیدان خالیپہلا نامفالورInstagram پر ہمارے ساتھ چلیےفالورزپاسورڈ بھول گے؟کيا آپ پاس ورڈ بھول گئے ہیں؟اپنا پاس ورڈ بھول گئے؟ مدد حاصل کرومفتاپنے اکاؤنٹ میں داخل ہوں.ادائیگی پر جائیںچیک آؤٹ پر جائیں۔مجموعی عددمرکزی صفحہہیلوہیلو %1$s (%2$s نہیں؟ %3$s)! اپنے اکاؤنٹ کے ڈیش بورڈ سے آپ اپنی سبسکرپشنز دیکھ سکتے ہیں اور اپنے اکاؤنٹ کی تفصیلات کا نظم کر سکتے ہیں۔تلاش کے نتائج یہ ہیں:ہومہانگ کانگ ڈالرہنگرین فورنٹIBANآئی ڈیاگر یہ غلطی تھی تو اس ای میل کو نظر انداز کر دیں اور کچھ نہیں ہوگا۔اگر آپ نتائج کے ساتھ خوش نہیں ہيں، تو براہ مہربانی دوبارہ تلاش کریںاس سیکشن تک رسائی حاصل کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔اس فائل کو اپ ڈیٹ کرنے کے لیے، آپ کو اپنا اکاؤنٹ چالو کرنا ہوگا۔بھارتی روپیہانڈونیشین روپیہابتدائی رسید کی ادائیگیہدایاتغلطغلط پاس پیٹرن!غلط رکنیت.رسیدانوائس اپ ڈیٹاسرائیلی شیکلایسا لگتا ہے کہ ادائیگی کا کوئی دستیاب طریقہ ترتیب نہیں دیا گیا ہے۔جاپانی ینشامل ہو جائیےکوریا (جنوبی) جیت لیاتازہ ترین مضامینجواب چھوڑ دیںلاگ انآخری نامتازہ ترینتازہ ترین رسیدایک جائزہ چھوڑ دوپسندپسند کرتا ہےمزید لوڈ کریںلوڈ ہو رہا ہےمقام:مقفل سبسکرپشن۔لاگ ان کریںفیس بک لاگ ان کریںتبصرہ چھوڑنے کے لئے لاگ ان کریںایک جائزہ چھوڑنے کے لیے لاگ ان کریں۔اپنے اکاؤنٹ میں لاگلاگ آوٹلاگ آوٹ؟کے طور پر لاگ ان٪ s کے طور پر لاگ ان اپنی پروفائل میں ترمیم کریں.میں لاگ ان کریںلاگ آؤٹ کریںکھوئے ہوئے پاس ورڈزیادہ مصنف کی طرف سےمزید کہانیاںملائشین رنگٹاپنے اکاؤنٹ کی تفصیلات کا نظم کریں۔اپنی بلنگ کی تفصیلات کا نظم کریں۔اراکینمیکسیکن پیسہترمیم شدہ تاریخنظر ثانی شدہ تاریخ:ماہانہ آرکائیومہینےمزیدسب سے زیادہ مقبولمیرا سبسکرپشن اکاؤنٹمیرا وو اکاؤنٹN / Aکوئی تبصرہ نہیںنامنامنیوزی لینڈ ڈالرایکٹیویشن کا نیا لنک تیار کیا گیا تھا۔ اپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔نیا پاس ورڈنیا پاس ورڈ *نئے پاس ورڈز مماثل نہیں ہیں۔اگلااگلا (دائیں ا یرو کياگلا مضموننہیںکوئی بک مارک پوسٹ نہیںکوئی تحریر نہیں ظاہر کرنے کے لئےٹوکری میں کوئی مصنوعات نہیں.کوئی درجہ بندی نہیںکوئی نتائج نہیںآپ کی تلاش کا کوئی نتيجہ نہیںتلاش کا کوئی نتیجہ نہیںکوئی رکنیت نہیں بنائی گئی۔نارویجن کرونادائیگی نہیں کیہمارے تازہ ترین مراسلاتمجموعی اسکورسب سے پرانی پوسٹسافوہ ... 404 ايرراحکاماتہمارے بینک کی تفصیلاتمجموعی طور پرمقبول قسممقبول پوسٹسمراسلاتصفحہصفحہ%موجودہ صفحہ%کا%کل صفحاتوالدینخالی پاس!پاس پیٹرن غلط!پاس ورڈپاس ورڈ کی وصولیاب اداپٹی کے ساتھ ادائیگی کریںادائیگی ناکام ہو گئی - ہم معذرت خواہ ہیں، آپ کی ادائیگی پر کارروائی کرنے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔ادائیگی کا طریقہادائیگی کے طریقےادائیگی کی کارروائی - آپ کی سبسکرپشن کی تازہ ترین ادائیگی پر کارروائی کی جا رہی ہے۔ادائیگی کامیاب - آپ کی تازہ ترین رکنیت کی ادائیگی کامیابی کے ساتھ مکمل ہو گئی۔ادائیگی کی قسممدتفلپائینی پیسہفونمنصوبہبراہ کرم اپنے ای میل ایڈریس پر بھیجے گئے لنک پر عمل کرکے اپنا اکاؤنٹ فعال کریں۔آپ براہ مہربانی اپنا ای میل چیک کریں ( انڈیکس یا اسپيم فولڈر ) پاس ورڈ وہاں بھیجا گیا تھااپنے اکاؤنٹ کی توثیق کرنے کے لیے براہ کرم اپنا ای میل (ان باکس یا اسپام فولڈر) چیک کریں۔آپ کا ای میل (انڈیکس یا سپیم فولڈر) براہ مہربانی چیک کریں، پاس ورڈ وہاں بھیجا گیا تھا.براہ کرم اپنا ای میل چیک کریں اور سبسکرپشن کی تصدیق کریں!براہ کرم آگے بڑھنے سے پہلے نئے پاس ورڈ کی تصدیق کریں۔براہ کرم پہلے ایک کوپن کوڈ درج کریں!براہ کرم آگے بڑھنے سے پہلے نیا پاس ورڈ درج کریں۔برائے مہربانی قابل قبول ای میل ایڈریس لکھیں.براہ مہربانی اپنی رائے درج کریں!براہ کرم اپنا موجودہ پاس ورڈ درج کریں۔برائے مہربانی اپنا ای میل پتہ یہاں درج کریںاپنا نام یہاں درج کریںبراہ کرم ایک درست ای میل پُر کریں۔براہ کرم ایک ای میل ایڈریس پُر کریں۔براہ کرم تمام پاس ورڈ فیلڈز کو پُر کریں۔براہ کرم یقینی بنائیں کہ پاس ورڈ مماثل ہیں۔براہ کرم ایک درست ای میل ایڈریس فراہم کریں۔براہ مہربانی اپنے پاس ورڈ کا دوبارہ اندراج کیجیے.براہ مہربانی انتظار کریں …پولش زلوٹیرائے دیجئےتصویر پوسٹ کریںجائزہ پوسٹ کریںڈاک کامخصوص نمبرپوسٹ کوڈکی طرف سے پوسٹ کیا گیاکے ذریعے پیغاماتپیغامات کوساتھ ٹیگ کیاپچھلاپچھلا (بائیں ايرو کيگزشتہ مضمونقیمتقیمت مقرر نہیںپرنٹ کریںرازداری کی پالیسیمصنوعات کی اقساممصنوعات کے ٹیگزپروفائل تصویرشائع کریںایک پوسٹ شائع کریںرجسٹرمتعلقہ مضامینجائزہ مجموعی جائزہرینڈمدرجہ بندیمزید پڑھیںپاس ورڈ بازیافت کریں۔اپنا پاسورڈ ريکور کريںرجسٹرایک اکاؤنٹ کے لئے رجسٹر کريںباقی اشاعتی حقوق۔دورنیا پاس ورڈ دہرائیں *پاس ورڈ دہراؤجوابایکٹیویشن لنک دوبارہ بھیجیں۔آپ کا پاس ورڈ دوبارہ ترتیب دیںدوبارہ ٹائپ شدہ پاس غلط!دوبارہ ٹائپ شدہ پاس خالی!بالکل دوبارہ ٹائپ کیا گیا پاس!معیار کا جائزہ لیںرومنی (نئے) لیورہنما عددروسی روبلحصہذریعہخلاصہمحفوظ کریںتبدیلیاں محفوظ کرومیرے براؤزر میں میرا نام، ای میل، اور ویب سائٹ محفوظ کریں اگلا وقت میں تبصرہ کریں.پاس ورڈ محفوظ کریںتلاش کریںمطلوبہ الفاظ سے تلاش کریں...ایک مقام تلاش کریںمنتخب کریںبچے کو منتخب کریںوالدین کو منتخب کریںذیلی بچے کو منتخب کریں۔میرا پاس ارسال کریںاپنا پاس ورڈ بھیجیںسیٹ اپ ادائیگیسیٹ اپ ناکام ہو گیا - ہمیں افسوس ہے، آپ کی ادائیگی کا طریقہ ترتیب دینے میں ایک خرابی تھی۔ براہ کرم ایک مختلف ادائیگی کے طریقے کے ساتھ دوبارہ کوشش کریں۔سیٹ اپ کامیاب - آپ نے مستقبل کی ادائیگیوں کے لیے اپنی ادائیگی کا طریقہ کامیابی سے ترتیب دیا ہے۔بانٹیںفيس بک پر شیئر کیجئیےکم معلومات دکھائیںمزید معلومات دکھائیںداخلہسائن ان / شمولیتسائن اپسنگاپور ڈالرکچھ مطلوبہ فیلڈز کو خالی چھوڑ دیا گیا ہے۔کسی نے درج ذیل اکاؤنٹ کے لیے پاس ورڈ دوبارہ ترتیب دینے کی درخواست کی ہے۔معذرت، لیکن آپ جو صفحہ تلاش کر رہے ہیں موجود نہیں ہےماخذ کا عنوانجنوبی افریقی رانڈشروع کرنے کی تاریخحالتحالتگلی کا پتہپٹی رسیدپٹی رسید کی تفصیلاتپٹی سبسکرپشن کی تفصیلاتجمع کرائیںجواب جمع کروائیںجائزہ جمع کروائیںسبسکرائب کریںسبسکرائبرزرکنیت منسوخ کر دی گئی۔سبسکرپشن بنائیں: ابتدائی انوائس ادا کی گئی۔سبسکرپشن تخلیق: ابتدائی رسید بنائی گئی ہے۔سبسکرپشن تخلیق: ابتدائی انوائس کو حتمی شکل دے دی گئی ہے، اور یہ ادا کرنے کے لیے تیار ہے۔سبسکرپشن بنائیں: ابتدائی رسید کالعدمسبسکرپشن تخلیق: ٹرائل کرنارکنیت حذف کر دی گئیسبسکرپشن کی میعاد ختم ہو گئی: انوائس کالعدم ہو گئی (پہلی رسید ادا نہیں کی گئی تھی)سبسکرپشن کی تجدید: انوائس بنائی گئی۔رکنیت کی تجدید: انوائس کو حتمی شکل دی گئی۔رکنیت کی تجدید: رسید کی ادائیگیسبسکرپشن کی تجدید: انوائس آنے والیرکنیت کی تجدید: رسید کالعدمسبسکرپشن اپ ڈیٹ: رسید کی ادائیگیسبسکرپشن اپ ڈیٹ: رسید کالعدمسبسکرپشن منسوخ کر دی گئی ہے اور اس پر ختم ہو جائے گی:رکنیت کی معلوماترکنیت کا خلاصہسبسکرپشنزکامیابیکامیابی سے سبسکرائب کر لیا!کامیابی سے رکنیت ختم کر دی گئی!سویڈش کروناسوئس فرانکٹیگزٹیگٹیگزٹیلی فون:تھائی باہتشکریہ! ہمیں آپ کو یہاں دیکھ کر خوشی ہوئی ہے۔ آپ کی رکنیت جلد ہی چالو ہو جائے گی!سے يہ مواد لوڈ نہیں کیا جا سکتا%url%آپ کے درج کردہ کوپن کوڈ کی میعاد ختم ہو گئی ہے۔آپ نے جو کوپن کوڈ درج کیا ہے وہ اس کے استعمال کی حد کو پہنچ گیا ہے۔آپ کا درج کردہ کوپن کوڈ غلط ہے۔ای میل کامیابی سے بھیج دیا گیا ہے۔سے یہ تصویر لوڈ نہیں کی جا سکتی #%curr%تعداد سے زیادہ نہیں ہو سکتیتعداد سے کم نہیں ہو سکتیمضامین کی تعداد جو آپ نے پوسٹ کی مختلف اقسام میں شائع کرنے کے لیے چھوڑی ہے۔پاس ورڈ کامیابی سے دوبارہ ترتیب دیا گیا ہے۔پاس ورڈ دوبارہ ترتیب دینے کی کلید ختم ہو گئی ہے۔پاس ورڈ دوبارہ ترتیب دینے کی کلید غلط ہے۔منتخب پوسٹ کو کامیابی سے حذف کر دیا گیا ہے۔%post_title% کی حیثیت تبدیل کر دی گئی ہے۔یہ ای میل پتہ پہلے سے رجسٹرڈ ہے.اس کو پر کرنا ضروری ہے!یہ رکنیت منسوخ کر دی گئی ہے اور یہ %end_date% کو ختم ہو جائے گی۔عنواناپنا پاس ورڈ دوبارہ ترتیب دینے کے لیے درج ذیل پتے پر جائیں:کلقصبہ/شہررجحان سازی اس وقتمقدمے کی سماعتترکی کا لیراٹویٹر پر ٹویٹ کريںUncaught error: کچھ غلط ہو گیا، براہ کرم صفحہ دوبارہ لوڈ کریں اور دوبارہ کوشش کریں!امریکی ڈالربلا معاوضہ رکنیت.اپ ڈیٹصارف پہلے سے موجود ہے!صارف موجود نہیں ہے!صارف خالی!صارف کی معلوماتصارف یا ای میل پہلے سے موجود ہےصارف یا غلط پاس ورڈصارف نامصارف نام خالی ہے!صارف نام غلط ہے!استعمال کنندہ کا نام یا ای میل پتہصارف نام: %sVATواٹ نمبرکے ذریعےدیکھیںتمام مراسلات ان میں دیکھیںتمام نتائج دیکھيےسبسکرپشن دیکھیںویب سائٹآپ کے اکاؤنٹ میں خوش آمدید!خوش آمدید!خوش آمدید! اپنے اکاؤنٹ میں لاگ ان کریںخوش آمدید! ایک اکاؤنٹ کے لئے رجسٹر کریںسالانہ آرکائیوجی ہاںآپ کے پاس پہلے سے ہی سبسکرپشن ہے، لیکن یہ ابھی بھی ادائیگی کے انتظار میں ہے!آپ جا سکتے ہیںآپ کے پاس اس درخواست پر عمل کرنے کے لیے مطلوبہ مراعات نہیں ہیں۔آپ نے غلط ای میل پتہ درج کیا ہے!آپ نے کوئی پوسٹس نہیں بنائی ہیں۔آپ نے ایک درست رکنیت کا منصوبہ منتخب نہیں کیا ہے۔آپ جائزوں کی حد تک پہنچ گئے ہیں جو آپ اس مضمون کے لیے جمع کرا سکتے ہیں۔اس صفحہ کو دیکھنے کے لیے آپ کو لاگ آؤٹ کرنا ہوگا۔آپ کا اکاؤنٹ نہیں بنایا جا سکا۔آپ کا اکاؤنٹ پہلے ہی ایکٹیویٹ ہو چکا ہے!آپ کا اکاؤنٹ کامیابی سے ایکٹیویٹ ہو گیا ہے!آپ کا تبصرہ اعتدال پسندی کا منتظر ہےآپ کا موجودہ پاس ورڈ غلط ہے۔آپ کا پاس ورڈ دوبارہ ترتیب کر ديا گيا ہے اپنی ای میل چيک کريںآپ کی پوسٹ کامیابی کے ساتھ بنائی گئی ہے۔آپ کی پوسٹ کو کامیابی سے اپ ڈیٹ کر دیا گیا ہے۔آپ کا جواب شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔آپ کا جائزہ شائع ہو چکا ہے۔ براہ کرم اسے دیکھنے کے لیے صفحہ کو ریفریش کریں۔آپ کا جائزہ رجسٹر ہو چکا ہے اور منظوری کا انتظار ہے۔آپ کی رکنیت کی تفصیلاتسابق. ٹیکسinc. ٹیکسلاپتہ منصوبہلمبائی میں کم از کم 6 حروف پر مشتمل ہونا چاہیے۔کم از کم ایک لوئر کیس (a..z) پر مشتمل ہونا چاہیےکم از کم ایک اپر کیس (a..z) پر مشتمل ہونا چاہیےکےپریا5 میں سےتلاش کے نتائجلامحدودخیالاتآپ کا ای میلآپ کا پاس ورڈآپ کا يوزر نيمtranslation/es_ES.po000064400000106565150211537140010454 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" msgid "View all results" msgstr "Ver todos los resultados" msgid "No results" msgstr "Sin resultados" msgid "Home" msgstr "Inicio" msgid "CLOSE" msgstr "Cerrar" msgid "Page" msgstr "Página" msgid "All" msgstr "Todo" msgid "By" msgstr "Por" msgid "Load more" msgstr "Cargar más" msgid "View all posts in" msgstr "Ver todas las publicaciones en" msgid "Tags" msgstr "Etiquetas" msgid "Previous article" msgstr "Artículo anterior" msgid "Next article" msgstr "Artículo siguiente" msgid "Authors" msgstr "Autores" msgid "Author" msgstr "Autor" msgid "RELATED ARTICLES" msgstr "Artículos relacionados" msgid "MORE FROM AUTHOR" msgstr "Más del autor" msgid "VIA" msgstr "VIA" msgid "SOURCE" msgstr "Fuente" msgid "TAGS" msgstr "Etiquetas" msgid "SHARE" msgstr "Compartir" msgid "Continue" msgstr "Continuar" msgid "Read more" msgstr "Leer más" msgid "Name:" msgstr "Nombre:" msgid "Email:" msgstr "Correo electrónico:" msgid "Website:" msgstr "Sitio web:" msgid "Comment:" msgstr "Comentario:" msgid "LEAVE A REPLY" msgstr "DEJA UNA RESPUESTA" msgid "Post Comment" msgstr "Publicar comentario" msgid "Cancel reply" msgstr "Cancelar respuesta" msgid "Reply" msgstr "Respuesta" msgid "Log in to leave a comment" msgstr "Iniciar sesión para dejar un comentario" msgid "NO COMMENTS" msgstr "SIN COMENTARIOS" msgid "1 COMMENT" msgstr "1 COMENTARIO" msgid "COMMENTS" msgstr "COMENTARIOS" msgid "REVIEW OVERVIEW" msgstr "Reseña" msgid "SUMMARY" msgstr "RESUMEN" msgid "OVERALL SCORE" msgstr "PUNTUACIÓN GENERAL" msgid "Ooops... Error 404" msgstr "Ups... Error 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Lo sentimos, pero la página que busca no existe." msgid "You can go to the" msgstr "Usted puede ir a" msgid "HOMEPAGE" msgstr "PÁGINA PRINCIPAL" msgid "OUR LATEST POSTS" msgstr "NUESTRAS ÚLTIMAS ENTRADAS" msgid "Posts by" msgstr "Publicaciones por" msgid "POSTS" msgstr "Publicaciones" msgid "Posts tagged with" msgstr "Mensajes etiquetados con" msgid "Tag" msgstr "Etiqueta" msgid "Daily Archives:" msgstr "Archivos diarios:" msgid "Monthly Archives:" msgstr "Archivos mensuales:" msgid "Yearly Archives:" msgstr "Archivos anuales:" msgid "Archives" msgstr "Archivos" msgid "LATEST ARTICLES" msgstr "ÚLTIMAS NOTICIAS" msgid "search results" msgstr "Resultados de la búsqueda" msgid "Search" msgstr "Buscar" msgid "If you're not happy with the results, please do another search" msgstr "Si no estás feliz con los resultados, por favor realiza otra búsqueda" msgid "Contact us" msgstr "Contáctanos" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Página %CURRENT_PAGE% de %TOTAL_PAGES%" msgid "Next" msgstr "Siguiente" msgid "Prev" msgstr "Anterior" msgid "No results for your search" msgstr "No hay ningún resultado de su búsqueda" msgid "No posts to display" msgstr "No hay publicaciones para mostrar" msgid "LOG IN" msgstr "Iniciar sesión" msgid "Sign in / Join" msgstr "Registrarse / Unirse" msgid "Log In" msgstr "Iniciar sesión" msgid "REGISTER" msgstr "Registrarse" msgid "Send My Pass" msgstr "Enviar contraseña" msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" msgid "Please wait..." msgstr "Por favor espera..." msgid "User or password incorrect!" msgstr "Usuario o contraseña incorrecta!" msgid "Email or username incorrect!" msgstr "Correo electrónico o nombre de usuario incorrecto!" msgid "Email incorrect!" msgstr "Email incorrecto!" msgid "User or email already exists!" msgstr "Utilisateur ou email existe déjà!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Por favor revisa tu correo electrónico (el índice o la carpeta de spam), la contraseña fue enviada ahí." msgid "Email address not found!" msgstr "¡No se encontró la dirección!" msgid "Your password is reset, check your email." msgstr "Tu contraseña ha sido reiniciada, revisa tu correo electrónico." msgid "Welcome! Log into your account" msgstr "¡Bienvenido! Ingresa en tu cuenta" msgid "Register for an account" msgstr "Regístrate para una cuenta" msgid "Recover your password" msgstr "Recupera tu contraseña" msgid "your username" msgstr "tu nombre de usuario" msgid "your password" msgstr "tu contraseña" msgid "your email" msgstr "tu correo electrónico" msgid "A password will be e-mailed to you." msgstr "Se te ha enviado una contraseña por correo electrónico." msgid "Logout" msgstr "Salir" msgid "Like" msgstr "Me gusta" msgid "Fans" msgstr "Fans" msgid "Follow" msgstr "Seguir" msgid "Followers" msgstr "Seguidores" msgid "Subscribe" msgstr "Suscribirte" msgid "Subscribers" msgstr "Suscriptores" msgid "MORE STORIES" msgstr "Te recomendamos leer:" msgid "Latest" msgstr "Más recientes" msgid "Featured posts" msgstr "Publicaciones destacadas" msgid "Most popular" msgstr "Más populares" msgid "7 days popular" msgstr "Populares en los últimos 7 días" msgid "By review score" msgstr "Por puntuación de reseñas" msgid "Random" msgstr "Al azar" msgid "Trending Now" msgstr "Últimas entradas" msgid "POPULAR CATEGORY" msgstr "CATEGORÍA POPULAR" msgid "EVEN MORE NEWS" msgstr "Incluso más noticias" msgid "Previous (Left arrow key)" msgstr "Anterior (tecla de flecha izquierda)" msgid "Next (Right arrow key)" msgstr "Siguiente (tecla de flecha derecha)" msgid "%curr% of %total%" msgstr "%curr% de %total%" msgid "The content from %url% could not be loaded." msgstr "El contenido de %url% no pudo cargarse." msgid "The image #%curr% could not be loaded." msgstr "La imagen #%curr% no pudo cargarse." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Compartir en Facebook" msgid "Tweet on Twitter" msgstr "Compartir en Twitter" msgid "EDITOR PICKS" msgstr "RECOMENDACIONES DEL EDITOR" msgid "POPULAR POSTS" msgstr "ENTRADAS POPULARES" msgid "FOLLOW US" msgstr "SÍGUENOS" msgid "ABOUT US" msgstr "SOBRE NOSOTROS" msgid "More" msgstr "Más" msgid "Featured" msgstr "Destacado" msgid "All time popular" msgstr "Lo más popular" msgid "Likes" msgstr "Likes" msgid "Register" msgstr "Registrar" msgid "of" msgstr "de" msgid "Euro Member Countries" msgstr "Los países miembros del euro" msgid "Your comment is awaiting moderation" msgstr "Tu comentario está esperando ser moderado" msgid "Follow us on Instagram" msgstr "Síguenos en Instagram" msgid "Back" msgstr "Espalda" msgid "Sign in" msgstr "Registrarse" msgid "Sign up" msgstr "Regístrate" msgid "Join" msgstr "Unirse" msgid "Welcome!" msgstr "¡Bienvenido!" msgid "Log into your account" msgstr "Ingrese a su cuenta" msgid "Password recovery" msgstr "Recuperación de contraseña" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Por favor revise su correo electrónico (carpeta de índice o spam), la contraseña fue enviada allí." msgid "Australian Dollar" msgstr "Dólar australiano" msgid "Bulgarian Lev" msgstr "Lev búlgaro" msgid "Brazilian Real" msgstr "Real brasileño" msgid "Canadian Dollar" msgstr "Dolar canadiense" msgid "Swiss Franc" msgstr "Franco suizo" msgid "Chinese Yuan Renminbi" msgstr "Renminbí chino" msgid "Czech Republic Koruna" msgstr "Corona República Checa" msgid "Danish Krone" msgstr "Corona danesa" msgid "British Pound" msgstr "Libra británica" msgid "Hong Kong Dollar" msgstr "Dolar de Hong Kong" msgid "Croatian Kuna" msgstr "Kuna croata" msgid "Hungarian Forint" msgstr "Florín húngaro" msgid "Indonesian Rupiah" msgstr "Rupia indonesia" msgid "Israeli Shekel" msgstr "Shekel israelí" msgid "Indian Rupee" msgstr "Rupia india" msgid "Japanese Yen" msgstr "Yen japonés" msgid "Korean (South) Won" msgstr "Coreano (sur) de won" msgid "Mexican Peso" msgstr "Peso mejicano" msgid "Malaysian Ringgit" msgstr "Ringgit malayo" msgid "Norwegian Krone" msgstr "Corona noruega" msgid "New Zealand Dollar" msgstr "Dolar de Nueva Zelanda" msgid "Philippine Peso" msgstr "Peso filipino" msgid "Polish Zloty" msgstr "Zloty polaco" msgid "Romanian (New) Leu" msgstr "Rumano (nuevo) leu" msgid "Russian Ruble" msgstr "Rublo ruso" msgid "Swedish Krona" msgstr "Corona sueca" msgid "Singapore Dollar" msgstr "Dolar de Singapur" msgid "Thai Baht" msgstr "Baht tailandés" msgid "Turkish Lira" msgstr "Lira turca" msgid "United States Dollar" msgstr "Dólar de los Estados Unidos" msgid "South African Rand" msgstr "Rand sudafricano" msgid "Privacy Policy" msgstr "Política de privacidad" msgid "views" msgstr "puntos de vista" msgid "Modified date:" msgstr "Fecha modificada:" msgid "Please enter your name here" msgstr "Por favor ingrese su nombre aquí" msgid "Please enter your email address here" msgstr "Por favor ingrese su dirección de correo electrónico aquí" msgid "You have entered an incorrect email address!" msgstr "¡Has introducido una dirección de correo electrónico incorrecta!" msgid "Please enter your comment!" msgstr "Por favor ingrese su comentario!" msgid "Logged in as" msgstr "Conectado como" msgid "Log out?" msgstr "¿cerrar sesión?" msgid "Logged in as %s. Edit your profile." msgstr "Ha iniciado sesión como% s. Edite su perfil." msgid "Edit" msgstr "Editar" msgid "Login" msgstr "Iniciar sesión" msgid "Send My Password" msgstr "Enviar mi contraseña" msgid "Create an account" msgstr "Crea una cuenta" msgid "Welcome! Register for an account" msgstr "¡Bienvenido! registrarse para una cuenta" msgid "About me" msgstr "Sobre mi" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Guardar mi nombre, correo electrónico y sitio web en este navegador la próxima vez que comente." msgid "Orders" msgstr "Pedidos" msgid "Addresses" msgstr "Direcciones" msgid "Account settings" msgstr "Configuraciones de la cuenta" msgid "Hello" msgstr "Hola" msgid "No products in the cart." msgstr "No hay productos en el carrito." msgid "Product categories" msgstr "Categorías de Producto" msgid "Product tags" msgstr "Etiquetas de productos" msgid "Success" msgstr "éxito" msgid "Acknowledgment is required!" msgstr "¡Se requiere reconocimiento!" msgid "Please fill in a valid email." msgstr "Por favor complete un correo electrónico válido." msgid "Please fill in an email address." msgstr "Por favor ingrese una dirección de correo electrónico." msgid "Get into your account." msgstr "Entra en tu cuenta." msgid "My subscription account" msgstr "Mi cuenta de suscripción" msgid "Account details" msgstr "Detalles de la cuenta" msgid "Subscriptions" msgstr "Suscripciones" msgid "My woo account" msgstr "Mi cuenta woo" msgid "Log out" msgstr "Cerrar sesión" msgid "Email address" msgstr "Dirección de correo electrónico" msgid "Username" msgstr "Nombre de usuario" msgid "Password" msgstr "Contraseña" msgid "must contain at least one lower case (a..z)" msgstr "debe contener al menos una minúscula (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "debe contener al menos una mayúscula (a..z)" msgid "must contain at least 6 characters in length" msgstr "debe contener al menos 6 caracteres de longitud" msgid "Repeat password" msgstr "Repite la contraseña" msgid "Already have an account?" msgstr "¿Ya tienes una cuenta?" msgid "Recover password" msgstr "Recuperar contraseña" msgid "Username or Email address" msgstr "Nombre de usuario o dirección de correo electrónico" msgid "Forgot password?" msgstr "¿Has olvidado tu contraseña?" msgid "Don't have an account?" msgstr "No tienes una cuenta?" msgid "Dashboard" msgstr "Tablero de mandos" msgid "Welcome to your account!" msgstr "Bienvenido a tu cuenta!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Hola% 1 $ s (no% 2 $ s?% 3 $ s)! desde el panel de control de su cuenta, puede ver sus suscripciones y administrar los detalles de su cuenta." msgid "Lost Password" msgstr "Contraseña perdida" msgid "Manage your account details." msgstr "Administrar los detalles de su cuenta." msgid "First name" msgstr "Primer nombre" msgid "Last name" msgstr "Apellido" msgid "Display name" msgstr "Nombre para mostrar" msgid "Current password" msgstr "Contraseña actual" msgid "(leave blank to leave unchanged)" msgstr "(déjelo en blanco para dejarlo sin cambios)" msgid "New password" msgstr "Nueva contraseña" msgid "Confirm new password" msgstr "Confirmar nueva contraseña" msgid "Save changes" msgstr "Guardar cambios" msgid "All your subscriptions." msgstr "Todas tus suscripciones." msgid "Plan" msgstr "Plan" msgid "Payment type" msgstr "Tipo de pago" msgid "Status" msgstr "Estado" msgid "Months" msgstr "Meses" msgid "Start date" msgstr "Fecha de inicio" msgid "End date" msgstr "Fecha final" msgid "missing plan" msgstr "plan faltante" msgid "Free" msgstr "Gratis" msgid "Active" msgstr "Activo" msgid "Trial" msgstr "Juicio" msgid "Blocked" msgstr "Obstruido" msgid "Closed" msgstr "Cerrado" msgid "Not paid" msgstr "No pagado" msgid "Awaiting payment" msgstr "En espera de pago" msgid "Subscription info" msgstr "Información de suscripción" msgid "ID" msgstr "IDENTIFICACIÓN" msgid "Name" msgstr "Nombre" msgid "Company name" msgstr "Nombre de empresa" msgid "VAT" msgstr "IVA" msgid "Address" msgstr "Habla a" msgid "City" msgstr "Ciudad" msgid "Country/State" msgstr "Estado País" msgid "Email" msgstr "Email" msgid "Postal code" msgstr "Código postal" msgid "Direct bank transfer details" msgstr "Datos de transferencia bancaria directa" msgid "Account name" msgstr "Nombre de la cuenta" msgid "Account number" msgstr "Número de cuenta" msgid "Bank name" msgstr "Nombre del banco" msgid "Routing number" msgstr "Número de ruta" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic / veloz" msgid "Instructions" msgstr "Instrucciones" msgid "No subscription created." msgstr "No se creó ninguna suscripción." msgid "Choose plan" msgstr "Elegir plan" msgid "Payment methods" msgstr "Métodos de pago" msgid "Total" msgstr "Total" msgid "Period" msgstr "Período" msgid "Subscription summary" msgstr "Resumen de suscripción" msgid "Phone" msgstr "Teléfono" msgid "Postcode" msgstr "Código postal" msgid "County" msgstr "Condado" msgid "Town/City" msgstr "Pueblo / ciudad" msgid "Street address" msgstr "Dirección" msgid "Country/Region" msgstr "País / región" msgid "VAT Number" msgstr "Número de valor agregado" msgid "(optional)" msgstr "(Opcional)" msgid "Billing details" msgstr "Detalles de facturación" msgid "User information" msgstr "Informacion del usuario" msgid "It seems that no available payment methods have been configured." msgstr "Parece que no se han configurado métodos de pago disponibles." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "¡gracias! estamos encantados de verte aquí. su suscripción se activará pronto!" msgid "Our bank details" msgstr "Nuestros datos bancarios" msgid "Your subscription details" msgstr "Los detalles de su suscripción" msgid "View subscription" msgstr "Ver suscripción" msgid "You have not selected a valid subscription plan." msgstr "No ha seleccionado un plan de suscripción válido." msgid "Field empty" msgstr "Campo vacio" msgid "Empty first name" msgstr "Nombre vacío" msgid "Empty last name" msgstr "Apellido vacío" msgid "Empty country" msgstr "País vacío" msgid "Empty address" msgstr "Dirección vacía" msgid "Empty city" msgstr "Ciudad vacía" msgid "Empty county" msgstr "Condado vacío" msgid "Empty postcode" msgstr "Código postal vacío" msgid "Empty phone" msgstr "Telefono vacio" msgid "Empty email" msgstr "Correo electrónico vacío" msgid "Email or username empty!" msgstr "Correo electrónico o nombre de usuario vacío!" msgid "Pass empty!" msgstr "Pase vacío!" msgid "Username incorrect!" msgstr "Nombre de usuario incorrecto!" msgid "Invalid Pass Pattern!" msgstr "Patrón de paso no válido!" msgid "Please activate your account by following the link sent to your email address." msgstr "Active su cuenta siguiendo el enlace enviado a su dirección de correo electrónico." msgid "Resend activation link" msgstr "Reenviar enlace de activación" msgid "In order to have access to this section, you have to activate your account." msgstr "Para tener acceso a esta sección, debe activar su cuenta." msgid "Email empty!" msgstr "Correo electrónico vacío!" msgid "Username empty!" msgstr "Nombre de usuario vacío!" msgid "Pass pattern incorrect!" msgstr "Patrón de paso incorrecto!" msgid "Retyped pass empty!" msgstr "¡pase vacío!" msgid "Retyped pass exactly!" msgstr "Reescribió pasar exactamente!" msgid "User already exists!" msgstr "¡el usuario ya existe!" msgid "Email already exists!" msgstr "¡el Email ya existe!" msgid "Your account could not be created." msgstr "Su cuenta no pudo ser creada." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Por favor revise su correo electrónico (bandeja de entrada o carpeta de correo no deseado) para validar su cuenta." msgid "User empty!" msgstr "Usuario vacío!" msgid "User does not exists!" msgstr "El usuario no existe!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Se generó un nuevo enlace de activación. por favor revise su correo electrónico (bandeja de entrada o carpeta de correo no deseado) para validar su cuenta." msgid "CAPTCHA verification failed!" msgstr "¡La verificación de captcha falló!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "La puntuación de usuario de captcha falló. ¡por favor contáctenos!" msgid "Loading" msgstr "Cargando" msgid "Here are the results for the search:" msgstr "Aquí están los resultados de la búsqueda:" msgid "Price" msgstr "Precio" msgid "EXCLUSIVE" msgstr "EXCLUSIVO" msgid "Tel:" msgstr "Teléfono:" msgid "Share" msgstr "Cuota" msgid "Print" msgstr "Impresión" msgid "At" msgstr "En" msgid "Comments are closed." msgstr "Los comentarios están cerrados." msgid "Payment method" msgstr "Método de pago" msgid "You must be logged out to view this page." msgstr "Debe cerrar sesión para ver esta página." msgid "Retyped Pass incorrect!" msgstr "¡El pase reescrito es incorrecto!" msgid "%s is a required field." msgstr "%s es un campo obligatorio." msgid "Please provide a valid email address." msgstr "Por favor ingrese su dirección de correo electrónico válida." msgid "This email address is already registered." msgstr "Esta dirección de correo electrónico ya está registrada." msgid "Please fill out all password fields." msgstr "Complete todos los campos de contraseña." msgid "Please enter your current password." msgstr "Por favor ingrese su contraseña actual." msgid "Please re-enter your password." msgstr "Por favor re ingrese su contraseña." msgid "New passwords do not match." msgstr "Las nuevas contraseñas no coinciden." msgid "Your current password is incorrect." msgstr "Tu contraseña actual es incorrecta." msgid "Account details changed successfully." msgstr "Los detalles de la cuenta cambiaron exitosamente." msgid "A new activation link has been sent to your email address!" msgstr "¡Se ha enviado un nuevo enlace de activación a su dirección de correo electrónico!" msgid "unlimited" msgstr "ilimitado" msgid "Pay with Stripe" msgstr "Pagar con raya" msgid "Cancel subscription" msgstr "Cancelar suscripción" msgid "Please check your email and confirm subscription!" msgstr "¡Por favor revisa tu correo electrónico y confirma la suscripción!" msgid "Successfully subscribed!" msgstr "Suscrito exitosamente!" msgid "Successfully unsubscribed!" msgstr "Cancelado la suscripción con éxito!" msgid "Enter promo code here" msgstr "Ingrese el código de promoción aquí" msgid "Apply" msgstr "Aplicar" msgid "Coupon applied" msgstr "Cupón aplicado" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Error no detectado: algo salió mal. Vuelva a cargar la página e inténtelo de nuevo." msgid "The coupon code you entered is invalid" msgstr "El código de cupón que ingresaste no es válido" msgid "The coupon code you entered has reached its usage limit" msgstr "El código de cupón que ingresó ha alcanzado su límite de uso" msgid "The coupon code you entered has expired" msgstr "El código de cupón que ingresaste ha caducado" msgid "Coupon name is required !" msgstr "¡Se requiere el nombre del cupón!" msgid "Please enter a coupon code first!" msgstr "¡Ingrese primero un código de cupón!" msgid "Invalid" msgstr "Inválido" msgid "Applied" msgstr "Aplicado" msgid "Remove" msgstr "Eliminar" msgid "Price not set" msgstr "Precio no establecido" msgid "Grand Total" msgstr "Gran total" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "¡Ya tienes una suscripción, pero aún estás esperando ser pagada!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Esta suscripción ha sido cancelada y finalizará el %end_date%." msgid "Go to checkout" msgstr "Ir a pagar" msgid "Stripe invoice details" msgstr "Detalles de la factura de rayas" msgid "Stripe subscription details" msgstr "Detalles de suscripción de banda" msgid "Current status" msgstr "Estado actual" msgid "Initial Invoice Paid" msgstr "Factura inicial pagada" msgid "Subscription Create: Initial Invoice Paid" msgstr "Creación de suscripción: factura inicial pagada" msgid "Subscription Create: Initial Invoice has been created" msgstr "Creación de suscripción: se ha creado la factura inicial" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Creación de suscripción: la factura inicial se ha finalizado y está lista para pagarse." msgid "Subscription Update: Invoice Paid" msgstr "Actualización de suscripción: factura pagada" msgid "Subscription Renew: Invoice Paid" msgstr "Renovación de suscripción: factura pagada" msgid "Subscription Renew: Invoice Finalized" msgstr "Renovación de suscripción: factura finalizada" msgid "Subscription Renew: Invoice Created" msgstr "Renovación de suscripción: factura creada" msgid "Subscription Renew: Invoice Upcoming" msgstr "Renovación de suscripción: factura próxima" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Suscripción caducada: factura anulada (la primera factura no se pagó)" msgid "Subscription Deleted" msgstr "Suscripción eliminada" msgid "Subscription Create: Trialing" msgstr "Creación de suscripción: prueba" msgid "Subscription Canceled" msgstr "Suscripción cancelada" msgid "Subscription Create: Initial Invoice voided" msgstr "Creación de suscripción: factura inicial anulada" msgid "Subscription Renew: Invoice voided" msgstr "Renovación de suscripción: factura anulada" msgid "Subscription Update: Invoice voided" msgstr "Actualización de suscripción: factura anulada" msgid "Invoice updated" msgstr "Factura actualizada" msgid "Subscription has been canceled and will end on: " msgstr "La suscripción ha sido cancelada y finalizará el:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Configuración exitosa: ha configurado exitosamente su método de pago para pagos futuros." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Error de configuración: lo sentimos, se produjo un error al configurar su método de pago. Inténtalo de nuevo con un método de pago diferente." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Pago exitoso: el pago de su última suscripción se completó exitosamente." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Procesamiento de pagos: se está procesando el último pago de su suscripción." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "El pago falló. Lo sentimos, hubo un error al procesar su pago. Inténtalo de nuevo con un método de pago diferente." msgid "Download" msgstr "Descargar" msgid "Stripe invoice" msgstr "Factura rayada" msgid "N/A" msgstr "N / A" msgid "Latest invoice" msgstr "última factura" msgid "Invoice" msgstr "Factura" msgid "Unpaid subscription." msgstr "Suscripción no pagada." msgid "Locked subscription." msgstr "Suscripción bloqueada." msgid "Invalid subscription." msgstr "Suscripción no válida." msgid "Pay now" msgstr "Pagar ahora" msgid "Show more info" msgstr "Mostrar más información" msgid "Show less info" msgstr "Mostrar menos información" msgid "Complete payment" msgstr "El pago completo" msgid "or" msgstr "o" msgid "Setup Payment" msgstr "Pago de configuración" msgid "Go to Payment" msgstr "Ir al pago" msgid "Alphabetical A -> Z" msgstr "Alfabético a -> z" msgid "Oldest posts" msgstr "Publicaciones más antiguas" msgid "Select" msgstr "Seleccionar" msgid "on" msgstr "en" msgid "No bookmarked posts" msgstr "No hay publicaciones marcadas" msgid "Log in With Facebook" msgstr "Iniciar sesión con Facebook" msgid "Forgot your password? Get help" msgstr "¿Olvidaste tu contraseña? consigue ayuda" msgid "Someone has requested a password reset for the following account:" msgstr "Alguien ha solicitado un restablecimiento de contraseña para la siguiente cuenta:" msgid "Username: %s" msgstr "Nombre de usuario: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Si fue un error, ignora este correo electrónico y no pasará nada." msgid "To reset your password, visit the following address:" msgstr "Para restablecer su contraseña, visite la siguiente dirección:" msgid "Members" msgstr "Miembros" msgid "Downloads" msgstr "Descargas" msgid "inc. TAX" msgstr "Cª. impuesto" msgid "ex. TAX" msgstr "ex. impuesto" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Ha ocurrido un error inesperado al intentar crear tu publicación. Inténtalo de nuevo." msgid "Your post has been successfully created." msgstr "Tu publicación ha sido creada exitosamente." msgid "Your post has been successfully updated." msgstr "Tu publicación se ha actualizado exitosamente." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Se ha producido un error inesperado y no se ha podido enviar el correo." msgid "Location:" msgstr "Ubicación:" msgid "The email has been successfully sent." msgstr "El correo electrónico ha sido enviado exitosamente." msgid "An unexpected error has occurred. Please try again." msgstr "Ha ocurrido un error inesperado. Inténtalo de nuevo." msgid "Drag and drop or browse" msgstr "Arrastrar y soltar o navegar" msgid "Search by keyword..." msgstr "Buscar por palabra clave..." msgid "Select parent" msgstr "Seleccionar padre" msgid "Add new" msgstr "Agregar nuevo" msgid "Parent" msgstr "Padre" msgid "Select child" msgstr "Seleccionar niño" msgid "Select sub-child" msgstr "Seleccionar sub-hijo" msgid "Posted by" msgstr "Publicado por" msgid "Overall" msgstr "En general" msgid "Post review" msgstr "Revisión posterior" msgid "This field is required!" msgstr "¡Este campo es obligatorio!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Tu opinión se ha publicado. Por favor actualice la página para poder verla." msgid "Your review has been registered and is awaiting approval." msgstr "Su reseña ha sido registrada y está pendiente de aprobación." msgid "Submit reply" msgstr "Enviar respuesta" msgid "Enter your reply" msgstr "Ingresa tu respuesta" msgid "Cancel" msgstr "Cancelar" msgid "Some required fields have been left blank." msgstr "Algunos campos obligatorios se han dejado en blanco." msgid "Please enter a valid email address." msgstr "Por favor, introduce una dirección de correo electrónico válida." msgid "The number cannot be lower than" msgstr "El número no puede ser inferior a" msgid "The number cannot be higher than" msgstr "El número no puede ser mayor que" msgid "Leave a review" msgstr "Dejar un comentario" msgid "Submit" msgstr "Entregar" msgid "Update" msgstr "Actualizar" msgid "out of 5" msgstr "de 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Has alcanzado el límite de reseñas que puedes enviar para este artículo." msgid "Log in to leave a review." msgstr "Inicia sesión para dejar una reseña." msgid "Enter a title for your review" msgstr "Ingresa un título para tu reseña" msgid "Enter your review" msgstr "Ingresa tu reseña" msgid "Review criteria" msgstr "Criterios de revisión" msgid "Enter Your Name or Company" msgstr "Introduce tu nombre o empresa" msgid "Submit review" msgstr "Enviar opinión" msgid "Delete" msgstr "Borrar" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Tu respuesta ha sido publicada. Por favor actualice la página para poder verla." msgid "You have not created any posts." msgstr "No has creado ninguna publicación." msgid "The selected post has been successfully deleted." msgstr "La publicación seleccionada se ha eliminado exitosamente." msgid "Rating" msgstr "Clasificación" msgid "Title" msgstr "Título" msgid "Post image" msgstr "Publicar imagen" msgid "Categories" msgstr "Categorias" msgid "Date" msgstr "Fecha" msgid "Source title" msgstr "Título de la fuente" msgid "No rating" msgstr "Sin evaluar" msgid "View" msgstr "Vista" msgid "Publish" msgstr "Publicar" msgid "Add new post" msgstr "Agregar nueva publicación" msgid "Edit post" msgstr "Editar post" msgid "Publish a post" msgstr "Publicar una publicación" msgid "The status for %POST_TITLE% has been changed." msgstr "El estado de %post_title% ha sido cambiado." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "¿Estás seguro de que deseas publicar %post_title%?" msgid "Delete a post" msgstr "Eliminar una publicación" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "¿Estás seguro de que deseas eliminar %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% ha sido movido a la papelera." msgid "You do not hold the required priveleges to execute this request." msgstr "Usted no tiene los privilegios necesarios para ejecutar esta solicitud." msgid "No search results." msgstr "Sin resultados de búsqueda." msgid "Yes" msgstr "Sí" msgid "No" msgstr "No" msgid "Save" msgstr "Ahorrar" msgid "Search for a location" msgstr "Buscar una ubicación" msgid "Address line" msgstr "Dirección" msgid "(Optional)" msgstr "(opcional)" msgid "State" msgstr "Estado" msgid "Country" msgstr "País" msgid "Create new term" msgstr "Crear nuevo término" msgid "Description" msgstr "Descripción" msgid "Delete bookmarks" msgstr "Eliminar marcadores" msgid "Reset your password" msgstr "Restablecer su contraseña" msgid "The password reset key has expired." msgstr "La clave de restablecimiento de contraseña ha caducado." msgid "The password reset key is invalid." msgstr "La clave para restablecer la contraseña no es válida." msgid "New password *" msgstr "Nueva contraseña *" msgid "Repeat new password *" msgstr "Repita la nueva contraseña *" msgid "Save password" msgstr "Guardar contraseña" msgid "Your account has been successfully activated!" msgstr "¡Su cuenta ha sido activada exitosamente!" msgid "Your account has already been activated!" msgstr "¡Tu cuenta ya ha sido activada!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Revise su correo electrónico para ver el enlace de activación correcto. este enlace no es válido." msgid "Account activation" msgstr "Activación de cuenta" msgid "Please enter a new password before proceeding." msgstr "Ingrese una nueva contraseña antes de continuar." msgid "Please confirm the new password before proceeding." msgstr "Confirme la nueva contraseña antes de continuar." msgid "Please make sure that the passwords match." msgstr "Asegúrese de que las contraseñas coincidan." msgid "The password has been reset successfully." msgstr "La contraseña se ha restablecido correctamente." msgid "Manage your billing details." msgstr "Gestionar tus datos de facturación." msgid "Profile picture" msgstr "Foto de perfil" msgid "Remaining publishing rights." msgstr "Restantes derechos de publicación." msgid "The number of articles you have left to publish across different post types." msgstr "La cantidad de artículos que le quedan por publicar en diferentes tipos de publicaciones." msgid "Bank transfer" msgstr "Transferencia bancaria" msgid "Direct Bank Transfer" msgstr "Transferencia bancaria directa" msgid "Canceled" msgstr "Cancelado" msgid "Cycle Interval" msgstr "Intervalo de ciclo" msgid "In order to update this filed, you have to activate your account." msgstr "Para actualizar este archivo, debe activar su cuenta." msgid "Cannot process %s field." msgstr "No se puede procesar el campo %s." msgid "Modified date" msgstr "Fecha de modificación" translation/el.po000064400000134615150211537140010053 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" msgid "View all results" msgstr "Προβολή όλων των αποτελεσμάτων" msgid "No results" msgstr "Κανένα αποτέλεσμα" msgid "Home" msgstr "Αρχική" msgid "CLOSE" msgstr "ΚΛΕΙΣΙΜΟ" msgid "Page" msgstr "Σελίδα" msgid "All" msgstr "Όλα" msgid "By" msgstr "Από" msgid "Load more" msgstr "Φόρτωση περισσοτέρων" msgid "View all posts in" msgstr "Προβολή" msgid "Tags" msgstr "Ετικέτες" msgid "Previous article" msgstr "Προηγούμενο άρθρο" msgid "Next article" msgstr "Επόμενο άρθρο" msgid "Authors" msgstr "Δημιουργοί" msgid "Author" msgstr "Δημιουργός" msgid "RELATED ARTICLES" msgstr "ΠΑΡΟΜΟΙΑ ΑΡΘΡΑ" msgid "MORE FROM AUTHOR" msgstr "ΠΕΡΙΣΣΟΤΕΡΑ ΑΠΟ ΤΟΝ ΔΗΜΙΟΥΡΓΟ" msgid "VIA" msgstr "ΜΕΣΩ" msgid "SOURCE" msgstr "ΠΗΓΗ" msgid "TAGS" msgstr "ΕΤΙΚΕΤΕΣ" msgid "SHARE" msgstr "ΚΟΙΝΟΠΟΙΗΣΗ" msgid "Continue" msgstr "Συνέχεια" msgid "Read more" msgstr "Διαβάστε περισσότερα" msgid "Name:" msgstr "Όνομα:" msgid "Email:" msgstr "Email:" msgid "Website:" msgstr "Ιστοσελίδα:" msgid "Comment:" msgstr "Σχόλιο:" msgid "LEAVE A REPLY" msgstr "ΑΦΗΣΤΕ ΜΙΑ ΑΠΑΝΤΗΣΗ" msgid "Post Comment" msgstr "Δημοσίευση σχολίου" msgid "Cancel reply" msgstr "Ακύρωση απάντησης" msgid "Reply" msgstr "Απάντηση" msgid "Log in to leave a comment" msgstr "Συνδεθείτε για να αφήσετε ένα σχόλιο" msgid "NO COMMENTS" msgstr "ΚΑΝΕΝΑ ΣΧΟΛΙΟ" msgid "1 COMMENT" msgstr "1 ΣΧΟΛΙΟ" msgid "COMMENTS" msgstr "ΣΧΟΛΙΑ" msgid "REVIEW OVERVIEW" msgstr "ΣΥΝΟΨΗ ΚΡΙΤΙΚΗΣ" msgid "SUMMARY" msgstr "ΠΕΡΙΛΗΨΗ" msgid "OVERALL SCORE" msgstr "ΣΥΝΟΛΙΚΗ ΒΑΘΜΟΛΟΓΙΑ" msgid "Ooops... Error 404" msgstr "Ουπς... Σφάλμα 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Συγνώμη, αλλά η σελίδα που ψάχνετε δεν υπάρχει." msgid "You can go to the" msgstr "Μπορείτε να πάτε στην" msgid "HOMEPAGE" msgstr "ΑΡΧΙΚΗ ΣΕΛΙΔΑ" msgid "OUR LATEST POSTS" msgstr "ΟΙ ΤΕΛΕΥΤΑΙΕΣ ΜΑΣ ΔΗΜΟΣΙΕΥΣΕΙΣ" msgid "Posts by" msgstr "Δημοσιεύσεις από" msgid "POSTS" msgstr "ΔΗΜΟΣΙΕΥΣΕΙΣ" msgid "Posts tagged with" msgstr "Δημοσιεύσεις με ετικέτες" msgid "Tag" msgstr "Ετικέτα" msgid "Daily Archives:" msgstr "Ημερήσιο Αρχείο:" msgid "Monthly Archives:" msgstr "Μηνιαίο Αρχείο:" msgid "Yearly Archives:" msgstr "Ετήσιο Αρχείο:" msgid "Archives" msgstr "Αρχείο" msgid "LATEST ARTICLES" msgstr "ΤΕΛΕΥΤΑΙΑ ΑΡΘΡΑ" msgid "search results" msgstr "αποτελέσματα αναζήτησης" msgid "Search" msgstr "Αναζήτηση" msgid "If you're not happy with the results, please do another search" msgstr "Αν δεν είστε ευχαριστημένοι με τα αποτελέσματα, παρακαλούμε πραγματοποιήστε μια άλλη αναζήτηση" msgid "Contact us" msgstr "Επικοινωνία" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Σελίδα %CURRENT_PAGE% από %TOTAL_PAGES%" msgid "Next" msgstr "Επόμενο" msgid "Prev" msgstr "Προηγούμενο" msgid "No results for your search" msgstr "Κανένα αποτέλεσμα για την αναζήτησή σας" msgid "No posts to display" msgstr "Καμία δημοσίευση για προβολή" msgid "LOG IN" msgstr "ΣΥΝΔΕΣΗ" msgid "Sign in / Join" msgstr "Σύνδεση / Εγγραφή" msgid "Log In" msgstr "Σύνδεση" msgid "REGISTER" msgstr "ΕΓΓΡΑΦΗ" msgid "Send My Pass" msgstr "Στείλε τον κωδικό μου" msgid "Forgot your password?" msgstr "Ξεχάσατε τον κωδικό σας;" msgid "Please wait..." msgstr "Παρακαλούμε περιμένετε..." msgid "User or password incorrect!" msgstr "Χρήστης ή κωδικός λανθασμένος!" msgid "Email or username incorrect!" msgstr "Email ή όνομα χρήστη λανθασμένο!" msgid "Email incorrect!" msgstr "Email λανθασμένο!" msgid "User or email already exists!" msgstr "Ο χρήστης ή το email υπάρχει ήδη!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Παρακαλούμε ελέγξτε το email σας (φάκελος εισερχομένων ή spam), ο κωδικός πρόσβασης στάλθηκε εκεί." msgid "Email address not found!" msgstr "Η διεύθυνση email δεν βρέθηκε!" msgid "Your password is reset, check your email." msgstr "Ο κωδικός σας επαναφέρθηκε, ελέγξτε το email σας." msgid "Welcome! Log into your account" msgstr "Καλωσήρθατε! Συνδεθείτε στον λογαριασμό σας" msgid "Register for an account" msgstr "Εγγραφείτε για έναν λογαριασμό" msgid "Recover your password" msgstr "Ανακτήστε τον κωδικό σας" msgid "your username" msgstr "το όνομα χρήστη σας" msgid "your password" msgstr "ο κωδικός πρόσβασης σας" msgid "your email" msgstr "το email σας" msgid "A password will be e-mailed to you." msgstr "Ένας κωδικός πρόσβασης θα σταλθεί με e-mail σε εσάς." msgid "Logout" msgstr "Αποσύνδεση" msgid "Like" msgstr "Κάντε Like" msgid "Fans" msgstr "Υποστηρικτές" msgid "Follow" msgstr "Ακολουθήστε" msgid "Followers" msgstr "Ακόλουθοι" msgid "Subscribe" msgstr "Γίνετε συνδρομητής" msgid "Subscribers" msgstr "Συνδρομητές" msgid "MORE STORIES" msgstr "ΠΕΡΙΣΣΟΤΕΡΑ ΘΕΜΑΤΑ" msgid "Latest" msgstr "Τελευταία" msgid "Featured posts" msgstr "Προτεινόμενες δημοσιεύσεις" msgid "Most popular" msgstr "Τα πιο δημοφιλή" msgid "7 days popular" msgstr "Δημοφιλή 7 ημερών" msgid "By review score" msgstr "Κατά βαθμολογία κριτικής" msgid "Random" msgstr "Τυχαίο" msgid "Trending Now" msgstr "Οι Τάσεις Τώρα" msgid "POPULAR CATEGORY" msgstr "ΔΗΜΟΦΙΛΗ ΚΑΤΗΓΟΡΙΑ" msgid "EVEN MORE NEWS" msgstr "ΑΚΟΜΑ ΠΕΡΙΣΣΟΤΕΡΑ ΝΕΑ" msgid "Previous (Left arrow key)" msgstr "Προηγούμενο (Κουμπί αριστερού βέλους)" msgid "Next (Right arrow key)" msgstr "Επόμενο (Κουμπί δεξιού βέλους)" msgid "%curr% of %total%" msgstr "%curr% από %total%" msgid "The content from %url% could not be loaded." msgstr "Το περιεχόμενο από %url% δεν ήταν δυνατό να φορτωθεί." msgid "The image #%curr% could not be loaded." msgstr "Η εικόνα #%curr% δεν ήταν δυνατό να φορτωθεί." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Κοινοποίηση στο Facebook" msgid "Tweet on Twitter" msgstr "Κάντε Tweet στο Twitter" msgid "EDITOR PICKS" msgstr "ΕΠΙΛΟΓΈΣ ΣΥΝΤΆΚΤΗ" msgid "POPULAR POSTS" msgstr "ΔΗΜΟΦΙΛΗ ΑΡΘΡΑ" msgid "FOLLOW US" msgstr "ΑΚΟΛΟΥΘΗΣΕ ΜΑΣ" msgid "ABOUT US" msgstr "ΣΧΕΤΙΚΆ ΜΕ ΕΜΆΣ" msgid "More" msgstr "περισσότερο" msgid "Featured" msgstr "Προτεινόμενο" msgid "All time popular" msgstr "όλων των εποχών δημοφιλή" msgid "Likes" msgstr "όμοιούς" msgid "Register" msgstr "μητρώο" msgid "of" msgstr "του" msgid "Euro Member Countries" msgstr "χωρών μελών του ευρώ" msgid "Your comment is awaiting moderation" msgstr "Το σχόλιό σας αναμένει εποπτεία" msgid "Follow us on Instagram" msgstr "ακολουθήστε μας στο Instagram" msgid "Back" msgstr "πίσω" msgid "Sign in" msgstr "συνδεθείτε" msgid "Sign up" msgstr "εγγραφή" msgid "Join" msgstr "Συμμετοχή" msgid "Welcome!" msgstr "καλωσόρισμα!" msgid "Log into your account" msgstr "Συνδεθείτε στο λογαριασμό σας" msgid "Password recovery" msgstr "ΑΝΑΚΤΗΣΗ ΚΩΔΙΚΟΥ" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "παρακαλούμε να ελέγξετε το email σας (δείκτη ή του φακέλου spam), ο κωδικός εστάλη εκεί." msgid "Australian Dollar" msgstr "δολάριο Αυστραλίας" msgid "Bulgarian Lev" msgstr "λέβα βουλγαρίας" msgid "Brazilian Real" msgstr "Ρεάλ Βραζιλίας" msgid "Canadian Dollar" msgstr "καναδικό δολάριο" msgid "Swiss Franc" msgstr "ελβετικό φράγκο" msgid "Chinese Yuan Renminbi" msgstr "κινέζικο γιουάν γιουάν" msgid "Czech Republic Koruna" msgstr "κορώνας Τσεχίας Δημοκρατία" msgid "Danish Krone" msgstr "δανική κορώνα" msgid "British Pound" msgstr "Λίρα Αγγλίας" msgid "Hong Kong Dollar" msgstr "δολάριο Χονγκ Κονγκ" msgid "Croatian Kuna" msgstr "κροατικό κούνα" msgid "Hungarian Forint" msgstr "ουγγρικό φιορίνι" msgid "Indonesian Rupiah" msgstr "ινδονησιακή ρουπία" msgid "Israeli Shekel" msgstr "σέκελ Ισραήλ" msgid "Indian Rupee" msgstr "ινδική ρουπία" msgid "Japanese Yen" msgstr "γιεν Ιαπωνίας" msgid "Korean (South) Won" msgstr "κορεάτικα (νότια) γουόν" msgid "Mexican Peso" msgstr "πέσο Μεξικού" msgid "Malaysian Ringgit" msgstr "Μαλαισίας ρίνγκιτ" msgid "Norwegian Krone" msgstr "νορβηγική κορόνα" msgid "New Zealand Dollar" msgstr "Δολάριο Νέας Ζηλανδίας" msgid "Philippine Peso" msgstr "Φιλιππίνων πέσο" msgid "Polish Zloty" msgstr "ζλότυ Πολωνίας" msgid "Romanian (New) Leu" msgstr "Ρουμανικά (νέα) leu" msgid "Russian Ruble" msgstr "ρωσικό ρούβλι" msgid "Swedish Krona" msgstr "σουηδική κορώνα" msgid "Singapore Dollar" msgstr "δολάριο Σιγκαπούρης" msgid "Thai Baht" msgstr "ταϊλανδικό μπατ" msgid "Turkish Lira" msgstr "τουρκική λίρα" msgid "United States Dollar" msgstr "Δολάριο ΗΠΑ" msgid "South African Rand" msgstr "Ραντ Νότιας Αφρικής" msgid "Privacy Policy" msgstr "πολιτική απορρήτου" msgid "views" msgstr "προβολές" msgid "Modified date:" msgstr "τροποποιημένη ημερομηνία:" msgid "Please enter your name here" msgstr "παρακαλώ εισάγετε το όνομά σας εδώ" msgid "Please enter your email address here" msgstr "παρακαλώ εισάγετε εδώ την ηλεκτρονική σας διεύθυνση" msgid "You have entered an incorrect email address!" msgstr "έχετε εισάγει εσφαλμένη διεύθυνση ηλεκτρονικού ταχυδρομείου!" msgid "Please enter your comment!" msgstr "εισάγετε το σχόλιό σας!" msgid "Logged in as" msgstr "Συνδεδεμένος ως" msgid "Log out?" msgstr "Αποσυνδέση?" msgid "Logged in as %s. Edit your profile." msgstr "συνδεθήκατε ως% s. επεξεργασία του προφίλ σας." msgid "Edit" msgstr "επεξεργασία" msgid "Login" msgstr "Σύνδεση" msgid "Send My Password" msgstr "στείλτε τον κωδικό μου" msgid "Create an account" msgstr "δημιουργία λογαριασμού" msgid "Welcome! Register for an account" msgstr "καλως ΗΡΘΑΤΕ! εγγραφείτε για λογαριασμό" msgid "About me" msgstr "σχετικά με μένα" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "αποθηκεύστε το όνομα, το ηλεκτρονικό ταχυδρομείο και τον ιστότοπό μου σε αυτό το πρόγραμμα περιήγησης για την επόμενη φορά που θα σχολιάσω." msgid "Orders" msgstr "παραγγελίες" msgid "Addresses" msgstr "διευθύνσεις" msgid "Account settings" msgstr "ρυθμίσεις λογαριασμού" msgid "Hello" msgstr "γεια σας" msgid "No products in the cart." msgstr "Δεν υπάρχουν προϊόντα στο καλάθι." msgid "Product categories" msgstr "κατηγορίες προϊόντων" msgid "Product tags" msgstr "ετικέτες προϊόντων" msgid "Success" msgstr "επιτυχία" msgid "Acknowledgment is required!" msgstr "απαιτείται αναγνώριση!" msgid "Please fill in a valid email." msgstr "συμπληρώστε ένα έγκυρο email." msgid "Please fill in an email address." msgstr "συμπληρώστε μια διεύθυνση email." msgid "Get into your account." msgstr "μπείτε στον λογαριασμό σας." msgid "My subscription account" msgstr "τον λογαριασμό συνδρομής μου" msgid "Account details" msgstr "λεπτομέρειες λογαριασμού" msgid "Subscriptions" msgstr "συνδρομές" msgid "My woo account" msgstr "ο λογαριασμός μου στο woo" msgid "Log out" msgstr "Αποσύνδεση" msgid "Email address" msgstr "διεύθυνση ηλεκτρονικού ταχυδρομείου" msgid "Username" msgstr "όνομα χρήστη" msgid "Password" msgstr "Κωδικός πρόσβασης" msgid "must contain at least one lower case (a..z)" msgstr "πρέπει να περιέχει τουλάχιστον ένα πεζό (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "πρέπει να περιέχει τουλάχιστον ένα κεφαλαίο (a..z)" msgid "must contain at least 6 characters in length" msgstr "πρέπει να περιέχει τουλάχιστον 6 χαρακτήρες σε μήκος" msgid "Repeat password" msgstr "επανάληψη κωδικού πρόσβασης" msgid "Already have an account?" msgstr "Έχετε ήδη λογαριασμό?" msgid "Recover password" msgstr "ανάκτηση κωδικού πρόσβασης" msgid "Username or Email address" msgstr "Όνομα χρήστη ή διεύθυνση ηλεκτρονικού ταχυδρομείου" msgid "Forgot password?" msgstr "Ξεχάσατε τον κωδικό?" msgid "Don't have an account?" msgstr "δεν έχεις λογαριασμό;" msgid "Dashboard" msgstr "ταμπλό" msgid "Welcome to your account!" msgstr "καλώς ορίσατε στον λογαριασμό σας!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "γεια %1$s (όχι %2$s; %3$s)! από τον πίνακα ελέγχου του λογαριασμού σας μπορείτε να δείτε τις συνδρομές σας και να διαχειριστείτε τα στοιχεία του λογαριασμού σας." msgid "Lost Password" msgstr "χαμένος κωδικός" msgid "Manage your account details." msgstr "διαχειριστείτε τα στοιχεία του λογαριασμού σας." msgid "First name" msgstr "όνομα" msgid "Last name" msgstr "επίθετο" msgid "Display name" msgstr "εμφανιζόμενο όνομα" msgid "Current password" msgstr "τρέχον κωδικό πρόσβασης" msgid "(leave blank to leave unchanged)" msgstr "(αφήστε κενό για να αφήσετε αμετάβλητο)" msgid "New password" msgstr "Νέος Κωδικός" msgid "Confirm new password" msgstr "Επιβεβαιώστε τον καινούριο σας κωδικό" msgid "Save changes" msgstr "αποθήκευσε τις αλλαγές" msgid "All your subscriptions." msgstr "όλες τις συνδρομές σας." msgid "Plan" msgstr "σχέδιο" msgid "Payment type" msgstr "τρόπος πληρωμής" msgid "Status" msgstr "κατάσταση" msgid "Months" msgstr "μήνες" msgid "Start date" msgstr "ημερομηνία έναρξης" msgid "End date" msgstr "ημερομηνία λήξης" msgid "missing plan" msgstr "σχέδιο που λείπει" msgid "Free" msgstr "Ελεύθερος" msgid "Active" msgstr "ενεργός" msgid "Trial" msgstr "δίκη" msgid "Blocked" msgstr "μπλοκαριστεί" msgid "Closed" msgstr "κλειστό" msgid "Not paid" msgstr "απληρωτος" msgid "Awaiting payment" msgstr "Εν αναμονή πληρωμής" msgid "Subscription info" msgstr "πληροφορίες συνδρομής" msgid "ID" msgstr "ΤΑΥΤΌΤΗΤΑ" msgid "Name" msgstr "όνομα" msgid "Company name" msgstr "Όνομα εταιρείας" msgid "VAT" msgstr "ΔΕΞΑΜΕΝΉ" msgid "Address" msgstr "διεύθυνση" msgid "City" msgstr "πόλη" msgid "Country/State" msgstr "χώρα/κράτος" msgid "Email" msgstr "ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ" msgid "Postal code" msgstr "Ταχυδρομικός Κώδικας" msgid "Direct bank transfer details" msgstr "στοιχεία απευθείας τραπεζικής μεταφοράς" msgid "Account name" msgstr "όνομα λογαριασμού" msgid "Account number" msgstr "αριθμός λογαριασμού" msgid "Bank name" msgstr "όνομα τράπεζας" msgid "Routing number" msgstr "αριθμός δρομολόγησης" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "οδηγίες" msgid "No subscription created." msgstr "δεν δημιουργήθηκε συνδρομή." msgid "Choose plan" msgstr "επιλέξτε σχέδιο" msgid "Payment methods" msgstr "μέθοδοι πληρωμής" msgid "Total" msgstr "σύνολο" msgid "Period" msgstr "περίοδος" msgid "Subscription summary" msgstr "περίληψη συνδρομής" msgid "Phone" msgstr "τηλέφωνο" msgid "Postcode" msgstr "ΤΑΧΥΔΡΟΜΙΚΟΣ ΚΩΔΙΚΟΣ" msgid "County" msgstr "κομητεία" msgid "Town/City" msgstr "πόλη/πόλη" msgid "Street address" msgstr "διεύθυνση" msgid "Country/Region" msgstr "χώρα/περιοχή" msgid "VAT Number" msgstr "αριθμός ΦΠΑ" msgid "(optional)" msgstr "(προαιρετικός)" msgid "Billing details" msgstr "λεπτομέρειες χρέωσης" msgid "User information" msgstr "Πληροφορίες χρήστη" msgid "It seems that no available payment methods have been configured." msgstr "φαίνεται ότι δεν έχουν διαμορφωθεί διαθέσιμες μέθοδοι πληρωμής." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "σας ευχαριστώ! χαιρόμαστε που σας βλέπουμε εδώ. η συνδρομή σας θα ενεργοποιηθεί σύντομα!" msgid "Our bank details" msgstr "τραπεζικά στοιχεία μας" msgid "Your subscription details" msgstr "τα στοιχεία της συνδρομής σας" msgid "View subscription" msgstr "προβολή συνδρομής" msgid "You have not selected a valid subscription plan." msgstr "δεν έχετε επιλέξει έγκυρο πρόγραμμα συνδρομής." msgid "Field empty" msgstr "πεδίο κενό" msgid "Empty first name" msgstr "κενό όνομα" msgid "Empty last name" msgstr "κενό επώνυμο" msgid "Empty country" msgstr "άδεια χώρα" msgid "Empty address" msgstr "κενή διεύθυνση" msgid "Empty city" msgstr "άδεια πόλη" msgid "Empty county" msgstr "άδεια κομητεία" msgid "Empty postcode" msgstr "κενός ταχυδρομικός κώδικας" msgid "Empty phone" msgstr "άδειο τηλέφωνο" msgid "Empty email" msgstr "κενό email" msgid "Email or username empty!" msgstr "κενό email ή όνομα χρήστη!" msgid "Pass empty!" msgstr "περάστε άδεια!" msgid "Username incorrect!" msgstr "όνομα χρήστη λάθος!" msgid "Invalid Pass Pattern!" msgstr "μη έγκυρο μοτίβο πάσας!" msgid "Please activate your account by following the link sent to your email address." msgstr "παρακαλούμε ενεργοποιήστε τον λογαριασμό σας ακολουθώντας τον σύνδεσμο που αποστέλλεται στη διεύθυνση email σας." msgid "Resend activation link" msgstr "επανάληψη αποστολής συνδέσμου ενεργοποίησης" msgid "In order to have access to this section, you have to activate your account." msgstr "Για να έχετε πρόσβαση σε αυτήν την ενότητα, πρέπει να ενεργοποιήσετε τον λογαριασμό σας." msgid "Email empty!" msgstr "το email άδειο!" msgid "Username empty!" msgstr "το όνομα χρήστη κενό!" msgid "Pass pattern incorrect!" msgstr "μοτίβο πέρασμα λάθος!" msgid "Retyped pass empty!" msgstr "ξαναπληκτρολογήθηκε άδεια!" msgid "Retyped pass exactly!" msgstr "ξαναπληκτρολόγησε το πάσο ακριβώς!" msgid "User already exists!" msgstr "ο χρήστης υπάρχει ήδη!" msgid "Email already exists!" msgstr "Το email υπάρχει ήδη!" msgid "Your account could not be created." msgstr "δεν ήταν δυνατή η δημιουργία του λογαριασμού σας." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "ελέγξτε το email σας (εισερχόμενα ή φάκελο ανεπιθύμητης αλληλογραφίας) για να επικυρώσετε τον λογαριασμό σας." msgid "User empty!" msgstr "άδειος χρήστης!" msgid "User does not exists!" msgstr "χρήστης δεν υπάρχει!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "δημιουργήθηκε νέος σύνδεσμος ενεργοποίησης. ελέγξτε το email σας (εισερχόμενα ή φάκελο ανεπιθύμητης αλληλογραφίας) για να επικυρώσετε τον λογαριασμό σας." msgid "CAPTCHA verification failed!" msgstr "Η επαλήθευση captcha απέτυχε!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Η βαθμολογία χρήστη captcha απέτυχε. Παρακαλώ επικοινωνήστε μαζί μας!" msgid "Loading" msgstr "φόρτωση" msgid "Here are the results for the search:" msgstr "εδώ είναι τα αποτελέσματα για την αναζήτηση:" msgid "Price" msgstr "τιμή" msgid "EXCLUSIVE" msgstr "ΑΠΟΚΛΕΙΣΤΙΚΌΣ" msgid "Tel:" msgstr "τηλ:" msgid "Share" msgstr "μερίδιο" msgid "Print" msgstr "Τυπώνω" msgid "At" msgstr "στο" msgid "Comments are closed." msgstr "τα σχόλια είναι κλειδωμένα." msgid "Payment method" msgstr "μέθοδος πληρωμής" msgid "You must be logged out to view this page." msgstr "πρέπει να αποσυνδεθείτε για να δείτε αυτή τη σελίδα." msgid "Retyped Pass incorrect!" msgstr "πληκτρολογήθηκε ξανά λάθος!" msgid "%s is a required field." msgstr "Το %s είναι υποχρεωτικό πεδίο." msgid "Please provide a valid email address." msgstr "δώστε μια έγκυρη διεύθυνση email." msgid "This email address is already registered." msgstr "αυτή η διεύθυνση email είναι ήδη εγγεγραμμένη." msgid "Please fill out all password fields." msgstr "συμπληρώστε όλα τα πεδία κωδικού πρόσβασης." msgid "Please enter your current password." msgstr "παρακαλώ εισάγετε τον τρέχοντα κωδικό πρόσβασής σας." msgid "Please re-enter your password." msgstr "Παρακαλώ εισάγετε ξανά τον κωδικό πρόσβασής σας." msgid "New passwords do not match." msgstr "οι νέοι κωδικοί πρόσβασης δεν ταιριάζουν." msgid "Your current password is incorrect." msgstr "Ο τρέχων κωδικός πρόσβασής σας είναι λανθασμένος." msgid "Account details changed successfully." msgstr "τα στοιχεία λογαριασμού άλλαξαν με επιτυχία." msgid "A new activation link has been sent to your email address!" msgstr "ένας νέος σύνδεσμος ενεργοποίησης έχει σταλεί στη διεύθυνση email σας!" msgid "unlimited" msgstr "απεριόριστος" msgid "Pay with Stripe" msgstr "πληρώστε με ρίγα" msgid "Cancel subscription" msgstr "ακύρωση συνδρομής" msgid "Please check your email and confirm subscription!" msgstr "ελέγξτε το email σας και επιβεβαιώστε τη συνδρομή σας!" msgid "Successfully subscribed!" msgstr "εγγράφηκε επιτυχώς!" msgid "Successfully unsubscribed!" msgstr "καταργήθηκε επιτυχώς η εγγραφή!" msgid "Enter promo code here" msgstr "εισάγετε εδώ τον κωδικό προσφοράς" msgid "Apply" msgstr "ισχύουν" msgid "Coupon applied" msgstr "εφαρμόζεται το κουπόνι" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "μη εντοπισμένο σφάλμα: κάτι πήγε στραβά, φορτώστε ξανά τη σελίδα και δοκιμάστε ξανά!" msgid "The coupon code you entered is invalid" msgstr "ο κωδικός κουπονιού που εισαγάγατε δεν είναι έγκυρος" msgid "The coupon code you entered has reached its usage limit" msgstr "ο κωδικός κουπονιού που εισαγάγατε έχει φτάσει το όριο χρήσης του" msgid "The coupon code you entered has expired" msgstr "ο κωδικός κουπονιού που εισαγάγατε έχει λήξει" msgid "Coupon name is required !" msgstr "Το όνομα του κουπονιού είναι υποχρεωτικό!" msgid "Please enter a coupon code first!" msgstr "παρακαλώ εισάγετε πρώτα έναν κωδικό κουπονιού!" msgid "Invalid" msgstr "Μη έγκυρο" msgid "Applied" msgstr "εφαρμοσμένος" msgid "Remove" msgstr "αφαιρώ" msgid "Price not set" msgstr "τιμή δεν έχει καθοριστεί" msgid "Grand Total" msgstr "σύνολο" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "έχετε ήδη μια συνδρομή, αλλά εξακολουθεί να περιμένει να πληρωθεί!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "αυτή η συνδρομή έχει ακυρωθεί και θα λήξει στις %end_date%." msgid "Go to checkout" msgstr "Πηγαίνετε στο ταμείο" msgid "Stripe invoice details" msgstr "λωρίδες λεπτομέρειες τιμολογίου" msgid "Stripe subscription details" msgstr "λεπτομέρειες συνδρομής λωρίδας" msgid "Current status" msgstr "τρέχουσα κατάσταση" msgid "Initial Invoice Paid" msgstr "εξοφλήθηκε το αρχικό τιμολόγιο" msgid "Subscription Create: Initial Invoice Paid" msgstr "δημιουργία συνδρομής: εξόφληση του αρχικού τιμολογίου" msgid "Subscription Create: Initial Invoice has been created" msgstr "δημιουργία συνδρομής: δημιουργήθηκε το αρχικό τιμολόγιο" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "δημιουργία συνδρομής: το αρχικό τιμολόγιο έχει οριστικοποιηθεί και είναι έτοιμο για πληρωμή" msgid "Subscription Update: Invoice Paid" msgstr "ενημέρωση συνδρομής: το τιμολόγιο πληρώθηκε" msgid "Subscription Renew: Invoice Paid" msgstr "ανανέωση συνδρομής: εξοφλήθηκε το τιμολόγιο" msgid "Subscription Renew: Invoice Finalized" msgstr "ανανέωση συνδρομής: το τιμολόγιο οριστικοποιήθηκε" msgid "Subscription Renew: Invoice Created" msgstr "ανανέωση συνδρομής: δημιουργήθηκε τιμολόγιο" msgid "Subscription Renew: Invoice Upcoming" msgstr "ανανέωση συνδρομής: προσεχές τιμολόγιο" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "η συνδρομή έληξε: το τιμολόγιο ακυρώθηκε (το πρώτο τιμολόγιο δεν πληρώθηκε)" msgid "Subscription Deleted" msgstr "η συνδρομή διαγράφηκε" msgid "Subscription Create: Trialing" msgstr "συνδρομή δημιουργία: δοκιμαστική" msgid "Subscription Canceled" msgstr "η συνδρομή ακυρώθηκε" msgid "Subscription Create: Initial Invoice voided" msgstr "δημιουργία συνδρομής: το αρχικό τιμολόγιο ακυρώθηκε" msgid "Subscription Renew: Invoice voided" msgstr "ανανέωση συνδρομής: το τιμολόγιο ακυρώθηκε" msgid "Subscription Update: Invoice voided" msgstr "ενημέρωση συνδρομής: το τιμολόγιο ακυρώθηκε" msgid "Invoice updated" msgstr "το τιμολόγιο ενημερώθηκε" msgid "Subscription has been canceled and will end on: " msgstr "η συνδρομή έχει ακυρωθεί και θα λήξει στις:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "επιτυχής εγκατάσταση - ρυθμίσατε με επιτυχία τον τρόπο πληρωμής σας για μελλοντικές πληρωμές." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Η ρύθμιση απέτυχε - λυπούμαστε, παρουσιάστηκε σφάλμα κατά τη ρύθμιση του τρόπου πληρωμής σας. δοκιμάστε ξανά με διαφορετικό τρόπο πληρωμής." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "επιτυχής πληρωμή - η τελευταία πληρωμή της συνδρομής σας ολοκληρώθηκε με επιτυχία." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "επεξεργασία πληρωμών - η τελευταία πληρωμή της συνδρομής σας βρίσκεται υπό επεξεργασία." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "η πληρωμή απέτυχε - λυπούμαστε, παρουσιάστηκε σφάλμα κατά την επεξεργασία της πληρωμής σας. δοκιμάστε ξανά με διαφορετικό τρόπο πληρωμής." msgid "Download" msgstr "Κατεβάστε" msgid "Stripe invoice" msgstr "τιμολόγιο ρίγες" msgid "N/A" msgstr "α/α" msgid "Latest invoice" msgstr "τελευταίο τιμολόγιο" msgid "Invoice" msgstr "τιμολόγιο" msgid "Unpaid subscription." msgstr "απλήρωτη συνδρομή." msgid "Locked subscription." msgstr "κλειδωμένη συνδρομή." msgid "Invalid subscription." msgstr "μη έγκυρη συνδρομή." msgid "Pay now" msgstr "Πλήρωσε τώρα" msgid "Show more info" msgstr "εμφάνιση περισσότερων πληροφοριών" msgid "Show less info" msgstr "εμφάνιση λιγότερων πληροφοριών" msgid "Complete payment" msgstr "πλήρης πληρωμή" msgid "or" msgstr "ή" msgid "Setup Payment" msgstr "πληρωμή ρύθμισης" msgid "Go to Payment" msgstr "πηγαίνετε στην πληρωμή" msgid "Alphabetical A -> Z" msgstr "αλφαβητικό α -> ζ" msgid "Oldest posts" msgstr "παλαιότερες αναρτήσεις" msgid "Select" msgstr "επιλέγω" msgid "on" msgstr "επί" msgid "No bookmarked posts" msgstr "δεν υπάρχουν σελιδοδείκτες αναρτήσεις" msgid "Log in With Facebook" msgstr "Σύνδεση με το Facebook" msgid "Forgot your password? Get help" msgstr "Ξεχάσατε τον κωδικό σας? ζήτα βοήθεια" msgid "Someone has requested a password reset for the following account:" msgstr "κάποιος ζήτησε επαναφορά κωδικού πρόσβασης για τον ακόλουθο λογαριασμό:" msgid "Username: %s" msgstr "όνομα χρήστη: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "αν αυτό ήταν λάθος, απλώς αγνοήστε αυτό το email και δεν θα συμβεί τίποτα." msgid "To reset your password, visit the following address:" msgstr "για να επαναφέρετε τον κωδικό πρόσβασής σας, επισκεφθείτε την ακόλουθη διεύθυνση:" msgid "Members" msgstr "μέλη" msgid "Downloads" msgstr "λήψεις" msgid "inc. TAX" msgstr "Inc. φόρος" msgid "ex. TAX" msgstr "πρώην. φόρος" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Παρουσιάστηκε ένα απροσδόκητο σφάλμα κατά την προσπάθεια δημιουργίας της ανάρτησής σας. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα." msgid "Your post has been successfully created." msgstr "Η ανάρτησή σας δημιουργήθηκε με επιτυχία." msgid "Your post has been successfully updated." msgstr "Η ανάρτησή σας ενημερώθηκε με επιτυχία." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "προέκυψε ένα απροσδόκητο σφάλμα και δεν ήταν δυνατή η αποστολή του μηνύματος." msgid "Location:" msgstr "τοποθεσία:" msgid "The email has been successfully sent." msgstr "το email έχει σταλεί με επιτυχία." msgid "An unexpected error has occurred. Please try again." msgstr "Παρουσιάστηκε μη αναμενόμενο σφάλμα. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα." msgid "Drag and drop or browse" msgstr "μεταφορά και απόθεση ή περιήγηση" msgid "Search by keyword..." msgstr "Αναζήτηση με Λέξη-κλειδί..." msgid "Select parent" msgstr "επιλέξτε γονέα" msgid "Add new" msgstr "προσθεσε νεο" msgid "Parent" msgstr "μητρική εταιρεία" msgid "Select child" msgstr "επιλεγμένο παιδί" msgid "Select sub-child" msgstr "επιλέξτε υπο-παιδί" msgid "Posted by" msgstr "αναρτήθηκε από" msgid "Overall" msgstr "Συνολικά" msgid "Post review" msgstr "μετά την αξιολόγηση" msgid "This field is required!" msgstr "αυτό το πεδίο είναι υποχρεωτικό!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Η κριτική σας έχει δημοσιευθεί. ανανεώστε τη σελίδα για να τη δείτε." msgid "Your review has been registered and is awaiting approval." msgstr "Η κριτική σας έχει καταχωρηθεί και αναμένει έγκριση." msgid "Submit reply" msgstr "υποβάλετε απάντηση" msgid "Enter your reply" msgstr "εισάγετε την απάντησή σας" msgid "Cancel" msgstr "Ματαίωση" msgid "Some required fields have been left blank." msgstr "ορισμένα υποχρεωτικά πεδία έχουν μείνει κενά." msgid "Please enter a valid email address." msgstr "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου." msgid "The number cannot be lower than" msgstr "ο αριθμός δεν μπορεί να είναι μικρότερος από" msgid "The number cannot be higher than" msgstr "ο αριθμός δεν μπορεί να είναι μεγαλύτερος από" msgid "Leave a review" msgstr "αφήστε μια κριτική" msgid "Submit" msgstr "υποβάλλουν" msgid "Update" msgstr "εκσυγχρονίζω" msgid "out of 5" msgstr "απο 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "έχετε συμπληρώσει το όριο των κριτικών που μπορείτε να υποβάλετε για αυτό το άρθρο" msgid "Log in to leave a review." msgstr "συνδεθείτε για να αφήσετε μια κριτική." msgid "Enter a title for your review" msgstr "εισάγετε έναν τίτλο για την κριτική σας" msgid "Enter your review" msgstr "εισάγετε την κριτική σας" msgid "Review criteria" msgstr "κριτήρια αναθεώρησης" msgid "Enter Your Name or Company" msgstr "εισάγετε το όνομα ή την εταιρεία σας" msgid "Submit review" msgstr "υποβάλετε κριτική" msgid "Delete" msgstr "διαγράφω" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "η απάντησή σας έχει δημοσιευτεί. ανανεώστε τη σελίδα για να τη δείτε." msgid "You have not created any posts." msgstr "δεν έχετε δημιουργήσει καμία ανάρτηση." msgid "The selected post has been successfully deleted." msgstr "η επιλεγμένη ανάρτηση διαγράφηκε επιτυχώς." msgid "Rating" msgstr "εκτίμηση" msgid "Title" msgstr "τίτλος" msgid "Post image" msgstr "ανάρτηση εικόνας" msgid "Categories" msgstr "κατηγορίες" msgid "Date" msgstr "ημερομηνία" msgid "Source title" msgstr "τίτλος πηγής" msgid "No rating" msgstr "καμία βαθμολογία" msgid "View" msgstr "θέα" msgid "Publish" msgstr "δημοσιεύω" msgid "Add new post" msgstr "προσθήκη νέας ανάρτησης" msgid "Edit post" msgstr "επεξεργασία ανάρτησης" msgid "Publish a post" msgstr "δημοσιεύσετε μια ανάρτηση" msgid "The status for %POST_TITLE% has been changed." msgstr "η κατάσταση για το %post_title% έχει αλλάξει." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Είστε βέβαιοι ότι θέλετε να δημοσιεύσετε το %post_title%;" msgid "Delete a post" msgstr "διαγράψτε μια ανάρτηση" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε το %post_title%;" msgid "%POST_TITLE% has been moved to trash." msgstr "Το %post_title% έχει μετακινηθεί στον κάδο απορριμμάτων." msgid "You do not hold the required priveleges to execute this request." msgstr "δεν διαθέτετε τα απαιτούμενα προνόμια για να εκτελέσετε αυτό το αίτημα." msgid "No search results." msgstr "κανένα αποτέλεσμα αναζήτησης." msgid "Yes" msgstr "Ναί" msgid "No" msgstr "όχι" msgid "Save" msgstr "αποθηκεύσετε" msgid "Search for a location" msgstr "αναζήτηση τοποθεσίας" msgid "Address line" msgstr "γραμμή διεύθυνσης" msgid "(Optional)" msgstr "(προαιρετικός)" msgid "State" msgstr "κατάσταση" msgid "Country" msgstr "Χώρα" msgid "Create new term" msgstr "δημιουργία νέου όρου" msgid "Description" msgstr "περιγραφή" msgid "Delete bookmarks" msgstr "διαγραφή σελιδοδεικτών" msgid "Reset your password" msgstr "Επαναφορά του κωδικού πρόσβασής σας" msgid "The password reset key has expired." msgstr "το κλειδί επαναφοράς κωδικού πρόσβασης έχει λήξει." msgid "The password reset key is invalid." msgstr "το κλειδί επαναφοράς κωδικού πρόσβασης δεν είναι έγκυρο." msgid "New password *" msgstr "Νέος Κωδικός *" msgid "Repeat new password *" msgstr "επανάληψη νέου κωδικού πρόσβασης *" msgid "Save password" msgstr "αποθήκευση κωδικού" msgid "Your account has been successfully activated!" msgstr "ο λογαριασμός σας ενεργοποιήθηκε με επιτυχία!" msgid "Your account has already been activated!" msgstr "Ο λογαριασμός σου έχει ήδη ενεργοποιηθεί!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "ελέγξτε το email σας για τον σωστό σύνδεσμο ενεργοποίησης. αυτός ο σύνδεσμος δεν είναι έγκυρος." msgid "Account activation" msgstr "Ενεργοποίηση Λογαριασμού" msgid "Please enter a new password before proceeding." msgstr "εισάγετε έναν νέο κωδικό πρόσβασης πριν συνεχίσετε." msgid "Please confirm the new password before proceeding." msgstr "επιβεβαιώστε τον νέο κωδικό πρόσβασης πριν συνεχίσετε." msgid "Please make sure that the passwords match." msgstr "βεβαιωθείτε ότι οι κωδικοί πρόσβασης ταιριάζουν." msgid "The password has been reset successfully." msgstr "ο κωδικός πρόσβασης επαναφέρθηκε με επιτυχία." msgid "Manage your billing details." msgstr "διαχειριστείτε τα στοιχεία χρέωσής σας." msgid "Profile picture" msgstr "εικόνα προφίλ" msgid "Remaining publishing rights." msgstr "εναπομένοντα δικαιώματα δημοσίευσης." msgid "The number of articles you have left to publish across different post types." msgstr "τον αριθμό των άρθρων που έχετε απομείνει για δημοσίευση σε διαφορετικούς τύπους αναρτήσεων." msgid "Bank transfer" msgstr "τραπεζική μεταφορά" msgid "Direct Bank Transfer" msgstr "απευθείας τραπεζική μεταφορά" msgid "Canceled" msgstr "ακυρώθηκε" msgid "Cycle Interval" msgstr "μεσοδιάστημα κύκλου" msgid "In order to update this filed, you have to activate your account." msgstr "Για να ενημερώσετε αυτό το αρχείο, πρέπει να ενεργοποιήσετε τον λογαριασμό σας." msgid "Cannot process %s field." msgstr "δεν είναι δυνατή η επεξεργασία του πεδίου %s." msgid "Modified date" msgstr "τροποποιημένη ημερομηνία" translation/pl_PL.po000064400000105536150211537140010461 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" msgid "View all results" msgstr "Pokaż wszystkie wyniki" msgid "No results" msgstr "Brak wyników" msgid "Home" msgstr "Strona główna" msgid "CLOSE" msgstr "ZAMKNIJ" msgid "Page" msgstr "Strona" msgid "All" msgstr "Wszystko" msgid "By" msgstr "Przez" msgid "Load more" msgstr "Załaduj więcej" msgid "View all posts in" msgstr "Zobacz wszystkie wiadomości" msgid "Tags" msgstr "Tagi" msgid "Previous article" msgstr "Poprzedni artykuł" msgid "Next article" msgstr "Następny artykuł" msgid "Authors" msgstr "Autorzy" msgid "Author" msgstr "Autor" msgid "RELATED ARTICLES" msgstr "PODOBNE ARTYKUŁY" msgid "MORE FROM AUTHOR" msgstr "WIĘCEJ OD AUTORA" msgid "VIA" msgstr "PRZEZ" msgid "SOURCE" msgstr "ŹRÓDŁO" msgid "TAGS" msgstr "TAGI" msgid "SHARE" msgstr "UDOSTĘPNIJ" msgid "Continue" msgstr "Kontynuuj" msgid "Read more" msgstr "Więcej" msgid "Name:" msgstr "Nazwa:" msgid "Email:" msgstr "E-mail:" msgid "Website:" msgstr "Strona Internetowa:" msgid "Comment:" msgstr "Komentarz:" msgid "LEAVE A REPLY" msgstr "ZOSTAW ODPOWIEDŹ" msgid "Post Comment" msgstr "Dodaj komentarz" msgid "Cancel reply" msgstr "Anuluj odpowiedź" msgid "Reply" msgstr "Odpowiedz" msgid "Log in to leave a comment" msgstr "Zaloguj się, aby dodać komentarz" msgid "NO COMMENTS" msgstr "BRAK KOMENTARZY" msgid "1 COMMENT" msgstr "1 KOMENTARZ" msgid "COMMENTS" msgstr "KOMENTARZE" msgid "REVIEW OVERVIEW" msgstr "PRZEGLĄD RECENZJI" msgid "SUMMARY" msgstr "PODSUMOWANIE" msgid "OVERALL SCORE" msgstr "WYNIK OGÓLNY" msgid "Ooops... Error 404" msgstr "Uuuups ... Błąd 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Przepraszamy, ale strona, której szukasz nie istnieje." msgid "You can go to the" msgstr "Możesz przejść do" msgid "HOMEPAGE" msgstr "STRONA GŁÓWNA" msgid "OUR LATEST POSTS" msgstr "NASZE NAJNOWSZE WPISY" msgid "Posts by" msgstr "Posty przez" msgid "POSTS" msgstr "POSTY" msgid "Posts tagged with" msgstr "Wiadomości z tagiem" msgid "Tag" msgstr "Tag" msgid "Daily Archives:" msgstr "Dzienne Archiwum:" msgid "Monthly Archives:" msgstr "Miesięczne Archiwum:" msgid "Yearly Archives:" msgstr "Roczne Archiwum:" msgid "Archives" msgstr "Archiwa" msgid "LATEST ARTICLES" msgstr "NAJNOWSZE ARTYKUŁY" msgid "search results" msgstr "wyniki wyszukiwania" msgid "Search" msgstr "Wyszukiwanie" msgid "If you're not happy with the results, please do another search" msgstr "Jeśli nie jesteś zadowolony z wyników, należy ponownie uruchomić wyszukiwanie" msgid "Contact us" msgstr "Napisz do nas" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Strona %CURRENT_PAGE% z %TOTAL_PAGES%" msgid "Next" msgstr "Następny" msgid "Prev" msgstr "Poprzedni" msgid "No results for your search" msgstr "Brak wyników dla Twojego wyszukiwania" msgid "No posts to display" msgstr "Brak postów do wyświetlenia" msgid "LOG IN" msgstr "ZALOGUJ SIĘ" msgid "Sign in / Join" msgstr "Zaloguj się / Dołącz" msgid "Log In" msgstr "Zaloguj się" msgid "REGISTER" msgstr "ZAREJESTRUJ SIĘ" msgid "Send My Pass" msgstr "Wyślij Moją Przepustkę" msgid "Forgot your password?" msgstr "Nie pamiętasz hasła?" msgid "Please wait..." msgstr "Proszę czekać ..." msgid "User or password incorrect!" msgstr "Użytkownik lub hasło niepoprawne!" msgid "Email or username incorrect!" msgstr "E-mail lub nazwa użytkownika jest niepoprawna!" msgid "Email incorrect!" msgstr "E-mail niepoprawny!" msgid "User or email already exists!" msgstr "Użytkownik lub adres e-mail już istnieje!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Proszę sprawdź swój e-mail (indeks lub folder spam), hasło zostało tam wysłane." msgid "Email address not found!" msgstr "Adres e-mail nie został znaleziony!" msgid "Your password is reset, check your email." msgstr "Twoje hasło jest resetowane, sprawdź swój e-mail." msgid "Welcome! Log into your account" msgstr "Witamy! Zaloguj się na swoje konto" msgid "Register for an account" msgstr "Zarejestruj konto" msgid "Recover your password" msgstr "Odzyskaj swoje hasło" msgid "your username" msgstr "Twoja nazwa użytkownika" msgid "your password" msgstr "Twoje hasło" msgid "your email" msgstr "Twój e-mail" msgid "A password will be e-mailed to you." msgstr "Hasło zostanie wysłane e-mailem." msgid "Logout" msgstr "Wyloguj" msgid "Like" msgstr "Lubię" msgid "Fans" msgstr "Fani" msgid "Follow" msgstr "Obserwuj" msgid "Followers" msgstr "Obserwujący" msgid "Subscribe" msgstr "Subskrybuj" msgid "Subscribers" msgstr "Subskrybujący" msgid "MORE STORIES" msgstr "WIĘCEJ HISTORII" msgid "Latest" msgstr "Najnowsze" msgid "Featured posts" msgstr "Wyróżnione posty" msgid "Most popular" msgstr "Najbardziej popularne" msgid "7 days popular" msgstr "Popularne 7 dni" msgid "By review score" msgstr "Przez wynik przeglądania" msgid "Random" msgstr "Losowe" msgid "Trending Now" msgstr "Na Topie" msgid "POPULAR CATEGORY" msgstr "POPULARNE KATEGORIE" msgid "EVEN MORE NEWS" msgstr "JESZCZE WIĘCEJ WIADOMOŚCI" msgid "Previous (Left arrow key)" msgstr "Poprzedni (Strzałka w lewo)" msgid "Next (Right arrow key)" msgstr "Następny (Strzałka w prawo)" msgid "%curr% of %total%" msgstr "%curr% z %total%" msgid "The content from %url% could not be loaded." msgstr "Zawartość z %url% nie może być załadowana." msgid "The image #%curr% could not be loaded." msgstr "Obraz #%curr% nie może być załadowany." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Podziel się na Facebooku" msgid "Tweet on Twitter" msgstr "Tweet (Ćwierkaj) na Twitterze" msgid "EDITOR PICKS" msgstr "REDAKCJA" msgid "POPULAR POSTS" msgstr "POPULARNE POSTY" msgid "FOLLOW US" msgstr "PODĄŻAJ ZA NAMI" msgid "ABOUT US" msgstr "O NAS" msgid "More" msgstr "Więcej" msgid "Featured" msgstr "Funkcjonalny" msgid "All time popular" msgstr "Cały czas popularne" msgid "Likes" msgstr "Upodobania" msgid "Register" msgstr "Zarejestrować" msgid "of" msgstr "z" msgid "Euro Member Countries" msgstr "Kraje członkowskie strefy euro" msgid "Your comment is awaiting moderation" msgstr "Twój komentarz czeka na moderację jest" msgid "Follow us on Instagram" msgstr "śledź nas na Instagram" msgid "Back" msgstr "Z powrotem" msgid "Sign in" msgstr "Zaloguj" msgid "Sign up" msgstr "Zapisz się" msgid "Join" msgstr "Przyłączyć się" msgid "Welcome!" msgstr "Witamy!" msgid "Log into your account" msgstr "Zaloguj się na swoje konto" msgid "Password recovery" msgstr "Odzyskiwanie hasła" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Proszę sprawdzić pocztę (folder indeksu lub spam), hasło zostało wysłane tam." msgid "Australian Dollar" msgstr "Dolar australijski" msgid "Bulgarian Lev" msgstr "Lew bułgarski" msgid "Brazilian Real" msgstr "Real brazylijski" msgid "Canadian Dollar" msgstr "Dolar kanadyjski" msgid "Swiss Franc" msgstr "Frank szwajcarski" msgid "Chinese Yuan Renminbi" msgstr "Chiński Yuan" msgid "Czech Republic Koruna" msgstr "Republika Czeska korona" msgid "Danish Krone" msgstr "Duńska" msgid "British Pound" msgstr "Funt brytyjski" msgid "Hong Kong Dollar" msgstr "Dolar hongkoński" msgid "Croatian Kuna" msgstr "Kuna chorwacka" msgid "Hungarian Forint" msgstr "Forint węgierski" msgid "Indonesian Rupiah" msgstr "Rupia indonezyjska" msgid "Israeli Shekel" msgstr "Izraelski szekel" msgid "Indian Rupee" msgstr "Rupia indyjska" msgid "Japanese Yen" msgstr "Jen japoński" msgid "Korean (South) Won" msgstr "Koreański (południe) zdobył" msgid "Mexican Peso" msgstr "Peso meksykańskie" msgid "Malaysian Ringgit" msgstr "Malezyjski ringgit" msgid "Norwegian Krone" msgstr "Korona norweska" msgid "New Zealand Dollar" msgstr "Nowa Zelandia dolara" msgid "Philippine Peso" msgstr "Peso filipińskie" msgid "Polish Zloty" msgstr "Polski złoty" msgid "Romanian (New) Leu" msgstr "Rumuński (nowy) leu" msgid "Russian Ruble" msgstr "Rosyjski rubel" msgid "Swedish Krona" msgstr "Korona szwedzka" msgid "Singapore Dollar" msgstr "Dolar singapurski" msgid "Thai Baht" msgstr "Tajski baht" msgid "Turkish Lira" msgstr "Lira turecka" msgid "United States Dollar" msgstr "Dolar amerykański" msgid "South African Rand" msgstr "Rand południowoafrykański" msgid "Privacy Policy" msgstr "Polityka prywatności" msgid "views" msgstr "widoki" msgid "Modified date:" msgstr "Zmieniona data:" msgid "Please enter your name here" msgstr "Proszę podać swoje imię tutaj" msgid "Please enter your email address here" msgstr "Wpisz tutaj swój adres e-mail" msgid "You have entered an incorrect email address!" msgstr "Wpisałeś nieprawidłowy adres e-mail!" msgid "Please enter your comment!" msgstr "Proszę wpisać swój komentarz!" msgid "Logged in as" msgstr "Zalogowany jako" msgid "Log out?" msgstr "Wyloguj?" msgid "Logged in as %s. Edit your profile." msgstr "Zalogowany jako% s. Edytuj swój profil." msgid "Edit" msgstr "Edytować" msgid "Login" msgstr "Zaloguj Się" msgid "Send My Password" msgstr "Wyślij moje hasło" msgid "Create an account" msgstr "Utwórz konto" msgid "Welcome! Register for an account" msgstr "Witamy! zarejestrować konto" msgid "About me" msgstr "O mnie" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Zapisz moje nazwisko, adres e-mail i stronę internetową w tej przeglądarce na następny raz, gdy skomentuję." msgid "Orders" msgstr "Zamówienia" msgid "Addresses" msgstr "Adresy" msgid "Account settings" msgstr "Ustawienia konta" msgid "Hello" msgstr "Witaj" msgid "No products in the cart." msgstr "Brak produktów w koszyku." msgid "Product categories" msgstr "Kategorie produktów" msgid "Product tags" msgstr "Tagi produktów" msgid "Success" msgstr "Powodzenie" msgid "Acknowledgment is required!" msgstr "Wymagane jest potwierdzenie!" msgid "Please fill in a valid email." msgstr "Proszę wypełnić poprawny adres e-mail." msgid "Please fill in an email address." msgstr "Proszę podać adres e-mail." msgid "Get into your account." msgstr "Dostać się na swoje konto." msgid "My subscription account" msgstr "Moje konto abonamentowe" msgid "Account details" msgstr "Szczegóły Konta" msgid "Subscriptions" msgstr "Subskrypcje" msgid "My woo account" msgstr "Moje konto woo" msgid "Log out" msgstr "Wyloguj" msgid "Email address" msgstr "Adres e-mail" msgid "Username" msgstr "Nazwa Użytkownika" msgid "Password" msgstr "Hasło" msgid "must contain at least one lower case (a..z)" msgstr "musi zawierać co najmniej jedną małą literę (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "musi zawierać co najmniej jedną wielką literę (a..z)" msgid "must contain at least 6 characters in length" msgstr "musi zawierać co najmniej 6 znaków długości" msgid "Repeat password" msgstr "Powtórz hasło" msgid "Already have an account?" msgstr "Posiadasz już konto?" msgid "Recover password" msgstr "Odzyskaj hasło" msgid "Username or Email address" msgstr "Nazwa użytkownika lub adres e-mail" msgid "Forgot password?" msgstr "Zapomniałeś hasła?" msgid "Don't have an account?" msgstr "Nie masz konta?" msgid "Dashboard" msgstr "Panel" msgid "Welcome to your account!" msgstr "Witaj na swoim koncie!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Cześć %1$s (nie %2$s? %3$s)! z pulpitu nawigacyjnego konta możesz przeglądać swoje subskrypcje i zarządzać danymi konta." msgid "Lost Password" msgstr "Zgubiłem hasło" msgid "Manage your account details." msgstr "Zarządzać danymi swojego konta." msgid "First name" msgstr "Imię" msgid "Last name" msgstr "Nazwisko" msgid "Display name" msgstr "Wyświetlana nazwa" msgid "Current password" msgstr "Aktualne hasło" msgid "(leave blank to leave unchanged)" msgstr "(pozostaw puste, aby pozostawić bez zmian)" msgid "New password" msgstr "Nowe hasło" msgid "Confirm new password" msgstr "Potwierdź nowe hasło" msgid "Save changes" msgstr "Zapisz zmiany" msgid "All your subscriptions." msgstr "Wszystkie twoje subskrypcje." msgid "Plan" msgstr "Plan" msgid "Payment type" msgstr "Typ płatności" msgid "Status" msgstr "Status" msgid "Months" msgstr "Miesiące" msgid "Start date" msgstr "Data rozpoczęcia" msgid "End date" msgstr "Data zakonczenia" msgid "missing plan" msgstr "brakujący plan" msgid "Free" msgstr "Wolny" msgid "Active" msgstr "Aktywny" msgid "Trial" msgstr "Test" msgid "Blocked" msgstr "Zablokowany" msgid "Closed" msgstr "Zamknięte" msgid "Not paid" msgstr "Niezapłacone" msgid "Awaiting payment" msgstr "Oczekiwanie na zapłatę" msgid "Subscription info" msgstr "Informacje o subskrypcji" msgid "ID" msgstr "ID" msgid "Name" msgstr "Nazwa" msgid "Company name" msgstr "Nazwa firmy" msgid "VAT" msgstr "FAKTURA VAT" msgid "Address" msgstr "Adres" msgid "City" msgstr "Miasto" msgid "Country/State" msgstr "Kraj/stan" msgid "Email" msgstr "E-mail" msgid "Postal code" msgstr "Kod pocztowy" msgid "Direct bank transfer details" msgstr "Dane do bezpośredniego przelewu bankowego" msgid "Account name" msgstr "Nazwa konta" msgid "Account number" msgstr "Numer konta" msgid "Bank name" msgstr "Nazwa banku" msgid "Routing number" msgstr "Numer rozliczeniowy" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bicz/szybki" msgid "Instructions" msgstr "Instrukcje" msgid "No subscription created." msgstr "Nie utworzono subskrypcji." msgid "Choose plan" msgstr "Wybierz plan" msgid "Payment methods" msgstr "Metody Płatności" msgid "Total" msgstr "Całkowity" msgid "Period" msgstr "Kropka" msgid "Subscription summary" msgstr "Podsumowanie subskrypcji" msgid "Phone" msgstr "Telefon" msgid "Postcode" msgstr "Kod pocztowy" msgid "County" msgstr "Hrabstwo" msgid "Town/City" msgstr "Miasto/miasto" msgid "Street address" msgstr "Adres ulicy" msgid "Country/Region" msgstr "Kraj/region" msgid "VAT Number" msgstr "Numer kadzi" msgid "(optional)" msgstr "(opcjonalny)" msgid "Billing details" msgstr "Szczegóły płatności" msgid "User information" msgstr "Informacje o użytkowniku" msgid "It seems that no available payment methods have been configured." msgstr "Wygląda na to, że nie skonfigurowano żadnych dostępnych metod płatności." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Dziękuję Ci! cieszymy się, że Cię tu widzimy. Twoja subskrypcja zostanie wkrótce aktywowana!" msgid "Our bank details" msgstr "Nasze dane bankowe" msgid "Your subscription details" msgstr "Twoje dane subskrypcji" msgid "View subscription" msgstr "Zobacz subskrypcję" msgid "You have not selected a valid subscription plan." msgstr "Nie wybrałeś ważnego planu subskrypcji." msgid "Field empty" msgstr "Pole puste" msgid "Empty first name" msgstr "Puste imię" msgid "Empty last name" msgstr "Puste nazwisko" msgid "Empty country" msgstr "Pusty kraj" msgid "Empty address" msgstr "Pusty adres" msgid "Empty city" msgstr "Puste miasto" msgid "Empty county" msgstr "Puste hrabstwo" msgid "Empty postcode" msgstr "Pusty kod pocztowy" msgid "Empty phone" msgstr "Pusty telefon" msgid "Empty email" msgstr "Pusty e-mail" msgid "Email or username empty!" msgstr "E-mail lub nazwa użytkownika puste!" msgid "Pass empty!" msgstr "Przejść pusty!" msgid "Username incorrect!" msgstr "Nieprawidłowa nazwa użytkownika!" msgid "Invalid Pass Pattern!" msgstr "Nieprawidłowy wzór przepustki!" msgid "Please activate your account by following the link sent to your email address." msgstr "Aktywuj swoje konto, klikając link wysłany na Twój adres e-mail." msgid "Resend activation link" msgstr "Ponownie wyślij link aktywacyjny" msgid "In order to have access to this section, you have to activate your account." msgstr "Aby mieć dostęp do tej sekcji, musisz aktywować swoje konto." msgid "Email empty!" msgstr "E-mail pusty!" msgid "Username empty!" msgstr "Nazwa użytkownika pusta!" msgid "Pass pattern incorrect!" msgstr "Niepoprawny wzór podania!" msgid "Retyped pass empty!" msgstr "Przepisane przepustka jest pusta!" msgid "Retyped pass exactly!" msgstr "Przepisano dokładnie przepustkę!" msgid "User already exists!" msgstr "Użytkownik już istnieje!" msgid "Email already exists!" msgstr "Email już istnieje!" msgid "Your account could not be created." msgstr "Twoje konto nie mogło zostać utworzone." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Sprawdź swoją skrzynkę e-mail (skrzynka odbiorcza lub folder ze spamem), aby zweryfikować swoje konto." msgid "User empty!" msgstr "Użytkownik pusty!" msgid "User does not exists!" msgstr "Użytkownik nie istnieje!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Wygenerowano nowy link aktywacyjny. sprawdź swoją skrzynkę e-mail (skrzynka odbiorcza lub folder ze spamem), aby zweryfikować swoje konto." msgid "CAPTCHA verification failed!" msgstr "Weryfikacja captcha nie powiodła się!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Ocena użytkownika captcha nie powiodła się. proszę skontaktuj się z nami!" msgid "Loading" msgstr "Ładowanie" msgid "Here are the results for the search:" msgstr "Oto wyniki wyszukiwania:" msgid "Price" msgstr "Cena" msgid "EXCLUSIVE" msgstr "EKSKLUZYWNY" msgid "Tel:" msgstr "Tel:" msgid "Share" msgstr "Udział" msgid "Print" msgstr "Wydrukować" msgid "At" msgstr "W" msgid "Comments are closed." msgstr "Możliwość dodawania komentarzy nie jest dostępna." msgid "Payment method" msgstr "Metoda płatności" msgid "You must be logged out to view this page." msgstr "Musisz się wylogować, żeby zobaczyć tę stronę." msgid "Retyped Pass incorrect!" msgstr "Przepisane hasło jest nieprawidłowe!" msgid "%s is a required field." msgstr "%s jest polem wymaganym." msgid "Please provide a valid email address." msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail." msgid "This email address is already registered." msgstr "Ten adres email jest już zarejestrowany." msgid "Please fill out all password fields." msgstr "Proszę wypełnić wszystkie pola hasła." msgid "Please enter your current password." msgstr "Proszę podać swoje aktualne hasło." msgid "Please re-enter your password." msgstr "Wprowadź ponownie swoje hasło." msgid "New passwords do not match." msgstr "Nowe hasła nie są zgodne." msgid "Your current password is incorrect." msgstr "Twoje obecne hasło jest nieprawidłowe." msgid "Account details changed successfully." msgstr "Dane konta zostały pomyślnie zmienione." msgid "A new activation link has been sent to your email address!" msgstr "Nowy link aktywacyjny został wysłany na Twój adres e-mail!" msgid "unlimited" msgstr "Nieograniczony" msgid "Pay with Stripe" msgstr "Zapłać paskiem" msgid "Cancel subscription" msgstr "Anuluj subskrypcje" msgid "Please check your email and confirm subscription!" msgstr "Sprawdź swoją skrzynkę e-mail i potwierdź subskrypcję!" msgid "Successfully subscribed!" msgstr "Pomyślnie zasubskrybowano!" msgid "Successfully unsubscribed!" msgstr "Pomyślnie anulowano subskrypcję!" msgid "Enter promo code here" msgstr "Wpisz tutaj kod promocyjny" msgid "Apply" msgstr "Stosować" msgid "Coupon applied" msgstr "Kupon zastosowany" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Nieprzechwycony błąd: coś poszło nie tak, załaduj stronę ponownie i spróbuj ponownie!" msgid "The coupon code you entered is invalid" msgstr "Wprowadzony kod kuponu jest nieprawidłowy" msgid "The coupon code you entered has reached its usage limit" msgstr "Wprowadzony kod kuponu osiągnął limit wykorzystania" msgid "The coupon code you entered has expired" msgstr "Wprowadzony kod kuponu utracił ważność" msgid "Coupon name is required !" msgstr "Nazwa kuponu jest wymagana!" msgid "Please enter a coupon code first!" msgstr "Najpierw wprowadź kod kuponu!" msgid "Invalid" msgstr "Nieważny" msgid "Applied" msgstr "Stosowany" msgid "Remove" msgstr "Usunąć" msgid "Price not set" msgstr "Cena nie ustalona" msgid "Grand Total" msgstr "Łączna suma" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Masz już subskrypcję, ale nadal oczekuje ona na opłacenie!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Ta subskrypcja została anulowana i zakończy się %end_date%." msgid "Go to checkout" msgstr "Idź do kasy" msgid "Stripe invoice details" msgstr "Szczegóły faktury w paski" msgid "Stripe subscription details" msgstr "Szczegóły subskrypcji pasków" msgid "Current status" msgstr "Aktualny stan" msgid "Initial Invoice Paid" msgstr "Faktura wstępna zapłacona" msgid "Subscription Create: Initial Invoice Paid" msgstr "Utworzenie subskrypcji: faktura wstępna zapłacona" msgid "Subscription Create: Initial Invoice has been created" msgstr "Utworzenie subskrypcji: utworzono fakturę wstępną" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Utworzenie subskrypcji: faktura wstępna została sfinalizowana i jest gotowa do zapłaty" msgid "Subscription Update: Invoice Paid" msgstr "Aktualizacja subskrypcji: faktura zapłacona" msgid "Subscription Renew: Invoice Paid" msgstr "Odnowienie subskrypcji: faktura zapłacona" msgid "Subscription Renew: Invoice Finalized" msgstr "Odnowienie subskrypcji: faktura sfinalizowana" msgid "Subscription Renew: Invoice Created" msgstr "Odnowienie subskrypcji: utworzono fakturę" msgid "Subscription Renew: Invoice Upcoming" msgstr "Odnowienie subskrypcji: zbliża się faktura" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Subskrypcja wygasła: faktura unieważniona (pierwsza faktura nie została zapłacona)" msgid "Subscription Deleted" msgstr "Subskrypcja usunięta" msgid "Subscription Create: Trialing" msgstr "Tworzenie subskrypcji: wersja próbna" msgid "Subscription Canceled" msgstr "Subskrypcja anulowana" msgid "Subscription Create: Initial Invoice voided" msgstr "Utworzenie subskrypcji: faktura wstępna unieważniona" msgid "Subscription Renew: Invoice voided" msgstr "Odnowienie subskrypcji: faktura unieważniona" msgid "Subscription Update: Invoice voided" msgstr "Aktualizacja subskrypcji: faktura unieważniona" msgid "Invoice updated" msgstr "Faktura zaktualizowana" msgid "Subscription has been canceled and will end on: " msgstr "Subskrypcja została anulowana i zakończy się:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Konfiguracja powiodła się - pomyślnie skonfigurowałeś metodę płatności dla przyszłych płatności." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Konfiguracja nie powiodła się - przepraszamy, wystąpił błąd podczas konfigurowania Twojej metody płatności. spróbuj ponownie, używając innej metody płatności." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Płatność powiodła się - Twoja ostatnia płatność za subskrypcję została pomyślnie zrealizowana." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Przetwarzanie płatności - Twoja ostatnia płatność za subskrypcję jest przetwarzana." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Płatność nie powiodła się - przepraszamy, wystąpił błąd podczas przetwarzania Twojej płatności. spróbuj ponownie, używając innej metody płatności." msgid "Download" msgstr "Pobierać" msgid "Stripe invoice" msgstr "Faktura w paski" msgid "N/A" msgstr "Nie dotyczy" msgid "Latest invoice" msgstr "Ostatnia faktura" msgid "Invoice" msgstr "Faktura" msgid "Unpaid subscription." msgstr "Nieopłacony abonament." msgid "Locked subscription." msgstr "Zablokowana subskrypcja." msgid "Invalid subscription." msgstr "Nieważna subskrypcja." msgid "Pay now" msgstr "Zapłać teraz" msgid "Show more info" msgstr "Pokaż więcej informacji" msgid "Show less info" msgstr "Pokaż mniej informacji" msgid "Complete payment" msgstr "Pełna płatność" msgid "or" msgstr "Lub" msgid "Setup Payment" msgstr "Skonfigurować płatność" msgid "Go to Payment" msgstr "Przejdź do płatności" msgid "Alphabetical A -> Z" msgstr "Alfabetyczne a -> z" msgid "Oldest posts" msgstr "Najstarsze posty" msgid "Select" msgstr "Wybierać" msgid "on" msgstr "NA" msgid "No bookmarked posts" msgstr "Brak postów z zakładkami" msgid "Log in With Facebook" msgstr "Zaloguj się przez facebook" msgid "Forgot your password? Get help" msgstr "Zapomniałeś hasła? sprowadź pomoc" msgid "Someone has requested a password reset for the following account:" msgstr "Ktoś poprosił o zresetowanie hasła do następującego konta:" msgid "Username: %s" msgstr "Nazwa użytkownika: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Jeśli to był błąd, po prostu zignoruj tego e-maila i nic się nie stanie." msgid "To reset your password, visit the following address:" msgstr "Aby zresetować hasło, odwiedź następujący adres:" msgid "Members" msgstr "Członkowie" msgid "Downloads" msgstr "Pliki do pobrania" msgid "inc. TAX" msgstr "Inc. podatek" msgid "ex. TAX" msgstr "były. podatek" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Wystąpił nieoczekiwany błąd podczas próby utworzenia Twojego wpisu. proszę spróbuj ponownie." msgid "Your post has been successfully created." msgstr "Twój post został pomyślnie utworzony." msgid "Your post has been successfully updated." msgstr "Twój post został pomyślnie zaktualizowany." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Wystąpił nieoczekiwany błąd i poczta nie mogła zostać wysłana." msgid "Location:" msgstr "Lokalizacja:" msgid "The email has been successfully sent." msgstr "Wiadomość e-mail została pomyślnie wysłana." msgid "An unexpected error has occurred. Please try again." msgstr "Wystąpił nieoczekiwany błąd. proszę spróbuj ponownie." msgid "Drag and drop or browse" msgstr "Przeciągnij i upuść lub przeglądaj" msgid "Search by keyword..." msgstr "Szukaj według słowa kluczowego..." msgid "Select parent" msgstr "Wybierz rodzica" msgid "Add new" msgstr "Dodaj nowe" msgid "Parent" msgstr "Rodzic" msgid "Select child" msgstr "Wybierz dziecko" msgid "Select sub-child" msgstr "Wybierz poddziecko" msgid "Posted by" msgstr "Wysłane przez" msgid "Overall" msgstr "Ogólnie" msgid "Post review" msgstr "Opublikować recenzję" msgid "This field is required!" msgstr "To pole jest wymagane!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Twoja recenzja została opublikowana. odśwież stronę, aby ją zobaczyć." msgid "Your review has been registered and is awaiting approval." msgstr "Twoja recenzja została zarejestrowana i oczekuje na zatwierdzenie." msgid "Submit reply" msgstr "Wysłać odpowiedź" msgid "Enter your reply" msgstr "Wpisz swoją odpowiedź" msgid "Cancel" msgstr "Anulować" msgid "Some required fields have been left blank." msgstr "Niektóre wymagane pola pozostawiono puste." msgid "Please enter a valid email address." msgstr "Proszę wpisać aktualny adres e-mail." msgid "The number cannot be lower than" msgstr "Liczba nie może być niższa niż" msgid "The number cannot be higher than" msgstr "Liczba nie może być wyższa niż" msgid "Leave a review" msgstr "Zostaw recenzję" msgid "Submit" msgstr "Składać" msgid "Update" msgstr "Aktualizacja" msgid "out of 5" msgstr "z 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Osiągnąłeś limit recenzji, które możesz przesłać dla tego artykułu" msgid "Log in to leave a review." msgstr "Zaloguj się, żeby zostawić recenzję." msgid "Enter a title for your review" msgstr "Wprowadź tytuł swojej recenzji" msgid "Enter your review" msgstr "Wpisz swoją recenzję" msgid "Review criteria" msgstr "Kryteria przeglądu" msgid "Enter Your Name or Company" msgstr "Wpisz swoje imię i nazwisko lub firmę" msgid "Submit review" msgstr "Dodaj recenzję" msgid "Delete" msgstr "Usuwać" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Twoja odpowiedź została opublikowana. odśwież stronę, aby ją zobaczyć." msgid "You have not created any posts." msgstr "Nie utworzyłeś żadnych postów." msgid "The selected post has been successfully deleted." msgstr "Wybrany post został pomyślnie usunięty." msgid "Rating" msgstr "Ocena" msgid "Title" msgstr "Tytuł" msgid "Post image" msgstr "Opublikuj obraz" msgid "Categories" msgstr "Kategorie" msgid "Date" msgstr "Data" msgid "Source title" msgstr "Tytuł źródłowy" msgid "No rating" msgstr "Brak oceny" msgid "View" msgstr "Pogląd" msgid "Publish" msgstr "Publikować" msgid "Add new post" msgstr "Dodaj nowy post" msgid "Edit post" msgstr "Edytuj post" msgid "Publish a post" msgstr "Opublikować post" msgid "The status for %POST_TITLE% has been changed." msgstr "Status %post_title% został zmieniony." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Czy na pewno chcesz opublikować %post_title%?" msgid "Delete a post" msgstr "Usuń post" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Czy na pewno chcesz usunąć %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% został przeniesiony do kosza." msgid "You do not hold the required priveleges to execute this request." msgstr "Nie posiadasz wymaganych uprawnień do wykonania tego żądania." msgid "No search results." msgstr "Brak wyników wyszukiwania." msgid "Yes" msgstr "Tak" msgid "No" msgstr "NIE" msgid "Save" msgstr "Ratować" msgid "Search for a location" msgstr "Wyszukaj lokalizację" msgid "Address line" msgstr "Wiersz adresu" msgid "(Optional)" msgstr "(opcjonalny)" msgid "State" msgstr "Państwo" msgid "Country" msgstr "Kraj" msgid "Create new term" msgstr "Utwórz nowy termin" msgid "Description" msgstr "Opis" msgid "Delete bookmarks" msgstr "Usuń zakładki" msgid "Reset your password" msgstr "Zresetuj swoje hasło" msgid "The password reset key has expired." msgstr "Klucz resetowania hasła utracił ważność." msgid "The password reset key is invalid." msgstr "Klucz resetowania hasła jest nieprawidłowy." msgid "New password *" msgstr "Nowe hasło *" msgid "Repeat new password *" msgstr "Powtórz nowe hasło *" msgid "Save password" msgstr "Zapisz hasło" msgid "Your account has been successfully activated!" msgstr "Twoje konto zostało pomyślnie aktywowane!" msgid "Your account has already been activated!" msgstr "Twoje konto zostało już aktywowane!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Sprawdź, czy w skrzynce e-mail znajduje się prawidłowy link aktywacyjny. ten link jest nieprawidłowy." msgid "Account activation" msgstr "Aktywacja konta" msgid "Please enter a new password before proceeding." msgstr "Przed kontynuowaniem wprowadź nowe hasło." msgid "Please confirm the new password before proceeding." msgstr "Przed kontynuowaniem potwierdź nowe hasło." msgid "Please make sure that the passwords match." msgstr "Upewnij się, że hasła są zgodne." msgid "The password has been reset successfully." msgstr "Hasło zostało pomyślnie zresetowane." msgid "Manage your billing details." msgstr "Zarządzaj swoimi szczegółami rozliczeniowymi." msgid "Profile picture" msgstr "Zdjęcie profilowe" msgid "Remaining publishing rights." msgstr "Pozostałe prawa wydawnicze." msgid "The number of articles you have left to publish across different post types." msgstr "Liczba artykułów pozostałych do opublikowania w różnych typach postów." msgid "Bank transfer" msgstr "Przelew bankowy" msgid "Direct Bank Transfer" msgstr "Bezpośredni przelew bankowy" msgid "Canceled" msgstr "Odwołany" msgid "Cycle Interval" msgstr "Odstęp cyklu" msgid "In order to update this filed, you have to activate your account." msgstr "Aby zaktualizować to pole, musisz aktywować swoje konto." msgid "Cannot process %s field." msgstr "Nie można przetworzyć pola %s." msgid "Modified date" msgstr "Zmieniona data" translation/tr_TR.mo000064400000102337150211537140010476 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,y$Yy ~yy yy yy ydy&-z'Tz2|z z zz {!1{DS{!{/{'{&|&9|"`||=||?|} %} 3}>} G}U}]h}}} }}~)~;~8O~&~~~~#~+ /=AJc| * =#aM%΀()FG<ˁ-)A"Y4|%%ׂIIG) у ݃ )+*Itv}  ÄʄlR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: tr_TR %post_title% çöp kutusuna taşındı.%curr% / %total%%s zorunlu bir alandır.(isteğe bağlı)(değişmeden bırakmak için boş bırakın)(isteğe bağlı)1 YorumHaftanın En PopülerleriEmail adresinize yeni aktivasyon linki gönderildi!Email adresine yeni bir şifre gönderilecek.HAKKIMIZDABenim hakkımdaHesap AktivasyonuHesap detaylarıHesap ayrıntıları başarıyla değiştirildi.Hesap adıHesap numarasıHesap ayarlarıOnay gerekli!AktifYeni ekleYeni gönderi ekleAdresAdres satırıAdreslerTümüSevilen her zamanTüm abonelikleriniz.Alfabetik a -> zZaten hesabınız var mı?Gönderinizi oluşturmaya çalışırken beklenmeyen bir hata oluştu. lütfen tekrar deneyin.Beklenmeyen bir hata oluştu ve posta gönderilemedi.Beklenmeyen bir hata oluştu. lütfen tekrar deneyin.UygulamalıUygulaArşiv%post_title%'i silmek istediğinizden emin misiniz?%post_title%'i yayınlamak istediğinizden emin misiniz?DeAvustralya dolarYazarYazarlarBekleyen ödemeGeriBanka adıBanka transferiBi/hızlıFatura DetaylarıEngellendiBlogBrezilya gerçekIngiliz SterliniBulgar LevasıYazarDeğerlendirme Puanına GöreCaptcha kullanıcı puanı başarısız oldu. lütfen bizimle iletişime geçin!Captcha doğrulaması başarısız oldu!KAPATYORUMLARKanada DolarıIptal etmekİptalAboneliği iptal etIptal edildi%s alanı işlenemiyor.KategorilerDoğru aktivasyon bağlantısı için e-postanızı kontrol edin. bu bağlantı geçersiz.çince yuan renminbiPlanı seçKentKapalıYorum:Yoruma kapalı.Şirket Adıödemeyi tamamlaYeni şifreyi onaylaİletişimDevamülkeülke/bölgeülke devletIlçeKupon uygulandıKupon adı gerekli!Hesap oluşturYeni terim oluşturHırvat kunaMevcut Şifreşu anki durumDöngü aralığıÇek Cumhuriyeti KorunasıGünlük Arşiv:Danimarka kronuGösterge PaneliTarihSilmekBir gönderiyi silYer işaretlerini silTanımDoğrudan Banka HavalesiDoğrudan banka havalesi ayrıntılarıEkran adıHesabın yok muIndirmekİndirilenlerSürükleyip bırakın veya göz atınEditörün SeçimiDAHA FAZLA HABERÖZELDüzenleGönderiyi düzenleE-postaEEmail adresin bulunamadı!Bu e-posta zaten var!E-posta boş!Email yanlış!E-posta veya kullanıcı adı boş!Email veya kullanıcı adı yanlış!E-Posta:Boş adresBoş şehirBoş ülkeBoş ilçeBoş e-postaBoş isimBoş soyadıBoş telefonBoş posta koduBitiş tarihiAdınızı veya şirketinizi girinIncelemeniz için bir başlık girinPromosyon kodunu buraya girinCevabınızı girinIncelemenizi girinEuro üyesi ülkelerBIZI TAKIP EDINBeğenenlerÖne ÇıkanÖzel İçeriklerAlan boşIlk adıTakip EtInstagram bizi takipTakipçilerParolanızı mı unuttunuz?Şifreni mi unuttun?Parolanızı mı unuttunuz? yardım almakBedavaHesabına gir.ödemeye gitödemeye gitGenel ToplamANASAYFAMerhabaMerhaba %1$s (%2$s değil mi? %3$s)! hesap kontrol panelinizden aboneliklerinizi görüntüleyebilir ve hesap ayrıntılarınızı yönetebilirsiniz.Işte arama sonuçları:Ana SayfaHong Kong DolarıMacar forintiIBANİDEğer bu bir hataysa, bu e-postayı dikkate almayın; hiçbir şey olmayacak.Aradığını bulamadıysan, yeni bir arama yapBu bölüme erişebilmek için hesabınızı etkinleştirmeniz gerekir.Bu dosyayı güncellemek için hesabınızı etkinleştirmeniz gerekir.Hint rupisiEndonezya rupiahıödenen ilk faturaTalimatlarGeçersizGeçersiz geçiş deseni!Geçersiz abonelik.FaturaFatura güncellendiIsrail ŞekeliHiçbir kullanılabilir ödeme yöntemi yapılandırılmamış görünüyor.Japon YeniKatılKore (güney) kazandıEn Yeni İçeriklerCEVAP VERGİRİŞ YAPSoyadıEn SonSon faturaInceleme bırakBeğenSeviyorDevamını GösterYükleniyorKonum:Abonelik kilitli.Oturum AçFacebook ile girişYorum Yapmak İçin Giriş YapınYorum bırakmak için giriş yapın.Hesabınıza giriş yapınçıkış Yapçıkış Yap?Olarak giriş yaptı% s olarak giriş yaptınız. Profilinizi düzenleyin.Oturum açÇıkışKayıp ŞifreYazarın Diğer İçerikleriDİĞER HABERLERMalezya ringgitiHesap ayrıntılarınızı yönetin.Fatura ayrıntılarınızı yönetin.üyelerMeksika pezosuDeğiştirilme tarihiDeğiştirilme tarihi:Aylık Arşiv:AylarDaha FazlaEn PopülerlerAbonelik hesabımBenim woo hesabımYokYORUM YOKIsimİsim:Yeni Zelanda DolarıYeni aktivasyon bağlantısı oluşturuldu. hesabınızı doğrulamak için lütfen e-postanızı (gelen kutusu veya spam klasörü) kontrol edin.Yeni ŞifreYeni Şifre *Yeni şifreler uyuşmuyor.SonrakiSonraki (Sağ ok tuşu)Sonraki İçerikHAYIRYer imlerine eklenmiş gönderi yokGösterilecek bir içerik yokSepette ürün yok.Derecelendirme yokSonuç YokAramana uygun bir sonuç yokArama sonucu bulunamadı.Abonelik oluşturulmadı.Norveç kronuödenmeyenEn Yeni İçeriklerGenel PuanEn eski gönderiler404 HATASI !EmirlerBanka bilgilerimizEtraflıPOPÜLER KATEGORİLERPOPÜLER MESAJLARHABERLERSayfa%TOTAL_PAGES% Sayfanın %CURRENT_PAGE%. SayfasıEbeveynBoş geç!Pas deseni yanlış!ParolaŞifre kurtarmaŞimdi ödeşeritle ödemeödeme başarısız oldu - Üzgünüz, ödemeniz işlenirken bir hata oluştu. lütfen farklı bir ödeme yöntemiyle tekrar deneyin.Ödeme şekliÖdeme metodlarıödeme işleniyor - en son abonelik ödemeniz işleniyor.ödeme başarılı - son abonelik ödemeniz başarıyla tamamlandı.ödeme şekliDönemFilipin pezosuTelefonPlanLütfen e-posta adresinize gönderilen bağlantıyı takip ederek hesabınızı etkinleştirin.Şifre gönderildi, lütfen e-postanızı kontrol edin(indeks veya spam klasörünü).Hesabınızı doğrulamak için lütfen e-postanızı (gelen kutusu veya spam klasörü) kontrol edin.E-posta (indeks veya spam klasörü) kontrol edin, şifre gönderildi.Lütfen e-postanızı kontrol edin ve aboneliğinizi onaylayın!Lütfen devam etmeden önce yeni şifreyi onaylayın.Lütfen önce bir kupon kodu girin!Devam etmeden önce lütfen yeni bir şifre girin.Geçerli bir e.Lütfen yorumunuzu giriniz!Lütfen mevcut şifrenizi giriniz.Lütfen e-posta adresinizi buraya girinLütfen isminizi buraya girinizLütfen geçerli bir e-posta girin.Lütfen bir e-posta adresi girin.Lütfen tüm şifre alanlarını doldurun.Lütfen şifrelerin eşleştiğinden emin olun.Lütfen geçerli bir e-posta adresi girin.Lütfen şifrenizi tekrar girin.Lütfen Bekleyin...Lehçe zlotisiYorum GönderResim gönderInceleme sonrasıPosta koduPosta koduTarafından gönderildiYazar:EtiketlerÖncekiÖnceki (Sol ok tuşu)Önceki İçerikFiyatFiyat belirlenmediYazdırGizlilik Politikasıürün kategorileriÜrün etiketleriProfil fotoğrafıYayınlaBir gönderi yayınlamakKayıt Olİlgili HaberlerDeğerlendirmeRastgeleDeğerlendirmeDevamını Okuşifre kurtarmaŞifrenizi KurtarınKayıt OlBir hesap oluşturunKalan yayın hakları.KaldırmakYeni şifreyi tekrar girin *Şifreyi tekrar girinYorumu CevaplaAktivasyon bağlantısını yeniden gönderşifrenizi sıfırlayınYeniden yazılan geçiş yanlış!Yeniden yazılan geçiş boş!Tam olarak yeniden yazılan geçiş!Inceleme kriterleriRumen (yeni) leyYönlendirme numarasıRus rublesiPaylaşKaynakÖzetKaydetmekDeğişiklikleri KaydetIsmimi, e-postamı ve web sitemi bir dahaki sefere bu tarayıcıya kaydet.şifreyi kaydetAraAnahtar Kelime İle Ara...Bir konum arayınSeçmeçocuğu seçEbeveyn seçAlt çocuğu seçŞifremi Gönderşifremi gönderödeme kurulumuKurulum başarısız oldu - Üzgünüz, ödeme yönteminizi ayarlarken bir hata oluştu. lütfen farklı bir ödeme yöntemiyle tekrar deneyin.Kurulum başarılı - gelecekteki ödemeler için ödeme yönteminizi başarıyla ayarladınız.PaylaşFacebook'ta PaylaşDaha az bilgi gösterDaha fazla bilgi gösterGiriş YapGiriş Yap / Kayıt OlKayıt OlSingapur dolarıBazı zorunlu alanlar boş bırakılmıştır.Birisi aşağıdaki hesap için şifre sıfırlama talebinde bulundu:Üzgünüz, ama aradığınız sayfa mevcut değil.Kaynak başlığıGüney Afrika RandıBaşlangıç tarihiDurumDurumSokak adresişerit faturaşerit fatura ayrıntılarışerit abonelik ayrıntılarıGöndermekYanıtı gönderInceleme gönderAbone OlAboneAbonelik iptal edildiAbonelik oluşturma: ilk fatura ödendiAbonelik oluşturma: ilk fatura oluşturulduAbonelik oluşturma: ilk fatura kesinleşti ve ödenmeye hazırAbonelik oluşturma: ilk fatura geçersiz kılındıAbonelik oluşturma: denemeAbonelik silindiAboneliğin süresi doldu: fatura geçersiz kılındı (ilk fatura ödenmedi)Abonelik yenileme: fatura oluşturulduAbonelik yenileme: fatura kesinleştiAbonelik yenileme: fatura ödendiAbonelik yenileme: fatura gelecekAbonelik yenileme: fatura geçersiz kılındıAbonelik güncellemesi: fatura ödendiAbonelik güncellemesi: fatura geçersiz kılındıAbonelik iptal edildi ve şu tarihte sona erecek:Abonelik bilgisiAbonelik özetiAboneliklerBaşarıBaşarıyla Abone Oldunuz!Abonelikten başarıyla çıkıldı!Isveç Kronuİsviçre frangıEtiketlerEtiketEtiketlerTel:Tay BahtıTeşekkürler! sizi burada görmekten mutluluk duyuyoruz. aboneliğiniz yakında etkinleştirilecek!%url% linkindeki içerik yüklenemedi.Girdiğiniz kupon kodunun süresi dolduGirdiğiniz kupon kodu kullanım limitine ulaştıGirdiğiniz kupon kodu geçersizE-posta başarıyla gönderildi.%curr% nolu imaj yüklenemedi.Sayı bundan daha yüksek olamazSayı bundan daha düşük olamazFarklı gönderi türlerinde yayınlayabileceğiniz makale sayısı.şifre başarıyla sıfırlandı.şifre sıfırlama anahtarının süresi doldu.şifre sıfırlama anahtarı geçersiz.Seçilen gönderi başarıyla silindi.%post_title%'in durumu değiştirildi.Bu e-posta adresi zaten kayıtlı.Bu alan gereklidir!Bu abonelik iptal edildi ve %end_date% tarihinde sona erecek.Başlıkşifrenizi sıfırlamak için aşağıdaki adresi ziyaret edin:ToplamKasaba/şehirSon DakikaDuruşmaTürk LirasıTwitter'da PaylaşYakalanmayan hata: Bir şeyler ters gitti, lütfen sayfayı yeniden yükleyip tekrar deneyin!Amerikan Dolarıücretsiz abonelik.GüncellemeKullanıcı zaten var!Kullanıcı mevcut değil!Kullanıcı boş!Kullanıcı bilgisiBu kullanıcı adı veya e-posta adresi zaten kayıtlı!Kullanıcı adı veya şifre yanlış!Kullanıcı adıKullanıcı adı boş!Kullanıcı adı yanlış!Kullanıcı Adı yada Eposta AdresiKullanıcı adı: %sKDVKDV numarasıVIAGörüşTüm içerikleri gösterTüm sonuçları gösterAboneliği görüntüleWebsite:Hesabınıza hoş geldiniz!Hoş GeldinizHoşgeldiniz! Hesabınızda oturum açın.Hoşgeldiniz! hesap açmakYıllık Arşiv:EvetZaten bir aboneliğiniz var, ancak hâlâ ödenmeyi bekliyor!İstersen buraya bakabilirsin:Bu isteği gerçekleştirmek için gerekli ayrıcalıklara sahip değilsiniz.Yanlış bir e-posta adresi girdiniz!Herhangi bir gönderi oluşturmadınız.Geçerli bir abonelik planı seçmediniz.Bu makale için gönderebileceğiniz inceleme sınırına ulaştınızBu sayfayı görüntülemek için çıkış yapmalısınız.Hesabınız oluşturulamadı.Hesabınız daha önceden aktive edilmiştir!Hesabınız başarıyla etkinleştirildi!Yorumunuz onay bekliyorMevcut şifreniz doğru değildir.Şifreniz sıfırlandı, e-postanızı kontrol edin.Gönderiniz başarıyla oluşturuldu.Gönderiniz başarıyla güncellendi.Cevabınız yayınlandı. görebilmek için lütfen sayfayı yenileyiniz.Incelemeniz yayınlandı. görebilmek için lütfen sayfayı yenileyiniz.İncelemeniz kaydedildi ve onay bekliyor.Abonelik bilgilerinizeski. vergiInc. vergieksik planen az 6 karakter uzunluğunda olmalıdıren az bir küçük harf (a..z) içermelidiren az bir büyük harf (a..z) içermelidir-Açıkveya5 üzerindenarama sonuçlarısınırsızgörünümlerE-postaŞifrekullanıcı adınıztranslation/default.po000064400000025205150211537140011071 0ustar00msgid "" msgstr "" "Project-Id-Version: Newsmag\n" "POT-Creation-Date: 2014-11-28 13:30+0200\n" "PO-Revision-Date: 2015-06-15 10:11+0200\n" "Last-Translator: \n" "Language-Team: tagDiv\n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.7.3\n" "X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e\n" "X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPathExcluded-0: ../includes/wp_booster/external\n" "X-Poedit-SearchPathExcluded-1: ../includes/td_theme_init.php\n" "X-Poedit-SearchPathExcluded-2: ../includes/wp_booster/td_wp_booster_init.php\n" #: ../includes/wp_booster/td_login.php:105 msgid "Someone requested that the password be reset for the following account:" msgstr "" #: ../includes/wp_booster/td_login.php:107 #, php-format msgid "Username: %s" msgstr "" #: ../includes/wp_booster/td_login.php:108 msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "" #: ../includes/wp_booster/td_login.php:109 msgid "To reset your password, visit the following address:" msgstr "" #: ../includes/wp_booster/td_login.php:119 #, php-format msgid "[%s] Password Reset" msgstr "" #: ../includes/wp_booster/td_login.php:125 msgid "The e-mail could not be sent." msgstr "" #: ../includes/wp_booster/td_login.php:125 msgid "Possible reason: your host may have disabled the mail() function..." msgstr "" #: ../includes/wp_booster/td_translate.php:9 msgid "View all results" msgstr "" #: ../includes/wp_booster/td_translate.php:10 msgid "No results" msgstr "" #: ../includes/wp_booster/td_translate.php:12 msgid "Home" msgstr "" #: ../includes/wp_booster/td_translate.php:16 msgid "CLOSE" msgstr "" #: ../includes/wp_booster/td_translate.php:19 msgid "Page" msgstr "" #: ../includes/wp_booster/td_translate.php:23 msgid "All" msgstr "" #: ../includes/wp_booster/td_translate.php:24 msgid "By" msgstr "" #: ../includes/wp_booster/td_translate.php:25 msgid "Load more" msgstr "" #: ../includes/wp_booster/td_translate.php:28 msgid "View all posts in" msgstr "" #: ../includes/wp_booster/td_translate.php:29 msgid "Tags" msgstr "" #: ../includes/wp_booster/td_translate.php:32 msgid "Previous article" msgstr "" #: ../includes/wp_booster/td_translate.php:33 msgid "Next article" msgstr "" #: ../includes/wp_booster/td_translate.php:34 msgid "Authors" msgstr "" #: ../includes/wp_booster/td_translate.php:35 msgid "RELATED ARTICLES" msgstr "" #: ../includes/wp_booster/td_translate.php:36 msgid "MORE FROM AUTHOR" msgstr "" #: ../includes/wp_booster/td_translate.php:37 msgid "VIA" msgstr "" #: ../includes/wp_booster/td_translate.php:38 msgid "SOURCE" msgstr "" #: ../includes/wp_booster/td_translate.php:39 msgid "TAGS" msgstr "" #: ../includes/wp_booster/td_translate.php:40 msgid "Continue" msgstr "" #: ../includes/wp_booster/td_translate.php:41 msgid "Read more" msgstr "" #: ../includes/wp_booster/td_translate.php:46 msgid "Name:" msgstr "" #: ../includes/wp_booster/td_translate.php:47 msgid "Email:" msgstr "" #: ../includes/wp_booster/td_translate.php:48 msgid "Website:" msgstr "" #: ../includes/wp_booster/td_translate.php:50 msgid "LEAVE A REPLY" msgstr "" #: ../includes/wp_booster/td_translate.php:51 msgid "Post Comment" msgstr "" #: ../includes/wp_booster/td_translate.php:52 msgid "Cancel reply" msgstr "" #: ../includes/wp_booster/td_translate.php:53 msgid "Reply" msgstr "" #: ../includes/wp_booster/td_translate.php:54 msgid "Log in to leave a comment" msgstr "" #: ../includes/wp_booster/td_translate.php:55 msgid "NO COMMENTS" msgstr "" #: ../includes/wp_booster/td_translate.php:56 msgid "1 COMMENT" msgstr "" #: ../includes/wp_booster/td_translate.php:57 #: ../includes/wp_booster/td_translate.php:77 msgid "COMMENTS" msgstr "" #: ../includes/wp_booster/td_translate.php:61 msgid "REVIEW OVERVIEW" msgstr "" #: ../includes/wp_booster/td_translate.php:62 msgid "SUMMARY" msgstr "" #: ../includes/wp_booster/td_translate.php:63 msgid "OVERALL SCORE" msgstr "" #: ../includes/wp_booster/td_translate.php:66 msgid "Ooops... Error 404" msgstr "" #: ../includes/wp_booster/td_translate.php:67 msgid "Sorry, but the page you are looking for doesn't exist." msgstr "" #: ../includes/wp_booster/td_translate.php:68 msgid "You can go to the" msgstr "" #: ../includes/wp_booster/td_translate.php:69 msgid "HOMEPAGE" msgstr "" #: ../includes/wp_booster/td_translate.php:72 msgid "OUR LATEST POSTS" msgstr "" #: ../includes/wp_booster/td_translate.php:75 msgid "Posts by " msgstr "" #: ../includes/wp_booster/td_translate.php:76 msgid "POSTS" msgstr "" #: ../includes/wp_booster/td_translate.php:80 msgid "Posts tagged with" msgstr "" #: ../includes/wp_booster/td_translate.php:81 msgid "Tag" msgstr "" #: ../includes/wp_booster/td_translate.php:84 msgid "Daily Archives:" msgstr "" #: ../includes/wp_booster/td_translate.php:85 msgid "Monthly Archives:" msgstr "" #: ../includes/wp_booster/td_translate.php:86 msgid "Yearly Archives:" msgstr "" #: ../includes/wp_booster/td_translate.php:87 msgid "Archives" msgstr "" #: ../includes/wp_booster/td_translate.php:91 msgid "LATEST ARTICLES" msgstr "" #: ../includes/wp_booster/td_translate.php:94 msgid "search results" msgstr "" #: ../includes/wp_booster/td_translate.php:95 msgid "Search" msgstr "" #: ../includes/wp_booster/td_translate.php:96 msgid "If you're not happy with the results, please do another search" msgstr "" #: ../includes/wp_booster/td_translate.php:99 msgid "Contact us" msgstr "" #: ../includes/wp_booster/td_translate.php:102 msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "" #: ../includes/wp_booster/td_translate.php:103 msgid "Next" msgstr "" #: ../includes/wp_booster/td_translate.php:104 msgid "Prev" msgstr "" #: ../includes/wp_booster/td_translate.php:107 msgid "No results for your search" msgstr "" #: ../includes/wp_booster/td_translate.php:108 msgid "No posts to display" msgstr "" #: ../includes/wp_booster/td_translate.php:111 msgid "LOG IN" msgstr "" #: ../includes/wp_booster/td_translate.php:112 msgid "Sign in / Join" msgstr "" #: ../includes/wp_booster/td_translate.php:113 msgid "JOIN" msgstr "" #: ../includes/wp_booster/td_translate.php:114 #: ../includes/wp_booster/td_translate.php:139 msgid "Log In" msgstr "" #: ../includes/wp_booster/td_translate.php:115 msgid "REGISTER" msgstr "" #: ../includes/wp_booster/td_translate.php:116 #: ../includes/wp_booster/td_translate.php:141 msgid "Register" msgstr "" #: ../includes/wp_booster/td_translate.php:117 #: ../includes/wp_booster/td_translate.php:145 msgid "Send My Pass" msgstr "" #: ../includes/wp_booster/td_translate.php:118 #: ../includes/wp_booster/td_translate.php:140 msgid "Forgot your password?" msgstr "" #: ../includes/wp_booster/td_translate.php:121 msgid "Please wait..." msgstr "" #: ../includes/wp_booster/td_translate.php:122 msgid "User or password incorrect!" msgstr "" #: ../includes/wp_booster/td_translate.php:123 msgid "Email or username incorrect!" msgstr "" #: ../includes/wp_booster/td_translate.php:124 msgid "Email incorrect!" msgstr "" #: ../includes/wp_booster/td_translate.php:125 msgid "User or email already exists!" msgstr "" #: ../includes/wp_booster/td_translate.php:128 msgid "Please check your email (index or spam folder), the password was sent there." msgstr "" #: ../includes/wp_booster/td_translate.php:129 msgid "Email address not found!" msgstr "" #: ../includes/wp_booster/td_translate.php:130 msgid "Your password is reset, check your email." msgstr "" #: ../includes/wp_booster/td_translate.php:132 msgid "Welcome! Login in to your account" msgstr "" #: ../includes/wp_booster/td_translate.php:133 msgid "Register for an account" msgstr "" #: ../includes/wp_booster/td_translate.php:134 msgid "Recover your password" msgstr "" #: ../includes/wp_booster/td_translate.php:136 msgid "your username" msgstr "" #: ../includes/wp_booster/td_translate.php:137 msgid "your password" msgstr "" #: ../includes/wp_booster/td_translate.php:138 msgid "your email" msgstr "" #: ../includes/wp_booster/td_translate.php:144 msgid "A password will be e-mailed to you." msgstr "" #: ../includes/wp_booster/td_translate.php:146 msgid "Logout" msgstr "" #: ../includes/wp_booster/td_translate.php:150 msgid "Like" msgstr "" #: ../includes/wp_booster/td_translate.php:151 msgid "Fans" msgstr "" #: ../includes/wp_booster/td_translate.php:152 msgid "Follow" msgstr "" #: ../includes/wp_booster/td_translate.php:153 msgid "Followers" msgstr "" #: ../includes/wp_booster/td_translate.php:154 msgid "Subscribe" msgstr "" #: ../includes/wp_booster/td_translate.php:155 msgid "Subscribers" msgstr "" #: ../includes/wp_booster/td_translate.php:158 msgid "MORE STORIES" msgstr "" #: ../includes/wp_booster/td_translate.php:161 msgid "Latest" msgstr "" #: ../includes/wp_booster/td_translate.php:162 msgid "Featured posts" msgstr "" #: ../includes/wp_booster/td_translate.php:163 msgid "Most popular" msgstr "" #: ../includes/wp_booster/td_translate.php:164 msgid "7 days popular" msgstr "" #: ../includes/wp_booster/td_translate.php:165 msgid "By review score" msgstr "" #: ../includes/wp_booster/td_translate.php:166 msgid "Random" msgstr "" #: ../includes/wp_booster/td_translate.php:168 msgid "Trending Now" msgstr "" #: ../includes/wp_booster/td_translate.php:171 msgid "POPULAR CATEGORY" msgstr "" #: no reference: msgid "EVEN MORE NEWS" msgstr "" #: no reference: msgid "Previous (Left arrow key)" msgstr "" #: no reference: msgid "Next (Right arrow key)" msgstr "" #: no reference: msgid "%curr% of %total%" msgstr "" #: no reference: msgid "The content from %url% could not be loaded." msgstr "" #: no reference: msgid "The image #%curr% could not be loaded." msgstr "" #: no reference: msgid "Blog" msgstr "" #: no reference: msgid "Share on Facebook" msgstr "" #: no reference: msgid "Tweet on Twitter" msgstr "" #: no reference: msgid "EDITOR PICKS" msgstr "" #: no reference: msgid "POPULAR POSTS" msgstr "" #: no reference: msgid "FOLLOW US" msgstr "" #: no reference: msgid "ABOUT US" msgstr "" #: no reference: msgid "More" msgstr "" #: no reference: msgid "Featured" msgstr "" #: no reference: msgid "All time popular" msgstr "" #: no reference: msgid "Likes" msgstr "" translation/fr_FR.mo000064400000105414150211537140010441 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,o(o; p2\p*p*p'p% q)3q,]q1q:q*q%"rHrgrvrr r r r rrr rss3s;sJsSsqsssss ss s st tt2tQtbtstt#tt tt!u#u?uTuouuu uuuu uuduav }vvv vvvvw1wJwdwmxxxxx xx yy6"yTYy8y yyzzz"z4zCzaz zzz zzz1z={cN{3{{|R|1n|4|0|2}29}.l}0}1}}~ 1~=~E~\~u~ ~~~~~~^~),FDs3&&):)dX47>T8+́,%??Dʂ ӂ߂ ds Ã#&7^p#̈́8JQ n,y$˅߅H,IA.!=܆M3h%$‡*/(B@k*/׈JER? ؉  $+C+o ƊЊ ՊlR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: fr_FR %post_title% a été déplacé vers la corbeille.%curr% sur %total%%s est un champ obligatoire.(facultatif)(laisser vide pour ne pas changer)(optionnel)1 COMMENTAIRE7 jours populaireUn nouveau lien d'activation a été envoyé à votre adresse email !Un mot de passe vous sera envoyé par email.À PROPOSÀ propos de moiActivation de compteDétails du compteLes détails du compte ont été modifiés avec succès.Nom du compteNuméro de compteParamètres du compteL'accusé de réception est requis !ActifAjouter un nouveauAjouter un nouveau messageAdresseLigne d'adresseAdressesTousTous les temps populaireTous vos abonnements.Alphabétique a -> zVous avez déjà un compte?Une erreur inattendue s'est produite lors de la tentative de création de votre message. Veuillez réessayer.Une erreur inattendue s'est produite et le courrier n'a pas pu être envoyé.Une erreur imprévue s'est produite. Veuillez réessayer.AppliquéAppliquerArchivesêtes-vous sûr de vouloir supprimer %post_title% ?êtes-vous sûr de vouloir publier %post_title% ?àDollar australienAuteurAuteursEn attente de paiementArrièreNom de banqueVirementBic/rapideDétails de la facturationBloquéBlogReal brésilienLivre sterlingLev bulgareParLes mieux notésLe score de l'utilisateur captcha a échoué. Contactez nous s'il vous plait!La vérification du captcha a échoué !FERMERCommentairesDollar canadienAnnulerAnnuler la réponseAnnuler l'abonnementAnnuléNe peut pas traiter le champ %s.CatégoriesVérifiez votre courrier électronique pour le lien d'activation correct. ce lien est invalide.Chinese yuan renminbiChoisir le forfaitVilleFerméCommenter :Les commentaires sont fermés.Nom de la compagniePaiement completConfirmer le nouveau mot de passeContactez-nousContinuerPaysPays/régionEtatComtéCoupon appliquéLe nom du coupon est requis !Créer un compteCréer un nouveau termeKuna croatianMot de passe actuelStatut actuelIntervalle de cycleRépublique tchèque korunaArchives quotidiennes:Couronne danoiseTableau de bordDateSupprimerSupprimer un messageSupprimer des favorisDescriptionVirement bancaire directCoordonnées de virement bancaire directAfficher un nomVous n'avez pas de compte ?TéléchargerTéléchargementsGlisser-déposer ou parcourirSÉLECTION DE L'EDITEURENCORE PLUS D'ARTICLESEXCLUSIFModifierModifier le messageE-mailAdresse e-mailAdresse email non trouvée !L'email existe déjà!Email vide !Email incorrect !Email ou nom d'utilisateur vide !E-mail ou nom d'utilisateur incorrect !Email :Adresse videVille videPays videComté videE-mail videPrénom videNom de famille videTéléphone videCode postal videDate de finEntrez votre nom ou votre entrepriseEntrez un titre pour votre avisEntrez le code promo iciEntrez votre réponseEntrez votre avisLes pays membres de la zone euroSUIVEZ NOUSFansEn vedetteLes articles en vedetteChamp videPrénomSuivreSuivez-nous sur instagramSuiveursMot de passe oublié?Mot de passe oublié ?Mot de passe oublié? obtenir de l'aideGratuitEntrer dans votre compte.Aller au paiementAller à la caisseTotalPAGE D'ACCUEILBonjourBonjour %1$s (pas %2$s ? %3$s) ! depuis le tableau de bord de votre compte, vous pouvez consulter vos abonnements et gérer les détails de votre compte.Voici les résultats de la recherche :AccueilDollar de Hong KongForint hongroisIBANIDENTIFIANTS'il s'agit d'une erreur, ignorez simplement cet e-mail et rien ne se passera.Si les résultats ne sont pas satisfaisants, veuillez effectuer une autre recherchePour avoir accès à cette section, vous devez activer votre compte.Afin de mettre à jour ce dossier, vous devez activer votre compte.Roupie indienneRoupie indonésienneFacture initiale payéeInstructionsInvalideModèle de passe invalide !Abonnement invalide.FactureFacture mise à jourShekel israelienIl semble qu'aucun mode de paiement disponible n'ait été configuré.Yen japonaisJoindreKorean (sud) wonDerniers articlesLAISSER UN COMMENTAIRESE CONNECTERNom de familleDernierDernière factureLaisser un commentaireJ'aimeJ'aimesVoir plusChargement en coursEmplacement:Abonnement verrouillé.Se connecterSe connecter avec FacebookConnecter pour laisser un commentaireConnectez-vous pour laisser un avis.Connectez-vous à votre compteSe déconnecterConnectez - Out?Connecté en tant queConnecté en tant que% s. Modifier votre profil.S'identifierDéconnexionMot de passe perduPLUS DE L'AUTEURPLUS D'ARTICLESRinggit malaisienGérer les détails de votre compte.Gérer vos informations de facturation.MembresPeso mexicainDate modifiéeDate modifiée:Archives mensuelles:MoisPlusPlus populaireMon compte d'abonnementMon compte wooN / AAUCUN COMMENTAIRENomNom :Dollar néo-zélandaisUn nouveau lien d'activation a été généré. veuillez vérifier votre email (boîte de réception ou dossier spam) pour valider votre compte.Nouveau mot de passeNouveau mot de passe *Les nouveaux mots de passe ne correspondent pas.SuivantSuivante (flèche droite)Article suivantNonAucun article marqué dans mes favorisAucun article à afficherAucun produit dans le chariot.Pas de notationPas de résultatsAucun résultat pour votre rechercheAucun résultat trouvé.Aucun abonnement créé.Couronne norvégienneImpayéNOS DERNIERS ARTICLESSCORE GLOBALMessages les plus anciensOups ... Erreur 404OrdresNos coordonnées bancairesDans l'ensembleCATÉGORIE POPULAIREARTICLES POPULAIRESARTICLESPagePage %CURRENT_PAGE% sur %TOTAL_PAGES%ParentPasse à vide !Modèle de réussite incorrect !Le mot de passeRécupération de mot de passePayez maintenantPayer avec StripeLe paiement a échoué - nous sommes désolés, une erreur s'est produite lors du traitement de votre paiement. veuillez réessayer avec un autre mode de paiement.Mode de paiementMéthodes de payementTraitement des paiements : votre dernier paiement d'abonnement est en cours de traitement.Paiement réussi : votre dernier paiement d'abonnement a été effectué avec succès.Type de paiementPoint finalPeso philippinTéléphonerPlanifierVeuillez activer votre compte en suivant le lien envoyé à votre adresse e-mail.Veuillez vérifier vos emails (boîte principale ou spam), votre mot de passe vous a été envoyé.Veuillez vérifier votre email (boîte de réception ou dossier spam) pour valider votre compte.S'il vous plaît vérifier votre e-mail (dossier d'index ou spam), le mot de passe a été envoyé là-bas.Veuillez vérifier votre courrier électronique et confirmer votre abonnement !Veuillez confirmer le nouveau mot de passe avant de continuer.Veuillez d'abord entrer un code promo !Veuillez entrer un nouveau mot de passe avant de continuer.S'il vous plaît, mettez une adresse email valide.S'il vous plaît entrez votre commentaire!Veuillez entrer votre mot de passe actuel.Veuillez entrer votre adresse email iciS'il vous plaît entrez votre nom iciS'il vous plaît remplir un email valide.S'il vous plaît remplir une adresse e-mail.Veuillez remplir tous les champs de mot de passe.Veuillez vous assurer que les mots de passe correspondent.Veuillez fournir une adresse email valide.Veuillez re-taper votre mot de passe.S'il vous plaît patienter ...Zloty polonaisPoster un commentairePublier une imageAprès examenCode postalCode postalPosté parArticles postés parArticles taggésPrécédentPrécédente (flèche gauche)Article précédentLe prixPrix non fixéImprimerPolitique de confidentialitéCatégories de produitsétiquettes de produitsImage de profilPublierPublier un articleENREGISTRERARTICLES CONNEXESNOS NOTES ...Au hasardNotationLire la suiteRécupérer mot de passeRécupérer votre mot de passeCréer un compteCréer un compteDroits de publication restants.RetirerRépété le nouveau mot de passe *Répéter le mot de passeRépondreRenvoyer le lien d'activationRéinitialisez votre mot de passePasse retapé incorrecte !Passe retapé vide !Passe retapé exactement !Critères d'examenRomanian (nouveau) leuNuméro de routageRouble russePARTAGERSourceRÉSUMÉSauvegarderSauvegarder les modificationsEnregistrer mon nom, email et site web dans ce navigateur pour la prochaine fois que je commenterai.Enregistrer le mot de passeRechercheRecherche par mots-clés...Rechercher un emplacementSélectionnerSélectionner un enfantSélectionner le parentSélectionner un sous-enfantEnvoyer mon mot de passeEnvoyer mon mot de passePaiement de configurationLa configuration a échoué - nous sommes désolés, une erreur s'est produite lors de la configuration de votre mode de paiement. veuillez réessayer avec un autre mode de paiement.Configuration réussie : vous avez configuré avec succès votre mode de paiement pour les paiements futurs.PartagerPartager sur FacebookAfficher moins d'informationsAfficher plus d'informationsSe connecterConnecter / rejoindreS'inscrireDollar singapourCertains champs obligatoires ont été laissés vides.Quelqu'un a demandé une réinitialisation du mot de passe pour le compte suivant :Désolé, mais la page que vous recherchez n'existe pas.Titre sourceRand sud-africainDate de débutÉtatStatutAdresse de la rueFacture rayéeDétails de la facture StripeDétails de l'abonnement StripeSoumettreSoumettre une réponsePoster le commentaireS'abonnerAbonnésAbonnement annuléCréation d'abonnement : facture initiale payéeCréation d'abonnement : la facture initiale a été crééeCréation d'abonnement : la facture initiale a été finalisée et elle est prête à être payéeCréation d'abonnement : facture initiale annuléeCréation d'abonnement : essaiAbonnement suppriméAbonnement expiré : facture annulée (la première facture n'a pas été payée)Renouvellement de l'abonnement : facture crééeRenouvellement de l'abonnement : facture finaliséeRenouvellement de l'abonnement : facture payéeRenouvellement de l'abonnement : facture à venirRenouvellement de l'abonnement : facture annuléeMise à jour de l'abonnement : facture payéeMise à jour de l'abonnement : facture annuléeL'abonnement a été annulé et prendra fin le :Informations d'abonnementRésumé de l'abonnementAbonnementsSuccèsAbonné avec succès !Désabonnement réussi !Couronne suédoiseFranc suisseTAGSTagTagsTél :Baht thaïlandaisJe vous remercie! nous sommes ravis de vous voir ici. votre abonnement sera bientôt activé !Le contenu de %url% pas pu être chargé.Le code promo que vous avez entré a expiréLe code promo que vous avez entré a atteint sa limite d'utilisationLe code promo que vous avez entré n'est pas valideL'e-mail a été envoyé avec succès.L'image #%curr% pas pu être chargée.Le nombre ne peut pas être supérieur àLe nombre ne peut pas être inférieur àLe nombre d'articles qu'il vous reste à publier dans différents types de publications.Le mot de passe a été réinitialisé avec succès.La clé de réinitialisation du mot de passe a expiré.La clé de réinitialisation du mot de passe n'est pas valide.Le message sélectionné a été supprimé avec succès.Le statut de %post_title% a été modifié.Cette adresse email est déjà enregistrée.Ce champ est obligatoire!Cet abonnement a été annulé et il prendra fin le %end_date%.TitrePour réinitialiser votre mot de passe, visitez l'adresse suivante :Le totalVille/villeA la uneEssaiLire turqueTweeter sur twitterErreur non détectée : quelque chose s'est mal passé, veuillez recharger la page et réessayer !Dollar américainAbonnement impayé.Mise à jourL'utilisateur existe déjà!L'utilisateur n'existe pas !Utilisateur vide !Informations de l'utilisateurUtilisateur ou email existe déjà!Utilisateur ou mot de passe incorrect!Nom d'utilisateurNom d'utilisateur vide !Nom d'utilisateur incorrect !Nom d'utilisateur ou adresse e-mailNom d'utilisateur : %sT.V.ANuméro de TVAViaVoirVoir tous les articles dansVoir tous les résultatsVoir l'abonnementSite :Bienvenue sur votre compte !Bienvenue!Bienvenue ! Connectez-vous à votre compte :Bienvenue! s'inscrire pour un compteArchives annuelles:OuiVous avez déjà un abonnement, mais il attend toujours d'être payé !Vous pouvez aller àVous ne disposez pas des privilèges requis pour exécuter cette demande.Vous avez entré une adresse email incorrecte!Vous n'avez créé aucun message.Vous n'avez pas sélectionné de formule d'abonnement valide.Vous avez atteint la limite d'avis que vous pouvez soumettre pour cet articleVous devez être déconnecté pour voir cette page.Votre compte n'a pas pu être créé.Votre compte a déjà été activé!Votre compte a été activé avec succès!Votre commentaire est en attente de modérationVotre mot de passe actuel est incorrect.Votre mot de passe a été réinitialisé, vérifiez vos emails.Votre message a été créé avec succès.Votre message a été mis à jour avec succès.Votre réponse a été publiée. veuillez actualiser la page pour la voir.Votre avis a été publié. veuillez actualiser la page pour la voir.Votre avis a été enregistré et est en attente d'approbation.Les détails de votre abonnementex. impôtinc. impôtplan manquantdoit contenir au moins 6 caractèresdoit contenir au moins une minuscule (a..z)doit contenir au moins une majuscule (a..z)desurousur 5résultats de la rechercheillimitévuesvotre emailvotre mot de passevotre nom d'utilisateurtranslation/ro_RO.mo000064400000104443150211537140010464 0ustar00*%*7*I* a* l* * **:*#*++"+5+%E+ k+x+++++ ++ + +++,,0,SI,@,3,-- --)-.W------- - - ----- . .*.-.-=.k..... .... .G.D/ Z/f/k/r/{/ /// //// //00,0>0 N0\0m0|000 0 000 00 001 11>1U1 ^1h1 11 11 11 111 122/2L2 S2 a2 l2 z2 222 222223'383J3 `3j3o3x3 3 333 3333 44 (464 E4Q4Z4y`4$4455&5+5F.5>u5K5A6 B6O6a6 v6666666@6 7,717D7 T7b7 i7s7z7777 77 77777 8$8:8B8 K8#X8|88 88 88889 9 9$939E9L9 Q9 ^9i999 9999k9 *:7:F:b:g: ~::::: : :::;+;;;D; U; c;p;;;;; ;;;$;; ;<<&<8<@<|P<<<I<Q6= =====N=K>HR>L>1>2?!M?.o?#??#?$@&@B@ `@$@*@%@@A %A 2A ?A JA VAbA kAuA~AAAAA AAAA A BB!B0B9BJBZBaB hBrBBBBBBBBC C!C5CMCaCwCCC CCCCC CMC ,D:DADVDlD sD DD DD DDXMEEEEEEEEE* FA7F6yF FF FFFFFGG9G @G MG [G eGqG)G5GSG+;HgHHDH#H%I )I$JI"oI!I#I0I JJ 0J>JFJ_J zJ JJJJJ JVJ+K'4K7\K&K%K&K L)LLIL)L#L"L0M-8M)fMMBMM4M&N ,N 6NCN INVNGgNNNNNN OO(OFObOkO{OO OO OOOOOOP P%P.P MPnPPFPP@P,QJQ0jQJQ)Q"R(3R-\R#R#R)R(R(%SJNSKS9ST9TAT JT,WT+T+TTTTTT TU U U &Uj4U.UUU U# V .V 9V%FV=lV/V V V V V+ W 8W EWSWfWW WWWWWWWWWXv XCXBXY&Y-Y74Y7lYYYYYYYYY ZZ$Z+Z0ZAZ PZ ^ZhZ@wZZ Z ZZZ[[0[7[ T[P^[[ [[[ [[ \\+\B\ Q\]\ d\ q\{\ \\\\ \\\]]-]=]L]Q]V]^]p] ]]$] ] ]] ]$] ^4^I^ R^`^s^z^"^^ ^^"^&_(_ /_ =_ G_ R_ ^_ i_u_ ___$_)_$`,`H`b` {`` `` ```````!a5a=aRa aa oa}a aab3b:bJbYb^bXabYbGcC\cccc ccc dd.dBd@Qd dddddddee'e 7eBeHe _e leveee/e)e f)f :f Df%Pfvf}fffff#f(fg %g2gBgSgbgggpg ggggggggg rhhhh%hhhh i"i?iNi$^ii!iiii ijj,j4j NjXjlj~jj'jj jjjjj kkkk[kN3ll llllSls m_m[mH=n?n8nCn7Co-{o1o6op+0p/\p:p8p6q%7q]qwqqq q q q qqqr&rArUr[r sr}rrrrrrrss(s0s7sHs\s ss s sss s sst!,tNtetttt t tttttjuqu uuu uuuuvv'v=v]v=wFw_w{w w'w ww8w;x7Xx xxxxxxxxy&y.y>y Oy\yey.vy3yOy2)z!\z~zLz%z) {'5{&]{&{({'{0{-|J| b|m|t||||| ||| |\|/D}0t}B}3}!~*>~$i~#~V~" &,+S/-3?/o:u €р؀eg~ ԁ+).Xk&΂,ENg1w1ۃE3ID-,ׄM;R %Ѕ+%"=H%*X׆Z0=ɇ 4 7?6w Ո ߈  lR4+JAUA[<;b!qS VJxq-]SmZIY=_TlaLv  h6/rXLW^g,p&X y5w#9NtK#8'%8aN_% jQ c+nMT)g7"QK@x1e7^Cz0| F]~*y3UB(3[$,C}| $'>W9:c\rGEfV& 12!o`b;.Bs:(di4?>\= zM{vknDu)6}DE.u-2Y0?*P ~5jeOfhO@s k<I{FmRoHwpPG"Hi/tdZ`%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy accountMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: ro_RO %post_title% a fost mutat în coșul de gunoi.%curr% din %total%%s este un câmp obligatoriu.(optional)(lasa gol pentru a lasa neschimbat)(optional)1 COMENTARIUCele mai populare din ultimele 7 zileUn nou link de activare a fost trimis la adresa ta de e-mail!O parola va fi trimisă pe adresa dvs de email.DESPRE NOIDespre mineActivare contDetalii contDetaliile contului s-au schimbat cu succes.Nume de contNumar de contSetările contuluiEste necesară recunoașterea!ActivAdăuga nouAdauga postare nouaAbordareLinia de adresaAdreseToateTot timpul populareToate abonamentele tale.Alfabetic a -> zAi deja un cont?A apărut o eroare neașteptată în timp ce încercați să vă creați postarea. vă rugăm să încercați din nou.A apărut o eroare neașteptată și e-mailul nu a putut fi trimis.A aparut o eroare neasteptata. vă rugăm să încercați din nou.AplicatAplicaArhiveSunteți sigur că doriți să ștergeți %post_title%?Sunteți sigur că doriți să publicați %post_title%?LaDolar australianAutorAutoriîn așteptarea plățiiînapoiNumele bănciiTransfer bancarBic/swiftDetalii de facturareBlocatBlogRealul brazilianLira sterlinăLeva bulgarăDe cătreDupă recenzieScorul utilizatorului captcha a eșuat. va rog sa ne contactati!Verificarea captcha a eșuat!ÎNCHIDEȚICOMENTARIIDolarul canadianAnulareRenunțați la răspunsAnuleaza abonareaAnulatNu poate procesa câmpul %s.CategoriiVerificați e-mailul pentru link-ul de activare corect. acest link este invalid.Yuani renminbi ChinezăAlege planulOrașînchisComentariu:Comentariile sunt închise.Numele companieiPlata completăConfirmă noua parolăContactați-neContinuațițarăTara/regiuneTara/statJudetulCupon aplicatNumele cuponului este necesar!Creează un contCreați un nou termenKuna croatăParola actualăStatusul curentInterval de cicluKoruna Republica CehăArhive Zilnice:Coroane danezeBordDataștergeșterge o postareștergeți marcajeleDescriereTransfer bancar directDetaliile transferului bancar directNumele afisatNu ai cont?DescarcaDescărcăriTrageți și plasați sau răsfoițiALEGEREA EDITORULUIȘI MAI MULTE ȘTIRIEXCLUSIVEditați | ×Editează postareaE-mailAdresa de emailAdresa de email nu a fost gasită!E-mail există deja!E-mail gol!Email incorect!E-mail sau nume de utilizator gol!Email sau nume de utilizator incorect!Email:Adresa goalăOraș golTara goalaJudetul golE-mail golPrenume golNume de familie golTelefon golCod poștal golData de încheiereIntroduceți numele sau compania dvsIntroduceți un titlu pentru recenzia dvsIntroduceți codul promoțional aiciIntroduceți răspunsul dvsIntroduceți recenzia dvsțările membre ale euroURMAȚI-NEFaniRecomandateArticole recomandateCâmp golNumeConectați-văUrmați-ne pe InstagramCititoriAți uitat parola?V-ați uitat parola?Ați uitat parola? obține ajutorGratuitIntra in contul tau.Mergi la plataMergi la casaTotal generalHOMEPAGEBuna ziuaSalut %1$s (nu %2$s? %3$s)! din tabloul de bord al contului, vă puteți vedea abonamentele și puteți gestiona detaliile contului.Iată rezultatele căutării:AcasăDolar Hong KongForint maghiarIBANIDDacă aceasta a fost o greșeală, ignorați acest e-mail și nu se va întâmpla nimic.Dacă nu sunteți mulțumiți de rezultate, vă rugăm folosiți alt criteriu de căutarePentru a avea acces la aceasta sectiune trebuie sa iti activezi contul.Pentru a actualiza acest fișier, trebuie să vă activați contul.Rupie indianăRupie indonezianăFactura initiala platitaInstrucțiuniInvalidModel de trecere nevalid!Abonament nevalid.Factura fiscalaFactura actualizataShekel IsraeliSe pare că nu au fost configurate metode de plată disponibile.Yeni japoneziA aderaCoreeană (sud), a câștigatULTIMELE ARTICOLELĂSAȚI UN MESAJAUTENTIFICAȚI-VĂNumele de familieUltimeleUltima facturaLasa o recenzieÎmi placeLikesÎncărcați mai multeSe încarcăLocație:Abonament blocat.Autentificați-văLogheaza-te cu FacebookAutentificați-vă pentru a lăsa un comentariuConectați-vă pentru a lăsa o recenzie.Conecteaza-te la contul tauDeconectați-văIeșiți?Conectat caConectat ca% s. Editeaza-ti profilul.LogareIeșireParola pierdutăDE LA ACELAȘI AUTORMAI MULTE ARTICOLERingitt malaezianGestionați detaliile contului dvs.Gestionați detaliile dvs. de facturare.MembriiPeso mexicanData modificataData modificata:Arhive Lunare:LuniMai multCele mai populareContul meuContul meu de abonamentContul meu wooN / ANICIUN COMENTARIUNumeNume:Dolar nou zeelandaA fost generat un nou link de activare. vă rugăm să vă verificați e-mailul (inbox sau dosarul de spam) pentru a vă valida contul.Parolă NouăParolă Nouă *Parolele noi nu se potrivesc.ÎnainteÎnapoi (Tasta direcționare dreapta)Articolul următorNuFără postări marcateNiciun articol afișatNu există produse în coș.Nici un ratingNiciun rezultatNiciun rezultat pentru căutarea dvsNu există Rezultate.Nu a fost creat niciun abonament.Coroană norvegianăNeplatitULTIMELE NOASTRE ARTICOLESCOR GENERALCele mai vechi postăriUpps ... Eroare 404ComenziDetaliile noastre bancarePer totalCATEGORIE POPULARĂPOSTĂRI POPULAREARTICOLEPaginaPagina %CURRENT_PAGE% din %TOTAL_PAGES%MamăTrece gol!Model de trecere incorect!ParolaRecuperare parolaPlătește acumPlătiți cu dungăPlata nu a reușit - ne pare rău, a apărut o eroare la procesarea plății dvs. vă rugăm să încercați din nou cu o altă metodă de plată.Modalitate de platăMetode de plataProcesarea plăților - cea mai recentă plată a abonamentului este în curs de procesare.Plată reușită - ultima plată a abonamentului a fost finalizată cu succes.Tipul de platăPerioadăPeso PhilippineTelefonPlanVă rugăm să vă activați contul urmând linkul trimis la adresa dvs. de e-mail.Vă rugăm verificați-vă email-ul (directorul index sau spam), parola v-a fost trimisă într-unul dintre acesteaVă rugăm să vă verificați e-mailul (inbox sau dosarul de spam) pentru a vă valida contul.Vă rugăm să verificați email-ul (indexul sau spam dosar), parola a fost trimisă acolo.Vă rugăm să vă verificați e-mailul și să confirmați abonamentul!Vă rugăm să confirmați noua parolă înainte de a continua.Vă rugăm să introduceți mai întâi un cod de cupon!Vă rugăm să introduceți o nouă parolă înainte de a continua.Vă rugăm să introduceți o adresă de email validă.Vă rugăm să introduceți comentariul dvs.!Vă rugăm să introduceți parola dvs. actuală.Vă rugăm să introduceți adresa dvs. de e-mail aiciIntroduceți aici numele dvs.Vă rugăm să completați un e-mail valid.Vă rugăm să completați o adresă de e-mail.Vă rugăm să completați toate câmpurile pentru parole.Vă rugăm să vă asigurați că parolele se potrivesc.Vă rugăm să furnizați o adresă de e-mail validă.Vă rugăm să reintroduceți parola.Vă rugăm așteptați...Zloți poloneziTrimiteți comentariuPostați imagineaPost recenzieCod poștalCod poștalPostat deArticole adaugate de cătreArticole etichetate cuÎnapoiÎnainte (Tasta direcționare stânga)Articolul precedentPrețPretul nu este stabilitImprimarePolitica de confidentialitateCategorii de produseEtichete de produsPoză de profilPublicaPublica o postareÎNREGISTRAȚI-VĂARTICOLE SIMILAREREVEDEȚI PREZENTAREAAleatorRatingCitiți mai multRecuperează parolaRecuperați-vă parolaÎnregistrareInregistrați-vă pentru un contDrepturile de publicare rămase.EliminaRepeta noua parola *Repeta parolaRăspundețiRetrimiteți linkul de activareReseteaza parolaTrecerea reintrodusă incorectă!Permis reintrodus gol!Trecerea rescrisă exact!Criteriile de revizuireRomână (nou) leuNumărul de rutareRubla rusăDISTRIBUIȚISURSĂCUPRINSSalvațiSalvează modificărileSalvați numele meu, adresa de e-mail și site-ul web în acest browser pentru data viitoare i comentariu.Salveaza parolaCăutațiCauta dupa cuvinte cheie...Caută o locațieSelectațiSelectați copilulSelectați părinteleSelectați subcopilulTrimiteți-mi parolaTrimite parolaConfigurarea plățiiConfigurarea a eșuat - ne pare rău, a apărut o eroare la configurarea metodei dvs. de plată. vă rugăm să încercați din nou cu o altă metodă de plată.Configurare cu succes - ați configurat cu succes metoda de plată pentru plățile viitoare.AcțiuneDistribuiți pe FacebookArata mai putine informatiiArata mai multe informatiiConectareAutentificați-vă / Înregistrați-văInscrie-teDolar singaporeUnele câmpuri obligatorii au fost lăsate necompletate.Cineva a cerut o resetare a parolei pentru următorul cont:Ne pare rău, dar pagina pe care o cautați nu există.Titlul surseiRand sud-africanData de începutStatStareAdresa străziiFactură cu dungiDetaliile facturii stripeDetaliile abonamentului stripeTrimiteTrimite raspunsTrimite recenzieAbonați-văAbonațiAbonament anulatCreare abonament: factura inițială plătităCreare abonament: a fost creată factura inițialăCreare abonament: factura inițială a fost finalizată și este gata de platăCrearea abonamentului: factura inițială anulatăCrearea abonamentului: încercareAbonamentul a fost ștersAbonamentul a expirat: factura anulată (prima factură nu a fost plătită)Reînnoire abonament: factura creatăReînnoire abonament: factura finalizatăReînnoire abonament: factura plătităReînnoire abonament: factura viitoareReînnoire abonament: factura anulatăActualizare abonament: factura plătităActualizare abonament: factura anulatăAbonamentul a fost anulat și se va încheia pe:Informații despre abonamentRezumatul abonamentuluiAbonamenteSuccesAbonat cu succes!Dezabonat cu succes!Coroana suedezăFranc elvețianETICHETEEtichetăEticheteTel:Baht thaiMulțumesc! suntem încântați să vă vedem aici. abonamentul tau va fi activat in curand!Conținutul de la %url% nu poate fi încărcat.Codul de cupon pe care l-ați introdus a expiratCodul de cupon pe care l-ați introdus a atins limita de utilizareCodul de cupon pe care l-ați introdus este nevalidE-mailul a fost trimis cu succes.Imaginea #%curr% nu poate fi încărcată.Numărul nu poate fi mai mare decâtNumărul nu poate fi mai mic decâtNumărul de articole pe care le-ai rămas de publicat în diferite tipuri de postări.Parola a fost resetată cu succes.Cheia de resetare a parolei a expirat.Cheia de resetare a parolei este nevalidă.Postarea selectată a fost ștearsă cu succes.Starea pentru %post_title% a fost schimbată.Această adresă de email este deja înregistrată.Acest câmp este obligatoriu!Acest abonament a fost anulat și se va încheia pe %end_date%.TitluPentru a vă reseta parola, vizitați următoarea adresă:TotalOraș/orașDe ActualitateProcesLiră turceascăDistribuiți pe TwitterEroare nedepistată: ceva a mers prost, vă rugăm să reîncărcați pagina și încercați din nou!Dolarul Statelor UniteAbonament neplătit.ActualizațiUtilizatorul deja există!Utilizatorul nu există!Utilizator gol!Informații despre utilizatorNume de utilizator sau email deja existent!Nume de utilizator sau parola incorectă!Nume de utilizatorNumele de utilizator este gol!Nume de utilizator incorect!Nume de utilizator sau Adresa de emailNume de utilizator: %sTVATVAVIAVedereVedeți toate articolele înVezi toate rezultateleVizualizați abonamentulWebsite:Bun venit in contul tau!Bine ati venit!Bine ați venit! Autentificați-vă in contul dvsBine ati venit! înregistrați-vă pentru un contArhive Anuale:DaAi deja un abonament, dar este încă în așteptare să fie plătit!Puteți merge laNu dețineți privilegiile necesare pentru a executa această solicitare.Ați introdus o adresă de e-mail incorectă!Nu ai creat nicio postare.Nu ați selectat un plan de abonament valid.Ați atins limita de recenzii pe care le puteți trimite pentru acest articolTrebuie să fii deconectat pentru a vedea această pagină.Contul dvs. nu a putut fi creat.Contul dvs. a fost deja activat!Contul dvs. a fost activat cu succes!Comentariul dvs. așteaptă să fie moderatParola dvs. actuală este incorectă.Parola dvs a fost resetată, verificați-vă adresa de email.Postarea ta a fost creată cu succes.Postarea ta a fost actualizată cu succes.Raspunsul tau a fost publicat. vă rugăm să reîmprospătați pagina pentru a o vedea.Recenzia dvs. a fost publicată. vă rugăm să reîmprospătați pagina pentru a o vedea.Recenzia dvs. a fost înregistrată și așteaptă aprobarea.Detaliile abonamentului dvsex. impozitinc. impozitplan lipsătrebuie să conțină cel puțin 6 caractere lungimetrebuie să conțină cel puțin o literă mică (a..z)trebuie să conțină cel puțin o literă mare (a..z)depesaudin 5rezultatele căutăriinelimitatvizualizariadresa dvs de emailparola dvsnumele dvs de utilizatortranslation/ru_RU.po000064400000131333150211537140010501 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" msgid "View all results" msgstr "Просмотреть все результаты" msgid "No results" msgstr "Нет результатов" msgid "Home" msgstr "Домой" msgid "CLOSE" msgstr "ЗАКРЫТЬ" msgid "Page" msgstr "Страница" msgid "All" msgstr "Все" msgid "By" msgstr "От" msgid "Load more" msgstr "Загрузить больше" msgid "View all posts in" msgstr "Просмотреть все посты в" msgid "Tags" msgstr "Теги" msgid "Previous article" msgstr "Предыдущая статья" msgid "Next article" msgstr "Следующая статья" msgid "Authors" msgstr "Авторы" msgid "Author" msgstr "Автор" msgid "RELATED ARTICLES" msgstr "ЭТО МОЖЕТ БЫТЬ ИНТЕРЕСНО" msgid "MORE FROM AUTHOR" msgstr "ЕЩЕ ОТ АВТОРА" msgid "VIA" msgstr "ЧЕРЕЗ" msgid "SOURCE" msgstr "ИСТОЧНИК" msgid "TAGS" msgstr "ТЕГИ" msgid "SHARE" msgstr "ПОДЕЛИТЬСЯ" msgid "Continue" msgstr "Продолжить" msgid "Read more" msgstr "Узнать больше" msgid "Name:" msgstr "Имя:" msgid "Email:" msgstr "Электронная почта:" msgid "Website:" msgstr "Веб-Сайт:" msgid "Comment:" msgstr "Комментарий:" msgid "LEAVE A REPLY" msgstr "ОСТАВЬТЕ ОТВЕТ" msgid "Post Comment" msgstr "Опубликовать Комментарий" msgid "Cancel reply" msgstr "Отменить ответ" msgid "Reply" msgstr "Ответить" msgid "Log in to leave a comment" msgstr "Войдите, чтобы оставить комментарий" msgid "NO COMMENTS" msgstr "НЕТ КОММЕНТАРИЕВ" msgid "1 COMMENT" msgstr "1 КОММЕНТАРИЙ" msgid "COMMENTS" msgstr "КОММЕНТАРИИ" msgid "REVIEW OVERVIEW" msgstr "ОЦЕНИТЬ ОБЗОР" msgid "SUMMARY" msgstr "ИТОГ" msgid "OVERALL SCORE" msgstr "КОНЕЧНЫЙ РЕЗУЛЬТАТ" msgid "Ooops... Error 404" msgstr "Упс... Ошибка 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Извините, но страница, которую Вы ищете, не существует." msgid "You can go to the" msgstr "Вы можете перейти на" msgid "HOMEPAGE" msgstr "ГЛАВНАЯ СТРАНИЦА" msgid "OUR LATEST POSTS" msgstr "НАШИ ПОСЛЕДНИЕ ПОСТЫ" msgid "Posts by" msgstr "Посты от" msgid "POSTS" msgstr "ПОСТЫ" msgid "Posts tagged with" msgstr "Посты с тегами" msgid "Tag" msgstr "Тег" msgid "Daily Archives:" msgstr "Ежедневные Архивы:" msgid "Monthly Archives:" msgstr "Ежемесячные Архивы:" msgid "Yearly Archives:" msgstr "Ежегодные Архивы:" msgid "Archives" msgstr "Архивы" msgid "LATEST ARTICLES" msgstr "САМЫЕ ПОСЛЕДНИЕ СТАТЬИ" msgid "search results" msgstr "результаты поиска" msgid "Search" msgstr "Поиск" msgid "If you're not happy with the results, please do another search" msgstr "Если результаты Вас не удовлетворяют, пожалуйста, попробуйте еще раз" msgid "Contact us" msgstr "Свяжитесь с нами" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Страница %CURRENT_PAGE% из %TOTAL_PAGES%" msgid "Next" msgstr "След" msgid "Prev" msgstr "Пред" msgid "No results for your search" msgstr "Нет результатов по Вашему запросу" msgid "No posts to display" msgstr "Нет постов для отображения" msgid "LOG IN" msgstr "ВОЙТИ" msgid "Sign in / Join" msgstr "Регистрация / Авторизация" msgid "Log In" msgstr "Войти" msgid "REGISTER" msgstr "ЗАРЕГИСТРИРОВАТЬСЯ" msgid "Send My Pass" msgstr "Отправить Мой Пароль" msgid "Forgot your password?" msgstr "Вы забыли свой пароль?" msgid "Please wait..." msgstr "Пожалуйста, подождите..." msgid "User or password incorrect!" msgstr "Неверное имя пользователя или пароль!" msgid "Email or username incorrect!" msgstr "Неверный адрес электронной почты или пароль!" msgid "Email incorrect!" msgstr "Неверный адрес электронной почты!" msgid "User or email already exists!" msgstr "Пользователь или адрес электронной почты уже существует!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Пожалуйста, проверьте свою электронную почту (входящие или спам), пароль был выслан по Вашему адресу." msgid "Email address not found!" msgstr "Адрес электронной почты не найден!" msgid "Your password is reset, check your email." msgstr "Ваш пароль сброшен, проверьте свою электронную почту." msgid "Welcome! Log into your account" msgstr "Добро пожаловать! Войдите в свою учётную запись" msgid "Register for an account" msgstr "Зарегистрируйтесь для создания учетной записи" msgid "Recover your password" msgstr "Восстановите свой пароль" msgid "your username" msgstr "Ваше имя пользователя" msgid "your password" msgstr "Ваш пароль" msgid "your email" msgstr "Ваш адрес электронной почты" msgid "A password will be e-mailed to you." msgstr "Пароль будет выслан Вам по электронной почте." msgid "Logout" msgstr "Выйти" msgid "Like" msgstr "Мне нравится" msgid "Fans" msgstr "Фанаты" msgid "Follow" msgstr "Читать" msgid "Followers" msgstr "Читатели" msgid "Subscribe" msgstr "Подписаться" msgid "Subscribers" msgstr "Подписчики" msgid "MORE STORIES" msgstr "БОЛЬШЕ ИСТОРИЙ" msgid "Latest" msgstr "Последнее" msgid "Featured posts" msgstr "Обсуждаемые посты" msgid "Most popular" msgstr "Самое популярное" msgid "7 days popular" msgstr "Популярное за 7 дней" msgid "By review score" msgstr "По оценкам в отзывах" msgid "Random" msgstr "Случайно" msgid "Trending Now" msgstr "Сейчас В Тренде" msgid "POPULAR CATEGORY" msgstr "ПОПУЛЯРНЫЕ КАТЕГОРИИ" msgid "EVEN MORE NEWS" msgstr "ЕЩЁ БОЛЬШЕ НОВОСТЕЙ" msgid "Previous (Left arrow key)" msgstr "Предыдущий (Кнопка влево)" msgid "Next (Right arrow key)" msgstr "Следующий (Кнопка вправо)" msgid "%curr% of %total%" msgstr "%curr% из %total%" msgid "The content from %url% could not be loaded." msgstr "Содержимое %url% не может быть загружено." msgid "The image #%curr% could not be loaded." msgstr "Изображение #%curr% не удалось загрузить." msgid "Blog" msgstr "Блог" msgid "Share on Facebook" msgstr "Поделиться в Facebook" msgid "Tweet on Twitter" msgstr "Твитнуть" msgid "EDITOR PICKS" msgstr "Выбор редактора" msgid "POPULAR POSTS" msgstr "Популярные посты" msgid "FOLLOW US" msgstr "Следуйте за нами" msgid "ABOUT US" msgstr "О НАС" msgid "More" msgstr "Подробнее" msgid "Featured" msgstr "Рекомендуемые" msgid "All time popular" msgstr "Все время популярные" msgid "Likes" msgstr "Лайки" msgid "Register" msgstr "Регистрация" msgid "of" msgstr "из" msgid "Euro Member Countries" msgstr "Страны-члены евро" msgid "Your comment is awaiting moderation" msgstr "Ваш комментарий ожидает модерации" msgid "Follow us on Instagram" msgstr "следуйте за нами на Instagram" msgid "Back" msgstr "назад" msgid "Sign in" msgstr "войти в систему" msgid "Sign up" msgstr "Зарегистрироваться" msgid "Join" msgstr "присоединиться" msgid "Welcome!" msgstr "Добро пожаловат!" msgid "Log into your account" msgstr "Войдите в свой аккаунт" msgid "Password recovery" msgstr "восстановление пароля" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "пожалуйста, проверьте свою электронную почту (индекс или спам папки), пароль был направлен туда." msgid "Australian Dollar" msgstr "Австралийский доллар" msgid "Bulgarian Lev" msgstr "болгарский лев" msgid "Brazilian Real" msgstr "бразильский реал" msgid "Canadian Dollar" msgstr "канадский доллар" msgid "Swiss Franc" msgstr "швейцарский франк" msgid "Chinese Yuan Renminbi" msgstr "китайский юань" msgid "Czech Republic Koruna" msgstr "чехия крона" msgid "Danish Krone" msgstr "Датская крона" msgid "British Pound" msgstr "английский фунт" msgid "Hong Kong Dollar" msgstr "Гонконгский доллар" msgid "Croatian Kuna" msgstr "хорватская куна" msgid "Hungarian Forint" msgstr "Венгерский форинт" msgid "Indonesian Rupiah" msgstr "Индонезийская рупия" msgid "Israeli Shekel" msgstr "Israeli Shekel" msgid "Indian Rupee" msgstr "Индийская рупия" msgid "Japanese Yen" msgstr "Японская иена" msgid "Korean (South) Won" msgstr "корейская вона (юг)" msgid "Mexican Peso" msgstr "мексиканский песо" msgid "Malaysian Ringgit" msgstr "малазийский ринггит" msgid "Norwegian Krone" msgstr "Норвежская крона" msgid "New Zealand Dollar" msgstr "Новозеландец" msgid "Philippine Peso" msgstr "Филиппинское песо" msgid "Polish Zloty" msgstr "польский злотый" msgid "Romanian (New) Leu" msgstr "Румынская (новый) Leu" msgid "Russian Ruble" msgstr "Русский рубль" msgid "Swedish Krona" msgstr "Шведская крона" msgid "Singapore Dollar" msgstr "Сингапурский доллар" msgid "Thai Baht" msgstr "тайский бат" msgid "Turkish Lira" msgstr "турецкая лира" msgid "United States Dollar" msgstr "Американский доллар" msgid "South African Rand" msgstr "Южноафриканский рэнд" msgid "Privacy Policy" msgstr "политика конфиденциальности" msgid "views" msgstr "Просмотры" msgid "Modified date:" msgstr "Дата изменения:" msgid "Please enter your name here" msgstr "пожалуйста, введите ваше имя здесь" msgid "Please enter your email address here" msgstr "пожалуйста, введите свой адрес электронной почты здесь" msgid "You have entered an incorrect email address!" msgstr "Вы ввели неверный адрес электронной почты!" msgid "Please enter your comment!" msgstr "Пожалуйста, введите ваш комментарий!" msgid "Logged in as" msgstr "вошли как" msgid "Log out?" msgstr "выйти?" msgid "Logged in as %s. Edit your profile." msgstr "вошел как% s. Редактировать профиль." msgid "Edit" msgstr "редактировать" msgid "Login" msgstr "авторизоваться" msgid "Send My Password" msgstr "отправить мой пароль" msgid "Create an account" msgstr "завести аккаунт" msgid "Welcome! Register for an account" msgstr "Добро пожаловать! зарегистрировать аккаунт" msgid "About me" msgstr "обо мне" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "сохраните мое имя, адрес электронной почты и веб-сайт в этом браузере для следующего комментария." msgid "Orders" msgstr "заказы" msgid "Addresses" msgstr "адреса" msgid "Account settings" msgstr "Настройки аккаунта" msgid "Hello" msgstr "Привет" msgid "No products in the cart." msgstr "Нет товаров в корзине." msgid "Product categories" msgstr "категории товаров" msgid "Product tags" msgstr "бирки продукта" msgid "Success" msgstr "успех" msgid "Acknowledgment is required!" msgstr "подтверждение обязательно!" msgid "Please fill in a valid email." msgstr "пожалуйста, заполните действующий адрес электронной почты." msgid "Please fill in an email address." msgstr "пожалуйста, заполните адрес электронной почты." msgid "Get into your account." msgstr "попасть в свой аккаунт." msgid "My subscription account" msgstr "моя учетная запись подписки" msgid "Account details" msgstr "Детали учетной записи" msgid "Subscriptions" msgstr "Подписки" msgid "My woo account" msgstr "мой аккаунт Woo" msgid "Log out" msgstr "выйти" msgid "Email address" msgstr "адрес электронной почты" msgid "Username" msgstr "имя пользователя" msgid "Password" msgstr "пароль" msgid "must contain at least one lower case (a..z)" msgstr "должен содержать хотя бы одну строчную букву (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "должен содержать хотя бы один верхний регистр (a..z)" msgid "must contain at least 6 characters in length" msgstr "должен содержать не менее 6 символов в длину" msgid "Repeat password" msgstr "Повторите пароль" msgid "Already have an account?" msgstr "уже есть аккаунт?" msgid "Recover password" msgstr "восстановить пароль" msgid "Username or Email address" msgstr "имя пользователя или адрес электронной почты" msgid "Forgot password?" msgstr "Забыли пароль?" msgid "Don't have an account?" msgstr "нет учетной записи?" msgid "Dashboard" msgstr "приборная доска" msgid "Welcome to your account!" msgstr "добро пожаловать в свой аккаунт!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "привет% 1 $ s (не% 2 $ s?% 3 $ s)! на панели управления вашей учетной записи вы можете просматривать свои подписки и управлять данными своей учетной записи." msgid "Lost Password" msgstr "потерянный пароль" msgid "Manage your account details." msgstr "управлять данными вашей учетной записи." msgid "First name" msgstr "имя" msgid "Last name" msgstr "фамилия" msgid "Display name" msgstr "показать имя" msgid "Current password" msgstr "текущий пароль" msgid "(leave blank to leave unchanged)" msgstr "(оставьте поле пустым, чтобы оставить без изменений)" msgid "New password" msgstr "новый пароль" msgid "Confirm new password" msgstr "подтвердите новый пароль" msgid "Save changes" msgstr "Сохранить изменения" msgid "All your subscriptions." msgstr "все ваши подписки." msgid "Plan" msgstr "план" msgid "Payment type" msgstr "способ оплаты" msgid "Status" msgstr "статус" msgid "Months" msgstr "месяцы" msgid "Start date" msgstr "Дата начала" msgid "End date" msgstr "Дата окончания" msgid "missing plan" msgstr "отсутствующий план" msgid "Free" msgstr "бесплатно" msgid "Active" msgstr "активный" msgid "Trial" msgstr "пробный" msgid "Blocked" msgstr "заблокирован" msgid "Closed" msgstr "закрыто" msgid "Not paid" msgstr "не оплачено" msgid "Awaiting payment" msgstr "Ожидание оплаты" msgid "Subscription info" msgstr "информация о подписке" msgid "ID" msgstr "Я БЫ" msgid "Name" msgstr "название" msgid "Company name" msgstr "название компании" msgid "VAT" msgstr "НДС" msgid "Address" msgstr "адрес" msgid "City" msgstr "город" msgid "Country/State" msgstr "штат" msgid "Email" msgstr "электронное письмо" msgid "Postal code" msgstr "Почтовый Код" msgid "Direct bank transfer details" msgstr "реквизиты для прямого банковского перевода" msgid "Account name" msgstr "название аккаунта" msgid "Account number" msgstr "номер счета" msgid "Bank name" msgstr "название банка" msgid "Routing number" msgstr "номер маршрута" msgid "IBAN" msgstr "ИБАН" msgid "Bic/Swift" msgstr "Bic / swift" msgid "Instructions" msgstr "инструкции" msgid "No subscription created." msgstr "подписка не создана." msgid "Choose plan" msgstr "выбрать план" msgid "Payment methods" msgstr "Способы оплаты" msgid "Total" msgstr "Всего" msgid "Period" msgstr "период" msgid "Subscription summary" msgstr "сводка подписки" msgid "Phone" msgstr "Телефон" msgid "Postcode" msgstr "почтовый индекс" msgid "County" msgstr "округ" msgid "Town/City" msgstr "город / город" msgid "Street address" msgstr "адрес улицы" msgid "Country/Region" msgstr "страна / регион" msgid "VAT Number" msgstr "Номер НДС" msgid "(optional)" msgstr "(по желанию)" msgid "Billing details" msgstr "Платежные реквизиты" msgid "User information" msgstr "информация о пользователе" msgid "It seems that no available payment methods have been configured." msgstr "похоже, что не настроены доступные способы оплаты." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Спасибо! мы очень рады видеть вас здесь. ваша подписка скоро будет активирована!" msgid "Our bank details" msgstr "наши банковские реквизиты" msgid "Your subscription details" msgstr "данные вашей подписки" msgid "View subscription" msgstr "просмотреть подписку" msgid "You have not selected a valid subscription plan." msgstr "вы не выбрали действующий план подписки." msgid "Field empty" msgstr "поле пустое" msgid "Empty first name" msgstr "пустое имя" msgid "Empty last name" msgstr "пустая фамилия" msgid "Empty country" msgstr "пустая страна" msgid "Empty address" msgstr "пустой адрес" msgid "Empty city" msgstr "пустой город" msgid "Empty county" msgstr "пустой округ" msgid "Empty postcode" msgstr "пустой почтовый индекс" msgid "Empty phone" msgstr "пустой телефон" msgid "Empty email" msgstr "пустой адрес электронной почты" msgid "Email or username empty!" msgstr "электронная почта или имя пользователя пусто!" msgid "Pass empty!" msgstr "пройти пустой!" msgid "Username incorrect!" msgstr "неверное имя пользователя!" msgid "Invalid Pass Pattern!" msgstr "неверный шаблон прохода!" msgid "Please activate your account by following the link sent to your email address." msgstr "пожалуйста, активируйте свою учетную запись, перейдя по ссылке, отправленной на ваш адрес электронной почты." msgid "Resend activation link" msgstr "повторно отправить ссылку активации" msgid "In order to have access to this section, you have to activate your account." msgstr "чтобы получить доступ к этому разделу, вам необходимо активировать свою учетную запись." msgid "Email empty!" msgstr "электронная почта пуста!" msgid "Username empty!" msgstr "имя пользователя пустое!" msgid "Pass pattern incorrect!" msgstr "неверный шаблон передачи!" msgid "Retyped pass empty!" msgstr "перепечатал пропуск пустой!" msgid "Retyped pass exactly!" msgstr "точно перепечатал пасс!" msgid "User already exists!" msgstr "Пользователь уже существует!" msgid "Email already exists!" msgstr "Эл. адрес уже существует!" msgid "Your account could not be created." msgstr "ваша учетная запись не может быть создана." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "пожалуйста, проверьте свою электронную почту (входящие или папку со спамом), чтобы подтвердить свою учетную запись." msgid "User empty!" msgstr "пользователь пустой!" msgid "User does not exists!" msgstr "пользователь не существует!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "создана новая ссылка для активации. пожалуйста, проверьте свою электронную почту (входящие или папку со спамом), чтобы подтвердить свою учетную запись." msgid "CAPTCHA verification failed!" msgstr "проверка капчи не удалась!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "оценка пользователя капчи не удалась. пожалуйста свяжитесь с нами!" msgid "Loading" msgstr "загрузка" msgid "Here are the results for the search:" msgstr "вот результаты поиска:" msgid "Price" msgstr "цена" msgid "EXCLUSIVE" msgstr "ЭКСКЛЮЗИВНЫЙ" msgid "Tel:" msgstr "тел:" msgid "Share" msgstr "Поделиться" msgid "Print" msgstr "Распечатать" msgid "At" msgstr "в" msgid "Comments are closed." msgstr "комментарии закрыты." msgid "Payment method" msgstr "способ оплаты" msgid "You must be logged out to view this page." msgstr "вы должны выйти из системы, чтобы просмотреть эту страницу." msgid "Retyped Pass incorrect!" msgstr "перепечатал пропуск неверный!" msgid "%s is a required field." msgstr "%s — обязательное поле." msgid "Please provide a valid email address." msgstr "Пожалуйста, представьте действующий адрес электронной почты." msgid "This email address is already registered." msgstr "Этот адрес электронной почты уже зарегистрирован." msgid "Please fill out all password fields." msgstr "пожалуйста, заполните все поля пароля." msgid "Please enter your current password." msgstr "пожалуйста, введите ваш текущий пароль." msgid "Please re-enter your password." msgstr "Пожалуйста, введите еще раз ваш пароль." msgid "New passwords do not match." msgstr "новые пароли не совпадают." msgid "Your current password is incorrect." msgstr "ваш текущий пароль неверен." msgid "Account details changed successfully." msgstr "данные учетной записи успешно изменены." msgid "A new activation link has been sent to your email address!" msgstr "на ваш адрес электронной почты отправлена новая ссылка активации!" msgid "unlimited" msgstr "неограниченный" msgid "Pay with Stripe" msgstr "платить с помощью полосы" msgid "Cancel subscription" msgstr "Отписаться от рассылки" msgid "Please check your email and confirm subscription!" msgstr "пожалуйста, проверьте свою электронную почту и подтвердите подписку!" msgid "Successfully subscribed!" msgstr "успешно подписался!" msgid "Successfully unsubscribed!" msgstr "успешно отписался!" msgid "Enter promo code here" msgstr "введите промокод здесь" msgid "Apply" msgstr "применять" msgid "Coupon applied" msgstr "купон применен" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "необнаруженная ошибка: что-то пошло не так, перезагрузите страницу и повторите попытку!" msgid "The coupon code you entered is invalid" msgstr "введенный вами код купона недействителен" msgid "The coupon code you entered has reached its usage limit" msgstr "введенный вами код купона достиг предела использования" msgid "The coupon code you entered has expired" msgstr "срок действия введенного вами кода купона истек" msgid "Coupon name is required !" msgstr "Требуется имя купона!" msgid "Please enter a coupon code first!" msgstr "пожалуйста, сначала введите код купона!" msgid "Invalid" msgstr "неверный" msgid "Applied" msgstr "применяемый" msgid "Remove" msgstr "удалять" msgid "Price not set" msgstr "цена не установлена" msgid "Grand Total" msgstr "общий итог" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "у вас уже есть подписка, но она еще ждет оплаты!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "эта подписка отменена и завершится %end_date%." msgid "Go to checkout" msgstr "перейти к оформлению заказа" msgid "Stripe invoice details" msgstr "детали счета-фактуры в полоску" msgid "Stripe subscription details" msgstr "подробности подписки на полосу" msgid "Current status" msgstr "Текущее состояние" msgid "Initial Invoice Paid" msgstr "первоначальный счет оплачен" msgid "Subscription Create: Initial Invoice Paid" msgstr "создать подписку: первоначальный счет оплачен" msgid "Subscription Create: Initial Invoice has been created" msgstr "создание подписки: создан первоначальный счет-фактура" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "создание подписки: первоначальный счет оформлен и готов к оплате" msgid "Subscription Update: Invoice Paid" msgstr "обновление подписки: счет оплачен" msgid "Subscription Renew: Invoice Paid" msgstr "продление подписки: счет оплачен" msgid "Subscription Renew: Invoice Finalized" msgstr "продление подписки: счет завершен" msgid "Subscription Renew: Invoice Created" msgstr "продление подписки: счет создан" msgid "Subscription Renew: Invoice Upcoming" msgstr "продление подписки: ожидается выставление счета" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "срок подписки истек: счет аннулирован (первый счет не оплачен)" msgid "Subscription Deleted" msgstr "подписка удалена" msgid "Subscription Create: Trialing" msgstr "создание подписки: пробная версия" msgid "Subscription Canceled" msgstr "подписка отменена" msgid "Subscription Create: Initial Invoice voided" msgstr "создание подписки: первоначальный счет аннулирован" msgid "Subscription Renew: Invoice voided" msgstr "продление подписки: счет аннулирован" msgid "Subscription Update: Invoice voided" msgstr "обновление подписки: счет аннулирован" msgid "Invoice updated" msgstr "счет обновлен" msgid "Subscription has been canceled and will end on: " msgstr "подписка отменена и завершится:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "установка успешна — вы успешно настроили способ оплаты для будущих платежей." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "установка не удалась. К сожалению, при настройке способа оплаты произошла ошибка. пожалуйста, попробуйте еще раз, используя другой способ оплаты." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "платеж успешен — ваш последний платеж по подписке был успешно завершен." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "обработка платежа — обрабатывается ваш последний платеж по подписке." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "оплата не удалась. Приносим извинения, при обработке вашего платежа произошла ошибка. пожалуйста, попробуйте еще раз, используя другой способ оплаты." msgid "Download" msgstr "скачать" msgid "Stripe invoice" msgstr "полосатый счет" msgid "N/A" msgstr "н/д" msgid "Latest invoice" msgstr "последний счет" msgid "Invoice" msgstr "счет" msgid "Unpaid subscription." msgstr "неоплаченная подписка." msgid "Locked subscription." msgstr "заблокированная подписка." msgid "Invalid subscription." msgstr "недействительная подписка." msgid "Pay now" msgstr "заплатить сейчас" msgid "Show more info" msgstr "показать больше информации" msgid "Show less info" msgstr "показывать меньше информации" msgid "Complete payment" msgstr "полная оплата" msgid "or" msgstr "или" msgid "Setup Payment" msgstr "настроить платеж" msgid "Go to Payment" msgstr "перейти к оплате" msgid "Alphabetical A -> Z" msgstr "алфавитный а -> я" msgid "Oldest posts" msgstr "самые старые сообщения" msgid "Select" msgstr "выбирать" msgid "on" msgstr "на" msgid "No bookmarked posts" msgstr "нет записей в закладках" msgid "Log in With Facebook" msgstr "Войти с Facebook" msgid "Forgot your password? Get help" msgstr "Забыли пароль? получить помощь" msgid "Someone has requested a password reset for the following account:" msgstr "кто-то запросил сброс пароля для следующей учетной записи:" msgid "Username: %s" msgstr "имя пользователя: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "если это была ошибка, просто проигнорируйте это письмо, и ничего не произойдет." msgid "To reset your password, visit the following address:" msgstr "чтобы сбросить пароль, посетите следующий адрес:" msgid "Members" msgstr "члены" msgid "Downloads" msgstr "загрузки" msgid "inc. TAX" msgstr "инк. налог" msgid "ex. TAX" msgstr "бывший. налог" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "при попытке создать публикацию произошла непредвиденная ошибка. Пожалуйста, попробуйте еще раз." msgid "Your post has been successfully created." msgstr "ваш пост успешно создан." msgid "Your post has been successfully updated." msgstr "ваше сообщение было успешно обновлено." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "произошла непредвиденная ошибка, и письмо не удалось отправить." msgid "Location:" msgstr "расположение:" msgid "The email has been successfully sent." msgstr "письмо было успешно отправлено." msgid "An unexpected error has occurred. Please try again." msgstr "Произошла непредвиденная ошибка. Пожалуйста, попробуйте еще раз." msgid "Drag and drop or browse" msgstr "перетащите или просмотрите" msgid "Search by keyword..." msgstr "Поиск по ключевым словам..." msgid "Select parent" msgstr "выбрать родителя" msgid "Add new" msgstr "Добавить новое" msgid "Parent" msgstr "родитель" msgid "Select child" msgstr "выбрать ребенка" msgid "Select sub-child" msgstr "выбрать дочернего ребенка" msgid "Posted by" msgstr "Сообщение от" msgid "Overall" msgstr "общий" msgid "Post review" msgstr "опубликовать обзор" msgid "This field is required!" msgstr "Это поле обязательно к заполнению!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "ваш отзыв опубликован. пожалуйста, обновите страницу, чтобы увидеть ее." msgid "Your review has been registered and is awaiting approval." msgstr "Ваш отзыв зарегистрирован и ожидает одобрения." msgid "Submit reply" msgstr "отправить ответ" msgid "Enter your reply" msgstr "введите свой ответ" msgid "Cancel" msgstr "отмена" msgid "Some required fields have been left blank." msgstr "некоторые обязательные поля остались пустыми." msgid "Please enter a valid email address." msgstr "Пожалуйста, введите действительный адрес электронной почты." msgid "The number cannot be lower than" msgstr "число не может быть меньше" msgid "The number cannot be higher than" msgstr "число не может быть больше" msgid "Leave a review" msgstr "оставить отзыв" msgid "Submit" msgstr "представлять на рассмотрение" msgid "Update" msgstr "обновлять" msgid "out of 5" msgstr "из 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "вы достигли лимита отзывов, которые вы можете отправить для этой статьи" msgid "Log in to leave a review." msgstr "войдите, чтобы оставить отзыв." msgid "Enter a title for your review" msgstr "введите название вашего обзора" msgid "Enter your review" msgstr "введите свой отзыв" msgid "Review criteria" msgstr "критерии обзора" msgid "Enter Your Name or Company" msgstr "введите свое имя или компанию" msgid "Submit review" msgstr "добавить отзыв" msgid "Delete" msgstr "удалить" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "ваш ответ опубликован. пожалуйста, обновите страницу, чтобы увидеть ее." msgid "You have not created any posts." msgstr "вы не создали ни одной публикации." msgid "The selected post has been successfully deleted." msgstr "выбранное сообщение было успешно удалено." msgid "Rating" msgstr "рейтинг" msgid "Title" msgstr "заголовок" msgid "Post image" msgstr "опубликовать изображение" msgid "Categories" msgstr "категории" msgid "Date" msgstr "дата" msgid "Source title" msgstr "название источника" msgid "No rating" msgstr "без рейтинга" msgid "View" msgstr "вид" msgid "Publish" msgstr "публиковать" msgid "Add new post" msgstr "добавить новый пост" msgid "Edit post" msgstr "Редактировать сообщение" msgid "Publish a post" msgstr "опубликовать сообщение" msgid "The status for %POST_TITLE% has been changed." msgstr "статус %post_title% был изменен." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "вы уверены, что хотите опубликовать %post_title%?" msgid "Delete a post" msgstr "удалить сообщение" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "вы уверены, что хотите удалить %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% перемещен в корзину." msgid "You do not hold the required priveleges to execute this request." msgstr "у вас нет необходимых привилегий для выполнения этого запроса." msgid "No search results." msgstr "Нет Результатов Поиска." msgid "Yes" msgstr "да" msgid "No" msgstr "нет" msgid "Save" msgstr "сохранять" msgid "Search for a location" msgstr "искать место" msgid "Address line" msgstr "адресная строка" msgid "(Optional)" msgstr "(необязательный)" msgid "State" msgstr "состояние" msgid "Country" msgstr "страна" msgid "Create new term" msgstr "создать новый термин" msgid "Description" msgstr "описание" msgid "Delete bookmarks" msgstr "удалить закладки" msgid "Reset your password" msgstr "сбросить пароль" msgid "The password reset key has expired." msgstr "Срок действия ключа сброса пароля истек." msgid "The password reset key is invalid." msgstr "ключ сброса пароля недействителен." msgid "New password *" msgstr "Новый пароль *" msgid "Repeat new password *" msgstr "повторите новый пароль *" msgid "Save password" msgstr "Сохраните пароль" msgid "Your account has been successfully activated!" msgstr "ваша учетная запись успешно активирована!" msgid "Your account has already been activated!" msgstr "Ваш аккаунт уже был активирован!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "проверьте свою электронную почту на наличие правильной ссылки активации. эта ссылка недействительна." msgid "Account activation" msgstr "активация аккаунта" msgid "Please enter a new password before proceeding." msgstr "пожалуйста, введите новый пароль, прежде чем продолжить." msgid "Please confirm the new password before proceeding." msgstr "пожалуйста, подтвердите новый пароль, прежде чем продолжить." msgid "Please make sure that the passwords match." msgstr "пожалуйста, убедитесь, что пароли совпадают." msgid "The password has been reset successfully." msgstr "пароль успешно сброшен." msgid "Manage your billing details." msgstr "управлять своими платежными данными." msgid "Profile picture" msgstr "изображение профиля" msgid "Remaining publishing rights." msgstr "оставшиеся права на публикацию." msgid "The number of articles you have left to publish across different post types." msgstr "количество статей, которые вам осталось опубликовать в разных типах публикаций." msgid "Bank transfer" msgstr "банковский перевод" msgid "Direct Bank Transfer" msgstr "прямой банковский перевод" msgid "Canceled" msgstr "отменен" msgid "Cycle Interval" msgstr "интервал цикла" msgid "In order to update this filed, you have to activate your account." msgstr "Чтобы обновить это поле, вам необходимо активировать свою учетную запись." msgid "Cannot process %s field." msgstr "невозможно обработать поле %s." msgid "Modified date" msgstr "дата изменения" translation/ja.po000064400000116342150211537140010042 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja\n" msgid "View all results" msgstr "結果を全部見る" msgid "No results" msgstr "結果なし" msgid "Home" msgstr "ホーム" msgid "CLOSE" msgstr "閉じる" msgid "Page" msgstr "ページ" msgid "All" msgstr "全部" msgid "By" msgstr "から" msgid "Load more" msgstr "もっとロードする" msgid "View all posts in" msgstr "投稿を全部見る" msgid "Tags" msgstr "タグ" msgid "Previous article" msgstr "前の記事" msgid "Next article" msgstr "次の記事" msgid "Authors" msgstr "著者" msgid "Author" msgstr "著者" msgid "RELATED ARTICLES" msgstr "関連記事" msgid "MORE FROM AUTHOR" msgstr "同じ著者から" msgid "VIA" msgstr "から" msgid "SOURCE" msgstr "ソース" msgid "TAGS" msgstr "タグ" msgid "SHARE" msgstr "シェア" msgid "Continue" msgstr "続ける" msgid "Read more" msgstr "もっと読む" msgid "Name:" msgstr "名前:" msgid "Email:" msgstr "Eメール:" msgid "Website:" msgstr "ウェブサイト:" msgid "Comment:" msgstr "コメント:" msgid "LEAVE A REPLY" msgstr "返事を書く" msgid "Post Comment" msgstr "コメントを書く" msgid "Cancel reply" msgstr "返事をキャンセル" msgid "Reply" msgstr "返事" msgid "Log in to leave a comment" msgstr "ログインしてコメントを書く" msgid "NO COMMENTS" msgstr "コメントなし" msgid "1 COMMENT" msgstr "1コメント" msgid "COMMENTS" msgstr "コメント" msgid "REVIEW OVERVIEW" msgstr "概要を観覧" msgid "SUMMARY" msgstr "概要" msgid "OVERALL SCORE" msgstr "全体のスコア" msgid "Ooops... Error 404" msgstr "エラー404発生" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "すみません。 ページは存在しません。" msgid "You can go to the" msgstr "次にいけます" msgid "HOMEPAGE" msgstr "ホームページ" msgid "OUR LATEST POSTS" msgstr "最近の投稿" msgid "Posts by" msgstr "からの投稿" msgid "POSTS" msgstr "投稿" msgid "Posts tagged with" msgstr "同じタグの投稿" msgid "Tag" msgstr "タグ" msgid "Daily Archives:" msgstr "デイリーアーカイブ" msgid "Monthly Archives:" msgstr "マンスリーアーカイブ" msgid "Yearly Archives:" msgstr "年間アーカイブ" msgid "Archives" msgstr "アーカイブ" msgid "LATEST ARTICLES" msgstr "最新アーカイブ" msgid "search results" msgstr "検索結果" msgid "Search" msgstr "検索" msgid "If you're not happy with the results, please do another search" msgstr "結果が一致しない場合はもう一度検索してください" msgid "Contact us" msgstr "お問い合わせ" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "ページ%CURRENT_PAGE%の%TOTAL_PAGES%" msgid "Next" msgstr "次" msgid "Prev" msgstr "前" msgid "No results for your search" msgstr "検索結果はありません" msgid "No posts to display" msgstr "表示できる投稿はありません" msgid "LOG IN" msgstr "ログイン" msgid "Sign in / Join" msgstr "サインイン/登録する" msgid "Log In" msgstr "ログイン" msgid "REGISTER" msgstr "新規登録" msgid "Send My Pass" msgstr "パスを送る" msgid "Forgot your password?" msgstr "パスワードを忘れましたか?" msgid "Please wait..." msgstr "お待ちください" msgid "User or password incorrect!" msgstr "ユーザーかパスワードが間違ってます!" msgid "Email or username incorrect!" msgstr "Eメールかユーザ名が間違ってます!" msgid "Email incorrect!" msgstr "Eメールが間違ってます!" msgid "User or email already exists!" msgstr "ユーザーかEメールはすで登録されてます!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "パスワードが送信されたEメール(インデックスかスパムフォルダ)を確認してください。" msgid "Email address not found!" msgstr "Eメールアドレスは見つかりませんでした" msgid "Your password is reset, check your email." msgstr "パスワードはリセットされました。 Eメールを確認してください" msgid "Welcome! Log into your account" msgstr "ようこそ! アカウントにログインしてください" msgid "Register for an account" msgstr "アカウントを取得する" msgid "Recover your password" msgstr "パスワードをリカバーする" msgid "your username" msgstr "あなたのユーザー名" msgid "your password" msgstr "あなたのパスワード" msgid "your email" msgstr "あなたのEメール" msgid "A password will be e-mailed to you." msgstr "パスワードはEメールで送られます" msgid "Logout" msgstr "ログアウト" msgid "Like" msgstr "いいね" msgid "Fans" msgstr "ファン" msgid "Follow" msgstr "フォロー" msgid "Followers" msgstr "フォロワー" msgid "Subscribe" msgstr "購読" msgid "Subscribers" msgstr "購読者" msgid "MORE STORIES" msgstr "他の記事" msgid "Latest" msgstr "最新" msgid "Featured posts" msgstr "特集投稿" msgid "Most popular" msgstr "人気順" msgid "7 days popular" msgstr "7日間人気" msgid "By review score" msgstr "評価順" msgid "Random" msgstr "ランダム" msgid "Trending Now" msgstr "今話題" msgid "POPULAR CATEGORY" msgstr "人気カテゴリ" msgid "EVEN MORE NEWS" msgstr "もっと他のニュース" msgid "Previous (Left arrow key)" msgstr "前(左アロー キー)" msgid "Next (Right arrow key)" msgstr "次(右アロー キー)" msgid "%curr% of %total%" msgstr "%curr%の%total%" msgid "The content from %url% could not be loaded." msgstr "%url%のコンテンツはロードできませんでした。" msgid "The image #%curr% could not be loaded." msgstr "#%curr%からの画像はロードできませんでした。" msgid "Blog" msgstr "ブログ" msgid "Share on Facebook" msgstr "フェイスブックでシェア" msgid "Tweet on Twitter" msgstr "ツイッターでツイート" msgid "EDITOR PICKS" msgstr "エディタのピック" msgid "POPULAR POSTS" msgstr "人気の投稿" msgid "FOLLOW US" msgstr "フォローします" msgid "ABOUT US" msgstr "私たちに関しては" msgid "More" msgstr "もっと" msgid "Featured" msgstr "おすすめの" msgid "All time popular" msgstr "すべての時間の人気" msgid "Likes" msgstr "同類" msgid "Register" msgstr "登録" msgid "of" msgstr "の" msgid "Euro Member Countries" msgstr "ユーロ加盟国" msgid "Your comment is awaiting moderation" msgstr "あなたのコメントは管理者の承認待ちです" msgid "Follow us on Instagram" msgstr "Instagramの上で私たちに従います" msgid "Back" msgstr "バック" msgid "Sign in" msgstr "サインイン" msgid "Sign up" msgstr "サインアップ" msgid "Join" msgstr "参加します" msgid "Welcome!" msgstr "ようこそ!" msgid "Log into your account" msgstr "あなたのアカウントにログイン" msgid "Password recovery" msgstr "パスワードの復元" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "あなたの電子メール(インデックスまたは迷惑メールフォルダ)を確認してください、パスワードはそこに送られました。" msgid "Australian Dollar" msgstr "オーストラリアドル" msgid "Bulgarian Lev" msgstr "ブルガリアレフ" msgid "Brazilian Real" msgstr "ブラジルレアル" msgid "Canadian Dollar" msgstr "カナダドル" msgid "Swiss Franc" msgstr "スイスフラン" msgid "Chinese Yuan Renminbi" msgstr "中国人民元" msgid "Czech Republic Koruna" msgstr "チェココルナ" msgid "Danish Krone" msgstr "デンマーク・クローネ" msgid "British Pound" msgstr "英国ポンド" msgid "Hong Kong Dollar" msgstr "香港ドル" msgid "Croatian Kuna" msgstr "クロアチアクーナ" msgid "Hungarian Forint" msgstr "ハンガリーフォリント" msgid "Indonesian Rupiah" msgstr "インドネシアルピア" msgid "Israeli Shekel" msgstr "イスラエル・シェケル" msgid "Indian Rupee" msgstr "インドルピー" msgid "Japanese Yen" msgstr "日本円" msgid "Korean (South) Won" msgstr "韓国(南)ウォン" msgid "Mexican Peso" msgstr "メキシコペソ" msgid "Malaysian Ringgit" msgstr "マレーシアリンギット" msgid "Norwegian Krone" msgstr "ノルウェークローネ" msgid "New Zealand Dollar" msgstr "ニュージーランドドル" msgid "Philippine Peso" msgstr "フィリピンペソ" msgid "Polish Zloty" msgstr "ポーランドズロチ" msgid "Romanian (New) Leu" msgstr "ルーマニア(新)レイ" msgid "Russian Ruble" msgstr "ロシアルーブル" msgid "Swedish Krona" msgstr "スウェーデンクローナ" msgid "Singapore Dollar" msgstr "シンガポールドル" msgid "Thai Baht" msgstr "タイバーツ" msgid "Turkish Lira" msgstr "トルコリラ" msgid "United States Dollar" msgstr "米ドル" msgid "South African Rand" msgstr "南アフリカランド" msgid "Privacy Policy" msgstr "個人情報保護方針" msgid "views" msgstr "ビュー" msgid "Modified date:" msgstr "変更日:" msgid "Please enter your name here" msgstr "ここにあなたの名前を入力してください" msgid "Please enter your email address here" msgstr "ここにあなたのEメールアドレスを入力してください" msgid "You have entered an incorrect email address!" msgstr "間違ったメールアドレスを入力しました。" msgid "Please enter your comment!" msgstr "あなたのコメントを入力してください。" msgid "Logged in as" msgstr "としてログイン" msgid "Log out?" msgstr "ログアウト?" msgid "Logged in as %s. Edit your profile." msgstr "%sとしてログインしました。あなたのプロフィールを編集します。" msgid "Edit" msgstr "編集する" msgid "Login" msgstr "ログイン" msgid "Send My Password" msgstr "パスワードを送信する" msgid "Create an account" msgstr "アカウントを作成する" msgid "Welcome! Register for an account" msgstr "ようこそ!アカウントを登録する" msgid "About me" msgstr "私について" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "次回の私のコメントのためにこのブラウザに私の名前、電子メール、そしてウェブサイトを保存してください。" msgid "Orders" msgstr "注文" msgid "Addresses" msgstr "住所" msgid "Account settings" msgstr "アカウント設定" msgid "Hello" msgstr "こんにちは" msgid "No products in the cart." msgstr "カートに商品はありません。" msgid "Product categories" msgstr "製品カテゴリ" msgid "Product tags" msgstr "商品タグ" msgid "Success" msgstr "成功" msgid "Acknowledgment is required!" msgstr "承認が必要です!" msgid "Please fill in a valid email." msgstr "有効なメールアドレスを入力してください。" msgid "Please fill in an email address." msgstr "メールアドレスを入力してください。" msgid "Get into your account." msgstr "アカウントにアクセスします。" msgid "My subscription account" msgstr "私のサブスクリプションアカウント" msgid "Account details" msgstr "アカウント詳細" msgid "Subscriptions" msgstr "サブスクリプション" msgid "My woo account" msgstr "私のウーアカウント" msgid "Log out" msgstr "ログアウト" msgid "Email address" msgstr "電子メールアドレス" msgid "Username" msgstr "ユーザー名" msgid "Password" msgstr "パスワード" msgid "must contain at least one lower case (a..z)" msgstr "少なくとも1つの小文字(a..z)を含める必要があります" msgid "must contain at least one upper case (A..Z)" msgstr "少なくとも1つの大文字(a..z)を含める必要があります" msgid "must contain at least 6 characters in length" msgstr "6文字以上の長さが必要です" msgid "Repeat password" msgstr "パスワードを再度入力してください" msgid "Already have an account?" msgstr "すでにアカウントをお持ちですか?" msgid "Recover password" msgstr "パスワード復旧" msgid "Username or Email address" msgstr "ユーザー名またはメールアドレス" msgid "Forgot password?" msgstr "パスワードをお忘れですか?" msgid "Don't have an account?" msgstr "アカウントをお持ちではありませんか?" msgid "Dashboard" msgstr "ダッシュボード" msgid "Welcome to your account!" msgstr "あなたのアカウントへようこそ!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "こんにちは%1 $ s(%2 $ sではありませんか?%3 $ s)!アカウントダッシュボードから、サブスクリプションを表示し、アカウントの詳細を管理できます。" msgid "Lost Password" msgstr "パスワードを紛失した" msgid "Manage your account details." msgstr "アカウントの詳細を管理します。" msgid "First name" msgstr "ファーストネーム" msgid "Last name" msgstr "苗字" msgid "Display name" msgstr "表示名" msgid "Current password" msgstr "現在のパスワード" msgid "(leave blank to leave unchanged)" msgstr "(変更しない場合は空白のままにします)" msgid "New password" msgstr "新しいパスワード" msgid "Confirm new password" msgstr "新しいパスワードを確認" msgid "Save changes" msgstr "変更内容を保存" msgid "All your subscriptions." msgstr "すべてのサブスクリプション。" msgid "Plan" msgstr "予定" msgid "Payment type" msgstr "支払いタイプ" msgid "Status" msgstr "状態" msgid "Months" msgstr "月" msgid "Start date" msgstr "開始日" msgid "End date" msgstr "終了日" msgid "missing plan" msgstr "行方不明の計画" msgid "Free" msgstr "自由" msgid "Active" msgstr "アクティブ" msgid "Trial" msgstr "トライアル" msgid "Blocked" msgstr "ブロックされた" msgid "Closed" msgstr "閉まっている" msgid "Not paid" msgstr "未払い" msgid "Awaiting payment" msgstr "支払いを待っている" msgid "Subscription info" msgstr "サブスクリプション情報" msgid "ID" msgstr "ID" msgid "Name" msgstr "名前" msgid "Company name" msgstr "会社名" msgid "VAT" msgstr "バット" msgid "Address" msgstr "住所" msgid "City" msgstr "市" msgid "Country/State" msgstr "国/州" msgid "Email" msgstr "Eメール" msgid "Postal code" msgstr "郵便番号" msgid "Direct bank transfer details" msgstr "銀行振込の詳細" msgid "Account name" msgstr "アカウント名" msgid "Account number" msgstr "口座番号" msgid "Bank name" msgstr "銀行名" msgid "Routing number" msgstr "銀行コード" msgid "IBAN" msgstr "イバン" msgid "Bic/Swift" msgstr "Bic / swift" msgid "Instructions" msgstr "手順" msgid "No subscription created." msgstr "サブスクリプションは作成されません。" msgid "Choose plan" msgstr "プランを選択" msgid "Payment methods" msgstr "お支払い方法" msgid "Total" msgstr "合計" msgid "Period" msgstr "限目" msgid "Subscription summary" msgstr "サブスクリプションの概要" msgid "Phone" msgstr "電話" msgid "Postcode" msgstr "郵便番号" msgid "County" msgstr "郡" msgid "Town/City" msgstr "町/市" msgid "Street address" msgstr "住所" msgid "Country/Region" msgstr "国/地域" msgid "VAT Number" msgstr "VAT番号" msgid "(optional)" msgstr "(オプション)" msgid "Billing details" msgstr "支払明細" msgid "User information" msgstr "ユーザー情報" msgid "It seems that no available payment methods have been configured." msgstr "利用可能な支払い方法が設定されていないようです。" msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "ありがとう!ここでお会いできることをうれしく思います。サブスクリプションはまもなくアクティブになります!" msgid "Our bank details" msgstr "私たちの銀行の詳細" msgid "Your subscription details" msgstr "サブスクリプションの詳細" msgid "View subscription" msgstr "サブスクリプションを表示" msgid "You have not selected a valid subscription plan." msgstr "有効なサブスクリプションプランを選択していません。" msgid "Field empty" msgstr "空のフィールド" msgid "Empty first name" msgstr "空の名" msgid "Empty last name" msgstr "空の姓" msgid "Empty country" msgstr "空の国" msgid "Empty address" msgstr "空のアドレス" msgid "Empty city" msgstr "空の街" msgid "Empty county" msgstr "空の郡" msgid "Empty postcode" msgstr "空の郵便番号" msgid "Empty phone" msgstr "空の電話" msgid "Empty email" msgstr "空のメール" msgid "Email or username empty!" msgstr "メールアドレスまたはユーザー名が空です!" msgid "Pass empty!" msgstr "空を渡す!" msgid "Username incorrect!" msgstr "ユーザー名が正しくありません!" msgid "Invalid Pass Pattern!" msgstr "パスパターンが無効です!" msgid "Please activate your account by following the link sent to your email address." msgstr "あなたのメールアドレスに送信されたリンクをたどってアカウントをアクティブにしてください。" msgid "Resend activation link" msgstr "アクティベーションリンクを再送" msgid "In order to have access to this section, you have to activate your account." msgstr "このセクションにアクセスするには、アカウントをアクティブ化する必要があります。" msgid "Email empty!" msgstr "メールが空です!" msgid "Username empty!" msgstr "ユーザー名が空です!" msgid "Pass pattern incorrect!" msgstr "パスパターンが正しくありません!" msgid "Retyped pass empty!" msgstr "再入力されたパスは空です!" msgid "Retyped pass exactly!" msgstr "パスを正確に再入力しました!" msgid "User already exists!" msgstr "このユーザーは既に存在します!" msgid "Email already exists!" msgstr "メールは既に存在します!" msgid "Your account could not be created." msgstr "アカウントを作成できませんでした。" msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "メール(受信トレイまたはスパムフォルダ)を確認して、アカウントを検証してください。" msgid "User empty!" msgstr "ユーザーが空です!" msgid "User does not exists!" msgstr "ユーザーが存在しません!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "新しいアクティベーションリンクが生成されました。メール(受信トレイまたはスパムフォルダ)を確認して、アカウントを検証してください。" msgid "CAPTCHA verification failed!" msgstr "キャプチャの検証に失敗しました!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Captchaユーザースコアが失敗しました。お問い合わせください!" msgid "Loading" msgstr "読み込み中" msgid "Here are the results for the search:" msgstr "検索結果は次のとおりです。" msgid "Price" msgstr "価格" msgid "EXCLUSIVE" msgstr "エクスクルーシブ" msgid "Tel:" msgstr "Tel:" msgid "Share" msgstr "シェア" msgid "Print" msgstr "印刷" msgid "At" msgstr "で" msgid "Comments are closed." msgstr "コメントは締め切りました。" msgid "Payment method" msgstr "支払方法" msgid "You must be logged out to view this page." msgstr "このページを表示するにはログアウトする必要があります。" msgid "Retyped Pass incorrect!" msgstr "再入力したパスが間違っています!" msgid "%s is a required field." msgstr "%s は必須フィールドです。" msgid "Please provide a valid email address." msgstr "有効なメールアドレスを入力してください。" msgid "This email address is already registered." msgstr "このメールアドレスはすでに登録されています。" msgid "Please fill out all password fields." msgstr "すべてのパスワードフィールドに入力してください。" msgid "Please enter your current password." msgstr "現在のパスワードを入力してください。" msgid "Please re-enter your password." msgstr "パスワードを再入力してください。" msgid "New passwords do not match." msgstr "新しいパスワードが一致しません。" msgid "Your current password is incorrect." msgstr "現在のパスワードが間違っています。" msgid "Account details changed successfully." msgstr "アカウントの詳細が正常に変更されました。" msgid "A new activation link has been sent to your email address!" msgstr "新しいアクティベーション リンクがあなたの電子メール アドレスに送信されました。" msgid "unlimited" msgstr "無制限" msgid "Pay with Stripe" msgstr "ストライプで支払う" msgid "Cancel subscription" msgstr "サブスクリプションをキャンセルする" msgid "Please check your email and confirm subscription!" msgstr "メールをチェックして購読を確認してください。" msgid "Successfully subscribed!" msgstr "無事購読されました!" msgid "Successfully unsubscribed!" msgstr "無事に退会できました!" msgid "Enter promo code here" msgstr "ここにプロモーションコードを入力してください" msgid "Apply" msgstr "適用する" msgid "Coupon applied" msgstr "クーポンが適用されました" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "キャッチされないエラー: 問題が発生しました。ページをリロードしてもう一度お試しください。" msgid "The coupon code you entered is invalid" msgstr "入力したクーポンコードは無効です" msgid "The coupon code you entered has reached its usage limit" msgstr "入力したクーポンコードは使用制限に達しました" msgid "The coupon code you entered has expired" msgstr "入力したクーポンコードの有効期限が切れています" msgid "Coupon name is required !" msgstr "クーポン名は必須です!" msgid "Please enter a coupon code first!" msgstr "まずはクーポンコードを入力してください!" msgid "Invalid" msgstr "無効" msgid "Applied" msgstr "適用済み" msgid "Remove" msgstr "取り除く" msgid "Price not set" msgstr "価格は設定されていません" msgid "Grand Total" msgstr "総計" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "すでにサブスクリプションをお持ちですが、まだ支払いを待っている状態です。" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "このサブスクリプションはキャンセルされており、%end_date% に終了します。" msgid "Go to checkout" msgstr "チェックアウトに行きます" msgid "Stripe invoice details" msgstr "請求書の詳細をストライプ化する" msgid "Stripe subscription details" msgstr "ストライプのサブスクリプションの詳細" msgid "Current status" msgstr "現在のステータス" msgid "Initial Invoice Paid" msgstr "最初の請求書が支払われました" msgid "Subscription Create: Initial Invoice Paid" msgstr "サブスクリプションの作成: 初回の請求書が支払われました" msgid "Subscription Create: Initial Invoice has been created" msgstr "サブスクリプションの作成: 最初の請求書が作成されました" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "サブスクリプションの作成: 最初の請求書が完成し、支払う準備ができています。" msgid "Subscription Update: Invoice Paid" msgstr "サブスクリプションの更新: 請求書支払い済み" msgid "Subscription Renew: Invoice Paid" msgstr "サブスクリプションの更新: 請求書支払い済み" msgid "Subscription Renew: Invoice Finalized" msgstr "サブスクリプションの更新: 請求書が完成しました" msgid "Subscription Renew: Invoice Created" msgstr "サブスクリプションの更新: 請求書が作成されました" msgid "Subscription Renew: Invoice Upcoming" msgstr "サブスクリプションの更新: 請求書が近日発行されます" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "サブスクリプションの有効期限が切れました: 請求書は無効になりました (最初の請求書は支払われませんでした)" msgid "Subscription Deleted" msgstr "サブスクリプションが削除されました" msgid "Subscription Create: Trialing" msgstr "サブスクリプションの作成: トライアル中" msgid "Subscription Canceled" msgstr "サブスクリプションがキャンセルされました" msgid "Subscription Create: Initial Invoice voided" msgstr "サブスクリプションの作成: 初回の請求書は無効になりました" msgid "Subscription Renew: Invoice voided" msgstr "サブスクリプションの更新: 請求書は無効になりました" msgid "Subscription Update: Invoice voided" msgstr "サブスクリプションの更新: 請求書は無効になりました" msgid "Invoice updated" msgstr "請求書が更新されました" msgid "Subscription has been canceled and will end on: " msgstr "サブスクリプションはキャンセルされ、次の日に終了します:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "セットアップ成功 - 今後の支払いのための支払い方法が正常にセットアップされました。" msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "セットアップに失敗しました - 申し訳ありませんが、お支払い方法のセットアップ中にエラーが発生しました。別のお支払い方法でもう一度お試しください。" msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "支払いが成功しました - 最新のサブスクリプションの支払いが正常に完了しました。" msgid "Payment processing - Your latest subscription payment is being processed." msgstr "支払い処理中 - 最新のサブスクリプション支払いが処理されています。" msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "支払いに失敗しました - 申し訳ありませんが、支払いの処理中にエラーが発生しました。別のお支払い方法でもう一度お試しください。" msgid "Download" msgstr "ダウンロード" msgid "Stripe invoice" msgstr "ストライプの請求書" msgid "N/A" msgstr "該当なし" msgid "Latest invoice" msgstr "最新の請求書" msgid "Invoice" msgstr "請求書" msgid "Unpaid subscription." msgstr "未払いのサブスクリプション。" msgid "Locked subscription." msgstr "ロックされたサブスクリプション。" msgid "Invalid subscription." msgstr "無効なサブスクリプションです。" msgid "Pay now" msgstr "今払う" msgid "Show more info" msgstr "さらに情報を表示" msgid "Show less info" msgstr "表示する情報を減らします" msgid "Complete payment" msgstr "支払いを完了する" msgid "or" msgstr "または" msgid "Setup Payment" msgstr "支払いの設定" msgid "Go to Payment" msgstr "支払いに行く" msgid "Alphabetical A -> Z" msgstr "アルファベットの a -> z" msgid "Oldest posts" msgstr "最も古い投稿" msgid "Select" msgstr "選択する" msgid "on" msgstr "の上" msgid "No bookmarked posts" msgstr "ブックマークされた投稿はありません" msgid "Log in With Facebook" msgstr "Facebookでログインする" msgid "Forgot your password? Get help" msgstr "パスワードをお忘れですか?助けを得ます" msgid "Someone has requested a password reset for the following account:" msgstr "誰かが次のアカウントのパスワードのリセットをリクエストしました:" msgid "Username: %s" msgstr "ユーザー名: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "これが間違いだった場合は、このメールを無視してください。何も起こりません。" msgid "To reset your password, visit the following address:" msgstr "パスワードをリセットするには、次のアドレスにアクセスしてください。" msgid "Members" msgstr "メンバー" msgid "Downloads" msgstr "ダウンロード" msgid "inc. TAX" msgstr "株式会社税" msgid "ex. TAX" msgstr "元。税" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "投稿を作成しようとしたときに予期しないエラーが発生しました。もう一度試してください。" msgid "Your post has been successfully created." msgstr "投稿は正常に作成されました。" msgid "Your post has been successfully updated." msgstr "投稿は正常に更新されました。" msgid "An unexpected error has occurred and the mail could not be sent." msgstr "予期しないエラーが発生し、メールを送信できませんでした。" msgid "Location:" msgstr "位置:" msgid "The email has been successfully sent." msgstr "メールは正常に送信されました。" msgid "An unexpected error has occurred. Please try again." msgstr "予期しないエラーが発生しました。もう一度試してください。" msgid "Drag and drop or browse" msgstr "ドラッグ アンド ドロップまたは参照" msgid "Search by keyword..." msgstr "キーワードで探す..." msgid "Select parent" msgstr "親を選択" msgid "Add new" msgstr "新しく追加する" msgid "Parent" msgstr "親" msgid "Select child" msgstr "子を選択" msgid "Select sub-child" msgstr "サブ子を選択" msgid "Posted by" msgstr "投稿者" msgid "Overall" msgstr "全体" msgid "Post review" msgstr "レビューを投稿する" msgid "This field is required!" msgstr "この項目は必須です!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "あなたのレビューが公開されました。表示するにはページを更新してください。" msgid "Your review has been registered and is awaiting approval." msgstr "あなたのレビューは登録されており、承認を待っています。" msgid "Submit reply" msgstr "返信を送信する" msgid "Enter your reply" msgstr "返信を入力してください" msgid "Cancel" msgstr "キャンセル" msgid "Some required fields have been left blank." msgstr "一部の必須フィールドが空白のままになっています。" msgid "Please enter a valid email address." msgstr "有効なメールアドレスを入力してください。" msgid "The number cannot be lower than" msgstr "数値をこれより小さくすることはできません" msgid "The number cannot be higher than" msgstr "数値をこれより大きくすることはできません" msgid "Leave a review" msgstr "レビューを残す" msgid "Submit" msgstr "提出する" msgid "Update" msgstr "アップデート" msgid "out of 5" msgstr "5つのうち" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "この記事に送信できるレビューの制限に達しました" msgid "Log in to leave a review." msgstr "レビューを残すにはログインしてください。" msgid "Enter a title for your review" msgstr "レビューのタイトルを入力してください" msgid "Enter your review" msgstr "レビューを入力してください" msgid "Review criteria" msgstr "審査基準" msgid "Enter Your Name or Company" msgstr "名前または会社名を入力してください" msgid "Submit review" msgstr "レビュー送信" msgid "Delete" msgstr "消去" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "あなたの返信は公開されました。表示するにはページを更新してください。" msgid "You have not created any posts." msgstr "投稿を作成していません。" msgid "The selected post has been successfully deleted." msgstr "選択した投稿は正常に削除されました。" msgid "Rating" msgstr "評価" msgid "Title" msgstr "タイトル" msgid "Post image" msgstr "画像を投稿する" msgid "Categories" msgstr "カテゴリ" msgid "Date" msgstr "日付" msgid "Source title" msgstr "ソースタイトル" msgid "No rating" msgstr "評価なし" msgid "View" msgstr "ビュー" msgid "Publish" msgstr "公開" msgid "Add new post" msgstr "新しい投稿を追加する" msgid "Edit post" msgstr "投稿を編集する" msgid "Publish a post" msgstr "投稿を公開する" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title% のステータスが変更されました。" msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "%post_title% を公開してもよろしいですか?" msgid "Delete a post" msgstr "投稿を削除する" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "%post_title% を削除してもよろしいですか?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% はゴミ箱に移動されました。" msgid "You do not hold the required priveleges to execute this request." msgstr "このリクエストを実行するために必要な権限を持っていません。" msgid "No search results." msgstr "検索結果はありません。" msgid "Yes" msgstr "はい" msgid "No" msgstr "いいえ" msgid "Save" msgstr "保存" msgid "Search for a location" msgstr "場所を検索する" msgid "Address line" msgstr "住所欄" msgid "(Optional)" msgstr "(オプション)" msgid "State" msgstr "州" msgid "Country" msgstr "国" msgid "Create new term" msgstr "新しい用語を作成する" msgid "Description" msgstr "説明" msgid "Delete bookmarks" msgstr "ブックマークを削除する" msgid "Reset your password" msgstr "あなたのパスワードをリセット" msgid "The password reset key has expired." msgstr "パスワードリセットキーの有効期限が切れています。" msgid "The password reset key is invalid." msgstr "パスワードリセットキーが無効です。" msgid "New password *" msgstr "新しいパスワード *" msgid "Repeat new password *" msgstr "新しいパスワードを繰り返します *" msgid "Save password" msgstr "パスワードを保存する" msgid "Your account has been successfully activated!" msgstr "あなたのアカウントは正常にアクティベートされました!" msgid "Your account has already been activated!" msgstr "あなたのアカウントはすでに有効化されています!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "正しいアクティベーション リンクがあるかどうか電子メールを確認してください。このリンクは無効です。" msgid "Account activation" msgstr "アカウント開設" msgid "Please enter a new password before proceeding." msgstr "続行する前に新しいパスワードを入力してください。" msgid "Please confirm the new password before proceeding." msgstr "続行する前に、新しいパスワードを確認してください。" msgid "Please make sure that the passwords match." msgstr "パスワードが一致していることを確認してください。" msgid "The password has been reset successfully." msgstr "パスワードは正常にリセットされました。" msgid "Manage your billing details." msgstr "請求の詳細を管理します。" msgid "Profile picture" msgstr "プロフィールの写真" msgid "Remaining publishing rights." msgstr "残りの出版権。" msgid "The number of articles you have left to publish across different post types." msgstr "さまざまな投稿タイプにわたって公開するために残っている記事の数。" msgid "Bank transfer" msgstr "銀行振込" msgid "Direct Bank Transfer" msgstr "直接銀行振込" msgid "Canceled" msgstr "キャンセル" msgid "Cycle Interval" msgstr "サイクル間隔" msgid "In order to update this filed, you have to activate your account." msgstr "このフィールドを更新するには、アカウントをアクティブ化する必要があります。" msgid "Cannot process %s field." msgstr "%s フィールドを処理できません。" msgid "Modified date" msgstr "変更日" translation/hi_IN.po000064400000145255150211537140010443 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi_IN\n" msgid "View all results" msgstr "सभी परिणाम दिखाएँ" msgid "No results" msgstr "कोई परिणाम नहीं है" msgid "Home" msgstr "होम" msgid "CLOSE" msgstr "बंद करें" msgid "Page" msgstr "पेज" msgid "All" msgstr "सभी" msgid "By" msgstr "द्वारा" msgid "Load more" msgstr "और अधिक लोड करें" msgid "View all posts in" msgstr "सभी पोस्ट देखें" msgid "Tags" msgstr "टैग्स" msgid "Previous article" msgstr "पिछला लेख" msgid "Next article" msgstr "अगला लेख" msgid "Authors" msgstr "लेखक" msgid "Author" msgstr "लेखक" msgid "RELATED ARTICLES" msgstr "संबंधित लेख" msgid "MORE FROM AUTHOR" msgstr "लेखक से और अधिक" msgid "VIA" msgstr "के माध्यम से" msgid "SOURCE" msgstr "स्रोत" msgid "TAGS" msgstr "टैग्स" msgid "SHARE" msgstr "शेयर करें" msgid "Continue" msgstr "जारी रखें" msgid "Read more" msgstr "और अधिक पढ़ें" msgid "Name:" msgstr "नाम:" msgid "Email:" msgstr "ईमेल:" msgid "Website:" msgstr "वेबसाइट:" msgid "Comment:" msgstr "टिप्पणी:" msgid "LEAVE A REPLY" msgstr "कोई जवाब दें" msgid "Post Comment" msgstr "टिप्पणी पोस्ट करें" msgid "Cancel reply" msgstr "जवाब कैंसिल करें" msgid "Reply" msgstr "जवाब दें" msgid "Log in to leave a comment" msgstr "टिप्पणी करने के लिए लॉग इन करें" msgid "NO COMMENTS" msgstr "कोई टिप्पणी नहीं है" msgid "1 COMMENT" msgstr "1 टिप्पणी" msgid "COMMENTS" msgstr "टिप्पणी" msgid "REVIEW OVERVIEW" msgstr "समीक्षा निरीक्षण" msgid "SUMMARY" msgstr "सारांश" msgid "OVERALL SCORE" msgstr "कुल स्कोर" msgid "Ooops... Error 404" msgstr "ऊप्स...त्रुटि 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "माफ़ करें, लेकिन आप जो पेज खोज रहे हैं वो मौजूद नहीं है।" msgid "You can go to the" msgstr "आप निम्न पर जा सकते हैं" msgid "HOMEPAGE" msgstr "होमपेज" msgid "OUR LATEST POSTS" msgstr "हमारे नवीनतम पोस्ट" msgid "Posts by" msgstr "द्वारा पोस्ट" msgid "POSTS" msgstr "पोस्ट" msgid "Posts tagged with" msgstr "पोस्ट के साथ टैग" msgid "Tag" msgstr "टैग" msgid "Daily Archives:" msgstr "दैनिक आर्काइव:" msgid "Monthly Archives:" msgstr "मासिक आर्काइव:" msgid "Yearly Archives:" msgstr "वार्षिक आर्काइव:" msgid "Archives" msgstr "आर्काइव:" msgid "LATEST ARTICLES" msgstr "नवीनतम लेख" msgid "search results" msgstr "खोज परिणाम" msgid "Search" msgstr "खोजें" msgid "If you're not happy with the results, please do another search" msgstr "यदि आप परिणामों से खुश नहीं हैं तो कृपया कोई अन्य खोज करें" msgid "Contact us" msgstr "हमें संपर्क करें" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "पेज %TOTAL_PAGES% का %CURRENT_PAGE%" msgid "Next" msgstr "अगला" msgid "Prev" msgstr "पिछला" msgid "No results for your search" msgstr "इस खोज के लिए कोई परिणाम नहीं है" msgid "No posts to display" msgstr "डिस्प्ले करने के लिए कोई पोस्ट नहीं हैं" msgid "LOG IN" msgstr "लॉग इन" msgid "Sign in / Join" msgstr "साइन इन/ ज्वाइन करें" msgid "Log In" msgstr "लॉग इन" msgid "REGISTER" msgstr "रजिस्टर करें" msgid "Send My Pass" msgstr "मेरा पास भेजें" msgid "Forgot your password?" msgstr "अपना पासवर्ड भूल गए?" msgid "Please wait..." msgstr "कृपया प्रतीक्षा करें..." msgid "User or password incorrect!" msgstr "यूजर या पासवर्ड गलत है!" msgid "Email or username incorrect!" msgstr "ईमेल या यूजरनेम गलत है!" msgid "Email incorrect!" msgstr "ईमेल गलत है!" msgid "User or email already exists!" msgstr "यूजर या ईमेल पहले से मौजूद है!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "कृपया अपना ईमेल देखें (इंडेक्स या स्पैम फोल्डर), पासवर्ड वहां भेजा गया था।" msgid "Email address not found!" msgstr "ईमेल एड्रेस नहीं मिला!" msgid "Your password is reset, check your email." msgstr "आपका पासवर्ड रीसेट हो गया है, कृपया अपना ईमेल देखें।" msgid "Welcome! Log into your account" msgstr "आपका स्वागत है! अपने अकाउंट पर लॉग इन करें" msgid "Register for an account" msgstr "अकाउंट के लिए रजिस्टर करें" msgid "Recover your password" msgstr "अपना पासवर्ड रिकवर करें" msgid "your username" msgstr "आपका यूजरनेम" msgid "your password" msgstr "आपका पासवर्ड" msgid "your email" msgstr "आपका ईमेल" msgid "A password will be e-mailed to you." msgstr "एक पासवर्ड आपको ईमेल कर दिया जाएगा।" msgid "Logout" msgstr "लॉगआउट" msgid "Like" msgstr "लाइक करें" msgid "Fans" msgstr "फैंस" msgid "Follow" msgstr "फॉलो करें" msgid "Followers" msgstr "फॉलोवर" msgid "Subscribe" msgstr "सब्सक्राइब करें" msgid "Subscribers" msgstr "सब्सक्राइबर्स" msgid "MORE STORIES" msgstr "और अधिक कहानियां" msgid "Latest" msgstr "नवीनतम" msgid "Featured posts" msgstr "विशेष पोस्ट" msgid "Most popular" msgstr "सबसे अधिक लोकप्रिय" msgid "7 days popular" msgstr "7 दिनों के लोकप्रिय" msgid "By review score" msgstr "समीक्षा स्कोर द्वारा" msgid "Random" msgstr "क्रमरहित" msgid "Trending Now" msgstr "अभी प्रचलित" msgid "POPULAR CATEGORY" msgstr "लोकप्रिय श्रेणी" msgid "EVEN MORE NEWS" msgstr "और भी अधिक न्यूज़" msgid "Previous (Left arrow key)" msgstr "पिछला (बायीं तीर वाला बटन)" msgid "Next (Right arrow key)" msgstr "अगला (दायीं तीर वाला बटन)" msgid "%curr% of %total%" msgstr "%total% का %curr%" msgid "The content from %url% could not be loaded." msgstr "%url% से कंटेंट लोड नहीं हो पाया।" msgid "The image #%curr% could not be loaded." msgstr "इमेज #%curr% लोड नहीं हो पाया।" msgid "Blog" msgstr "ब्लॉग" msgid "Share on Facebook" msgstr "फेसबुक पर शेयर करें" msgid "Tweet on Twitter" msgstr "ट्विटर पर ट्वीट करें" msgid "EDITOR PICKS" msgstr "संपादक की पसंद" msgid "POPULAR POSTS" msgstr "लोकप्रिय पोस्ट" msgid "FOLLOW US" msgstr "हमें का पालन करें" msgid "ABOUT US" msgstr "हमारे बारे में" msgid "More" msgstr "अधिक" msgid "Featured" msgstr "चित्रित किया" msgid "All time popular" msgstr "लोकप्रिय सभी समय" msgid "Likes" msgstr "पसंद" msgid "Register" msgstr "रजिस्टर" msgid "of" msgstr "की" msgid "Euro Member Countries" msgstr "यूरो के सदस्य देशों" msgid "Your comment is awaiting moderation" msgstr "आपकी टिप्पणी संतुलित किए जाने की प्रतीक्षा कर रही है" msgid "Follow us on Instagram" msgstr "इंस्टाग्राम पर हमें का पालन करें" msgid "Back" msgstr "वापस" msgid "Sign in" msgstr "साइन इन करें" msgid "Sign up" msgstr "साइन अप करें" msgid "Join" msgstr "शामिल हो" msgid "Welcome!" msgstr "स्वागत हे!" msgid "Log into your account" msgstr "अपने खाते में प्रवेश करें" msgid "Password recovery" msgstr "पासवर्ड की दोबारा प्राप्ति" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "आपका ईमेल (सूचकांक या स्पैम फोल्डर) की जाँच करें, पासवर्ड वहां भेजा गया था।" msgid "Australian Dollar" msgstr "ऑस्ट्रलियन डॉलर" msgid "Bulgarian Lev" msgstr "बल्गेरियाई लेव" msgid "Brazilian Real" msgstr "ब्राजीली रियल" msgid "Canadian Dollar" msgstr "कैनेडियन डॉलर" msgid "Swiss Franc" msgstr "स्विस फ्रैंक" msgid "Chinese Yuan Renminbi" msgstr "चीनी युआन रॅन्मिन्बी" msgid "Czech Republic Koruna" msgstr "चेक गणराज्य कोरुना" msgid "Danish Krone" msgstr "डेनमार्क क्रोन" msgid "British Pound" msgstr "ब्रिटिश पाउंड" msgid "Hong Kong Dollar" msgstr "हांगकांग का डॉलर" msgid "Croatian Kuna" msgstr "क्रोएशियाई कुना" msgid "Hungarian Forint" msgstr "हंगरी फ़ोरिंट" msgid "Indonesian Rupiah" msgstr "इंडोनेशियाई रुपिया" msgid "Israeli Shekel" msgstr "इस्राइली शेकेल" msgid "Indian Rupee" msgstr "भारतीय रुपया" msgid "Japanese Yen" msgstr "जापानी येन" msgid "Korean (South) Won" msgstr "कोरियाई (दक्षिण) वोन" msgid "Mexican Peso" msgstr "मेक्सिकन पीसो" msgid "Malaysian Ringgit" msgstr "मलेशियाई रिंग्गित" msgid "Norwegian Krone" msgstr "नॉर्वे क्रोन" msgid "New Zealand Dollar" msgstr "न्यूजीलैंड डॉलर" msgid "Philippine Peso" msgstr "फ़िलिपीनी पीसो" msgid "Polish Zloty" msgstr "पोलिश ज़्लॉटी" msgid "Romanian (New) Leu" msgstr "रोमानियाई (नया) लियू" msgid "Russian Ruble" msgstr "रूसी रूबल" msgid "Swedish Krona" msgstr "स्वीडिश क्रोना" msgid "Singapore Dollar" msgstr "सिंगापुर का डॉलर" msgid "Thai Baht" msgstr "थाई बात" msgid "Turkish Lira" msgstr "तुर्की लीरा" msgid "United States Dollar" msgstr "यूनाइटेड स्टेट का डॉलर" msgid "South African Rand" msgstr "दक्षिण अफ्रीकी रैंड" msgid "Privacy Policy" msgstr "गोपनीयता नीति" msgid "views" msgstr "विचारों" msgid "Modified date:" msgstr "संशोधित तिथि:" msgid "Please enter your name here" msgstr "कृपया अपना नाम यहाँ दर्ज करें" msgid "Please enter your email address here" msgstr "कृपया अपना ईमेल पता यहाँ दर्ज करें" msgid "You have entered an incorrect email address!" msgstr "आपने एक गलत ईमेल पता दर्ज किया है!" msgid "Please enter your comment!" msgstr "कृपया अपनी टिप्पणी दर्ज करें!" msgid "Logged in as" msgstr "के रूप में लॉग इन किया" msgid "Log out?" msgstr "लोग आउट?" msgid "Logged in as %s. Edit your profile." msgstr "% s के रूप में लॉग इन किया। अपनी प्रोफाइल सम्पादित करें।" msgid "Edit" msgstr "संपादित करें" msgid "Login" msgstr "लॉग इन करें" msgid "Send My Password" msgstr "मेरा पासवर्ड भेजो" msgid "Create an account" msgstr "खाता बनाएं" msgid "Welcome! Register for an account" msgstr "स्वागत हे! एक खाते के लिए रजिस्टर करें" msgid "About me" msgstr "मेरे बारे में" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "अगली बार टिप्पणी के लिए इस ब्राउज़र में मेरा नाम, ईमेल और वेबसाइट सहेजें" msgid "Orders" msgstr "आदेश" msgid "Addresses" msgstr "पतों" msgid "Account settings" msgstr "अकाउंट सेटिंग" msgid "Hello" msgstr "नमस्ते" msgid "No products in the cart." msgstr "कार्ट में कोई प्रोडक्ट नहीं हैं।" msgid "Product categories" msgstr "उत्पाद श्रेणियाँ" msgid "Product tags" msgstr "उत्पाद टैग" msgid "Success" msgstr "सफलता" msgid "Acknowledgment is required!" msgstr "स्वीकृति की आवश्यकता है!" msgid "Please fill in a valid email." msgstr "कृपया एक वैध ईमेल भरें।" msgid "Please fill in an email address." msgstr "कृपया एक ईमेल पता भरें।" msgid "Get into your account." msgstr "अपने खाते में जाओ।" msgid "My subscription account" msgstr "मेरा सदस्यता खाता" msgid "Account details" msgstr "खाता विवरण" msgid "Subscriptions" msgstr "सदस्यता" msgid "My woo account" msgstr "मेरा वू खाता" msgid "Log out" msgstr "लॉग आउट" msgid "Email address" msgstr "मेल पता" msgid "Username" msgstr "उपयोगकर्ता नाम" msgid "Password" msgstr "पासवर्ड" msgid "must contain at least one lower case (a..z)" msgstr "कम से कम एक लोअर केस (a..z) होना चाहिए" msgid "must contain at least one upper case (A..Z)" msgstr "कम से कम एक अपर केस (a..z) होना चाहिए" msgid "must contain at least 6 characters in length" msgstr "लंबाई में कम से कम 6 वर्ण होने चाहिए" msgid "Repeat password" msgstr "पासवर्ड दोहराएं" msgid "Already have an account?" msgstr "क्या आपके पास पहले से एक खाता मौजूद है?" msgid "Recover password" msgstr "गोपनीय शब्द पुन प्राप्त करे" msgid "Username or Email address" msgstr "उपयोगकर्ता का नाम या ईमेल पता" msgid "Forgot password?" msgstr "पासवर्ड भूल गए?" msgid "Don't have an account?" msgstr "खाता नहीं है?" msgid "Dashboard" msgstr "डैशबोर्ड" msgid "Welcome to your account!" msgstr "आपके खाते में आपका स्वागत है!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "नमस्ते %1$s (%2$s नहीं? %3$s)! अपने खाता डैशबोर्ड से आप अपनी सदस्यताएँ देख सकते हैं और अपने खाते के विवरण प्रबंधित कर सकते हैं।" msgid "Lost Password" msgstr "पासवर्ड खो गया" msgid "Manage your account details." msgstr "अपने खाते के विवरण प्रबंधित करें।" msgid "First name" msgstr "पहला नाम" msgid "Last name" msgstr "अंतिम नाम" msgid "Display name" msgstr "प्रदर्शित होने वाला नाम" msgid "Current password" msgstr "वर्तमान पासवर्ड" msgid "(leave blank to leave unchanged)" msgstr "(अपरिवर्तित छोड़ने के लिए खाली छोड़ दें)" msgid "New password" msgstr "नया पासवर्ड" msgid "Confirm new password" msgstr "नए पासवर्ड की पुष्टि करें" msgid "Save changes" msgstr "परिवर्तनों को सुरक्षित करें" msgid "All your subscriptions." msgstr "आपकी सभी सदस्यताएँ।" msgid "Plan" msgstr "योजना" msgid "Payment type" msgstr "भुगतान के प्रकार" msgid "Status" msgstr "स्थिति" msgid "Months" msgstr "महीने" msgid "Start date" msgstr "आरंभ करने की तिथि" msgid "End date" msgstr "समाप्ति तिथि" msgid "missing plan" msgstr "लापता योजना" msgid "Free" msgstr "नि: शुल्क" msgid "Active" msgstr "सक्रिय" msgid "Trial" msgstr "परीक्षण" msgid "Blocked" msgstr "अवरोधित" msgid "Closed" msgstr "बंद किया हुआ" msgid "Not paid" msgstr "नहीं चुकाया" msgid "Awaiting payment" msgstr "भुगतान का इंतजार" msgid "Subscription info" msgstr "सदस्यता जानकारी" msgid "ID" msgstr "पहचान" msgid "Name" msgstr "नाम" msgid "Company name" msgstr "कंपनी का नाम" msgid "VAT" msgstr "टब" msgid "Address" msgstr "पता" msgid "City" msgstr "शहर" msgid "Country/State" msgstr "देश राज्य" msgid "Email" msgstr "ईमेल" msgid "Postal code" msgstr "डाक कोड" msgid "Direct bank transfer details" msgstr "प्रत्यक्ष बैंक हस्तांतरण विवरण" msgid "Account name" msgstr "खाते का नाम" msgid "Account number" msgstr "खाता संख्या" msgid "Bank name" msgstr "बैंक का नाम" msgid "Routing number" msgstr "राउटिंग नम्बर" msgid "IBAN" msgstr "इबन" msgid "Bic/Swift" msgstr "बीआईसी/स्विफ्ट" msgid "Instructions" msgstr "निर्देश" msgid "No subscription created." msgstr "कोई सदस्यता नहीं बनाई गई।" msgid "Choose plan" msgstr "योजना चुनें" msgid "Payment methods" msgstr "भुगतान की विधि" msgid "Total" msgstr "कुल" msgid "Period" msgstr "अवधि" msgid "Subscription summary" msgstr "सदस्यता सारांश" msgid "Phone" msgstr "फ़ोन" msgid "Postcode" msgstr "पोस्टकोड" msgid "County" msgstr "काउंटी" msgid "Town/City" msgstr "शहर/शहर" msgid "Street address" msgstr "गली का पता" msgid "Country/Region" msgstr "देश/क्षेत्र" msgid "VAT Number" msgstr "वैट क्रमांक" msgid "(optional)" msgstr "(वैकल्पिक)" msgid "Billing details" msgstr "बिलिंग विवरण" msgid "User information" msgstr "यूजर जानकारी" msgid "It seems that no available payment methods have been configured." msgstr "ऐसा लगता है कि कोई भी उपलब्ध भुगतान विधि कॉन्फ़िगर नहीं की गई है।" msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "धन्यवाद! हम आपको यहां देखकर प्रसन्न हैं। आपकी सदस्यता जल्द ही सक्रिय हो जाएगी!" msgid "Our bank details" msgstr "हमारे बैंक विवरण" msgid "Your subscription details" msgstr "आपकी सदस्यता विवरण" msgid "View subscription" msgstr "सदस्यता देखें" msgid "You have not selected a valid subscription plan." msgstr "आपने वैध सदस्यता योजना का चयन नहीं किया है।" msgid "Field empty" msgstr "मैदान खाली" msgid "Empty first name" msgstr "खाली पहला नाम" msgid "Empty last name" msgstr "खाली उपनाम" msgid "Empty country" msgstr "खाली देश" msgid "Empty address" msgstr "खाली पता" msgid "Empty city" msgstr "खाली शहर" msgid "Empty county" msgstr "खाली काउंटी" msgid "Empty postcode" msgstr "खाली पोस्टकोड" msgid "Empty phone" msgstr "खाली फोन" msgid "Empty email" msgstr "खाली ईमेल" msgid "Email or username empty!" msgstr "ईमेल या उपयोगकर्ता नाम खाली!" msgid "Pass empty!" msgstr "खाली पास!" msgid "Username incorrect!" msgstr "उपयोगकर्ता नाम गलत है!" msgid "Invalid Pass Pattern!" msgstr "अमान्य पास पैटर्न!" msgid "Please activate your account by following the link sent to your email address." msgstr "कृपया अपने ईमेल पते पर भेजे गए लिंक का अनुसरण करके अपना खाता सक्रिय करें।" msgid "Resend activation link" msgstr "सक्रियण लिंक पुनः भेजें" msgid "In order to have access to this section, you have to activate your account." msgstr "इस अनुभाग तक पहुंचने के लिए, आपको अपना खाता सक्रिय करना होगा।" msgid "Email empty!" msgstr "ईमेल खाली!" msgid "Username empty!" msgstr "उपयोगकर्ता नाम खाली!" msgid "Pass pattern incorrect!" msgstr "पास पैटर्न गलत!" msgid "Retyped pass empty!" msgstr "फिर से टाइप किया हुआ पास खाली!" msgid "Retyped pass exactly!" msgstr "पास बिल्कुल सही!" msgid "User already exists!" msgstr "उपयोगकर्ता पहले से मौजूद है!" msgid "Email already exists!" msgstr "ईमेल पहले से मौजूद है!" msgid "Your account could not be created." msgstr "आपका खाता नहीं बनाया जा सका." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "अपना खाता सत्यापित करने के लिए कृपया अपना ईमेल (इनबॉक्स या स्पैम फ़ोल्डर) जांचें।" msgid "User empty!" msgstr "उपयोगकर्ता खाली!" msgid "User does not exists!" msgstr "उपयोगकर्ता मौजूद नहीं है!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "नया सक्रियण लिंक उत्पन्न हुआ। अपना खाता सत्यापित करने के लिए कृपया अपना ईमेल (इनबॉक्स या स्पैम फ़ोल्डर) जांचें।" msgid "CAPTCHA verification failed!" msgstr "कैप्चा सत्यापन विफल!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "कैप्चा उपयोगकर्ता स्कोर विफल रहा। कृपया हमसे संपर्क करें!" msgid "Loading" msgstr "लोड हो रहा है" msgid "Here are the results for the search:" msgstr "यहाँ खोज के परिणाम हैं:" msgid "Price" msgstr "कीमत" msgid "EXCLUSIVE" msgstr "अनन्य" msgid "Tel:" msgstr "दूरभाष:" msgid "Share" msgstr "साझा करना" msgid "Print" msgstr "प्रिंट" msgid "At" msgstr "पर" msgid "Comments are closed." msgstr "टिप्पणियाँ बंद हैं।" msgid "Payment method" msgstr "भुगतान का तरीका" msgid "You must be logged out to view this page." msgstr "इस पृष्ठ को देखने के लिए आपको लॉग आउट होना होगा।" msgid "Retyped Pass incorrect!" msgstr "दोबारा टाइप किया गया पास गलत!" msgid "%s is a required field." msgstr "%s एक आवश्यक फ़ील्ड है." msgid "Please provide a valid email address." msgstr "एक वैध ईमेल पता प्रदान करें।" msgid "This email address is already registered." msgstr "यह ईमेल पता पहले से ही पंजीकृत है।" msgid "Please fill out all password fields." msgstr "कृपया सभी पासवर्ड फ़ील्ड भरें।" msgid "Please enter your current password." msgstr "कृपया अपना वर्तमान पासवर्ड दर्ज करें." msgid "Please re-enter your password." msgstr "अपना पासवर्ड दोबारा दर्ज करें।" msgid "New passwords do not match." msgstr "नये पासवर्ड मेल नहीं खाते." msgid "Your current password is incorrect." msgstr "आपका वर्तमान पासवर्ड ग़लत है." msgid "Account details changed successfully." msgstr "खाता विवरण सफलतापूर्वक बदला गया." msgid "A new activation link has been sent to your email address!" msgstr "आपके ईमेल पते पर एक नया सक्रियण लिंक भेज दिया गया है!" msgid "unlimited" msgstr "असीमित" msgid "Pay with Stripe" msgstr "धारी के साथ भुगतान करें" msgid "Cancel subscription" msgstr "सदस्यता रद्द" msgid "Please check your email and confirm subscription!" msgstr "कृपया अपना ईमेल जांचें और सदस्यता की पुष्टि करें!" msgid "Successfully subscribed!" msgstr "सफलतापूर्वक सदस्यता ले ली!" msgid "Successfully unsubscribed!" msgstr "सफलतापूर्वक सदस्यता समाप्त!" msgid "Enter promo code here" msgstr "यहां प्रोमो कोड दर्ज करें" msgid "Apply" msgstr "आवेदन करना" msgid "Coupon applied" msgstr "कूपन लागू" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "ध्यान में न आई त्रुटि: कुछ गलत हो गया, कृपया पृष्ठ पुनः लोड करें और पुनः प्रयास करें!" msgid "The coupon code you entered is invalid" msgstr "आपके द्वारा दर्ज किया गया कूपन कोड अमान्य है" msgid "The coupon code you entered has reached its usage limit" msgstr "आपके द्वारा दर्ज किया गया कूपन कोड अपनी उपयोग सीमा तक पहुंच गया है" msgid "The coupon code you entered has expired" msgstr "आपके द्वारा दर्ज किया गया कूपन कोड समाप्त हो गया है" msgid "Coupon name is required !" msgstr "कूपन नाम आवश्यक है!" msgid "Please enter a coupon code first!" msgstr "कृपया पहले एक कूपन कोड दर्ज करें!" msgid "Invalid" msgstr "अमान्य" msgid "Applied" msgstr "लागू" msgid "Remove" msgstr "निकालना" msgid "Price not set" msgstr "कीमत निर्धारित नहीं है" msgid "Grand Total" msgstr "कुल योग" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "आपके पास पहले से ही एक सदस्यता है, लेकिन यह अभी भी भुगतान की प्रतीक्षा में है!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "यह सदस्यता रद्द कर दी गई है और यह %end_date% पर समाप्त हो जाएगी।" msgid "Go to checkout" msgstr "परिक्षण के लिए जाएं" msgid "Stripe invoice details" msgstr "धारी चालान विवरण" msgid "Stripe subscription details" msgstr "धारी सदस्यता विवरण" msgid "Current status" msgstr "वर्तमान स्थिति" msgid "Initial Invoice Paid" msgstr "प्रारंभिक चालान का भुगतान किया गया" msgid "Subscription Create: Initial Invoice Paid" msgstr "सदस्यता निर्माण: प्रारंभिक चालान का भुगतान किया गया" msgid "Subscription Create: Initial Invoice has been created" msgstr "सदस्यता निर्माण: प्रारंभिक चालान बनाया गया है" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "सदस्यता निर्माण: प्रारंभिक चालान को अंतिम रूप दे दिया गया है, और यह भुगतान के लिए तैयार है" msgid "Subscription Update: Invoice Paid" msgstr "सदस्यता अद्यतन: चालान का भुगतान किया गया" msgid "Subscription Renew: Invoice Paid" msgstr "सदस्यता नवीनीकरण: चालान का भुगतान किया गया" msgid "Subscription Renew: Invoice Finalized" msgstr "सदस्यता नवीनीकरण: चालान को अंतिम रूप दिया गया" msgid "Subscription Renew: Invoice Created" msgstr "सदस्यता नवीनीकरण: चालान बनाया गया" msgid "Subscription Renew: Invoice Upcoming" msgstr "सदस्यता नवीनीकरण: चालान आगामी" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "सदस्यता समाप्त हो गई: चालान रद्द कर दिया गया (पहले चालान का भुगतान नहीं किया गया था)" msgid "Subscription Deleted" msgstr "सदस्यता हटा दी गई" msgid "Subscription Create: Trialing" msgstr "सदस्यता निर्माण: परीक्षण" msgid "Subscription Canceled" msgstr "सदस्यता रद्द" msgid "Subscription Create: Initial Invoice voided" msgstr "सदस्यता निर्माण: प्रारंभिक चालान रद्द कर दिया गया" msgid "Subscription Renew: Invoice voided" msgstr "सदस्यता नवीनीकरण: चालान रद्द कर दिया गया" msgid "Subscription Update: Invoice voided" msgstr "सदस्यता अद्यतन: चालान रद्द कर दिया गया" msgid "Invoice updated" msgstr "चालान अद्यतन किया गया" msgid "Subscription has been canceled and will end on: " msgstr "सदस्यता रद्द कर दी गई है और यह समाप्त हो जाएगी:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "सेटअप सफल - आपने भविष्य के भुगतानों के लिए अपनी भुगतान विधि सफलतापूर्वक सेट कर ली है।" msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "सेटअप विफल - हमें खेद है, आपकी भुगतान विधि सेट करने में त्रुटि हुई। कृपया किसी भिन्न भुगतान विधि के साथ पुनः प्रयास करें।" msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "भुगतान सफल - आपका नवीनतम सदस्यता भुगतान सफलतापूर्वक पूरा हो गया।" msgid "Payment processing - Your latest subscription payment is being processed." msgstr "भुगतान प्रसंस्करण - आपका नवीनतम सदस्यता भुगतान संसाधित किया जा रहा है।" msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "भुगतान विफल - हमें खेद है, आपका भुगतान संसाधित करने में त्रुटि हुई। कृपया किसी भिन्न भुगतान विधि के साथ पुनः प्रयास करें।" msgid "Download" msgstr "डाउनलोड करना" msgid "Stripe invoice" msgstr "धारी चालान" msgid "N/A" msgstr "एन/ए" msgid "Latest invoice" msgstr "नवीनतम चालान" msgid "Invoice" msgstr "चालान" msgid "Unpaid subscription." msgstr "अवैतनिक सदस्यता." msgid "Locked subscription." msgstr "बंद सदस्यता." msgid "Invalid subscription." msgstr "अमान्य सदस्यता." msgid "Pay now" msgstr "अब भुगतान करें" msgid "Show more info" msgstr "अधिक जानकारी दिखाएं" msgid "Show less info" msgstr "कम जानकारी दिखाएं" msgid "Complete payment" msgstr "पूर्ण भुगतान" msgid "or" msgstr "या" msgid "Setup Payment" msgstr "सेटअप भुगतान" msgid "Go to Payment" msgstr "भुगतान पर जाएं" msgid "Alphabetical A -> Z" msgstr "वर्णमाला a -> z" msgid "Oldest posts" msgstr "सबसे पुरानी पोस्ट" msgid "Select" msgstr "चुनना" msgid "on" msgstr "पर" msgid "No bookmarked posts" msgstr "कोई बुकमार्क की गई पोस्ट नहीं" msgid "Log in With Facebook" msgstr "फ़ेसबुक लॉगिन करें" msgid "Forgot your password? Get help" msgstr "अपना कूट शब्द भूल गए? मदद लें" msgid "Someone has requested a password reset for the following account:" msgstr "किसी ने निम्नलिखित खाते के लिए पासवर्ड रीसेट का अनुरोध किया है:" msgid "Username: %s" msgstr "उपयोक्तानाम: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "यदि यह एक गलती थी, तो बस इस ईमेल को अनदेखा करें और कुछ नहीं होगा।" msgid "To reset your password, visit the following address:" msgstr "अपना पासवर्ड रीसेट करने के लिए, निम्नलिखित पते पर जाएँ:" msgid "Members" msgstr "सदस्यों" msgid "Downloads" msgstr "डाउनलोड" msgid "inc. TAX" msgstr "इंक कर" msgid "ex. TAX" msgstr "पूर्व। कर" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "आपकी पोस्ट बनाने का प्रयास करते समय एक अप्रत्याशित त्रुटि उत्पन्न हुई है। कृपया पुन: प्रयास करें।" msgid "Your post has been successfully created." msgstr "आपकी पोस्ट सफलतापूर्वक बन गई है." msgid "Your post has been successfully updated." msgstr "आपकी पोस्ट सफलतापूर्वक अपडेट कर दी गई है." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "एक अप्रत्याशित त्रुटि उत्पन्न हुई और मेल नहीं भेजा जा सका." msgid "Location:" msgstr "जगह:" msgid "The email has been successfully sent." msgstr "ईमेल सफलतापूर्वक भेज दिया गया है." msgid "An unexpected error has occurred. Please try again." msgstr "एक अप्रत्याशित त्रुटि सामने आई है। कृपया पुन: प्रयास करें।" msgid "Drag and drop or browse" msgstr "खींचें और छोड़ें या ब्राउज़ करें" msgid "Search by keyword..." msgstr "संकेतशब्द द्वारा खोजें..." msgid "Select parent" msgstr "माता-पिता का चयन करें" msgid "Add new" msgstr "नया जोड़ो" msgid "Parent" msgstr "माता-पिता" msgid "Select child" msgstr "बच्चे का चयन करें" msgid "Select sub-child" msgstr "उप-बच्चे का चयन करें" msgid "Posted by" msgstr "के द्वारा प्रकाशित किया गया" msgid "Overall" msgstr "कुल मिलाकर" msgid "Post review" msgstr "समीक्षा पोस्ट करें" msgid "This field is required!" msgstr "यह फ़ील्ड आवश्यक है!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "आपकी समीक्षा प्रकाशित कर दी गयी है। कृपया इसे देखने के लिए पृष्ठ को ताज़ा करें।" msgid "Your review has been registered and is awaiting approval." msgstr "आपकी समीक्षा पंजीकृत कर ली गई है और अनुमोदन की प्रतीक्षा कर रही है।" msgid "Submit reply" msgstr "जवाब सबमिट करें" msgid "Enter your reply" msgstr "अपना उत्तर दर्ज करें" msgid "Cancel" msgstr "रद्द करना" msgid "Some required fields have been left blank." msgstr "कुछ आवश्यक फ़ील्ड खाली छोड़ दी गई हैं." msgid "Please enter a valid email address." msgstr "कृपया एक मान्य ईमेल पता प्रविष्ट करें।" msgid "The number cannot be lower than" msgstr "संख्या इससे कम नहीं हो सकती" msgid "The number cannot be higher than" msgstr "संख्या इससे अधिक नहीं हो सकती" msgid "Leave a review" msgstr "समीक्षा लिखें" msgid "Submit" msgstr "जमा करना" msgid "Update" msgstr "अद्यतन" msgid "out of 5" msgstr "5 में से" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "आप इस लेख के लिए सबमिट की जा सकने वाली समीक्षाओं की सीमा तक पहुंच गए हैं" msgid "Log in to leave a review." msgstr "समीक्षा छोड़ने के लिए लॉग इन करें." msgid "Enter a title for your review" msgstr "अपनी समीक्षा के लिए एक शीर्षक दर्ज करें" msgid "Enter your review" msgstr "अपनी समीक्षा दर्ज करें" msgid "Review criteria" msgstr "समीक्षा मानदंड" msgid "Enter Your Name or Company" msgstr "अपना नाम या कंपनी दर्ज करें" msgid "Submit review" msgstr "समीक्षा जमा करें" msgid "Delete" msgstr "मिटाना" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "आपका उत्तर प्रकाशित हो चुका है. कृपया इसे देखने के लिए पृष्ठ को ताज़ा करें।" msgid "You have not created any posts." msgstr "आपने कोई पोस्ट नहीं बनाई है." msgid "The selected post has been successfully deleted." msgstr "चयनित पोस्ट सफलतापूर्वक हटा दी गई है." msgid "Rating" msgstr "रेटिंग" msgid "Title" msgstr "शीर्षक" msgid "Post image" msgstr "छवि पोस्ट करें" msgid "Categories" msgstr "श्रेणियाँ" msgid "Date" msgstr "तारीख" msgid "Source title" msgstr "स्रोत शीर्षक" msgid "No rating" msgstr "कोई रेटिंग नहीं" msgid "View" msgstr "देखना" msgid "Publish" msgstr "प्रकाशित" msgid "Add new post" msgstr "नई पोस्ट जोड़ें" msgid "Edit post" msgstr "संपादित पोस्ट" msgid "Publish a post" msgstr "एक पोस्ट प्रकाशित करें" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title% की स्थिति बदल दी गई है।" msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "क्या आप वाकई %post_title% प्रकाशित करना चाहते हैं?" msgid "Delete a post" msgstr "एक पोस्ट हटाएं" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "क्या आप वाकई %post_title% को हटाना चाहते हैं?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% को ट्रैश में ले जाया गया है।" msgid "You do not hold the required priveleges to execute this request." msgstr "इस अनुरोध को निष्पादित करने के लिए आपके पास आवश्यक विशेषाधिकार नहीं हैं।" msgid "No search results." msgstr "खोजने पर कोई परिणाम नहीं मिला।" msgid "Yes" msgstr "हाँ" msgid "No" msgstr "नहीं" msgid "Save" msgstr "बचाना" msgid "Search for a location" msgstr "एक स्थान खोजें" msgid "Address line" msgstr "पता पंक्ति" msgid "(Optional)" msgstr "(वैकल्पिक)" msgid "State" msgstr "राज्य" msgid "Country" msgstr "देश" msgid "Create new term" msgstr "नया शब्द बनाएँ" msgid "Description" msgstr "विवरण" msgid "Delete bookmarks" msgstr "बुकमार्क हटाएं" msgid "Reset your password" msgstr "अपना पासवर्ड रीसेट करें" msgid "The password reset key has expired." msgstr "पासवर्ड रीसेट कुंजी समाप्त हो गई है." msgid "The password reset key is invalid." msgstr "पासवर्ड रीसेट कुंजी अमान्य है." msgid "New password *" msgstr "नया पासवर्ड *" msgid "Repeat new password *" msgstr "नया पासवर्ड दोहराएँ *" msgid "Save password" msgstr "पासवर्ड को बचाओ" msgid "Your account has been successfully activated!" msgstr "आपका खाता सफलतापूर्वक सक्रिय कर दिया गया है!" msgid "Your account has already been activated!" msgstr "आपका खाता पहले ही सक्रिय किया जा चुका है!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "सही सक्रियण लिंक के लिए अपना ईमेल जांचें। यह लिंक अमान्य है." msgid "Account activation" msgstr "खाता सक्रियण" msgid "Please enter a new password before proceeding." msgstr "कृपया आगे बढ़ने से पहले एक नया पासवर्ड दर्ज करें।" msgid "Please confirm the new password before proceeding." msgstr "कृपया आगे बढ़ने से पहले नए पासवर्ड की पुष्टि करें।" msgid "Please make sure that the passwords match." msgstr "कृपया सुनिश्चित करें कि पासवर्ड मेल खाते हों।" msgid "The password has been reset successfully." msgstr "पासवर्ड सफलतापूर्वक रीसेट कर दिया गया है." msgid "Manage your billing details." msgstr "अपने बिलिंग विवरण प्रबंधित करें." msgid "Profile picture" msgstr "प्रोफ़ाइल फोटो" msgid "Remaining publishing rights." msgstr "शेष प्रकाशन अधिकार." msgid "The number of articles you have left to publish across different post types." msgstr "आपके द्वारा विभिन्न पोस्ट प्रकारों में प्रकाशित करने के लिए छोड़े गए लेखों की संख्या।" msgid "Bank transfer" msgstr "बैंक ट्रांसफर" msgid "Direct Bank Transfer" msgstr "बैंक में सीधे अंतरण" msgid "Canceled" msgstr "रद्द" msgid "Cycle Interval" msgstr "चक्र अंतराल" msgid "In order to update this filed, you have to activate your account." msgstr "इस फ़ाइल को अद्यतन करने के लिए, आपको अपना खाता सक्रिय करना होगा।" msgid "Cannot process %s field." msgstr "%s फ़ील्ड संसाधित नहीं कर सकता." msgid "Modified date" msgstr "संशोधित तिथि" translation/fi.po000064400000103520150211537140010040 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" msgid "View all results" msgstr "Katso kaikki tulokset" msgid "No results" msgstr "Ei tuloksia" msgid "Home" msgstr "Koti" msgid "CLOSE" msgstr "SULJE" msgid "Page" msgstr "Sivu" msgid "All" msgstr "Kaikki" msgid "By" msgstr "Tekijä" msgid "Load more" msgstr "Lataa lisää" msgid "View all posts in" msgstr "Katso kaikki viestit" msgid "Tags" msgstr "Tagit" msgid "Previous article" msgstr "Edellinen artikkeli" msgid "Next article" msgstr "Seuraava artikkeli" msgid "Authors" msgstr "Tekijät" msgid "Author" msgstr "Tekijä" msgid "RELATED ARTICLES" msgstr "LIITTYVÄT ARTIKKELIT" msgid "MORE FROM AUTHOR" msgstr "LISÄÄ TEKIJÄLTÄ" msgid "VIA" msgstr "KAUTTA" msgid "SOURCE" msgstr "LÄHDE" msgid "TAGS" msgstr "TAGIT" msgid "SHARE" msgstr "JAA" msgid "Continue" msgstr "Jatka" msgid "Read more" msgstr "Lue lisää" msgid "Name:" msgstr "Nimi:" msgid "Email:" msgstr "Sähköposti:" msgid "Website:" msgstr "Verkkosivu:" msgid "Comment:" msgstr "Kommentti:" msgid "LEAVE A REPLY" msgstr "JÄTÄ VASTAUS" msgid "Post Comment" msgstr "Lähetä Kommentti" msgid "Cancel reply" msgstr "Peruuta vastaus" msgid "Reply" msgstr "Vastaus" msgid "Log in to leave a comment" msgstr "Kirjaudu sisään jättääksesi kommentin" msgid "NO COMMENTS" msgstr "EI KOMMENTTEJA" msgid "1 COMMENT" msgstr "1 KOMMENTTI" msgid "COMMENTS" msgstr "KOMMENTIT" msgid "REVIEW OVERVIEW" msgstr "ARVOSTELUN YLEISNÄKYMÄ" msgid "SUMMARY" msgstr "TIIVISTELMÄ" msgid "OVERALL SCORE" msgstr "KOKONAISPISTEET" msgid "Ooops... Error 404" msgstr "Hups… Error 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Pahoittelut, mutta etsimääsi sivustoa ei ole olemassa." msgid "You can go to the" msgstr "Voit mennä kotisivulle" msgid "HOMEPAGE" msgstr "KOTISIVU" msgid "OUR LATEST POSTS" msgstr "VIIMEISIMMÄT VIESTIT" msgid "Posts by" msgstr "Viestit" msgid "POSTS" msgstr "VIESTIT" msgid "Posts tagged with" msgstr "Viestit, jotka on tagattu" msgid "Tag" msgstr "Tagi" msgid "Daily Archives:" msgstr "Päivittäiset Arkistot:" msgid "Monthly Archives:" msgstr "Kuukausittaiset Arkistot:" msgid "Yearly Archives:" msgstr "Vuosittaiset Arkistot:" msgid "Archives" msgstr "Arkistot" msgid "LATEST ARTICLES" msgstr "VIIMEISIMMÄT ARTIKKELIT" msgid "search results" msgstr "hakutulokset" msgid "Search" msgstr "Haku" msgid "If you're not happy with the results, please do another search" msgstr "Jos et ole tyytyväinen tuloksiin, hae uudelleen" msgid "Contact us" msgstr "Ota meihin yhteyttä" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Sivu %CURRENT_PAGE% / %TOTAL_PAGES%" msgid "Next" msgstr "Seuraava" msgid "Prev" msgstr "Edellinen" msgid "No results for your search" msgstr "Hakusi ei tuottanut tuloksia" msgid "No posts to display" msgstr "Ei näytettäviä viestejä" msgid "LOG IN" msgstr "KIRJAUDU SISÄÄN" msgid "Sign in / Join" msgstr "Kirjaudu sisään / Liity" msgid "Log In" msgstr "Kirjaudu sisään" msgid "REGISTER" msgstr "REKISTERÖIDY" msgid "Send My Pass" msgstr "Lähetä Salasanani" msgid "Forgot your password?" msgstr "Unohditko salasanasi?" msgid "Please wait..." msgstr "Odota…" msgid "User or password incorrect!" msgstr "Käyttäjänimi tai salasana oli väärä!" msgid "Email or username incorrect!" msgstr "Sähköposti tai käyttäjänimi oli väärä!" msgid "Email incorrect!" msgstr "Sähköposti oli väärä!" msgid "User or email already exists!" msgstr "Käyttäjänimi tai sähköpostiosoite on jo käytössä!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Tarkista sähköpostisi (saapuvat tai roskapostikansio), salasana lähetettiin sinne." msgid "Email address not found!" msgstr "Sähköpostiosoitetta ei löytynyt!" msgid "Your password is reset, check your email." msgstr "Salasanasi nollattiin, tarkista sähköpostisi." msgid "Welcome! Log into your account" msgstr "Tervetuloa! Kirjaudu sisään käyttäjätilillesi" msgid "Register for an account" msgstr "Rekisteröi käyttäjätili" msgid "Recover your password" msgstr "Palauta salasanasi" msgid "your username" msgstr "käyttäjänimesi" msgid "your password" msgstr "salasanasi" msgid "your email" msgstr "sähköpostisi" msgid "A password will be e-mailed to you." msgstr "Salasana lähetetään sinulla sähköpostitse." msgid "Logout" msgstr "Kirjaudu ulos" msgid "Like" msgstr "Tykkää" msgid "Fans" msgstr "Fanit" msgid "Follow" msgstr "Seuraa" msgid "Followers" msgstr "Seuraajat" msgid "Subscribe" msgstr "Tilaa" msgid "Subscribers" msgstr "Tilaajat" msgid "MORE STORIES" msgstr "LISÄÄ TARINOITA" msgid "Latest" msgstr "Viimeisin" msgid "Featured posts" msgstr "Pääviestit" msgid "Most popular" msgstr "Suosituin" msgid "7 days popular" msgstr "7 päivän suosituin" msgid "By review score" msgstr "Arvostelupisteiden mukaan" msgid "Random" msgstr "Satunnainen" msgid "Trending Now" msgstr "Nouseva Nyt" msgid "POPULAR CATEGORY" msgstr "SUOSITTU KATEGORIA" msgid "EVEN MORE NEWS" msgstr "LISÄÄ UUTISIA" msgid "Previous (Left arrow key)" msgstr "Edellinen (Vasen nuolinäppäin)" msgid "Next (Right arrow key)" msgstr "Seuraava (Oikea nuolinäppäin)" msgid "%curr% of %total%" msgstr "%curr% / %total%" msgid "The content from %url% could not be loaded." msgstr "Sisältöä osoitteesta %url% ei voitu ladata." msgid "The image #%curr% could not be loaded." msgstr "Kuvaa #%curr% ei voitu ladata." msgid "Blog" msgstr "Blogi" msgid "Share on Facebook" msgstr "Jaa Facebookissa" msgid "Tweet on Twitter" msgstr "Tweettaa Twitterissä" msgid "EDITOR PICKS" msgstr "POIMINTOJA" msgid "POPULAR POSTS" msgstr "SUOSITUIMMAT VIESTIT" msgid "FOLLOW US" msgstr "SEURAA MEITÄ" msgid "ABOUT US" msgstr "MEISTÄ" msgid "More" msgstr "Lisää" msgid "Featured" msgstr "Varustellun" msgid "All time popular" msgstr "Kaikkien aikojen suosituimpia" msgid "Likes" msgstr "Tykkää" msgid "Register" msgstr "Rekisteri" msgid "of" msgstr "of" msgid "Euro Member Countries" msgstr "Euro- maissa" msgid "Your comment is awaiting moderation" msgstr "Kommenttisi odottaa moderointia" msgid "Follow us on Instagram" msgstr "Seuraa meitä instagram" msgid "Back" msgstr "Takaisin" msgid "Sign in" msgstr "Kirjaudu sisään" msgid "Sign up" msgstr "Kirjaudu" msgid "Join" msgstr "Liittyä seuraan" msgid "Welcome!" msgstr "Tervetuloa!" msgid "Log into your account" msgstr "Kirjaudu tilillesi" msgid "Password recovery" msgstr "Salasanan palautus" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "Tarkista sähköpostisi (indeksi tai roskapostikansio), salasana lähetettiin sinne." msgid "Australian Dollar" msgstr "Australian dollari" msgid "Bulgarian Lev" msgstr "Bulgarian lev" msgid "Brazilian Real" msgstr "Brasilian real" msgid "Canadian Dollar" msgstr "Kanadan dollari" msgid "Swiss Franc" msgstr "Sveitsin frangi" msgid "Chinese Yuan Renminbi" msgstr "Kiinan yuan renminbi" msgid "Czech Republic Koruna" msgstr "Tšekki koruna" msgid "Danish Krone" msgstr "Tanskan kruunu" msgid "British Pound" msgstr "Englannin punta" msgid "Hong Kong Dollar" msgstr "Hongkongin dollari" msgid "Croatian Kuna" msgstr "Kroatian kuna" msgid "Hungarian Forint" msgstr "Unkarin forintti" msgid "Indonesian Rupiah" msgstr "Indonesian rupia" msgid "Israeli Shekel" msgstr "Israelin shekel" msgid "Indian Rupee" msgstr "Intian rupia" msgid "Japanese Yen" msgstr "Japanin jeniä" msgid "Korean (South) Won" msgstr "Korean (etelä) wonia" msgid "Mexican Peso" msgstr "Meksikon peso" msgid "Malaysian Ringgit" msgstr "Malesian ringgit" msgid "Norwegian Krone" msgstr "Norja kruunu" msgid "New Zealand Dollar" msgstr "Uuden-Seelannin dollari" msgid "Philippine Peso" msgstr "Filippiinien peso" msgid "Polish Zloty" msgstr "Puolan zloty" msgid "Romanian (New) Leu" msgstr "Romania (uusi) leu" msgid "Russian Ruble" msgstr "Venäjän rupla" msgid "Swedish Krona" msgstr "Ruotsin kruunu" msgid "Singapore Dollar" msgstr "Singaporen dollari" msgid "Thai Baht" msgstr "Thaimaan baht" msgid "Turkish Lira" msgstr "Turkin liira" msgid "United States Dollar" msgstr "Yhdysvaltain dollari" msgid "South African Rand" msgstr "Etelä-afrikkalainen rand" msgid "Privacy Policy" msgstr "Tietosuojakäytäntö" msgid "views" msgstr "näkymät" msgid "Modified date:" msgstr "Muokattu päivämäärä:" msgid "Please enter your name here" msgstr "Kirjoita nimesi tähän" msgid "Please enter your email address here" msgstr "Kirjoita sähköpostiosoitteesi tähän" msgid "You have entered an incorrect email address!" msgstr "Olet antanut väärän sähköpostiosoitteen!" msgid "Please enter your comment!" msgstr "Kirjoita kommenttisi!" msgid "Logged in as" msgstr "Kirjautuneena sisään nimellä" msgid "Log out?" msgstr "Kirjautua ulos?" msgid "Logged in as %s. Edit your profile." msgstr "Kirjautunut sisään nimellä% s. Muokkaa profiiliasi." msgid "Edit" msgstr "Muokata" msgid "Login" msgstr "Kirjaudu sisään" msgid "Send My Password" msgstr "Lähetä salasanani" msgid "Create an account" msgstr "Luo tili" msgid "Welcome! Register for an account" msgstr "Tervetuloa! rekisteröidy tilille" msgid "About me" msgstr "Minusta" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Tallenna nimi, sähköpostiosoite ja verkkosivusto tällä selaimella seuraavan kerran kommentoidessani." msgid "Orders" msgstr "Tilauksia" msgid "Addresses" msgstr "Osoitteita" msgid "Account settings" msgstr "Tilin asetukset" msgid "Hello" msgstr "Hei" msgid "No products in the cart." msgstr "Ei tuotteita ostoskorissa." msgid "Product categories" msgstr "Tuoteryhmät" msgid "Product tags" msgstr "Tuotetunnisteet" msgid "Success" msgstr "Menestys" msgid "Acknowledgment is required!" msgstr "Tunnustus vaaditaan!" msgid "Please fill in a valid email." msgstr "Täytä kelvollinen sähköposti." msgid "Please fill in an email address." msgstr "Täytä sähköpostiosoite." msgid "Get into your account." msgstr "Päästä tilillesi." msgid "My subscription account" msgstr "Tilaustilini" msgid "Account details" msgstr "Tilin tiedot" msgid "Subscriptions" msgstr "Tilauksia" msgid "My woo account" msgstr "Minun woo tilini" msgid "Log out" msgstr "Kirjautua ulos" msgid "Email address" msgstr "Sähköpostiosoite" msgid "Username" msgstr "Käyttäjätunnus" msgid "Password" msgstr "Salasana" msgid "must contain at least one lower case (a..z)" msgstr "tulee sisältää vähintään yksi pieni kirjain (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "tulee sisältää vähintään yksi iso kirjain (a..z)" msgid "must contain at least 6 characters in length" msgstr "tulee sisältää vähintään 6 merkkiä" msgid "Repeat password" msgstr "Toista salasana" msgid "Already have an account?" msgstr "Onko sinulla jo tili?" msgid "Recover password" msgstr "Palauta salasana" msgid "Username or Email address" msgstr "Käyttäjänimi tai Sähköpostiosoite" msgid "Forgot password?" msgstr "Unohtuiko salasana?" msgid "Don't have an account?" msgstr "Eikö sinulla ole tiliä?" msgid "Dashboard" msgstr "Kojelauta" msgid "Welcome to your account!" msgstr "Tervetuloa tilillesi!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Hei %1$s (ei %2$s? %3$s)! tilisi hallintapaneelista voit tarkastella tilauksiasi ja hallita tilitietojasi." msgid "Lost Password" msgstr "Kadonnut Salasana" msgid "Manage your account details." msgstr "Hallita tilitietojasi." msgid "First name" msgstr "Etunimi" msgid "Last name" msgstr "Sukunimi" msgid "Display name" msgstr "Näyttönimi" msgid "Current password" msgstr "Nykyinen salasana" msgid "(leave blank to leave unchanged)" msgstr "(jätä tyhjäksi jättääksesi ennalleen)" msgid "New password" msgstr "Uusi salasana" msgid "Confirm new password" msgstr "Vahvista uusi salasana" msgid "Save changes" msgstr "Tallenna muutokset" msgid "All your subscriptions." msgstr "Kaikki tilauksesi." msgid "Plan" msgstr "Suunnitelma" msgid "Payment type" msgstr "Maksutapa" msgid "Status" msgstr "Tila" msgid "Months" msgstr "Kuukaudet" msgid "Start date" msgstr "Aloituspäivämäärä" msgid "End date" msgstr "Päättymispäivä" msgid "missing plan" msgstr "suunnitelma puuttuu" msgid "Free" msgstr "Vapaa" msgid "Active" msgstr "Aktiivinen" msgid "Trial" msgstr "Oikeudenkäyntiä" msgid "Blocked" msgstr "Tukossa" msgid "Closed" msgstr "Suljettu" msgid "Not paid" msgstr "Ei maksettu" msgid "Awaiting payment" msgstr "Odotetaan maksua" msgid "Subscription info" msgstr "Tilaustiedot" msgid "ID" msgstr "ID" msgid "Name" msgstr "Nimi" msgid "Company name" msgstr "Yrityksen nimi" msgid "VAT" msgstr "ARVONLISÄVERO" msgid "Address" msgstr "Osoite" msgid "City" msgstr "Kaupunki" msgid "Country/State" msgstr "Maa/osavaltio" msgid "Email" msgstr "Sähköposti" msgid "Postal code" msgstr "Postinumero" msgid "Direct bank transfer details" msgstr "Suoran pankkisiirron tiedot" msgid "Account name" msgstr "Tilin nimi" msgid "Account number" msgstr "Tilinumero" msgid "Bank name" msgstr "Pankin nimi" msgid "Routing number" msgstr "Reititysnumero" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "Ohjeet" msgid "No subscription created." msgstr "Tilausta ei luotu." msgid "Choose plan" msgstr "Valitse suunnitelma" msgid "Payment methods" msgstr "Maksutavat" msgid "Total" msgstr "Kaikki yhteensä" msgid "Period" msgstr "Ajanjaksoa" msgid "Subscription summary" msgstr "Tilausten yhteenveto" msgid "Phone" msgstr "Puhelin" msgid "Postcode" msgstr "Postinumero" msgid "County" msgstr "Lääni" msgid "Town/City" msgstr "Kaupunki kaupunki" msgid "Street address" msgstr "Katuosoite" msgid "Country/Region" msgstr "Maa/alue" msgid "VAT Number" msgstr "Alv numero" msgid "(optional)" msgstr "(valinnainen)" msgid "Billing details" msgstr "Laskutustiedot" msgid "User information" msgstr "Käyttäjän tiedot" msgid "It seems that no available payment methods have been configured." msgstr "Näyttää siltä, että käytettävissä olevia maksutapoja ei ole määritetty." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Kiitos! olemme iloisia nähdessämme sinut täällä. tilauksesi aktivoidaan pian!" msgid "Our bank details" msgstr "Pankkitietomme" msgid "Your subscription details" msgstr "Tilauksesi tiedot" msgid "View subscription" msgstr "Katso tilaus" msgid "You have not selected a valid subscription plan." msgstr "Et ole valinnut kelvollista tilaussuunnitelmaa." msgid "Field empty" msgstr "Kenttä tyhjä" msgid "Empty first name" msgstr "Tyhjä etunimi" msgid "Empty last name" msgstr "Tyhjä sukunimi" msgid "Empty country" msgstr "Tyhjä maa" msgid "Empty address" msgstr "Tyhjä osoite" msgid "Empty city" msgstr "Tyhjä kaupunki" msgid "Empty county" msgstr "Tyhjä kunta" msgid "Empty postcode" msgstr "Tyhjä postinumero" msgid "Empty phone" msgstr "Tyhjä puhelin" msgid "Empty email" msgstr "Tyhjä sähköposti" msgid "Email or username empty!" msgstr "Sähköpostiosoite tai käyttäjätunnus tyhjä!" msgid "Pass empty!" msgstr "Pass tyhjä!" msgid "Username incorrect!" msgstr "Käyttäjätunnus väärä!" msgid "Invalid Pass Pattern!" msgstr "Virheellinen läpäisymalli!" msgid "Please activate your account by following the link sent to your email address." msgstr "Aktivoi tilisi seuraamalla sähköpostiosoitteeseesi lähetettyä linkkiä." msgid "Resend activation link" msgstr "Lähetä aktivointilinkki uudelleen" msgid "In order to have access to this section, you have to activate your account." msgstr "Päästäksesi tähän osioon, sinun on aktivoitava tilisi." msgid "Email empty!" msgstr "Sähköposti tyhjä!" msgid "Username empty!" msgstr "Käyttäjätunnus tyhjä!" msgid "Pass pattern incorrect!" msgstr "Passikuvio väärä!" msgid "Retyped pass empty!" msgstr "Uudelleenkirjoitettu passi tyhjä!" msgid "Retyped pass exactly!" msgstr "Kirjoitettu uudelleen täsmälleen!" msgid "User already exists!" msgstr "Käyttäjä on jo olemassa!" msgid "Email already exists!" msgstr "Sähköposti on jo olemassa!" msgid "Your account could not be created." msgstr "Tiliäsi ei voitu luoda." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Tarkista sähköpostisi (postilaatikko tai roskapostikansio) vahvistaaksesi tilisi." msgid "User empty!" msgstr "Käyttäjä tyhjä!" msgid "User does not exists!" msgstr "Käyttäjää ei ole olemassa!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Uusi aktivointilinkki luotiin. tarkista sähköpostisi (postilaatikko tai roskapostikansio) vahvistaaksesi tilisi." msgid "CAPTCHA verification failed!" msgstr "Captcha-vahvistus epäonnistui!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Captcha-käyttäjän tulos epäonnistui. ota meihin yhteyttä!" msgid "Loading" msgstr "Ladataan" msgid "Here are the results for the search:" msgstr "Tässä haun tulokset:" msgid "Price" msgstr "Hinta" msgid "EXCLUSIVE" msgstr "YKSINOMAINEN" msgid "Tel:" msgstr "Puh:" msgid "Share" msgstr "Jaa" msgid "Print" msgstr "Tulosta" msgid "At" msgstr "Klo" msgid "Comments are closed." msgstr "Kommenttien lisääminen on estetty." msgid "Payment method" msgstr "Maksutapa" msgid "You must be logged out to view this page." msgstr "Sinun on kirjauduttava ulos nähdäksesi tämän sivun." msgid "Retyped Pass incorrect!" msgstr "Uudelleenkirjoitettu passi väärin!" msgid "%s is a required field." msgstr "%s on pakollinen kenttä." msgid "Please provide a valid email address." msgstr "Anna kelvollinen sähköpostiosoite." msgid "This email address is already registered." msgstr "Tämä sähköpostiosoite on jo rekisteröity." msgid "Please fill out all password fields." msgstr "Täytä kaikki salasanakentät." msgid "Please enter your current password." msgstr "Anna nykyinen salasanasi." msgid "Please re-enter your password." msgstr "Kirjoita salasanasi uudelleen." msgid "New passwords do not match." msgstr "Uudet salasanat eivät täsmää." msgid "Your current password is incorrect." msgstr "Nykyinen salasanasi on väärä." msgid "Account details changed successfully." msgstr "Tilitietojen muutos onnistui." msgid "A new activation link has been sent to your email address!" msgstr "Uusi aktivointilinkki on lähetetty sähköpostiosoitteeseesi!" msgid "unlimited" msgstr "rajoittamaton" msgid "Pay with Stripe" msgstr "Maksa raidalla" msgid "Cancel subscription" msgstr "Peruuttaa tilaus" msgid "Please check your email and confirm subscription!" msgstr "Tarkista sähköpostisi ja vahvista tilaus!" msgid "Successfully subscribed!" msgstr "Tilattu onnistuneesti!" msgid "Successfully unsubscribed!" msgstr "Tilaus peruutettu onnistuneesti!" msgid "Enter promo code here" msgstr "Syötä tarjouskoodi tähän" msgid "Apply" msgstr "Käytä" msgid "Coupon applied" msgstr "Kuponki käytössä" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Huomaamaton virhe: jotain meni pieleen, lataa sivu uudelleen ja yritä uudelleen!" msgid "The coupon code you entered is invalid" msgstr "Antamasi kuponkikoodi on virheellinen" msgid "The coupon code you entered has reached its usage limit" msgstr "Antamasi kuponkikoodi on saavuttanut käyttörajansa" msgid "The coupon code you entered has expired" msgstr "Antamasi kuponkikoodi on vanhentunut" msgid "Coupon name is required !" msgstr "Kupongin nimi vaaditaan!" msgid "Please enter a coupon code first!" msgstr "Syötä ensin kuponkikoodi!" msgid "Invalid" msgstr "Virheellinen" msgid "Applied" msgstr "Sovelletaan" msgid "Remove" msgstr "Poista" msgid "Price not set" msgstr "Hintaa ei asetettu" msgid "Grand Total" msgstr "Loppusumma" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Sinulla on jo tilaus, mutta se odottaa vielä maksua!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Tämä tilaus on peruutettu ja se päättyy %end_date%." msgid "Go to checkout" msgstr "Siirry kassalle" msgid "Stripe invoice details" msgstr "Raitalaskun tiedot" msgid "Stripe subscription details" msgstr "Raidan tilaustiedot" msgid "Current status" msgstr "Nykyinen tila" msgid "Initial Invoice Paid" msgstr "Alkuperäinen lasku maksettu" msgid "Subscription Create: Initial Invoice Paid" msgstr "Tilaus luo: alkuperäinen lasku maksettu" msgid "Subscription Create: Initial Invoice has been created" msgstr "Tilaus luo: alkuperäinen lasku on luotu" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Tilaus luo: alkuperäinen lasku on viimeistelty ja se on valmis maksettavaksi" msgid "Subscription Update: Invoice Paid" msgstr "Tilauspäivitys: lasku maksettu" msgid "Subscription Renew: Invoice Paid" msgstr "Tilauksen uusiminen: lasku maksettu" msgid "Subscription Renew: Invoice Finalized" msgstr "Tilauksen uusiminen: lasku viimeistelty" msgid "Subscription Renew: Invoice Created" msgstr "Tilauksen uusiminen: lasku luotu" msgid "Subscription Renew: Invoice Upcoming" msgstr "Tilauksen uusiminen: lasku tulossa" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Tilaus vanhentunut: lasku mitätöity (ensimmäistä laskua ei maksettu)" msgid "Subscription Deleted" msgstr "Tilaus poistettu" msgid "Subscription Create: Trialing" msgstr "Tilaus luo: kokeilu" msgid "Subscription Canceled" msgstr "Tilaus peruttu" msgid "Subscription Create: Initial Invoice voided" msgstr "Tilaus luo: alkuperäinen lasku mitätöity" msgid "Subscription Renew: Invoice voided" msgstr "Tilauksen uusiminen: lasku mitätöity" msgid "Subscription Update: Invoice voided" msgstr "Tilauspäivitys: lasku mitätöity" msgid "Invoice updated" msgstr "Lasku päivitetty" msgid "Subscription has been canceled and will end on: " msgstr "Tilaus on peruttu ja päättyy:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Asennus onnistui – olet onnistuneesti määrittänyt maksutavan tulevia maksuja varten." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Asennus epäonnistui - valitettavasti tapahtui virhe määritettäessä maksutapaa. yritä uudelleen toisella maksutavalla." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Maksu onnistui - viimeisin tilausmaksusi suoritettiin onnistuneesti." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Maksun käsittely - viimeisin tilausmaksusi käsitellään." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Maksu epäonnistui - valitettavasti maksusi käsittelyssä tapahtui virhe. yritä uudelleen toisella maksutavalla." msgid "Download" msgstr "Ladata" msgid "Stripe invoice" msgstr "Raidallinen lasku" msgid "N/A" msgstr "N/a" msgid "Latest invoice" msgstr "Viimeisin lasku" msgid "Invoice" msgstr "Lasku" msgid "Unpaid subscription." msgstr "Maksuton tilaus." msgid "Locked subscription." msgstr "Lukittu liittymä." msgid "Invalid subscription." msgstr "Virheellinen tilaus." msgid "Pay now" msgstr "Maksa nyt" msgid "Show more info" msgstr "Näytä lisätietoja" msgid "Show less info" msgstr "Näytä vähemmän tietoa" msgid "Complete payment" msgstr "Täydellinen maksu" msgid "or" msgstr "tai" msgid "Setup Payment" msgstr "Määritä maksu" msgid "Go to Payment" msgstr "Mene maksuun" msgid "Alphabetical A -> Z" msgstr "Aakkosellinen a -> z" msgid "Oldest posts" msgstr "Vanhimmat viestit" msgid "Select" msgstr "Valitse" msgid "on" msgstr "päällä" msgid "No bookmarked posts" msgstr "Ei kirjanmerkkeihin merkittyjä viestejä" msgid "Log in With Facebook" msgstr "Kirjaudu sisään facebookilla" msgid "Forgot your password? Get help" msgstr "Unohditko salasanasi? Hae apua" msgid "Someone has requested a password reset for the following account:" msgstr "Joku on pyytänyt salasanan vaihtoa seuraavalle tilille:" msgid "Username: %s" msgstr "Käyttäjätunnus: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Jos tämä oli virhe, jätä tämä sähköposti huomiotta, niin mitään ei tapahdu." msgid "To reset your password, visit the following address:" msgstr "Voit vaihtaa salasanasi käymällä seuraavassa osoitteessa:" msgid "Members" msgstr "Jäsenet" msgid "Downloads" msgstr "Lataukset" msgid "inc. TAX" msgstr "Inc. verottaa" msgid "ex. TAX" msgstr "esim. verottaa" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Odottamaton virhe yritettäessä luoda viestiäsi. yritä uudelleen." msgid "Your post has been successfully created." msgstr "Viestisi on luotu onnistuneesti." msgid "Your post has been successfully updated." msgstr "Viestisi on päivitetty onnistuneesti." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Tapahtui odottamaton virhe, eikä postia voitu lähettää." msgid "Location:" msgstr "Sijainti:" msgid "The email has been successfully sent." msgstr "Sähköposti on lähetetty onnistuneesti." msgid "An unexpected error has occurred. Please try again." msgstr "Odottamaton virhe on tapahtunut. yritä uudelleen." msgid "Drag and drop or browse" msgstr "Vedä ja pudota tai selaa" msgid "Search by keyword..." msgstr "Etsi hakusanalla..." msgid "Select parent" msgstr "Valitse vanhempi" msgid "Add new" msgstr "Lisää uusi" msgid "Parent" msgstr "Vanhempi" msgid "Select child" msgstr "Valitse lapsi" msgid "Select sub-child" msgstr "Valitse alalapsi" msgid "Posted by" msgstr "Lähettänyt" msgid "Overall" msgstr "Yleensä ottaen" msgid "Post review" msgstr "Lähetä arvostelu" msgid "This field is required!" msgstr "Tämä kenttä pitää täyttää!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Arvostelusi on julkaistu. päivitä sivu nähdäksesi sen." msgid "Your review has been registered and is awaiting approval." msgstr "Arvostelusi on rekisteröity ja odottaa hyväksyntää." msgid "Submit reply" msgstr "Lähetä vastaus" msgid "Enter your reply" msgstr "Kirjoita vastauksesi" msgid "Cancel" msgstr "Peruuttaa" msgid "Some required fields have been left blank." msgstr "Jotkut pakolliset kentät on jätetty tyhjiksi." msgid "Please enter a valid email address." msgstr "Ole hyvä ja syötä toimiva sähköpostiosoite." msgid "The number cannot be lower than" msgstr "Luku ei voi olla pienempi kuin" msgid "The number cannot be higher than" msgstr "Luku ei voi olla suurempi kuin" msgid "Leave a review" msgstr "Jätä arvostelu" msgid "Submit" msgstr "Lähetä" msgid "Update" msgstr "Päivittää" msgid "out of 5" msgstr "viidestä" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Olet saavuttanut tämän artikkelin arvioiden rajan" msgid "Log in to leave a review." msgstr "Kirjaudu sisään jättääksesi arvostelun." msgid "Enter a title for your review" msgstr "Anna arvostelullesi otsikko" msgid "Enter your review" msgstr "Kirjoita arvostelusi" msgid "Review criteria" msgstr "Tarkistuskriteerit" msgid "Enter Your Name or Company" msgstr "Kirjoita nimesi tai yrityksesi" msgid "Submit review" msgstr "Lähetä arvostelu" msgid "Delete" msgstr "Poistaa" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Vastauksesi on julkaistu. päivitä sivu nähdäksesi sen." msgid "You have not created any posts." msgstr "Et ole luonut yhtään viestiä." msgid "The selected post has been successfully deleted." msgstr "Valittu viesti on poistettu onnistuneesti." msgid "Rating" msgstr "Luokitus" msgid "Title" msgstr "Otsikko" msgid "Post image" msgstr "Lähetä kuva" msgid "Categories" msgstr "Luokat" msgid "Date" msgstr "Päivämäärä" msgid "Source title" msgstr "Lähteen otsikko" msgid "No rating" msgstr "Ei arvosanaa" msgid "View" msgstr "Näkymä" msgid "Publish" msgstr "Julkaista" msgid "Add new post" msgstr "Lisää uusi viesti" msgid "Edit post" msgstr "Muokkaa viestiä" msgid "Publish a post" msgstr "Julkaise postaus" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title%:n tila on muutettu." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Oletko varma, että haluat julkaista %post_title%?" msgid "Delete a post" msgstr "Poista viesti" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Oletko varma, että haluat poistaa %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% on siirretty roskakoriin." msgid "You do not hold the required priveleges to execute this request." msgstr "Sinulla ei ole tämän pyynnön suorittamiseen vaadittavia oikeuksia." msgid "No search results." msgstr "Ei hakutuloksia." msgid "Yes" msgstr "Joo" msgid "No" msgstr "Ei" msgid "Save" msgstr "Tallentaa" msgid "Search for a location" msgstr "Etsi sijaintia" msgid "Address line" msgstr "Osoiterivi" msgid "(Optional)" msgstr "(valinnainen)" msgid "State" msgstr "Osavaltio" msgid "Country" msgstr "Maa" msgid "Create new term" msgstr "Luoda uusi termi" msgid "Description" msgstr "Kuvaus" msgid "Delete bookmarks" msgstr "Poista kirjanmerkit" msgid "Reset your password" msgstr "Nollaa salasana" msgid "The password reset key has expired." msgstr "Salasanan palautusavain on vanhentunut." msgid "The password reset key is invalid." msgstr "Salasanan palautusavain on virheellinen." msgid "New password *" msgstr "Uusi salasana *" msgid "Repeat new password *" msgstr "Toista uusi salasana *" msgid "Save password" msgstr "Tallenna salasana" msgid "Your account has been successfully activated!" msgstr "Tilisi on aktivoitu onnistuneesti!" msgid "Your account has already been activated!" msgstr "Käyttäjätilisi on jo aktivoitu!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Tarkista sähköpostistasi oikea aktivointilinkki. tämä linkki on virheellinen." msgid "Account activation" msgstr "Tilin aktivointi" msgid "Please enter a new password before proceeding." msgstr "Anna uusi salasana ennen kuin jatkat." msgid "Please confirm the new password before proceeding." msgstr "Vahvista uusi salasana ennen kuin jatkat." msgid "Please make sure that the passwords match." msgstr "Varmista, että salasanat täsmäävät." msgid "The password has been reset successfully." msgstr "Salasana on nollattu onnistuneesti." msgid "Manage your billing details." msgstr "Hallita laskutustietojasi." msgid "Profile picture" msgstr "Profiilikuva" msgid "Remaining publishing rights." msgstr "Jäljellä olevat julkaisuoikeudet." msgid "The number of articles you have left to publish across different post types." msgstr "Kuinka monta artikkelia sinulla on julkaistavaksi eri viestityypeissä." msgid "Bank transfer" msgstr "Pankkisiirto" msgid "Direct Bank Transfer" msgstr "Suora pankkisiirto" msgid "Canceled" msgstr "Peruutettu" msgid "Cycle Interval" msgstr "Syklin intervalli" msgid "In order to update this filed, you have to activate your account." msgstr "Jotta voit päivittää tämän tiedoston, sinun on aktivoitava tilisi." msgid "Cannot process %s field." msgstr "%s kenttää ei voi käsitellä." msgid "Modified date" msgstr "Muokattu päivämäärä" translation/tr_TR.po000064400000104013150211537140010472 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr_TR\n" msgid "View all results" msgstr "Tüm sonuçları göster" msgid "No results" msgstr "Sonuç Yok" msgid "Home" msgstr "Ana Sayfa" msgid "CLOSE" msgstr "KAPAT" msgid "Page" msgstr "Sayfa" msgid "All" msgstr "Tümü" msgid "By" msgstr "Yazar" msgid "Load more" msgstr "Devamını Göster" msgid "View all posts in" msgstr "Tüm içerikleri göster" msgid "Tags" msgstr "Etiketler" msgid "Previous article" msgstr "Önceki İçerik" msgid "Next article" msgstr "Sonraki İçerik" msgid "Authors" msgstr "Yazarlar" msgid "Author" msgstr "Yazar" msgid "RELATED ARTICLES" msgstr "İlgili Haberler" msgid "MORE FROM AUTHOR" msgstr "Yazarın Diğer İçerikleri" msgid "VIA" msgstr "VIA" msgid "SOURCE" msgstr "Kaynak" msgid "TAGS" msgstr "Etiketler" msgid "SHARE" msgstr "Paylaş" msgid "Continue" msgstr "Devam" msgid "Read more" msgstr "Devamını Oku" msgid "Name:" msgstr "İsim:" msgid "Email:" msgstr "E-Posta:" msgid "Website:" msgstr "Website:" msgid "Comment:" msgstr "Yorum:" msgid "LEAVE A REPLY" msgstr "CEVAP VER" msgid "Post Comment" msgstr "Yorum Gönder" msgid "Cancel reply" msgstr "İptal" msgid "Reply" msgstr "Yorumu Cevapla" msgid "Log in to leave a comment" msgstr "Yorum Yapmak İçin Giriş Yapın" msgid "NO COMMENTS" msgstr "YORUM YOK" msgid "1 COMMENT" msgstr "1 Yorum" msgid "COMMENTS" msgstr "YORUMLAR" msgid "REVIEW OVERVIEW" msgstr "Değerlendirme" msgid "SUMMARY" msgstr "Özet" msgid "OVERALL SCORE" msgstr "Genel Puan" msgid "Ooops... Error 404" msgstr "404 HATASI !" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Üzgünüz, ama aradığınız sayfa mevcut değil." msgid "You can go to the" msgstr "İstersen buraya bakabilirsin:" msgid "HOMEPAGE" msgstr "ANASAYFA" msgid "OUR LATEST POSTS" msgstr "En Yeni İçerikler" msgid "Posts by" msgstr "Yazar:" msgid "POSTS" msgstr "HABERLER" msgid "Posts tagged with" msgstr "Etiketler" msgid "Tag" msgstr "Etiket" msgid "Daily Archives:" msgstr "Günlük Arşiv:" msgid "Monthly Archives:" msgstr "Aylık Arşiv:" msgid "Yearly Archives:" msgstr "Yıllık Arşiv:" msgid "Archives" msgstr "Arşiv" msgid "LATEST ARTICLES" msgstr "En Yeni İçerikler" msgid "search results" msgstr "arama sonuçları" msgid "Search" msgstr "Ara" msgid "If you're not happy with the results, please do another search" msgstr "Aradığını bulamadıysan, yeni bir arama yap" msgid "Contact us" msgstr "İletişim" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "%TOTAL_PAGES% Sayfanın %CURRENT_PAGE%. Sayfası" msgid "Next" msgstr "Sonraki" msgid "Prev" msgstr "Önceki" msgid "No results for your search" msgstr "Aramana uygun bir sonuç yok" msgid "No posts to display" msgstr "Gösterilecek bir içerik yok" msgid "LOG IN" msgstr "GİRİŞ YAP" msgid "Sign in / Join" msgstr "Giriş Yap / Kayıt Ol" msgid "Log In" msgstr "Oturum Aç" msgid "REGISTER" msgstr "Kayıt Ol" msgid "Send My Pass" msgstr "Şifremi Gönder" msgid "Forgot your password?" msgstr "Şifreni mi unuttun?" msgid "Please wait..." msgstr "Lütfen Bekleyin..." msgid "User or password incorrect!" msgstr "Kullanıcı adı veya şifre yanlış!" msgid "Email or username incorrect!" msgstr "Email veya kullanıcı adı yanlış!" msgid "Email incorrect!" msgstr "Email yanlış!" msgid "User or email already exists!" msgstr "Bu kullanıcı adı veya e-posta adresi zaten kayıtlı!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Şifre gönderildi, lütfen e-postanızı kontrol edin(indeks veya spam klasörünü)." msgid "Email address not found!" msgstr "Email adresin bulunamadı!" msgid "Your password is reset, check your email." msgstr "Şifreniz sıfırlandı, e-postanızı kontrol edin." msgid "Welcome! Log into your account" msgstr "Hoşgeldiniz! Hesabınızda oturum açın." msgid "Register for an account" msgstr "Bir hesap oluşturun" msgid "Recover your password" msgstr "Şifrenizi Kurtarın" msgid "your username" msgstr "kullanıcı adınız" msgid "your password" msgstr "Şifre" msgid "your email" msgstr "E-posta" msgid "A password will be e-mailed to you." msgstr "Email adresine yeni bir şifre gönderilecek." msgid "Logout" msgstr "Çıkış" msgid "Like" msgstr "Beğen" msgid "Fans" msgstr "Beğenenler" msgid "Follow" msgstr "Takip Et" msgid "Followers" msgstr "Takipçiler" msgid "Subscribe" msgstr "Abone Ol" msgid "Subscribers" msgstr "Abone" msgid "MORE STORIES" msgstr "DİĞER HABERLER" msgid "Latest" msgstr "En Son" msgid "Featured posts" msgstr "Özel İçerikler" msgid "Most popular" msgstr "En Popülerler" msgid "7 days popular" msgstr "Haftanın En Popülerleri" msgid "By review score" msgstr "Değerlendirme Puanına Göre" msgid "Random" msgstr "Rastgele" msgid "Trending Now" msgstr "Son Dakika" msgid "POPULAR CATEGORY" msgstr "POPÜLER KATEGORİLER" msgid "EVEN MORE NEWS" msgstr "DAHA FAZLA HABER" msgid "Previous (Left arrow key)" msgstr "Önceki (Sol ok tuşu)" msgid "Next (Right arrow key)" msgstr "Sonraki (Sağ ok tuşu)" msgid "%curr% of %total%" msgstr "%curr% / %total%" msgid "The content from %url% could not be loaded." msgstr "%url% linkindeki içerik yüklenemedi." msgid "The image #%curr% could not be loaded." msgstr "%curr% nolu imaj yüklenemedi." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Facebook'ta Paylaş" msgid "Tweet on Twitter" msgstr "Twitter'da Paylaş" msgid "EDITOR PICKS" msgstr "Editörün Seçimi" msgid "POPULAR POSTS" msgstr "POPÜLER MESAJLAR" msgid "FOLLOW US" msgstr "BIZI TAKIP EDIN" msgid "ABOUT US" msgstr "HAKKIMIZDA" msgid "More" msgstr "Daha Fazla" msgid "Featured" msgstr "Öne Çıkan" msgid "All time popular" msgstr "Sevilen her zaman" msgid "Likes" msgstr "Seviyor" msgid "Register" msgstr "Kayıt Ol" msgid "of" msgstr "-" msgid "Euro Member Countries" msgstr "Euro üyesi ülkeler" msgid "Your comment is awaiting moderation" msgstr "Yorumunuz onay bekliyor" msgid "Follow us on Instagram" msgstr "Instagram bizi takip" msgid "Back" msgstr "Geri" msgid "Sign in" msgstr "Giriş Yap" msgid "Sign up" msgstr "Kayıt Ol" msgid "Join" msgstr "Katıl" msgid "Welcome!" msgstr "Hoş Geldiniz" msgid "Log into your account" msgstr "Hesabınıza giriş yapın" msgid "Password recovery" msgstr "Şifre kurtarma" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "E-posta (indeks veya spam klasörü) kontrol edin, şifre gönderildi." msgid "Australian Dollar" msgstr "Avustralya dolar" msgid "Bulgarian Lev" msgstr "Bulgar Levası" msgid "Brazilian Real" msgstr "Brezilya gerçek" msgid "Canadian Dollar" msgstr "Kanada Doları" msgid "Swiss Franc" msgstr "İsviçre frangı" msgid "Chinese Yuan Renminbi" msgstr "çince yuan renminbi" msgid "Czech Republic Koruna" msgstr "Çek Cumhuriyeti Korunası" msgid "Danish Krone" msgstr "Danimarka kronu" msgid "British Pound" msgstr "Ingiliz Sterlini" msgid "Hong Kong Dollar" msgstr "Hong Kong Doları" msgid "Croatian Kuna" msgstr "Hırvat kuna" msgid "Hungarian Forint" msgstr "Macar forinti" msgid "Indonesian Rupiah" msgstr "Endonezya rupiahı" msgid "Israeli Shekel" msgstr "Israil Şekeli" msgid "Indian Rupee" msgstr "Hint rupisi" msgid "Japanese Yen" msgstr "Japon Yeni" msgid "Korean (South) Won" msgstr "Kore (güney) kazandı" msgid "Mexican Peso" msgstr "Meksika pezosu" msgid "Malaysian Ringgit" msgstr "Malezya ringgiti" msgid "Norwegian Krone" msgstr "Norveç kronu" msgid "New Zealand Dollar" msgstr "Yeni Zelanda Doları" msgid "Philippine Peso" msgstr "Filipin pezosu" msgid "Polish Zloty" msgstr "Lehçe zlotisi" msgid "Romanian (New) Leu" msgstr "Rumen (yeni) ley" msgid "Russian Ruble" msgstr "Rus rublesi" msgid "Swedish Krona" msgstr "Isveç Kronu" msgid "Singapore Dollar" msgstr "Singapur doları" msgid "Thai Baht" msgstr "Tay Bahtı" msgid "Turkish Lira" msgstr "Türk Lirası" msgid "United States Dollar" msgstr "Amerikan Doları" msgid "South African Rand" msgstr "Güney Afrika Randı" msgid "Privacy Policy" msgstr "Gizlilik Politikası" msgid "views" msgstr "görünümler" msgid "Modified date:" msgstr "Değiştirilme tarihi:" msgid "Please enter your name here" msgstr "Lütfen isminizi buraya giriniz" msgid "Please enter your email address here" msgstr "Lütfen e-posta adresinizi buraya girin" msgid "You have entered an incorrect email address!" msgstr "Yanlış bir e-posta adresi girdiniz!" msgid "Please enter your comment!" msgstr "Lütfen yorumunuzu giriniz!" msgid "Logged in as" msgstr "Olarak giriş yaptı" msgid "Log out?" msgstr "çıkış Yap?" msgid "Logged in as %s. Edit your profile." msgstr "% s olarak giriş yaptınız. Profilinizi düzenleyin." msgid "Edit" msgstr "Düzenle" msgid "Login" msgstr "Oturum aç" msgid "Send My Password" msgstr "şifremi gönder" msgid "Create an account" msgstr "Hesap oluştur" msgid "Welcome! Register for an account" msgstr "Hoşgeldiniz! hesap açmak" msgid "About me" msgstr "Benim hakkımda" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Ismimi, e-postamı ve web sitemi bir dahaki sefere bu tarayıcıya kaydet." msgid "Orders" msgstr "Emirler" msgid "Addresses" msgstr "Adresler" msgid "Account settings" msgstr "Hesap ayarları" msgid "Hello" msgstr "Merhaba" msgid "No products in the cart." msgstr "Sepette ürün yok." msgid "Product categories" msgstr "ürün kategorileri" msgid "Product tags" msgstr "Ürün etiketleri" msgid "Success" msgstr "Başarı" msgid "Acknowledgment is required!" msgstr "Onay gerekli!" msgid "Please fill in a valid email." msgstr "Lütfen geçerli bir e-posta girin." msgid "Please fill in an email address." msgstr "Lütfen bir e-posta adresi girin." msgid "Get into your account." msgstr "Hesabına gir." msgid "My subscription account" msgstr "Abonelik hesabım" msgid "Account details" msgstr "Hesap detayları" msgid "Subscriptions" msgstr "Abonelikler" msgid "My woo account" msgstr "Benim woo hesabım" msgid "Log out" msgstr "çıkış Yap" msgid "Email address" msgstr "E" msgid "Username" msgstr "Kullanıcı adı" msgid "Password" msgstr "Parola" msgid "must contain at least one lower case (a..z)" msgstr "en az bir küçük harf (a..z) içermelidir" msgid "must contain at least one upper case (A..Z)" msgstr "en az bir büyük harf (a..z) içermelidir" msgid "must contain at least 6 characters in length" msgstr "en az 6 karakter uzunluğunda olmalıdır" msgid "Repeat password" msgstr "Şifreyi tekrar girin" msgid "Already have an account?" msgstr "Zaten hesabınız var mı?" msgid "Recover password" msgstr "şifre kurtarma" msgid "Username or Email address" msgstr "Kullanıcı Adı yada Eposta Adresi" msgid "Forgot password?" msgstr "Parolanızı mı unuttunuz?" msgid "Don't have an account?" msgstr "Hesabın yok mu" msgid "Dashboard" msgstr "Gösterge Paneli" msgid "Welcome to your account!" msgstr "Hesabınıza hoş geldiniz!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Merhaba %1$s (%2$s değil mi? %3$s)! hesap kontrol panelinizden aboneliklerinizi görüntüleyebilir ve hesap ayrıntılarınızı yönetebilirsiniz." msgid "Lost Password" msgstr "Kayıp Şifre" msgid "Manage your account details." msgstr "Hesap ayrıntılarınızı yönetin." msgid "First name" msgstr "Ilk adı" msgid "Last name" msgstr "Soyadı" msgid "Display name" msgstr "Ekran adı" msgid "Current password" msgstr "Mevcut Şifre" msgid "(leave blank to leave unchanged)" msgstr "(değişmeden bırakmak için boş bırakın)" msgid "New password" msgstr "Yeni Şifre" msgid "Confirm new password" msgstr "Yeni şifreyi onayla" msgid "Save changes" msgstr "Değişiklikleri Kaydet" msgid "All your subscriptions." msgstr "Tüm abonelikleriniz." msgid "Plan" msgstr "Plan" msgid "Payment type" msgstr "ödeme şekli" msgid "Status" msgstr "Durum" msgid "Months" msgstr "Aylar" msgid "Start date" msgstr "Başlangıç tarihi" msgid "End date" msgstr "Bitiş tarihi" msgid "missing plan" msgstr "eksik plan" msgid "Free" msgstr "Bedava" msgid "Active" msgstr "Aktif" msgid "Trial" msgstr "Duruşma" msgid "Blocked" msgstr "Engellendi" msgid "Closed" msgstr "Kapalı" msgid "Not paid" msgstr "ödenmeyen" msgid "Awaiting payment" msgstr "Bekleyen ödeme" msgid "Subscription info" msgstr "Abonelik bilgisi" msgid "ID" msgstr "İD" msgid "Name" msgstr "Isim" msgid "Company name" msgstr "Şirket Adı" msgid "VAT" msgstr "KDV" msgid "Address" msgstr "Adres" msgid "City" msgstr "Kent" msgid "Country/State" msgstr "ülke devlet" msgid "Email" msgstr "E-posta" msgid "Postal code" msgstr "Posta kodu" msgid "Direct bank transfer details" msgstr "Doğrudan banka havalesi ayrıntıları" msgid "Account name" msgstr "Hesap adı" msgid "Account number" msgstr "Hesap numarası" msgid "Bank name" msgstr "Banka adı" msgid "Routing number" msgstr "Yönlendirme numarası" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bi/hızlı" msgid "Instructions" msgstr "Talimatlar" msgid "No subscription created." msgstr "Abonelik oluşturulmadı." msgid "Choose plan" msgstr "Planı seç" msgid "Payment methods" msgstr "Ödeme metodları" msgid "Total" msgstr "Toplam" msgid "Period" msgstr "Dönem" msgid "Subscription summary" msgstr "Abonelik özeti" msgid "Phone" msgstr "Telefon" msgid "Postcode" msgstr "Posta kodu" msgid "County" msgstr "Ilçe" msgid "Town/City" msgstr "Kasaba/şehir" msgid "Street address" msgstr "Sokak adresi" msgid "Country/Region" msgstr "ülke/bölge" msgid "VAT Number" msgstr "KDV numarası" msgid "(optional)" msgstr "(isteğe bağlı)" msgid "Billing details" msgstr "Fatura Detayları" msgid "User information" msgstr "Kullanıcı bilgisi" msgid "It seems that no available payment methods have been configured." msgstr "Hiçbir kullanılabilir ödeme yöntemi yapılandırılmamış görünüyor." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Teşekkürler! sizi burada görmekten mutluluk duyuyoruz. aboneliğiniz yakında etkinleştirilecek!" msgid "Our bank details" msgstr "Banka bilgilerimiz" msgid "Your subscription details" msgstr "Abonelik bilgileriniz" msgid "View subscription" msgstr "Aboneliği görüntüle" msgid "You have not selected a valid subscription plan." msgstr "Geçerli bir abonelik planı seçmediniz." msgid "Field empty" msgstr "Alan boş" msgid "Empty first name" msgstr "Boş isim" msgid "Empty last name" msgstr "Boş soyadı" msgid "Empty country" msgstr "Boş ülke" msgid "Empty address" msgstr "Boş adres" msgid "Empty city" msgstr "Boş şehir" msgid "Empty county" msgstr "Boş ilçe" msgid "Empty postcode" msgstr "Boş posta kodu" msgid "Empty phone" msgstr "Boş telefon" msgid "Empty email" msgstr "Boş e-posta" msgid "Email or username empty!" msgstr "E-posta veya kullanıcı adı boş!" msgid "Pass empty!" msgstr "Boş geç!" msgid "Username incorrect!" msgstr "Kullanıcı adı yanlış!" msgid "Invalid Pass Pattern!" msgstr "Geçersiz geçiş deseni!" msgid "Please activate your account by following the link sent to your email address." msgstr "Lütfen e-posta adresinize gönderilen bağlantıyı takip ederek hesabınızı etkinleştirin." msgid "Resend activation link" msgstr "Aktivasyon bağlantısını yeniden gönder" msgid "In order to have access to this section, you have to activate your account." msgstr "Bu bölüme erişebilmek için hesabınızı etkinleştirmeniz gerekir." msgid "Email empty!" msgstr "E-posta boş!" msgid "Username empty!" msgstr "Kullanıcı adı boş!" msgid "Pass pattern incorrect!" msgstr "Pas deseni yanlış!" msgid "Retyped pass empty!" msgstr "Yeniden yazılan geçiş boş!" msgid "Retyped pass exactly!" msgstr "Tam olarak yeniden yazılan geçiş!" msgid "User already exists!" msgstr "Kullanıcı zaten var!" msgid "Email already exists!" msgstr "Bu e-posta zaten var!" msgid "Your account could not be created." msgstr "Hesabınız oluşturulamadı." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Hesabınızı doğrulamak için lütfen e-postanızı (gelen kutusu veya spam klasörü) kontrol edin." msgid "User empty!" msgstr "Kullanıcı boş!" msgid "User does not exists!" msgstr "Kullanıcı mevcut değil!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Yeni aktivasyon bağlantısı oluşturuldu. hesabınızı doğrulamak için lütfen e-postanızı (gelen kutusu veya spam klasörü) kontrol edin." msgid "CAPTCHA verification failed!" msgstr "Captcha doğrulaması başarısız oldu!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Captcha kullanıcı puanı başarısız oldu. lütfen bizimle iletişime geçin!" msgid "Loading" msgstr "Yükleniyor" msgid "Here are the results for the search:" msgstr "Işte arama sonuçları:" msgid "Price" msgstr "Fiyat" msgid "EXCLUSIVE" msgstr "ÖZEL" msgid "Tel:" msgstr "Tel:" msgid "Share" msgstr "Paylaş" msgid "Print" msgstr "Yazdır" msgid "At" msgstr "De" msgid "Comments are closed." msgstr "Yoruma kapalı." msgid "Payment method" msgstr "Ödeme şekli" msgid "You must be logged out to view this page." msgstr "Bu sayfayı görüntülemek için çıkış yapmalısınız." msgid "Retyped Pass incorrect!" msgstr "Yeniden yazılan geçiş yanlış!" msgid "%s is a required field." msgstr "%s zorunlu bir alandır." msgid "Please provide a valid email address." msgstr "Lütfen geçerli bir e-posta adresi girin." msgid "This email address is already registered." msgstr "Bu e-posta adresi zaten kayıtlı." msgid "Please fill out all password fields." msgstr "Lütfen tüm şifre alanlarını doldurun." msgid "Please enter your current password." msgstr "Lütfen mevcut şifrenizi giriniz." msgid "Please re-enter your password." msgstr "Lütfen şifrenizi tekrar girin." msgid "New passwords do not match." msgstr "Yeni şifreler uyuşmuyor." msgid "Your current password is incorrect." msgstr "Mevcut şifreniz doğru değildir." msgid "Account details changed successfully." msgstr "Hesap ayrıntıları başarıyla değiştirildi." msgid "A new activation link has been sent to your email address!" msgstr "Email adresinize yeni aktivasyon linki gönderildi!" msgid "unlimited" msgstr "sınırsız" msgid "Pay with Stripe" msgstr "şeritle ödeme" msgid "Cancel subscription" msgstr "Aboneliği iptal et" msgid "Please check your email and confirm subscription!" msgstr "Lütfen e-postanızı kontrol edin ve aboneliğinizi onaylayın!" msgid "Successfully subscribed!" msgstr "Başarıyla Abone Oldunuz!" msgid "Successfully unsubscribed!" msgstr "Abonelikten başarıyla çıkıldı!" msgid "Enter promo code here" msgstr "Promosyon kodunu buraya girin" msgid "Apply" msgstr "Uygula" msgid "Coupon applied" msgstr "Kupon uygulandı" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Yakalanmayan hata: Bir şeyler ters gitti, lütfen sayfayı yeniden yükleyip tekrar deneyin!" msgid "The coupon code you entered is invalid" msgstr "Girdiğiniz kupon kodu geçersiz" msgid "The coupon code you entered has reached its usage limit" msgstr "Girdiğiniz kupon kodu kullanım limitine ulaştı" msgid "The coupon code you entered has expired" msgstr "Girdiğiniz kupon kodunun süresi doldu" msgid "Coupon name is required !" msgstr "Kupon adı gerekli!" msgid "Please enter a coupon code first!" msgstr "Lütfen önce bir kupon kodu girin!" msgid "Invalid" msgstr "Geçersiz" msgid "Applied" msgstr "Uygulamalı" msgid "Remove" msgstr "Kaldırmak" msgid "Price not set" msgstr "Fiyat belirlenmedi" msgid "Grand Total" msgstr "Genel Toplam" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Zaten bir aboneliğiniz var, ancak hâlâ ödenmeyi bekliyor!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Bu abonelik iptal edildi ve %end_date% tarihinde sona erecek." msgid "Go to checkout" msgstr "ödemeye git" msgid "Stripe invoice details" msgstr "şerit fatura ayrıntıları" msgid "Stripe subscription details" msgstr "şerit abonelik ayrıntıları" msgid "Current status" msgstr "şu anki durum" msgid "Initial Invoice Paid" msgstr "ödenen ilk fatura" msgid "Subscription Create: Initial Invoice Paid" msgstr "Abonelik oluşturma: ilk fatura ödendi" msgid "Subscription Create: Initial Invoice has been created" msgstr "Abonelik oluşturma: ilk fatura oluşturuldu" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Abonelik oluşturma: ilk fatura kesinleşti ve ödenmeye hazır" msgid "Subscription Update: Invoice Paid" msgstr "Abonelik güncellemesi: fatura ödendi" msgid "Subscription Renew: Invoice Paid" msgstr "Abonelik yenileme: fatura ödendi" msgid "Subscription Renew: Invoice Finalized" msgstr "Abonelik yenileme: fatura kesinleşti" msgid "Subscription Renew: Invoice Created" msgstr "Abonelik yenileme: fatura oluşturuldu" msgid "Subscription Renew: Invoice Upcoming" msgstr "Abonelik yenileme: fatura gelecek" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Aboneliğin süresi doldu: fatura geçersiz kılındı (ilk fatura ödenmedi)" msgid "Subscription Deleted" msgstr "Abonelik silindi" msgid "Subscription Create: Trialing" msgstr "Abonelik oluşturma: deneme" msgid "Subscription Canceled" msgstr "Abonelik iptal edildi" msgid "Subscription Create: Initial Invoice voided" msgstr "Abonelik oluşturma: ilk fatura geçersiz kılındı" msgid "Subscription Renew: Invoice voided" msgstr "Abonelik yenileme: fatura geçersiz kılındı" msgid "Subscription Update: Invoice voided" msgstr "Abonelik güncellemesi: fatura geçersiz kılındı" msgid "Invoice updated" msgstr "Fatura güncellendi" msgid "Subscription has been canceled and will end on: " msgstr "Abonelik iptal edildi ve şu tarihte sona erecek:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Kurulum başarılı - gelecekteki ödemeler için ödeme yönteminizi başarıyla ayarladınız." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Kurulum başarısız oldu - Üzgünüz, ödeme yönteminizi ayarlarken bir hata oluştu. lütfen farklı bir ödeme yöntemiyle tekrar deneyin." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "ödeme başarılı - son abonelik ödemeniz başarıyla tamamlandı." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "ödeme işleniyor - en son abonelik ödemeniz işleniyor." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "ödeme başarısız oldu - Üzgünüz, ödemeniz işlenirken bir hata oluştu. lütfen farklı bir ödeme yöntemiyle tekrar deneyin." msgid "Download" msgstr "Indirmek" msgid "Stripe invoice" msgstr "şerit fatura" msgid "N/A" msgstr "Yok" msgid "Latest invoice" msgstr "Son fatura" msgid "Invoice" msgstr "Fatura" msgid "Unpaid subscription." msgstr "ücretsiz abonelik." msgid "Locked subscription." msgstr "Abonelik kilitli." msgid "Invalid subscription." msgstr "Geçersiz abonelik." msgid "Pay now" msgstr "Şimdi öde" msgid "Show more info" msgstr "Daha fazla bilgi göster" msgid "Show less info" msgstr "Daha az bilgi göster" msgid "Complete payment" msgstr "ödemeyi tamamla" msgid "or" msgstr "veya" msgid "Setup Payment" msgstr "ödeme kurulumu" msgid "Go to Payment" msgstr "ödemeye git" msgid "Alphabetical A -> Z" msgstr "Alfabetik a -> z" msgid "Oldest posts" msgstr "En eski gönderiler" msgid "Select" msgstr "Seçme" msgid "on" msgstr "Açık" msgid "No bookmarked posts" msgstr "Yer imlerine eklenmiş gönderi yok" msgid "Log in With Facebook" msgstr "Facebook ile giriş" msgid "Forgot your password? Get help" msgstr "Parolanızı mı unuttunuz? yardım almak" msgid "Someone has requested a password reset for the following account:" msgstr "Birisi aşağıdaki hesap için şifre sıfırlama talebinde bulundu:" msgid "Username: %s" msgstr "Kullanıcı adı: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Eğer bu bir hataysa, bu e-postayı dikkate almayın; hiçbir şey olmayacak." msgid "To reset your password, visit the following address:" msgstr "şifrenizi sıfırlamak için aşağıdaki adresi ziyaret edin:" msgid "Members" msgstr "üyeler" msgid "Downloads" msgstr "İndirilenler" msgid "inc. TAX" msgstr "Inc. vergi" msgid "ex. TAX" msgstr "eski. vergi" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Gönderinizi oluşturmaya çalışırken beklenmeyen bir hata oluştu. lütfen tekrar deneyin." msgid "Your post has been successfully created." msgstr "Gönderiniz başarıyla oluşturuldu." msgid "Your post has been successfully updated." msgstr "Gönderiniz başarıyla güncellendi." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Beklenmeyen bir hata oluştu ve posta gönderilemedi." msgid "Location:" msgstr "Konum:" msgid "The email has been successfully sent." msgstr "E-posta başarıyla gönderildi." msgid "An unexpected error has occurred. Please try again." msgstr "Beklenmeyen bir hata oluştu. lütfen tekrar deneyin." msgid "Drag and drop or browse" msgstr "Sürükleyip bırakın veya göz atın" msgid "Search by keyword..." msgstr "Anahtar Kelime İle Ara..." msgid "Select parent" msgstr "Ebeveyn seç" msgid "Add new" msgstr "Yeni ekle" msgid "Parent" msgstr "Ebeveyn" msgid "Select child" msgstr "çocuğu seç" msgid "Select sub-child" msgstr "Alt çocuğu seç" msgid "Posted by" msgstr "Tarafından gönderildi" msgid "Overall" msgstr "Etraflı" msgid "Post review" msgstr "Inceleme sonrası" msgid "This field is required!" msgstr "Bu alan gereklidir!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Incelemeniz yayınlandı. görebilmek için lütfen sayfayı yenileyiniz." msgid "Your review has been registered and is awaiting approval." msgstr "İncelemeniz kaydedildi ve onay bekliyor." msgid "Submit reply" msgstr "Yanıtı gönder" msgid "Enter your reply" msgstr "Cevabınızı girin" msgid "Cancel" msgstr "Iptal etmek" msgid "Some required fields have been left blank." msgstr "Bazı zorunlu alanlar boş bırakılmıştır." msgid "Please enter a valid email address." msgstr "Geçerli bir e." msgid "The number cannot be lower than" msgstr "Sayı bundan daha düşük olamaz" msgid "The number cannot be higher than" msgstr "Sayı bundan daha yüksek olamaz" msgid "Leave a review" msgstr "Inceleme bırak" msgid "Submit" msgstr "Göndermek" msgid "Update" msgstr "Güncelleme" msgid "out of 5" msgstr "5 üzerinden" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Bu makale için gönderebileceğiniz inceleme sınırına ulaştınız" msgid "Log in to leave a review." msgstr "Yorum bırakmak için giriş yapın." msgid "Enter a title for your review" msgstr "Incelemeniz için bir başlık girin" msgid "Enter your review" msgstr "Incelemenizi girin" msgid "Review criteria" msgstr "Inceleme kriterleri" msgid "Enter Your Name or Company" msgstr "Adınızı veya şirketinizi girin" msgid "Submit review" msgstr "Inceleme gönder" msgid "Delete" msgstr "Silmek" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Cevabınız yayınlandı. görebilmek için lütfen sayfayı yenileyiniz." msgid "You have not created any posts." msgstr "Herhangi bir gönderi oluşturmadınız." msgid "The selected post has been successfully deleted." msgstr "Seçilen gönderi başarıyla silindi." msgid "Rating" msgstr "Değerlendirme" msgid "Title" msgstr "Başlık" msgid "Post image" msgstr "Resim gönder" msgid "Categories" msgstr "Kategoriler" msgid "Date" msgstr "Tarih" msgid "Source title" msgstr "Kaynak başlığı" msgid "No rating" msgstr "Derecelendirme yok" msgid "View" msgstr "Görüş" msgid "Publish" msgstr "Yayınla" msgid "Add new post" msgstr "Yeni gönderi ekle" msgid "Edit post" msgstr "Gönderiyi düzenle" msgid "Publish a post" msgstr "Bir gönderi yayınlamak" msgid "The status for %POST_TITLE% has been changed." msgstr "%post_title%'in durumu değiştirildi." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "%post_title%'i yayınlamak istediğinizden emin misiniz?" msgid "Delete a post" msgstr "Bir gönderiyi sil" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "%post_title%'i silmek istediğinizden emin misiniz?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% çöp kutusuna taşındı." msgid "You do not hold the required priveleges to execute this request." msgstr "Bu isteği gerçekleştirmek için gerekli ayrıcalıklara sahip değilsiniz." msgid "No search results." msgstr "Arama sonucu bulunamadı." msgid "Yes" msgstr "Evet" msgid "No" msgstr "HAYIR" msgid "Save" msgstr "Kaydetmek" msgid "Search for a location" msgstr "Bir konum arayın" msgid "Address line" msgstr "Adres satırı" msgid "(Optional)" msgstr "(isteğe bağlı)" msgid "State" msgstr "Durum" msgid "Country" msgstr "ülke" msgid "Create new term" msgstr "Yeni terim oluştur" msgid "Description" msgstr "Tanım" msgid "Delete bookmarks" msgstr "Yer işaretlerini sil" msgid "Reset your password" msgstr "şifrenizi sıfırlayın" msgid "The password reset key has expired." msgstr "şifre sıfırlama anahtarının süresi doldu." msgid "The password reset key is invalid." msgstr "şifre sıfırlama anahtarı geçersiz." msgid "New password *" msgstr "Yeni Şifre *" msgid "Repeat new password *" msgstr "Yeni şifreyi tekrar girin *" msgid "Save password" msgstr "şifreyi kaydet" msgid "Your account has been successfully activated!" msgstr "Hesabınız başarıyla etkinleştirildi!" msgid "Your account has already been activated!" msgstr "Hesabınız daha önceden aktive edilmiştir!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Doğru aktivasyon bağlantısı için e-postanızı kontrol edin. bu bağlantı geçersiz." msgid "Account activation" msgstr "Hesap Aktivasyonu" msgid "Please enter a new password before proceeding." msgstr "Devam etmeden önce lütfen yeni bir şifre girin." msgid "Please confirm the new password before proceeding." msgstr "Lütfen devam etmeden önce yeni şifreyi onaylayın." msgid "Please make sure that the passwords match." msgstr "Lütfen şifrelerin eşleştiğinden emin olun." msgid "The password has been reset successfully." msgstr "şifre başarıyla sıfırlandı." msgid "Manage your billing details." msgstr "Fatura ayrıntılarınızı yönetin." msgid "Profile picture" msgstr "Profil fotoğrafı" msgid "Remaining publishing rights." msgstr "Kalan yayın hakları." msgid "The number of articles you have left to publish across different post types." msgstr "Farklı gönderi türlerinde yayınlayabileceğiniz makale sayısı." msgid "Bank transfer" msgstr "Banka transferi" msgid "Direct Bank Transfer" msgstr "Doğrudan Banka Havalesi" msgid "Canceled" msgstr "Iptal edildi" msgid "Cycle Interval" msgstr "Döngü aralığı" msgid "In order to update this filed, you have to activate your account." msgstr "Bu dosyayı güncellemek için hesabınızı etkinleştirmeniz gerekir." msgid "Cannot process %s field." msgstr "%s alanı işlenemiyor." msgid "Modified date" msgstr "Değiştirilme tarihi" translation/th.po000064400000146511150211537140010064 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th\n" msgid "View all results" msgstr "ดูผลทั้งหมด" msgid "No results" msgstr "ไม่มีผล" msgid "Home" msgstr "หน้าแรก" msgid "CLOSE" msgstr "ปิด" msgid "Page" msgstr "หน้า" msgid "All" msgstr "ทั้งหมด" msgid "By" msgstr "โดย" msgid "Load more" msgstr "โหลดเพิ่มเติม" msgid "View all posts in" msgstr "ดูโพสต์ทั้งหมดใน" msgid "Tags" msgstr "แท็ก" msgid "Previous article" msgstr "บทความก่อนหน้านี้" msgid "Next article" msgstr "บทความถัดไป" msgid "Authors" msgstr "ผู้เขียน" msgid "Author" msgstr "ผู้เขียน" msgid "RELATED ARTICLES" msgstr "บทความที่เกี่ยวข้อง" msgid "MORE FROM AUTHOR" msgstr "เพิ่มเติมจากผู้เขียน" msgid "VIA" msgstr "ผ่าน" msgid "SOURCE" msgstr "แหล่งที่มา" msgid "TAGS" msgstr "แท็ก" msgid "SHARE" msgstr "แบ่งปัน" msgid "Continue" msgstr "ดำเนินการต่อ" msgid "Read more" msgstr "อ่านเพิ่มเติม" msgid "Name:" msgstr "ชื่อ" msgid "Email:" msgstr "อีเมล์" msgid "Website:" msgstr "เว็บไซต์" msgid "Comment:" msgstr "ความคิดเห็น" msgid "LEAVE A REPLY" msgstr "ทิ้งคำตอบไว้" msgid "Post Comment" msgstr "โพสต์แสดงความคิดเห็น" msgid "Cancel reply" msgstr "ยกเลิกการตอบ" msgid "Reply" msgstr "ตอบ" msgid "Log in to leave a comment" msgstr "เข้าระบบเพื่อแสดงความคิดเห็น" msgid "NO COMMENTS" msgstr "ไม่มีความคิดเห็น" msgid "1 COMMENT" msgstr "1 ความคิดเห็น" msgid "COMMENTS" msgstr "ความคิดเห็น" msgid "REVIEW OVERVIEW" msgstr "ทบทวนภาพรวม" msgid "SUMMARY" msgstr "สรุป" msgid "OVERALL SCORE" msgstr "คะแนนโดยรวม" msgid "Ooops... Error 404" msgstr "โอ๊ะโอ… ข้อผิดพลาด 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "ขออภัย, แต่หน้าที่คุณกำลังมองหานั้นไม่มีอยู่" msgid "You can go to the" msgstr "คุณสามารถไปที่" msgid "HOMEPAGE" msgstr "หน้าแรก" msgid "OUR LATEST POSTS" msgstr "โพสต์ล่าสุดของเรา" msgid "Posts by" msgstr "โพสต์ของ" msgid "POSTS" msgstr "โพสต์" msgid "Posts tagged with" msgstr "โพสต์แท็กกับ" msgid "Tag" msgstr "แท็ก" msgid "Daily Archives:" msgstr "จดหมายเหตุประจำวัน" msgid "Monthly Archives:" msgstr "จดหมายเหตุรายเดือน" msgid "Yearly Archives:" msgstr "จดหมายเหตุรายปี" msgid "Archives" msgstr "จดหมายเหตุ" msgid "LATEST ARTICLES" msgstr "บทความล่าสุด" msgid "search results" msgstr "ค้นหาผล" msgid "Search" msgstr "ค้นหา" msgid "If you're not happy with the results, please do another search" msgstr "หากคุณไม่มีความสุขกับผลที่ได้ โปรดดำเนินการค้นหาอื่น" msgid "Contact us" msgstr "ติดต่อเรา" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "หน้า %CURRENT_PAGE% ของ %TOTAL_PAGES%" msgid "Next" msgstr "ถัดไป" msgid "Prev" msgstr "ย้อนกลับหน้าที่แล้ว" msgid "No results for your search" msgstr "ไม่มีผลการค้นหาขอลคุณ" msgid "No posts to display" msgstr "ไม่มีโพสต์ที่แสดง" msgid "LOG IN" msgstr "เข้าสู่ระบบ" msgid "Sign in / Join" msgstr "เข้าสู่ระบบ/เข้าร่วม" msgid "Log In" msgstr "เข้าสู่ระบบ" msgid "REGISTER" msgstr "ลงทะเบียน" msgid "Send My Pass" msgstr "ส่งรหัสผ่านของฉัน" msgid "Forgot your password?" msgstr "ลืมรหัสผ่านของคุณ?" msgid "Please wait..." msgstr "กรุณารอสักครู่…" msgid "User or password incorrect!" msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง!" msgid "Email or username incorrect!" msgstr "อีเมล์หรือชื่อผู้ใช้ไม่ถูกต้อง!" msgid "Email incorrect!" msgstr "อีเมล์ไม่ถูกต้อง!" msgid "User or email already exists!" msgstr "ผู้ใช้หรืออีเมล์มีอยู่แล้ว!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "กรุณาตรวจสอบอีเมล์ของคุณ (ดัชนีหรือโฟลเดอร์อีเมล์ขยะ) รหัสผ่านถูกส่งไปที่นั่นแล้ว" msgid "Email address not found!" msgstr "ไม่พบอีเมล์!" msgid "Your password is reset, check your email." msgstr "รหัสผ่านของคุณถูกตั้งค่าใหม่ ตรวจสอบอีเมล์ของคุณ" msgid "Welcome! Log into your account" msgstr "ยินดีต้อนรับ! เข้าสู่ระบบบัญชีของคุณ" msgid "Register for an account" msgstr "ลงทะเบียนสำหรับบัญชี" msgid "Recover your password" msgstr "กู้คืนรหัสผ่านของคุณ" msgid "your username" msgstr "ชื่อผู้ใช้ของคุณ" msgid "your password" msgstr "รหัสผ่านของคุณ" msgid "your email" msgstr "อีเมล์ของคุณ" msgid "A password will be e-mailed to you." msgstr "รหัสผ่านจะถูกอีเมล์ถึงคุณ" msgid "Logout" msgstr "ออกจากระบบ" msgid "Like" msgstr "ชอบ" msgid "Fans" msgstr "แฟนคลับ" msgid "Follow" msgstr "ติดตาม" msgid "Followers" msgstr "ผู้ติดตาม" msgid "Subscribe" msgstr "บอกรับเป็นสมาชิก" msgid "Subscribers" msgstr "สมาชิก" msgid "MORE STORIES" msgstr "เรื่องราวเพิ่มเติม" msgid "Latest" msgstr "ล่าสุด" msgid "Featured posts" msgstr "โพสต์แนะนำ" msgid "Most popular" msgstr "นิยมมากที่สุด" msgid "7 days popular" msgstr "7 วันที่เป็นที่นิยม" msgid "By review score" msgstr "โดยคะแนนทบทวน" msgid "Random" msgstr "สุ่ม" msgid "Trending Now" msgstr "แนวโน้มตอนนี้" msgid "POPULAR CATEGORY" msgstr "ประเภทยอดนิยม" msgid "EVEN MORE NEWS" msgstr "ข่าวมากยิ่งขึ้น" msgid "Previous (Left arrow key)" msgstr "ก่อนหน้านี้ (ปุ่มลูกศรซ้าย)" msgid "Next (Right arrow key)" msgstr "ถัดไป (ปุ่มลูกศรขวา)" msgid "%curr% of %total%" msgstr "%curr%ของ%total%" msgid "The content from %url% could not be loaded." msgstr "เนื้อหาจาก%url%ไม่สามารถโหลด" msgid "The image #%curr% could not be loaded." msgstr "รูปภาพ#%curr%ไม่สามารถโหลด" msgid "Blog" msgstr "บล็อก" msgid "Share on Facebook" msgstr "แบ่งปันบนเฟสบุ๊ค" msgid "Tweet on Twitter" msgstr "ทวีตบนทวิตเตอร์" msgid "EDITOR PICKS" msgstr "หยิบบรรณาธิการ" msgid "POPULAR POSTS" msgstr "โพสต์ที่เป็นที่นิยม" msgid "FOLLOW US" msgstr "ตามเรา" msgid "ABOUT US" msgstr "เกี่ยวกับเรา" msgid "More" msgstr "มากกว่า" msgid "Featured" msgstr "ที่โดดเด่น" msgid "All time popular" msgstr "เวลาที่นิยมทั้งหมด" msgid "Likes" msgstr "ทำเช่นเดียวกับ" msgid "Register" msgstr "การลงทะเบียน" msgid "of" msgstr "ของ" msgid "Euro Member Countries" msgstr "ประเทศสมาชิกยูโร" msgid "Your comment is awaiting moderation" msgstr "ความคิดเห็นของคุณอยู่ในระหว่างรอการกลั่นกรอง" msgid "Follow us on Instagram" msgstr "ติดตามบน Instagram" msgid "Back" msgstr "กลับ" msgid "Sign in" msgstr "ลงชื่อเข้าใช้" msgid "Sign up" msgstr "ลงชื่อ" msgid "Join" msgstr "ร่วม" msgid "Welcome!" msgstr "ยินดีต้อนรับ!" msgid "Log into your account" msgstr "ลงชื่อเข้าใช้บัญชีของคุณ" msgid "Password recovery" msgstr "กู้คืนรหัสผ่าน" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "โปรดตรวจสอบอีเมลของคุณ (ดัชนีหรือสแปมโฟลเดอร์) รหัสผ่านที่ถูกส่งไปที่นั่น" msgid "Australian Dollar" msgstr "ดอลลาร์ออสเตรเลีย" msgid "Bulgarian Lev" msgstr "บัลแกเรีย Lev" msgid "Brazilian Real" msgstr "เรียลบราซิล" msgid "Canadian Dollar" msgstr "ดอลลาร์แคนาดา" msgid "Swiss Franc" msgstr "ฟรังก์สวิส" msgid "Chinese Yuan Renminbi" msgstr "หยวนหยวนจีน" msgid "Czech Republic Koruna" msgstr "วักสาธารณรัฐเช็ก" msgid "Danish Krone" msgstr "Krone เดนมาร์ก" msgid "British Pound" msgstr "ปอนด์อังกฤษ" msgid "Hong Kong Dollar" msgstr "ดอลลาร์ฮ่องกง" msgid "Croatian Kuna" msgstr "คูนาโครเอเชีย" msgid "Hungarian Forint" msgstr "โฟรินท์ฮังการี" msgid "Indonesian Rupiah" msgstr "รูเปียห์อินโดนีเซีย" msgid "Israeli Shekel" msgstr "เชคเคิลอิสราเอล" msgid "Indian Rupee" msgstr "รูปีอินเดีย" msgid "Japanese Yen" msgstr "เงินเยนของญี่ปุ่น" msgid "Korean (South) Won" msgstr "เกาหลี (ภาคใต้) ชนะ" msgid "Mexican Peso" msgstr "เปโซเม็กซิโก" msgid "Malaysian Ringgit" msgstr "ริงกิตมาเลเซีย" msgid "Norwegian Krone" msgstr "โครนนอร์เวย์" msgid "New Zealand Dollar" msgstr "ดอลลาร์นิวซีแลนด์" msgid "Philippine Peso" msgstr "เปโซของฟิลิปปินส์" msgid "Polish Zloty" msgstr "โปแลนด์ Zloty" msgid "Romanian (New) Leu" msgstr "โรมาเนีย (ใหม่) Leu" msgid "Russian Ruble" msgstr "รูเบิลรัสเซีย" msgid "Swedish Krona" msgstr "โครนาสวีเดน" msgid "Singapore Dollar" msgstr "ดอลลาร์สิงคโปร์" msgid "Thai Baht" msgstr "บาทไทย" msgid "Turkish Lira" msgstr "ลีราตุรกี" msgid "United States Dollar" msgstr "เงินดอลลาร์สหรัฐอเมริกา" msgid "South African Rand" msgstr "ภาคใต้ Rand แอฟริกัน" msgid "Privacy Policy" msgstr "นโยบายความเป็นส่วนตัว" msgid "views" msgstr "มุมมอง" msgid "Modified date:" msgstr "วันที่แก้ไข:" msgid "Please enter your name here" msgstr "กรุณาใส่ชื่อของคุณที่นี่" msgid "Please enter your email address here" msgstr "กรุณาใส่ที่อยู่อีเมลของคุณที่นี่" msgid "You have entered an incorrect email address!" msgstr "คุณป้อนที่อยู่อีเมลไม่ถูกต้อง!" msgid "Please enter your comment!" msgstr "กรุณาใส่ความคิดเห็นของคุณ!" msgid "Logged in as" msgstr "เข้าสู่ระบบในฐานะ" msgid "Log out?" msgstr "ออกจากระบบ?" msgid "Logged in as %s. Edit your profile." msgstr "ลงชื่อเข้าใช้ด้วย% s แก้ไขโปรไฟล์ของคุณ" msgid "Edit" msgstr "แก้ไข" msgid "Login" msgstr "เข้าสู่ระบบ" msgid "Send My Password" msgstr "ส่งรหัสผ่านของฉัน" msgid "Create an account" msgstr "สร้างบัญชี" msgid "Welcome! Register for an account" msgstr "ยินดีต้อนรับ! ลงทะเบียนสำหรับบัญชี" msgid "About me" msgstr "เกี่ยวกับฉัน" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "บันทึกชื่ออีเมลและเว็บไซต์ของฉันในเบราว์เซอร์นี้ในครั้งต่อไปที่ฉันแสดงความคิดเห็น" msgid "Orders" msgstr "คำสั่ง" msgid "Addresses" msgstr "ที่อยู่" msgid "Account settings" msgstr "การตั้งค่าบัญชี" msgid "Hello" msgstr "สวัสดี" msgid "No products in the cart." msgstr "ไม่มีสินค้าในรถเข็น" msgid "Product categories" msgstr "หมวดหมู่สินค้า" msgid "Product tags" msgstr "ป้ายสินค้า" msgid "Success" msgstr "ความสำเร็จ" msgid "Acknowledgment is required!" msgstr "จำเป็นต้องรับทราบ!" msgid "Please fill in a valid email." msgstr "กรุณากรอกอีเมลที่ถูกต้อง" msgid "Please fill in an email address." msgstr "กรุณากรอกอีเมล์" msgid "Get into your account." msgstr "เข้าสู่บัญชีของคุณ" msgid "My subscription account" msgstr "บัญชีสมัครสมาชิกของฉัน" msgid "Account details" msgstr "รายละเอียดบัญชี" msgid "Subscriptions" msgstr "การสมัครรับข้อมูล" msgid "My woo account" msgstr "บัญชี woo ของฉัน" msgid "Log out" msgstr "ออกจากระบบ" msgid "Email address" msgstr "ที่อยู่อีเมล" msgid "Username" msgstr "ชื่อผู้ใช้" msgid "Password" msgstr "รหัสผ่าน" msgid "must contain at least one lower case (a..z)" msgstr "ต้องมีตัวพิมพ์เล็กอย่างน้อยหนึ่งตัว (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "ต้องมีตัวพิมพ์ใหญ่อย่างน้อยหนึ่งตัว (a..z)" msgid "must contain at least 6 characters in length" msgstr "ต้องมีความยาวอย่างน้อย 6 ตัวอักษร" msgid "Repeat password" msgstr "รหัสผ่านซ้ำ" msgid "Already have an account?" msgstr "มีบัญชีอยู่แล้ว?" msgid "Recover password" msgstr "กู้คืนรหัสผ่าน" msgid "Username or Email address" msgstr "ชื่อผู้ใช้หรือที่อยู่อีเมล" msgid "Forgot password?" msgstr "ลืมรหัสผ่าน?" msgid "Don't have an account?" msgstr "ไม่มีบัญชี?" msgid "Dashboard" msgstr "แผงควบคุม" msgid "Welcome to your account!" msgstr "ยินดีต้อนรับสู่บัญชีของคุณ!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "สวัสดี %1$s (ไม่ใช่ %2$s? %3$s)! จากแดชบอร์ดบัญชีของคุณ คุณสามารถดูการสมัครของคุณและจัดการรายละเอียดบัญชีของคุณ" msgid "Lost Password" msgstr "รหัสผ่านหาย" msgid "Manage your account details." msgstr "จัดการรายละเอียดบัญชีของคุณ" msgid "First name" msgstr "ชื่อจริง" msgid "Last name" msgstr "นามสกุล" msgid "Display name" msgstr "ชื่อที่แสดง" msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" msgid "(leave blank to leave unchanged)" msgstr "(เว้นว่างไว้ไม่เปลี่ยนแปลง)" msgid "New password" msgstr "รหัสผ่านใหม่" msgid "Confirm new password" msgstr "ยืนยันรหัสผ่านใหม่" msgid "Save changes" msgstr "บันทึกการเปลี่ยนแปลง" msgid "All your subscriptions." msgstr "การสมัครสมาชิกทั้งหมดของคุณ" msgid "Plan" msgstr "วางแผน" msgid "Payment type" msgstr "ประเภทการชำระเงิน" msgid "Status" msgstr "สถานะ" msgid "Months" msgstr "เดือน" msgid "Start date" msgstr "วันที่เริ่มต้น" msgid "End date" msgstr "วันที่สิ้นสุด" msgid "missing plan" msgstr "ขาดแผน" msgid "Free" msgstr "ฟรี" msgid "Active" msgstr "คล่องแคล่ว" msgid "Trial" msgstr "การทดลอง" msgid "Blocked" msgstr "ถูกบล็อก" msgid "Closed" msgstr "ปิด" msgid "Not paid" msgstr "ไม่จ่าย" msgid "Awaiting payment" msgstr "รอการชำระเงิน" msgid "Subscription info" msgstr "ข้อมูลการสมัครสมาชิก" msgid "ID" msgstr "ID" msgid "Name" msgstr "ชื่อ" msgid "Company name" msgstr "ชื่อ บริษัท" msgid "VAT" msgstr "ภาษีมูลค่าเพิ่ม" msgid "Address" msgstr "ที่อยู่" msgid "City" msgstr "เมือง" msgid "Country/State" msgstr "ประเทศ/รัฐ" msgid "Email" msgstr "อีเมล" msgid "Postal code" msgstr "รหัสไปรษณีย์" msgid "Direct bank transfer details" msgstr "รายละเอียดการโอนเงินผ่านธนาคารโดยตรง" msgid "Account name" msgstr "ชื่อบัญชี" msgid "Account number" msgstr "หมายเลขบัญชี" msgid "Bank name" msgstr "ชื่อธนาคาร" msgid "Routing number" msgstr "เส้นทางหมายเลข" msgid "IBAN" msgstr "อิบัน" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "คำแนะนำ" msgid "No subscription created." msgstr "ไม่มีการสมัครสมาชิกที่สร้างขึ้น" msgid "Choose plan" msgstr "เลือกแผน" msgid "Payment methods" msgstr "วิธีการชำระเงิน" msgid "Total" msgstr "ทั้งหมด" msgid "Period" msgstr "ระยะเวลา" msgid "Subscription summary" msgstr "สรุปการสมัคร" msgid "Phone" msgstr "โทรศัพท์" msgid "Postcode" msgstr "รหัสไปรษณีย์" msgid "County" msgstr "เขต" msgid "Town/City" msgstr "เมือง/เมือง" msgid "Street address" msgstr "ที่อยู่ถนน" msgid "Country/Region" msgstr "ประเทศ/ภูมิภาค" msgid "VAT Number" msgstr "หมายเลขภาษี" msgid "(optional)" msgstr "(ไม่จำเป็น)" msgid "Billing details" msgstr "รายละเอียดการเรียกเก็บเงิน" msgid "User information" msgstr "ข้อมูลผู้ใช้" msgid "It seems that no available payment methods have been configured." msgstr "ดูเหมือนว่าไม่มีการกำหนดค่าวิธีการชำระเงินที่ใช้ได้" msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "ขอบคุณ! เราดีใจที่ได้พบคุณที่นี่ การสมัครของคุณจะเปิดใช้งานเร็ว ๆ นี้!" msgid "Our bank details" msgstr "รายละเอียดธนาคารของเรา" msgid "Your subscription details" msgstr "รายละเอียดการสมัครของคุณ" msgid "View subscription" msgstr "ดูการสมัครสมาชิก" msgid "You have not selected a valid subscription plan." msgstr "คุณยังไม่ได้เลือกแผนการสมัครสมาชิกที่ถูกต้อง" msgid "Field empty" msgstr "ช่องว่างเปล่า" msgid "Empty first name" msgstr "ชื่อที่ว่างเปล่า" msgid "Empty last name" msgstr "นามสกุลว่างเปล่า" msgid "Empty country" msgstr "ประเทศที่ว่างเปล่า" msgid "Empty address" msgstr "ที่อยู่ว่างเปล่า" msgid "Empty city" msgstr "เมืองที่ว่างเปล่า" msgid "Empty county" msgstr "เขตที่ว่างเปล่า" msgid "Empty postcode" msgstr "รหัสไปรษณีย์ว่างเปล่า" msgid "Empty phone" msgstr "โทรศัพท์เปล่า" msgid "Empty email" msgstr "อีเมลเปล่า" msgid "Email or username empty!" msgstr "อีเมลหรือชื่อผู้ใช้ว่างเปล่า!" msgid "Pass empty!" msgstr "ผ่านเปล่า!" msgid "Username incorrect!" msgstr "ชื่อผู้ใช้ไม่ถูกต้อง!" msgid "Invalid Pass Pattern!" msgstr "รูปแบบการผ่านไม่ถูกต้อง!" msgid "Please activate your account by following the link sent to your email address." msgstr "โปรดเปิดใช้งานบัญชีของคุณโดยไปที่ลิงก์ที่ส่งไปยังที่อยู่อีเมลของคุณ" msgid "Resend activation link" msgstr "ส่งลิงค์เปิดใช้งานอีกครั้ง" msgid "In order to have access to this section, you have to activate your account." msgstr "เพื่อเข้าถึงส่วนนี้ คุณต้องเปิดใช้งานบัญชีของคุณ" msgid "Email empty!" msgstr "อีเมลว่างเปล่า!" msgid "Username empty!" msgstr "ชื่อผู้ใช้ว่างเปล่า!" msgid "Pass pattern incorrect!" msgstr "รูปแบบการผ่านไม่ถูกต้อง!" msgid "Retyped pass empty!" msgstr "พิมพ์ซ้ำผ่านว่างเปล่า!" msgid "Retyped pass exactly!" msgstr "พิมพ์ซ้ำผ่านตรง!" msgid "User already exists!" msgstr "มีผู้ใช้นี้อยู่แล้ว!" msgid "Email already exists!" msgstr "มีอีเมลอยู่แล้ว!" msgid "Your account could not be created." msgstr "ไม่สามารถสร้างบัญชีของคุณได้" msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "โปรดตรวจสอบอีเมลของคุณ (กล่องจดหมายหรือโฟลเดอร์สแปม) เพื่อตรวจสอบบัญชีของคุณ" msgid "User empty!" msgstr "ผู้ใช้ว่างเปล่า!" msgid "User does not exists!" msgstr "ผู้ใช้ไม่มีอยู่!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "ลิงค์เปิดใช้งานใหม่ถูกสร้างขึ้น โปรดตรวจสอบอีเมลของคุณ (กล่องจดหมายหรือโฟลเดอร์สแปม) เพื่อตรวจสอบบัญชีของคุณ" msgid "CAPTCHA verification failed!" msgstr "การตรวจสอบ captcha ล้มเหลว!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "คะแนนผู้ใช้ captcha ล้มเหลว กรุณาติดต่อเรา!" msgid "Loading" msgstr "กำลังโหลด" msgid "Here are the results for the search:" msgstr "นี่คือผลลัพธ์สำหรับการค้นหา:" msgid "Price" msgstr "ราคา" msgid "EXCLUSIVE" msgstr "พิเศษ" msgid "Tel:" msgstr "โทร:" msgid "Share" msgstr "แบ่งปัน" msgid "Print" msgstr "พิมพ์" msgid "At" msgstr "ที่" msgid "Comments are closed." msgstr "ความคิดเห็นถูกปิด" msgid "Payment method" msgstr "วิธีการชำระเงิน" msgid "You must be logged out to view this page." msgstr "คุณต้องออกจากระบบเพื่อดูหน้านี้" msgid "Retyped Pass incorrect!" msgstr "พิมพ์ซ้ำผ่านไม่ถูกต้อง!" msgid "%s is a required field." msgstr "%s เป็นฟิลด์บังคับ" msgid "Please provide a valid email address." msgstr "โปรดระบุที่อยู่อีเมลที่ถูกต้อง" msgid "This email address is already registered." msgstr "ที่อยู่อีเมลนี้ลงทะเบียนไว้แล้ว" msgid "Please fill out all password fields." msgstr "กรุณากรอกข้อมูลในช่องรหัสผ่านทั้งหมด" msgid "Please enter your current password." msgstr "กรุณากรอกรหัสผ่านปัจจุบันของคุณ" msgid "Please re-enter your password." msgstr "กรุณากรอกรหัสผ่านของคุณอีกครั้ง" msgid "New passwords do not match." msgstr "รหัสผ่านใหม่ไม่ตรงกัน" msgid "Your current password is incorrect." msgstr "รหัสผ่านปัจจุบันของคุณไม่ถูกต้อง" msgid "Account details changed successfully." msgstr "รายละเอียดบัญชีเปลี่ยนแปลงเรียบร้อยแล้ว" msgid "A new activation link has been sent to your email address!" msgstr "ลิงค์เปิดใช้งานใหม่ได้ถูกส่งไปยังที่อยู่อีเมลของคุณแล้ว!" msgid "unlimited" msgstr "ไม่ จำกัด" msgid "Pay with Stripe" msgstr "ชำระเงินด้วยแถบ" msgid "Cancel subscription" msgstr "ยกเลิกการสมัครสมาชิก" msgid "Please check your email and confirm subscription!" msgstr "โปรดตรวจสอบอีเมลของคุณและยืนยันการสมัคร!" msgid "Successfully subscribed!" msgstr "สมัครสมาชิกสำเร็จแล้ว!" msgid "Successfully unsubscribed!" msgstr "ยกเลิกการสมัครสำเร็จแล้ว!" msgid "Enter promo code here" msgstr "กรอกรหัสโปรโมชั่นที่นี่" msgid "Apply" msgstr "นำมาใช้" msgid "Coupon applied" msgstr "ใช้คูปองแล้ว" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "ข้อผิดพลาดที่ตรวจไม่พบ: มีบางอย่างผิดพลาด โปรดโหลดหน้าซ้ำแล้วลองอีกครั้ง!" msgid "The coupon code you entered is invalid" msgstr "รหัสคูปองที่คุณป้อนไม่ถูกต้อง" msgid "The coupon code you entered has reached its usage limit" msgstr "รหัสคูปองที่คุณป้อนถึงขีดจำกัดการใช้งานแล้ว" msgid "The coupon code you entered has expired" msgstr "รหัสคูปองที่คุณป้อนหมดอายุแล้ว" msgid "Coupon name is required !" msgstr "ต้องระบุชื่อคูปอง !" msgid "Please enter a coupon code first!" msgstr "กรุณากรอกรหัสคูปองก่อน!" msgid "Invalid" msgstr "ไม่ถูกต้อง" msgid "Applied" msgstr "สมัครแล้ว" msgid "Remove" msgstr "ลบ" msgid "Price not set" msgstr "ไม่ได้กำหนดราคา" msgid "Grand Total" msgstr "ผลรวมทั้งสิ้น" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "คุณได้สมัครสมาชิกแล้ว แต่ยังรอการชำระเงินอยู่!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "การสมัครรับข้อมูลนี้ถูกยกเลิกแล้ว และจะสิ้นสุดในวันที่ %end_date%" msgid "Go to checkout" msgstr "ไปเช็คเอาท์" msgid "Stripe invoice details" msgstr "รายละเอียดใบแจ้งหนี้แถบ" msgid "Stripe subscription details" msgstr "รายละเอียดการสมัครสมาชิกแถบ" msgid "Current status" msgstr "สถานะปัจจุบัน" msgid "Initial Invoice Paid" msgstr "ใบแจ้งหนี้เริ่มต้นที่ชำระแล้ว" msgid "Subscription Create: Initial Invoice Paid" msgstr "สร้างการสมัครสมาชิก: ชำระใบแจ้งหนี้เริ่มต้นแล้ว" msgid "Subscription Create: Initial Invoice has been created" msgstr "สร้างการสมัครสมาชิก: สร้างใบแจ้งหนี้เริ่มต้นแล้ว" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "สร้างการสมัครสมาชิก: ใบแจ้งหนี้เริ่มแรกได้รับการสรุปแล้ว และพร้อมที่จะชำระเงิน" msgid "Subscription Update: Invoice Paid" msgstr "อัปเดตการสมัครสมาชิก: ชำระใบแจ้งหนี้แล้ว" msgid "Subscription Renew: Invoice Paid" msgstr "ต่ออายุการสมัครสมาชิก: ชำระใบแจ้งหนี้แล้ว" msgid "Subscription Renew: Invoice Finalized" msgstr "ต่ออายุการสมัคร: สรุปใบแจ้งหนี้แล้ว" msgid "Subscription Renew: Invoice Created" msgstr "ต่ออายุการสมัคร: สร้างใบแจ้งหนี้แล้ว" msgid "Subscription Renew: Invoice Upcoming" msgstr "ต่ออายุการสมัคร: ใบแจ้งหนี้ที่กำลังจะเกิดขึ้น" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "การสมัครสมาชิกหมดอายุ: ใบแจ้งหนี้ถือเป็นโมฆะ (ไม่ได้ชำระใบแจ้งหนี้ใบแรก)" msgid "Subscription Deleted" msgstr "ลบการสมัครสมาชิกแล้ว" msgid "Subscription Create: Trialing" msgstr "สร้างการสมัครสมาชิก: ทดลองใช้" msgid "Subscription Canceled" msgstr "ยกเลิกการสมัครสมาชิกแล้ว" msgid "Subscription Create: Initial Invoice voided" msgstr "สร้างการสมัครสมาชิก: ใบแจ้งหนี้เริ่มต้นเป็นโมฆะ" msgid "Subscription Renew: Invoice voided" msgstr "ต่ออายุการสมัคร: ใบแจ้งหนี้เป็นโมฆะ" msgid "Subscription Update: Invoice voided" msgstr "การอัปเดตการสมัครสมาชิก: ใบแจ้งหนี้เป็นโมฆะ" msgid "Invoice updated" msgstr "อัปเดตใบแจ้งหนี้แล้ว" msgid "Subscription has been canceled and will end on: " msgstr "การสมัครสมาชิกถูกยกเลิกและจะสิ้นสุดในวันที่:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "การตั้งค่าสำเร็จ - คุณได้ตั้งค่าวิธีการชำระเงินสำหรับการชำระเงินในอนาคตสำเร็จแล้ว" msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "การตั้งค่าล้มเหลว - ขออภัย เกิดข้อผิดพลาดในการตั้งค่าวิธีการชำระเงินของคุณ โปรดลองอีกครั้งโดยใช้วิธีการชำระเงินอื่น" msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "ชำระเงินสำเร็จ - ชำระเงินค่าสมัครสมาชิกครั้งล่าสุดของคุณเสร็จสมบูรณ์แล้ว" msgid "Payment processing - Your latest subscription payment is being processed." msgstr "การประมวลผลการชำระเงิน - การชำระเงินการสมัครสมาชิกครั้งล่าสุดของคุณกำลังได้รับการประมวลผล" msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "การชำระเงินล้มเหลว - ขออภัย มีข้อผิดพลาดในการประมวลผลการชำระเงินของคุณ โปรดลองอีกครั้งโดยใช้วิธีการชำระเงินอื่น" msgid "Download" msgstr "ดาวน์โหลด" msgid "Stripe invoice" msgstr "ใบแจ้งหนี้ลาย" msgid "N/A" msgstr "ไม่มี" msgid "Latest invoice" msgstr "ใบแจ้งหนี้ล่าสุด" msgid "Invoice" msgstr "ใบแจ้งหนี้" msgid "Unpaid subscription." msgstr "การสมัครสมาชิกที่ยังไม่ได้ชำระเงิน" msgid "Locked subscription." msgstr "การสมัครสมาชิกที่ถูกล็อค" msgid "Invalid subscription." msgstr "การสมัครสมาชิกไม่ถูกต้อง" msgid "Pay now" msgstr "จ่ายตอนนี้" msgid "Show more info" msgstr "แสดงข้อมูลเพิ่มเติม" msgid "Show less info" msgstr "แสดงข้อมูลน้อยลง" msgid "Complete payment" msgstr "ชำระเงินให้เสร็จสิ้น" msgid "or" msgstr "หรือ" msgid "Setup Payment" msgstr "ตั้งค่าการชำระเงิน" msgid "Go to Payment" msgstr "ไปที่การชำระเงิน" msgid "Alphabetical A -> Z" msgstr "ตามตัวอักษร a -> z" msgid "Oldest posts" msgstr "โพสต์ที่เก่าแก่ที่สุด" msgid "Select" msgstr "เลือก" msgid "on" msgstr "บน" msgid "No bookmarked posts" msgstr "ไม่มีบุ๊กมาร์กโพสต์" msgid "Log in With Facebook" msgstr "เข้าสู่ระบบด้วย Facebook" msgid "Forgot your password? Get help" msgstr "ลืมรหัสผ่านหรือไม่? ขอความช่วยเหลือ" msgid "Someone has requested a password reset for the following account:" msgstr "มีคนขอรีเซ็ตรหัสผ่านสำหรับบัญชีต่อไปนี้:" msgid "Username: %s" msgstr "ชื่อผู้ใช้: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "หากนี่เป็นข้อผิดพลาด เพียงเพิกเฉยต่ออีเมลฉบับนี้และจะไม่มีอะไรเกิดขึ้น" msgid "To reset your password, visit the following address:" msgstr "หากต้องการรีเซ็ตรหัสผ่านของคุณ โปรดไปที่ที่อยู่ต่อไปนี้:" msgid "Members" msgstr "สมาชิก" msgid "Downloads" msgstr "ดาวน์โหลด" msgid "inc. TAX" msgstr "อิงค์ ภาษี" msgid "ex. TAX" msgstr "อดีต. ภาษี" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "เกิดข้อผิดพลาดที่ไม่คาดคิดขณะพยายามสร้างโพสต์ของคุณ กรุณาลองอีกครั้ง." msgid "Your post has been successfully created." msgstr "สร้างโพสต์ของคุณสำเร็จแล้ว" msgid "Your post has been successfully updated." msgstr "โพสต์ของคุณได้รับการอัปเดตเรียบร้อยแล้ว" msgid "An unexpected error has occurred and the mail could not be sent." msgstr "เกิดข้อผิดพลาดที่ไม่คาดคิดและไม่สามารถส่งอีเมลได้" msgid "Location:" msgstr "ที่ตั้ง:" msgid "The email has been successfully sent." msgstr "ส่งอีเมลเรียบร้อยแล้ว" msgid "An unexpected error has occurred. Please try again." msgstr "ข้อผิดพลาดที่ไม่คาดคิดได้เกิดขึ้น. กรุณาลองอีกครั้ง." msgid "Drag and drop or browse" msgstr "ลากและวางหรือเรียกดู" msgid "Search by keyword..." msgstr "ค้นหาด้วยคำสำคัญ..." msgid "Select parent" msgstr "เลือกผู้ปกครอง" msgid "Add new" msgstr "เพิ่มใหม่" msgid "Parent" msgstr "พ่อแม่" msgid "Select child" msgstr "เลือกลูก" msgid "Select sub-child" msgstr "เลือกลูกย่อย" msgid "Posted by" msgstr "โพสโดย" msgid "Overall" msgstr "โดยรวม" msgid "Post review" msgstr "โพสต์รีวิว" msgid "This field is required!" msgstr "ช่องนี้ต้องระบุ!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "บทวิจารณ์ของคุณได้รับการเผยแพร่แล้ว โปรดรีเฟรชหน้าเพื่อดู" msgid "Your review has been registered and is awaiting approval." msgstr "บทวิจารณ์ของคุณได้รับการลงทะเบียนแล้วและกำลังรอการอนุมัติ" msgid "Submit reply" msgstr "ส่งคำตอบ" msgid "Enter your reply" msgstr "ป้อนคำตอบของคุณ" msgid "Cancel" msgstr "ยกเลิก" msgid "Some required fields have been left blank." msgstr "ช่องที่ต้องกรอกบางช่องเว้นว่างไว้" msgid "Please enter a valid email address." msgstr "กรุณาใส่อีเมล์ที่ถูกต้อง." msgid "The number cannot be lower than" msgstr "จำนวนต้องไม่ต่ำกว่า" msgid "The number cannot be higher than" msgstr "จำนวนต้องไม่สูงกว่า" msgid "Leave a review" msgstr "แสดงความคิดเห็น" msgid "Submit" msgstr "ส่ง" msgid "Update" msgstr "อัปเดต" msgid "out of 5" msgstr "จาก 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "คุณมีบทวิจารณ์ถึงขีดจำกัดที่คุณสามารถส่งสำหรับบทความนี้ได้แล้ว" msgid "Log in to leave a review." msgstr "เข้าสู่ระบบเพื่อแสดงความคิดเห็น" msgid "Enter a title for your review" msgstr "ป้อนชื่อสำหรับบทวิจารณ์ของคุณ" msgid "Enter your review" msgstr "ป้อนความคิดเห็นของคุณ" msgid "Review criteria" msgstr "เกณฑ์การพิจารณา" msgid "Enter Your Name or Company" msgstr "ป้อนชื่อหรือบริษัทของคุณ" msgid "Submit review" msgstr "ส่งบทวิจารณ์" msgid "Delete" msgstr "ลบ" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "คำตอบของคุณได้รับการเผยแพร่แล้ว โปรดรีเฟรชหน้าเพื่อดู" msgid "You have not created any posts." msgstr "คุณยังไม่ได้สร้างโพสต์ใดๆ" msgid "The selected post has been successfully deleted." msgstr "โพสต์ที่เลือกถูกลบเรียบร้อยแล้ว" msgid "Rating" msgstr "การให้คะแนน" msgid "Title" msgstr "ชื่อ" msgid "Post image" msgstr "โพสต์ภาพ" msgid "Categories" msgstr "หมวดหมู่" msgid "Date" msgstr "วันที่" msgid "Source title" msgstr "ชื่อแหล่งที่มา" msgid "No rating" msgstr "ไม่มีการให้คะแนน" msgid "View" msgstr "ดู" msgid "Publish" msgstr "เผยแพร่" msgid "Add new post" msgstr "เพิ่มโพสต์ใหม่" msgid "Edit post" msgstr "แก้ไขโพสต์" msgid "Publish a post" msgstr "เผยแพร่โพสต์" msgid "The status for %POST_TITLE% has been changed." msgstr "สถานะของ %post_title% มีการเปลี่ยนแปลง" msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการเผยแพร่ %post_title%?" msgid "Delete a post" msgstr "ลบโพสต์" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบ %post_title%?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% ถูกย้ายไปที่ถังขยะแล้ว" msgid "You do not hold the required priveleges to execute this request." msgstr "คุณไม่มีสิทธิ์ที่จำเป็นในการดำเนินการตามคำขอนี้" msgid "No search results." msgstr "ไม่มีผลการค้นหา" msgid "Yes" msgstr "ใช่" msgid "No" msgstr "เลขที่" msgid "Save" msgstr "บันทึก" msgid "Search for a location" msgstr "ค้นหาสถานที่" msgid "Address line" msgstr "บรรทัดที่อยู่" msgid "(Optional)" msgstr "(ไม่จำเป็น)" msgid "State" msgstr "สถานะ" msgid "Country" msgstr "ประเทศ" msgid "Create new term" msgstr "สร้างคำศัพท์ใหม่" msgid "Description" msgstr "คำอธิบาย" msgid "Delete bookmarks" msgstr "ลบบุ๊กมาร์ก" msgid "Reset your password" msgstr "รีเซ็ตรหัสผ่านของคุณ" msgid "The password reset key has expired." msgstr "รหัสรีเซ็ตรหัสผ่านหมดอายุแล้ว" msgid "The password reset key is invalid." msgstr "รหัสรีเซ็ตรหัสผ่านไม่ถูกต้อง" msgid "New password *" msgstr "รหัสผ่านใหม่ *" msgid "Repeat new password *" msgstr "ทำซ้ำรหัสผ่านใหม่ *" msgid "Save password" msgstr "บันทึกรหัสผ่าน" msgid "Your account has been successfully activated!" msgstr "บัญชีของคุณเปิดใช้งานสำเร็จแล้ว!" msgid "Your account has already been activated!" msgstr "บัญชีของคุณถูกเปิดใช้งานแล้ว!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "ตรวจสอบอีเมลของคุณเพื่อดูลิงก์เปิดใช้งานที่ถูกต้อง ลิงค์นี้ไม่ถูกต้อง" msgid "Account activation" msgstr "การเปิดใช้งานบัญชี" msgid "Please enter a new password before proceeding." msgstr "กรุณากรอกรหัสผ่านใหม่ก่อนดำเนินการต่อ" msgid "Please confirm the new password before proceeding." msgstr "โปรดยืนยันรหัสผ่านใหม่ก่อนดำเนินการต่อ" msgid "Please make sure that the passwords match." msgstr "โปรดตรวจสอบให้แน่ใจว่ารหัสผ่านตรงกัน" msgid "The password has been reset successfully." msgstr "รีเซ็ตรหัสผ่านสำเร็จแล้ว" msgid "Manage your billing details." msgstr "จัดการรายละเอียดการเรียกเก็บเงินของคุณ" msgid "Profile picture" msgstr "รูปประวัติ" msgid "Remaining publishing rights." msgstr "สิทธิ์ในการเผยแพร่ที่เหลืออยู่" msgid "The number of articles you have left to publish across different post types." msgstr "จำนวนบทความที่คุณเหลือไว้เพื่อเผยแพร่ในโพสต์ประเภทต่างๆ" msgid "Bank transfer" msgstr "โอนเงินผ่านธนาคาร" msgid "Direct Bank Transfer" msgstr "โอนเงินผ่านธนาคารโดยตรง" msgid "Canceled" msgstr "ยกเลิก" msgid "Cycle Interval" msgstr "ช่วงเวลาของรอบ" msgid "In order to update this filed, you have to activate your account." msgstr "เพื่ออัปเดตไฟล์นี้ คุณต้องเปิดใช้งานบัญชีของคุณ" msgid "Cannot process %s field." msgstr "ไม่สามารถประมวลผลฟิลด์ %s ได้" msgid "Modified date" msgstr "วันที่แก้ไข" translation/de_DE.po000064400000106646150211537140010416 0ustar00msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de_DE\n" msgid "View all results" msgstr "Alle Ergebnisse ansehen" msgid "No results" msgstr "Keine Ergebnisse" msgid "Home" msgstr "Start" msgid "CLOSE" msgstr "SCHLIESSEN" msgid "Page" msgstr "Seite" msgid "All" msgstr "Alle" msgid "By" msgstr "Von" msgid "Load more" msgstr "Mehr laden" msgid "View all posts in" msgstr "Alle Beiträge anzeigen" msgid "Tags" msgstr "Schlagworte" msgid "Previous article" msgstr "Vorheriger Artikel" msgid "Next article" msgstr "Nächster Artikel" msgid "Authors" msgstr "Autoren" msgid "Author" msgstr "Autor" msgid "RELATED ARTICLES" msgstr "Verwandte Artikel" msgid "MORE FROM AUTHOR" msgstr "Mehr vom Autor" msgid "VIA" msgstr "über" msgid "SOURCE" msgstr "Quelle" msgid "TAGS" msgstr "Schlagworte" msgid "SHARE" msgstr "Teilen" msgid "Continue" msgstr "Weiter" msgid "Read more" msgstr "Weiterlesen" msgid "Name:" msgstr "Name:" msgid "Email:" msgstr "E-Mail:" msgid "Website:" msgstr "Website:" msgid "Comment:" msgstr "Kommentar:" msgid "LEAVE A REPLY" msgstr "Kommentieren Sie den Artikel" msgid "Post Comment" msgstr "Kommentar speichern" msgid "Cancel reply" msgstr "Antwort abbrechen" msgid "Reply" msgstr "Antwort" msgid "Log in to leave a comment" msgstr "Loggen Sie sich ein, um einen Kommentar abzugeben" msgid "NO COMMENTS" msgstr "Keine Kommentare" msgid "1 COMMENT" msgstr "1 Kommentar" msgid "COMMENTS" msgstr "Kommentare" msgid "REVIEW OVERVIEW" msgstr "Überblick der Rezensionen" msgid "SUMMARY" msgstr "Zusammenfassung" msgid "OVERALL SCORE" msgstr "Gesamtpunktzahl" msgid "Ooops... Error 404" msgstr "Uuuups ... Fehler 404" msgid "Sorry, but the page you are looking for doesn't exist." msgstr "Es tut uns leid, die gesuchte Seite existiert nicht." msgid "You can go to the" msgstr "Gehen Sie zu" msgid "HOMEPAGE" msgstr "Startseite" msgid "OUR LATEST POSTS" msgstr "Die neuesten Beiträge" msgid "Posts by" msgstr "Beiträge von" msgid "POSTS" msgstr "BEITRÄGE" msgid "Posts tagged with" msgstr "Einträge mit den Schlagworten" msgid "Tag" msgstr "Schlagwort" msgid "Daily Archives:" msgstr "Tagesarchive:" msgid "Monthly Archives:" msgstr "Monatsarchive:" msgid "Yearly Archives:" msgstr "Jahresarchive:" msgid "Archives" msgstr "Archive" msgid "LATEST ARTICLES" msgstr "Neueste Beiträge" msgid "search results" msgstr "Suchergebnisse" msgid "Search" msgstr "Suche" msgid "If you're not happy with the results, please do another search" msgstr "Wenn Sie mit dem Ergebnis nicht zufrieden sind, suchen Sie bitte erneut" msgid "Contact us" msgstr "Kontaktieren Sie uns" msgid "Page %CURRENT_PAGE% of %TOTAL_PAGES%" msgstr "Seite %CURRENT_PAGE% von %TOTAL_PAGES%" msgid "Next" msgstr "Nächste" msgid "Prev" msgstr "Vorherige" msgid "No results for your search" msgstr "Keine Ergebnisse für Ihre Suche" msgid "No posts to display" msgstr "Keine Beiträge vorhanden" msgid "LOG IN" msgstr "Anmelden" msgid "Sign in / Join" msgstr "Anmelden / Beitreten" msgid "Log In" msgstr "Einloggen" msgid "REGISTER" msgstr "Registrieren" msgid "Send My Pass" msgstr "Senden Sie mein Passwort" msgid "Forgot your password?" msgstr "Passwort vergessen?" msgid "Please wait..." msgstr "Bitte warten..." msgid "User or password incorrect!" msgstr "Benutzername oder Passwort falsch!" msgid "Email or username incorrect!" msgstr "E-Mail-Adresse oder Benutzername falsch!" msgid "Email incorrect!" msgstr "E-Mail-Adresse nicht korrekt!" msgid "User or email already exists!" msgstr "Benutzername oder E-Mail-Adresse existiert bereits!" msgid "Please check you email (index or spam folder), the password was sent there." msgstr "Bitte überprüfen Sie Ihre E-Mails (Index oder Spam-Ordner), das Passwort wurde dorthin geschickt." msgid "Email address not found!" msgstr "E-Mail-Adresse wurde nicht gefunden!" msgid "Your password is reset, check your email." msgstr "Ihr Passwort wurde zurückgesetzt, überprüfen Sie Ihre Emails." msgid "Welcome! Log into your account" msgstr "Herzlich willkommen! Melden Sie sich an" msgid "Register for an account" msgstr "Registrieren Sie sich für ein Konto" msgid "Recover your password" msgstr "Passwort zurücksetzen" msgid "your username" msgstr "Ihr Benutzername" msgid "your password" msgstr "Ihr Passwort" msgid "your email" msgstr "Ihre E-Mail-Adresse" msgid "A password will be e-mailed to you." msgstr "Ein Passwort wird Ihnen per Email zugeschickt." msgid "Logout" msgstr "Abmelden" msgid "Like" msgstr "Gefällt mir" msgid "Fans" msgstr "Fans" msgid "Follow" msgstr "Folgen" msgid "Followers" msgstr "Follower" msgid "Subscribe" msgstr "Abonnieren" msgid "Subscribers" msgstr "Abonnenten" msgid "MORE STORIES" msgstr "MEHR STORYS" msgid "Latest" msgstr "Aktuellste" msgid "Featured posts" msgstr "Beliebte Beiträge" msgid "Most popular" msgstr "Am beliebtesten" msgid "7 days popular" msgstr "7 Tage beliebt" msgid "By review score" msgstr "Nach Bewertung" msgid "Random" msgstr "Zufällig" msgid "Trending Now" msgstr "Momentan sehr beliebt" msgid "POPULAR CATEGORY" msgstr "Beliebte Kategorie" msgid "EVEN MORE NEWS" msgstr "Mehr erfahren" msgid "Previous (Left arrow key)" msgstr "Vorherige (Pfeiltaste links)" msgid "Next (Right arrow key)" msgstr "Weiter (rechte Pfeiltaste)" msgid "%curr% of %total%" msgstr "%curr% von %total%" msgid "The content from %url% could not be loaded." msgstr "Der Inhalt von %url% konnte nicht geladen werden." msgid "The image #%curr% could not be loaded." msgstr "Das Bild #%curr% konnte nicht geladen werden." msgid "Blog" msgstr "Blog" msgid "Share on Facebook" msgstr "Bei Facebook teilen" msgid "Tweet on Twitter" msgstr "Bei Twitter teilen" msgid "EDITOR PICKS" msgstr "Redaktionstipp" msgid "POPULAR POSTS" msgstr "Beliebte Beiträge" msgid "FOLLOW US" msgstr "Folgen Sie uns" msgid "ABOUT US" msgstr "Über uns" msgid "More" msgstr "Mehr" msgid "Featured" msgstr "Besondere" msgid "All time popular" msgstr "Die beliebtesten Beiträge aller Zeiten" msgid "Likes" msgstr "Likes" msgid "Register" msgstr "Registrieren" msgid "of" msgstr "von" msgid "Euro Member Countries" msgstr "Euro-Länder Mitglied" msgid "Your comment is awaiting moderation" msgstr "Ihr Beitrag wartet auf die Moderation" msgid "Follow us on Instagram" msgstr "Folgen Sie uns auf instagram" msgid "Back" msgstr "Zurück" msgid "Sign in" msgstr "Anmelden" msgid "Sign up" msgstr "Anmelden" msgid "Join" msgstr "Beitreten" msgid "Welcome!" msgstr "Herzlich willkommen!" msgid "Log into your account" msgstr "Melde dich in deinem Konto an" msgid "Password recovery" msgstr "Passwort-Wiederherstellung" msgid "Please check your email (index or spam folder), the password was sent there." msgstr "überprüfen Sie bitte Ihre E-Mail (Index oder Spam-Ordner) wurde das Passwort dorthin geschickt." msgid "Australian Dollar" msgstr "Australischer Dollar" msgid "Bulgarian Lev" msgstr "Lew" msgid "Brazilian Real" msgstr "Brasilianischer Real" msgid "Canadian Dollar" msgstr "Kanadischer Dollar" msgid "Swiss Franc" msgstr "Schweizerfranken" msgid "Chinese Yuan Renminbi" msgstr "Chinesischer Renminbi Yuan" msgid "Czech Republic Koruna" msgstr "Tschechische Krone" msgid "Danish Krone" msgstr "Dänische Krone" msgid "British Pound" msgstr "Britisches Pfund" msgid "Hong Kong Dollar" msgstr "Hongkong Dollar" msgid "Croatian Kuna" msgstr "Kroatische Kuna" msgid "Hungarian Forint" msgstr "Ungarischer Forint" msgid "Indonesian Rupiah" msgstr "Indonesische Rupiah" msgid "Israeli Shekel" msgstr "Israelische Schekel" msgid "Indian Rupee" msgstr "Indische Rupie" msgid "Japanese Yen" msgstr "Japanische YEN" msgid "Korean (South) Won" msgstr "Koreanisches (Süden) gewonnen" msgid "Mexican Peso" msgstr "Mexikanischer Peso" msgid "Malaysian Ringgit" msgstr "Malaysischer Ringgit" msgid "Norwegian Krone" msgstr "Norwegische Krone" msgid "New Zealand Dollar" msgstr "Neuseeland-Dollar" msgid "Philippine Peso" msgstr "Philippinischer Peso" msgid "Polish Zloty" msgstr "Polnischer Zloty" msgid "Romanian (New) Leu" msgstr "Rumänisch (neu) leu" msgid "Russian Ruble" msgstr "Russischer Rubel" msgid "Swedish Krona" msgstr "Schwedische Krone" msgid "Singapore Dollar" msgstr "Singapur-Dollar" msgid "Thai Baht" msgstr "Thai Baht" msgid "Turkish Lira" msgstr "Türkische Lira" msgid "United States Dollar" msgstr "US-Dollar" msgid "South African Rand" msgstr "Südafrikanischer Rand" msgid "Privacy Policy" msgstr "Datenschutz-Bestimmungen" msgid "views" msgstr "Ansichten" msgid "Modified date:" msgstr "Änderungsdatum:" msgid "Please enter your name here" msgstr "Bitte geben Sie hier Ihren Namen ein" msgid "Please enter your email address here" msgstr "Bitte geben Sie hier Ihre E-Mail-Adresse ein" msgid "You have entered an incorrect email address!" msgstr "Sie haben eine falsche E-Mail-Adresse eingegeben!" msgid "Please enter your comment!" msgstr "Bitte geben Sie Ihren Kommentar ein!" msgid "Logged in as" msgstr "Eingeloggt als" msgid "Log out?" msgstr "Ausloggen?" msgid "Logged in as %s. Edit your profile." msgstr "Als% s angemeldet. bearbeite dein Profil." msgid "Edit" msgstr "Bearbeiten" msgid "Login" msgstr "Anmeldung" msgid "Send My Password" msgstr "Sende mein Passwort" msgid "Create an account" msgstr "Ein Konto erstellen" msgid "Welcome! Register for an account" msgstr "Herzlich willkommen! Registrieren Sie sich für ein Konto" msgid "About me" msgstr "über mich" msgid "Save my name, email, and website in this browser for the next time I comment." msgstr "Speichern Sie meinen Namen, meine E-Mail-Adresse und meine Website für den nächsten Kommentar in diesem Browser." msgid "Orders" msgstr "Aufträge" msgid "Addresses" msgstr "Adressen" msgid "Account settings" msgstr "Account Einstellungen" msgid "Hello" msgstr "Hallo" msgid "No products in the cart." msgstr "Keine Produkte im Einkaufswagen." msgid "Product categories" msgstr "Produktkategorien" msgid "Product tags" msgstr "Produkt Tags" msgid "Success" msgstr "Erfolg" msgid "Acknowledgment is required!" msgstr "Bestätigung ist erforderlich!" msgid "Please fill in a valid email." msgstr "Bitte geben Sie eine gültige E-Mail ein." msgid "Please fill in an email address." msgstr "Bitte geben Sie eine E-Mail-Adresse ein." msgid "Get into your account." msgstr "Auf Ihr Konto einziehen." msgid "My subscription account" msgstr "Mein Abo-Konto" msgid "Account details" msgstr "Kontodetails" msgid "Subscriptions" msgstr "Abonnements" msgid "My woo account" msgstr "Mein woo-Konto" msgid "Log out" msgstr "Ausloggen" msgid "Email address" msgstr "E-Mail-Addresse" msgid "Username" msgstr "Nutzername" msgid "Password" msgstr "Passwort" msgid "must contain at least one lower case (a..z)" msgstr "muss mindestens einen Kleinbuchstaben enthalten (a..z)" msgid "must contain at least one upper case (A..Z)" msgstr "muss mindestens einen Großbuchstaben enthalten (a..z)" msgid "must contain at least 6 characters in length" msgstr "muss mindestens 6 Zeichen lang sein" msgid "Repeat password" msgstr "Wiederhole das Passwort" msgid "Already have an account?" msgstr "Sie haben bereits ein Konto?" msgid "Recover password" msgstr "Passwort wiederherstellen" msgid "Username or Email address" msgstr "Benutzername oder E-mail Adresse" msgid "Forgot password?" msgstr "Passwort vergessen?" msgid "Don't have an account?" msgstr "Sie haben kein Konto?" msgid "Dashboard" msgstr "Armaturenbrett" msgid "Welcome to your account!" msgstr "Willkommen auf Ihrem Konto!" msgid "Hello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details." msgstr "Hallo %1$s (nicht %2$s? %3$s)! Von Ihrem Konto-Dashboard aus können Sie Ihre Abonnements anzeigen und Ihre Kontodetails verwalten." msgid "Lost Password" msgstr "Passwort vergessen" msgid "Manage your account details." msgstr "Verwalten Sie Ihre Kontodaten." msgid "First name" msgstr "Vorname" msgid "Last name" msgstr "Nachname" msgid "Display name" msgstr "Anzeigename" msgid "Current password" msgstr "Jetziges Passwort" msgid "(leave blank to leave unchanged)" msgstr "(Leer lassen, um unverändert zu lassen)" msgid "New password" msgstr "Neues Passwort" msgid "Confirm new password" msgstr "Bestätige neues Passwort" msgid "Save changes" msgstr "Änderungen speichern" msgid "All your subscriptions." msgstr "Alle Ihre Abonnements." msgid "Plan" msgstr "Planen" msgid "Payment type" msgstr "Zahlungsart" msgid "Status" msgstr "Status" msgid "Months" msgstr "Monate" msgid "Start date" msgstr "Startdatum" msgid "End date" msgstr "Endtermin" msgid "missing plan" msgstr "fehlender Plan" msgid "Free" msgstr "Kostenlos" msgid "Active" msgstr "Aktiv" msgid "Trial" msgstr "Gerichtsverhandlung" msgid "Blocked" msgstr "Verstopft" msgid "Closed" msgstr "Abgeschlossen" msgid "Not paid" msgstr "Nicht bezahlt" msgid "Awaiting payment" msgstr "Warten auf Zahlung" msgid "Subscription info" msgstr "Abo-Info" msgid "ID" msgstr "ICH WÜRDE" msgid "Name" msgstr "Name" msgid "Company name" msgstr "Name der Firma" msgid "VAT" msgstr "MEHRWERTSTEUER" msgid "Address" msgstr "Die Anschrift" msgid "City" msgstr "Stadt" msgid "Country/State" msgstr "Land/Staat" msgid "Email" msgstr "Email" msgid "Postal code" msgstr "Postleitzahl" msgid "Direct bank transfer details" msgstr "Details zur direkten Banküberweisung" msgid "Account name" msgstr "Kontobezeichnung" msgid "Account number" msgstr "Accountnummer" msgid "Bank name" msgstr "Bank Name" msgid "Routing number" msgstr "Routing-Nummer" msgid "IBAN" msgstr "IBAN" msgid "Bic/Swift" msgstr "Bic/swift" msgid "Instructions" msgstr "Anweisungen" msgid "No subscription created." msgstr "Kein Abonnement erstellt." msgid "Choose plan" msgstr "Wählen Sie einen Plan" msgid "Payment methods" msgstr "Zahlungsarten" msgid "Total" msgstr "Gesamt" msgid "Period" msgstr "Zeitraum" msgid "Subscription summary" msgstr "Abonnement-Zusammenfassung" msgid "Phone" msgstr "Telefon" msgid "Postcode" msgstr "Postleitzahl" msgid "County" msgstr "Bezirk" msgid "Town/City" msgstr "Stadt/Stadt" msgid "Street address" msgstr "Adresse" msgid "Country/Region" msgstr "Land/Region" msgid "VAT Number" msgstr "Umsatzsteuer-Identifikationsnummer" msgid "(optional)" msgstr "(Optional)" msgid "Billing details" msgstr "Rechnungsdetails" msgid "User information" msgstr "Nutzerinformation" msgid "It seems that no available payment methods have been configured." msgstr "Es scheint, dass keine verfügbaren Zahlungsmethoden konfiguriert wurden." msgid "Thank you! We are delighted to see you here. Your subscription will be activated soon!" msgstr "Danke schön! wir freuen uns, Sie hier zu sehen. Ihr Abonnement wird in Kürze aktiviert!" msgid "Our bank details" msgstr "Unsere Bankverbindung" msgid "Your subscription details" msgstr "Ihre Abonnementdetails" msgid "View subscription" msgstr "Abonnement ansehen" msgid "You have not selected a valid subscription plan." msgstr "Sie haben kein gültiges Abonnement ausgewählt." msgid "Field empty" msgstr "Feld leer" msgid "Empty first name" msgstr "Leerer Vorname" msgid "Empty last name" msgstr "Leerer Nachname" msgid "Empty country" msgstr "Leeres Land" msgid "Empty address" msgstr "Leere Adresse" msgid "Empty city" msgstr "Leere Stadt" msgid "Empty county" msgstr "Leere Grafschaft" msgid "Empty postcode" msgstr "Leere Postleitzahl" msgid "Empty phone" msgstr "Leeres Telefon" msgid "Empty email" msgstr "Leere E-Mail" msgid "Email or username empty!" msgstr "E-Mail oder Benutzername leer!" msgid "Pass empty!" msgstr "Leer passieren!" msgid "Username incorrect!" msgstr "Benutzername falsch!" msgid "Invalid Pass Pattern!" msgstr "Ungültiges Passmuster!" msgid "Please activate your account by following the link sent to your email address." msgstr "Bitte aktivieren Sie Ihr Konto, indem Sie dem an Ihre E-Mail-Adresse gesendeten Link folgen." msgid "Resend activation link" msgstr "Aktivierungslink erneut senden" msgid "In order to have access to this section, you have to activate your account." msgstr "Um Zugang zu diesem Abschnitt zu haben, müssen Sie Ihr Konto aktivieren." msgid "Email empty!" msgstr "E-Mail leer!" msgid "Username empty!" msgstr "Benutzername leer!" msgid "Pass pattern incorrect!" msgstr "Passmuster falsch!" msgid "Retyped pass empty!" msgstr "Erneut eingegebener Pass leer!" msgid "Retyped pass exactly!" msgstr "Genau abgetippter Pass!" msgid "User already exists!" msgstr "Benutzer existiert bereits!" msgid "Email already exists!" msgstr "E-Mail existiert bereits!" msgid "Your account could not be created." msgstr "Ihr Konto konnte nicht erstellt werden." msgid "Please check your email (inbox or spam folder) to validate your account." msgstr "Bitte überprüfen Sie Ihre E-Mail (Posteingang oder Spam-Ordner), um Ihr Konto zu bestätigen." msgid "User empty!" msgstr "Benutzer leer!" msgid "User does not exists!" msgstr "Benutzer existiert nicht!" msgid "New activation link was generated. Please check your email (inbox or spam folder) to validate your account." msgstr "Neuer Aktivierungslink wurde generiert. Bitte überprüfen Sie Ihre E-Mail (Posteingang oder Spam-Ordner), um Ihr Konto zu bestätigen." msgid "CAPTCHA verification failed!" msgstr "Captcha-Überprüfung fehlgeschlagen!" msgid "CAPTCHA user score failed. Please contact us!" msgstr "Captcha-Benutzerbewertung fehlgeschlagen. bitte kontaktieren Sie uns!" msgid "Loading" msgstr "Wird geladen" msgid "Here are the results for the search:" msgstr "Hier die Ergebnisse der Suche:" msgid "Price" msgstr "Preis" msgid "EXCLUSIVE" msgstr "EXKLUSIV" msgid "Tel:" msgstr "Tel:" msgid "Share" msgstr "Teilen" msgid "Print" msgstr "Drucken" msgid "At" msgstr "Beim" msgid "Comments are closed." msgstr "Kommentarfunktion ist geschlossen." msgid "Payment method" msgstr "Zahlungsmethode" msgid "You must be logged out to view this page." msgstr "Sie müssen abgemeldet sein, um diese Seite anzuzeigen." msgid "Retyped Pass incorrect!" msgstr "Erneut eingegebener Pass falsch!" msgid "%s is a required field." msgstr "%s ist ein Pflichtfeld." msgid "Please provide a valid email address." msgstr "Bitte geben Sie eine gültige E-Mail Adresse an." msgid "This email address is already registered." msgstr "Diese Email-Adresse ist bereits registriert." msgid "Please fill out all password fields." msgstr "Bitte füllen Sie alle Passwortfelder aus." msgid "Please enter your current password." msgstr "Bitte geben Sie Ihr aktuelles Passwort ein." msgid "Please re-enter your password." msgstr "Bitte geben Sie Ihr Passwort erneut ein." msgid "New passwords do not match." msgstr "Neue Passwörter stimmen nicht überein." msgid "Your current password is incorrect." msgstr "Dein aktuelles Passwort ist falsch." msgid "Account details changed successfully." msgstr "Kontodaten erfolgreich geändert." msgid "A new activation link has been sent to your email address!" msgstr "Ein neuer Aktivierungslink wurde an Ihre E-Mail-Adresse gesendet!" msgid "unlimited" msgstr "unbegrenzt" msgid "Pay with Stripe" msgstr "Mit Streifen bezahlen" msgid "Cancel subscription" msgstr "Abonnement beenden" msgid "Please check your email and confirm subscription!" msgstr "Bitte überprüfen Sie Ihre E-Mails und bestätigen Sie das Abonnement!" msgid "Successfully subscribed!" msgstr "Erfolgreich abonniert!" msgid "Successfully unsubscribed!" msgstr "Erfolgreich abgemeldet!" msgid "Enter promo code here" msgstr "Geben Sie hier den Aktionscode ein" msgid "Apply" msgstr "Anwenden" msgid "Coupon applied" msgstr "Gutschein angewendet" msgid "Uncaught Error: Something went wrong, please reload page and try again!" msgstr "Nicht erfasster Fehler: Es ist ein Fehler aufgetreten. Bitte laden Sie die Seite neu und versuchen Sie es erneut!" msgid "The coupon code you entered is invalid" msgstr "Der von Ihnen eingegebene Gutscheincode ist ungültig" msgid "The coupon code you entered has reached its usage limit" msgstr "Der von Ihnen eingegebene Gutscheincode hat sein Nutzungslimit erreicht" msgid "The coupon code you entered has expired" msgstr "Der von Ihnen eingegebene Gutscheincode ist abgelaufen" msgid "Coupon name is required !" msgstr "Gutscheinname ist erforderlich!" msgid "Please enter a coupon code first!" msgstr "Bitte geben Sie zuerst einen Gutscheincode ein!" msgid "Invalid" msgstr "Ungültig" msgid "Applied" msgstr "Angewandt" msgid "Remove" msgstr "Entfernen" msgid "Price not set" msgstr "Preis nicht festgelegt" msgid "Grand Total" msgstr "Gesamtsumme" msgid "You already have a subscription, but it's still in waiting to be paid!" msgstr "Sie haben bereits ein Abonnement, aber es wartet noch auf die Bezahlung!" msgid "This subscription has been canceled and it will end on %END_DATE%." msgstr "Dieses Abonnement wurde gekündigt und endet am %end_date%." msgid "Go to checkout" msgstr "Zum Checkout gehen" msgid "Stripe invoice details" msgstr "Rechnungsdetails streifen" msgid "Stripe subscription details" msgstr "Details zum Stripe-Abonnement" msgid "Current status" msgstr "Aktueller Status" msgid "Initial Invoice Paid" msgstr "Erste Rechnung bezahlt" msgid "Subscription Create: Initial Invoice Paid" msgstr "Abonnement erstellen: erste Rechnung bezahlt" msgid "Subscription Create: Initial Invoice has been created" msgstr "Abonnement erstellen: Die erste Rechnung wurde erstellt" msgid "Subscription Create: Initial Invoice has been finalized, and it is ready to be paid" msgstr "Abonnement erstellen: Die ursprüngliche Rechnung wurde abgeschlossen und kann nun bezahlt werden" msgid "Subscription Update: Invoice Paid" msgstr "Abonnement-Update: Rechnung bezahlt" msgid "Subscription Renew: Invoice Paid" msgstr "Abonnementverlängerung: Rechnung bezahlt" msgid "Subscription Renew: Invoice Finalized" msgstr "Abonnementverlängerung: Rechnung abgeschlossen" msgid "Subscription Renew: Invoice Created" msgstr "Abonnement verlängern: Rechnung erstellt" msgid "Subscription Renew: Invoice Upcoming" msgstr "Abonnement erneuern: Rechnung steht bevor" msgid "Subscription Expired: Invoice Voided(the first invoice was not paid)" msgstr "Abonnement abgelaufen: Rechnung storniert (die erste Rechnung wurde nicht bezahlt)" msgid "Subscription Deleted" msgstr "Abonnement gelöscht" msgid "Subscription Create: Trialing" msgstr "Abonnement erstellen: Testversion" msgid "Subscription Canceled" msgstr "Abonnement gekündigt" msgid "Subscription Create: Initial Invoice voided" msgstr "Abonnement erstellen: ursprüngliche Rechnung storniert" msgid "Subscription Renew: Invoice voided" msgstr "Abonnementverlängerung: Rechnung ungültig" msgid "Subscription Update: Invoice voided" msgstr "Abonnement-Update: Rechnung storniert" msgid "Invoice updated" msgstr "Rechnung aktualisiert" msgid "Subscription has been canceled and will end on: " msgstr "Das Abonnement wurde gekündigt und endet am:" msgid "Setup successful - You have successfully set up your payment method for future payments." msgstr "Einrichtung erfolgreich – Sie haben Ihre Zahlungsmethode für zukünftige Zahlungen erfolgreich eingerichtet." msgid "Setup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method." msgstr "Einrichtung fehlgeschlagen – es tut uns leid, beim Einrichten Ihrer Zahlungsmethode ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut mit einer anderen Zahlungsmethode." msgid "Payment successful - Your latest subscription payment was completed successfully." msgstr "Zahlung erfolgreich – Ihre letzte Abonnementzahlung wurde erfolgreich abgeschlossen." msgid "Payment processing - Your latest subscription payment is being processed." msgstr "Zahlungsabwicklung – Ihre letzte Abonnementzahlung wird verarbeitet." msgid "Payment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method." msgstr "Die Zahlung ist fehlgeschlagen. Leider ist bei der Verarbeitung Ihrer Zahlung ein Fehler aufgetreten. Bitte versuchen Sie es erneut mit einer anderen Zahlungsmethode." msgid "Download" msgstr "Herunterladen" msgid "Stripe invoice" msgstr "Streifenrechnung" msgid "N/A" msgstr "N / A" msgid "Latest invoice" msgstr "Letzte Rechnung" msgid "Invoice" msgstr "Rechnung" msgid "Unpaid subscription." msgstr "Unbezahltes Abonnement." msgid "Locked subscription." msgstr "Gesperrtes Abonnement." msgid "Invalid subscription." msgstr "Ungültiges Abonnement." msgid "Pay now" msgstr "Zahlen Sie jetzt" msgid "Show more info" msgstr "Weitere Infos anzeigen" msgid "Show less info" msgstr "Weniger Infos anzeigen" msgid "Complete payment" msgstr "Zur vollständigen Bezahlung" msgid "or" msgstr "oder" msgid "Setup Payment" msgstr "Zahlung einrichten" msgid "Go to Payment" msgstr "Gehen Sie zur Zahlung" msgid "Alphabetical A -> Z" msgstr "Alphabetisch a -> z" msgid "Oldest posts" msgstr "älteste Beiträge" msgid "Select" msgstr "Wählen" msgid "on" msgstr "An" msgid "No bookmarked posts" msgstr "Keine mit Lesezeichen versehenen Beiträge" msgid "Log in With Facebook" msgstr "Mit Facebook einloggen" msgid "Forgot your password? Get help" msgstr "Haben Sie Ihr Passwort vergessen? Hilfe bekommen" msgid "Someone has requested a password reset for the following account:" msgstr "Jemand hat eine Passwortzurücksetzung für das folgende Konto angefordert:" msgid "Username: %s" msgstr "Benutzername: %s" msgid "If this was a mistake, just ignore this email and nothing will happen." msgstr "Wenn dies ein Fehler war, ignorieren Sie diese E-Mail einfach und es wird nichts passieren." msgid "To reset your password, visit the following address:" msgstr "Um Ihr Passwort zurückzusetzen, besuchen Sie die folgende Adresse:" msgid "Members" msgstr "Mitglieder" msgid "Downloads" msgstr "Downloads" msgid "inc. TAX" msgstr "inc. Steuer" msgid "ex. TAX" msgstr "ex. Steuer" msgid "An unexpected error has occured while trying to create your post. Please try again." msgstr "Beim Versuch, Ihren Beitrag zu erstellen, ist ein unerwarteter Fehler aufgetreten. Bitte versuche es erneut." msgid "Your post has been successfully created." msgstr "Ihr Beitrag wurde erfolgreich erstellt." msgid "Your post has been successfully updated." msgstr "Ihr Beitrag wurde erfolgreich aktualisiert." msgid "An unexpected error has occurred and the mail could not be sent." msgstr "Es ist ein unerwarteter Fehler aufgetreten und die E-Mail konnte nicht gesendet werden." msgid "Location:" msgstr "Standort:" msgid "The email has been successfully sent." msgstr "Die E-Mail wurde erfolgreich gesendet." msgid "An unexpected error has occurred. Please try again." msgstr "Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es erneut." msgid "Drag and drop or browse" msgstr "Drag & Drop oder Durchsuchen" msgid "Search by keyword..." msgstr "über Schlüsselwort suchen..." msgid "Select parent" msgstr "Eltern auswählen" msgid "Add new" msgstr "Neue hinzufügen" msgid "Parent" msgstr "Elternteil" msgid "Select child" msgstr "Kind auswählen" msgid "Select sub-child" msgstr "Untergeordnetes Kind auswählen" msgid "Posted by" msgstr "Geschrieben von" msgid "Overall" msgstr "Gesamt" msgid "Post review" msgstr "Beitragsrezension" msgid "This field is required!" msgstr "Dieses Feld ist erforderlich!" msgid "Your review has been published. Please refresh the page in order to see it." msgstr "Ihre Rezension wurde veröffentlicht. Bitte aktualisieren Sie die Seite, um sie anzuzeigen." msgid "Your review has been registered and is awaiting approval." msgstr "Ihre Bewertung wurde registriert und wartet auf Genehmigung." msgid "Submit reply" msgstr "Antwort einreichen" msgid "Enter your reply" msgstr "Geben Sie Ihre Antwort ein" msgid "Cancel" msgstr "Stornieren" msgid "Some required fields have been left blank." msgstr "Einige Pflichtfelder wurden leer gelassen." msgid "Please enter a valid email address." msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein." msgid "The number cannot be lower than" msgstr "Die Zahl darf nicht kleiner sein als" msgid "The number cannot be higher than" msgstr "Die Zahl darf nicht höher sein als" msgid "Leave a review" msgstr "Hinterlassen Sie eine Bewertung" msgid "Submit" msgstr "Einreichen" msgid "Update" msgstr "Aktualisieren" msgid "out of 5" msgstr "von 5" msgid "You have reached the limit of reviews that you can submit for this article" msgstr "Sie haben die maximale Anzahl an Bewertungen erreicht, die Sie für diesen Artikel abgeben können" msgid "Log in to leave a review." msgstr "Melden Sie sich an, um eine Bewertung abzugeben." msgid "Enter a title for your review" msgstr "Geben Sie einen Titel für Ihre Bewertung ein" msgid "Enter your review" msgstr "Geben Sie Ihre Bewertung ein" msgid "Review criteria" msgstr "Bewertungskriterien" msgid "Enter Your Name or Company" msgstr "Geben Sie Ihren Namen oder Ihr Unternehmen ein" msgid "Submit review" msgstr "Bewertung abschicken" msgid "Delete" msgstr "Löschen" msgid "Your reply has been published. Please refresh the page in order to see it." msgstr "Ihre Antwort wurde veröffentlicht. Bitte aktualisieren Sie die Seite, um sie anzuzeigen." msgid "You have not created any posts." msgstr "Sie haben keine Beiträge erstellt." msgid "The selected post has been successfully deleted." msgstr "Der ausgewählte Beitrag wurde erfolgreich gelöscht." msgid "Rating" msgstr "Bewertung" msgid "Title" msgstr "Titel" msgid "Post image" msgstr "Bild posten" msgid "Categories" msgstr "Kategorien" msgid "Date" msgstr "Datum" msgid "Source title" msgstr "Quellentitel" msgid "No rating" msgstr "Keine Bewertung" msgid "View" msgstr "Sicht" msgid "Publish" msgstr "Veröffentlichen" msgid "Add new post" msgstr "Neuen Beitrag hinzufügen" msgid "Edit post" msgstr "Beitrag bearbeiten" msgid "Publish a post" msgstr "Einen Beitrag veröffentlichen" msgid "The status for %POST_TITLE% has been changed." msgstr "Der Status für %post_title% wurde geändert." msgid "Are you sure you want to publish %POST_TITLE%?" msgstr "Sind Sie sicher, dass Sie %post_title% veröffentlichen möchten?" msgid "Delete a post" msgstr "Einen Beitrag löschen" msgid "Are you sure you want to delete %POST_TITLE%?" msgstr "Sind Sie sicher, dass Sie %post_title% löschen möchten?" msgid "%POST_TITLE% has been moved to trash." msgstr "%post_title% wurde in den Papierkorb verschoben." msgid "You do not hold the required priveleges to execute this request." msgstr "Sie verfügen nicht über die erforderlichen Berechtigungen, um diese Anfrage auszuführen." msgid "No search results." msgstr "Keine Suchergebnisse." msgid "Yes" msgstr "Ja" msgid "No" msgstr "NEIN" msgid "Save" msgstr "Speichern" msgid "Search for a location" msgstr "Nach einem Ort suchen" msgid "Address line" msgstr "Adresszeile" msgid "(Optional)" msgstr "(Optional)" msgid "State" msgstr "Zustand" msgid "Country" msgstr "Land" msgid "Create new term" msgstr "Neuen Begriff erstellen" msgid "Description" msgstr "Beschreibung" msgid "Delete bookmarks" msgstr "Lesezeichen löschen" msgid "Reset your password" msgstr "Setze dein Passwort zurück" msgid "The password reset key has expired." msgstr "Der Schlüssel zum Zurücksetzen des Passworts ist abgelaufen." msgid "The password reset key is invalid." msgstr "Der Schlüssel zum Zurücksetzen des Passworts ist ungültig." msgid "New password *" msgstr "Neues Kennwort *" msgid "Repeat new password *" msgstr "Wiederhole das neue Passwort *" msgid "Save password" msgstr "Passwort speichern" msgid "Your account has been successfully activated!" msgstr "Ihr Konto wurde erfolgreich aktiviert!" msgid "Your account has already been activated!" msgstr "Dein Benutzerkonto wurde bereits aktiviert!" msgid "Check your email for the correct activation link. This link is invalid." msgstr "Überprüfen Sie Ihre E-Mails auf den richtigen Aktivierungslink. Dieser Link ist ungültig." msgid "Account activation" msgstr "Account Aktivierung" msgid "Please enter a new password before proceeding." msgstr "Bitte geben Sie ein neues Passwort ein, bevor Sie fortfahren." msgid "Please confirm the new password before proceeding." msgstr "Bitte bestätigen Sie das neue Passwort, bevor Sie fortfahren." msgid "Please make sure that the passwords match." msgstr "Bitte stellen Sie sicher, dass die Passwörter übereinstimmen." msgid "The password has been reset successfully." msgstr "Das Passwort wurde erfolgreich zurückgesetzt." msgid "Manage your billing details." msgstr "Verwalten Sie Ihre Rechnungsdaten." msgid "Profile picture" msgstr "Profilbild" msgid "Remaining publishing rights." msgstr "Verbleibende Veröffentlichungsrechte." msgid "The number of articles you have left to publish across different post types." msgstr "Die Anzahl der Artikel, die Sie noch in verschiedenen Beitragstypen veröffentlichen müssen." msgid "Bank transfer" msgstr "Banküberweisung" msgid "Direct Bank Transfer" msgstr "Direkte Banküberweisung" msgid "Canceled" msgstr "Abgesagt" msgid "Cycle Interval" msgstr "Zyklusintervall" msgid "In order to update this filed, you have to activate your account." msgstr "Um dieses Feld zu aktualisieren, müssen Sie Ihr Konto aktivieren." msgid "Cannot process %s field." msgstr "%s Feld kann nicht verarbeitet werden." msgid "Modified date" msgstr "Änderungsdatum" translation/ta_LK.mo000064400000162637150211537140010447 0ustar00|*%*'*9* Q* \* }* **:*#*+ ++%+%5+ [+h+w++++ ++ + ++++ , ,S9,@,3,- ----.G-v-y----- - - ----- - ...--.[.x.~... .... .G.4/ J/V/[/b/k/ /// //// ///00.0 >0L0]0l0{00 0 000 00 001 !1.1E1 N1X1 p1}1 11 11 111 1122<2 C2 Q2 \2 j2 w222 2222233(3:3 P3Z3_3h3 w3 333 333334 4&4 54A4J4yP4$444555F5>e5K5A5 26?6Q6 f6s6{66666@6 77!747 D7R7 Y7c7j7y777 77 7777778*828 ;8#H8l8r8 y88 88888 8 99#959<9 A9N9f9u9 y9999k9 ::+:G:L: c:p:s::: : ::::; ;); :; H;U;h;o;;; ;;;$;; ;;< <<%<|5<<<I<Q= m=z====N=K=H7>L>1>2>!2?.T?#??#?$? @'@ E@$f@*@%@@@ A A $A /A ;AGA PAZAcAuAzAAA AAAA AAABBB/B?BFB MBWBhB~BBBBBBBBCC2CFC\ClCC CCCCC CMC DD&D;DQD XD eDsD DD DDX2EEEEEEEEE*EAF6^F FF FFFFFFGG %G 2G @G JGVG)lG5GSG+ HLHjHDH#H%H I$/I"TI!wI#I0IIJ J#J+JDJ _J mJyJ~JJJ JVJ+J'K7AK&yK%K&K KLL.L){L#L"L0L-M)KMuMBMM4M N N N(N .N;NGLNNNNNN NN O+OGOPO`OtO OO OOOOOOOO PP 2PSPdPFhPP@P,Q/Q0OQJQ)Q"Q(R-AR#oR#R)R(R( SJ3SK~S9STT&T /T,z[N[\F(\#o\]:^-^$_$;_q`_w_J`.```'`:`a*a.Ja ya4a*aa4b47b+lbbAbbfc.d$Gdlddd2d7dK1e}ee;fJfg!%gGgJ^g4g1gOhP`hh hh"hiL-i3zi5iYi+>j7jj(j+j;j83k(lkk k k;k@lHl>alTl"l)m!Bm*dmWm+m>n-Rnn=nn1nZogzo,o5p{Ephp*q%Jq"pqq%q1q2 r2>r%qr>rrsrgsisAQtSt;t(#uLuhu.~uuu$u2 v0?v\pvpv>wwNw2+x+^x(x(xxzxEmzz(z=z0{ @{J{ ||}A-~:o~h~-A*Z *d+6b%0 V:`:/ց?F[G %6 U2c=OK=D΄35օ:IA(+msN'‡+C5ZA҈./-#].ĉ4Չ 13ŋ`ZAm(،iDRH++ j8<]7>3vG7.*0Y>!ߐ"1$Vo|KOd!4֒. F:A AK]Pp4Η'.jj{hpOyQ:QWޠy6g?Q511+!+M!y([Ĥ Y-+ I ..ICx"ߦG=@M:ɧߧ(R$hwHQ9kY dxYeSxb2C4٬%.T(p1˭@"IBN 3 I@Rhݰ5FM|+ʱofL>; \<u1µzor'@  (5:UV;!#1EOwǹ'GP?7Ru 8|>yG+ ?2RS.+4!J*lbslDm];xbsdOXI*<g:J(`@;8$/HT k[hI6.ce" #f6G=#W@pF#Dj 1s37.a6o<avPh>0 o}5R hu +1472llR3*IAT@Z<;b pR UJwq-\SlZPIX<_TkaKu h6.qWLW]g,p%X x5v"9MsJ#7&$8`N^% jQ b+mMS(f6"K@x1d7^Cz0|~ E]}*y3UA'2[#+B}{ $'>V89c\rGEeV& 02!o`a:-Bs:(d i4>=[= yL{vjnCu)5|DD.t,1Y/?)P~4ieNfgO?r k;HzFmQnGwoOF!Hh/tcY_%POST_TITLE% has been moved to trash.%curr% of %total%%s is a required field.(Optional)(leave blank to leave unchanged)(optional)1 COMMENT7 days popularA new activation link has been sent to your email address!A password will be e-mailed to you.ABOUT USAbout meAccount activationAccount detailsAccount details changed successfully.Account nameAccount numberAccount settingsAcknowledgment is required!ActiveAdd newAdd new postAddressAddress lineAddressesAllAll time popularAll your subscriptions.Alphabetical A -> ZAlready have an account?An unexpected error has occured while trying to create your post. Please try again.An unexpected error has occurred and the mail could not be sent.An unexpected error has occurred. Please try again.AppliedApplyArchivesAre you sure you want to delete %POST_TITLE%?Are you sure you want to publish %POST_TITLE%?AtAustralian DollarAuthorAuthorsAwaiting paymentBackBank nameBank transferBic/SwiftBilling detailsBlockedBlogBrazilian RealBritish PoundBulgarian LevByBy review scoreCAPTCHA user score failed. Please contact us!CAPTCHA verification failed!CLOSECOMMENTSCanadian DollarCancelCancel replyCancel subscriptionCanceledCannot process %s field.CategoriesCheck your email for the correct activation link. This link is invalid.Chinese Yuan RenminbiChoose planCityClosedComment:Comments are closed.Company nameComplete paymentConfirm new passwordContact usContinueCountryCountry/RegionCountry/StateCountyCoupon appliedCoupon name is required !Create an accountCreate new termCroatian KunaCurrent passwordCurrent statusCycle IntervalCzech Republic KorunaDaily Archives:Danish KroneDashboardDateDeleteDelete a postDelete bookmarksDescriptionDirect Bank TransferDirect bank transfer detailsDisplay nameDon't have an account?DownloadDownloadsDrag and drop or browseEDITOR PICKSEVEN MORE NEWSEXCLUSIVEEditEdit postEmailEmail addressEmail address not found!Email already exists!Email empty!Email incorrect!Email or username empty!Email or username incorrect!Email:Empty addressEmpty cityEmpty countryEmpty countyEmpty emailEmpty first nameEmpty last nameEmpty phoneEmpty postcodeEnd dateEnter Your Name or CompanyEnter a title for your reviewEnter promo code hereEnter your replyEnter your reviewEuro Member CountriesFOLLOW USFansFeaturedFeatured postsField emptyFirst nameFollowFollow us on InstagramFollowersForgot password?Forgot your password?Forgot your password? Get helpFreeGet into your account.Go to PaymentGo to checkoutGrand TotalHOMEPAGEHelloHello %1$s (not %2$s? %3$s)! From your account dashboard you can view your subscriptions and manage your account details.Here are the results for the search:HomeHong Kong DollarHungarian ForintIBANIDIf this was a mistake, just ignore this email and nothing will happen.If you're not happy with the results, please do another searchIn order to have access to this section, you have to activate your account.In order to update this filed, you have to activate your account.Indian RupeeIndonesian RupiahInitial Invoice PaidInstructionsInvalidInvalid Pass Pattern!Invalid subscription.InvoiceInvoice updatedIsraeli ShekelIt seems that no available payment methods have been configured.Japanese YenJoinKorean (South) WonLATEST ARTICLESLEAVE A REPLYLOG INLast nameLatestLatest invoiceLeave a reviewLikeLikesLoad moreLoadingLocation:Locked subscription.Log InLog in With FacebookLog in to leave a commentLog in to leave a review.Log into your accountLog outLog out?Logged in asLogged in as %s. Edit your profile.LoginLogoutLost PasswordMORE FROM AUTHORMORE STORIESMalaysian RinggitManage your account details.Manage your billing details.MembersMexican PesoModified dateModified date:Monthly Archives:MonthsMoreMost popularMy subscription accountMy woo accountN/ANO COMMENTSNameName:New Zealand DollarNew activation link was generated. Please check your email (inbox or spam folder) to validate your account.New passwordNew password *New passwords do not match.NextNext (Right arrow key)Next articleNoNo bookmarked postsNo posts to displayNo products in the cart.No ratingNo resultsNo results for your searchNo search results.No subscription created.Norwegian KroneNot paidOUR LATEST POSTSOVERALL SCOREOldest postsOoops... Error 404OrdersOur bank detailsOverallPOPULAR CATEGORYPOPULAR POSTSPOSTSPagePage %CURRENT_PAGE% of %TOTAL_PAGES%ParentPass empty!Pass pattern incorrect!PasswordPassword recoveryPay nowPay with StripePayment failed - We are sorry, there was an error processing your payment. Please try again with a different payment method.Payment methodPayment methodsPayment processing - Your latest subscription payment is being processed.Payment successful - Your latest subscription payment was completed successfully.Payment typePeriodPhilippine PesoPhonePlanPlease activate your account by following the link sent to your email address.Please check you email (index or spam folder), the password was sent there.Please check your email (inbox or spam folder) to validate your account.Please check your email (index or spam folder), the password was sent there.Please check your email and confirm subscription!Please confirm the new password before proceeding.Please enter a coupon code first!Please enter a new password before proceeding.Please enter a valid email address.Please enter your comment!Please enter your current password.Please enter your email address herePlease enter your name herePlease fill in a valid email.Please fill in an email address.Please fill out all password fields.Please make sure that the passwords match.Please provide a valid email address.Please re-enter your password.Please wait...Polish ZlotyPost CommentPost imagePost reviewPostal codePostcodePosted byPosts byPosts tagged withPrevPrevious (Left arrow key)Previous articlePricePrice not setPrintPrivacy PolicyProduct categoriesProduct tagsProfile picturePublishPublish a postREGISTERRELATED ARTICLESREVIEW OVERVIEWRandomRatingRead moreRecover passwordRecover your passwordRegisterRegister for an accountRemaining publishing rights.RemoveRepeat new password *Repeat passwordReplyResend activation linkReset your passwordRetyped Pass incorrect!Retyped pass empty!Retyped pass exactly!Review criteriaRomanian (New) LeuRouting numberRussian RubleSHARESOURCESUMMARYSaveSave changesSave my name, email, and website in this browser for the next time I comment.Save passwordSearchSearch by keyword...Search for a locationSelectSelect childSelect parentSelect sub-childSend My PassSend My PasswordSetup PaymentSetup failed - We are sorry, there was an error setting up your payment method. Please try again with a different payment method.Setup successful - You have successfully set up your payment method for future payments.ShareShare on FacebookShow less infoShow more infoSign inSign in / JoinSign upSingapore DollarSome required fields have been left blank.Someone has requested a password reset for the following account:Sorry, but the page you are looking for doesn't exist.Source titleSouth African RandStart dateStateStatusStreet addressStripe invoiceStripe invoice detailsStripe subscription detailsSubmitSubmit replySubmit reviewSubscribeSubscribersSubscription CanceledSubscription Create: Initial Invoice PaidSubscription Create: Initial Invoice has been createdSubscription Create: Initial Invoice has been finalized, and it is ready to be paidSubscription Create: Initial Invoice voidedSubscription Create: TrialingSubscription DeletedSubscription Expired: Invoice Voided(the first invoice was not paid)Subscription Renew: Invoice CreatedSubscription Renew: Invoice FinalizedSubscription Renew: Invoice PaidSubscription Renew: Invoice UpcomingSubscription Renew: Invoice voidedSubscription Update: Invoice PaidSubscription Update: Invoice voidedSubscription has been canceled and will end on: Subscription infoSubscription summarySubscriptionsSuccessSuccessfully subscribed!Successfully unsubscribed!Swedish KronaSwiss FrancTAGSTagTagsTel:Thai BahtThank you! We are delighted to see you here. Your subscription will be activated soon!The content from %url% could not be loaded.The coupon code you entered has expiredThe coupon code you entered has reached its usage limitThe coupon code you entered is invalidThe email has been successfully sent.The image #%curr% could not be loaded.The number cannot be higher thanThe number cannot be lower thanThe number of articles you have left to publish across different post types.The password has been reset successfully.The password reset key has expired.The password reset key is invalid.The selected post has been successfully deleted.The status for %POST_TITLE% has been changed.This email address is already registered.This field is required!This subscription has been canceled and it will end on %END_DATE%.TitleTo reset your password, visit the following address:TotalTown/CityTrending NowTrialTurkish LiraTweet on TwitterUncaught Error: Something went wrong, please reload page and try again!United States DollarUnpaid subscription.UpdateUser already exists!User does not exists!User empty!User informationUser or email already exists!User or password incorrect!UsernameUsername empty!Username incorrect!Username or Email addressUsername: %sVATVAT NumberVIAViewView all posts inView all resultsView subscriptionWebsite:Welcome to your account!Welcome!Welcome! Log into your accountWelcome! Register for an accountYearly Archives:YesYou already have a subscription, but it's still in waiting to be paid!You can go to theYou do not hold the required priveleges to execute this request.You have entered an incorrect email address!You have not created any posts.You have not selected a valid subscription plan.You have reached the limit of reviews that you can submit for this articleYou must be logged out to view this page.Your account could not be created.Your account has already been activated!Your account has been successfully activated!Your comment is awaiting moderationYour current password is incorrect.Your password is reset, check your email.Your post has been successfully created.Your post has been successfully updated.Your reply has been published. Please refresh the page in order to see it.Your review has been published. Please refresh the page in order to see it.Your review has been registered and is awaiting approval.Your subscription detailsex. TAXinc. TAXmissing planmust contain at least 6 characters in lengthmust contain at least one lower case (a..z)must contain at least one upper case (A..Z)ofonorout of 5search resultsunlimitedviewsyour emailyour passwordyour usernameMIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Language: ta_LK %post_title% குப்பைக்கு நகர்த்தப்பட்டது.%curr% இன் %total%%s ஒரு தேவையான புலம்.(விரும்பினால்)(மாறாமல் இருக்க வெறுமையாக விடவும்)(விரும்பினால்)1 கருத்து7 நாட்கள் பிரபலமானஉங்கள் மின்னஞ்சல் முகவரிக்கு ஒரு புதிய செயல்படுத்தும் இணைப்பு அனுப்பப்பட்டுள்ளது!ஒரு கடவுச்சொல்லை உங்களுக்கு மின்னஞ்சல் மூலம் அனுப்பப்படும்.எங்களை பற்றிஎன்னை பற்றிகணக்கை செயல்படுத்தல்கணக்கு விவரங்கள்கணக்கு விவரங்கள் வெற்றிகரமாக மாற்றப்பட்டன.கணக்கின் பெயர்கணக்கு எண்கணக்கு அமைப்புகள்அங்கீகாரம் தேவை!செயலில்புதிதாக சேர்க்கவும்புதிய இடுகையைச் சேர்க்கவும்முகவரிமுகவரி வரிமுகவரிகள்அனைத்தும்பிரபலமான அனைத்து நேரம்உங்கள் சந்தாக்கள் அனைத்தும்.அகரவரிசை a -> zஏற்கனவே ஒரு கணக்கு உள்ளதா?உங்கள் இடுகையை உருவாக்க முயற்சிக்கும்போது எதிர்பாராத பிழை ஏற்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.எதிர்பாராத பிழை ஏற்பட்டது மற்றும் அஞ்சலை அனுப்ப முடியவில்லை.எதிர்பாராத பிழை ஏற்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.விண்ணப்பித்தார்விண்ணப்பிக்கதொகுப்புகள்%post_title% ஐ நிச்சயமாக நீக்க விரும்புகிறீர்களா?%post_title% ஐ நிச்சயமாக வெளியிட விரும்புகிறீர்களா?மணிக்குஆஸ்திரேலிய டாலர்எழுத்தாளர்எழுத்தாளர்கள்பணம் காத்திருக்கிறதுமீண்டும்வங்கி பெயர்வங்கி பரிமாற்றம்Bic/swiftபில்லிங் விவரங்கள்தடுக்கப்பட்டதுவலைப்பதிவுபிரேசிலிய உண்மையானபிரிட்டிஷ் பவுண்ட்பல்கேரியன் லெவ்மூலம்விமர்சனம் ஸ்கோர் மூலம்கேப்ட்சா பயனர் மதிப்பெண் தோல்வியடைந்தது. தயவு செய்து எங்களை தொடர்பு கொள்ளவும்!கேப்ட்சா சரிபார்ப்பு தோல்வியடைந்தது!வெளியேறுகருத்துக்கள்கனடா டாலர்ரத்து செய்பதில் ரத்துசந்தாவை ரத்து செய்ரத்து செய்யப்பட்டது%s புலத்தை செயலாக்க முடியாது.வகைகள்சரியான செயல்படுத்தும் இணைப்புக்கு உங்கள் மின்னஞ்சலைச் சரிபார்க்கவும். இந்த இணைப்பு தவறானது.சீன யுவான் ரென்மின்பிதிட்டத்தை தேர்வு செய்யவும்நகரம்மூடப்பட்டதுகருத்து:கருத்துகள் மூடப்பட்டுள்ளன.நிறுவனத்தின் பெயர்முழுமையான கட்டணம்புதிய கடவு சொல்லை உறுதி செய்எங்களை தொடர்பு கொள்ளுங்கள்தொடர்கநாடுநாடு/பகுதிநாடு/மாநிலம்மாவட்டம்கூப்பன் பயன்படுத்தப்பட்டதுகூப்பன் பெயர் தேவை!ஒரு கணக்கை உருவாக்கபுதிய வார்த்தையை உருவாக்குங்கள்குரோஷியன் குனாதற்போதைய கடவுச்சொல்தற்போதைய நிலைசுழற்சி இடைவெளிசெக் குடியரசு கொருனாதினசரி தொகுப்புகள்:டானிஷ் க்ரோன்டாஷ்போர்டுதேதிஅழிஒரு இடுகையை நீக்கவும்புக்மார்க்குகளை நீக்குவிளக்கம்நேரடி வங்கி பரிமாற்றம்நேரடி வங்கி பரிமாற்ற விவரங்கள்காட்சி பெயர்கணக்கு இல்லையா?பதிவிறக்க Tamilபதிவிறக்கங்கள்இழுத்து விடவும் அல்லது உலாவவும்ஆசிரியர் தேர்வுஇன்னும் அதிக செய்திகள்பிரத்தியேகமானதுதொகுஇடுகையைத் திருத்தவும்மின்னஞ்சல்மின்னஞ்சல் முகவரிமின்னஞ்சல் முகவரி காணப்படவில்லை!மின்னஞ்சல் முன்பே பதிவில் இருக்கிறது!மின்னஞ்சல் காலி!மின்னஞ்சல் தவறானது!மின்னஞ்சல் அல்லது பயனர் பெயர் காலியாக உள்ளது!மின்னஞ்சல் அல்லது பயனர் பெயர் தவறானது!மின்னஞ்சல்:வெற்று முகவரிவெற்று நகரம்வெற்று நாடுகாலி மாவட்டம்வெற்று மின்னஞ்சல்வெற்று முதல் பெயர்வெற்று கடைசி பெயர்காலி தொலைபேசிவெற்று அஞ்சல் குறியீடுகடைசி தேதிஉங்கள் பெயர் அல்லது நிறுவனத்தை உள்ளிடவும்உங்கள் மதிப்பாய்விற்கு ஒரு தலைப்பை உள்ளிடவும்விளம்பரக் குறியீட்டை இங்கே உள்ளிடவும்உங்கள் பதிலை உள்ளிடவும்உங்கள் மதிப்பாய்வை உள்ளிடவும்யூரோ உறுப்பு நாடுகள்நம்மை பின்பற்றரசிகர்கள்சிறப்புசிறப்பு பதிவுகள்வயல் காலிமுதல் பெயர்பின்பற்றவும்Instagram நம்மை பின்பற்றபின்பற்றுபவர்கள்கடவுச்சொல்லை மறந்துவிட்டீர்களா?உங்கள் கடவுச்சொல்லை மறந்து விட்டீர்களா?உங்கள் கடவுச்சொல்லை மறந்து விட்டீர்களா? உதவி பெறுஇலவசம்உங்கள் கணக்கில் நுழையுங்கள்.பணம் செலுத்த செல்லசெக்அவுட் செல்லபெரும் மொத்தம்முகப்பு பக்கம்வணக்கம்வணக்கம் %1$s (%2$s அல்லவா? %3$s)! உங்கள் கணக்கு டாஷ்போர்டில் இருந்து உங்கள் சந்தாக்களைப் பார்க்கலாம் மற்றும் உங்கள் கணக்கு விவரங்களை நிர்வகிக்கலாம்.தேடலுக்கான முடிவுகள் இதோ:முகப்புஹாங்காங் டாலர்ஹங்கேரியன் ஃபோரின்ட்ஐபான்ஐடிஇது தவறு என்றால், இந்த மின்னஞ்சலைப் புறக்கணிக்கவும், எதுவும் நடக்காது.நீங்கள் முடிவுகளள் மகிழ்ச்சியாக இல்லை என்றால், தயவுசெய்த மற்றொரு தேடலை செய்யவும்இந்த பிரிவை அணுக, உங்கள் கணக்கை நீங்கள் செயல்படுத்த வேண்டும்.இதைப் புதுப்பிக்க, உங்கள் கணக்கைச் செயல்படுத்த வேண்டும்.இந்திய ரூபாயின் மதிப்புஇந்தோனேசிய ரூபாவின்ஆரம்ப விலைப்பட்டியல் செலுத்தப்பட்டதுஅறிவுறுத்தல்கள்செல்லாதுதவறான பாஸ் முறை!தவறான சந்தா.விலைப்பட்டியல்விலைப்பட்டியல் புதுப்பிக்கப்பட்டதுஇஸ்ரேல் சேக்கல்கிடைக்கக்கூடிய கட்டண முறைகள் எதுவும் கட்டமைக்கப்படவில்லை என்று தெரிகிறது.ஜப்பனீஸ் யென்சேரகொரியன் (தென்) வெற்றிசமீபத்திய கட்டுரைகள்ஒரு பதிலை விடவும்உள்நுழைககடைசி பெயர்சமீபத்தியசமீபத்திய விலைப்பட்டியல்ஒரு மதிப்பாய்வை விடுங்கள்லைக்விருப்புமேலும் ஏற்றுகஏற்றுகிறதுஇடம்:பூட்டப்பட்ட சந்தா.உள்நுழையFacebook மூலம் உள்நுழையவும்ஒரு கருத்தை விட உள் நுழையவும்மதிப்பாய்வு செய்ய உள்நுழைக.உங்கள் கணக்கில் உள்நுழையவெளியேறுவெளியேறு?உள்நுழைந்துள்ளீர்% s ஆக உள்நுழைந்துள்ளீர்கள். உங்கள் சுயவிவரத்தை திருத்தவும்.உள் நுழைவெளியேறுகடவுச்சொல்லை இழந்ததுஆசிரியரிடமிருந்து மிகவும்இன்னும் கதைகள்மலேசிய ரிங்கிட்உங்கள் கணக்கு விவரங்களை நிர்வகிக்கவும்.உங்கள் பில்லிங் விவரங்களை நிர்வகிக்கவும்.உறுப்பினர்கள்மெக்சிகன் பெசோமாற்றியமைக்கப்பட்ட தேதிதிருத்தப்பட்ட தேதி:மாதாந்திர தொகுப்புகள்:மாதங்கள்மேலும்மிகவும் பிரபலமானஎனது சந்தா கணக்குஎன் வூ கணக்குN/aகருத்துகள் இல்லைபெயர்பெயர்:நியூசிலாந்து டாலர்புதிய செயல்படுத்தும் இணைப்பு உருவாக்கப்பட்டது. உங்கள் கணக்கைச் சரிபார்க்க உங்கள் மின்னஞ்சலை (இன்பாக்ஸ் அல்லது ஸ்பேம் கோப்புறை) சரிபார்க்கவும்.புதிய கடவுச்சொல்புதிய கடவுச்சொல் *புதிய கடவுச்சொற்கள் பொருந்தவில்லை.அடுத்தஅடுத்து (வலது அம்பு விசை)அடுத்த கட்டுரைஇல்லைபுக்மார்க் செய்யப்பட்ட இடுகைகள் இல்லைபதிவுகள் காண்பிக்க இல்லைவண்டியில் பொருட்கள் இல்லை.மதிப்பீடு இல்லைமுடிவுகள் இல்லைஉங்கள் தேடல் க்கான முடிவுகள் ஏதுமில்லைதேடல் முடிவுகள் இல்லை.சந்தா எதுவும் உருவாக்கப்படவில்லை.நார்வேஜியன் க்ரோன்செலுத்தப்படவில்லைஎங்கள் சமீபத்திய இடுகைகள்ஒட்டுமொத்த ஸ்கோர்பழமையான பதிவுகள்அச்சச்சோ ... 404 பிழைஉத்தரவுஎங்கள் வங்கி விவரங்கள்ஒட்டுமொத்தபிரபலமான வகைபிரபலமான பதிவுகள்இடுகைகள்பக்கம்பக்கம்%தற்போதைய பக்கம்% இன் மொத்த பக்கங்கள்%பெற்றோர்காலியாக கடந்து செல்லுங்கள்!கடந்து செல்லும் முறை தவறானது!கடவுச்சொல்கடவுச்சொல் மீட்புஇப்போது செலுத்தபட்டையுடன் செலுத்துங்கள்பணம் செலுத்துவதில் தோல்வி - மன்னிக்கவும், உங்கள் கட்டணத்தைச் செயலாக்குவதில் பிழை ஏற்பட்டது. வேறு கட்டண முறையைக் கொண்டு மீண்டும் முயற்சிக்கவும்.கட்டணம் செலுத்தும் முறைபணம் செலுத்தும் முறைகள்கட்டணச் செயலாக்கம் - உங்கள் சமீபத்திய சந்தா செலுத்துதல் செயலாக்கப்படுகிறது.பணம் செலுத்துதல் வெற்றிகரமாக - உங்கள் சமீபத்திய சந்தா செலுத்துதல் வெற்றிகரமாக முடிந்தது.கட்டணம் வகைகாலம்பிலிப்பைன்ஸ் பேசோதொலைபேசிதிட்டம்உங்கள் மின்னஞ்சல் முகவரிக்கு அனுப்பப்பட்ட இணைப்பைப் பின்தொடர்ந்து உங்கள் கணக்கைச் செயல்படுத்தவும்.உங்கள் மின்னஞ்சல் சரிபார்க்கவும்(குறியீடு அல்லது ஸ்பேம் கோப்புறை) கடவுச்சொல் அனுப்பப்பட்டது.உங்கள் கணக்கைச் சரிபார்க்க உங்கள் மின்னஞ்சலை (இன்பாக்ஸ் அல்லது ஸ்பேம் கோப்புறை) சரிபார்க்கவும்.உங்கள் மின்னஞ்சல் (குறியீட்டு அல்லது ஸ்பேம் கோப்புறை) சரிபார்க்கவும், கடவுச்சொல்லை அங்கு அனுப்பப்பட்டான்.தயவுசெய்து உங்கள் மின்னஞ்சலைச் சரிபார்த்து, சந்தாவை உறுதிப்படுத்தவும்!தொடர்வதற்கு முன் புதிய கடவுச்சொல்லை உறுதிப்படுத்தவும்.முதலில் கூப்பன் குறியீட்டை உள்ளிடவும்!தொடர்வதற்கு முன் புதிய கடவுச்சொல்லை உள்ளிடவும்.சரியான மின்னஞ்சல் முகவரியை உள்ளிடவும்.தயவு செய்து உங்கள் கருத்தை உள்ளிடவும்!உங்கள் தற்போதைய கடவுச்சொல்லை உள்ளிடவும்.இங்கே உங்கள் மின்னஞ்சல் முகவரியை உள்ளிடவும்இங்கே உங்கள் பெயரை உள்ளிடவும்சரியான மின்னஞ்சலை நிரப்பவும்.மின்னஞ்சல் முகவரியை நிரப்பவும்.அனைத்து கடவுச்சொல் புலங்களையும் நிரப்பவும்.கடவுச்சொற்கள் பொருந்துமா என்பதை உறுதிப்படுத்தவும்.சரியான மின்னஞ்சல் முகவரியை வழங்கவும்.தயவு செய்து தங்கள் கடவுச்சொல்லை மீண்டும் உள்ளீடுக.தயவு செய்து காத்திருக்கவும் …போலந்து ஜூலுட்டிகருத்து தெரிவிக்கஇடுகை படம்மறுஆய்வுஅஞ்சல் குறியீடுஅஞ்சல் குறியீடுபதிவிட்டவர்இடுகைகள் மூலம்இடுகைகளுடன் குறியிடபட்டுவிட்டதுமுன்முந்தைய (இடது அம்புக்குறி விசையை)முந்தைய கட்டுரைவிலைவிலை நிர்ணயிக்கப்படவில்லைஅச்சுதனியுரிமை கொள்கைதயாரிப்பு வகைகள்தயாரிப்பு குறிச்சொற்கள்சுயவிவர படம்வெளியிடஒரு இடுகையை வெளியிடுங்கள்பதிவுதொடர்புடைய கட்டுரைகள்சி.ஆர்.டி. கண்ணோட்டம்ராண்டம்மதிப்பீடுமேலும் வாசிக்ககடவுச்சொல்லை மீட்டெடுக்கவும்உங்கள் கடவுச்சொல்லை மீட்டெடுக்கவும்பதிவுஒரு கணக்கை பதிவு செய்யவும்மீதமுள்ள வெளியீட்டு உரிமைகள்.அகற்றுபுதிய கடவுச்சொல்லை மீண்டும் செய்யவும் *ரகசிய குறியீட்டை திரும்பச்சொல்பதிலளிக்கசெயல்படுத்தும் இணைப்பை மீண்டும் அனுப்பவும்உங்கள் கடவுச்சொல்லை மீட்டமைக்கமீண்டும் தட்டச்சு செய்த பாஸ் தவறானது!மீண்டும் தட்டச்சு செய்த பாஸ் காலியாக உள்ளது!சரியாக மீண்டும் தட்டச்சு செய்த பாஸ்!மதிப்பாய்வு அளவுகோல்கள்ரோமானியம் (புதிய) Leuவழித்தட எண்ரஷியன் ரூபிள்பகிர்ந்துமற்ற ஆதாரங்கள்சுருக்கமான விபரம்சேமிக்கமாற்றங்களை சேமியுங்கள்அடுத்த முறை நான் கருத்து தெரிவிக்க இந்த உலாவியில் எனது பெயர், மின்னஞ்சல் மற்றும் வலைத்தளத்தை சேமிக்கவும்.கடவுச்சொல்லை சேமிக்கவும்தேடல்முக்கிய வார்த்தை மூலம் தேடு...ஒரு இடம் தேடதேர்ந்தெடுக்கவும்குழந்தை தேர்ந்தெடுக்கவும்பெற்றோரைத் தேர்ந்தெடுக்கவும்துணைக் குழந்தையைத் தேர்ந்தெடுக்கவும்என் பாஸ் அனுப்பவும்என் கடவுச்சொல்லை அனுப்பவும்அமைப்பு கட்டணம்அமைவு தோல்வியடைந்தது - மன்னிக்கவும், உங்கள் கட்டண முறையை அமைப்பதில் பிழை ஏற்பட்டது. வேறு கட்டண முறையைக் கொண்டு மீண்டும் முயற்சிக்கவும்.அமைப்பு வெற்றிகரமாக உள்ளது - எதிர்கால கட்டணங்களுக்கான உங்கள் கட்டண முறையை வெற்றிகரமாக அமைத்துள்ளீர்கள்.பகிர்Facebook இல் பகிர்ந்துகொல்லவும்குறைவான தகவலைக் காட்டுமேலும் தகவலைக் காட்டுஉள்நுழையஉள்நுழையவும் / சேரவும்பதிவுசிங்கப்பூர் டாலர்தேவையான சில புலங்கள் காலியாக விடப்பட்டுள்ளன.பின்வரும் கணக்கிற்கான கடவுச்சொல் மீட்டமைப்பை ஒருவர் கோரியுள்ளார்:மன்னிக்கவும், நீங்கள் தேடும் பக்கம் இல்லை.மூல தலைப்புதென்னாப்பிரிக்க ராண்ட்தொடக்க தேதிநிலைநிலைதெரு முகவரிபட்டை விலைப்பட்டியல்பட்டை விலைப்பட்டியல் விவரங்கள்பட்டை சந்தா விவரங்கள்சமர்ப்பிக்கபதில் சமர்ப்பிக்கவிமர்சனத்தை சமர்ப்பிக்கவும்குழுசேர்சந்தாதாரர்கள்சந்தா ரத்து செய்யப்பட்டதுசந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் செலுத்தப்பட்டதுசந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் உருவாக்கப்பட்டதுசந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் இறுதி செய்யப்பட்டுள்ளது, மேலும் அது செலுத்த தயாராக உள்ளதுசந்தா உருவாக்கம்: ஆரம்ப விலைப்பட்டியல் செல்லாதுசந்தா உருவாக்கம்: சோதனைசந்தா நீக்கப்பட்டதுசந்தா காலாவதியானது: விலைப்பட்டியல் செல்லாது (முதல் விலைப்பட்டியல் செலுத்தப்படவில்லை)சந்தா புதுப்பித்தல்: விலைப்பட்டியல் உருவாக்கப்பட்டதுசந்தா புதுப்பித்தல்: விலைப்பட்டியல் இறுதி செய்யப்பட்டதுசந்தா புதுப்பித்தல்: விலைப்பட்டியல் செலுத்தப்பட்டதுசந்தா புதுப்பித்தல்: வரவிருக்கும் விலைப்பட்டியல்சந்தா புதுப்பித்தல்: விலைப்பட்டியல் செல்லாதுசந்தா புதுப்பிப்பு: விலைப்பட்டியல் செலுத்தப்பட்டதுசந்தா புதுப்பிப்பு: விலைப்பட்டியல் செல்லாதுசந்தா ரத்துசெய்யப்பட்டது மற்றும் முடிவடையும் தேதி:சந்தா தகவல்சந்தா சுருக்கம்சந்தாக்கள்வெற்றிவெற்றிகரமாக சந்தா!வெற்றிகரமாக குழுவிலகப்பட்டது!ஸ்வீடிஷ் குரோனாசுவிஸ் பிராங்க்குறிகள்குறிச்சொல்குறிச்சொற்கள்தொலைபேசி:தாய் பட்நன்றி! உங்களை இங்கு காண்பதில் நாங்கள் மகிழ்ச்சியடைகிறோம். உங்கள் சந்தா விரைவில் செயல்படுத்தப்படும்!உள்ளடக்கத்தை இருந்து %url% இருந்து ஏற்ற முடியவில்லை.நீங்கள் உள்ளிட்ட கூப்பன் குறியீடு காலாவதியானதுநீங்கள் உள்ளிட்ட கூப்பன் குறியீடு அதன் பயன்பாட்டு வரம்பை எட்டிவிட்டதுநீங்கள் உள்ளிட்ட கூப்பன் குறியீடு தவறானதுமின்னஞ்சல் வெற்றிகரமாக அனுப்பப்பட்டது.படம் #%curr% ஏற்ற முடியவில்லை.எண்ணிக்கையை விட அதிகமாக இருக்க முடியாதுஎண்ணிக்கை குறைவாக இருக்க முடியாதுவெவ்வேறு இடுகை வகைகளில் நீங்கள் வெளியிட மீதமுள்ள கட்டுரைகளின் எண்ணிக்கை.கடவுச்சொல் வெற்றிகரமாக மீட்டமைக்கப்பட்டது.கடவுச்சொல் மீட்டமைப்பு விசை காலாவதியானது.கடவுச்சொல் மீட்டமைப்பு விசை தவறானது.தேர்ந்தெடுக்கப்பட்ட இடுகை வெற்றிகரமாக நீக்கப்பட்டது.%post_title% இன் நிலை மாற்றப்பட்டுள்ளது.இந்த மின்னஞ்சல் முகவரி ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது.இந்த புலம் தேவை!இந்த சந்தா ரத்துசெய்யப்பட்டது, அது %end_date% அன்று முடிவடையும்.தலைப்புஉங்கள் கடவுச்சொல்லை மீட்டமைக்க, பின்வரும் முகவரியைப் பார்வையிடவும்:மொத்தம்நகரம்/நகரம்இப்போது பிரபலமாகும்விசாரணைதுருக்கிய லிராTwitter இல் ட்வீட் செய்யவும்கண்டறியப்படாத பிழை: ஏதோ தவறாகிவிட்டது, பக்கத்தை மீண்டும் ஏற்றி மீண்டும் முயற்சிக்கவும்!ஐக்கிய அமெரிக்க டாலர்செலுத்தப்படாத சந்தா.மேம்படுத்தல்பயனர் ஏற்கனவே இருக்கிறார்!பயனர் இல்லை!பயனர் காலி!பயனர் தகவல்பயனர் அல்லது மின்னஞ்சல் ஏற்கனவே உள்ளது!பயனர் அல்லது கடவுச்சொல் தவறானது!பயனர் பெயர்பயனர் பெயர் காலியாக உள்ளது!பயனர் பெயர் தவறானது!பயனர்பெயர் அல்லது மின்னஞ்சல் முகவரிபயனர்பெயர்: %sவாட்வாட் எண்மூலமாகபார்வைஉள்ள அனைத்துச் செய்திகளையும் பார்க்கஎல்லா முடிவுகளையும் காண்கசந்தாவைப் பார்க்கவும்வலைத்தளம்:உங்கள் கணக்கிற்கு வரவேற்கிறோம்!வரவேற்பு!வரவேற்கிறோம்! உங்கள் கணக்கில் உள்நுழைவுவரவேற்பு! ஒரு கணக்கு பதிவுவருடாந்திர தொகுப்புகள்:ஆம்உங்களிடம் ஏற்கனவே சந்தா உள்ளது, ஆனால் அது இன்னும் பணம் செலுத்த காத்திருக்கிறது!நீங்கள் செல்லலாம்இந்த கோரிக்கையை செயல்படுத்த தேவையான சிறப்புரிமைகளை நீங்கள் கொண்டிருக்கவில்லை.நீங்கள் தவறான மின்னஞ்சல் முகவரியை உள்ளிட்டுள்ளீர்கள்!நீங்கள் எந்த இடுகைகளையும் உருவாக்கவில்லை.சரியான சந்தா திட்டத்தை நீங்கள் தேர்ந்தெடுக்கவில்லை.இந்தக் கட்டுரைக்கு நீங்கள் சமர்ப்பிக்கக்கூடிய மதிப்புரைகளின் வரம்பை அடைந்துவிட்டீர்கள்இந்தப் பக்கத்தைப் பார்க்க நீங்கள் வெளியேறியிருக்க வேண்டும்.உங்கள் கணக்கை உருவாக்க முடியவில்லை.உங்கள் கணக்கு ஏற்கனவே செயல்படுத்தப்பட்டுள்ளது!உங்கள் கணக்கு வெற்றிகரமாக செயல்படுத்தப்பட்டது!உங்கள் கருத்துரை காத்திருக்கிறது உள்ளதுஉங்கள் தற்போதைய கடவுச்சொல் தவறானது.உங்கள் கடவுச்சொல் மீட்டமைக்கப்பட்டது, உங்கள் மின்னஞ்சல் சரிபார்க்கவும்.உங்கள் இடுகை வெற்றிகரமாக உருவாக்கப்பட்டது.உங்கள் இடுகை வெற்றிகரமாக புதுப்பிக்கப்பட்டது.உங்கள் பதில் வெளியிடப்பட்டது. அதைப் பார்க்க பக்கத்தைப் புதுப்பிக்கவும்.உங்கள் விமர்சனம் வெளியிடப்பட்டது. அதைப் பார்க்க பக்கத்தைப் புதுப்பிக்கவும்.உங்கள் மதிப்பாய்வு பதிவு செய்யப்பட்டு, ஒப்புதலுக்காகக் காத்திருக்கிறது.உங்கள் சந்தா விவரங்கள்ex. வரிஇன்க் வரிகாணாமல் போன திட்டம்குறைந்தபட்சம் 6 எழுத்துகள் நீளம் இருக்க வேண்டும்குறைந்தபட்சம் ஒரு சிறிய எழுத்து (a..z) இருக்க வேண்டும்குறைந்தபட்சம் ஒரு பெரிய எழுத்து (a..z) இருக்க வேண்டும்என்றஅன்றுஅல்லது5 இல்தேடல் முடிவுகள்வரம்பற்றகாட்சிகள்உங்கள் மின்னஞ்சல்உங்கள் கடவுச்சொல்உங்கள் பயனர் பெயர்footer.php000064400000003046150211537140006555 0ustar00

Yr‹r]&+A:Z!9\I8(ya~іg69$sϣ0dZEduT2IGH (߲g$?v^#߱"ad@j'uJi JvKmn"/B)ASH oH}@Bu |Uk9pà pO؉ˋ)I.1+&н&H`^d~rl׺85i5~Xq+d\%|ra^;oPzS'+>Jm/\T+?w2IǍ7޸NQl쎶z ^_-?Ewf%\sp Y*r#؂=}k敯|8-ge/{ٯʯ]zߝ'oZYtc;,~~aB( %>U0rhi$bXeEn~.4;JSjsY㌍xd[O'{o/w;OPcdRTRX#y睗g[{v)l?7`xNՐCrޯroPb'yDĞjI­g>2 c%O%/B5ooG"r58C%O{{-6GnS,)-=h5Gi>,h Qt+A 9ܕA*GZ-;1Ρkbo|qk@ 8-Ed\n9ЍI/8:dň7P'`ڰw`8e.;Zy{%{n&tXjB:vxR&.R>*yb>uBmЊ_d8Ws]/8sW rQ2%cCz.Vfka3M1ag=:&W沚 ϥ ){8{h*ݩ[}e6H0L95"g.'Z?bnZRP{xw]  =3ɘ~ғzl/ 47MN܎x<6'U%ak\X`Q }W;x`KdEZ #{yY;}|`GQ?{|U$㬳zk^/|/6-hgF2;Z+}(Kd!WKhѪ#dm2Xc'QJF X?mv+M)tpL&]T,}rlݜaãd3=ځ.J?#_Ç33_̑`!'j0.,:oKmfn0E6H'<9׿{׿1~-ΟiA)/}Kg=3o)Rf~aC 6c#,a>LgSr>6_t/r6t-n<mmmؿ2'mG wW]zGm58N-͙z`e2QP '-5*uo(;R|17ylke{+T볔#h,$&[fJAn؞GnYn9ͻzl/"Dye,1XQ#sbv|3~v5 =-EC*hb2!-q,$ fUErP> @:r#TܐEs<X&xD,~ծ}oD9Qϕ%c4q!w:;}^mrN)6ls'dUd+ZűwEvvF& _u>>fW\q7߼Ka̒4ɯˣ&|9pjepoR|?W~<#MA),e5a#!EaX - q5x<9[ :_.)mxԢ$lm;w&E:rM⾥^A sz~ flL&[66'˔yӣ2Rb)v2:"SnBcnc\Mi0l/"FU͓y_t`ɯݜ{eZ7$G;kI+Iޔ0%WfZvCR | }(l8;o~#q?\z"EV-M- aH vBStZCaO  wP:fFWe.wޠ M׮&%PgduBx nzxT6.+$7眝W_Lf}ָlZZ9%Lp5I'~*ֈh|CN#/xB4,QYuEApF}y_@ 6a6dt65+auO7]M;}t;yL_j:Kr tBhRQ[׎]Hz"gdEYJ!r8=BwbkC#~,  `,=AD+BYCY6CX"Q< \TJO5AJmf4'b)S[vygd 4Oq/O}YɅ||٣Èmn**gvUR N[e 8b5 3{zI)D2qqdž©JMYt\dN&z%NEz٥\׫ʠ)H a.yv:I%$]vevʻ4A,/Jlm>OE!|ⓟ)?Mogc C\tͤ(-`dC{`csG}mnlFcϲdlˏ{cǦ)GnҊAZR-%4ޜԒc9H2Jnuy~ʜ] cC/-gQǧS3_Bȇ魋Eq?d: KBGʷl :"ƅK{ާ3"npP:cKm~eNHa 3A+Hdȁ\ hIh{Oc WygV2߁5`{ԯ@қ#2?$ Lœ~W_g/' ~⦵K q[oeol"DL9j۱s9gڬT+_*:/*0I_r;]ozӛ>c1.u5pc"hD݋qA:%T (,8)e8v8rP^4uÙ?dGE]K.t-!g]pl6e5 I:te]v\tt( uz1$PW) 7~7rJy@i4 ?鬄ԧjn _HکG AOd'`uaL@X*Vɵ]'/]JissCty ,؎kž/e^ꐧF3|ԁ35NRATX'6A*LK l Iiҽ fxL.P!ΟeFϘ0HВ\e$ [~Isfc3m'\wB/JdTR#tz .G)]ĴϻMJN 6kK;"x7ʭzꡃYot-k;Z$I(__ikr!0I e+Ɓ۠+hlHDG~w˱5awt1&_i;On3'`ՕW]uС}٫ l&{@~BT8|\"ӟJH 23=}˥IgtSpo ZKXJB f2j7-;t F닙 訴hjP >^X9ڦ;cߡqYB,[6u[gmHGh23"BBi囗4oqdP 0G 7egbWs6z9Q@w0EUt2xe1x H0JWj\"綎XRA°ڔ iɇa!%U*󮣪 uV@\6c R/Jx.@%%'K~pd-m*;VU9y(j1WKԢZmNE>rH o~e/*yO5H('U8L#q'> ,kv/wGj~R#ًS2 8w0y%{FxB_~x%Y%Py?һw#׿F8$@ iɹhk n?W^0^/|ᓞDJGUf2s\O+*pz5?s T5.3f[SUo3ƣ6K6o].Z. BXGhT2Xo˚ͭg #k_n2)H%&|j8S<,~۩h8.0Sd""̙amTۀ\lbH (wR8HR"zAy׉(Mfƥ7uvX[zrDfp[ 1CP\'ڜWӀLC{uW\y%r'Ll[Y'bM%W"]dLpcrQDwix/>tji./9 O`=~6u81a¡鋾eBlZZ-01Wz QlLBuu,Ѓ J2^UWSjƒ:V$up@N_ nSYX"%1.2W`ލy XEJ]Sp3G.Y"Z" 69r%6Ju+ yT%WbWZIsP4npw6_}睇?xㇹCyR}֓[zUɏ菠mY@HZ^p/r˭ԋv ysrp}u0 .嚨Nʥ/x+=z4 2Kgڑ#c)~~Eù&7K/}ի^ C)y>jJjv$<9W9[Ny*Դ~0y0yӈ;v*H͓.mW*ノ'ÇG_cwS(jD+ f wC+ '?OsḛT{`<~#G,ZRb/b(%:A׼*qYg|Ukw):?ϯ Z|0 O}Jܨ~-" n_Iހ38s׹K]r 7JD*ƚ˺:> +m3'auGwwr[EK7TV":kd`擕PƊm݁ӫS<ҝ|GfV]Y[`TWw-wϕ NQ [u }e6-ip`U"Ua?}lvlX?6[Lk6tLUUŹ"z 9dW"zуD(?4(5&qt0޼aJÃ: sJRYqb Sm\:4Ճ8>"2я+Qb09iHh@No{-/ݵ`Q&(Zjuӏ׿)ѝ@@NH_}\wLC/}8o,ty11Iiֲؚ;뮻7 ok4E_nMT=P%FL՘㍈^|92E=37Ŋ{0) *^F11<_w"9ooy?j,~+j)֔}cZJ?7:u]W Er'V}Y+E{e/a/5MII>Œ1Δ}uk~^>ԧ>UEsieL6S6[j:|O2Xz1y_~y3Ȝ\ɗN{Ǧ'FōrWFo~~ׁ |K8DKM*1RI$g59%UNÇ7:Qr(ub9|cqu̵4[*aId+[YzxQѹ \sO7{~k g3BhEckjʊ0\N}6ٞn/Ų7] lkFHI,xiؤ"E N $ϛf1a,m8%K gž[A ª b(qkFQRߍ:ˈC%qĚ4J[k9ԙAvwiM{RR F[Ҍ!bdV!߸ކB$NW k~|fݢde P|"  6itLOЫ'7nHR?|tXI Ō E]g5l14\UXݯ(퀈d4ߧ,6a?<"~< r)DkiyYjcs:8=ȽN`(;l *%P:vrAn0bߕM<9CAʜ48v'Kgbybs(Xrxg!|(cFu"#*uA0Tx YXN(5x=+|9XS*aK(ٷ6fގViٍt5HQolvg~l3[|D0OrEҞsie_>tyL?t䞖Dcr3b?fQ'S-,nm|^aԻ;Ú!Ѩ] bUe<܊vj\6_()ՙ|fo(|TdOu֥˕bțFcvMl ?|@&jȑu^Z:醹bL1%D擌FvKaYץmk'Zh'IW7}[w/*X^[[k,>CQ3 dYqc=8%љX͌l 4Z,+Hu_ O>9 G<{r0W>?a\Fa6E0"l0QlXwL\U{p58@1ٓt7Ȼ5Fp5?xYѕ;ϰ$ h^Bףxr:d#V"3C]V!XևIUN<~LCU;W'5].J*Kqw`9&agyH*~-Xߍ'aZBFiO1V0jɭ/\ $wI)v*>Q 5RhyG]65|k ͟RU>*h*ʐy5?U.`sZ% 3l JבZd=f%G^-TN 4! *^߃/j]^ |낖tK`X8]Ym'fh,Z<;M!W˾cl~*9u?ɳӞt`*!O(ɏK.nY]}F_?yʚ}}s7Э~Di֣tkU0s L5*8щWF"'Wv“-oo!0 ~IjS~WPtPD o ) [a#5W{ Sl򲹎"d5޿kvW_kkqub泽\sGci[,\/e?w~kG+_9\,.8FC .unSpoJP9q>G`xV@-5LSzO]@  q{'KlsF30wţ(>ZH3?7-Rm7O8iTjY%Y8oj"\ kx.5|~5hY: ibiXD5+ENSpnC7&7qi c, (iUN:Z!0qd\6JCQeGvzMF\hA|ckAK3dA߂@EL XڵSwv@V Ts \]8S^uK%V2)qիۭo_:u:8]t<\Nw$':{laW}{ oxC^U[FlE)!VC-ϓPS+.6ǐ4_N}>~I؊D de1{"$Ўv;]22H Lǣ vvoJCg}jN/}< r[o6R>'W]ut?;{S@n(}s}*|pe&Q-I;i^y8l/yKw+ "9$?oPd`"Ȱת #HUIe%'cH'%9egS­ KCS.tƩÎ4;:'⽷[U i *D6ȉɕظyQyps [||;oq- K4E{u?malȄ^ N ?/~ ~3D׮ϖ3ng_'>K(PFΡ yq^*,(n2U t"H_Cg[Td@T,Xx'VBra!UG=V?slU s~_R+cfAv^@@&# 2[0#03[3 D03*,=UHBwƋ6e#VًDZz0j!u_8{} n+nwos݋Hxϝ0Z¨#e1#ʜ9]aL:Ĩpa,YnXCH\@!*=TI!{r H*_~+.\~ũ0)VĒ&(VWl֠U|%€4PvѢy"Ft×Eg]9WHY6S9T5U%Vݣ)4;QVJNɖ8<;nmgn/ .8iqD\%^ʐv:L);4pOMD +ꪫiؾ!&g+iLC"x_N9Ӕ$l=b𛛛O=z _| nw PXYz*[p(= eN ;bR^~^0(s ЈQҟꙟ;ZۿK?f_^RT"(6;bލ%࣮g>3qP9 {ʓZRD;s\y]oLiKYظaSCϐrLs|W fxI0& JX\\p{4v|_mTDI/aEvBȢXjT 65n~o!|:T$dca:yZ&B= _|StwblÞTYl>Vc%ԋAy+.s!zz%]$6UB3UW.VHR%#tN,Ymm73Zlv.H.,[ N,d#wn\\qCl]mVw\Y6-z=Ь\ stQҌ{co7l}55ٟ[nm&m#lo 24 ĽExsPn[Mj{"ۛݝ8eI>|;x8Zϻ8+&`{vto92x-n[s.Ny\o}aZ^\he o-w5n7Ru7vtP jI4Nf*'wW_䒋_0e`!Bpݻ#}OW򕟼W^ę J9i.7q1V#RXw.җ40w.T'0I b0IƃRg{MnP  W i2ό~*9S0^iH~6dUe.XX)u>JOói|%jA/ȢҼavUzՔ2.p$e|+sxhe{w^l__R628Oǘ^ G}K_k^k_LyɟiҹT' _iQi|E5S۩BtsեH+4h]OaZ"zD؊ :A i,(΍q Emf3M(BºVԁ"y&9>ڌ5BeFqY-`ta\&Ȓ!b[GB2b П&_+-v6 =CVY,/Wswo_p~oFgwj5Nd$=f +3^JtRX:&vj}k{Svz:i7Lt(]ZuCj2tX9<] _nccW^߿q)GBx.SԱ_Nӻ~=M"W]uݐFRk}j%X_3p Z5$y4W*[ѕ'%!qC%7:~ s'T9FڍCYH`k|IJr ܱn7\*MX_pz0Wrǧ7Fۼ2;=]wNmxk)N7odD֩Kݵ?zGHXٌ1fDn2'n+x}ڠ1CW&Ful8ja#f4.Ňn=j>nz;%D%5@>'OC]ASӴ5"O'iPA}05@'bn-RX-bE^8PPb[E4(񖺿vw4]p}7`sX &eC\|`q&];: tgH|ȆY1;*A6ʣZmv];k]+{S5iڝ:Zan](7ssuSB46'WwzR^w5f͝U}Fȝ4N\n jv6:j8FʼnSۢe8oowYQsQ^Nufa-?#g.6v!GEf.& ĆPnnov[1L7r;_|k^?\wkt7o8>)`&z"ALq94;<J)4x~}S{\t eIziRSa)FDdv` ːH7Gٟ~OU>"ٿ8U GTfĤk2kұ]˅wuC_= x.x}DKAJH_c)|"q4%)K}\)=r.ԗbD<$Z$.F MGq͘Vx46Fݭ"(BoQ䜐9WNm 1R0€H%@ 0z r53ALE[QsE{vAO#Z.+@l;Lh82"[*o zǏc?r|sgHO»m{|5/^j-4Fjkvڳ˝ QYqzlol8妻5ltft6g:~oX:cs,uAsmvŚɻCSfJg93%'%^ɵ1.\^hrg@<>'vɛr\WV:ڻ[[Źvo$RA ޴hާxYΏx| ƗG9B}iz7I即kƄ 9>_ )IrI7? M7Rudx_сuKegǽߋYb4A[2zs3D$g(ŭNmqٿ4;b$yV dd!6 $M+[ҞˤId 7 '?rfC Xܛd‰{-&jIRwy9T;4& ex+ruHb/o/ 2-+x.QQ`o ,-Ͷ0_%/-,[qCfڍZ3EB ~Ny;l=Z\P<ǵdønן#ca{knUn,`V}p F޸\9tpyS54͛2O}Szm9(]\_m5bCаԇ-,ujݝ~%,./Ϸu$J-Nۙi[5`9OXWTT2L?g2J4Ц vsqo^C!"Cǝg=Yy{9ܷw̡(7kACν̮^fNH=[Ѳ63%PB|/&nQ#9~E$An_p$4'ܜ|w泟Q\~e{t\|,3=/1XcOuWo"z yH\r" P#i<ۭt>ٻNbP݆%#F KDQ՜m5FlHJ0`qn3\ĭf4:|Eb1m+JJdLP#63Uŗ8 ;]EyuFڌMwY8NQjoC֒uX kA'6|x\݁trG>+| _]wunKIAB)z&(M5t9(#i$VRz?Ij^*H/nϨ~77[d.J% ,Q`JrT ɇ|SwoWl9no氋P􅏌Pg?oo|O OD u-mfQ}(^.Rn_-Y@g `xVHVqiFgt1/.ɕvAԺr㩖A bBʃb5dtZb")h TQYQbl<TK!.d#DZ;G#75TYŔfþ-f-.݇1ρH.bq[QRtV'+4VQGy7o5d_ G>Vnjf:H`5;!GP2)gg L9~2Q+SJUxJIU SjZTY]&@id_eL$qҩU}xsl_V0ػ>%趰N(*~( Ȱ3:}b<9?;/yJk&D / S=L~+1FGVk^Z)\w1kWX.7Ϧ׹/ *"9V+qr [$ԗVl}b!xrRF8mβܑ&PJQ_򗟾o?r~y__yZ/[o}M7y;t*cL["a#$^U1 cۮNgOUH[bLO;t *: ^KߔO/$Qݽ׿X(&dMJ |r&|SkpzvGyx7\;5^w'"dn o(ؖOMey{4~iUӂN"G~ `j_Y {.XVs!~)}3o~?HgܟIw4{bC=w|<*4n?β8Q^ 3zlע2e?aӸWM*h5sv٬F;TP&RDHtT"3lu:gO#gNi|{8.4} )Ab7" Cf"}fK1pkls߅QZ;;2־<Zk%8Ӳ 59RULX9yu?/7,&ͨ,)? 'z?CMGcɿ\o|ɑtQ-JӔ]NPX=_oƧ{z|j[J;wļ5 S]a#؀e/˯\%?zf&hLy _ :YA%~ s*l8$MiM=t7 z`m^1G@澎K/O $fp; & N|Nk0(0n 5yHbEL] 0jej@$J(Z^Y6z v883eeRjgA+sTjfn;pBT0vJaknΔ;G c;Jp5[}G#]uoLizL@i*ٳ}#+CroTJrRg{OlզraM}xxI6 HNN&|8L{߷| i2?#% /P*r4N1Oq op];-?;f(.Gu)d#$YأX_gaHQU[*SU7 !SUJnVPv?-onnmy< Dwak&ByqV.ܨaF!G (1ӂ!ҫ#S%3y0Y~*\\b6W @v 9٨C]j U"3FF+}"-41R_O _PMg(:/HH\ymLN,XrN8m45JH[}5(fY5ihg׶l[,TS*dX x.Pi-8B XkTPl̶6Nf?ؖ 㓧6E]# NL2P F6Ԣ<ƌ5BX*O]7~6oƔcqv%C<= nP4 Jr{7!BEWK5wA=}_;>'?"|p!i s(c8 F_ ų}Lnx;g^Ψ+"?x8eeЍlpX\4C%1P;,#prâzዦ}j__|_O]4щM}: '۪M` bY}%]]ť };M NQ͏vFu[=?8;;}.q<0P mb*JZZ m\o4f$C𙍘HZ ؑlh||&2*IQ h",|" ;tIn ܫ]esj``q\JW t[j.wGN5XAݨުCԛ×̫2?vtm~a)яX><۪;w~FugnnB]ƉWˇyZK'fP&"Bc`?Cɵ^\Uuv]qSYwS/-P+'N ss)7GO)3\va7?v#+Z 4Go#иG[VDьHyw>7O,,9'T>}>+ъ oŠcv%? Diz\98n!,z@IpџX{=;d/_Th$TwcL./8| X[{VJH og=?'3(V.%G^G>`< gYSuvM*}I#bmDY*RYEXFxlFxŵWOګɴkHXW*SO=NG2Nh~QI!hO>G6<ܰrz{ K^򲗾e__RA<M],fPB7b3\SFUEJ@2 `vTN ua{"]d_1011ᚓ [^?Y_Y1 %Khˍx5ZKc(UK{Dዎ*I"Gc8Bb8Lg:`X*m4Z#G+trEfLur{ζ6N"62Nl'k)ҁx{dE:d'ZoZё#۳3`$~*=v|Kͯrgzj^0'CVHܱ K %n1>fgiinY l\<:PO1b=Y5'Eq{?n7֣k;̤}wçwqjQ4͑riַÂJ`E&됢2vECri3=7ꫯƮgJt+_ʓ_Ro馏|\_A5(q{?.dD 2o\ƞ=1r~aWY#z{a-T[|BVTpzD}KZA ,P;k;e\B;?dj-p&jUgu7%/x wiKesoHÉ1ע))*ۦG -\Pi>[>nFLJ"1JD4XSzɗ].ʄ"[qf"&!}f8GH+ GTq21^74++e!2r0 ~I7eKShniV0ʨ"BIYV1HK7%I|`0HNFlq 0qaVښe4 ѰarqR}ZbA'+q# $Uc'6}{(MҕKfMDH8hw𑱣!$]^kkgch fϥ7+ߵ_{p/;vl[^]2MDBAIUY p@e ?H zE*EP7+δًZg鰱Yh[xoSFajVшz9HȄ{abP6L;#P4*{LS6M"f,S;!w{cz^+^\|Ep7gYL/\1e9;;dH~xPAHuSћC0EHt0&@Cd]0[L{kIꂏB8JEDi2BK.9`c dжCDFTy6rlL\zpԑE2bC8PfVo>@ nrzb֋ՙ[;}zdK.Xv2і:[jAlgCMԿ>Sh}Ԙn5f'~P1ilO"/PaMGW]h.ѨgON% T#rH䅻Ƶ}hXu@ēD%4!/| )rwn~ؕ2um|KGyYwsfk&J@%a` 럵(&h6az{,YTDMYE3:-A>jՠUFʨs Wv5ׄRstPqS~z]LIZH)8^M2K ,ߴh>oo>}P;DZA4L_җ[5{8Lذ u^HFnM*o2Q\`Fr`ܗ2a u8Iь΍2ǐt@Nڲ *%zl֕ p`FC[&Z\oMjHFZXְT]XreJHe)ܼ$ TPf)Pye @e|+{ELζ YIva7U7\ZZꏲnqsmyh+/'ˍ9 NhY۩SN[w;^p)n)fdeb/LQ\\C0Y1,";Ya$Unήڿ`g{gE0 nk; ^@2>v3.vc'L҆On/ۿ}џ̞U:Uϩ,'&1}osH(=O K 2Ns=%wqNl*1zwfO{ァOR%ekq袋>O;vML] uD6V+m+K}7z`JC.d"q+Sx7 9&SS{"P [DgPസu8byKKӌ;3…]P\GpEQ Y>|`σ# 磾5}=V@>#.w,qƮhezxyxsz [iĭ4q[cG#W2*+T݄q= ,#*!WB\%| KjcwthVDZ*\X|IQ3 Kw4qoqgUbQuIߓ,0@̊%3lj2Ɖ6~;GC+f #d,2uޜU" "ɊR%F|Pi\Lr~PM B9œc^|eݱΫBA5+mVbyQQt 2ū2>Ĩ͠j(qXUq0 mJIZw+BKn"[{N4Ax ˪_\RJ*,;O[}-tdUsOy=yE\QE.h)Ko{\3a'9ח^SP']W8y])w&VgozsofW.o1Yv_[ϙ'u#<̼ _I !fF]<2:ymnn^yRr(l) J.וkC O+Heʵ﷚@,drN9!:F)]J Idtphniw럻gjM /a w4D0-iE)PR<}4KxPfXg@VoPg &&5JׂF{_~fZ3f/Y83:EzObqn>kQLh|A ]wS. Q3ǸG6e7m mPL%$5,.@Y*X2QޙJ``vOJ+_3Txퟳ\xa[!i$K&F 4vc=gc]p7lVgfX Qэh4 i] εbV~"T5c`Q! -F7WktZFdrq̧cʜMДӝ #zs{k,ʛr3tb3I=V۱X:siKnP)'W<_3MH^٭2aq_~m5;eG4;U1%wJ1,s5{LAs0ev8U u| |]w+?Ar:qd=Sڽ(ȿmW3vڛnY?;|"u š3 mI~_7$X8Q)6T ZUkk$Oy6h&&w11š[f48 G$a1qX+9!=r*sІ lhN EشAKъ @bQzO5ߓK[W2qP]-AILLm 2C],.ϵ9 : (HNI+CnW'1${C1Qָnc)[ĂWT<9לR\2)ILVjC*XV(}ˇoLHUyìin&uFWU&</AFJtfyEzɚwI`ЌӞ-7LQ^ZB`3P`ȫwg\84{hʈQ˙JJLv VW/@+-"Q"N=ILpYh.2m!D)I.e9]rW^y_vƃ>C9_sks<}UaВr c[L۳K}}o/m?֖ghנ>ߞq"\*<;C8}q^:x @FFa}4pC؛e@ s|#Vj:!&!°xF3h/+lV $mCwqr \/U ݾ.My=)oDzTDG`3v>aP'5RAn35vc1Z~i-i#  8sDGt6\˲͊P*/B*ˍ7{zKx& 6~X,[dY8pEBC.zYl3F{?R|.mY | l㌎x=$gEE4¢kY*j>P+e0bNՙ_YNNn-_ qcMS%ʼnH+M6l+g+f/l-[٨Cp)(!3_]]a[SZI#)q,12cdqӔ:>.:"F00v1dD?IH-<E*(EۀAS7AŢ>+\@!xȹ<iN1av.U@?\Bmh:}$Oǔ>~VE|*%&t'QȒݏaZ%@ *xJ^} }ԴMԖTe &%KZfQ1ҸȡMv/n4aQǵ.3r4F;Hfn?*|g!9țJN`z]ҨEM[PGJWxaf{YdAG@YovW;k'O#[͓ި5Z~U1Z]2ۛR+֔;\F6麘/˝|UMwFV'%dN+ #[lb&b\5R %L DW$e$<4` APbS\D4$&%!bg[&&{,!":$kz}CnSZ)5!tvxPKs! wU95LCX_TC׋n#Qb A#5\bavaV#Q28tsp[wzWU-{kik:liJOjV6;.N5 5iAtЖ+0eODaJऻse}eֳltjmmT5z;.,Oم=<:^en/3J>logڭxu'Xhr#M0Ƕp pv+KY?n,q>yESB&OTZܢWM-WIn4&$ (To+ iRSPCaRdYYMb/{JM h4`~O@?ڕeVAf|%ˑq}Gq"[mQTP)i(F1{D1M7!z:dM}bw(rb1l͒Y,A4UvpAW%"F;[L:5K"(f5ML'(`0HۑCVحőߧ ᥸gi;[e_銽VwB7ѱ~鍨RI.zWn?7dE9jtZvwVsmC$pEd(܊da%k 4Q$1UiRW^$c* ij SG-l݆o/mJ  rP`9Z~Hgt BT[u&wXD^PuāXbBFQpH'JSTRH3IG<-tDKDA0N- .΋YBnCRm'9xDPi36`T)Jͭ AiXUO5wTULb=$J*%*+f4,,tUY?FP)o6_ Krf8C(়\aMZJ\"1ι$cPaq(P3 @ܩC#+T]XPab9ǽV[,.$rKKJ)n~ p\*lEBw4@i8gYV'A`bg]Rpn kԐR6m@KgB%yp} KHcË*IDEܒ)-0Ǩ^zj.\2vlD}% ?9U"N@3Ǯ(=z?` }[,|YMXCHCHG>^ځ% oϫmN&n6: XzW\AE9Bvb±Bu є-rClyG?ă!ݻe6ǃ7 omF0b8ê oӛ; a룑{WY[C?e7܆Ri:s@mwwPqh6X_P*tCy3Kݷ03+aXU] ˍ]1toAN&˴"vIЌRiy5IS4FQUvTEb,H S%#8%{>Ռp-UŹbɅXURME\$V#βBA0OcI 9l/R#1~MkY-Ǟ/aYP0l#)loR<ܤo ${= h+v94/h_κ6bSIVz[e$^QcgıTϬev""{lb Wjvz}~Ϟ7[Oz17uuOg_I{Fi51H]ƼL/QW20"d~~_HQyhs<_5ZQ@wlEfgJs$">_,9!Dn%w0퉈b 7cGQ5DhJWFϞ:?A3hHhry`I% @D'"&W#FUx確 9T EMh(G<t.?s # "b`t Caj6S g[S )g&Y @ l:2CI HXB,ʇNg%tZkyv4v4V ȑŋ|1YeE¶VM+J6Ӕ,FJ X\ KGOVʳv~a k4+wVOlD-!(9!7ue$Hp /{(D#H T([SV-kI­в#? o[No6x&@!( wA;&RI/I'{""􄷋fzѥ/aGb!w+=E6D a˖bL q*D3,MZHonDP JWP\wxc _1L( ~9ܾ'>Jl1s̮-DǻÂj"z*1v #' r/(['npJ (r:o;@ hS}st\M/1\`\G@%*HHe0PE-YƛRv F2J,TBRn^NqbCDz9| #$͐)9rW8#j?ET%BA8v%3 5hO$44BQ]_"GR(P1VRT,kβ dɛ׹=q 4`6v,Q :>eEjk6"Ssѣs"Ⱥs5Ԝ&gP|B!R |ٲbxUV7 ]d?x,Ss0) gS"9 jbT ek!B؈չ0?LAD5Vrj@)r6&^\ (>>3B0(5F5&ݝ^]D.O2#;D))=pTSVnYQ4`ż+LVd\7߮-'ZZ\B@<=J X뎈@e+uyP9P!I/ZY##hO`jHT_7.vAq 4xB֕:+Hs ֐vI0*rt,>!Êip/Wt(6|ڕ~+nKO T:}zS<WQa"Jl*>|`RG !$blyJ'~Pn8"B)tE_Rʧ^pVzْtP [TR7 AfxЦ6xh@xrXQMTm+A FjD+@@ SpkzE -V3 Kk9*ZT;rP-5b2dw *Bs 3u5w e^I (JA6rХ%AȀ^9f+W` U*ݻ`X-@ җ>OhiaG Xzk=z.I&gYJ5ׇDvzKXAlaP);UEl$rUkb1OPg۾˾Npq=F4kU-Tβm`R&,bTP'V'ަWӗQW+:4o C_O$ n!lAU\@U(BO3ۯNt7,Eq8ZW;P,” TB݌T xq3XvHnŦ+7[s4l;'Hot+ȩ *2[]ғqĎ.-DD"]Yx/Y67RQU 1/{x!= Q,xF=AHLR.1 6q$D﹊`Lj<5Jm ix|.PTN0"LJ |1G3o*|3V'uEVJ)^dU"AR0*1B4)p8z5 RvJc\^1Dն€(j0Iu> d@h"ˍalW''@*sG-ecaIy(0+UbYBG2#Ix/0C-*eX}G$TD*qX+t9/UۥGRA *I1[zn~$Tzh]Lp߷>\ZåU]&&O)bх Lf!Bk˝ ^d AFI.)Ѣsskggۡ6>.e9\$M;$/#,4OW3Vf`4^# G,̩TYHRţQXS_cɕLg ŒpΘ8heEɹ(/igO`@O$vxP,[!Bzms08k`腷 }quay`$?:LlIL \C X)gY18s,ޚ=ap0-s%/$(Rc#ߴ538 W{<(UַleCgpbG8ԅ-n9]ݒk7rt)'`n #J!h8Q#-GoPcY5}@ܭf99X/tPYu? `-l:MK75nb&y,lyVyw1^۱D<-=IK(LDvi"G8e8;)Ht5fffԷrI(f.ؿh1xճ$OIFk0槰Y @gEА{}a- {n,RYuyŻ'd6ˬ6tJkΨ*n9%E-+ftS1K"N%/*N' l2_@X$WFi,^j{!CQ ,8Ev_Acm% lک uD!NPҘX*E̅]UDGMH S#^'[  K,aGmYٲ*e i:G\8cb1aggFQi.NFPI&mF69(qLF.|{ n FP65o v9Y"QMH4OhH$}3+I B>{(;XPu "p@b _4]^ȮZF\3(&M(t$fcsB N˔HnSͥ{:X+9iS+Ms&Lcˠ i)b w"E~X:6‹.:vboB}X {ܭ䱽jߝp{-9[U=]㢘r/i(6(pݸcM( 5I,p~ZBQhKq;,\Z2F ^SmvUHp[GQ~Sa2&2Y!&pq}eGXQGFrrMɜQ1"mYSvw'.ǁMC= KX]B>MSф]̈́@j(ל3H(]y13ᷪIQR._aA?2`=>07"B ,xɁ7克/O0l{y6lYsQ,v=Tj\JQpQw#E2Xf_i hAeDXZiLqM($F i͛d=t9aV-x;₵%`D8Bnx+gh$8)Fi"oM'"V阖2K+ڴD0قԥ1G :<$,͚ܚ&(+ )s4jwgGlY[yuna:zpڍ*[LLߢBQd3\IINIElmF6Y .AK/:~}ΉKN8^=JYe.%m,3uޱW1QEVpΧݔSة1Qo8XMDZ'+ܜch s9%w ٕtKP<ίly|"a q`C4}MX )cT'|ɺn`m:}$S1rgHIrՖ(gK3}ǬxGui!UWkhV2`miʠFQ-8]!`*{@\@|Tۛ uNn Ѿ}_.UhheK~^"I(E9!tmYѻ#BBe8=丹QL;v2=Ԛ߹Qi֨{m!< JK (}`/q9WI,KHw2ǬE,z  L{8iL]Es)>v@c 41 h35ɨaK .WVyY}'L7mܚHՑoANQlˮGc&3bXY9Sf% X$eCts1V>x{XE a/!jiY-e$ݖ!(= E|o7 Iۥj:'y?4;9C`Ps0:s5O FkT r08vCesj7:mIt)Heuɽ$N4ļZ^8`.O<>2q]Xwb:W_pZ Ë/>y܉K.ۋ;z}j ݃,*}$4 1-y)HoS qYbyڻv/ݫB"Ŭ+6A%, TELx2uJge+df^nE:-e;ulwywiia.x ʉ:QGbtȅ!!!)CYGMcm" &wIC"ɰMlXNBBLYAƖFnԣ"G`5ۭ/ (=I\8C0iqSWui~w* }۪l%)4O#!-H85OIj&X;SY+`R2j9dK]N# }lzgiv j3Ӭ!)yb,hasC6@.Vq&tZpfJ-[ibgנ:0ېhIlv-y!T`1fXa% ա0l8'=yQx9>Nț.f}nhŢ AM6cںM4kOֲbo&{D`%=/;"h'OitM #7X̾OQiG 3Q%ס&H . K@GqxS<]fuMw#bӠ)V'L$('|ߠ;V=TvR.y%'W-p;gVč؍=\LZɒnA3rzK]1}ÝsӠBfR2uvjgiEyBM?m9IElqpk]7n-?*P'@aFD)klGąG P,}cXDha0u|>]Mٞ4QpO;p ݞ?.\kx]؀9jΤ | />Z; AQVgp,T[@wpx[&f[.\@`K[W–΀Q\RckRa˙mEjBx!uӴ]N",ROܳ1.s0AH[.WawYȀFpG&g12OĂ͢k"5XY\rɵ؏2'$(_E 1L9/$=up'~`۰- \|)TT ١p)N>Źs_3U뾘61lKTTW>>va^::8`ΟZd$5u叚1\0qUdR @0Vs<1Й`s# S1:v6HYXIKp.ϹR ԥo,PTs!XJ|HI=bu3R7s{._k٭H𗴘D`ŷer'>9l;u1KLOx=(&gf"ݚCBפ)G-Y-XN\#59^aDKRcVr\E zWC\#bQ/m .T\7D_z3խ-yɌy#Mfa:9/+y&h~jEYjF Q JݞNsp˵ =&AOGHEI )Bvt&8,85p&Ů.!m= Ms5-6dߊB}C BR3  i1\8LB%4Q`Vks+j߂V"CHMa69 UcAsl C:_BoF=bJLG,`qpBm>eġ($mb ѓ4N$Z%jH"[#e8֟ 2 gu2ӲlT{lCdJ c)S0Ύ}w@*{7IЪ0.Y8q+(SrA )j a˦5 HTJ a>&ڈg$8֧Cxr(BN`f n dPd$ϡf3= iMqjX?QN-qmEdS gj SoXGgd-LeQfAS3@bIu!>6{e&gha |R([[gؘVB/{,V:u{cal[$2:$&w (Ag@8DA'P] >g : gt䗯qn:اW65ogF?tvne€M%F[-p[/< c̅o ҈2oAp_jǎ}URo:xE31"JK{V.f '؀"ebm,Or3.?wsBR#A~#_kB#6h3畆ۘۦWm6 [605AU3 A1cNƞ"z@FyG钥W{ĥv!7lT=b dsKق:^"۠{S66[0UK;Si`2OaN>G&"h4h' 6 P.v .w{C1JI-E' &ms9)a12rlHW`G2|Dzte U8Zֶ O|stKG H|Kan$2Z0>9"kҩw6V.cC; -|鱵.9q +lM5.1Yag&ż\CYdh?RhcϬd7fЫo8uv /Aog@[TRt$1Jvrb,Z p]s$/S'^ 2YxO.oq(ᴘ=쌰׸"ue*wo%%WЅB%{!V!r^!vةxDSZ 9gEX b |b#} Q0R4W`vQeTH/'ՆO N_7Ago8^q^/(B4AЬ&5a{Dz9z,.vH8liWvYSp/Q@#.J1Yt_OsV{MP&Ŵ7qQM_0(yCT> h~Kw6Đ 8"J1*HW( a4tޥ< )bA`A>r}1W~dM|"yہjgA-!M6AF^iJz#D rrBșBq9=`}:j SU]6ޠ^}N`p;4ҘP꜂D 'r󕚝Bx1bXd'By$4רT0[Y6q!n2Ҩ,G$(d_Ylm0As <! %8U6>RZ|VT1JL;X/ugT,23:ƮM['^H!n/xo.;Y 5i۶AjfPC&9mّ/=B$3bl~F-joM* ]R%;;;ҳ 3W~e V=}!ӎk#G),: oX`.g! ).9(Rٯ%V'ȅ,ຨ;fe !(j&$K52M$ty.aDJ2mAognNBOeAJ&{-UaP?Ţ7tӀ0!+O+M !//x@mKs+oN% ": ( ZڮxOvHAd}f+N)RrE%t#nSzLP/ToҪ(9c,;{ C[icmyuOo-bc\P5OKC:Yf,;F /Du52Rī#B6=6Z?:E&- J8 `AE^ujJG\Sv.M\w#PD F@ie~$y[D H7;Vil>>b'̛sZ_ Hu8Flā%bല%M"+KrFWX.OYdkLDׁi 'ЁTF}vךw0fU E_ hOvlHiaZʢQ[[S \:|#i0EQ9$aΤz6H4'/8YRPz/|qխP&h +!,56<, P֮膭z1;?6┢ħccJj$g6 鮔lǩ}1k,Gih{bjg>,:RDif[zfrCK9nr#guU/b)HjC,͕n4 [z[˰wLJFS2LٕxH@7܁5Ls!G,LfN~^kWdsI+R-,V4Mmp5VKM8صeAԚirÄ/DF ?f[w 9g"IY̙@dHɹ]/ݡYBy1CA`Clj8#0YEMM+hTb!t$w* ?5[әG?;p׬fm{>ϒCSĵt4Y02`eZ7<=rMJZH:Q)B"i]OVgm9kVΓ I۵UU] QS/C`%H5Za _ [nЇ k| ~6ANK* _΍fNK2C f:[ XqX&<,n]bs—{f@}}CR|u@~*GF9D3ڽ a$`D`\ٕ ,Y W2̔6!;6N綑XMUf@1"r7]fG3\tz;G5Omf32 pWtjfBi@,xʀHV;v+#X0o5 H.qaaAS4/&F6vFݼ%6/"˭:<\lht5o&.AlvE*fj^+Huk%07O3V+SC1:vY5vt6e4C`v^DF?6٘PӅ}3J"A*M6'3LN#jwGb}= Ӆ4%^IGAEcs|DFde*KtxPPU0ؤY Jb >wjbC+gD )L!&O JON[3;F jƒ(b#fRRc,Gr߷\@}#G@\ qGUnFGgV4 (rOiՁ׆;j C|fN3+KΚ꧅d*H,O,l޶N}@",4FYxὃKE.:}-}pW| _xH>[Qm L]v樛ף%dN A;h(9qH7i,/?}Μ9s| rN $Jj&yDz NzmǟlB Rs|(-dq8d7r7߲̱{g<#-BP-Ϻ莃: _ל:X&?oӤ3ag2lՖ7鑲re?䒋~.ttodzsxA)mǝݠ$fDVdj|7-,MVmkSKy:=@q[ EN?~;N'./xʠ:Jii[ e"lJPDl]rI|<;i6 ,JqIJhhlٶ$Bá?og=YYs3 ZCH-׃zVa$s{$H1 jC-b֥2lCRQH ?ƱFoRH" *ϨS]ڶ9heE(s=#5X.nWrKpMVr)V%o0b}V$sQU!yOWՖz# ˟!z+X];1AP?CBɴ\0@56Tj`ZJ hi=4.l: }Sx%&V. TLdw(P8*fQZb9ٗ~ :z(+91=ʴ/vNuU4HNB0ʖo^6Ydݨbg-20ztI Ć\˶fz˪`gs+ܶ͡a2?i1AU'$g ޳#RD0[-:7Iw|-D#4E* YݕU gӏ t^WZbɣ)9̡x60"w>~Z%Fc VArw$V9rhV$5d%uJ8ݣܥvڒUIU586IԾ vꅧ5 M@-5꾓n!L5\kk *MW5xȅR 8W-$$cDW>Qj7+ `&cv*4p'O%: }cM/r7PZPz Ǎ:&aj4G=ѵ.?=Η;V[:Ri4(x.<`*c@+IJlɾx }JG0W_} GaGμzuI$S{ʆ-FnmjTEbN;k=8+Wxя.n0E/1X2;UUxS#ֹ$#InSo5XyZ4a5l HpF<,CT{EWr@~ V `LB^.!c맔5V0SuJ:L-Toʚ 8^&1i[2:b~mңŞN g "63I_ Siblu]sAȱd`wUEhM5XOL[c`Sf?^ iּM %b.&L2U 20 G zk I)CzE0\4$$uâ' %$]CqFL:\,>/}֝QabO8I.9qXPgAJKYUA1lMJA[̙Y+5=S %,lg+sOVO.K*gf .3=VY֢g8usQ:) b9G3[m B>b0;Pa Lf3(k1J *..%fvsK+gSYY`! bI0OR]ef$X:`Q !TR.П* c6lɥ Q8a/v@WT~~{:+E[έ*MxH=,:hH4YHO^]Z2&G0۳UpPDFD/5V"M>)GL*'°hR1촌l[F"M/{{{{ҫ 膓2[Y*Û *eYkďi ٠س47Ê ӯ\Mi8@Uu}?ģj*H<|EH~z{?xK/?8k|}cgϞ}^w 8l?z>IOz_ws_p|0t뮻~ #_^//_?K/7~ 7o꫿o|__E/zQ}ӟϟ;_pK.E^UzEy7WNb[|3~s [—\z}w̙z>s[s?^UyM7<9ЇNi ڇzOwVw}wƦVnF&`f}|LөS@pOwe|s{Zj+ro~a}I^iSk^󓓰C7؍X$nT7؏؍?D<7믻C[=\swqӮ}Z=\pwΆRoծ w72ua,ovw;&Air!XOr ^M{}#ڵtc1F{tmy%yfZYh-bI\x؞Qǃ!@c-I:ħA9bfs|'y2^dTcs޲I|tLJҠB8PvxEKM͢cȓ$:5 ,X%I-\ XpD#Au)qJ F'*6'FSk]>7v,6yϦ"E9{ [L/w]7alT#u::L:q77g8~׾vs+kO_qcWYFA{}|-1|݆?<۞L~5POO{ӎ?^_(d>}[[~}C->}N/g+P?fK.c.g<)O{jUW]{}E7I]z)?m߶d[ ZzwY~{~_pTy'>dGOo?|_]ZC }m==Skkt֧_?,כz/?|3n?^zCxr.0oO~ԩ+'ԧ>1'>D\fuS-p9BQs&͸VXyDr͌_&ȇO>RW eqQt 8siR_ZqHXRjeۦ*~`ۘHҥwQ Cّ֗7^(2 |5z]P-BFG('XcTgqolQdѕh.ܝ[~<"1AJM'4$!xf!OTjSs|0\D+ lb,K$0XjFAAߜaI8#=^<#q' `1Eo5cVYCz֭"7Pz_=<څQ#ZHtUYA%U׊ĪKYrC-$3eJFѳaR`XNt$\JG  IH8]28.peޡ#WXڥP0S'/"mD!2E2;n<>]O_X'ܚ@v Msry.WhJiunhIb 9هƥ#ECwWn&<8pnE_k?viSo+ ޏ/ХZ=mo{ku뭏G>R|}Woe5;j!RCezfFO[KP/5UW]L훍z—Spxٿx+ۿ'?#]hYF:wgg1|Z9Sd0϶{nC|5O~x3gw|]w/>𒏯oyK}wwAX58C=cGz.e~wobU{Qk/{ zoȭ@% d~ &_U$v,΄M ٍ̤Ⱦ]jR/J 1GGBU M "δqQ̵F3di}H$(-å,Y~k[f-#.\دg|}hm=M5p}OӜ:=;"9a^2]y8 v#o./ڐBh5Dt(pf%@if I<);t&&TrTJw\eת.M)$SFꐱD5{s NX,:ѸHcZdgz*~3a \fU|ˬLHKI]mٯgsAd~ò FNI3[̧腲Mo#B+]WE-_j JM{W\QϺ9bF\<9x(OA Sg> ˀfB=KCbĩI1ZԢkSCOsɦEȡVOy<᳞,Y*Gt.K/H_#mWO~0)͋$p"ֶzoX ?:u ʽޣq%9}˕N%~odDs7Q߶yZF5KajˢТy5ɘʆ22 WS7V'YL= >␜8¢ 0֥C,fe!F-KO:K#ݙ'J}'48,_{\0Ktj MP[J}7eeY{|h5F [a6fS3B{;=H`E)#d>s\ 0_@|$qBъʹQEG,KE>-{`b6Y1GyiZV/qg zɘ9&[ T5c촹Dڮxr&"e@h3cK#X9jF&zA[+q3uNLJtNi^t[~d03X.EPj-^ 4Nð"^f)ea+}mKEއ! FQLPz9e꫟\ ?\<BY/pDlICﵪ(kU_wLg.T)*L6Mj֢\t8f~ٱFKvF3],8%N-w4eb\&GSKq<"F!& G _s3&ehnO*<7kcVaGLͻ[?@8_ȬEͯBL`Q1:Kgb4Υ>Uj-r1:[mMBj={@R;;Qu(cK+k3r}E~,bMTMWoM/p"-S@(S?5:]%Xku n#HUtIqaA@kuN*i~?jYzh+oى5uC#;v\5n/-A!tg?Zw}'O^T_@J튯b^#gwSw㺜mj\'p9`+i`Sg\h5"("&vD ^|xߍppEߛe\,Q_ntݣ?_71?7՟ ]?y90 4 `W{v>k{c~?MC->fAuq\Q2[͍#ΰVRM@bˁv8' (o7ޝ'P/hC)*SOclKj%YE-Lȓfh ICdI#7႕p1^#zy#fkC]5$QkJɨz'Vu^-k-bc\nQZGu ЙB uS]k^-_zh 47 "x0QJPh/Y!v=ޭuK#S*4H!R#lts "2H:䌋3y{cYkr̶yFᭂDComA3A(ս"1~ ǫl=f9d]*0Oj}wTjxaaZ8tI]1k),2\B{>+%̙RЕ&W6IwrOJj1Mn ijƞ_/R7GO$7F^?O2\bit/?qx#Ƞ'~'A8 V*^w in?ko+{绿1QM1xfN׻ɋ`A9 /n@QU6EMDf!‣Z_̤j$|Ϣi#cLM71*c6YgB=ߗHKjesH$v/`v d ()QP Ct@a^0E 7w{[;z .4AHq%/yq=neޢcG>ev=cUympq},Ɵ{[ꋭEr.$4=QK¶!EK_'?Q.~S:XƾTbD[7Œٙqj-} Hg6SKȞ-ұ\,[S=mvqO>Ʋa;<(9F [Zͨ: u~MC ?Bg)vHq nSE&EV5`f*g(ECﶈ93'+Fą6YBVnѬE4j>HZiHG>++'3M. xq0ҁsᓡhU0*E x3Ėb5f[9[[1RBSqf䅣QVWd5"REsfbZ/#D9-gM=oA6^ .4x(x ȁ\č-փUP9 c sIPA5Z~ r Ns Y,҉ hU)+f,_ܮ$mgqP?!9̶U@kѺn_I"loB%d׻ _~G8~<1/|a}M7DFkG⟀\W_}U}^0W@~ڣMoAWx×eێ=QMhUk\yz>꫟7\7t#CtW˻^_݋_bn30> [ck{B۸|S곟?g^+QOz=w1M"Ǐ:H{ih[`޶ԩ+{s+0h^6g{x6Oh$O;vb50*/E:ԈqEUm Ԧ.iPlkA#]8g\ؤi436(3&kԑq!o7i8MS!#+Lk-7Ps ǠhC3k f*oI ]jȆ5!; ܤW[61W٫Hw"cF>Lb$\;hKHw(0lms10ˆ0vQ]]fF5YjBv9:-E&"mRtk&5FE:p(Qlˢ2DɈ֝ȧac2C]O8iFhxɸwX.Q-0gV2Ŭd{@jQiŧ E#02ȂWæKC'<-4(S1OFr#3gЗݳ/*VpBU6^ozQ9Bd1R M.Pwt[3rؤܯ'SޥEǞg9}}>ֻNye_/xC=tW}{Ӟv+_J?wu}7~#ǣl_gΜnf~Ww|" w| _K3dKSj~Oja@H_ٟuh7ֿ<{/z)Ċc&[oV?|zXLb¢~W>x~zPs=y{aCww?c}zlkU)OyWUdKA`Xa>P?ίʯZ9{|嫵nq 4 TuI?/Dz#=_DNE/<~G\oŭ|-Y\LpKM &1C;)FB4Zj,PhR fd.s -J&Sj_({:XQ1b}tpַypc5[N 1zjD5*UQ[9"Zc;iƨf9-E.Sr.сtmG@e[<7F*rF[";֛l7H~qVbuFcQC9p6Q$H3cIE<FTۊsI_6sɓ Tn#!a8'~y2Ijv2INb|LtGweЙb<;e[IqA,3i-6m%&NKf60Etku#DXpѦ90,A<*5%thYJL +H*#B8iY= V0Zd<3Jp՛nѤ@b[P7 浚g:٧19(ca@dI 4*JNp  La<[%% #%ҳiaQ8#coD̷ݥD"1nY/=:㦺گu/_E4ji"$퉞oEMA#pIQEя$Ěd׆&ێ{;ZgDcrp"W~A-m{0J )Fz=,ce5 u2Gej%\ xZH,SA>sw ht ]e O%  ^N D4rt.[Y5I3hӘz]%D/7]G%eS Pk"'L)nlg!*{L(|-?Svx OWT[w7o0]u0.:5 '4y4cG-p`Y41ł6s:n0eP*\#{͖l>9*--eVCn0= ކF;6~ꖰlKgu150J4u4@W&9K 4(yz TL~+'- }1ҡXH' JU BPpn WN3]#ҙ) |d"ky7Pc3us,C޻ "qH&B+h6=bE yY C:pqOy[ވs,U-|0rg\4pƅq=Ao_%}iVMU kܚf.cO-%|k۝ `| /*ꖈHYP)$f[!,=ɚ J`cQ~՜d~!Bֈk qGWX4*TDzq/u8T%Wea*-2B|x7Z5>4ײGN wt89J ."]Xc&-]xXM=# %z(YOw>}=y3g[o}W,Zdم cexڬ\;" $>ڔvwww)?mY5ȇAGw|L+nǯik洍AO!hP=n|Rw]T5\s-?oR7ru w.+V"Y`mYF(f* X>r%KMAv D{$$Hޯ EŃ%8_jCoo ! ųރhq'~t[Z]1P^\t,,ڍG- c!Iv2%a lB;l DWLZ4Nj|WwCDa](r|lWN~X R,j#'/I_Po` GNczy0S4@)d`?JJ/ CKS-'OENO5{D :+{(f6ώİޱQNchuN])e7ĶRL`w{X[y&t L-yrԯFqKlZ& /x̗נD!:}qШ/ h.D4'n_kG0tl7kB'8Vl!ӞVNW]@sw~g&BI6IС;;O pi[@ҳ6)قrk 3t"t@ [L@.`ځI^QD+ZRJ`1;]d^9k*: _:YE/~1zkWkYT:`$"ЬtnXtlO6jy\4n'1 ͏,6p`U`.bk4s:j脫n0l\QNOUP x#-j:ҶÍپX_[\=ǔ -40N47i?Ap%,B<$;A`#E,Rb/~+NV [(9@2J:˃"2!X4 M@T hjן9QN\ڊM٪,@xKJ8S1W;M,XL=qcqtzXG \i[& M"{>RY;'{0Rš+'(2U(~->{o^u35i{OfAd&GYKlbJbBe|9fH' ܲ \"h1~CH騣4"?;;͕'0f8 FWRw)L7zͦ'rN4q4R ;;g2]bSvvv6~kɞI&p~%Zrho!r+YrꆛX8nqrjFY2~,Lxl/8`-{`F+ϟ0FBd"Ty4V@`' b.]{{aX!XbjH1d^IC0 Γi_{#Խ'5G͕3띺^J8=>T1 s\14*eQ27\ɱE'É0 C;N·jd[uOG tmԚ%pXu%r$ݢh9=\AmCrD#7Q-@^,wvnZs12GI+Mņ4d% r.&$RR>SgfI>gߤA&C :Q(h?feqط㥱$aHS-{eUY-o(ӊīާ75a`l#zq؂&!M׬oUd▐$%GևP#F~%~@9tw^V"$6Y,, Q ONŠj)IQǥ1- mL@IT;&#ad gBSE {yy|د{VgWl.Gnzt4n%]̷JͥJC|5O$O%ǥ}?x25q]G.w^JF.t}hw%ogGA dJdPJ6ձ G$z?z "UkO[Kt(, ˫)p9dVlax[q=oʂw7t6E b9Je 3ɈI|g0-H<1c̞ #T-8^ jƳ0QWy--CV܅#RVʬin:}Kz^hhg5J. FI=(q.AvbWO<ع ZBEʲds}pmGti]&pZ,75xb@\pP$:K5oLxdl܅\sb<uUc?9&Q=5d #* 'uHe ۮUli5( 甆X+,_QҪlcRY ]D gh͐,/֚|h}e,j]e`ypYa^'Æm' `B!ޠռhPa*CtE3oa'mOhϱh2(1>(G̰լKfɜiΘv7syrqFً&U_pkŃƾF73][ B)6*R_Eqo A;!Qb6Fk( R-0Ҩm6J[n +Gb+A#*b|4x>5^fs XFhwu'̬ڴǃ XW}9h\'h5wK˻u`ѩN1S#SS$`ۚ;ޕVʨHf Y~{y1Ⲿq_8r+X/ꛮVUW!thsѥIs/ڕ+`*h5$:v@"],; ,f-ԻI@SwYU\6^h~ڌ{Dv lhMQum]/fpj5p$}l>33ݰD:Y7lEHLKz{iWsy'ŁF\'#'IyPUʹ1wUQ6 䍊9] HQs˟_d8HcQVTMtf]d^IJnTBvW]6V19R>C 6rgv7$tTi ;qxzcWp>h,lTi]=ٺuRPc%[FVl{`) 8.pխ% Sm{@u@= Kڊ<* kRf|vDe_Ζ@9 g% a6jqx&[wD3vb jD* շ6%qK g5 ˞9n+gp!5HO_1zLB$K&nX i:U(+WWJv$@B(9T db%e'P^ лX^ЍFc[.%XK Zm =6q%ᨓ5= OJwF}hT@H6+}8r!dR_8(CY8֦A0}#g 3d -$"Z *.K=p8ڭhepǘ||FNrY! ljk15WP!;EpgkWbءMb AфjF*- 5\ZS"@SI(H(]SK6!tѦ]K&é觍MTVxr3ɳ&T?>a9h?n@ Kz"lrعǦhMv&WfrϖeˊrbXZ9XS䥜'5\bpm+ۂH=oYܛݒ<rf$9ӭHڵ?MTC2N/Jtd0tNQZ`q6V=FS->H?MB Zs]\-m3.) Ӏ\܄f cmK0G; Qvxcvԫ7eXTnR/7@EPIƧϩ&Vh6[>< W#yz(U K,*EQYPS9^5}.ms7, QVuf I$PŦ>yCV؁ᡯY_q&knuRgDzۧ2e٫ 9_zyjԱ 1xei.~h=y``# <ꅐU_u!3bwqU}j,yoՓw*SpP!àR}*.¤Gг \[i-Ok:SWb5a3EuqeRHގSg*ʻ-!> 9Iv/@ h*PNV i Ze .:šUⴌPڅ+3ˈy#Bڦ(eYwx Ce58'Ru ^Ǻ019.ˑa ,iR'ZܚO 4;plD}4 |)UR0x%qdzGK6y5hr|͑Mvڑsy\U`"P: 0{y-T1 #j>=ɵ H۳b$:%`D(;߮k%Y-)H**Hv~ m,C.'(AkYupb@mr#aW f,6ޠaݦ`ҥUKz1'cq~->1'=Rʅq*H'Y :6.~vWrWIN:Cl@"8~;!Dl7З5J:YŽx}D@|2,P`w6 %Xpzlj=W2qOb |޲r:V|6=zɬWv# /P(|cm#;HAUJoo#lÉt@*To1<kLuTU4m6QxT=Jysm9u*@sU0+\JCz>f>gQ;5v *1 nDX"("F; ]]fONw>kTzDzKw^~jU2\$y`""t(09>2hi<\tm vC"t:PRA'ʽ]6D*7cuW.$sR#Ȓ$uM1N XGmݢ::f7# W] =#$S%=C'Ƹz4D9 k7^q[1l:24vc Rci &"U퟈p-ONg%1qUaR"^ K,e+s懓:/SKa}Ci{ŒjPR@1 J?bg0u\.yi; wو3lh^y٪9[Y}t _[;|+/8??c**0šT'Z=1zWH}+rJt%SٍYb Bzn (u뾾~ٝ+~i>U3aJ%T`1EL%[<ů:-8%li0 tH&B%iXX#1H*D١^O1u~AĚW[shxqH$l.Ef:韷cermj`Y&O÷r9^9C5 =0 M,j0s4DO~YQB.؈lbqM#@9L*ҒWw.PDJKMddM 76WKgeoRb帆5KJ%Ūyv# QX5js-.!9d0ZI`̚t @ ՛dU!s$ʼj}Gf؈;*b7mԳ+!hKXr,68XE!}ѦeOf\t5 5[Qqz' ]4cE_~YH&-;]4|wasmF]?n%0td|\Y-ԛ^cAD eT#*<5.퐆 eiCG0K]VAj%3󄩈Yc 2 |"jj^G}flKU[a,bk͚*JαmwS5Kxcԑ,# KB~ׯWaGne(|-'$ОD9= <սL긁LnD4ιqE>3YEٖ.]|Q-4 U~uL(F+!xSV}2c)* Fin:B&,j@KZ05D %+g/3###.: } of1]*"NlBxVuȞ5LbIf!/Dz\>0k1<;t@`ƒy9pW `YD +s/NF)pY@CۮK`鶙8Oa_KD>N#J-!:z)>\l!+_Hrkd6:3E[@,jJtC1DQuQb}Z_4#v fWww{@O^eKa-v@(fb;3YLyeQO:vI0B6R =+YŎK[Η EgmоQ&3䁞CU!s@PJj[ب~PAjO޵h9QE1wL:>bx_dKNsG,_- lCi9Gf2=*;\1C8F} Oyu&p+%.X`cU9xA5\o;jMz]ֻdg_z$tV+9I*Nowk; G{?1y鍋n+˲EQ.ȉI|#jPDiw!s '-;6<ȕq&@_BGkKZkԾʌϷl$3sep^)e}jvy&[ &`w 0 g:kKdUh!gIokHUPXH~ذݓAm[F]|}.%UzeMTlU[pקLͶi룥4b[rC$ـ*V(* ꍢl`!f_BOV~%7y+8N:j2[̊I'Ec&וZ9nAi0oׄV7n4︟Pgs4aޙW$ h&/1KvfCm惋wHZ/,*f8ʶ2uK ۑQQP4I8NY{IP8PϓXϘU wʀ&ٙ:#iqy-|D;r72Q3č0_[YYL>8TSB~N{w˶fCT,%,d_c)=lUP+v vK"j+<ЛhtqY$P)H<:9~`lE:\c>vEe09JDYvIUNu!8=:[mds=*ܦ9d4[ ^a~o6vEC[?drZ}sEk:-1!D{pߘy011u@|W}b XT$+ Q}jC:B')M=P 4&xDjƌc|9U_6q6>CP 2yl:DKx l%vc!ҡ"FDSTK*IT=lN`+!BX07 613DWyt%(Dv|VL 2]CG őa`S{㢰_Q|~NbadMMޠ,y>!71ss<^TэNХ[UM%dFYR>&%Q:0 n_11ww0۶%,0yxrb{-epS [6P_9]FCski5,JRv%l7A,Oz32v~o={8 Ans2gĜC7>Y"ǫ}_9sY_P[Q2Ovft\\:j%T}h5}{4z *,G"RؖQMFIUn8* }2Lb]!8=32TU넼G2.SB@;CeDr:|sy+i$"< Mk&ʚݵfWu-ݿ?j qnkQP7hz0Zԥp)2c$т4\N-{$O48ڕ\ȱ E 9Qh8,PW/Kr0a>lH[hǠkJ+`Te/COF^.0N0Jܜ2HaL@56V;%ITm0B}[{ja(~tu1YXc6&CH~ lT\:򭪕?)U?>>29%01&<2=P穰"zPdI-Cd#Ԯ):Cm@;AWp-Z|n1Ud:׷7ZίgNH>>H 4-X\e2$Dcd$~%2W XƸ*GskwH$#4\9ٸ7:uYzScoS-"ǹގ-˖ZduZaOf-ˍr%${yVlvWA0҆%˗;XNI2gCbtyE6N6R0EzH gi/JF6զ%ڼ0\"g:vxrzthH̾b8K9]HVD1/VAHrdPb(l-w,JpZ+.sWiJ~YŸsOmnC)Z~x ͐x qyR&qœbPO#"xlVsذrdM$IHbgWM!^;p%ۚ=d]*aQ/  n|{4N,ף. BׇN.O@խ&Yw~]  G},b@x~>542_X,c<"; ^YYV=%3a|Ɍ+Ij*ұH^k[ eG1tBnu{ɹ ~%"1<&Y\zj!>=ќk-xhȇY'% j`jDJg7ǒi !&\M~oCЏhVICTR4wu/c, VfX9<W)13`r?p8:DNk =A` N@x9z[!/Uҹ ~F)8jz=ѼwCaHU5 /Fb$FJ S4ķ̮]FG&㰢{c?}Aٲ]v%>RGlƯ'8/- fn mwXۏMZaMHoк] |^`J^+{& jU›.6ʲO[vXkFpS2KijB6AUxIYiC_TL-hVr6W#YReŒcdJm8i+ÞK36"]|#hYO8vJ'/Xn[3%QwfV&պb6ϊdl ՄjR f ^u]7ɸMgiW 0Sh+p]CB^<~T_sMFJ6-z7DD:\ T 4TA8gۦ_}vyvOuoڹC}كjhv_C"IQ+dȻٟè@޲yOnd6ɼ |4x4}fLC v_Z'?Pm5`_7u.[!,1(igqD4X9bCCf]8NqHc#*~}}.wJ jlZc(+D\9BEM]ۘeSp&5,C})m1b jCZ~Qa(ђs@2!M_" i{цcF5d(l8;t&EwSlbñܑ-"ٹ_e҆c鋃e݇R]&'ؗղ_r9x IJzDf4;;YyAbuv;kL^dՔax G`@C.jN2n:4$ &w8mCAX^9/Atp4,1-@kI,Q.(; | Uޞ>ݖB>7M_Vvqm}tZum?Pc@xSֳ5k~+-*tH{Z/u \ YlUշߌwPq$uV-i#Hߖtٛ3A fmc<9[ő:9K+tt5Qv!+osVW[d!ӄ{ ɂMU΀bl Dښ~y4m䑚\ppT#d_IFVȻ)Ҿ܈8:MojC %Kp=UP$ y*6٬ `MƁuXp1RKsm b~SH)bi[k-eO8X ;+̧wtEO־mI:+udX"rarqenv%#/58f$pZ3MW[MvqrC+c)\̊l T xӜh%gN_R.psg&SK$sŁ;ecz29Ȩ./XWHa3dP$L3#Z(ˀnz]|D_q>^/b*kM6?|Mҏ"nm9ȟM]{âxl,>Hʏ?`jXNZxN &1밈p_(sF!5%@YC%ì&#:S"2\r5êKfw)7N& 9]2Np|^EX)oܒ꫐Ҝi9 [$\ 6S[BL52[rm?9(ɿ ׳? s~k|Lx"|m̢ףZE{sO" -)78xһA+H.4HoLC Fc8_ph8j ?+nѐ+{&BQ-_l-X\2\.VЛNpf$]V {.|1PʰRqJ57펎96JiҜdeZ"3'Ps`Akj w]չ'lS&}f!T` YPYӂvGODk6.fB( X2Mm0?²+wb>4v0SRQ1<񲷈;H7.XPɹTn W.\SpZ1i1[䷤^z#^QAx=[1a@HA NI2ɐ<,Rd2NiQ\ItocG*MpO5C2h?Jׂ_/j^u 6]aM%KDh>VX6t}ybᦰ0Khȡ=Eǣ gc +sIj-0EtSn'vNX$Ks_ m}j?{J[+Qa"}%|u)T s~ 4;_og.*D(<;@(ǏEws]Qnq9J=@U08Y܎zQ!iUP %}GщbvP^Z\eHUMѤŵI9Nm/zܽ>&,ɽnw- g8>#AqaU/9XJ6-8pjK)3`Z@\!*n{A#IQ'deu^+d}Ī*O=.ML]kɹa _y3|nǼߏXԣm ^71E^[yزe6S1rx|}}MDY,>SAYiʡKGҴ4 ھ~@崠Ig0O ZɎ9W ,$Y.CzfhqAdɳJYjY25uIM3u4M3?Bsy|}}"yУMt5V I6Q>Zn 0h.-^y]Ơ/38zj(qpZqZbSLC8ftGuб2 <κ` v/ddZѶMٸ+2n9 g. êX(M|Tӑ^bxG(mR0u,Oؚ· #L?B[<Կ 6X'$lױ#A>g%m(N`2Pݻ#6{y$(m Yw1qk3jsPjVLפ$mx W`|@\)i*{ٍ^t۩ra)p*7Bn!v@)<[Hy!Bήq+eZ2XTЋ1٤*v9[m/"d(Jl0p bq-;V@Ǥ;:?v?}}ӒHZ͜~Ƿ}$$;ŶO6hfvg21y^1_jz;K@m)}/t9+g:":oy1n_*-;j٦ d|Nǖ]akNNJ;%Y[Yob#͒"d2~!8h_yl՛\8OlM'/q!.m]䫌F:bMrKOQČdkW@- 2Evp=6!KZ]eph4h&Ԝ#(%.;p_Yb8t&*o*qG=jxRt\0vh9X~@/M. a}9ucUz|* :lV=6(=k"`/. (C3Lc36tn}ebvyI(2 &ʆ2lO;>SB,_1!<5~^4QϏiڙlkNȩkȔenyP-& 0=> 0<?|ER37 o 32۩M iiY/~{~K m$:gY[&&\{Mrvjv]mMK8y=+ "Nq:f|6f#LnPuAqej8ͪ42:x )e,Xǐ VZX"=X4;TP 5Bɜwg("FFOcY4%3ŊPo0'cGq G,+WirI.lσKOk(9ʰ.9_Ua) v 7eg;;,ǔaKq]%3MA`{v7r՗/pѾvܡUѲN6M@ 6xznvV~F[ڋ&Fle^TӮ]N霂.( vU.F1f27]Ї_VU돗]D⃠d4=JoEyvzbNiDct $sholkHrVc!8+4ůjmBZk䭸TŒ'z߬)NvRF#%LeX _W](~g's~4𿷀p6Y=h &ʍ^^dZ=t:#4gId$ x%+0fi;JLk~ y{*%vA9Mn?-9y̪dշ0F?+hhChv"9@ ,b>kv)蜵US,8GAdMsMlel%):+-&7K|E "| 4h%Ps,!*.יRy97LM:H+3YxN- !_~u\]&y't0)P:?(Tqt7 HLΔ]6Ԫ}+<#'2}ݙ8MY +xUA|mdDwʉi$AV5g1qt܆_~|mY4Ym#J2 -d38YvҔqڲִvM0*52YŀC-v#?l Y VWogGZM3ɉK/`98 \K8BȈ(8/7DVz_+UKM*%T>7,x& $s 0٣? p  ΂缸7V\a[w`M2E򥘆0Eܽ:SglcǁڸcO}pnҕMa/Lٰi&x+$m<(54rɓob GY\,d\#?~|G1ib;e{_^笙֕|wl >1o٬[n[gv[3o;|Й[e8e$r13k߼G3M57v(gr%k?i=3\/C)sXbGお尘%2'WRQ s|TC1/u>Pu.+*۵ 9r*?m1X=9=:iMic1Z ^m[(X*g+'PgtA1,]>EW~<IҌA+Aȵt&/ "ֶc\XWhL}Ѕp-37 R'f M[P7ZwF#ٳ٦_lLDZAί"$0gp~R|{^#$xwr6Vt7{"OFkJqVCG|3xyq9vqD4Wupǒd5CS}dG%9J'a|3SIa>,?*#%K {y-?kwhJ pټ2R"8EΊ<^zn.?3>|Lukc%=G<;|􁏳6pY9l|KZٚ(ҒDGm zFCpܟ3Yr}v9k 8CT1|S>bzX!I!YI w@yOgwxf-Ce49s((('{u(8u6E8I,f Sv2iY;Lg9,y>Ms?+7?|mgSh:[rtY3@^Pjh'8Ŝ E&qrxMlpIX#F4|T\T0cѷ,,5co k+),C x r}+z.#SnD \Nm0 ry,0*V^V,{L{#Z;%i\C]Cm܈lG`l+A+rN\YBaϚv[rX\ Yk0D"wK""sX U[8Z00iY=:;X>Ϻ1%d1eQ"p[4/^'XdŒtq6)*caWeniLYzFV!ۚr;)_s HZF0rWJq1X'0cN%şe<9T7'c|ߐ9BߛQ|{m&=Sy'- l7_tYErpX dzg?ڎ 2cizM`I#gU< 1_xd.3dоA!6ЬjΈHJpwpHb^\$K\Gf7uvXO༿(J)l.@y9 .{X\~79"a?'ba~"уۜ %bύ o{N/K TJ4_#hA/>#|"ܜcZ*؜2luYŹ[~SBx>: 1-v("ޭӭ/Tw/Cx /*؋̧aNxivIYT1aM8!k$3hXy,6I| EN p̖b~9ڨkS|Sa嚣Zݔ^2ayGˮgQ,|>/vaa~kq)[SVFz F ;l-]{p3> P/ȡ ?%@wjouׁi7}x42/ފ]ysrZ=NoP %~UDh'03B4 8-rZ|Hr"c N@p*agJ}r竟$k"p"?olg-=bVF98$l:,Z+W67]ή%yuP6YhġWkO CԪ8ц uS.2 95nي|Zs3[7J "] LdBY@ N pP~$^k%'bZ]'v`«l9`wX0ib0&*4QSϥ~Cϟ .s/o{Ca}M+(riCu# `LJ0Y%|D)%ӹkg^!jX`tJ{ <j=0|熶5g,̢E1$! ǕaXPG73Ԝ2'V ZuѸbJjD G $v>h3+K\zr\*lX,e=qdb[]1;Jinof,t%EZdRLEٺ8@k+KXϏ[*ԡj+ؠ"yB[_Ys.6|a3iUeZКי!#J;8&@P?οf gQ^!@X\xM6?cpq|O3XS$EvZ Tz"7jҖ=RʆgxD]!<ȥ1{^]l.lkDSpiz%Ӑo*̯|]vJ|^莌0Rq`/y?G܌`]bβ7JȜwu\_4YN҆qimF5µ+J ˑ[(>nhtJ@> +( wh4Qe>z[XMqB7 X{hsјNm\Hi`_U/Y<|d (&PlU0-J3IιC5t#xlˏdgx$eӖjl)da|)Pf%߼aEtCRd笠 -I( YM& QQwKV^'))1-a(暔,Hl 1U It>{7N뭉/\A$v=NaVh9vC)@'VwtmǿѮ<ΙDРD߃MѶ9D@p= V (.L'\.78aDB[0?}6]/@'<sůDOf?a>bDA=BnqҬ~4Qhf{]!ig+fl}|2N!OGjfq)g"/~ޮ)xރn}Zh؏#Pdja*m'1.ѻ3ĹQ#^1V0(+6mGgV5mbɈ)ѹܼ%Fzm@Oqy#?f:  `vo]&v%x~뉹pxq{ys(})MAi8 m?+hUUm d.V *]ꟶLvuWDiFF!j%9 qLڞM! 4' emr᛾EƓC6Qv,+^c<1c |5-]ם? vs 4l&9]AP4۪grz㽄ࢴ0$puAܶG6ω Fn9YOLkvv({oMBbGM=9ּ-lO9RpT՜/z%]eaaN5Mk{2fJ+rǸl~l' gf'_0BL|.iNa}r[~K9&_6K &=?/p!ҏD&_i޻eϬ&=T10 p; wshF$\CU5'6fOaƟ - …77齵\(nXVLSo 9+9ӻlm7.Fc\ :ff;Ҁ;8k; $mr0L#mj^/ 􋅙(vn 5%|fy.FpHUۍV%6}@q*IgNҳ8/_v>%l!%R ѲV[1X֓0턡A dX57k?^>km}m)~SP:YbSzFv'cPQ[lu)IJ-xsD3NbD][UUGpC8f^ؠ8 dF.up,.ܰ_+Fb6oVv9J ,y<ȡ0@&;`U(&n=z1o\w||xtn,D4)Vc~$p׌NC(~d› +IOzqp$T^L I|\Ug xZ~0cfK;<>V*BqA1Dux>Zܣ I~jRtfM5ܧˬ.q-TᜨZ T/S%2JUuS,L$B1 3.N wcr^bI~+ᩋүj } p̗:C~I%{ I&iT tL$X# ~yN%PJرE2-wn ,T4˔$9LL^E^.uxa8C\dգsjTGOIf]a~!nB)3is3F@zPs(G*c b8 ^AhFC+bN>!;l3 w0+`Z[wLt6:&3{wYMNOL%[sQ*n=bHzGؼ4~)%1R48҂]̤ZC!/didV2ٶi8ʎm$_s``ÎVV_< *n@8X+kxqE&9=6QJTۑ7%xiDI#( b-m9) 49:R{Hk2l?RP}:W}nIg|7L ".Jm+kL7w.HfQ0Ƀs$_\j"A1:7a9WtiK W%i\uNA99ܗHՁBKM4ifN@% )}^al[~B"\D̓p#e#Qs ^omFh%)_.؋f;"jSlf@eOwa] 4asP K Fo\W[kgPFOz\/hjQtva6SBBؼ3_A`D&AL13f*ޫE k:)>TdifE(CǁW;,C*8/߄̆QDusfi|tѹΌ/Xkȷ+7̡9k,3(;<#>&\䜅,!'+Ö3d&nLiM5{f\jŬr/Obo.ޘYO'7ֿbIS?CdXs&=clT* +i ZnbK0I q# $=g9^j.x/l)VAiB4}`E3`yAɳ:iK:GNp'kFµΔ󌕥nѭ*7 lL,6q ^۬K>`_r KWΌfho7#%a.txq7%ATMqM$̃=YAjΰ{|a#kUQ$`lb;psju;o dVs\P;]Uսy 5Zx&B]2^KPiAJEoqMCKb r'oI_w'?ٚxU'R[ ׁMD" = ٦bL3v F\ __ ?p}~Va6)QmD>=5dr)и( 5[eu0권9J r~EŐƴ(Z\8H2$(`6*{D͢~JB&ٿGWA Ξ,-QCbp|Eu5 ܾOeF娑\ΦF`!ͻՒ)kXxIdبVI .g򖴿@5 &NOJewg%j'zZ]CA# 7&F~a_;a:cd=_D E;`o0Bސeˠh=B\3&&sq6"w$y|5T( 1>S5#U &jg3XPfi\A3 Ud+R[mWq\WM&{l=w|Ej8P{T(&o]͓~pv6f4;B{ a^e3T= G>C\[9Iu2n!*W#oZJmqmݢx\`E(2Ut@NX.=ۊU R%PH s T|n00՞{ RfvS&b1EB8P: LR+|=iK̆Ν\ CxEQ_&@ U!v;<7"􃩬䤟E]k[vѿ9gw|P2bh.;(T[DB5ɫY5EQ+Eꕃ2gFEte ذ"L.:$: [|~lR*pU5KLbWz: 6BSI9'ƩPJ6䱊b#RbZ( tN|pF3bJ$TӌG8epցpH:[S9IxF)cq) ds:^Vv2;$$+g/gɹ$o3nk n6QH3XsrB#/.iX:ޘ.9-^0nE]C\1qsJEجsu= <6:ˤ|u:]o0MZ}DS1!\٘BCѵ'JOyWl8@ea./R4@Ԕ3} 'ئ ה!]rP5acVX88#(ohF K-x(xr[?gB]׶9lSc?Vd8۹2 k1ݺqح*-$ 5Xlݸ{NnJC!7#tו̓w{G{)vd=zQ}p"x1\3|%e~ þcƔ5QﯜIOv>IϷ:[s-n0-D\^qBa e.% ܧ)~OYڊ} \tS K*߰L1#6б"><}Xf.*sj -2_ c{@RiWb(qֿ# ~cZ7[y?kbt ak/^m22^1&9f6M lجX l  !z.2Ӌ \^p Z5lbv LCszOXIE}`Z3~} r3TEJ՘W_Hbb]y)?shГu.zІXQ 8ҭquG@EM8]rk)X U/Xb2ݱY=2f.Ԝ7knG6w.,YވIP:V! qBo<=Kߑ=,biL<ON=XnOaDB\8!έxg3ؓ|3W'U#S pK۸>s+0n5lC07dձW EaMbЕ ZvAcyNbX#'xNyst]ȹhqtIg wMnqF|qȳB]Y)cZ됁3}TMYdmhtwyLAI5ȷ:#% RM`^5 XS  CT6<'\ӣDhbv Ӵ(.QhN C-ȁ6wp2a w6:~MfsHlZ؛]SD#QrB+]w~5-MWF'cb'iMYVwz1s;`ldZBvXq>kg;|0&o̔㗇}`Rm/.H` _V:L&h-@M8:uhN:2_ 18ym>郭&sE5#֙;~b9@ UPT ~+ +ᨌef B 8FƓc4<.z/esW \˷]b#2OVgLdߝUEicӠ{[-"(9F[snhv%3"f'8d9XҬ#Ȓo+ / y,>?|:8Tt"*#(y 0$r9ϑ =JnieAe#bNM>gbxH<g(`x-v&!αrP~a8^ e2NF! ƃ}LJNq~.hHY,Y{gwn*_)$-gS&%]H50M*)3REENfkg.qЊ*a0xȟ$Hyzwu6K"x ]( ]R&OP]m(LTaf|O`'u)x:xAxc)[m0_Ԏa[-GpIQ$i 6LH"kDKh;D:,[I/Gg  PUb hs:Td̩o 6gԷz&ƀi򈓌MrK*Ѧ!ȺCrrH؝5W4CUߌdh%(Dng(4iv[ɋQ.m68VbkKEXԕDcլA8xPnbtcB_ri5jP$>ZE)rxĦ / ŏϏ`%*v^_?}"ns=7;_=ڥ0v:mv]3oq.{ fUc#bROApp\AY&S |/~M ˬ]LZ u*n:5Z(QVVSr ]bbp)}6a<̓fKC EX? o` b4avA@sO)yN9-fԷ;şrJ1eOG_aZh%H1vgλ rxX(w"_G1g e œkSaP<@YM$pf%##t030"ԏJ\\rJKқ=tXѕn9sC&1ٺݼCEG-$ĥIyD߿gy ( BBa;OQVsQqQrqx'}=kv "/ٍvL@ulEx:nOу6?lɯs[F#^sMB/3+bGļ)дFٱ|I cXg5 K, q2\2 -kڭiDE )%PzTJS߸p.\H&2^U%՚w۹ܙi=*3#ps38Y::j* p}fnx&إGU&<`u̼6 5; LS57k%'܎ٺ}MtJCa E):ιnIޞ|IgՒ1I{:gNc=>D0S?GAbˢ!6p NpSBvC49ѻE&<S._HDMb.D  RЄ#:߉Ac ݢ9YwQc޶lVE셡"$i|$O^sSשlnD&l}W`Ew7.h \ 1 @"U~+n@n1Tx4bdB)nͩʭjJCW5L̬εO9xW'%+Wʉ֬֔z" vQ0Bij}+5s 8XдNazO a5 fEX(,~+>,4~rv!đ _:h76sWV'.YMyGDPng-m`юjsb2`^S‰znxlISC^l_vi!'db׈|p붨@,*\9ݳ^jm{ @R p*CzfA$%49;7-Aoe Ds>.N"rЯgp^ZضG_\8dWzE{@CI"r9"cb;0]ֱl-="CSlRU3~eǸ 2j "+0Q8 tNr  whRMZ*SR%w?*>ĩjɺ#~5jD3oϬ1'rw}ϫ˞'ryѶr(װ{Q <_}^>|Ż:wgH2@ ]ɌCy5gGuɝ}BF57GLm-$OvZUPe2ykH-v1*YBN(jq$U!8X+{<5:D7BQ]꡶5tW~S@J- ۡ\ M.1keSR.ix3A|%1W idup/"Y^0X -6{9\#ٲIYY jC|_:n7?0mx˪ NMlstnmtkz nH'LyJw&fy3pGlSS:Xᬆ!vHr.;Ko0v!?c4] ~Ǽ BAEۃr+SO4yJX3 xU p~ yʳ> !EP& }.t-YŜG5f~sjJ/ڴXN^Ov6]߇)bȦ5mHz6]RGY]$!^ y%gkULbk;V;*v,݂|{dU*~w{_ fkD WCJB/2Jm8O-Rt`g6ܪLFh+a8P2ىLQ)JIq*{ߜBc7j5>^I ,%Ỉ߽/͘': 6Ck*>g7QC+혔%Z8x޿2&Yr-QSFDi=fw-MLWKpu{n_PmɟMڲ݌@q19F%>1\4չDR쎲LmC|F =3 Z4 @D$hF0[5V0 /ϱ'(i\bUr(ثr 8"<*l1oJkLmZ6Z*ZtAEhv[1GYa1n{UT->VޯOyƩn(4Uewvom*11JdTW*'{UW) +I&%J֞B!i'4&rYWRRQ ހWŞe ]N"RaQycNXhZs%AME-Y9b@{3<ⵧ};ɬcgÇdd&q( 2b&,ɡeҰ1S,~YL.c8ϛ-1ybVWf;ygw+!25aZl?3*ka3/F$5S%K|}OFbb&pDe g80MAR"ΆCH7EǠq3HM~eoHVs2V :V8ٞA?O/Ì0=h8ٽ6SM]l[w13/A=J(ytONU$=c[V WBXKU#94븉uwɨi71ϡ2qf+|&C lG ,GG2釸LIvksܿY*s10qF';yRviFtVY%&;qn|U]1! 5#k7OteQ ÆU^G_ q@$bw>z\Fj<I뵷o~ذuFF+Ձwùf¨uCVlA8BEE~Jђxġ(5ødU%yxG#Ġ/ϡT(h] UH# /Tbq(`<#s1DYQ JP  UBn!7i{Gɦ^ӓ}\eukX0P/xEWRLcFC$)( o]0Lo_HT/rُ}~h>}pD*nLڝ8NepZCAsQ_RƃOh> bfΗ[Is4eBdPMƏ}:QodӒa+xXf 34b L43(BRjO|\xW@nLJtII9çgjJٷUt 8s?>ǻKL.iavPNf 1%.LgBT6ЦM"VBD2&'Z&[fG4cYa$}fTYPzvH`V]喝 m9gݜA"86K}[ 4;~A$.6)e9zGU>߫+U=('Ԁt(H7eDa?9ĉ#R `4Mk 7`fB 1bM.k7 3)( p~JTC'ar: n[/GѨ'Qrs TkV#R,,!/zU"DrnЛXmş5!E'ָ+4v/k:3${H}O.)&ԈUXV^B,.Z`!.P3º?=!Ԏm9>4qaJ0_)OND7TRG tBs%uF }LHF9hl}ȊQUhaB?7~θhDM:Ê=pcdY ;:R= yxK&,.- HlN=^l77Bq5.1 ]G4!!%{hER Q(Lȏ m>P?_V+w|j>m㎊X?,u22LN)i>Ͼv۟پX?>>0[U_Nje:vq L[?%Gzx&RPtx>C4 ~؁L2ж|@IJ J&-ۿմlR9t)7b?>^{{;WX||@" U u1b v_!. g۳%,8e`&%f}IOc--$R5AB⳦enF=a(U.m1}E}9uT8',í݅xyO["zPڼ꯶hjC٤j7v:^k&:"/vWAvA,ۣHZԟ)ݨh `1@+>Mnx>,IC }]AyA?Y3B(ԩy߳ʹ@L .z/4_G7[]eΌ %rSٺuNe1砺8DT<'!QІ(ԬO1?Rzc j3cWE3DO#u1Sz/o?*kO)%jyfQT@8 1Ь񀎣S]֧͝L%%3Mݶݝ{ZyT: ;)nc]U­~BnsrH"B0km9;SiN-ufM k÷s= ]>ՠ2y!m N2A̱ΝQC#["!{3z\!4(*9TPώC]TWwkMTx[vÔӐ%̟v5QvR^0*mOqALj;#qdSdFN]mC>};P3[= $B"Pv鲛PIĥ1e6'4$eQpOı8]2lkmp{R V_:"k&\ XME_ IHĭ1A$Q&ek<ʏHManiPVS8C '*yK;a+~NuEo4#:"`G 8XI\<")SIw#S3(h碎֫)uF\P`@M}"o)q8cIE1% M2Bp7ʋ, ] wbt%aND4&z{`ŧ-F CXqF 8,v]dk5*9}|ou8v(jVˍgApviȎhR]?$ky^y^oB!EҊ&va M1F (ϧi ! &Lrt/=w,gt}JAA2=19km~l8[Io>majf<6;l>tvSQ[nz^̜ɱ5WΧvK̢ \峽yLh;OĤ't;Ԓ%'H]ڏO[Рd "IJ1#@PŰBn]/8$ PHwB=cDŽʬb]-ai$^a9zV=^L|%,y,!I$? CfybJȣG4xaipռwzGvbS!>PPw[CvwvjdVn$;"wk7h//u⦞B!vy FQ,IW d\7|JJj>1эb 2p1=ث׉&7S1KӀ."sm2)Bcp˜:aJi4eCd|kD\P/9@E' 3h -*X!gT*bJ'=]on>?V綸}|#%8Lڶ.s |WVbSF`a8`|4v\+8Ҫ $Rc2\%'s\Q?NC""&7NՓ|F{R{dF۶qHQ"D94T~PѨK8֓ip'%q-iA&v̽?RX +S=zFPƺמMIFl̷j{uJ`%hgV'R3ϲv)ZeeT)ÆJ@Z}8Pc,4=Zj=ho ]nOi 3z3fīs7Nx6kd8sBLv膒WBs^B_σK4C!>B )ȐY/7| 7eoȲGaJR 3&0 jxocY.XiJSP< ĪP{53i/:eZv‚NxL<m? eAH&q)I\oOޑZ ^ m<\^TkAiԠGy6- ws9.XZǥ$ 4/®[*'8@;zer9 p3"G{3Yrg%CvֆLvnR E$r!qCG>pmEmJҫs_w|ꥡǞKGj"aBCVោ.Zs%~Ƅg_S`UN{#Su+}֜gQ4qI,K Gp+f6jzlJ;; A'Y0gEuSL7B a@*EhhH :])#1&/$:rCZC^.AF‡MW SWIGSk͏`{%fr3Qի# F9gj Yq'*{]6ZVc*Jhr)SGwAtādQۍe>s*ҵEX Iu ^./&=ou,nbX>8N٠Gm%9R v,nR8]B;L׏d=@{SU 4Zi&)Q4 TۿZĘ[; e4"OւIG&N :>7+N w'ΦZSHE,f3uU R5 Ɖ*F6DbZOeliely}ϱ0I/lG&Rh:ս+i+Ka{OBfڻ] %#U -6l0y/t\ډ%Xn.WY‰i,9d %pHuxF\Zr„-}\eUAؖ>af0;l43|{Y Hv+zx`*YkMFҨw-Jl4VI-)EI;yԄcaJ@ hUeoO5t,Zd/nߵK.E>#Qf@;B ݻ 2"Q:M|󫯆t,bBn{0?(LoEaf C1Ê(Wn"1?5yd8,}\0*w~m]Z0OVULc-,|w%)&m+P O^Ԁ~[wQAG2u ?b7:eV 4}h3JԴdۄWvZߊK<>xfE/mLxnk64ij5! e9R5η Ԝɕ^3Z#u4X䭉ym\.{CwA+V( fyaXL[yoCBƒBK|ǁR];9r9wawU @?xZuR1^&*5l iG[žZr1֦>HNҗN7qw(W0$r٤(I,~kQ2J$3cl"?ihJDݓ(Pߨ%sYn3ڴ-)$]6hO/hBkvbe`aܪhWGc$#wl]n{SPl4foy`LXT>ak{|so_~ZO^__|_>}{奇{Ă/i AwPQLIj.;93{(tK(vq\@k4rdPojm@G. {vcNdx{HE׆kl`M'>dk` 2lx5{$ڹj59V:8[0YSRf)BqMj0氄<Ђ+63}@:uO8:&0n;bzP@A6!vm=bǁ |Lc$VvXŬnjS)×7˨SɅ;ƘLޱ5s/L82c%HSBi~ig9ֲ[/1ߋ&zIT`DOS)%U]u wd@⊚~eCT0 98(k0GlWDΧa}+y-~n}Rd/exPUlۍaKOWV!6;U5V%q#/n񩌰 O pl62Eu,(yj0Y3TjMEVT~OPcu?nZQ Y="D UE"5 FrP㥬W'`gIk>p=+Dxg端#TɋeUr*, Oo9~/xzO߾~eAvc͐7Z͍}ʼ0YیjLw3; VP15 5@8/|=cWf&&LQd ѐ(6w1?('V;-%r2ߝ &%6BJ Y6:LQPS!$dnQv;=D|/B-1<%E)Cn'`eZ} 􂁧ـ:{ F]D]% ɥH)&f i8Q+lY&CC( e[nqP0(si(lTTu,E|hUbS‚tAFBW`v%+=)GlI)Yra71m0ayBT9Eh)L8N.JRnjActpdx5| OhCR&F]dnܕj0+\&'g(:)(&eM%$F=^L5* ./; æ{=>{}_p6"tߓ9;<#u߾oK.#޶Bԧ/L%%lxvJ,ju~4-3Ύ͙N)< ߄Tu"ʮeܟFj6NP5  uޝ)u/(.qWxh=>;ΑOψ'lxgDve72)*&6*p_XY:boҋu9<~&S " 1dXZv׫ k&Abz/Ř&nfMRr:$,0` ڠýV:lc];ul{kFl.MSNCHۮ.3Hb;wgMYʷ>ױh木uZk WUDYjIs ٣>>vQ>B\ϔ4`l2[͓8QCgn_@n[V^u"[֩ {"e[ؖ#?9ntCEg?H֒Ej:sVBudͲyCbEV&rak PæiNW ;TvEDcN\As,QՀƇ M/xXan,4LP=˽"lm@({'ELJoA4G-4XGYe}L/b!˔d8B}#AX>^mrhCFME3XEm[N9 뙾07˵8?a;^\oӨVy"rA\B|i<࢒/D'Ijԓ UF {O #U_ $$H~gA['?*nDyH= Ɓ0g^`*=Q VX-RQ weeSB ;,]ƦD崏Gr(0GJ!E\Oƍvj/q\"iPqh9H"^dy8Y^(09Adk5Y+n#B;+_x Tx;Vҡ˺|ܟ޿}}n5G%4lc"(}Efo wH:嚕i[43X"I?D{8N}y퓑 $)PWѧ~ ŒUKwh)Mz8I*E@hDK!O{ JBwEyX< nѕq0<5Q 94H N4$.96AM}O'{b4mk5wNh $Gݛ ;a%c3ɢ=#hDD Dѧ Pj1"x65:E0;Z %-ȜwȴuZӫ2Hչhzo,v{-P:(iksk50},JXwmfr2V 5})a^joeĿ߰(A´]3ˣ7l"H|` 'Fe. 0IY!Aǰ)m'PA4Ґ}SPAxt3mѥOx r'VTC䎠>F.tߝ_ -9#Z6$ ˎsWFL,lnQ)@@5yo nƍ%L?py*Xi߫D ߩ }Qg@a*?&J{=@on* -7;cdWrb$1\-Me,*ۦhsࠆ.d4^=MWr%>֝"gr*1%s<VKj;Yۜ2a(pH̗Zh^ 2>qJ7W>s#vg57Ӥ7ܗɅp #A?-s#]5!so̜TfVOGLO!؍QCMβCB󛜰/tˍ,6V4 1r=(2=_i(qb[xG6E !P)㱙8l:ӔyV,W<oCl038D{Ɔ+T"Ei{F(IvqniX؏:*~6SyEQ,ζw1 ;YnHf{$w䡧+yp]}C31].)U9:N fb>MU 'i%W}.b@ 8 yJ%Mahq1{|gنd!jjɁ䥅["jUv)߈+)ithwt1ۑ[s[ ]#ͰNp,Rچx#:3ړlV9ؑ^ Oe (2X\|:$J&bJß1&X1"oJ1 [0 Few..f͵REF3'6VU@`vT#6g%^9PhĶ&H9ت kWHQh{bRH {JVLG|#mjfëy*A__K低r>idֵ $'M˦|1kQIʿ5?̚+NJ5N)R[}> [xE,@9Mٮ~K(8;dūi)CC7(|DLp ln9;X WC׏;Tck7]d=0nQvŤ#IT280R+'J}C{[*u4]f{0Al^@ae&NbAo!>#{dy^:]/}'k.`oGEߐzYwTGtU/=..CoI%R*tǾ:TN]+|=CmQvL&t/̳=w;wv%`@T̡3Vʁ M/s&$ r 5B=`N< qկ/7@EF8H Qu]!3VRe1HɅ}ovqlVM.Yqҏ;z6hKa̕-S/>Ef\k>vW{é@?o>w9t8Z|h vD3=zUmv$MS<_*t‰ 0Goj c@Q[RPv@PkϚ6VEڨ&XCYnsPN~Z|XXQB߻˽Bd)|#P[z%rB@io=gHb3&NW6 W4s{eByk.b 玺U0yo3w xdIʏ(tm8F3?O}޺lr݌d}- Řd]nmV.M]WewvW Ha$~5ej7g3Bj$qZ0^]8fS:'Rc"*VI(BK@D!sٜi8đWxN{(du‰H/(TOL#3Wql9r2vxD]X(t83-ˏՒwFTy䐆t@DAډc{ *C OpqGTJC֕= jTmB`Eyf}:\XdoYM QvHŮ>J rVq58n\&Nz(5V.4"5քfehMsͱZWw WmKn$?Z'$V a(Q-]8S}Eg1mءT WjfVR|"f[Lh6+Zhhߔ^n7vn󧩨`!^O x8[4zlrddWdcHa^*Jhf<<ȋtt؋r3RS_}C6" >I_mưԕk2bάP# 9tgEj1><UǪ<qmƨ!ålIĨF@mk Q۵ZElcp|8:m|ciUdU;v{,1槵GQg }9v`]`ފS~ ߃5*rل>H>y1Uv{ЈZ/ n(!18Sos3a7;2m2vC`gtj=h':~ɼ-#73g {/QzTg0ĝ&q(Opn RTaeCngWᔽ#kbZtExk8H۟~hh0 IM$I?سSG涸哓Z¶7hy.ią=Q 9tGO% *ލ#Ki*6js [ C,$2Pk/0I8=Mxqy|Px%mt2xZPd)-yHOorh.J JvUUM;6\reK Ҧu-Žyc}IhA:`'޵I.UGSqhm{\k2{TϑacYm*%}4p=CWIt;4C42%(JSUZ:{?i`qv W2!-!cr+wX ]q;!0`8xv`ɇJ"~ k unJhS7(j$\ac+tuņT>ֆW9(Q !6NUsh|e?di8DS'c1Th)c 0+JQea.R >,+Q] kvg"S;P{qgQ>!G6ZF+r 'F9Taqa(јIB!wg&E s*_(Cpkhۏkd5EVW(NxlRY kZ+&xҏ ouWÌzKc)#dIJ@SBk2j*d#a3(e-ТMD\m{ưrWq0D~>0qCd >DJH4DY7ExahŲrS,%rJ`aՑLIIpHrnYfVO!Jj'fK(+F`{@v_n?O ﴝ-AI l xsO8.NҌ8(fMeX]Er!6+7 fˇBUP}j Ɂ/dI"ushȡh|S'Qž[5YS!/^SHD[*VkAuřN$,(Lsap^NEmC-3MŻkJoHhm]u+txB\Ws]`+!vG97 Р=tC.l D"RN;xfT*lH4nfaϣ_~˗/ߟ<_; 6\6[_; l%ue{/.qWKKH\Oz=$`βU=CU~zne_?}z|l?v{ӗ=M_~_'}ӗϯn]Οf~þzdoüW cLKh(\kPͶ<qִej[d R[F jqs_hY.:e_/cT7WP k 1/N1쑱oW 3{dDdubh:~ũY`yR:I=YŠJ:B&k-Ğ X8!끩OeکU]H*ͪkת72XŊѭdcE`MM][K0C <ۇT4|b"Au5E&Y %ٚ8TԾZ.v2 t4Ch v`+2>PgvJzʛXvEC=,}ُS@iaY&>t$0NƧ+0BnMz#!Bn.S۟>RͿU/?Gz?u|k߷iɀ yD6rx|vnK//{\$6]/ԺLOm6o~}yyN>oo{e2y맲Xr ˭j}/SzQoW駟nޚVw\^S\ ?ZzPA4$j;d,#YjߖQkJϔ"2! n\/bRh cc|E.qFT,,C,@|Hc `= "PApZ" Oi-I]o^T&BIqEdl_QcEAN1}TUU'AqZF\@wמeTUca˅ JxZ(vڡS.͒R9qi?s$d-KIrR@޻LHIܕ[ ʏ'lvBܦ>)(9@ZuC*u$l =QN#ҠQ]#}c3=GcJ|X ;So]B 4^'ۨD4`41T.] .,q6{.breJn5wwD0̞M7W-洅+@Jנ87G#(_,F~ފjn-]x|1ן<_~>)_|9mt^{O;_Oy:׶]1r^^=߾[;R73o|{YGMP}8$=d'r??}J[iɍ8o31+X.gq3i.ڢ-wl81q']FNX9LL\~aGBL V`mC֮k;caS/_@FvDRV__+dc$ 9r3NJm" &W&w^Nvu߇T- % %ROr`?XuJOÙX sH$Y%;ڂ8@hA)WtcbW.<#WBܹSZ{Vrܹ ,!k?U˵ʒ'c',1nbMHP-]YX6ath4/rj*P+(TA"uà+5#W߳ )ShB.UHENgB5~ȋNԃ};JR{0{q=ٽ IL Z;R}-2cdzek-@v+BR r qK17eӨԻwSNi:0(O>^i[aOs'у"̋Ɂ%i~VT0| X-ZJS`k`ٟ_s6҆{*ّP5ग़ A>Hl= EW-h}gBKgPϧ,4yN5 ©l em_~y|nç}:_-=%%O[:ڷ?mv8.|,A$k}>kW!??.|ۣ+V\gu?/_{iߦ|}{n'>˜py=;{.e^|lK|ڦT>ǟ/閟k^~Vߔ97˷ݔP2[Y˲I 7[z]b PV9bP.k@ /QBF dV=SDYsiSM<5TZv$-F9W* 2ӎֵ;be<"$+Fܼ<>b?ɨզl[]˟` X? FL2'i2 _pLυ.9ʞ"7ט sEjE K;L,8]At4'#MFb5nVlRa%5^#NGEc' NK-cص3e1=E\BVvo.\ec-No\<|\v4_~ym?w+ z^jϭT1ܖ{\^精X>[>^?9zyQ_|_K77ufj%7&Waf! m?}Ld]0蘑YN`qB~lP5zp=$D~(;{ݲf&&ژP 9ze9%,Jx !)6ΪFuP`P,1@ ^Q|;7N:20X[lѡ fUѩ##d-,`"<.`RcG~H5~)!Ej|w\ h=TkH;꼝ziek-R $KfR/HSc &8 V*|+2!lmǸiyJ=ڊuvRW uG(qэ{=ߐ>y\o*yokB if$Q#ǃ3/j+c6]Fd$z=B:)~ٽ~,}-pdVhhÓEز*l̞Eon?{;P;Qr<4P(/i͚Ĉ6۬1? LQ|巿ݦ5vk8ϟ?t?ոavq+ ^S춷9APSIچ l-#r~0Vbߣp$VbAݎ_υRauI#-*Q #(N>>>P CZP`ȟۢcޗCpJo]wߝx'/okX) 8I@-1M(0%ٖ@\-<& >^1!궉g?v|I>rne2 gssAP*~]u5)xG|g 3N~^;/V̹-GA9g,c&2.VWlp"! \ O>h١$pdܨxrZj/:v+O3x"Po%|H'ނ)*1KRhǁ_TWy*JMrQ!"hTƖ`~ SZ*f+:?L٤q6MndlXYvX<ɼkؓCs@N6yji Γo=XLvT1R"MƩ|Dк߾}o43N8`QH~J~- ext)M(*}jT ")r ?>#O@16nt]%`r'4Hp~)q :<4oRT*Rr/WkuR SfsUBTamozSmx j`:c`t, ?StJN/4b1RU`p'ou9-hO{CfswbE[ zBE2xO[#K, |hF&"&Lܕ(H=+t-' ZB׵o=<t8cZ>t3}#X_JpܱfxXW)5ߴ'1Yey>5E_$/;tƽjFmj֭,P!@ EmtF[`^We# [b\`q3cn<~&5PҭQ9@l>$2jq9TJ!%)Vq֋/z#N9탹/uܟ麘 mV70w[\?l}n_x<e:%zK\74wVȓz34]$ VE| {Yh9 q@%$Ws.3kTWfi94 CYbFA> RP(1%3 7A (Fc)ݹy1TPUN: ʮ6M7Һ_'IO2Q%H. L>DGmlDɶ gOP%!4 !eѠTh[\Eb}=c:*3W Nwic67AOU`FTGӉ3[Y [0ac"(>M{?;VFu+`PAȝt~kHX6*Xu5^gViN׺-wXɝ֟DPaӿtKUs}ɤZq{]C΃%Hې b#S3@ K4Xݙ-K̈uyngh6 uH=CB3Ju``6&]u;b"|/طnTe޼p_[EErݗDC`4 4__ߞ߇^\E Y,2g( C] qM z@hG €Uy6-맅^,>/oWKo#2F_WsxƏOy ^SaԽq<;t.~:fMeY6κ o>fKZ8Yph[,KUFj {v[ʡȑP$MJI呖iA6r.FyEgoR30Vd5KQs ST߯8q*Y$9 @Mcn8)G@yf0{8ҨLFbHР0uEq ?X97* hC] ^GNMiN_lQLbC+-BH$Ǭ$|^+ͲAԢPs1Qr/co- G7ۊ#ZZDžۿdLgzЋL[_9>D1~t4V}_UKgpjiD!sUe)!GǡketTOgy<>5 X}57Jg\E-zFoRo|t|Zoҥ7w?|}aFSoUOŇ1~׫?7 =O`+ΔWKs n- HX-p(5P!Ql-U!l:$G9Џ*|VfV-wn嘏Q?j:T"^xd9UKhJLA(ak* 6M?ܶN)4@F8鰉Ьm7:GH IYi0j`x3!۴DLaI L o8؛.^^Η5(l&!QiחUz"R\1VMz:fѪko$tw:FP1W)biwE=nhLLA^Tk0|n4w̸S%N/_oO?}>=oּӷ.(7Oחk-ON^߆:}w|ݾO.Hν |滻RϷ%O{z{~?_O?{/_Q"=}mV1_b~OJw;-Ӯtn_t7ߤ{xܿ\v?ͧӧo?=mwOkѫUxuam"Zۤa sw>#""weo8-)DDj$ݬ$bv2%b^y% Ҳ (y:ۖ hL7)0=+7:@,MVjV5&YIA(Wd i"r?W1a @Z&ΡR3x4DRI X@ 7)] iLՉl'1SV˙"xleiNeUoFw42b24`( %\ =*HT0 l qQLEMz+}%\AahbIocj4α\vR\Cg}"9O%O$?l5N0T%@G@$g[\\L6]K[(jlõeр]fe~kk z{ZKoi,>+eLVȽGX[%;j fв\IIߩoۦ3 t) Jؒ'1y5eg ^ywxz>==>\}Zeyvw{[>[;߾OCz믾vwov9?bݟ pwzvֿb>yN>_s=??}^^>?~kKyz:~_i>߮BO^_=WtɧC~_O׻.k_?O{xz>>\K=?7O_wTMc3SKш(S:e_oZh8& ;DfV$ -xL+nnfsM'y`_/);YS! #jJVf)y(aUBeڇR 弉;_v0vMu*LE*B]q.}?m ;(c@ It>5%W2!U\ *NdOΘX)XMƱNTm&Oqt8_8'QaY0i =De n'7'Rsx GC T6TcyRx-%9L%|7a!cV1&9"n-9<5{WL)b\e(ooE0BW=/{XmJ+ɗss$]՞dVS99q_C9?W5n)ƕ҂u]tftv(^bؿNY.<:t;߮;D(6S^z~!L^HWϯ$zx{SjöMDP~Cb _}V^X_~;ZSz^NNfӻtRWU<>y͸,lui(0ӯ67A>mE]45k 7=p֦6D]V_"- b@T{i7EFۉ.ƚXڗNͩ,6d"΄|IA<{~_.W;"MTQk2Bw`Ό#F(jrC+i%tGJLaƏ  r Ŕ\;jjIz@7GH@6u2,M㕍HCFxn>9 껪Nmɗl $,zf[W#  n|"kV~O::+@~j3`H(a_40mtݍQ .- z15Vڏ dXͼ]0Õ?A{R-REh"]z>MYmA]x(y)p7KM̓-Rb_'MPsf,e6&w8߇t_~-Xk`moyMhfCb2nTSJsOJQ XѮgyx\DsZ-uXeSgà lk"75X:9 .]^-b3/_/I+ۍç˯Ff\nMI;|~9^mպnp8 ӷ_h{y*d-7ziKOcG?~:6n6Z^d%~㮽v{<=z+j}e? yÞz5|ltuTBIl [0hDMF2ao a>F҄~Zvn)}C.~Y-s.T)KhC\ awI"LЅ/< lGZ j Z Z)/fKR($(D~9Dc+L-Mu +򳤼*J]0#e2IFGD*MnGp %ύp*kCYL*@7.olcO2M|}ok[kHI*~?{5t3Û&eWB*+ġ_orp!eՍP٥RޯK+gVXW4 ޯÉK\ؔjvNM4S)AK8D1rR5rĆcFC˾k\LU@[orԇSwj2@e q;h jW)`xU&"i"5ԧ'Ⱥk!B.XᥠwReʺU̮Wc֟s)/ޖƹ:cK_j|WدuDR`[eLf'ȷVrIQ^QmcXLH=zU4?d\K1i7GVhg|yyMst·_no>/^R6孿IwחKK0| NF29B^K #iaMZ?QQqr2Z/M,7$-^=V$؍I# JΈc[bZMF9WG"J`"[47x#G6Lt4XDA(c1L4vv[-o[p2q%LZ;{ %, 0kjN} et"݇m8/Q<@5QKY&,؏mj%R[ج0flF%2N/WݞͿ*H( wepm# \,cy5'Pl{ױa'{e*r<(v?7_8ZXcT,xHf2Wk#BIj+*.LaW LӧϷaBz=ZU*q|oO/y DM (=^cim!"`|zhFMnOD߬zq1R󌈛~(agZU%*PzܘsQu"7 ׀nhD9cF G\>4W=c|8OgW}#rLuӃZW=3bElؖS0sm͜GZ,絋c䋤i͂Nc 6O2,Xsx`-SzsTS*YR\9kLa-nfj:sBIPBa^j5jlaZQG=_4NW1䑮rυٍut"Pg~[ …bӦ/Ky/Jl)זfĦH(i'7J04&2OeVJP~yn)?_~xyTccE(&?Kr{=_^. ;.8r"j`x\@2u_6=94meq~&9ګy@QU,HUidCS(j3 #Z㶻qk=t9_^%mIT絝h%|{S9Ǻ~\/%쐶)aIn$AujKoo#98SvzJQ;ck6U@.W-Gڴu_LMy}WM&Ćd0?Y>B&t4TT:3ol]GV$ޱԬWkkfy BJ5Ѐ"JFZ/5ʲaD {?e./}{CFt'MΠ ŔWތ"9W >@'cKlhB(E]: eH!A\-;GDć˝d7K|͛&hN6JagV3QL Dǀ:沔$e6qӶ;uLA !̱A4(f1a9haaFSʅ qjfYl1JAQXㅳ͞$L\+f>th͕ 27K4ƃG˧)ΰՠA+5հs1+k.-4,kks7ruz{,j\m}#ΰRsSWPCxq]ljvL{:X#kM8ɕI҆a KIM^Ϸ$E쭂8[\k-uɜW]pژ,"'4YU\_X~]k2~2"!;xæEUܝkSYA~*xt*$ZKܕB$ym Իڼ'|4}>?)(ZhEgĝO0F`PZ-jzʼn݌x2$T#j HmKq['sA,A8Éj,nx"9}a-NLY(71Xlx5Hj |rX gi*; Q" p0ˀ&B9T o%>"ۏX 1CgHR|mv+)O!4eMvDP^%,E+edYoF[u$I ettBJ gG;1 ރiB"C\@ AuG|^M^t)Vٙk8 }W1N2&9Vg4DJzqQ~92MUtuq,vf39㭦2$t϶Pȍ;BV\ 64d41 v:8r_5 Ҏ{SV}Rm\asTʚ wnxċDTm=p~3K䤣H%\\,%/A{t%"I0^0]KZGB tqUd~<wX񼚠ֶb&ͫ ݅4'b eho/?!ړ.'- ޮH#R@Zΰ,4ه2ILHLz R\2Kaܱf%[0h7Z, v"lԮ8([pk5E-j?:d#mTsNa09-NTXF7;O'H 4nkD^mrtYAde Ź)G_RB(lKbN )I!j"G6>:/ʄj\"N:wQʀu'fր c = m?sp:J3$ _)v-WPF {01]/v,%qYtj>me*| fcv4A072XVaH+ZLG*eFj'Q)q>z3GiGKhmPj0<1+V{-FuUC n (,E"(&YR:.JbTE)EհK$Q:"7&.:3Îbw&K/=Q*ꍲ8,Z &$`l((wdJB4NLD9NZ ܐOJ!DnPN韝lLUO2pSQtѩQ"!66>3[.}/ex~40'pAqϡ*(% .2l5hmα^eֵ?S4W@\h93&'N  ![(12ː^7!Ko^Iߒ3DuL|eM@fS&4f7ϏVʅV}RHo@b:&IXrKsJS셱1`rRXd6Y;RTz,s0Gh2_푏 ^:&C(WÏS%g3,;ݝ\@>2D{x3m~֕HMJ3x;W>O@[QBO6JKEqހ% 6?Ŋd:Ju ƱY.Xee)MlTPtSef8ԕRj N(f+Voj#ĭ%kt* p菺]*En4zp/΍x` o,fvGݧ6;6*stB٩R;: Af$ h0x;bbe Z㶝 Jb'-( ?XkS6zZr¥(&)Oֲ;^;b<)tW `&LVM+ÁMU`Jd\/.>o*-na  ιē(7҉|ɡrmY2ʅnتp14~a9vr:,h%Tw>j ;qscsάuۙ?c6l^l2WdflZDEҼW;j6yexV'[W' 9DsYoM ݈lFu "kqC qD1A8tИ`Jq[剙:b6B?qoZn0gp. ޔ>]oY-nj n*ۑTI~_X?00\1J|mkd»N ~ Q6 *@gd\Q9Nų~%c%I0+V6Ծd+os+;FMJs,چ !ل(6V/}ÀtC nhlb %Q[@fGIYNq-y%oVwCۤ%,xwGvXۅKa|җuMȁRŢȍ}}y~=?ZC;E[^#G·cdY+)\ FGl?ԔfN!\#!VWU$xB6r_=%z1bUAM8"kyR.)6!˲e=#4 Nl4CW.4Xѱcx~Pd0gVj? I)6V.6槆N5=̴Mlymmt wdq` )mZ<;{4$Kb1Dj %<$0 UVzRMK0> c'`7A&3>;(!%7DDjd)63, >/ O`=9n[zQ0 ZK ε,8cc ϱGУ.HOdt8|r,/;PAA+0`A,l%,#a`AZm2f,a@]͟>'Qs(-Hn =vb)-Nghm-Fd}oh} QYΜCr8^ fcVlBb1`V_TpnQqh~wΌ9;=EFp#s@Ǯ?k6:U뗗*c 1'O]C +GL`'"buUUO˨ZlJ^Pshz[uFrr|uB)~Dv`n Vw8ZsFUwH*xݵ)KjS r oΜdS,%B aup3U0]K..Aa1߁ǐУ[[435>&GyDZ}dlvN/iH)bd,ǯ ΂EVWOS4#.ܥpaCj19b &dp*ͼ<͗wf+X%Ԕ/dn݌; 0y`yPy}$V&U#x6-Lhv>[{Er%z}5w(xD``'j4fɡ*a  T#dcYD W&\xVsɈqmb4"42.d(/EC'mS?yLz!dTb!G|8jd.H:tmz&յ.Jnj. YBnõjD"I5@S-[S\N} Ab0X=k'ruvsE;6B8QkԘX?x[ܡޡs>%У eʿ{r7/&m/} ӄ0Pcg/J3JQ4/3.Xo2(v$T$¢2 u9h~63kKjmf+" ,  Rvm =A隕h${#plK&Y;89PPP,z=w^ M^Aqk0ήeJӍ3 :KY$=E͛?zV.e&ˈ-'Iiϣ4 SN Jv4ސ0'O>i/op }ަj7ˢp0zP<4Q 5>E,a"%\IU3, ]DF`BZ g%T0Jv~x:BjD)M4yFVAZ,0& q&y 1fh^nCM%IP)6IAJQfEc=׍[|jzGI+P+Bـ~4_`T2Ǽ99n_ih_&aq0sFGR[߄^]EjpcMSdx uwyOŃ[3JCP6mى:S-pM ={TaRe{c~R㺣:_Ҿ҉<MWϦјzQo!dgSݮ+ D] 5"¼LͣV5{Ω-$SD hQJu|{P ٢CkøqubmR|L\Fl5A-\jkJU5X #F~7z!NK- 0. wBcUZ|h*_#)j5KXijq< BG':[,[4 X[ *O%$e=Tx74m,1R BP/abLZUe?l[L3m*jB*co`7 QmtVө4)M8FȹqrUV$(˰]AQ/a,m)j"J6Y&JR*Ϳ:S2"T- %.BJJO(E1K/P2\.W o__^/04yFs &ϯ-ߋ_X5rA`g= e?~[Mb_kWƭIPXQALeU&Xv}|R^0pF4Mi NlQ- his ǒ[LPj/&esy 45YVC1j/&9 \X|f,"k)W#$ob׍ $ùǰE M ΧCTE{ش@DO]E)ܫ[Xzq_ݤGm_>1rT067`sSRvT}~凯͊><73EtL^hicB›8 ~* f > -dTo5/$(%fSa_-;Hr=ػ>N?5/c^T25){&Gi[ zZ=L 5զx{'Z6΀5sZvћ"$byPY(s9pzP:p` "3-d.%OKQ/.NfE&tmfMUDPnoT_3$qZ7k^G|m8/A|Da6+ARzWJKe ,j޼D3 -ʔ>VosdcpƋLFu3uozoo/a]ǝQ|>RLnr~f* &Cf=f}zuäz8az|/ pSJxOKԵt~8gY-kUd6+?&S'I۩RWa#;#317=YFCOXiyuS8{vH]fbrw8k{ʬP !h1 *بxooHm)JO*ox 8jjj/UV^a3>'B{h*^C #'|'d4-&6K˱C%Qc2d |f$^bx+$OT0?YJM| ٩V<GhW3ˡtIQ):e(Z\D[;˗W9dtY۴zT1˔jSH]pk*B%Y֘e1 ߤ D=CV`NgkB:n~ˍ.S8x;55Lx.N, #fBgk@,I[*"ڎԥ62|;0mhvKA!"C4^$zXv7Bp>߮gMxyQ-y-T譥snaY zѲ%yy8 B9<Ў,pnLqo5h $Ĭz.lӞsNsĚ:wpxֺ|2 RcL\oL+HbEG##ifW-pHx*~ڻ%sc4aXe YrQ)*7#eն=. Q;.QM ʈ>%I`@\+&7sevلAGfWq";&-k'lVc5FK/CܯlY-G~8 Lc{N&dNqH&SdzOر h cT/9zXEo7'( 7@\ce\HɈ夔q]a0dnjdpQcKUk 4)UWX81a%,3YYԈiv7Dh#Z JěʆEɡQNmu5ZQwCK>_֙ѰT+^v6< Mi0LYϸm+₶FbFPzJs0+~9]HcvIj/h+Cr!p-{:cªYz ɒ`KFzW]Gw^2ʺhږʈ$h^椱Ou%#sK%-G<)a9YneluPT)].~]o%6AHB-~Nۊ%at..70J0r@4<{g A:I ~+Ruu-ӯfYBؼE!0?~E$wNbR| Pxٺz?5VwQd˲ _Ba5*H8XF\^u"!&(ݮ+,Bbes0dj>hۤS:\9Ą(<'EoכI@bƍX mbglQ諾М{}rC0tߍ$3G`}#EI&\!0@_o_^ޞ_/׵YTU3aC!k, .hٲʠZ>z6ruliGк&N&e5))|T@:r鳤SO#ISu;KP&;Yg=[op@C\;CČsq $ }D־`Ki-=(E]>|I fO9+}%"0//VXUhOh3{t5PqF'eP(P4"#{jY#ِ>^c1+6HG@Lz֥Ef/M(^%J䁗w9]9Y(l}ooׇȷhLtT`.1Z1Es HOsI5sUG7Se tf?n[|aPLUO?{vtwڋP|LaNrdDro~JNxb5;<8ՏyVn٩mxC.aCbg4Yj7*\W@@qOrEyXp "oMe&cANSg֛"`LrphX2V0T<15aFvo\ijiskw#d&5bјɔgr*&x@} DzjlW?S4x!O72hPvG5۸9fI m9OU-,É鐔+y= ZMV.15= 4 .Pt(׈-,abhRGduxppN \$czz*[D5e66]zw'4x8_Qp.K3a/B0ym2i3iif=zogrG%HEۄˋR2rb>瘠#=;vL j,v,<*]ߒ~b+">hmSȟ 5زͻ)68BF`ȳ[]'|T㕵;mrb?1^t޺' Ҕw 4^KR漾%])vV42{}Hf9Ck[>Jv2|Dڶ&&REyHPv0S-GyE.7eb?t>=>>#2&.8/ɲdfFmvl$ɘt!`Jh>r&.p*3Lq 9մKJwFds?0 @Nk[EAx_7o!m8ʛnZKA(>Nz%)rTB}cgE] <tHh%̛Z?pZL|"d-2Z󆡟aH*#ٸ1Q!gJv /մW +xY$lo?n/N DZl㾘]0+Ep_Z(-%$'<zPVQkHEe?$AW69Gy`s. Ϯlڷ>AV/T-of PilтX(kAM# >M2v|EwنY[W(,@p!*BBB`"L+6pJ'U3'M&`+9Suțᘋ>9V֠)ir}v/c y!o` jg(ULb5fN:3uj8f3E8#v*|qJ@kk!,}+J&BKUNENflq!P1=NY3y#ez&׋Q2|4ĕ~K^bC{<*x̯㎡3>[s@6$ C\zjzH -bDi<l$`/i!v9 -9r'%Λ6!A1]㴅|pMPMUmc2@h%OQL/&vl4jGdP"z/X|wnak7^ǀāhn R<4(<m!EPAc TtjmEq^n69mCk-( $6v"ōgsg,S`$R5EIM3D>X8~*>C \-1!Y労C x0ٌ=ڴFh粔9[GYP5gx,"\UafYD$2T>C';/-QcZ9d|ʱ1=մwu`[>/  Lalcߙ&>C>%wn/ Đ!g3>`G+f Өsf$VzZ9hQY{?lG9F0$}Kx0^ݹ}ɢ;;{ >՚}9]N#FBtzVY{`3ËaU[8 8& f|J>`| UPUW1j-̃hƃG (eB&tix<Bc*qlm)ms6#nL'o{/;8% -nrР4cg}vV&PX뫁VKD*d%x95J744O:y)F>ZY*TUzݢ?kkzjiI5#AQuꇰer-6rOQ55MXlH8;nxqv2r/5!Ntj]XWOאӵ?E1h5ϳr V$T>hwiz"+apN?5|H G T`Cjp$qR+@!\)wb+U8*,$=?Fx+3_Vc!rw:ܝN716fh(P$+nn'˼iJe߃hM1)) նj7)3[4ҩ)8Gy6E!9jCgY0 S?=xp4X 3J( 1w%K8yD'휂J 8 CJN̰UQ5ӣmTIǸKoRAүcqTZRUi6mm0X#ZıD-VPfHXv 3yM1~FcP#jpENbH-P妠&t w3f*G`Q_и郦sh'a7-)iK.&3Je20mDP=61Ɣ[IqWUB=DaF1!2htSE7¤;ڄI-&o\rZlOfԟhum6*Aǰp?~>VytJvĎ]?WàI;q Ifb A3}z׺ u[Ĥq_ JJgy0XjopF*܂.HyB #]ϮG?DBiu]6Д1áU'.𻻻A`.TY9g*.л,JҋHkr}$Ⓜ4?\*Dܵ85ZUn\ڙ<; qm3hR\x[ʤY^iDA8)B=ZAU&^΅3qGKG9))??g=P@jr9 П0׆0yts& iQ o`t VΕ:wg.jFIJmf '9Ä jKh"̚(nLG*$f'ѹCC5OGejrD]C=O)qCC;p ^ڜ>'d1FL\IP囮4]`-,i9 {7'?{ȟQ\f ]ҧV 2 w&'וָ*m8a*^C{}/-:+b(llStˑx(I~C|Z3Ȉzoawؗ\W 0R3Zݜ'/Y#Ukc֚ 9"ӏ6{Vv q<7I U?UψbvnE7T<=ވ.`AHi?_l^Zv!9tޅm7Lu2n^_ѐ˘]hzxĸO3 x,G8,^Bؕ% = +%OjlBbѕ."fg+7L͇Y/t$ MsG__ɻ wzX٩~mZPlRtzG֍ pkF>tP -ѓk3 Vˣae$i;˚1m&kS$FmZCtBl6 NQ0 OV#۲og;;wov$׳T>6,v4-3bϟwO_5)81')k#g_eFx eg)X|tb6 _.F{؞ WDOk_oFWUqȈP18bUgj~ĠWoo"b8\LxU\{(鍮y3Ƀx\t!#(Nļ 4'/-4-cV/ǎ.Å='Z/ɥ*C!Vk`*vx Ie[ڲ<'u5@Ŋȫe.J\kSKHLg2j[(fLڍcb`7hufM^o*SfRLl5R*(]!REaXH9t; c4V+dsE~Dn mWUs}/@1 4-!(~@ $$@2 GcڈR@@mٔ6*C'UXC$Ix a Z9禺1w߹Zs=a6 z |#Z J<8ݐW8tB LW=fS)M)8k=G': O3HmB}7t쏩;c*wn ٍcBbMI ݝ끮u=V׏5϶lN˰^O<3xU@F,"l=ի$ܧh_:Pi䨳"J0Oe!q˼`}F>`QEBۑPe\T+"c9I Mx.(v݅Bm< ObQ!zP-<1Wk oJ>}xdĘ.ܒtN-dJzn:b8uqx>ԓ<m1 Xi&h ܅>m #>*UЇ ΍lt6,YH18s<\Ӱ$dψ;J=%%] _gKYc@_>*. Y0@2f=a*Bҁ"ox߸PH\%1Kx89ik#D:"Ϟ,Q#飁J/=r)?*0 zѴ%vHP_n͵KFFө>5m(jNfic+FO_4.W7WI'JKSeIKi I4F̀6#jIXm1]U.*4&6rTzLs(ъȒV5/=<'QZR#\5  IYdMIlAP4f|i31mehiRz+4rv3୰k:7̼Agoƨ < j}Do%w5&l}>Bhl~NzqzBR\Y׺ްQA40t46^ &`ur ih6k1aGJxB.$(j hYpH&CH/6;~y: 2jjlU'HJy3Ί^@5&؀MClubɪ.M&_|_~Yg}+_ۿO}S<7O_>گZf|[/_}xu:g?ȑ#_W?~g핯_=r'ޛn(~M7݈xE}r˿y{ O7gN?y+߾롇w2 b[xNo} cx^WM&Bxsy =/r}Os7~]~Ͽz}ꃜx?<p/{g_o_}5WW\q?S̩SknƷOw7ģGMo2_e_~EJFV _Mm*tn0s 1!–^Y -\ct2m9쥙R# #I$FP %Zr Zt։@A"V҇0ke4Pd -pOZ G(f=B6,WX E.Ź`jc0HZ1Fす\#yq3i>k[Z1\\xN}/~J2O,W]Ϩ;tYg#'>;q]=j_}C-Og>L} _Wq?S2W7Сuk~-oyK}9/E`eA}n+K'~K_\/ 7piQ}v Po]qwIOz׿38>9~W^җKT3ϬOkW':tхwEa*WGwwv/.V}GWk^󚷽m7sGE/s)д^4%p Ah@x NRВ%YUt֑<{z+N<E#*2cUA(wʢ\xӮ%98֙98` 'qJMuNcd9YZ<5e;*+po>;yh9gc.Dn\:\1$GBQe2eaCYF ]bIObFƭ_ D1MEYF/zZYp,kеjy4S7Dl[)e-Va@+bH)@ht}H2؄* Tz&/SP1!%SSG3 bjܜ5L:eA̖vZ벩 Ԧhz D7rI=K4 E=E?Kpq]i>|"y74cjp >vOSDؙyԍ2S z¸?bOߪV}j!} 7PgWʯ|+v[Ozkt_tыC+^F?ᇟ=^x#GO?[nu_R詻s믿ϯ>QX}z ?|5]~v[Cտ+u0r-~Q_`s!Mϰ7מǿK?=j𲗽;묳.Z[|#q 7oz̗߼/~K^|~G~kvWmPZN]u++H⯣?35|W_sͧ?zcէϤ^׿%WQ6KA`|4Yz[IXE|K]d DYՋL< ڌ!X6h9Z\ 8k!x\J҃cIdfyE\d2O}xdˇ,q3DulE4WOVdN5{^( `Q/C ,XF>2Nk*^c˴ q9E&yR@U2n'F?\ S3븇!@i1_+Rs]g=G duraf!Al1"2guɖ%F A !FiRLחؙEGQ8a΃JU^Kh0BqVXXFVrįh`bb"FH! ʨſA`1GqRDRrxFRgFW/t~4_h1aro6[4fIPIsID6ƙzCws\<[BX]xt0`´x~t>1X."3>J?X2x+&|+$s=[]|w7xc-JYе_/{nֺjY8z]tхǎ_Z±4yxOzы.YgYJYOvww F-MYk墤\p5~CYQ MhV뮻EI46L-um _ZZӛnhPcwygo|FN;´aֽ1:uNw2f^cRFA墝7&q O˕ [I[q "2bŸ{oq6xuzwwHDoIt^hYD )tXD3$sbu y8DFԋa:ipj $HNb;/Ĵabt!wŘE]b/J!=َe`簻R ik|ow:o)<L0P&ds45MR +s+yU14 +FL-z&ɳՍ)7S*iJ3rOj] ҩ779FuK)Vp&[ 1_~qtp^?4[Y[&K)5<9;<)2E/ĒВn㟂L``.%A?cR*,T.%߉Y%W0M!4e$)UT)8N+XqaDA5#;%?>Sc5P@`M[usZ| KqkYPS:̿G53[5P[nȑ# =z7'2)m >ӪE9IVU˛6u ƗXK Џ y]WRG~.v:س"#Fӂ e> LK2X34))5ɖTG2V ' *Fne$k`Z ?c%>;GL1cT6gC4-0+̓z ̦@@x~q%fִη;R\ŀxqu,\xWP+1'YגR%J-cS igZ0bT(56ɓ+ Ͱ~׻]EV+㼛x 0a 71ijl#go.[6Q$ ]WcUhf} v@-͙3l}wxp[KuV r׫B%7q2Ȧ͆lG>3Q M4d}^ϭZ5{ r;:>qD0`?sGguX,aRWy-΢ؾ^c/L^*C3 '3n挣Оo wB"6dt0fQ4puxTJ֘U[|1ƟsSJVoW[o}n}0KA/䢋.ر}kʜyY?bPq 7V^r<??Yرc6'OnD[ӿp cVOCjp~ɟC y/|p⦅;||ғK_WU\xEFٯg}޾_Zм/>~x}ؘ?]+J\|ǙgYpȏ0<9y衇\>_2.>.12Y2[\2uNp8'%ag!JaD [%?[ ߒ.>NUl@8CՃoT2mmO5yb *-G5RZKC/zV&P5VGDFt--<"MѨGlc2"r' 잉rp+ފ9|F7Peup0!- Y\ch<ҭ I@28/2#/P*#H*JPPȬ:+wMPdތE_K9rYoFZΡ(G4NISRJP^69h) #&!$yLb̦ hqGk8t7,6+; 9i.rע5.D^˜Ԩ(2ҨVSv$OekUEF4A_킚I;" wKK{o}Yz#N-G^r]z 7Yg>ٽZZ}{5B߀& Styq7=G n Mv۫Oδl-d[ZY2L?v arX:uUfA)!9K93(j bi4PjI+&hu61,848WCXe0BF8MI &Z4g4NU8Ag7Ik+t(Vnw "x$QYG ^( ud)|58ac zWW0G]Pt}.xc"wH>?Ą.T.] bdQ}~kRĞhRuC2&dF{HR~`1>ЏyF.ћ tVXiPyْ?U7^FQA:eM18avtiEQn$]T xM60x;GIK#jI ڬߚ%'8UT@&)AQowþuiO6ʞxl4'&+ƷhK,\y׊}Pn핯|Sq=眧WO}/_|/՟~k_;}>w3'O+숼^wE]y2>N-M$xWj\?~Ͽ/WW?8.Sn2 փ.‹JْGW[D_̹ *%\*&Fh~A^3DAGF:-HM!l椅ٱ |Uf* nPf" @O6NBtH&~"#|\`=,^Tqhu+`TS*KX%!DMr(ٸ"SfȂN:\֙F1-(h[ |3}M;vEGBQ5ASb(PQIKIV !oŭa6 ibѡ?XqٻA¼+=d.DQtZ6͸XPU,t)5FDb;Uw +ݨf0|"e'\)HTghNGEamГJz\n G&) CXfʑ4YӛlcZ!ՈR'#Fڬkͩp3Ox xX~`~IM䷿iaϼ7yO ˠk#qPK`3:tBSʷK"g|b3D{ܤ .ad:=l.*_}F3{u}D1' PhċW\7G9QϿmûSMR㚐z#n|zvVACS]8̐ZUQNeМc`ԇٟC>XO}j-zw. -pz|'Dy+@MsFH,ﻖ.c=K,R0nn_h*BK?Lo`h9(Tku+#Keef,`0L1e֬.>VK(B C6kVCvxDX H67zm8 Ţq8xrodYËrY"V<;@Ɂḿ(E6iBI9P]$)ЄrڡY-W'JV0 Ҽw1S.IУV?!ifQɭ2th_M#;iڌr;¼t.e> sXQۣ>. T=.ұ7< ױq=0}CMDs Cz^gZKi-붔s 5JX[H"z /iޒ eK4!ۄMQ VO%OkRt()aX?YQE / 3:P&q?$.˔xGp^]L-1PC p6U>cT$#o{cSx#H%nc57(n=$wXqmCFGBV*3م4"@~Z7B҅ U >Hu7Ǎԋ&#"@'6)\mr~Юa&`zE ƻM!i&*cħTnzQcW?O3:O9uTc*C9©IE]tرt֙g^WӴW{Z3-$ShJ\30"vJ!'DHH[#!bm$kTPq^{u%Pĉ~Xȉ#>$ibc%c8;bYkQ5jWY-,]qr&L?bcIW8|~1O`tDtE] 9t/1$,tq=(8޶¶.37 jjkggL,lsL $+6`.WufGeTDgҳ }[^~6o),5[~l _Tη9Y(D]7RyTYK4/@pbpJ8)V'0"dd!PuyXa$bXѸ͈NW`2$j>1bc',":ђh1ԧ(ķDf)5uY-7qp /G ֗!{B pjskpX1VTpx>Y릈zySy ]dc2|fČ%Ƒ$1>s'*0iU'\ʆЮD jj6y.-װ~b1kDlH8X00P$`ZWfcJfEiط|~@ v">?lJuC[l ^Ee)6[Cliu"YXud;ԝT54H= |́QvD/]Gt\l"\:LO߰\N ,( ;.Xt'Fbٛ'd]^.ַZ eǪl'c#7P& _⌘ 5"T-sY_0yJO0NjUӛ:$eƯ(F9gi؋{?kp'ڈ4ŝ. 5;_&MӳM:Mŷu~VH- F^X{7  Jﱜ>)Pi& l`ϖ>=\s. 5HtAݑNۣ`v};=RRgE!dpI:H5N?%MmCXix%> ׿bY#hI~tOoI7rZ^<|8([I];sK  cZo#y]C8}&!&YbyC66F~גAȅ iEdc^`)HI ghA KD+/i4LYOۈ҈5^d;r"7>SodnHXd:W4oRZVl.&V5ZU~Fn 芕@Ԓ׳i3 E >ԒP/="g07}[S67g `ooĶ"ҫBg-9Sь<_*V MCM@`#,T8%ty9.sp4~T99zaR;`|3 9TwlQq|ءFHw ]n=swݼYɉI75՗1 [Titճ:o=9v#o8e-6K%!`;IXX6бem1gy<#6=Jo͂ۓZ&/h`}[\b2¢۽4RYJIN:eT)6nD׾r1gy=DG "C]x}@}"OY杲 mHԃK^j3US^i' g($;xmoPb0ԫfΡO4K,hudRk:wމ)%5b} V\#F! ~u'DQ2[a'>C׭ݕ{ok Fe'I UX9h*DToFu."HH^ZC"a]"fK̕zR٬uZm j Ş-WK%*DDҁ#l tEnݮO5_A{ /RlRLM`7(zVXsޖzkԷoMe)o9PhkN'8fkR@ JpUkJ(0Ɩ]%t-ЗH,93R"#'vm`R=ւzf:q+L2Hcy$LCW?9'E"qy2;3 3#5=աlA%P)EgYz ܹhzxI!;9DuTP(K9r .sGN;TߚQo;RԢ!j[?xn3r ա Dv0,MWZbwwxc| G,;Ì س%}ˆgGOHd9fЪrXv,~4)C洘(T:9r)F-I AtuR$YAf5Q*Rzn'bFQhWޟK1iIV#m*5 #(1>0(?oV4x̖}2&WjwgV/*CJŨ"h.5ܨ>M X L~Z%mȺmx]N)H!/[J:*^2Tm duh;7,kvz `%BڲWGO] 6IʁAĖAݥ$ZAN,1,dj@-IL4hagwkcAӰ{Bv33l[9+l%u|]"QYB[-va,&1o=fD^PAyO4L:%f%%[80+mfcmڋ>MKK}W -? 4t XE$[-dvV { Xw`JNجmV&FO2*jm ~aY\5Qd\zζҹ<%xB/8I ~VX\vh&e Y2TSةFzbd]Bf`FX87FriQPz063vdٛgqɇy?wr>Lj!޷ YhK$Guh9.=5]`p븩}& mR{2Uh$4]IRjȺR~V[jc TQi<78mk6v#g`WS6$N$&D4=~mdi"+..if6uz5Dr1D/(/ YU~"~6E<6A2weX U=T*X͡F2cl$06&KBH>CP#[Q lF (R#ѥR.UO Ilo_P"_ys6,`nzv PgF:m d'^cqOS @32~[J"\5tI sXW ͢_,řE$퐱@r.5n#2ĭܲB3R=m>IHՠ/~|V6/n 39J8XC<,[ۮh(AE3˓?5.#[Bha[* Ml(okxŪ D|wG}RNCL LO=TC+wqٲn@4%C fsn",e36 n1X4J߼jE dHAˈey^/ֱf&~aϒ22֛潹)EX~1:v4dAHXeDDIrv:ve2]q#١#*$82m4UJN^,O'qA=D[N6fjYja M}v ,ޛ0f5#e<QWVԸbtyV X+'.@ Eq21b7zZ੕0 lD%5snNHm+m ݣ68[xI6A UF_J`LT" C ]vN(d0{뒓 wj QN9:QA! mHw8pݪ#D{FWl1xv+@v( L myV%$כ+Qo300“\b7'ri^#zb43+D , T0aZH:O(1ՠnveDžH1 L;'p#DV+wwU7j`Oɏ:|PyG b?pi'3?P$$tyZ4= )~ߐzd]w,.e˭aEFX)2/(e&Y4%NJh 3\izYt b+o}.dd 0{h=Pե O-7EݧO)dkBcDb0&EHLa fE S`}~Q㝊AY 4 Y5$'oͰ͊Hѿ3䫋m.Z8JVS$IA#{y @QjC[L`J/b9E`5-S⸻>`H&~hu Tn o"LI>JY2ڸ$!<~CK*d^bpBZZ% ֘KWl,:h1f2 a{6VU$)i;um?b7n0^c=V=jw}FnL@#Ngrt4-۝䤃2NKߏd)$>|GA8PGV:r%%_`>' }J#64_$]BtE({"_s?8Zrr9-Hn],=h9`4HkS,¤qՃ~`^,^1)] Г ҍ^ycZpʬd@>IR?9ķ]ǹnAU>JŚԥ(r#IׁW(,JPdvudz],FejB^/܄a`gF:3+T؜O/ Z&83JYk ^6 H$jZ$Y2Pc8?kā}ΛަQs=\2 ,=3  ıIG腥\CַN3[e RшfQW42(s$KvpPx g"~~ N_,k2>rЙT)b\ܗܨuO2cZаS{V*S >[XkԾ@W%ѲԻcwvZ+>c[[-CDU ~SnX1C)UH+` GlhQx+ֽRVFĊ )[Ѳ:63 VIi]!_ƲÅ)4[i4Egl /3#/,٩btRD ![1ׁ!~YBJ:/ k-' FiLN0Ʀ>܆d.)Rl;뾦lY|r3(j9F.SFy44WY!&.D\(*gr>޼_S.3ev#-ȾL (!8?$ΝFէG~V?O_FT,(T3 S8"ZFeǖï<~ 0څJP'DEѣ[A&66:Ϣ$wh(y+͇ k b@in"o*f!9D@=1yi,%Kf>wdYʌ$C+"賢 ]]{X *kscͨEɤLpOq g17?K*nmS|(Q UK k-8w}:nk뱸NC0AJgJӑii6 Wيz`&.KkN+Ϭd6Bi6!7 WlaE6:dluyճH&c[1 y6|@q^YDY99$9ߛXkv6èCۂȧdg cY+۹Gx;šiPSl*ULj :8%iʉ\[|X+y7E עdbD=b ͕iԐða OWL\B!C/*H?D[ď4:,$Gdw {j>ʧÁ%Q3lUiĈ2rTZD'9dR.AsFZX>oKtrx a cǐFJh3G>\#IVZpuVEʅ*+9#||6|p50LxL9٦KS6`t &>nhcVe5$^gBwG̻4="jdl #au \@z|L{OSPtdǦ\=SB'{(W$RuD[:uM3= S#ft*Utf܄*\v: ߴ!p se֥d`Kmn.Ke|fI ؍Rŕ2zDR jW@%glūX x'\DiZ4c[Y4Ǫr`:Ve13[q) %Md3˥)]󭧤y]M$ Hn![`yp"Έ!n(.BԽ" RL7z&Dۚ%μ4Ny J''|6_`C GLL"ų368]KARʶI NQPۉ[56m wӷ%NiD2zu7>[cQ3ARgۭfͣj=0շciґ3U1ͭ.^]rӴs.]A&B4EH`Fu$40O&m?;ÌAG\Ee$Q05^h#h܁xDORr?'5 aXھY$mQ֜LWCC3NG(inߓ#8Y+OD86g>ErUMv=Oz͔z=Cj FR4Jfا8J>[24[Bq#L7ZC yaWI4ĶBge~1?OhN }w n'Z̺2Kvp0:fgs! D28u[;fV - !4Fȭ/6)0x|H\vX1'6״ӀsnXPf6[lIs(^ZV[߱ڶh“0Tlm\# *)6itDQ2JS3464%vgDA#ZLpFRH:/=4FHh xiۑ­X\'-P4Jx4WYo7[Mb$ Iԣt\Õ:`tA*!^1Kܩ[ `d~^S`%*ufUX7"zJfgeg˺өbh'l8FWފ ;X5(} 8|O6iyR&Yp%9Kd&皆@{W\uð BEƌ5YQp\r,W8 }KocV58tFm65T;5@1S(g(2%ޘP\,ǫ5lIhKfѾ䘗!F\ug4Hf{ndQ+?Gy>J5@\#fiɰ'9=T-)haF.aK(īw3 .5 hP2?^#SJgBEzQE\]pnOr=d>_%%QuMBI.rWްnOOŅ&)Sf͑bE454:.  @:#B8ܠ8ID?q ZUe8v/ńpFPJc=da>h{9pKkX 蠯wYцqK-d4ĠN$rkK[u,KV[c&sYв L :9JRFҳzD izMK |⛊>"]Ys?:sI%it ׇ=3ZQYٖu0䄧,l([BKcWץg2hv( 8r,h-lo=M0Eh X1a]3ܔ&V9,[N+Ϛn@NxM^klsEʹ45J{ :9Y2P˻ddӣ0M9z\ V]<>z6 gځ`TZeRQhr+6.'fP\Gڼ?E7 adroj9)0ҝB*UOQp2 1p8cC<%:*ͧ=CRYz%eZ%#%Xϔ1 .ijKRW7 j-]R,x-,)g"= YYp~+adxWh`>5eɯSJMD 6K4"q #N'{$t! DOı1 C FP!FcE?p 0:j20PV I/p=&> vA2kGͭbE*JI U*ա(N,{;jahY]z0?xZ.?0ZQ6㰔51]dh,,k9CKh_a "'5!\1(Db K["3F)ȿȰ**N*뛃;+ѠsL[:mf4 zV11308Um6K]'g|CPɋJ4W[rJ$qBڀ L˕Ɍ|wgtj}GaZ;?X7¡R%p9FXM w btQ}YD7N8DqRJ٦NZ#6kpGFvHAyB?\1bJJ\jrԱ|Jat ΍SpVڞШP(z!-.VViǫb^{ {"@q/dC.Qq٭5! D `О9rj:&m'DEdW:U",)sP#uŚ%"<ӈIuB%W1 p "ѹ]߹'ğɂ:vW>A[ь+6iB 6R^:c&:mv̬Lvԗ3i`}‰ɶע^jcf1L5sg(;JWZ׵*IROűvs RC ^NҎDa7ԫ>sBUwy0|h-2,]E^iƈ/`eˇStHSbƵN8&h'0@J6fa!-Lыuz2OA%'5j*f!֩ mN5 tOxre@IMEwT^H^Եy#-P:+_Ť䂎1G[؊|&ULl6t:X{,OGiQkSqKl,x- 0TX0o9NA|2ϽzqK--d)S03X":r >+ܠq2[Ϝ^,XߠzrQ\4ԈЎ|t3IiIbb7pq8m,jRTfWhW ߷uOd!W*D;J4}wp#K6%輄$7ۗ)>G,6Vi/Z UdaUZkI$RE|cl=A;F S-S8-)>Wc#n/il^)X.-1ldF03QkId{&"cl7,de9w~MPY)*"-yސ+&&\Rva-VQۡi$ĚZcq!3~TFcR` u "Fc3)-ԇ'lo0>80pípBiVO1 TǤvߚ䷚;V=2 rl XV;;;*iAdo'1xŠ)T̃$=+s^[+ i`{z K!ψzzCCuK;BA(;sj83ጧ4ͯn;uv]XpQPFԹѫ䯵6$SBR/,FWdxqJDEѡ5EBD$U1%%l;CfGs7 [8p `BRw`C~B[ޓc<-& 8--5Ielj&lQ9huNQ:,/EݎHm#PA6Ђ"JCOSmFi >&0Hya:-^ӡcy/>(L!cw9w،#gͻXg!'^d r}4t_rЩI9qPJ8%}To ~$\ ף 3\d ߣeHȯ(dO6$MWլuG[^L6h+u| tS2gp 0.{4/`(*/%"cjsܬ6\;Lӻ=~ϒ} eeYmfiʯy<0 lj$]`kl5zсThމ.*k;Orp?B7ХQb6Mѩ)18O(vrijHRɒ >wi`h9ndо9u(d6rbD͔1>Qb<꣮+kKfJW1JJӾ3%2vpCvSz(4Z3"vLHY~F#Lpۢ`,;&l7›A]Ѵ+:fF^/~5RSÐ8L@,٢< 73܍bV n 6~SQs@&+]Z8 $-'~ރF1/C0z*̞[WCfaF;!u0q҂6},JEN,Mr05сu/ `)"UVgɥmQZ-H 7[|9NT ۜaABpJ ^r լ?:|i36r \.)ϑ+ɓ'950VRnꆺ䤝z$yP0p.MI"=A7'v 32=yg{)F&̬b$7ÇOFj강3>_Qi,2Ҽʲ1GPV?7QO '|4gi/C^zqܼScC3J#߈%>>w &›[Bap `\O2*[Ϧ^!V,`'˱ bdr]q<:GOJɞHݩ:ZG2'68k/H:I.5TW.Rby]su jO˘Eb7E7Zs)KhX$_0"C`a/'(=dYo(Qc{—,/"rJ2 bBs.Nl~hqbh5e]gmhIضƶe;J ԩ+-&TYmد =@6ڛJ֊'6l|@laL͓$9b0"v lV ʜWh&I0@M T}%GԊ$ GWg+/3X4(x]""dgkP#Z7yNT1Zea".^mU5؆\2^'f@zc~2 x*â"{)ԾƙC,B@z1=%qSR2'Ihhd3HuXMW K.\>ɫ6ur8#%`*-d,gHg+FE9rRz$O^Uy: n$;.fsc=,KgW pw}#i$Zen$gvib#rTvn< "I3$5is9%w z Aa8 RZ+#/x DC HBPHh]T]SW֩{`xr#ʐ:j`cEu ڝnIڱINwsk'V73+6Om <ЈNwA2!5kƮ#kyaDJ2rsunugx+]YJn,}OLak,[}/.lq3* )[v=לT/^NlhfVP&Fv֍ڳ0=m  $cnj%N8ϑ *wJT9NO=<-ZtE {{uepQ+Gz W t16?եTm+EzW{nPir7 QyLo+*md]":rǞۓQeZ?Eyafn>uZV\xSŁT)y@J0XFQP[ޚdʠv+| P9`R׌p"+Fpö1/!oeiK؈ Bj2 $n,b >8.bbylSl9RelZ a:@:)Is}:2aҊeh*-g[nA=hU&i䜅b1fV%[1j,,&R1FkܐmQP]r0^ЋEh;J0̫"ϋbpY~ 'M+>pMҵ?$̂-6XǨ)ilwZP2}IcD%JAUK?n1x[L ٱ^x ڡ> n뵪i%Wf3l5w,~#F}`;NijIEF3e}+3=n`ށoVX6IA#m,\cIej@O6#t*&]R5Qsf><OLfn7]Lrq|d?:tPw}QE%V|̇8#p3ZYU(Ӏb53HNH7j31' co- 2LG2}S+\eeNBYGXVDq]7"&;(s )8,Xx}^.]4l|1FHf -Wq?ѣ9Ć*zIDzr&G.= t*;^6VԯxV6t8(l 50IБ090/5AS_ !6g7+PI  P;ffu ro!6kުm~۰8Up;_ &e\ 'O.+V>k'fQf4n(*JD>B [-tgwYFrCLaJYytչ3GNrmmڷh% ɠCMa+.#@ϑ q\=g*'v'^)UUrMQ ކNRf k"J𜈮K2nS Sxːd6jha#:`d˒F8]3IXZh9,+fibJ-V%P#X&$:jcL`1!ѐwaEc ǽÖ·\>yތA'r4!X<n4u3 -_FbڦLV`,VcQGu2lXo"38svviE&rBX7Li TZy G[eg@lc!|R%Yr >oT,&m .G؋ xap>A[m ]Q;_P:Zm1G0c=CjV[`|*J$YkR6 p5,u5Շ٩ Lu5_Q,a|s`)6VXքBv"a8Г -cփYBUf0YEmA[ t?٦!Z&kRؐ'+`u\۔SתETE0w±„lc,&TU1>{R1riAY^n-94<#jtXQkЖYbcbޔjd*;B BqDE50`Gl LO!O KOm;W(àR==ß| v @%38Z{YʩQZ(B/ (mjN4U3+U&η&QS bpCC㊌fe5Q$.$!X!7IEXFS+J*EMB.< ߖ,b#0(g[%WHJvǎ$-wRS肩 _W/CD3& eC`bU.jQ;O5s]hmR:zջH]CkFjL| E* ڇVMoi&J~訝[E>CHfD'ӆ>a2%`^('vZZ0;,Sx̀HTH ҂mH dvQ, }A4Bbp;"T ҧbg2̇itbkXBzUsjDȪ?xN:eEC>an~"r1gb8L0e$ErJlJLTzc3bhD3G:k u)>%`1N h"r} BޔO܂/i_bkMoŠΔvXA]lơ 76QeNa?:Ga:$\C:Kbj?&Ǝ"IWՂW^ZC$& U֣4Q愮 :el(P` 1ED *uMCe" ^: |E AbZ(ҧP*q1XCHH[, uC5>+n,67/,?t@oMGti8T2'wR /J(TB@Vz ҉wpMHC!?e3M&"p*Dk㋡ LU.f9 DЌ|g#Eё1/:E. (X/S2t q6Ґ8^1NH(tj4&4*UH1F,j,+2(r{8A ( U#Fꂈg[eUhgm2F_زy@eؑv<~c;zw)4Vܹe[A3z$K! r_  hVQ? 'G!?lw<E剕_ffXġOd*3芙M( `zꤥe/1{<C' )ZxVTbuPfl7 hHZ62$ vIԯA"hNh;&<(>EXPxi^f+LrS%0:(eB,78 0)B'?d (dԺ,U%s`7FGNW c&1S%fsdm#ުҽ9#ʫgbauAf6PTZ˒c ٬dq$1dzSH#96o85|ʶz;lzFq;[*>xWNeXt[v޲eKpھ _#{Bv- R|ΐjp:E xjH(#JN%f"t"aR@%UꆎH`&ۂXiandTͥW rۅҎɊ ։0ܫ (g%BEMA%)2֙HD)t1)IT߹e#2^eP]xyܖ-\lyQS0=Atbǖ|BRDopW{jDM5;`<\8 oi+F229+AhjJgsR&qVB#Dg4z'4-êt CX7/p$D#[Qp3L4Og pcO:GP>uJ ''OŸ'B  sTj})k AA`#ցN6TA!z- :N! %vv+>@ 1[q"Cؒ+\RCqɗObϞ=<[guTy4ialJP{QCN5JT)ЁHh2d )Vk{pN2Sc!BXxTUNRjCM(ބI5LmJB0[.G*$i,G8NX4=A((.wBZɱ o%h_D ae 6Jci16C '(`NwY)/,D-A0#񢕼^uZ䃭 0[{v"fOS=uhk6|ȮJF1 EtؼjȂ)K2d}qyɜG$r]ģx,ZVEDH j,x^HP&ioAeHWۛ@ZJ.'M /``}!>”]/* y#M:'Nt4Ɵg}Nb*a1\D߆ߡ ^y6'K8a*ä́_ͺu7 Swgif-sa_x,C5 $I*cMORy5m3Iy䬍 p]A2TaĊWKjT:.ԱA)6{(Hc?u$mhҙlF;IE}ق)M5cXP+ϓV5C|O̵(Dn9x'9 6-qX꼪kߋx%XB)< (&=U|AqṖum1GķguY&btIf:9(|Yd 6U4yra[eix_ Ga2=wC˄fYɩ[۾gws߂dABDH:܁fC MmIX:\tLA<:'C`@Dl"]"":Q;Ow&ƹ fmᴈD*t1KJ=hi()Hb)}Ԣ'<{a/ mǘyZhd#@;wn.Ds-KHRojӗG —~O&xv<.),N5eRvpr㤯:S;NwVxKQ~ Vk&1tX%xnPqeԾcX Sb*^A'DAVǢBМ2݄h@DKg{p`tic,lO82sуC\ 6|Q )!>8A(1C3mIUD$оs+[ki wX &,weSJbOӯfΉl G؟]2?TA5|BM3}S#ЋgaHD!с~֧J*{-&&?uO\Mqx(%׽.jZM"*a؁ַE.E|u @T͕MŸ@jD͍VI&A1K#ze[Z$R^*C ѪpL+8yխ)-(b=PLHhp-F(C :/Ҏ CܒI~:WhG=pPD$M)ֱ ȹfWfMP}E a4A4TjPX 7YEYR} 6 Op{ w7 ęvMgrd z<6ь97`D=< SRUĥnBtpL2~Pj,Oh;8(1ۋ;f>ۉxF V]4ښp֐&H.;$5B$ې(qgSJK~[pR+-ZNĵ|*ޕJ)`%YqŸ2-đ<~&d0Xh&! +c6@&$"HU˖\+uRj+"(ƙ;+%xFuX_h$*=]Æoo=tdf~HoێG1cYd]o#`;څN!Ѯ q^`PcӲn$L+ZVs.t  4<0A4fBKCx^W/H ~Jl`SB z«*AETA؍S<^`lG_,25;j5)w$]ޝ8rW pQ}IxeEl#rM/|)(f0ՆW.obdOF.ƇJ6 E.cHPy! 2[6&/k2I5O 2M ʯORdzMe21ϳ*:il"&h% >!Ye33E8H6ΫXtK9a#w.ʯщR0d"h h b[惹Cy1Ї3 49kD4Q*/lyMnqb?K ~}U~M&nR+UedsO:q:*)؜x ;P?d B,#6{*:5mR *!1 iAt{5k[K-;h B(`ؐl}[T!=xrV!5ɐ~C/1)DdFf%J]2C4+mwڊCy=mD^Ѧ bȚL6x#$9lExz4QKIu d--|.r/-|`) 1cR-dx]jYY]څKY7.X6wo{&.l7mW]E725wozg&+OdGVDt0!| VC Ύg^4;q Ύϱt (LZoP9)Ҏ|B3J-ˈtg)wK=5z5E{1_XIY DK!Vz$p9r`<ȕZi皴>#Cn$S|am[54|loUQÆ Sv|".UQ ޹ԏu>'°,,#cңp+)~ /`%z*T&W'Dl XkT88lȟ3&{?FM:eT ‚OC 9*ZCK8.K|!T<'rO" cTɩ|h{U"tH:EP963rգӾ`S!TSqfjac˲Rա=ŒҒIt*RarD\XEKEX6V[Dkj ?4SFz;@/@{G)6n,>у tD7R3\|=s%%$c6)Д^;$U3UjDenh&*$eRWŞ/6]` .brԿ4Qʍ$#"-i$*$ Zxpwa dkFhQZ9Qi9+Ғ& xZbAGw A=ZR!ȑRR򦬜Σ԰87rbLjHh^$"V9V Q$yAF?v$i¼הgZHl E{" GJȽ'eG"\T1KFC7k{GʉKlN[Gu߈'0Eg $%Ke-qJc yX`meX.`G?.C=H ʧvuuѠ e(t4<Ё߶xcCww7{T0#8aX%s,3*HLJymhAqlx Ue1(Ӥv;hM.%p0hwZu[P%6r2+ud}y#HM (EPM䎨dDLOɍ 5Q[UAť6 &kuʡ5JYssޢO/km u#Thf*wbh%bZ+Z7Dt<miI?rP\﫹urHG*(kh8 Im&%zK_ uz/ $K(L"P[rm{UXOWpg5zf%S̕Uj w $͆+#Y&@2h=^JQ>Qu%땲1?#s=@QM%sY ę D Aa11ħ%mt-T]X^[sb,ksl^nZ زGI2CQ}TIV#vAL %&(_ N -8VzL.\!ʽ䟂AM]X ֦4 -J"Ɍb!}XDP)˸j=O4Rpuu /S{ԡ#1nbT\O_RF3!0o&νa2 6gdEo {wjnnSHPQ`cH 2ۄ쵘P{#1UOPƒЭ`W=T{)!^|V#fZLt`q0mQM]C(4i8 Β[Kjԩ.Px%t` z1Pa%z62 [g*ǗY#. zK:@q^H#L fO8*($Hs1MՀW}PX97Z\Ogծ+X.G>Ṳq D~@@ lm}el G *Mf c8QOi@\QT6v$TB\|4sθH ,4{p 6WH_MmД_yR XLPQWb:k~%u$NRĬCk(1H6AkKT/2Z.M]*z&6l|a"3 #*X WY7r5Y(sFcq΂IC^{ 0ǰYYv$5Et&hמ#z$& Xܩ>U\$a سUƇtDޯ~ U CP~Q VA/]HDm9!&L՝2h:$T+P~V0_q< ¨ lS3#p\O 1 vN;4lcVMV8.~GA%kO4gѯ$O^1u 4SRgW6I#]*()aH &E3`_:ғLv5%NP:yQpip!꠳-{Yl"TR rvyXFj ,L`SIF!Y`D! '|i4!yb4LhCLRr-͜|洨=ZM)KXC\4>DNQwV`'`+ؽ2y}Vvj՘ztR Har̩I"S%'JM3dG%Ygpx"c%pҵTKFP #+Kud BHatZ&)W1=y:W=ԫ4 7=(9b3V7^,R.\[d"6 #ճ,%ɉ?˜Օ+COD];X)TlY ,W 6$JKJ_% ʑTC$WBYBAz.#[ C0iЈ!>2Qʳd :D$)I E$hMl"?@-%Uq룹|"%M<&&EiY_iYTSDSVB]琡%$0BeD8ס._jenް7C HXVEfҩ蕉LmT2r P7sB,HBD6RdG|T$#ѧ!]H*tU&$;‘K O3}%oYݔHb?tU-cvi*!EeI (i,C'UNTT+'J*"FsÂu8f8l9jp3¥m$m jU J-ARcƂϑ)-A?t5lDET$_My-Fz㟳6гix1!)R8,B3d: *zeyVpG ՊG%. EX3bS y6=T ߕuMJˎ=ۭV+hp9$.Q/F%>׃;d͢ {ˡXRpV{vIY5A,[*A $=yINͺ Y%" \8wAlǏLg ̏:#,Qsknr}5=Z {+~T*]:@W. K#ڨU&N#H'/ЊJ;:iU0ICiZmCQMM زY*ȹ/BqiOe@izL>䎄Zp t} BF3uSDq:yЇ $K@Ð7xbDzD͛c KOwePG-ayGS$Y/U K--fĢ.,4i%Lo$Ci;%=Ņ|aJb!6mŤN@dy{AUQ)r`SU Wyy =lo!; 1/Ql# 9 kʛ S*i; oFcczEvOҏ@L8m/~e♴%'$7/zO5TE꼶p#n֤HtBPNj?QZQP5"8`~#4@!BiN 8*5!OɊ#qng'ٓr>աMNBAA`zh2t֫OȖwH')kz2wwua TH3 0 *vW2*` 0^ vs)UVFRXK?%3_vn#|M!?3sǰk!p!,ACSM5Q_t7&~i}*Q6駦zC#I[oWO 鬉FEi2Т'^(F }mEj1L昆ɐ_Dދh}l.F}F8(IX(#˂i y<.>&T"cL"#'S +S|-na0)>6ڤ^ Ο17,~6e "$4ΉQ!l)3Ez(Cvz רEw{ SBa;cI*6 B/X֫%uɽV9ka il!/'.y5{Єe$lGH Jp+P+8P G&rm!iL[Մ%puǎ  0y>DBA6{eт60rDP;F6RH#vh iPH3l0ʁ(أ' PDЊ@i & nH)̸TW{)k %˒`tpU]_ĐrxU:GkGūԁ^G>YlErQ(u$e{³PJJ4"xb=Ņ25Gԕ@CLmĢ ˻A^Ro 4%I smGs9̙3f̘Oə=,M6}]ovp; w!TVl>V$y2N2{ -jWa4 dcT8q O94R - aYʰTzEZK6~H<=T;Xz3D#T֔a%Ejc%!n| mTAħs,-Gy7S]NHDQbB TzSZJOB+гO 6VD ؉tOmo_ 'O<SӤeؕ($Ny߫j%ZYQ(iuW:#ZF0' 8R ~g9r>]߲7uWfԨ]tѯ~+7}Z>3kIV-,?Y*'!Œȵp6 TY &O@5:^90dސ0}cnȅ:wk(+9+ppQVR<ة/ƆRHh7q_cnj~DFC@SU9RE*c:#ֽmĺp+Ϊ:/hR{QH G,nlR:6/AqVhfrЛocE~)#=jѴ" -Vɠ ˈFZ,zOD8sυ[l[i^ fL62'/6Iޥ{72"[Y%цQ4Ӷ BO$/`o#QB;"LJz{  *RQuݻw ֮]ϫVJ -0FLI S@g u M- [jR NZZɋ1Q8d𡈃 0Ev&"OJ\*h'NS:);ua%.nH 5k ]t?A:6u패*8ȠyI0AqF5 |E&O|˿s//]1C= IFV즣~4^ґқ:.Z$`ZQ^1*),Ґ( {̘12:^fٲeO>$~O%C)&ZbePD"ǘu G>EI/X@NF91oﴋNǮ C#ŊKw 3f,> %Ub)-yKh]46F+/tHZFWdF/i <_ 9a+n-*Ֆ% 9E'ؾ}v^̔P3Q9ȘF>SW3:4իjU\I4~dU+dY4#d'vP}Ȱ'6 fSΝ;^s}{T(;dRS__ꀩOIcעǷqK1w,d=Yv 1dd"Ɠiʿw= SsPxbC=XGHJ;wms-*I!EX9~U6m>C?W<<փ}[(վ27n ӦNJ~oЙ_y篾*J7 B%/Cp$ΏqyÖsGD/~*Ũn0uqaW=gϞ;BР$@}}}===z#d"|I'&CL B d'Ls Q$fº^j ꠇn<׿l {#zV{x! 58'JgMH7VP.e%* .U\ }qHBFpLc6QC]UABT Z}X TpT [\'\c;^k4F(C9V8J!&]{wqNJ+/ʇO"+M4*3'cXDyCh$П;ZX;R b .pvG 7F2YW]u''NAVwR8`76 m͚5kݺujD{"#6#dޘ R`6gP9@- qzXx:Q'+2L`dFe :y*7na%JyϞj꫶9BF?伙͛w w$mtK0e{H1RMy!*'6ʄ%Jg()鼌6z1&DsJ֒$`BQ!<̷sC>mMA˕:XL6͈}蜧6Ց~05?]..b0l07T#7k0J휊P-XR윕QFZ'1 ;9Þ~޴ޥ˗u8# -_ij5 :,ǝEMj.Ѕz7|3]}F>co~K,WY&Ծ"In-J51Z(ʲQgՂdHU(i3Zȸ%L1 SP~TʄOT Td``p$҈"0;8L¬ɝ|$f🫰+[E;*~nC#!̙tR YH1u# 6[́~ֈZuu5cHRrJ)(4² TLj bWet2eȑ#W\g+xl{TDY^\N@v|XOOjǓm\<Ν3ŋ{= !/JU&umԤFlbX7onJIm2&sA{3cc>AKK=$ 6wNGIiA5) YV)Ul޿;׬޲u]Q~e$ cU. @^RfSzQ,"ՌBFL#9t%5uJ(xREd-Q>՜ /,[I^*h 1P\4[ N={ֲeȈ>NK.VaF#LϺ]tV^m6 ]F: ;DD m&5*K5lҴ#;A$Yyl)tyar}4dp&}H$ (. R¦.Ųs;3:.}{=v@IHR9bӹ9/4yg]5b@ed[Cv !='UN™ ¡Ė-xQ [aPWі)t'}Vmݺ5wtʳh82odpeb5օ4|ӦM>,>([†8J @0(lw#VHEl%$|Axڝ>h>j7JSN;oHd"H@59TSCt9- 5bg>Dq$c {YgZ$d]HowwOj[́=,JŮvQRDU3|A>3QeEI))&LSewMk(qeA@Q(vM )O9qV*8٢!\2Yh5H(xj R뷬 UiMo?¯SO=u^xرc6Nڰߏ=ȣ2a8wǍ7ooxg>^O|O:Voڸ ~湗h=/`Q㏬76bG9Y3?x YǟXSn _rU_7?~fygO:̱cܹ]dmar֩S'O7W^]d[߃ ?+V߾<|ݺWoӦM0n%`q8wޥ˖b?6ydxٿ_z! sw}ܵkk?7P;cf͚>Qnx//PqFQhQC6m3f̀W_~wǎ?OE~k {FSI]{ٜI.T\ O^˧:5I6L񹋆&Pvm/gbQDu(ޓ?MB_җzG;Srgy梋.'RC`?~pw޿ARğ6u^u_~]z'òܼiӢE^|E@vا>ix4 |Z*TqT(Ĥ /y%<>}G  穧žǔs|p!ɃG?  K/᪮X |3gΜk.|Oo{'@t^~˖ܵ'T.ugvƍqK/ltϽ 'N|gy1p >Vٳ!ַOEo5|40a93n8x0׮] 9=5_:$|<餓p/ٹ{%|+_ß2*owSVx| S!}ϱGNѱ )VJEv /-n~D#`Áušl/eq'3f̜w_W? .~ ^+%ڴi3|ԼyL4 \mX/ŸٟkfϾ WYL0q1n-}քSBl{1 ?m7=Sm|罓N?2pg7mo\pK/}ƌ鰌_}U"&ygQmذaE<{ui3i1a~y]wݻqsΜvX$p4.oka\r֭-/93πkݷݼq-3g׷l2)>MvKCwqإ1oK/׿A sI'|tΜjֿm6%'acpYzM?}g^2};oDU0='Lj+)= )k!U0,Xx6ӹ ZJSK O1b0]a܅x(oٱHuK&pNMk[[RJoA-AdY,Z'|Yh{`5,[7gO<+r 2?WE /ZsW|fQ#FqU_m4pۍ7>sW|C" X^ve.\>s'|E`ᒛng?9̀=ڟ]\~5'.=-[r!#~$s.>oȣOse{M,\x}^_9tŧLm?'V?ȿ79腋=ǏإBfaI~bՓ۠v~;w7|ݻwC]|n=$'xWegL/}t}`𦫫Q|Ge3A!yѣwQpO?tI]HJEzHp"e;HP˜ d"BX(ăd2 x /"xASa^_O3#G+1b?OҩG}.3 lOxB CGbGh G ܳx k׾|ᇿ;{.9})k<{n`_q"93&N ?\|jAnk~֭-!|W.{C "\QF)e[yM7q FppE8{/YVE.|=z4 |[ّ:qIuKe|-qKש+/<8=tO[;Cy|ϐg[O@E w|RNVɺyڂG %lpa!9ꨣ>Orʩ>n2Hz`+6AT{]E.Xkg(s:> 7 g}6\fΧL>gyS_׾2޺`F~U>zH}dΙsҥ7pr8 g} /wɛoyÍ7|c9j%]qga\޻Jk~ՑJwm)2=os8#\'pYVUj9yb[lK|Dإood$4˖=pN<į~Jx%WBh,Yrw>y΃WxaOv.-m@0qlΝs͛/RirۿC?{2ǟ/߯|k_o5g湗/{;韯ǟ:ƣ>9wά;w_'¯ '5+_ ~f NtFWww{?G[gٳfxh[}񲇿oaq>x1`m[?4؞8a55sz{x:ֆ o}|*o~K%'Cp|Ϋ mG}li.D K҃L sN ?ϭ1s& %B&x#2E \btFA{A"&45AE,UB |[a"Gϒ {ABӣ9 dNIuwí.pgù?|HD~ӟ3<3gΜ3f|QLTg5ag}Қ,ud=s~ٳ} .Y/C0s< /ܴiyd?]K+d34@8Y)\1d7 뮻kNx{l&$L{LUCls ?tk_Y3O?adnȑ?NHW>_͝s܇ _C-L>g<v[p n"Ԧp[!C]nݷ-jkvHԨ(a47oZzyM6 V=}j iܨr|ǘJr=C"|I0iTdbX"f_j'9TQ^;#`AF~I'!#`͒$ju 7pm~x%Q't7/"*tp?W\[:\Owqgju^קz_p+>u?~˖FB 6\8ZHR_?S[|?]; 2Ç<_5k^yoLp겥˚Jѳg_`}wyOV Qx /ЊnGHZb?kX[ylӰf=|cVW]#zO?.L`{Yxҽs]zkCEO9Tozhs/7.ž7ܩ-Ztw0|oCiS(Ϊ[|޴Ӧϸw;2}=wޝU riX0IRyD|ᯪ6(y's@U`͓N"j%zoKD(2-YDP>1\R"Eh쭷EٜG?[oMMѣG\:o $TxwЃ>d^@[o?9x$чr ݛouI'[K &g›;x0Ĉ23Kvͳ–+O^f2c1@@BCX~'atY^l Tl58Gfj0+ 'iC3Jʠ±d^N64M ^ QuxgjQy衇Ϳ/CA /o޴cc K?(UO:D & ͯd.@e[%381c8H1E3r? ~|rMAȆZe 5!)@^S +D+?e"dzCR)J;L-.@MKl.XvHND:rk 1x[~j&~Wnذ XZ6mE~y]6nb BQ;vSO=M_5HJ o7[p=f:fo hBrȾuۣFzBg svx#zGھ]Mx:Gy4tYUڐ7Y12=ܳcW s&M5oC+ر o5>XzkXOs&OwzWOW xAó7G?vQGuaW#Q]dY9_zɥɞ>tJK-׫CЪ6k׮ݝQe6N>[ol,[uhMB 8*)|f*j/.ew^q^mg`ӎ"{ Z]de)"/#H%V:I{$>YF]xNBEITrc.~뭷a=&M:KC1 P<N?-HݧhҩY#'S61}S&Oڰ1c|]#x*rL+M&vm Z6u0d  eZo_߲ el' <\@7)<;6ЭwJvh'{,(؉Y?9:`<}LHFt"{XTԁ){A/H,$u=9#Cͥg,m[uH1H=MԵr gy橧Fl¤^ o>0Єۆd|d\a?cV=!Щ9M3Ik NMۊ'KsjJ{IeF8p"8ceh9-"mMGeRڹKm &, U2AZ@> ҵiӦAh3ZjrHL۝Fzgk6ꍮJ#Zze]Y 7_NΝ;iޤ3 Xź!:`!18GSLruOq$kaE Oe/.P.+l2B&3Ծ F١.?>#6+$$q8zZʤhDnaL3K?#O:΃xӦt;੄B'X߿-\+.'nhxiB"/}_[}|3G#r;w s- D,5Z~r!Xj#3EM6Fy{Ϟ]m? VHh?ܵm'3bPnBg]*̌|`YVH^ 40͟Bvn:3;Xx,agjh{?S&{G1[=BHT5Tu|GVvکL۳{O؟ 2H`* H]WjņWUZ1X`sZQs+ծFb 7UU+)ė5 :')&hdbCO)x$+hRpMή p%|<1c?H%>Ş=>唓]CxmHo~VE(wIq}^9نN= +GUʮ~B%L{֙ <:Wֽ?Ռ&͛7wW[Z!ѫW?sfΘwR1zT\k^wɜ'~:oظoVrZb'M:%:PB 3[0 8(Yf͔@FoqƄ GeJ_[}2U[o[b3|֭_Z#!9BC{2nV`ܲ*Į@@IV`^ayXZ&DP(ccgΜ āȇ5 F\O8a{aȓO9yٲ"O&N qtA7_kJzS? 'n _ YX\8r8>/(t7΂;v߷O\|"8c"^:SMB"Ypay+H&پ};YM-w};uCЊ N{5g/~sυ7x23 !xꩧ YE$U77tGhn+fs&m63fGY}D%KNBSiX W_}V>!x 8uRmQ2E=e6dVYJ|"!n2BokIET5,* kϝ:uE$r w ai׽J'F4r+VͰ*E+W ~.T5x Hx/uCIv(Ϭ:u֭[~a9t|pX{1ʹأ> 7Vɛ| nj9mg8v@v P*[iA*P hs/\< Ο\!ާgxK/tх͜1㞅q,O: OΣ옑jAQ, P w aOضp}em7nѢE=j؈4Ҷf͚5ϝ;mJk{l?us/'t d#a{q' 9=ʺW֝sX&+OHZEYNw sy'^=%]^dݕp}$f:Ҩ@ hi7[7py8=ծDQʩx1 eYf?uL 0*2&}SUA#"%8,SN޴iĉkU|HfϘx\pW|k?ž=rG9꥗_ewc'zsN;fMAwܹ꫿#+?~pw-kW}͕=Gu -Z|mia'ZG{M7k]- f~W3`Ɵ]{ f1b͚ >S sMfT [{P.o޲?tÆ d]z`۲Np}k3{KJ@d2)1K2ADD*˨0舊?4Vd*dl,)T'ڈ$ 93z{=g￿4O]{5oWVNKKZ~o/2-G]wC1 vttwܑD; "r򔧔TE/z^w?1̽}#/~q"O/xA9Kqܹ?^k_+סܔ`hw|_~ =2-1Ͽر'~ǭ*egWjH^lkj s u) BYvUk{4 䱏}ٳWONNg#R_h8wPJ H/kTƏ{Vۿ-?RڞR`Y> o?+7x][_^Brž{M)H)S~_wsOɣ+DT-#~Æ-?rQ;6ݐ|m?3_G>xo>wfɳ{6=1d㸠y߽|Ë~.} ȏ~+_,{uyx> Wq;}_W~xZ˛_W~w;pËr8,_pW\qãFlϝ{qo˛lI#O ' ì x6OC9HZ}rcC`(JwR%VlT#­jV˅Zꙫ+>>Vd,2e^qCۿo~ͫoze{;}~<~7~?%/fI_=E~?җrw_˿{ˇyǟ.'})?/||ˍ7S) Azg x /?=|]LІw?/_79s4_ ~RKw}o>VV5W?_kPww}+YKArXNϣ~Fu̝ Wo}^WJ;ϝ{u/n֏@* _Ir-ۖ?.^Wo7k"Wx'&?V!Zqdž˹WX`LM]Xp!:H!ݎIJ50_&kBDJE+mymx+nFKR>O`=s\}<_)~gTi{Sut2yז_}Wl^)TOwO7x+<=}Og~)aQ׾uוKMPsqoPrX6U(ݞjK7V%=]v:Pt12K'߀NحĻ?PZ{Go*1-8@Qt}x&ol>6/X|…~w}wCx+K/z;Y µ}wz+hI6xn練.]|ޯ؏@jL6Lk~7k3y_ 3ɊzjuBxQ+e*FyMO|jc<ޘGٰ| \w}s/\P,Ǘ.oR#>*z?yM7\WK_LG|}s_`:K]˿z}Kṉݢ3I;?C/|ayXf/`x߅v:i& 0~}?x܅91GjA/( NDGEҪ9ѮZ@{С D{%!ZTVlױԧ^V옿N` c\hFM?4VFQt0z2mA#1D-B6>g?kdUb9b^αzEO9z4KL) Law&511oi5ח-~xYYEj$}ݦiУuw?}JR^{M?^K<0 }6wCƐ\nj$4gņl 5^E"Y Aȧh@Rf283{N F,%|@Zˇ?(RcfDڋGb_v7#)vG\ J$n\^nY#pFDk/J _m]=ד(֬+g\TM6.RW~WJ%ajf~iuD bn5eGΊ)~LY>~yE!j"Qs6pt E5p\W׿5OyT6o|gAW~ZqX`xg'atJr9@9Q~QS.IgKIW~W٣ڼ:iRvBM`Kp15 7VótQfV2uM${^rB2?Ђo`2,|䡆Rl6pk9pB dA(". X>ߠl}Z@ӐYQDϱ56LE4W=ΝC \ bdj"+bʟO~SOzl;w?KFSK=urg,HC֝qZ6yJ+yaYNe1.yU,P#o/6=KﳜjzG''{ 7wCH>cb(q//)KJ6O|W_S;>]>%ai;)\I`Ҡ_/"6ݮc;HK:LR?X7uJL! Pyoldbqx* 0Lrycu\,r*8@*o=|xJE/~b3crmys]o}ۘόUfM'6,V՞WYPJدv]9sP<=l{k:9.6,nH-dlN/#; WLv?}3mv6v]>?*SxrxO~Sח_o}ܝtΜvrUbM&sz,>/!o6!y)]?%Cn$wBvlQ;.l9\.ڙov$ѡlc$<4W\qV :s?{^rY@@n`ї֑+RْfRqHL[g]F| .>ֵڰM9e)av)m9yʡn6zpSL)5i?IpՖς\ƃ'8vK6@?II :qֹ"5$N[\vrjlD{pAzѤ<|-4HI'T_8ml@1F~Cȹ4- ~X q3ad|48 F9>9Xپ&@]וUl5H18/T; pENo&uzQL#Tu9),qx|p@E Qm /ⓋL-쳦/)A:{M-kvS \L\RKGVuUh ug;W]y wr\B7r,Ҏt[0l[t6 GC;?\jlf(#Zx x 8Z%`)ZFqc2Hi-%D, E}[ ypWfӄAA*qGiY72&Ѫ<ԋR"_yR5T7.t y=# aey(څ&YLo9LEpyztb 3skrEJ(w/ONy_-/0xS͹N bX̖$XJJ鹣Fkܭw=mӑlX5DPoն<v}n3vەq_:Y2[AY.0!# Avu3_.bBQN7>2CI;5;"`:qpZ,ى5(ŀlJ#rbjJ]q%˚g{5sLG /%@:rX[^@"XaJ@M PA'R"taFdSaZ9q>'>LG=V{WC3O#(਄wt8@z-F0nPٶ>$Rte/{JF{PyEa(aΓ.Yjٗ?AALS= S 3 $R%<ʫf:kB (I~^mV>>z}| 9s6֢]ɠbB>bvT/nzvB3_ZEYHev}"]vsyilǚZNql)7UZtu^EP*(`Dh#rd;ǴqVȻE$r%k<cW~u|oV}9Ү͖Q>~x`n>QMbaKEY.w cI0&%3b~8 Lt`ul hTG6V+aZԀH[*ŋL%= HMkO  T\? 6^8X4dDPzTWg)r(k]~pG$bXUrÓu,`:`*ahaҤ(<>| Usm!-'?{d%tބQdpNp/bdmw|U /=PM85j7BɑvHMhyP@>Z^dVxi~rֆĶrޛLUo^;ųJ⫡>,~ ꖊ Š6bᅴ["qΪv]" U)jS*OyIGNԞ.#)ʀ!1A!Y|(:*h T^bm7h91 (4jz"LǬ)ɰŖ%]cҼ9,WI>IZB[Jzid3_u a6Dա{/8W*YPI,L2%5W^mMĖ7&Ʌ0~hu !3GbZȹ/\E~R|-]@X"ҁʃWyHib_$2 <9e!˭TThF_Tk*Ucry CZ'Bӽ\;\Sn\vFVЅqO`^it$@Xv Ԍ4F-;";)iz \mMSeB4fisΤvZt5v*Lw)FpLE)^oFWzt亜:VEbÑnycy7 W]S#O\9zoD!7L+AJ)։N! V0c{BI A\{BLjIG?MJ,bI -jݸ㠺-zYM#g у⠃<$6Ad^5fձ?exA[ذ{ZrӇm[Q[l 0ͨm-<& {sW^%QDcudѯ'ݐ@H*a y6=1r=X&N*..-*]!0ҏ? WeTb Z6pC {U!<@ܙ86(S# >${.cv y9ب-FJUYm*Gt Ϡ**Hl2Z ffpK wYDBbR1hEɴ.cgdYK*Xd+ +v*K3p!\6ъG&М֞zGRZҤb9D&|;2`VL&J5#3tVǸtʩ9h0)h&9A`qQ1 OHd-1*PA:2FmjPu {U5$`yPzj#ݩ }ZM"ՁD$̦oir" \mM4Ò ,@JTGh4gɮ[GU#Z 6{d"&CTM`V:^w~Slxfto监wdI7@av5nʕo+R$ri4^6{C!: RL h9(&Kv0lG^$!QЅcz6bSR5NS'v'4A8KOǙ>N&dW`+G.1^l U7-X~Ґ ){"a35&`YvʷܓFbt,4iuSP~|t~V\٤iG!;d53!9趟T\+C\=7}2ǒd`54Rmm -or`F$Ye*[o1[0i%X`cω|8fo$^Bv8B#!T.WyT6X?Dž,A R0`b8|:w+_C\u1atR֏ mb?H#˂nèqАgP#XGdljurP9|`䑐*1h^ 8Zf"gO"!X@O@,)J\V($ ]l*+,Θfi0_׺| -iPq03hĚ<3a8ꓙWZ"l6[ciĪfvsAvs@T:mnO k2ep` ]>5TZX}cuǖb˯[7G)~A;e{OkMÍ#樌ttm)kGX^6f0烳iwූveR P٧VDnOq lS_toQz bzG}Ug: ;O F&W~QvOڣ[I$4Jpƨ`/_pfrpăRVf]p݆;l3VfEI ТX(4Sង4Ps1]2{Jiu$l<*z]2ҍydE6#T )Dj&^Et:dJjiS9m* NK$7\/! ?J&UJy:i卜tw+=a M::dllQ4`ǂg$c3xe!BG^榔0a"fk>_&$+~V+8s´-”=A%QZD'2YŶKK*#9+Xŋ?(aG؛&.ޙ5vXM8Ġ0D`nK%Ko?r6.XR풺G("畉>7/&C5y!.ꒁo͟bX+xQ'!: inV'OšAGcUY%nNpwT3nƲHw딭6k-5ۢfl6dr6-P0v࠷ԢG݆2Jw08,iu&?O\΅7Euf1&C%vC}Y=S'PDwlQdz/2S-ԞU { %(iOZVشOlA|a.J'֚Y9W'kឆ-C[v3SCӮGL,$MAKR"z2d+(Ұ26ɒ3S%Hf"AlъxUbrV1XHz(C!#!6qZK+PX+BU])::\R=EÚIlދ9y\bLTWP~rh(01=!KО5}ony5m9HǧSxkQwa+=7cl@vCS=x_/<!yHǴXK:Θ"Zrb3*`gbWvGvlIRyabgBewL3 ~ЛD&yh崍z9^wę.-J_t-&aW^B,U`V'M79,?TNC)v۔MnR^eֹn7rXgjtMjIa<*Gߥe)7'MbLe./KHNzݮ|&cv@cuNH zʶȥdQX]I{զ {D"h3n4IҥN;gʜFً 324:+,E:2Zx٩S\qodU )8f!zh YIrjrT2%bjt=+MuYuRdn~ٗ}7T[vsXD&Ud%RtQ4DI9ZʬNr4\1NV+06&gF5`Lfh( 7DђRCXUiMv¼\] {UujgL>4I?FXLʒҳߚ*A(% )`(V WNy6Ns7K Ko+6/4P!u2}S\^yX&6hU `] 8+;fg"6NJRH!8YԶ>(<&<70sJB7eFT## 2pTQj}EmWJ $N@ˬGlή8Z^<>)MC:>O07WI㏸W#?TFjwٳ =x8/ ?x~WYlG 褮A^G)+HI+5m\ɚ,Si,z嬁Om7a]= CP8/gMfs\)_lZ rM= Z=36/|ªH(c?]5Wx4*"KR93#7伜]%ɲ!-^Q!p1< tZSUK=Z ![QFL+2Tf1R RI2ENr8!?&!@o;,m 6B jaܨlׄFڄ*0-MIGάt4WME;I܄Nۜ2'Y@q9S >6ȺVS]͚E&|v{;*S 7D0i(^48|[ I&0)XaX04b8A{xy{8 gFD){:t}MNeг?DIr+' !7GUNjgYWtnr4V6۝ 07"$1#iy }u.i_+K@RFa; *sT`A%zk/jelpve4Zة*dQS8ⶭɔ,l Y+.BX^ c\JGa{_CnS]Toc>^5b8ry4'N֝B&V]iH=[=ટϞ=\N'fuR*rh1a|~+^ Pt#T7^ZR&.I̫#wͪl8ڬW[dFykh'gJy:wY?t~pĈM>lwKM,~ 6ɴi8sufv:[ΤeZjbLȠ֍,Vqm+m̵s^i*5YMfR\mW#þ9M a?d7Nw\1+xd舐1ˢD2 +د҇oR:e,)]TEHٗ IU.d2[< h炟ys?&nP;]r]A\@h :Gl"yC8fVNuܘ|)PLk_g"w6tevlCӄ)e1>;luV*D)@bpq@P0iiX L_=I)TԘ9k .*q Pܐmj\ Ð@2qGلDQZ0'Jfs +s.q66dMfB4ZxJ"#RrE&#q5dFs]/5myW M*=E ҉|xsï~bE-r=TA zW wD?&m{K ܋RX.Њtso=8X,'tptXsGs+36n =f:-n}aƉ!50]rfgSJ8\8wY:gyݬ/]8:jjmv ϖb!@*~CS$);8GkJvҰA7Y|p$Jƺ3A]Bz897˲P)A&.j>S.hܜٍՐj^rX1"+:Z=l7멂ҙdIF%'7HM"bVΘA6`TJL 5 ^0 ҜjeQ/I{L>qIϗQ[98]UZHjKl|`(*Đ}N/ SS۰a6"ʼBp8Ȧyt4z+~/LHWW^9LsEŵ4#M1qopX`v*75=(BCh#@6l,JB%1&8B fE3Vs6&D&)OP^< QL\ؒÏBT;dR1<`jhSVERP!ٱU7F/u]xUj@3d_LBflxA}.`8^X` %0(5ۨ' 'KrFD&̚MCRI?DI@4Wy} -ZKˮQC(Uݜ8"v0Gux+fqq8YXr-t,]k'R͖g,vW pFUExח.+J]_:YC j5N-*!aRf͢MʟR8mJ?9FrylgӦl#PaMӠ\p5F?Fvu^g|fǾB(©B茑t gD}6h4?tHU l[IمD'w/pHRd&y8|aGXZR B4c](2'A݊&?iO ǴPFնrcT3+E^u? ߨIy]PȀrnc'VMnjKt#&X9=p]<;qYPH~I& Ǻ{h ^ᦙ6oA{#=E>-: b`G2Q0sȲ ƠĆA)G5x]85֟\>Eӟ6&J!m|dbCL%CH R*JnJcfQ֎Hj;תr%ҫ]0SB^6rR \ h]uv}h'SW?jyj0>.m*kܐ{uVrA_S M\ ٖOAfaoYg]P-įKXWWJbqt\!eYY@ɆØ5^, KLg0,[ v] 2?DD lh0NO6]ynK-<+x e(`O[MPl5P<,˜dN#sPI]zl@CY,ޅ~ب!n΢/C ~ ,\sgFRU+2=I8 N-L7)IxbtаX\f VaIy51c=T>r+!'CU@$&تNԂUۚ>ڸvg23Id.MܜlQ>rP-%vxxvժ+p>],'4 ;z]?sHdHYA](AEu,{MmV0ϦsMC٬q9lwv>9XRXyr!xBe]jgM;Mzb̎M} 7eq#{jk7SVgj8X*LZ&\Wy:XF1g@?GYs<<.ҕX2c9_A:G<]W9pRK" OE$k3]DyC͕ bVF {l~Fi[ZM {TՃ>XUz|ח. c5'vR8~3Gsr1_6TR/Ed7 A/:$9)Rrko.]Qnw|,%6 +%vcbSV;wlVM ~iV':_V4 ytqtCZݦ̲an]>^2Ze^ͥ[e,* ^Xqt/rJڝu6&6DVG ZS:q ؆ ~+^tY=@=xh}Ӛ:~ߔ%KSe*9ڬKg#tƑօP}$NaJ7/TFIYd0VNJ"h*yaȕDQiWWUVXୃ{b0-6HFH}! Eg C#8#qALyX;JXL#`&D&|̚9"O{/^SzWWҀ )۬B_.J`Zb$a~J٬rSznr7Ϛ_4;R:@2` .3pd8y"LʃCbmX,u0\]C~PUA$|B'i-Wf&aMaH]G|0cr#&w9ٗ&fY-v+HLW EOtk7l}2*v.^R5HLe^MZ(v j{F<<ꆹS"-?!Z`ڇrĀL^9+9ESmS]yf{Z & &,Xl GLWe@^YE' +Uv]pC_?/S@~$d3; ݊Y嚪JȂ!?^T!zkL= |z13ai/h }0a#_Jf=FYkmPsr< Pm D9JH@o2Â3ɌSVVq,x%lC]0pͣS *B2$fLsfId䞼^mbHR Y[赊ΛeBt,470.Nv)\lHQ1r,LNGk]cRո=d ;,^N% `GHe pD;mfT[oAA߭ͤFp+*ӓ2zզ`2-T]5Xk2F-t*~5Hg:46)/xݳaĮʹgCU~u$ eو5DZBŀ8Fg jS瑎UCPl #[YYq\R&~R 8u)<:mF0q"  51cCy?,u7k0cC.y8C1S}šm4X! :ypB̈́WRNhow56 3x-fNO<6+dͫW]ωs  lMO^0Uq` KO (c_9 j/l_73Sc$Ӎ؛2y᰺\Z=p{T&T=Z[ 6vI15PÉ 4•JcUeX#3!Ry$H9JK)ϔqNBJ!z44~]B9M\U%w0 V W3*^Y*V݅1 FFQt/"rF'1*h tp- p%Þʛ634QF㽰U@IW4wK1iaG;B%)̗d>%% 2j+&&!t~f(@l=7Б V$xĪb`pW1ybT$ɠCrA#p;$eT>17nKYAlLUykF6$ɩlk#U#ܲY3[4`clDW z%A702!:$\)n Kf}2ϮdF>R6Y T\K EeO 9KiHMVd)e|>ǻF FIN|f`S=XƔe*dc5ے E SZ-i񙭨8nRW%Ȳ&Gy d "`FF ̵<}*~”{{|SɓYp^] _|F r@X0%OٷMUa4O'ZgIA~?<e; #~8y8ş@KM2Բ1H HfrpJ*/tXzGV8DCvVP lVV`].rӖi#9$ZCAePʻbYSjJA2ys@0yXؓ\+h0qZ&EV3fES% 5.hŏ2@Qڐ񷑵'WPTdB1OVެ[SKW7ɦ -69"?g6W&c+kO`Մ\IXrkz`O9ũĽ]鑉; =+SG4 s>_x┏2p&ye~Sr?DsI6Unwᤋbō3(ͷ+G}+Wn q YJcәIMͬ~FI[ u]<8_=d"ib^7,E iJ ٓɴ^|+1:jG6FGǠ;f/FTQl@@ u4# ڕSZe/(!~<ɗV\L[PdHI̤}61ay0=+c/*~ꦀ#"6Tier6]2|l.Q#7@1{[VS"Ny52bjmk742]1i}> upP;pp^}k4*TP}!Ò 6Js9MJ1+yNF%Ae/(X|BP p Q> XflZǐ) qPx` fҥr1OZ? c&LrƘDҿSm9J{ϒj,0m7b# QnhF/N6FpyJf=p6!L=$vr@S)G9A%#:52Z#0V zмxB=Rk>\GUMmXYcg>mn!:{uNLkdj;TeX_aGET=ƥ;G> USk/c*sg(ji.wؙKFd}~;.޿vecehsw,'= f=_6YgUnˡn,)AlRpY6X=TbGG"(q& Ws }Qu "]$Far`pC' 3U`TTecjXW  $W͞D.]FޗeyIH*nBϤQ!hy zoՌ*(yj?f7՚1 Bt3`2qTnރ1;mqDH?RMVBeYz3 W锈 H:|ZК] ,1ŸȖ!Gǯ%Hן^g4@XOgzbcFmU !z,-6ާ:$﹈ȺOU.kSˠeF3k18Z LZV|* <,f>*6Qĥb#gTdXˮ kI$,fapq{HIƴu=x+W^N'5~t ~opL2%̖ZdBO+Vw}dlL2jveyjdתTyIZ߱Js FCƇ[c7DZXr% b!/M6'vӼ_| | | |<_-<| . \<_> || . \/ ._>| '_> |_\_|\___.|__/_/ /__/| _/<___|| _/\___.|_| |_| |_| ~ tagDiv 2021 ~ Thanks for using our theme ! Our portfolio is here: http://tagdiv.com */ :root { --td_theme_color: #4db2ec; --td_grid_border_color: #ededed; --td_black: #222; --td_text_color: #111; --td_default_google_font_1: 'Open Sans', 'Open Sans Regular', sans-serif; --td_default_google_font_2: 'Roboto', sans-serif; } /* ---------------------------------------------------------------------------- responsive settings */ /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ .mx_image_background { background-color: #f2f2f2; } .td-visibility-hidden { visibility: hidden; } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } /* usage: .td-block-row { .mx-row(td-block-span); } @all_span_selector - is the begining of the span selector */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove default margin. */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 * and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { display: block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */ [hidden], template { display: none; } /* Links ========================================================================== */ /** * Remove the gray background color from active links in IE 10. */ a { background-color: transparent; } /** * Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* Text-level semantics ========================================================================== */ /** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; } /** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; } /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* Embedded content ========================================================================== */ /** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; } /** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Address margin not present in IE 8/9 and Safari. */ figure { margin: 0; } /** * Address differences between Firefox and other browsers. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** * Contain overflow in all browsers. */ pre { overflow: auto; } /** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known limitation: by default, Chrome and Safari on OS X allow very limited * styling of `select`, unless a `border` property is set. */ /** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ } /** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. * Correct `select` style inheritance in Firefox. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ input { line-height: normal; } /** * It's recommended that you don't attempt to style these elements. * Firefox's implementation doesn't respect box-sizing, padding, or width. * * 1. Address box sizing set to `content-box` in IE 8/9/10. * 2. Remove excess padding in IE 8/9/10. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Fix the cursor style for Chrome's increment/decrement buttons. For certain * `font-size` values of the `input`, it causes the cursor style of the * decrement button to change from `default` to `text`. */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Address `appearance` set to `searchfield` in Safari and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome * (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** * Remove inner padding and search cancel button in Safari and Chrome on OS X. * Safari (but not Chrome) clips the cancel button when the search input has * padding (and `textfield` appearance). */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct `color` not being inherited in IE 8/9/10/11. * 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** * Remove default vertical scrollbar in IE 8/9/10/11. */ textarea { overflow: auto; } /** * Don't inherit the `font-weight` (applied by a rule above). * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */ optgroup { font-weight: bold; } /* Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /* 4. Theme Grid */ * { -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; /* Opera/IE 8+ */ } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } img { max-width: 100%; height: auto; } .td-main-content-wrap, .td-category-grid { background-color: #fff; } .td-page-meta { display: none; } /* ---------------------------------------------------------------------------- container */ .td-container, .tdc-row, .tdc-row-composer { width: 1068px; margin-right: auto; margin-left: auto; } .td-container:before, .tdc-row:before, .tdc-row-composer:before, .td-container:after, .tdc-row:after, .tdc-row-composer:after { display: table; content: ''; line-height: 0; } .td-container:after, .tdc-row:after, .tdc-row-composer:after { clear: both; } .tdc-row[class*="stretch_row"] > .td-pb-row > .td-element-style, .tdc-row-composer[class*="stretch_row"] > .td-pb-row > .td-element-style { width: 100vw !important; left: 50% !important; transform: translateX(-50%) !important; } @media (max-width: 767px) { .td-pb-row > .td-element-style { width: 100vw !important; left: 50% !important; transform: translateX(-50%) !important; } } .td-md-is-ios .tdc-row[class*="stretch_row"] > .td-pb-row > .td-element-style, .td-md-is-ios .tdc-row-composer[class*="stretch_row"] > .td-pb-row > .td-element-style { width: calc(100vw + 1px) !important; } @media (max-width: 767px) { .td-md-is-ios .td-pb-row > .td-element-style { width: calc(100vw + 1px) !important; } } .vc_inner.absolute_inner { /* responsive portrait tablet */ /* responsive portrait tablet */ } @media (min-width: 1019px) { .vc_inner.absolute_inner { padding-left: 20px; padding-right: 20px; } } @media (min-width: 768px) and (max-width: 1018px) { .vc_inner.absolute_inner { padding-left: 14px; padding-right: 14px; } } .vc_inner.absolute_inner_full { width: 100% !important; } .vc_inner.absolute_inner_1068 { width: 100% !important; max-width: 1156px; left: 0; right: 0; margin: 0 auto; /* responsive landscape tablet */ /* responsive portrait tablet */ } @media (min-width: 1019px) and (max-width: 1140px) { .vc_inner.absolute_inner_1068 { max-width: 1020px; padding-left: 0; padding-right: 0; } } @media (min-width: 768px) and (max-width: 1018px) { .vc_inner.absolute_inner_1068 { max-width: 768px; padding-left: 0; padding-right: 0; } } .tdc-row.stretch_row_1200, .tdc-row-composer.stretch_row_1200 { width: auto !important; max-width: 1240px; /* responsive desktop */ /* responsive landscape tablet */ } .tdc-row.stretch_row_1200 > .td-pb-row, .tdc-row-composer.stretch_row_1200 > .td-pb-row { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tdc-row.stretch_row_1200 > .td-pb-row, .tdc-row-composer.stretch_row_1200 > .td-pb-row { margin-right: 0; margin-left: 0; } } @media (min-width: 1141px) { .tdc-row.stretch_row_1200, .tdc-row-composer.stretch_row_1200 { padding-left: 24px; padding-right: 24px; } } @media (min-width: 1019px) and (max-width: 1140px) { .tdc-row.stretch_row_1200, .tdc-row-composer.stretch_row_1200 { padding-left: 20px; padding-right: 20px; } } .vc_inner.absolute_inner_1200 { width: 100% !important; max-width: 1248px; left: 0; right: 0; margin: 0 auto; } .tdc-row.stretch_row_1400, .tdc-row-composer.stretch_row_1400 { width: auto !important; max-width: 1440px; /* responsive desktop */ /* responsive landscape tablet */ } .tdc-row.stretch_row_1400 > .td-pb-row, .tdc-row-composer.stretch_row_1400 > .td-pb-row { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tdc-row.stretch_row_1400 > .td-pb-row, .tdc-row-composer.stretch_row_1400 > .td-pb-row { margin-right: 0; margin-left: 0; } } @media (min-width: 1141px) { .tdc-row.stretch_row_1400, .tdc-row-composer.stretch_row_1400 { padding-left: 24px; padding-right: 24px; } } @media (min-width: 1019px) and (max-width: 1140px) { .tdc-row.stretch_row_1400, .tdc-row-composer.stretch_row_1400 { padding-left: 20px; padding-right: 20px; } } .vc_inner.absolute_inner_1400 { width: 100% !important; max-width: 1448px; left: 0; right: 0; margin: 0 auto; } .tdc-row.stretch_row_1600, .tdc-row-composer.stretch_row_1600 { width: auto !important; max-width: 1640px; /* responsive desktop */ /* responsive landscape tablet */ } .tdc-row.stretch_row_1600 > .td-pb-row, .tdc-row-composer.stretch_row_1600 > .td-pb-row { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tdc-row.stretch_row_1600 > .td-pb-row, .tdc-row-composer.stretch_row_1600 > .td-pb-row { margin-right: 0; margin-left: 0; } } @media (min-width: 1141px) { .tdc-row.stretch_row_1600, .tdc-row-composer.stretch_row_1600 { padding-left: 24px; padding-right: 24px; } } @media (min-width: 1019px) and (max-width: 1140px) { .tdc-row.stretch_row_1600, .tdc-row-composer.stretch_row_1600 { padding-left: 20px; padding-right: 20px; } } .vc_inner.absolute_inner_1600 { width: 100% !important; max-width: 1648px; left: 0; right: 0; margin: 0 auto; } .tdc-row.stretch_row_1800, .tdc-row-composer.stretch_row_1800 { width: auto !important; max-width: 1840px; /* responsive desktop */ /* responsive landscape tablet */ } .tdc-row.stretch_row_1800 > .td-pb-row, .tdc-row-composer.stretch_row_1800 > .td-pb-row { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tdc-row.stretch_row_1800 > .td-pb-row, .tdc-row-composer.stretch_row_1800 > .td-pb-row { margin-right: 0; margin-left: 0; } } @media (min-width: 1141px) { .tdc-row.stretch_row_1800, .tdc-row-composer.stretch_row_1800 { padding-left: 24px; padding-right: 24px; } } @media (min-width: 1019px) and (max-width: 1140px) { .tdc-row.stretch_row_1800, .tdc-row-composer.stretch_row_1800 { padding-left: 20px; padding-right: 20px; } } .vc_inner.absolute_inner_1800 { width: 100% !important; max-width: 1848px; left: 0; right: 0; margin: 0 auto; } .tdc-row.stretch_row_content, .tdc-row-composer.stretch_row_content { width: 100% !important; } .tdc-row.stretch_row_content_no_space, .tdc-row-composer.stretch_row_content_no_space { width: 100% !important; } .tdc-row.stretch_row_content_no_space > .td-pb-row, .tdc-row-composer.stretch_row_content_no_space > .td-pb-row { margin-left: 0; margin-right: 0; } .tdc-row.td-stretch-content, .tdc-row-composer.td-stretch-content { /* responsive portrait phone */ } @media (max-width: 767px) { .tdc-row.td-stretch-content, .tdc-row-composer.td-stretch-content { padding-left: 20px; padding-right: 20px; } } /* ---------------------------------------------------------------------------- rows */ .td-pb-row { *zoom: 1; margin-right: -24px; margin-left: -24px; position: relative; } .td-pb-row:before, .td-pb-row:after { display: table; content: ''; } .td-pb-row:after { clear: both; } .td-boxed-layout .vc_row { width: auto; left: 0; padding-left: 0; padding-right: 0; } /* ---------------------------------------------------------------------------- all spans */ .td-pb-row [class*="td-pb-span"] { display: block; min-height: 1px; float: left; padding-right: 24px; padding-left: 24px; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ position: relative; } @media (min-width: 1019px) and (max-width: 1140px) { .td-pb-row [class*="td-pb-span"] { padding-right: 20px; padding-left: 20px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-row [class*="td-pb-span"] { padding-right: 14px; padding-left: 14px; } } @media (max-width: 767px) { .td-pb-row [class*="td-pb-span"] { padding-right: 0; padding-left: 0; float: none; width: 100%; } } .vc_row-no-padding.td-pb-row [class*="td-pb-span"] { padding-left: 0; padding-right: 0; } /* ---------------------------------------------------------------------------- smart sidebar - fix */ .td-ss-main-sidebar, .td-ss-row .td-pb-span4 .wpb_wrapper { -webkit-backface-visibility: hidden; -webkit-perspective: 1000; } /* ---------------------------------------------------------------------------- main grid */ .td-pb-span1 { width: 8.33333333%; } .td-pb-span2 { width: 16.66666667%; } .td-pb-span3 { width: 25%; } .td-pb-span4 { width: 33.33333333%; } .td-pb-span5 { width: 41.66666667%; } .td-pb-span6 { width: 50%; } .td-pb-span7 { width: 58.33333333%; } .td-pb-span8 { width: 66.66666667%; } .td-pb-span9 { width: 75%; } .td-pb-span10 { width: 83.33333333%; } .td-pb-span11 { width: 91.66666667%; } .td-pb-span12 { width: 100%; } /* ---------------------------------------------------------------------------- hacks Visual Composer */ .wpb_row { margin-bottom: 0; } .vc_col-has-fill > .vc_column-inner, .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner, .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner, .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner, .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner, .vc_row-has-fill > .vc_column_container > .vc_column-inner, .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner, .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner { padding-top: 0; } .vc_row .vc_column-inner { padding-left: 0; padding-right: 0; } /* block row + global block spans */ .td-block-row { *zoom: 1; margin-left: -24px; margin-right: -24px; } .td-block-row:before, .td-block-row:after { display: table; content: ''; } .td-block-row:after { clear: both; } .td-block-row [class*="td-block-span"] { display: block; min-height: 1px; float: left; padding-right: 24px; padding-left: 24px; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-block-row [class*="td-block-span"] { padding-right: 20px; padding-left: 20px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-block-row [class*="td-block-span"] { padding-right: 14px; padding-left: 14px; } } @media (max-width: 767px) { .td-block-row [class*="td-block-span"] { padding-right: 0; padding-left: 0; float: none; width: 100%; } } .td-block-span1 { width: 8.33333333%; } .td-block-span2 { width: 16.66666667%; } .td-block-span3 { width: 25%; } .td-block-span4 { width: 33.33333333%; } .td-block-span5 { width: 41.66666667%; } .td-block-span6 { width: 50%; } .td-block-span7 { width: 58.33333333%; } .td-block-span8 { width: 66.66666667%; } .td-block-span9 { width: 75%; } .td-block-span10 { width: 83.33333333%; } .td-block-span11 { width: 91.66666667%; } .td-block-span12 { width: 100%; } /* responsive landscape tablet */ @media (min-width: 1019px) and (max-width: 1140px) { .td-container, .tdc-row, .tdc-row-composer { width: 980px; } .td-pb-row, .td-block-row { margin-right: -20px; margin-left: -20px; } } /* responsive portrait tablet */ @media (min-width: 768px) and (max-width: 1018px) { .td-container, .tdc-row, .tdc-row-composer { width: 740px; } .td-pb-row, .td-block-row { margin-right: -14px; margin-left: -14px; } } /* responsive portrait phone */ @media (max-width: 767px) { .td-container, .tdc-row, .tdc-row-composer { width: 100%; padding-left: 20px; padding-right: 20px; } .td-pb-row, .td-block-row { width: 100%; margin-left: 0; margin-right: 0; } } /* ---------------------------------------------------------------------------- header grid container */ .td-header-wrap { position: relative; z-index: 2000; } /* header rows */ .td-header-row { *zoom: 1; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); } .td-header-row:before, .td-header-row:after { display: table; content: ''; } .td-header-row:after { clear: both; } .td-header-row [class*="td-header-sp"] { display: block; min-height: 1px; float: left; padding-right: 24px; padding-left: 24px; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-header-row [class*="td-header-sp"] { padding-right: 20px; padding-left: 20px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-header-row [class*="td-header-sp"] { padding-right: 14px; padding-left: 14px; } } @media (max-width: 767px) { .td-header-row [class*="td-header-sp"] { padding-right: 0; padding-left: 0; float: none; width: 100%; } } .td-header-gradient:before { content: ""; background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAMBAMAAABRpcpkAAAAD1BMVEUAAAAAAAAAAAAAAAAAAABPDueNAAAABXRSTlMGAhQQCyEd++8AAAAUSURBVAjXY1AAQgMgdABCCBAAQQAT6AFRBPHcWgAAAABJRU5ErkJggg=='); width: 100%; height: 12px; position: absolute; left: 0; bottom: -12px; z-index: 1; } /* ---------------------------------------------------------------------------- logo */ .td-logo { margin: 0; padding: 0; line-height: inherit; font-size: inherit !important; } /* ---------------------------------------------------------------------------- Search */ /* the search button */ #td-header-search-button { /* responsive portrait phone */ } @media (max-width: 767px) { #td-header-search-button { display: none; } } #td-header-search-button-mob { display: none; /* responsive portrait phone */ } @media (max-width: 767px) { #td-header-search-button-mob { display: block; } } /* the search drop down */ .td-search-box-wrap { position: absolute; top: 100%; right: 0; } #td-top-search { position: absolute; right: 0; top: 50%; margin-top: -24px; /* responsive portrait phone */ } @media (max-width: 767px) { #td-top-search { top: 0; margin-top: 0; } } /* responsive without mobile */ @media (min-width: 768px) { .td-drop-down-search .td-search-form { margin: 20px; } } .td-header-wrap .td-drop-down-search { position: absolute; top: 100%; right: 0; visibility: hidden; opacity: 0; -webkit-transition: all 0.4s ease; transition: all 0.4s ease; transform: translate3d(0, 20px, 0); -webkit-transform: translate3d(0, 20px, 0); background-color: #fff; -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); border-top: 0; width: 342px; pointer-events: none; /* this class is added by the js to open the menu - will be used for animation */ /* search form */ /* triangle top */ } .td-header-wrap .td-drop-down-search.td-drop-down-search-open { visibility: visible; opacity: 1; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); pointer-events: auto; } .td-header-wrap .td-drop-down-search .btn { position: absolute; height: 32px; min-width: 67px; line-height: 17px; padding: 7px 15px 8px; text-shadow: none; vertical-align: top; right: 20px; margin: 0 !important; -webkit-transition: background-color 0.4s; transition: background-color 0.4s; } .td-header-wrap .td-drop-down-search .btn:hover { background-color: var(--td_theme_color, #4db2ec); } .td-header-wrap .td-drop-down-search:before { position: absolute; top: -9px; right: 19px; display: block; content: ''; width: 0; height: 0; border-style: solid; border-width: 0 5.5px 6px 5.5px; border-color: transparent transparent var(--td_theme_color, #4db2ec) transparent; } .td-header-wrap .td-drop-down-search:after { position: absolute; top: -3px; display: block; content: ''; right: 0; left: 0; margin: 0 auto; width: 100%; height: 3px; background-color: var(--td_theme_color, #4db2ec); } .td-header-wrap #td-header-search { width: 235px; height: 32px; margin: 0; border-right: 0; line-height: 17px; border-color: #eaeaea !important; /* responsive portrait phone */ } @media (max-width: 767px) { .td-header-wrap #td-header-search { width: 91%; font-size: 16px; } } .td-header-wrap .td-post-category { z-index: 2; position: relative; } .td-header-wrap .meta-info { line-height: 14px; } /* ------------------------------------------------------------------- Headers style ---------------------------------------------------------------------- */ /* General */ .td-banner-wrap-full { position: relative; } .td-header-menu-wrap-full { z-index: 9998; position: relative; } /* responsive portrait phone */ @media (max-width: 767px) { .td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-main-menu { background-color: var(--td_mobile_menu_color, #222222) !important; height: 54px !important; } .header-search-wrap .td-icon-search { color: var(--td_mobile_icons_color, #ffffff) !important; } } /* ----------------------------------------------- */ .td-logo-text-container { display: inline-block; vertical-align: middle; line-height: 1; z-index: 1; } .td-logo-text-container span { display: inline-block; width: 100%; } .td-logo-text-container .td-logo-text { font-size: 75px; font-family: serif; color: #222; line-height: 1; /* responsive portrait phone */ } @media (max-width: 767px) { .td-logo-text-container .td-logo-text { font-size: 36px; } } .td-logo-text-container .td-logo { line-height: 1 !important; } .td-logo-text-container .td-tagline-text { letter-spacing: 1.8px; font-size: 12px; font-family: serif; color: #777; padding-top: 2px; padding-bottom: 10px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-logo-text-container .td-tagline-text { font-size: 11px; } } .td-header-wrap .td-header-menu-wrap-full { background-color: #fff; } /* ------------------------------------------------------------------- Style Default ---------------------------------------------------------------------- */ .td-header-style-1 .td-logo-text-wrap { min-height: 130px; line-height: 130px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-header-style-1 .td-logo-text-wrap { line-height: 90px; min-height: 90px; } } .td-header-style-1 .td-logo-text-wrap a { position: relative; z-index: 1; line-height: 130px; display: inline-block; vertical-align: middle; /* responsive portrait phone */ } @media (max-width: 767px) { .td-header-style-1 .td-logo-text-wrap a { line-height: 90px; } } .td-header-style-1 .td-logo-text-wrap .td-logo { line-height: 130px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-header-style-1 .td-logo-text-wrap .td-logo { line-height: 90px; } } .td-header-style-1 .td-logo-text-container a { line-height: 1; } .td-header-style-1 .td-header-sp-logo { text-align: center; } .td-header-style-1 .header-search-wrap .td-icon-search { color: #000; /* responsive portrait phone */ } @media (max-width: 767px) { .td-header-style-1 .header-search-wrap .td-icon-search { color: #fff; } } .td-header-style-1 .td-header-menu-wrap-full { position: relative; } /* ---------------------------------------------------------------------------- main menu */ .td-header-main-menu { position: relative; z-index: 999; padding-right: 48px; } @media (max-width: 767px) { .td-header-main-menu { padding-right: 64px; padding-left: 2px; } } .td-header-menu-no-search .td-header-main-menu { padding-right: 0; } /* ---------------------------------------------------------------------------- SF menu */ .sf-menu, .sf-menu ul, .sf-menu li { margin: 0; list-style: none; } /* responsive phone */ @media (max-width: 767px) { .sf-menu { display: none; } } .sf-menu ul { position: absolute; top: -999em; width: 10em; /* left offset of submenus need to match (see below) */ } .sf-menu > li.td-normal-menu > ul.sub-menu { left: -15px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu > li.td-normal-menu > ul.sub-menu { left: -5px; } } .sf-menu ul li { width: 100%; } .sf-menu li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ } .sf-menu li { float: left; position: relative; } .sf-menu li .fa { margin-right: 10px; font-size: 1.4em; vertical-align: middle; position: relative; top: -1px; } .sf-menu li .td-only-icon { margin-right: 0; } .sf-menu .td-menu-item > a { display: block; position: relative; } .sf-menu li:hover ul, .sf-menu li.sfHover ul { left: 0; top: auto; z-index: 99; } ul.sf-menu li:hover li ul, ul.sf-menu li.sfHover li ul { top: -999em; } ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul { left: 10em; /* match ul width */ top: 0 !important; } ul.sf-menu li li:hover li ul, ul.sf-menu li li.sfHover li ul { top: -999em; } .sf-menu > .current-menu-ancestor, .sf-menu > .current-category-ancestor, .sf-menu > .current-menu-item { z-index: 0; } /* ---------------------------------------------------------------------------- All the links */ /* remove the down arrow on links with (icons menus) */ .td-no-down-arrow > a .sf-sub-indicator { display: none; } .sf-menu > li > a { padding: 0 14px; line-height: 48px; font-size: 14px; color: #000; font-weight: 700; text-transform: uppercase; -webkit-backface-visibility: hidden; } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu > li > a { padding: 0 9px; font-size: 11px; } } /* menu icons */ .sf-menu .menu_icon { position: relative; top: 13px; float: left; } .sf-menu .sub-menu .menu_icon { top: 0; } .sf-menu .menu_hidden { display: none !important; } /* hover and current menu */ .sf-menu > .current-menu-item > a, .sf-menu > .current-menu-ancestor > a, .sf-menu > .current-category-ancestor > a, .sf-menu > li > a:hover, .sf-menu > .sfHover, .sf-menu > .sfHover > a { z-index: 999; } .sf-menu > .current-menu-item > a, .sf-menu > .current-menu-ancestor > a, .sf-menu > .current-category-ancestor > a, .sf-menu > li > a:hover, .sf-menu > .sfHover > a { background-color: transparent; } .td-affix { /* hover and current menu */ } .td-affix .sf-menu > .current-menu-item > a, .td-affix .sf-menu > .current-menu-ancestor > a, .td-affix .sf-menu > .current-category-ancestor > a, .td-affix .sf-menu > li > a:hover, .td-affix .sf-menu > .sfHover > a { background-color: transparent; } /* Bottom border on Main Menu */ .sf-menu > li > a:after { background-color: transparent; content: ''; width: 0; height: 3px; position: absolute; bottom: 0; left: 0; right: 0; margin: 0 auto; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); -webkit-transition: width 0.2s ease; transition: width 0.2s ease; } /* hover and current menu border */ .sf-menu > .current-menu-item > a:after, .sf-menu > .current-menu-ancestor > a:after, .sf-menu > .current-category-ancestor > a:after, .sf-menu > li:hover > a:after, .sf-menu > .sfHover > a:after { background-color: var(--td_theme_color, #4db2ec); width: 100%; } #td-header-menu { display: inline-block; vertical-align: top; } /* ---------------------------------------------------------------------------- submenu */ .td-normal-menu ul { box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15); } .sf-menu .td-normal-menu ul { padding: 15px 0; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu .td-normal-menu ul { padding: 8px 0; } } .sf-menu .td-normal-menu ul ul { margin: -15px 0; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu .td-normal-menu ul ul { margin: -8px 0; } } .sf-menu ul { background-color: #fff; } .sf-menu ul .td-menu-item > a { padding: 7px 30px; font-size: 12px; line-height: 20px; color: #111; } .sf-menu ul .td-menu-item > a .fa { font-size: 1em; position: relative; top: -1px; width: 20px; margin-right: 5px; text-align: center; } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu ul .td-menu-item > a { padding: 5px 16px 6px; font-size: 11px; } } .sf-menu ul .td-icon-menu-down { float: right; top: 0; font-size: 7px; } .sf-menu ul .td-menu-item > a:hover, .sf-menu ul .sfHover > a, .sf-menu ul .current-menu-ancestor > a, .sf-menu ul .current-category-ancestor > a, .sf-menu ul .current-menu-item > a { color: var(--td_theme_color, #4db2ec); } .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active { outline: 0; } /* ---------------------------------------------------------------------------- arrows */ .sf-menu .td-icon-menu-down { position: absolute; top: 50%; margin-top: -5px; padding-left: 7px; font-size: 9px; } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu .td-icon-menu-down { padding-left: 6px; } } .sf-menu .sub-menu { -webkit-backface-visibility: hidden; } .sf-menu .sub-menu .td-icon-menu-down { position: absolute; top: 50%; right: 19px; margin-top: -9px; line-height: 19px; } .td-menu-badge { font-size: 10px; background-color: #f0f8ff; color: var(--td_theme_color, #4db2ec); border-radius: 10px; padding: 3px 7px 4px; display: inline-block; margin-left: 6px; margin-right: -4px; line-height: 1; position: relative; top: -1px; } .td-menu-badge-right { top: 2px; float: right; right: -8px; background-color: rgba(0, 0, 0, 0.03); color: #999; } .td-menu-subtitle { font-style: italic; font-size: 10px; display: block; line-height: 1; padding-right: 20px; color: #999; } .td-menu-badge-width > ul { min-width: 220px; } .td-menu-badge-width > ul li:hover .td-menu-badge { background-color: #f0f8ff; color: var(--td_theme_color, #4db2ec); } .td-menu-border { border-bottom: 1px solid #f3f3f3; display: block; padding-bottom: 12px; } /* responsive portrait phone */ @media (max-width: 767px) { .td-menu-badge, .td-menu-subtitle, .td-menu-border { display: none; } } .sf-menu a.sf-with-ul { padding-right: 31px; min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */ } @media (min-width: 768px) and (max-width: 1018px) { .sf-menu a.sf-with-ul { padding-right: 22px; } } /* arrow for all items in the menues */ a.sf-with-ul i.td-icon-menu-down:before { content: '\e808'; } /* arrow for all items in the menues AT FIRST LEVEL*/ ul.sf-js-enabled > li > a > i.td-icon-menu-down:before { content: '\e806' !important; } /* ---------------------------------------------------------------------------- Search */ .header-search-wrap { position: absolute; top: 0; right: 0; z-index: 999; } .header-search-wrap .td-icon-search { display: inline-block; font-size: 19px; width: 48px; line-height: 48px; text-align: center; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .header-search-wrap .td-icon-search { font-size: 15px; } } @media (max-width: 767px) { .header-search-wrap .td-icon-search { height: 54px; width: 54px; line-height: 54px; font-size: 22px; margin-right: 2px; } } .td-header-menu-social + .td-search-wrapper #td-header-search-button { position: relative; } .td-header-menu-social + .td-search-wrapper #td-header-search-button:before { content: ''; position: absolute; top: 0; left: 0; width: 1px; height: 100%; background-color: #000; opacity: 0.08; /* responsive tablet + phone */ } @media (max-width: 1140px) { .td-header-menu-social + .td-search-wrapper #td-header-search-button:before { display: none; } } .td-demo-multicolumn-2 .sub-menu { padding: 14px; -moz-column-count: 2; -webkit-column-count: 2; column-count: 2; } .td-menu-mob-open-menu .td-demo-multicolumn-2 .sub-menu { padding: 0; -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } .td-menu-mob-open-menu .td-demo-menuitem-hide { display: none; } .td-demo-menuitem-hide { visibility: hidden; } .td-mega-menu-page .sub-menu ul { display: inline-block !important; position: initial !important; width: auto !important; } /* Mobile menu */ #td-outer-wrap { overflow: hidden; /* responsive portrait phone */ } @media (max-width: 767px) { #td-outer-wrap { margin: auto; width: 100%; -webkit-transition: transform 0.7s ease; transition: transform 0.7s ease; -webkit-transform-origin: 50% 200px 0; transform-origin: 50% 200px 0; } } /* toggle button - burger button */ #td-top-mobile-toggle { display: none; /* responsive phone */ } @media (max-width: 767px) { #td-top-mobile-toggle { display: inline-block; position: relative; } } #td-top-mobile-toggle a { display: inline-block; } #td-top-mobile-toggle i { font-size: 27px; width: 64px; line-height: 54px; height: 54px; display: inline-block; padding-top: 1px; color: var(--td_mobile_icons_color, #ffffff); } /* Mobile opened menu with admin bar */ .admin-bar #td-mobile-nav { padding-top: 32px; } @media (max-width: 767px) { .admin-bar #td-mobile-nav { padding-top: 46px; } } .td-menu-background { background-repeat: var(--td_mobile_background_repeat, no-repeat); background-size: var(--td_mobile_background_size, cover); background-position: var(--td_mobile_background_size, center top); position: fixed; top: 0; display: block; width: 100%; height: 113%; z-index: 9999; visibility: hidden; transform: translate3d(-100%, 0, 0); -webkit-transform: translate3d(-100%, 0, 0); } .td-menu-background:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; opacity: 0.98; background: #313b45; background: -webkit-gradient(left top, left bottom, color-stop(0%, var(--td_mobile_gradient_one_mob, #313b45)), color-stop(100%, var(--td_mobile_gradient_two_mob, #3393b8))); background: linear-gradient(to bottom, var(--td_mobile_gradient_one_mob, #313b45) 0%, var(--td_mobile_gradient_two_mob, #3393b8) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--td_mobile_gradient_one_mob, #313b45)', endColorstr='var(--td_mobile_gradient_two_mob, #3393b8)', GradientType=0); } #td-mobile-nav { padding: 0; position: fixed; width: 100%; height: calc(100% + 1px); top: 0; z-index: 9999; visibility: hidden; transform: translate3d(-99%, 0, 0); -webkit-transform: translate3d(-99%, 0, 0); left: -1%; font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; } #td-mobile-nav .td_display_err { text-align: center; color: var(--td_mobile_text_color, #ffffff); border: none; -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16); box-shadow: 0 0 8px rgba(0, 0, 0, 0.16); margin: -9px -30px 24px; font-size: 14px; border-radius: 0; padding: 12px; position: relative; background-color: rgba(255, 255, 255, 0.06); display: none; } #td-mobile-nav input:invalid { box-shadow: none !important; } .td-js-loaded .td-menu-background, .td-js-loaded #td-mobile-nav { visibility: visible !important; -webkit-transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86); transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86); } #td-mobile-nav { height: 1px; overflow: hidden; } #td-mobile-nav .td-menu-socials { padding: 0 65px 0 20px; overflow: hidden; height: 60px; } #td-mobile-nav .td-social-icon-wrap { margin: 20px 5px 0 0; display: inline-block; } #td-mobile-nav .td-social-icon-wrap i { border: none; background-color: transparent; font-size: 14px; width: 40px; height: 40px; line-height: 38px; color: var(--td_mobile_text_color, #ffffff); vertical-align: middle; } #td-mobile-nav .td-social-icon-wrap .td-icon-instagram { font-size: 16px; } .td-mobile-close { position: absolute; right: 1px; top: 0; z-index: 1000; } .td-mobile-close .td-icon-close-mobile { height: 70px; width: 70px; line-height: 70px; font-size: 21px; color: var(--td_mobile_text_color, #ffffff); top: 4px; position: relative; } .td-mobile-content { padding: 20px 20px 0; } .td-mobile-container { padding-bottom: 20px; position: relative; } .td-mobile-content { /* first submenu */ /* hide the icons */ /* reposition the main menu */ } .td-mobile-content .fa { margin-right: 10px; min-width: 22px !important; display: inline-block; font-size: 18px; text-align: center; position: relative; top: -1px; } .td-mobile-content .sub-menu .fa { margin-right: 5px; min-width: 16px !important; font-size: 13px; } .td-mobile-content ul { list-style: none; margin: 0; padding: 0; } .td-mobile-content li { float: none; margin-left: 0; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; } .td-mobile-content li a { display: block; line-height: 21px; font-size: 21px; color: var(--td_mobile_text_color, #ffffff); margin-left: 0; padding: 12px 30px 12px 12px; font-weight: bold; } .td-mobile-content .td_mobile_submenu > a .td-icon-menu-right { display: inline-block; } .td-mobile-content .td-icon-menu-right { display: none; position: absolute; cursor: pointer; top: 10px; right: -4px; z-index: 1000; font-size: 14px; padding: 6px 12px; float: right; color: var(--td_mobile_text_color, #ffffff); -webkit-transform-origin: 50% 48% 0px; transform-origin: 50% 48% 0px; -webkit-transition: transform 0.3s ease; transition: transform 0.3s ease; transform: rotate(-90deg); -webkit-transform: rotate(-90deg); } .td-mobile-content .td-icon-menu-right:before { content: '\e83d'; } .td-mobile-content .td-sub-menu-open > a i { transform: rotate(0deg); -webkit-transform: rotate(0deg); } .td-mobile-content .td-sub-menu-open > ul { display: block; max-height: 2000px; opacity: 0.9; } .td-mobile-content .sub-menu { max-height: 0; overflow: hidden; opacity: 0; -webkit-transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1); transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1); /* 2nd level submenu */ } .td-mobile-content .sub-menu .td-icon-menu-right { font-size: 11px; right: -2px; top: 8px; color: var(--td_mobile_text_color, #ffffff); } .td-mobile-content .sub-menu a { padding: 9px 26px 9px 36px !important; line-height: 19px; font-size: 16px; font-weight: normal; } .td-mobile-content .sub-menu .sub-menu { /* 3rd level submenu */ } .td-mobile-content .sub-menu .sub-menu a { padding-left: 55px !important; } .td-mobile-content .sub-menu .sub-menu .sub-menu a { padding-left: 74px !important; } .td-mobile-content .current-menu-item > a, .td-mobile-content .current-menu-ancestor > a, .td-mobile-content .current-category-ancestor > a { color: var(--td_mobile_text_active_color, #73c7e3); } .td-mobile-content .menu_icon { display: none; } .td-mobile-content .menu-item-has-children a { width: 100%; z-index: 1; } .td-mobile-content .td-link-element-after { position: relative; } .rtl .td-mobile-content .td-icon-menu-right { right: auto; left: -4px; transform: rotate(90deg); -webkit-transform: rotate(90deg); } .rtl .td-mobile-content .td-sub-menu-open > a i { transform: rotate(0deg); -webkit-transform: rotate(0deg); } .td-menu-mob-open-menu #td-outer-wrap { position: fixed; transform: scale3d(0.9, 0.9, 0.9); -webkit-transform: scale3d(0.9, 0.9, 0.9); -webkit-box-shadow: 0 0 46px #000000; box-shadow: 0 0 46px #000000; } .td-menu-mob-open-menu #td-mobile-nav { height: calc(100% + 1px); overflow: auto; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); left: 0; } .td-menu-mob-open-menu #td-mobile-nav label { -webkit-transition: all 0.2s ease; transition: all 0.2s ease; } .td-menu-mob-open-menu #td-mobile-nav .td-login-animation { -webkit-transition: all 0.5s ease 0.5s; transition: all 0.5s ease 0.5s; } .td-menu-mob-open-menu .td-menu-background { transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); } .td-menu-mob-open-menu .td-mobile-container { -webkit-transition: all 0.5s ease 0.5s; transition: all 0.5s ease 0.5s; } /* Mobile menu - login */ /* Animation */ .td-mobile-container { opacity: 1; } .td-hide-menu-content .td-mobile-container { opacity: 0; visibility: hidden; -webkit-transition: all 0.5s ease 0s; transition: all 0.5s ease 0s; } .td-hide-menu-content .td-mobile-content { display: none; } #td-mobile-nav .td-login-animation { opacity: 0; position: absolute; top: 0; width: 100%; } #td-mobile-nav .td-login-animation .td-login-inputs { height: 76px; } .td-login-hide-mob { pointer-events: none; } #td-mobile-nav .td-login-hide { -webkit-transition: all 0.5s ease 0s; transition: all 0.5s ease 0s; visibility: hidden !important; } #td-mobile-nav .td-login-show { visibility: visible !important; opacity: 1; pointer-events: auto; } /* Search */ .td-search-wrap-mob { padding: 0; position: absolute; width: 100%; height: auto; top: 0; text-align: center; z-index: 9999; visibility: hidden; color: var(--td_mobile_text_color, #ffffff); font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; } .td-search-wrap-mob .td-drop-down-search { opacity: 0; visibility: hidden; -webkit-transition: all 0.5s ease 0s; transition: all 0.5s ease 0s; -webkit-backface-visibility: hidden; position: relative; } .td-search-wrap-mob #td-header-search-mob { color: var(--td_mobile_text_color, #ffffff); font-weight: bold; font-size: 26px; height: 40px; line-height: 36px; border: 0; background: transparent; outline: 0; margin: 8px 0; padding: 0; text-align: center; } .td-search-wrap-mob .td-search-input { margin: 0 5%; position: relative; } .td-search-wrap-mob .td-search-input span { opacity: 0.8; font-size: 12px; } .td-search-wrap-mob .td-search-input:before, .td-search-wrap-mob .td-search-input:after { content: ''; position: absolute; display: block; width: 100%; height: 1px; background-color: var(--td_mobile_text_color, #ffffff); bottom: 0; left: 0; opacity: 0.2; } .td-search-wrap-mob .td-search-input:after { opacity: 0.8; transform: scaleX(0); -webkit-transform: scaleX(0); -webkit-transition: transform 0.5s ease 0.8s; transition: transform 0.5s ease 0.8s; } .td-search-wrap-mob .td_module_wrap { text-align: left; } .td-search-wrap-mob .td_module_wrap .entry-title { font-size: 16px; line-height: 20px; } .td-search-wrap-mob .td_module_wrap .entry-title a { color: var(--td_mobile_text_color, #ffffff); } .td-search-wrap-mob .td_module_wrap:hover .entry-title a { color: var(--td_mobile_text_color, #ffffff); } .td-search-wrap-mob .td-post-date { color: var(--td_mobile_text_color, #dddddd); opacity: 0.8; } .td-search-wrap-mob .td-search-form { margin-bottom: 30px; } .td-search-wrap-mob .td-aj-search-results { margin: 0 5%; text-align: left; } .td-search-wrap-mob .td-module-thumb { top: auto; left: auto; } .td-search-wrap-mob .result-msg { margin: 0 5%; } .td-search-wrap-mob .result-msg a { display: block; text-align: center; width: 100%; text-transform: uppercase; line-height: 50px; color: var(--td_mobile_button_color_mob, #000000); border: none; -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.36); box-shadow: 0 0 8px rgba(0, 0, 0, 0.36); margin: 10px 0 40px; font-size: 17px; border-radius: 0; background-color: var(--td_mobile_button_background_mob, #ffffff); opacity: 0.8; } .td-search-background { background-repeat: no-repeat; background-size: cover; background-position: center top; position: fixed; top: 0; display: block; width: 100%; height: 113%; z-index: 9999; -webkit-transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86); transition: all 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86); transform: translate3d(100%, 0, 0); -webkit-transform: translate3d(100%, 0, 0); visibility: hidden; } .td-search-background:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; opacity: 0.98; background: #313b45; background: -webkit-gradient(left top, left bottom, color-stop(0%, var(--td_mobile_gradient_one_mob, #313b45)), color-stop(100%, var(--td_mobile_gradient_two_mob, #3393b8))); background: linear-gradient(to bottom, var(--td_mobile_gradient_one_mob, #313b45) 0%, var(--td_mobile_gradient_two_mob, #3393b8) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--td_mobile_gradient_one_mob, #313b45)', endColorstr='var(--td_mobile_gradient_two_mob, #3393b8)', GradientType=0); } .td-search-close { text-align: right; z-index: 1000; } .td-search-close .td-icon-close-mobile { height: 70px; width: 70px; line-height: 70px; font-size: 21px; color: var(--td_mobile_text_color, #ffffff); position: relative; top: 4px; right: 0; } .td-search-opened #td-outer-wrap { position: fixed; transform: scale3d(0.9, 0.9, 0.9); -webkit-transform: scale3d(0.9, 0.9, 0.9); -webkit-box-shadow: 0 0 46px; box-shadow: 0 0 46px; } .td-search-opened .td-search-wrap-mob .td-drop-down-search { opacity: 1; visibility: visible !important; -webkit-transition: all 0.5s ease 0.3s; transition: all 0.5s ease 0.3s; } .td-search-opened .td-search-background { transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); visibility: visible !important; } .td-search-opened .td-search-input:after { transform: scaleX(1); -webkit-transform: scaleX(1); } /* Search opened menu with admin bar */ .admin-bar .td-search-wrap-mob { padding-top: 32px; } @media (max-width: 767px) { .admin-bar .td-search-wrap-mob { padding-top: 46px; } } /* Placeholders */ #td-mobile-nav label { position: absolute; top: 26px; left: 10px; font-size: 17px; color: var(--td_mobile_text_color, #ffffff); opacity: 0.6; pointer-events: none; } .td-login-inputs { position: relative; } /* ---------------------------------------------------------------------------- Site wide > typography style ---------------------------------------------------------------------------- */ body { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 14px; line-height: 21px; } p { margin-top: 0; margin-bottom: 21px; } a:active, a:focus { outline: none; } a { color: var(--td_theme_color, #4db2ec); text-decoration: none; } ins { background: #fff; text-decoration: none; } code { position: relative; top: -1px; border: none; background-color: #F1F1F1; padding: 2px 6px; } pre { background-color: #f1f1f1; padding: 4px 10px; border: none; border-radius: 0; margin-top: 24px; overflow: auto; } cite { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; font-style: italic; font-weight: normal; text-transform: none; color: #000; } cite a { color: #000; } cite a:hover { color: var(--td_theme_color, #4db2ec); } q { font-style: italic; } ul, ol { padding: 0; } ul li, ol li { line-height: 24px; margin-left: 21px; } .wp-block-navigation li { line-height: 1.2; margin-left: 0; } .dl-horizontal a { font-weight: 500 !important; } .dl-horizontal dt { width: 70px; font-weight: 400; line-height: 24px; font-size: 15px; } .dl-horizontal dd { margin-left: 90px; line-height: 24px; font-size: 14px; } address { font-size: inherit !important; line-height: inherit !important; margin-bottom: 21px; } big { text-transform: uppercase; } embed { width: 100%; } /* ---------------------------------------------------------------------------- table */ table { width: 100%; } table th { text-align: left; border: 1px solid var(--td_grid_border_color, #ededed); padding: 2px 8px; } table td { border: 1px solid var(--td_grid_border_color, #ededed); padding: 2px 8px; } table .odd td { background-color: #fcfcfc; } /* ---------------------------------------------------------------------------- h */ h1, h2, h3, h4, h5, h6 { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); font-weight: 400; margin: 6px 0; } h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a { color: var(--td_text_color, #111111); } div.td-block-title { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); } p.td-module-title, p.tdb-subcategory-name { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); } p.td-module-title > a, p.tdb-subcategory-name > a { color: var(--td_text_color, #111111); } h1 { font-size: 32px; line-height: 40px; margin-top: 33px; margin-bottom: 23px; } h2 { font-size: 27px; line-height: 38px; margin-top: 30px; margin-bottom: 20px; } h3 { font-size: 22px; line-height: 30px; margin-top: 27px; margin-bottom: 17px; } h4 { font-size: 19px; line-height: 29px; margin-top: 24px; margin-bottom: 14px; } h5 { font-size: 17px; line-height: 25px; margin-top: 21px; margin-bottom: 11px; } h6 { font-size: 16px; line-height: 24px; margin-top: 21px; margin-bottom: 11px; } .videopress-placeholder { width: 100% !important; } .videopress-poster { height: auto !important; width: 100% !important; } .video-player { width: 100% !important; } /* ---------------------------------------------------------------------------- Site wide > Forms ---------------------------------------------------------------------------- */ textarea { font-size: 12px; line-height: 21px; color: #444; border: 1px solid #e1e1e1; width: 100%; max-width: 100%; height: 168px; min-height: 168px; padding: 6px 9px; /* responsive portrait phone */ } @media (max-width: 767px) { textarea { font-size: 16px; } } textarea:active, textarea:focus { border-color: #b0b0b0 !important; } textarea:focus, input:focus, input[type]:focus { outline: 0 none; } /* Input buttons */ input[type=submit] { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; background-color: var(--td_black, #222222); border-radius: 0; color: #fff; border: none; padding: 8px 15px; font-weight: 500; -webkit-transition: background-color 0.4s; transition: background-color 0.4s; } input[type=submit]:hover { background-color: var(--td_theme_color, #4db2ec); } input[type=text], input[type=url], input[type=tel], input[type=email] { font-size: 12px; line-height: 21px; color: #444; border: 1px solid #e1e1e1; width: 100%; max-width: 100%; height: 34px; padding: 3px 9px; /* responsive portrait phone */ } @media (max-width: 767px) { input[type=text], input[type=url], input[type=tel], input[type=email] { font-size: 16px; } } input[type=text]:active, input[type=url]:active, input[type=tel]:active, input[type=email]:active, input[type=text]:focus, input[type=url]:focus, input[type=tel]:focus, input[type=email]:focus { border-color: #b0b0b0 !important; } input[type=password] { width: 100%; position: relative; top: 0; display: inline-table; vertical-align: middle; font-size: 12px; line-height: 21px; color: #444; border: 1px solid #ccc; max-width: 100%; height: 34px; padding: 3px 9px; margin-bottom: 10px; /* responsive portrait phone */ } @media (max-width: 767px) { input[type=password] { font-size: 16px; } } /* ---------------------------------------------------------------------------- Site wide > WordPress Text, Images & Captions ---------------------------------------------------------------------------- */ .tagdiv-type { /* ---------------------------------------------------------------------------- text and Images align */ font-size: 15px; line-height: 1.74; color: #222; /* ---------------------------------------------------------------------------- quote :not(.wp-block-quote) */ } .tagdiv-type img { margin-bottom: 21px; } .tagdiv-type .wp-block-embed { margin-bottom: 26px; } .tagdiv-type figure img { margin-bottom: 0; } .tagdiv-type .alignnone { display: inline-block; margin: 0 5px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .alignnone { margin: 0 10px 0 0; } } .tagdiv-type a:hover { text-decoration: underline; } .tagdiv-type ul, .tagdiv-type ol { margin-bottom: 26px; } .tagdiv-type ul li:not(.blocks-gallery-item):not(.wp-block-navigation-item), .tagdiv-type ol li:not(.blocks-gallery-item):not(.wp-block-navigation-item) { line-height: inherit; margin-bottom: 10px; } .tagdiv-type ul li:not(.blocks-gallery-item):not(.wp-block-navigation-item):last-child, .tagdiv-type ol li:not(.blocks-gallery-item):not(.wp-block-navigation-item):last-child { margin-bottom: 0; } .tagdiv-type li ul, .tagdiv-type li ol { margin-bottom: 0; } .tagdiv-type li[style="text-align: center;"], .tagdiv-type li[style="text-align: right;"] { list-style-position: inside; margin-left: -21px; } .tagdiv-type p { margin-bottom: 26px; } .tagdiv-type .td-arrow-list { list-style: none; margin-left: 16px; } .tagdiv-type .td-arrow-list li:before { font-family: 'newspaper', sans-serif; content: '\e803'; float: left; margin-left: -16px; line-height: 26px; font-size: 14px; } .tagdiv-type embed, .tagdiv-type iframe, .tagdiv-type object { max-width: 100% !important; } .tagdiv-type iframe.instagram-media { margin: 1px 0 12px !important; } .tagdiv-type blockquote { padding: 0; position: relative; border-left: none; margin: 40px 5% 38px; font-style: italic; text-align: center; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type blockquote { margin: 20px 3% 18px; } } .tagdiv-type blockquote p { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 32px; line-height: 40px; font-weight: 400; text-transform: uppercase; color: var(--td_theme_color, #4db2ec); word-wrap: break-word; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-type blockquote p { font-size: 24px; line-height: 32px; } } @media (max-width: 767px) { .tagdiv-type blockquote p { font-size: 22px; line-height: 30px; } } .tagdiv-type blockquote cite { display: block; } .tagdiv-type .td_quote_right { float: right; width: 50%; margin: 21px 0 21px 21px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_quote_right { float: none; width: auto; margin-right: 5%; margin-left: 5%; } } .tagdiv-type .td_quote_left { float: left; width: 50%; margin: 18px 18px 18px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_quote_left { float: none; width: auto; margin-right: 5%; margin-left: 5%; } } .tagdiv-type .td_quote_left p, .tagdiv-type .td_quote_left cite { text-align: left; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_quote_left p, .tagdiv-type .td_quote_left cite { text-align: center; } } .tagdiv-type .td_quote_box { margin: 0; background-color: var(--td_container_transparent, #fcfcfc); border-left: 2px solid var(--td_theme_color, #4db2ec); padding: 15px 23px 16px 23px; position: relative; top: 6px; clear: both; } .tagdiv-type .td_quote_box p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); color: #777; font-size: 13px; line-height: 21px; margin: 0; text-transform: none; } .tagdiv-type .td_quote_box cite { margin-top: 20px; font-size: 11px; } .tagdiv-type .td_box_left { width: 40%; float: left; margin: 0 34px 20px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_box_left { float: none; margin: 0 0 36px 0; width: auto; } } .tagdiv-type .td_box_left p, .tagdiv-type .td_box_left cite { text-align: left; } .tagdiv-type .td_box_right { width: 30%; float: right; margin: 0 0 20px 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_box_right { float: none; margin: 0 0 36px 0; width: auto; } } .tagdiv-type .td_box_right p, .tagdiv-type .td_box_right cite { text-align: left; } .tagdiv-type .td_box_center { margin: 0 0 29px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_box_center { margin-bottom: 36px; } } .tagdiv-type .wp-block-pullquote blockquote, .tagdiv-type .td_pull_quote { padding: 18px 25px; margin: 0; clear: both; } .tagdiv-type .wp-block-pullquote blockquote p, .tagdiv-type .td_pull_quote p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); text-transform: none; text-align: center; } .tagdiv-type .wp-block-pullquote blockquote p:first-child:before, .tagdiv-type .td_pull_quote p:first-child:before { position: absolute; left: 0; display: block; content: ''; width: 15px; height: 15px; box-sizing: border-box; -webkit-box-sizing: border-box; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALBAMAAABSacpvAAAALVBMVEUAAAC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLRK0HxpAAAADnRSTlMAd+67mWZR3SKqMxGIzB8/1rAAAABlSURBVAjXFcexDQEBAAXQd+KCRm4CDZURFGICMYFadTHBxQQmEDHCzWAI9XGJ8s/ANS95FBvccKwYr5kuUQ/5omm5dpQ9Fu+H2efEPX07Sg62f+bJ2T6pJkmnTi5FslM2L56r9geMACBhjTsodgAAAABJRU5ErkJggg==') no-repeat; } .tagdiv-type .wp-block-pullquote blockquote p:after, .tagdiv-type .td_pull_quote p:after { position: absolute; bottom: 10px; right: 0; display: block; content: ''; width: 15px; height: 15px; box-sizing: border-box; -webkit-box-sizing: border-box; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALBAMAAABSacpvAAAALVBMVEUAAAC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLRK0HxpAAAADnRSTlMA3ZnuqndmIhG7VYhEMzOiL2oAAABkSURBVAjXY+D1E2PgULZuYGB89+4A07t3AQzn3r1T4Hv3ToCh7t27CUDRBwxAYQe2d+8MGBiuAuWr5BwYGBjeFTAwzEtgYOB6xMDA8RAowGnOwMD6CsjIA4oWKwBFXYGcLQ0MAFHHH+tW1OhlAAAAAElFTkSuQmCC') no-repeat; } .tagdiv-type .wp-block-pullquote blockquote cite, .tagdiv-type .td_pull_quote cite { margin-top: -10px; font-size: 11px; } .tagdiv-type .td_pull_quote p { font-size: 14px; line-height: 26px; font-weight: 600; } .tagdiv-type .wp-block-pullquote blockquote, .tagdiv-type .td_pull_center { margin: 17px 0; padding: 15px 50px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote blockquote, .tagdiv-type .td_pull_center { padding: 15px 20px; } } .tagdiv-type .wp-block-pullquote { padding: 0; color: var(--td_theme_color, #4db2ec); } .tagdiv-type .wp-block-pullquote.has-text-color p, .tagdiv-type .wp-block-pullquote.has-text-color cite { color: inherit; } .tagdiv-type .wp-block-pullquote cite { color: #6c7781; } .tagdiv-type .wp-block-pullquote.alignfull blockquote { margin-left: 30px; margin-right: 30px; } .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .td_pull_left { width: 40%; margin-right: 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .td_pull_left { float: none; margin: 0 0 30px 0; width: auto; } } .tagdiv-type .td_pull_left { float: left; } .tagdiv-type .wp-block-pullquote.alignright, .tagdiv-type .td_pull_right { width: 30%; margin-left: 24px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote.alignright, .tagdiv-type .td_pull_right { float: none; margin: 0 0 30px 0; width: auto; } } .tagdiv-type .td_pull_right { float: right; } .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .wp-block-pullquote.alignright { margin-top: 0; margin-bottom: 0 !important; /* responsive portrait phone */ } .tagdiv-type .wp-block-pullquote.alignleft blockquote, .tagdiv-type .wp-block-pullquote.alignright blockquote { margin-top: 0; margin-bottom: 0; padding: 0; } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .wp-block-pullquote.alignright { max-width: 100%; } } .tagdiv-type .wp-block-pullquote.is-style-solid-color blockquote { max-width: 100%; } @media (max-width: 767px) { .td-md-is-ios .tagdiv-type figure { width: auto; } } img.wp-smiley { width: auto; } .wp-caption-text, .wp-caption-dd { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-align: left; margin: 6px 0 26px 0; font-size: 11px; font-style: italic; font-weight: normal; line-height: 17px; color: #444; } .wp-caption { text-align: center; max-width: 100%; } .wp-caption img { max-width: 100% !important; } .alignnone { margin-top: 0; } .aligncenter { text-align: center; clear: both; display: block; margin: 6px auto; } img.td-center { position: relative; left: 50%; transform: translateX(-50%); max-width: 100vw !important; width: auto !important; margin-left: 0 !important; margin-right: 0 !important; } figure.alignright, figure.alignleft, figure.aligncenter { margin-bottom: 0; } /* responsive portrait phone */ @media (max-width: 767px) { .alignleft, .alignright { float: none !important; } } /* ---------------------------------------------------------------------------- align left -> on desktop - the tinyMCE size is used -> on tablet(s) - apply the max-width to make it look nice -> on phones - center, max width 100% + fix for tinyMCE padding -> on full width td-pb-span12 */ .alignleft { float: left; margin-top: 6px; margin-right: 24px !important; margin-bottom: 6px !important; /* hack for tinyMCE / post content diffs*/ margin-left: 0; /* responsive landscape tablet */ /* responsive portrait tablet + phone */ /* responsive phone CUSTOM - align the image on center */ } @media (min-width: 1019px) and (max-width: 1140px) { .alignleft { max-width: 312px; margin-right: 21px; } } @media (min-width: 768px) and (max-width: 1018px) { .alignleft { max-width: 220px; margin-right: 21px; } } @media (max-width: 767px) { .alignleft { text-align: center; margin-left: auto !important; margin-right: auto !important; max-width: 100%; margin-bottom: 21px; } .alignleft img { text-align: center; margin-left: auto; margin-right: auto; } .alignleft figcaption { text-align: center; } } .mce-content-body .alignleft { margin: 6px 24px 6px 0; } .td-pb-span12 .alignleft, .mceContentBody-max-width-big .alignleft { /* responsive landscape tablet */ /* responsive portrait tablet */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-pb-span12 .alignleft, .mceContentBody-max-width-big .alignleft { max-width: 550px !important; } } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span12 .alignleft, .mceContentBody-max-width-big .alignleft { max-width: 400px !important; } } /* ---------------------------------------------------------------------------- Screen reader text */ .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px; } /* ---------------------------------------------------------------------------- align right -> on desktop - the tinyMCE size is used -> on tablets - apply the max-width to make it look nice -> on phones - center, max width 100% + fix for tinyMCE padding -> on full width td-pb-span12 */ .alignright { float: right; margin-top: 6px; margin-right: 0; margin-bottom: 6px !important; /* hack for tinyMCE / post content diffs*/ margin-left: 24px !important; /* responsive landscape tablet */ /* responsive portrait tablet + phone */ /* responsive phone CUSTOM - align the image on center */ } @media (min-width: 1019px) and (max-width: 1140px) { .alignright { max-width: 312px; margin-left: 21px; } } @media (min-width: 768px) and (max-width: 1018px) { .alignright { max-width: 220px; margin-left: 21px; } } @media (max-width: 767px) { .alignright { text-align: center; margin-left: auto !important; margin-right: auto !important; max-width: 100%; margin-bottom: 21px; } .alignright img { text-align: center; margin-left: auto; margin-right: auto; } .alignright figcaption { text-align: center; } } .mce-content-body .alignright { margin: 6px 0 6px 24px; } .td-pb-span12 .alignright, .mceContentBody-max-width-big .alignright { /* responsive landscape tablet */ /* responsive portrait tablet */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-pb-span12 .alignright, .mceContentBody-max-width-big .alignright { max-width: 550px !important; } } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span12 .alignright, .mceContentBody-max-width-big .alignright { max-width: 400px !important; } } .entry-title a:hover, .td-post-category:hover, .widget a:hover, .td_block_wrap a:hover { text-decoration: none !important; } .wp-block-quote.is-large:not(.td_quote_box), .wp-block-quote.is-style-large:not(.td_quote_box) { padding: 0; } .wp-block-quote.is-large cite, .wp-block-quote.is-style-large cite { font-size: 13px; } .wp-block-quote.is-large:not(.td_quote_left) cite, .wp-block-quote.is-style-large:not(.td_quote_left) cite { text-align: center; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots) { max-width: 100px; } .twitter-tweet p { font-family: initial; font-size: initial; line-height: initial; font-style: initial; text-align: initial; text-transform: initial; color: initial; font-weight: initial; } blockquote small { margin-top: 5px; display: block; font-size: 13px; font-style: italic; font-weight: normal; text-transform: none; color: #444; } blockquote.pull-right { padding-left: 20px; border-right: none; } blockquote.pull-right:after { border-right: 2px solid #FB5502; width: 40px; right: -40px; } /* ---------------------------------------------------------------------------- dropcaps */ .dropcap { float: left; display: block; font-size: 50px; line-height: 56px; background-color: var(--td_theme_color, #4db2ec); color: #fff; text-align: center; margin: 9px 13px 0 0; padding: 2px 10px 4px; font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-transform: uppercase; min-width: 62px; min-height: 62px; } .dropcap1 { border-radius: 70px; font-size: 40px; padding: 2px 14px 4px; } .dropcap2 { background-color: transparent !important; color: #4B4B4B; font-size: 79px; line-height: 69px; margin: 0 9px 0 0; padding: 0 13px 0 0; } .dropcap3 { background-color: transparent !important; color: #4B4B4B; font-weight: bold; font-size: 79px; line-height: 69px; margin: 0 9px 0 0; padding: 0 13px 0 0; } /* ---------------------------------------------------------------------------- text columns */ .td_text_columns_two_cols { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; -webkit-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; -webkit-column-rule-style: solid; -moz-column-rule-style: solid; column-rule-style: solid; -webkit-column-rule-width: 1px; -moz-column-rule-width: 1px; column-rule-width: 1px; -webkit-column-rule-color: #e9e9e9; -moz-column-rule-color: #e9e9e9; column-rule-color: #e9e9e9; margin-bottom: 26px; } /* ---------------------------------------------------------------------------- button */ .td_btn { cursor: pointer; display: inline-block; position: relative; color: white; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 600; } .td_btn_sm { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .td_btn_sm.td_round_btn { border-radius: 3px; } .td_btn_md { padding: 9px 12px; font-size: 16px; line-height: 20px; } .td_btn_md.td_round_btn { border-radius: 4px; } .td_btn_lg { padding: 10px 16px; font-size: 18px; line-height: 1.33; } .td_btn_lg.td_round_btn { border-radius: 6px; } .td_default_btn, .td_round_btn { transition: background-color 0.1s ease; -webkit-transition: background-color 0.1s ease; background-color: var(--td_theme_color, #4db2ec); } .td_default_btn:hover, .td_round_btn:hover { background-color: #444; } .td_default_btn:active, .td_round_btn:active { background-color: #000; } .td_outlined_btn { border-radius: 4px; border: 2px solid var(--td_theme_color, #4db2ec); color: var(--td_theme_color, #4db2ec); background-color: transparent; transition: all 0.1s ease ; -webkit-transition: all 0.1s ease; } .td_outlined_btn:hover { background-color: var(--td_theme_color, #4db2ec); color: #fff; } .td_outlined_btn:active { background-color: #444; border-color: #444; } .td_shadow_btn { background-color: var(--td_theme_color, #4db2ec); top: 0; -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); transition: top 0.1s ease; -webkit-transition: top 0.1s ease; } .td_shadow_btn:hover { top: -3px; -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); } .td_shadow_btn:active { background-color: #444 !important; } .td_3D_btn { background-color: var(--td_theme_color, #4db2ec); top: 0; transition: top 0.1s ease; -webkit-transition: top 0.1s ease; } .td_3D_btn:after { content: ""; position: absolute; display: block; left: 0; top: 100%; width: 100%; height: 5px; background-color: rgba(0, 0, 0, 0.25); z-index: 0; transition: height 0.1s ease; -webkit-transition: height 0.1s ease; } .td_3D_btn:hover { top: 5px; } .td_3D_btn:hover:before { height: 0; } .td_3D_btn:hover:after { height: 0; } .td_3D_btn:active { background-color: #444 !important; } /* ---------------------------------------------------------------------------- text highlighting */ .td_text_highlight_0 { background-color: rgba(0, 0, 0, 0.77); padding: 5px 0 6px 0; margin: 0 8px 0 8px; box-shadow: 8px 0 0 rgba(0, 0, 0, 0.77), -8px 0 0 rgba(0, 0, 0, 0.77); color: #2a2a2a; -webkit-transition: color 400ms; transition: color 400ms; } .td_text_highlight_0:hover { color: #F9F9F9; cursor: default; } .td_text_highlight_marker { padding: 5px 0 6px 0; margin: 0 8px 0 8px; color: white; -webkit-transition: color 400ms; transition: color 400ms; } .td_text_highlight_marker:hover { color: #F9F9F9; } .td_text_highlight_marker_red { background-color: rgba(255, 28, 26, 0.62); box-shadow: 8px 0 0 rgba(255, 28, 26, 0.62), -8px 0 0 rgba(255, 28, 26, 0.62); } .td_text_highlight_marker_blue { background-color: rgba(57, 213, 255, 0.75); box-shadow: 8px 0 0 rgba(57, 213, 255, 0.75), -8px 0 0 rgba(57, 213, 255, 0.75); } .td_text_highlight_marker_green { background-color: rgba(77, 216, 69, 0.65); box-shadow: 8px 0 0 rgba(77, 216, 69, 0.65), -8px 0 0 rgba(77, 216, 69, 0.65); } .td_text_highlight_marker_yellow { background-color: rgba(255, 203, 0, 0.75); box-shadow: 8px 0 0 rgba(255, 203, 0, 0.75), -8px 0 0 rgba(255, 203, 0, 0.75); } .td_text_highlight_marker_pink { background-color: rgba(255, 101, 243, 0.75); box-shadow: 8px 0 0 rgba(255, 101, 243, 0.75), -8px 0 0 rgba(255, 101, 243, 0.75); } /* ---------------------------------------------------------------------------- custom post padding */ .td-paragraph-padding-0 { display: block; padding-left: 0; padding-right: 6%; } .td-paragraph-padding-1 { display: block; padding-left: 6%; padding-right: 6%; } .td-paragraph-padding-2 { display: block; padding-left: 12%; padding-right: 12%; } .td-paragraph-padding-3 { display: block; padding-left: 6%; padding-right: 12%; } .td-paragraph-padding-4 { display: block; padding-left: 6%; padding-right: 0; } .td-paragraph-padding-5 { display: block; padding-left: 18%; padding-right: 18%; } .td-paragraph-padding-6 { display: block; padding-left: 12%; padding-right: 6%; } .td-pb-span8 .td-paragraph-padding-0, .mceContentBody-max-width-small .td-paragraph-padding-0 { padding-right: 4%; } .td-pb-span8 .td-paragraph-padding-1, .mceContentBody-max-width-small .td-paragraph-padding-1 { padding-left: 4%; padding-right: 4%; } .td-pb-span8 .td-paragraph-padding-2, .mceContentBody-max-width-small .td-paragraph-padding-2 { padding-left: 8%; padding-right: 8%; } .td-pb-span8 .td-paragraph-padding-3, .mceContentBody-max-width-small .td-paragraph-padding-3 { padding-left: 4%; padding-right: 8%; } .td-pb-span8 .td-paragraph-padding-4, .mceContentBody-max-width-small .td-paragraph-padding-4 { padding-left: 4%; } .td-pb-span8 .td-paragraph-padding-5, .mceContentBody-max-width-small .td-paragraph-padding-5 { padding-left: 12%; padding-right: 12%; } .td-pb-span8 .td-paragraph-padding-6, .mceContentBody-max-width-small .td-paragraph-padding-6 { padding-left: 8%; padding-right: 4%; } /* responsive phone */ @media (max-width: 500px) { .td-paragraph-padding-0, .td-paragraph-padding-1, .td-paragraph-padding-2, .td-paragraph-padding-3, .td-paragraph-padding-4, .td-paragraph-padding-5, .td-paragraph-padding-6 { padding-left: 10px !important; padding-right: 10px !important; } } .td_module_wrap { position: relative; padding-bottom: 35px; } .td_module_wrap .entry-title { /* General Title */ font-size: 21px; line-height: 25px; margin: 0 0 6px 0; } .td_module_wrap:hover .entry-title a { color: var(--td_theme_color, #4db2ec); } .entry-title { word-wrap: break-word; } /* ---------------------------------------------------------------------------- thumbnail */ .td-module-thumb { position: relative; margin-bottom: 13px; } .td-module-thumb .entry-thumb { display: block; } .td-video-play-ico { position: absolute; width: 40px; height: 40px; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); background-color: rgba(0, 0, 0, 0.48); border: 0.050em solid #fff; border-radius: 100%; font-size: 40px; z-index: 1; -webkit-box-shadow: 0 0 0.15em rgba(0, 0, 0, 0.4); box-shadow: 0 0 0.15em rgba(0, 0, 0, 0.4); } .td-video-play-ico i { position: absolute; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); font-size: 35%; color: #fff; } .td-video-play-ico i.td-icon-video-thumb-play { left: 54%; } .td-video-play-ico i.td-icon-audio-thumb-play { left: 47%; } .td-video-play-ico.td-video-small { width: 20px; height: 20px; font-size: 20px; } /* ---------------------------------------------------------------------------- module meta info */ .td-module-meta-info { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; margin-bottom: 7px; line-height: 1; min-height: 17px; } .td_module_wrap.td-meta-info-hide .td-module-meta-info { min-height: 1px; margin-top: -4px; } .entry-review-stars { display: inline-block; position: relative; top: 1px; vertical-align: middle; } .td-post-author-name { font-weight: bold; display: inline-block; position: relative; top: 2px; } .td-post-author-name a { color: #000; } .td-post-author-name span { color: #ccc; margin: 0 2px 0 2px; font-weight: normal; } .td-post-author-name div { display: inline; margin-right: 2px; } .td-post-date { color: #767676; display: inline-block; position: relative; top: 2px; } .td-module-comments { position: relative; float: right; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 10px; font-weight: 600; text-align: center; line-height: 1; } .td-module-comments a { color: #fff; background-color: #000; display: inline-block; min-width: 17px; padding: 3px 4px 4px 5px; position: relative; } .td-module-comments a:after { position: absolute; bottom: -3px; left: 0; content: ''; width: 0; height: 0; border-style: solid; border-width: 3px 3px 0 0; border-color: #000 transparent transparent transparent; } /* ---------------------------------------------------------------------------- excerpt */ .td-excerpt { font-size: 13px; color: #767676; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); word-wrap: break-word; overflow-wrap: anywhere; margin-top: 9px; } .td-read-more, .more-link-wrap { display: inline-block; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); margin-bottom: 20px; } .td-read-more a, .more-link-wrap a { background-color: var(--td_theme_color, #4db2ec); color: #fff; display: inline-block; font-size: 13px; font-weight: 500; line-height: 1; padding: 10px 15px; -webkit-transition: background-color 0.4s; transition: background-color 0.4s; } .td-read-more a:hover, .more-link-wrap a:hover { background-color: var(--td_black, #222222) !important; text-decoration: none; } /* ---------------------------------------------------------------------------- admin edit */ .td-admin-edit { position: absolute; left: 0; top: 0; display: none; z-index: 2; background-color: rgba(0, 0, 0, 0.3); color: #fff !important; padding: 3px 10px; font-size: 13px; -webkit-transition: background-color 0.4s; transition: background-color 0.4s; } .td-admin-edit:hover { background-color: #000; } .td-module-thumb:hover .td-admin-edit { display: block; } .td-post-category { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 10px; font-weight: 600; line-height: 1; background-color: var(--td_black, #222222); color: #fff; margin-right: 5px; padding: 3px 6px 4px; display: block; vertical-align: top; transition: all 0.2s ease; -webkit-transition: all 0.2s ease; } .td-post-category:hover { background-color: var(--td_theme_color, #4db2ec); } .td-module-image { position: relative; } .td-module-image .td-post-category { position: absolute; bottom: 0; } .td-module-meta-info .td-post-category { display: inline-block; } /* ---------------------------------------------------------------------------- Module 15 */ .td_module_15 { padding-bottom: 20px; border-bottom: 1px dashed #f2f2f2; margin-bottom: 40px; } .td_module_15 .entry-title { font-size: 34px; line-height: 42px; margin-bottom: 8px; margin-top: 0; /* responsive max portrait tablet */ } @media (max-width: 1018px) { .td_module_15 .entry-title { font-size: 26px; line-height: 36px; } } .td_module_15 .entry-title a:hover { text-decoration: none; } .td_module_15.sticky .entry-title a { color: var(--td_theme_color, #4db2ec); } .td_module_15 .td-module-meta-info a:hover { text-decoration: none; } .td_module_15.post { margin-top: 0; } .td_module_15.post .td-post-comments { display: inline-block; float: none; margin-left: 22px; vertical-align: top; position: relative; top: 2px; } .td_module_15.post .td-post-comments a { color: #444; } .td_module_15.post .td-module-meta-info { margin-bottom: 21px; } .td_module_15 .entry-review-stars { top: 5px; } .td_module_15 .td-post-content { padding-bottom: 0; } .td_module_15 .td-icon-comments { font-size: 9px; margin-right: 5px; vertical-align: middle; } .td_module_15 .alignwide { width: 100% !important; margin-left: 0 !important; } .td_module_15 .alignfull { left: auto; transform: none; width: auto !important; margin-left: 0 !important; } .td_module_15 .alignfull.wp-block-columns { padding-left: 0; padding-right: 0; } /* ---------------------------------------------------------------------------- Block Titles + Line */ .block-title { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 14px; line-height: 1; margin-top: 0; margin-bottom: 26px; border-bottom: 2px solid var(--td_header_color, var(--td_black, #222222)); } .block-title > a, .block-title > span, .block-title > label, .block-title > span > a { /* label is for jetpack */ line-height: 17px; display: inline-block; padding: 7px 12px 4px; background-color: var(--td_header_color, var(--td_black, #222222)); color: var(--td_text_header_color, #ffffff); } .td-block-title span, .td-block-title a { display: inline-block; } /* Block headers style */ .td_block_template_1 .block-title { text-align: left; } /* 8. Post and Page 8.1 Page */ /* ---------------------------------------------------------------------------- Page title */ .td-page-title { font-size: 30px; line-height: 38px; margin: -9px 0 19px 0; } .td-page-title, .td-page-title h1 { color: var(--td_page_title_color, var(--td_text_color, #111111)); } body .td-page-title { /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { body .td-page-title { font-size: 26px; line-height: 34px; margin: -2px 0 19px 0; } } @media (max-width: 767px) { body .td-page-title { font-size: 24px; line-height: 32px; } } .page-template-page-pagebuilder-title .td-crumb-container, .page-template-default .td-crumb-container { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .page-template-page-pagebuilder-title .td-crumb-container, .page-template-default .td-crumb-container { margin-bottom: 0; } } .page-template-page-pagebuilder-title .wpb_text_column p:last-child, .page-template-default .wpb_text_column p:last-child { margin-bottom: 26px; } .page-template-page-pagebuilder-title .wpb_text_column figure img, .page-template-default .wpb_text_column figure img { margin-bottom: 0 !important; } .page-template-page-pagebuilder-title .td-main-content-wrap { padding-top: 0; } /* ---------------------------------------------------------------------------- Default page template */ .td-main-content-wrap { padding-bottom: 40px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-main-content-wrap { padding-bottom: 26px; } } .td-main-page-wrap { padding-top: 48px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-main-page-wrap { padding-top: 32px; } } /* ---------------------------------------------------------------------------- Author page */ .td-author-page { font-size: 12px; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-author-page { margin-bottom: 40px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-author-page { margin-bottom: 28px; } } @media (max-width: 767px) { .td-author-page { margin-bottom: 28px; } } .td-author-counters { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 12px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-author-counters { margin-bottom: 10px; } } .td-author-counters span { background-color: var(--td_black, #222222); padding: 4px 9px 3px; margin-right: 10px; position: relative; top: 0; } @-moz-document url-prefix() { .td-author-counters span { padding: 3px 9px; top: -1px; } } /* ---------------------------------------------------------------------------- 404 page */ .td-404-title { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 40px; color: #222222; text-align: center; line-height: 50px; margin: 50px 0 17px 0 ; /* responsive portrait phone */ } @media (max-width: 767px) { .td-404-title { font-size: 34px; line-height: 44px; } } .td-404-sub-title { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 21px; line-height: 24px; color: #a6a6a6; text-align: center; margin: 0 0 40px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .td-404-sub-title { font-size: 17px; line-height: 22px; } } .td-404-sub-sub-title { text-align: center; margin-bottom: 70px; } .td-404-sub-sub-title a { background-color: var(--td_black, #222222); border: medium none; color: #fff; font-size: 11px; font-weight: bold; line-height: 16px; padding: 8px 15px; margin-left: 6px; } .td-404-sub-sub-title a:hover { color: #fff; background-color: var(--td_theme_color, #4db2ec); } .td-404-head { text-align: center; } /* ---------------------------------------------------------------------------- Attachment page */ .td-attachment-page-content p { color: #444; font-size: 11px; font-style: italic; line-height: 17px; } .td-attachment-prev { display: inline-block; margin: 10px 0 21px 0; } .td-attachment-prev img { width: 100px; height: 100px; } .td-attachment-next { float: right; margin: 10px 0 21px 0; } .td-attachment-next img { width: 100px; height: 100px; } /* ---------------------------------------------------------------------------- Search page */ .td-search-query { color: var(--td_theme_color, #4db2ec); } .search-page-search-wrap { margin: 37px 0 51px 0; } .td-search-form-widget { position: relative; line-height: 21px; } .td-search-form-widget .wpb_button { height: 32px; position: absolute; right: 0; top: 0; text-shadow: none; padding: 7px 15px 8px 15px; line-height: 16px; margin: 0; } .td-search-form-widget .wpb_button:hover { background-color: var(--td_theme_color, #4db2ec); } .td-search-form-widget div { text-align: left; } .td-search-form-widget .td-widget-search-input { width: 95%; border-right: 0; height: 32px; line-height: 21px; position: relative; top: 0; display: inline-table; vertical-align: middle; } .td_search_subtitle { position: relative; top: 11px; left: 2px; font-size: 12px; } /* ---------------------------------------------------------------------------- Pagination */ .page-nav { margin: 30px 0 30px 0; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 12px; display: inline-block; width: 100%; /* responsive portrait phone */ } @media (max-width: 767px) { .page-nav { margin-right: auto; margin-left: auto; display: table; width: auto; } } .page-nav a:hover { color: #fff; background-color: #444; border-color: #444; } .page-nav a, .page-nav span { padding: 5px 11px; border: 1px solid #e3e3e3; display: inline-block; margin: 0 8px 8px 0; min-width: 33px; text-align: center; color: #666; line-height: 21px; float: left; } .page-nav .first, .page-nav .last { /* responsive portrait phone */ } @media (max-width: 767px) { .page-nav .first, .page-nav .last { display: none; } } .page-nav .extend { border: none; /* responsive portrait phone */ } @media (max-width: 767px) { .page-nav .extend { display: none; } } .page-nav i { font-size: 9px; line-height: 1; display: inline-table; } .page-nav .page-nav-icon-svg { display: inline-flex; align-items: center; justify-content: center; } .page-nav .page-nav-icon-svg svg { width: 9px; height: 10px; } .page-nav .page-nav-icon-svg svg, .page-nav .page-nav-icon-svg svg * { fill: #666; } .page-nav a:hover .page-nav-icon-svg svg, .page-nav a:hover .page-nav-icon-svg svg * { fill: #fff; } .page-nav .pages { float: right; margin: 0; border: none; padding: 6px 0 6px 6px; /* responsive portrait phone */ } @media (max-width: 767px) { .page-nav .pages { display: none; } } .page-nav .current { background-color: var(--td_theme_color, #4db2ec); color: #fff; border-color: var(--td_theme_color, #4db2ec); } .page-nav:first-child > div { padding: 5px 11px; border: 1px solid var(--td_theme_color, #4db2ec); display: inline-block; margin: 0 8px 8px 0; min-width: 33px; text-align: center; color: #fff; line-height: 21px; float: left; background-color: var(--td_theme_color, #4db2ec); } .page-nav .td-icon-menu-right { padding-left: 1px; } .page-nav .td-icon-menu-left { padding-right: 1px; } .rtl .page-nav a, .rtl .page-nav span { float: right; margin: 0 0 8px 8px; } .rtl .page-nav .pages { float: left; padding: 6px 6px 6px 0; } .rtl .page-nav .td-icon-menu-left:before { content: '\e80d'; } .rtl .page-nav .td-icon-menu-right:before { content: '\e80c'; } /* ---------------------------------------------------------------------------- Typography */ .td-page-content { padding-bottom: 26px; } .td-page-content, .td-page-content p { color: var(--td_page_content_color, var(--td_black, #222222)); } .td-page-content h1, .td-page-content h2, .td-page-content h3, .td-page-content h4, .td-page-content h5, .td-page-content h6 { color: var(--td_page_h_color, var(--td_text_color, #111111)); } .td-page-content table { margin-bottom: 21px; } .tdc-theme-Newspaper { overflow-x: hidden; } .td-pb-span4 .wpb_wrapper, .td-ss-main-sidebar { perspective: unset !important; } /* ---------------------------------------------------------------------------- Breadcrumbs */ .td-crumb-container { min-height: 35px; margin-bottom: 9px; padding-top: 21px; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .td-crumb-container { padding-top: 16px; } } @media (max-width: 767px) { .td-crumb-container { padding-top: 11px; } } .single-post .td-bred-no-url-last { /* responsive portrait phone */ } @media (max-width: 767px) { .single-post .td-bred-no-url-last { display: none; } } .entry-crumbs { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 12px; color: #c3c3c3; line-height: 18px; padding-top: 1px; padding-bottom: 2px; } .entry-crumbs a { color: #c3c3c3; } .entry-crumbs a:hover { color: #777; } .entry-crumbs .td-bread-sep { font-size: 8px; margin: 0 5px; } /* ---------------------------------------------------------------------------- Category */ .td-category { list-style: none; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 10px; margin-top: 0; margin-bottom: 10px; line-height: 1; } .td-category li { display: inline-block; margin: 0 5px 5px 0; line-height: 1; } .td-category a { color: #fff; background-color: var(--td_black, #222222); padding: 3px 6px 4px 6px; white-space: nowrap; display: inline-block; } .td-category a:hover { opacity: 0.9; } .single .td-category { /* responsive portrait phone */ } @media (max-width: 767px) { .single .td-category { margin-bottom: 0; } } /* ---------------------------------------------------------------------------- Post title */ .post { background-color: var(--td_container_transparent, #ffffff); } .post header .entry-title { margin-top: 0; margin-bottom: 7px; word-wrap: break-word; font-size: 41px; line-height: 50px; /* responsive portrait phone */ } @media (max-width: 1018px) { .post header .entry-title { font-size: 32px; line-height: 36px; } } @media (max-width: 767px) { .post header .entry-title { margin-top: 3px; margin-bottom: 9px; } } /* ---------------------------------------------------------------------------- Subtitle */ .td-post-sub-title { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 16px; font-style: italic; font-weight: 300; line-height: 24px; color: #999; margin: 9px 0 14px 0; } @media (max-width: 767px) { .td-post-sub-title { margin: 0 0 16px; } } /* ---------------------------------------------------------------------------- Author - Date - Comments - Count views */ .bypostauthor { line-height: 1; } header .td-module-meta-info { margin-bottom: 16px; } header .td-post-author-name { font-weight: 400; color: #444; float: left; } header .td-post-author-name a { font-weight: 700; margin-right: 3px; } header .td-post-date { margin-left: 4px; color: #767676; float: left; } header .td-post-views { float: right; margin-right: 22px; } header .td-post-views span { line-height: 15px; vertical-align: top; } header .td-icon-views { position: relative; line-height: 17px; font-size: 14px; margin-right: 5px; } header .td-post-comments { float: right; position: relative; top: 2px; } header .td-post-comments a { color: #444; } header .td-post-comments i { vertical-align: middle; } header .td-icon-comments { margin-right: 5px; font-size: 9px; } .post footer { clear: both; } .page-nav.page-nav-post { margin-top: 0; } /* ---------------------------------------------------------------------------- Source and Via */ .td-post-source-tags { font-size: 11px; } .td-post-source-tags a { font-size: 11px; } .td-post-source-tags .td-no-tags { margin-bottom: 34px; } .td-post-source-via { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 600; } .td-post-small-box { margin-bottom: 4px; line-height: 20px; clear: left; height: 20px; display: table; } .td-post-small-box span { background-color: var(--td_black, #222222); padding: 5px 9px; color: #fff; display: block; text-transform: uppercase; line-height: 10px; float: left; height: 20px; } .td-post-small-box a { display: block; float: left; border: 1px solid var(--td_grid_border_color, #ededed); margin-left: 4px; line-height: 8px; color: var(--td_text_color, #111111); padding: 5px 8px; height: 20px; } .td-post-small-box a:hover { color: #fff; background-color: var(--td_theme_color, #4db2ec); border-color: var(--td_theme_color, #4db2ec); } /* ---------------------------------------------------------------------------- Tags */ .td-tags { margin: 0 0 30px 0; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); display: table; line-height: 20px; font-weight: 600; } .td-tags li { list-style: none; display: inline-block; line-height: 20px; margin-left: 0; float: left; margin-bottom: 4px; } .td-tags span, .td-tags a { margin-right: 4px; margin-left: 0; } /* ---------------------------------------------------------------------------- Next / Prev article */ .td-post-next-prev-content { display: inline-block; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); word-break: break-word; } .td-post-next-prev-content span { display: block; font-size: 12px; color: #c1c1c1; margin-bottom: 7px; } .td-post-next-prev-content a { display: block; font-size: 15px; color: #222; line-height: 21px; margin-bottom: 43px; } .td-post-next-prev-content a:hover { color: var(--td_theme_color, #4db2ec); } .td-post-next-post { text-align: right; } .td-next-prev-separator { display: none; } #td-outer-wrap .td-post-prev-post, #td-outer-wrap .td-post-next-post { /* responsive portrait phone */ } @media (max-width: 767px) { #td-outer-wrap .td-post-prev-post, #td-outer-wrap .td-post-next-post { width: 50%; float: left; } } /* ---------------------------------------------------------------------------- Author box */ .author-box-wrap { border: 1px solid var(--td_grid_border_color, #ededed); padding: 21px; margin-bottom: 48px; /* responsive portrait phone */ } @media (max-width: 767px) { .author-box-wrap { text-align: center; } } .author-box-wrap .avatar { float: left; max-width: 96px; /* responsive portrait phone */ } @media (max-width: 767px) { .author-box-wrap .avatar { margin-bottom: 5px; float: none; } } .author-box-wrap .desc { margin-left: 117px; font-size: 12px; /* responsive portrait phone */ } @media (max-width: 767px) { .author-box-wrap .desc { margin-left: 0; } } .author-box-wrap .td-social-icon-wrap .td-icon-font { color: #222; } .author-box-wrap .td-author-social { margin-bottom: -5px; } .author-box-wrap .td-author-social a { color: #444; margin-top: 11px; } .author-box-wrap .td-author-social a:hover { color: var(--td_theme_color, #4db2ec); } .author-box-wrap .td-author-social .td-icon-font { font-size: 15px; width: auto; min-width: 18px; height: auto; margin-right: 15px; } .td-author-name { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 15px; line-height: 21px; font-weight: 700; margin: 7px 0 8px 0; } .td-author-name a { color: #222; } .td-author-name a:hover { color: var(--td_theme_color, #4db2ec); } .td-author-url { font-size: 11px; font-style: italic; line-height: 21px; margin-bottom: 6px; } .td-author-url a { color: #444; } .td-author-url a:hover { color: var(--td_theme_color, #4db2ec); } /* ---------------------------------- Post embeds */ .wp-embedded-content { width: 100%; } .td-post-content .wpml-ls-statics-post_translations .wpml-ls-flag { margin-bottom: 0; } .single.wpb-js-composer .td-post-content .tdc-row { width: 100%; } /* ---------------------------------------------------------------------------- Default Post Template */ .td-post-content p:empty { display: none; } .td-post-featured-image { position: relative; } .td-post-featured-image img { display: block; margin-bottom: 26px; width: 100%; } .td-post-featured-image .wp-caption-text { margin-bottom: 26px; z-index: 1; } .td-post-content { margin-top: 21px; padding-bottom: 16px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-post-content { margin-top: 16px; } } .td-post-content p { word-wrap: break-word; } .td-post-content img { display: block; } .td-post-content table { margin-bottom: 21px; } .td-post-content .td-gallery { clear: both; } .td-post-content .fb-video { margin-bottom: 26px; } .td-post-content #fb-root + p { margin: 0; } .td-post-template-default .td-post-title .td-post-comments { margin-left: 22px; } .td-post-template-default .td-post-title div.td-post-views { margin-right: 0; } @media (max-width: 1018px) { .td-post-template-default .td-post-header header .entry-title { font-size: 32px; line-height: 36px; } } .td-post-template-default .td-post-featured-image img { width: auto; } .td-post-template-default .wpb_video_wrapper { margin-bottom: 26px; } .td-post-template-default .wpb_video_wrapper .fb-video { margin-bottom: 0; } .td-post-template-default .wpb_video_wrapper iframe { display: block; } .td-post-template-default .wpb_video_wrapper .twitter-video { max-width: none !important; } .td-post-template-default .wpb_video_wrapper video { max-width: 100%; } /* ---------------------------------------------------------------------------- Comment section */ .comment { list-style: none; margin-left: 0; padding-bottom: 13px; border-bottom: 1px dashed var(--td_grid_border_color, #ededed); margin-bottom: 21px; } .comment:first-child { border-top: none; } .comment .avatar { float: left; margin-right: 20px; margin-bottom: 20px; width: 50px; } .comment cite { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 700; font-style: normal; font-size: 14px; line-height: 1; /* responsive 500px phone */ } @media (max-width: 500px) { .comment cite { font-size: 16px; } } .comment cite a { /* responsive 500px phone */ } @media (max-width: 500px) { .comment cite a { display: block; } } .comment .comment-content, .comment .comment-meta, .comment .comment-respond { margin-left: 56px; display: table-row; } .comment .comment-content { margin-top: 7px; } .comment .comment-content p { margin-bottom: 21px; } .comment .comment-content p:last-child { margin-bottom: 0; } .comment p { margin-bottom: 0; word-wrap: break-word; } .comment .logged-in-as { margin-bottom: 10px; } .comment .children { margin-left: 70px; padding-top: 16px; border-top: 1px dashed var(--td_grid_border_color, #ededed); margin-top: 13px; /* responsive portrait phone */ } @media (max-width: 500px) { .comment .children { margin-left: 34px; } } .comment .children .children { margin-left: 56px; /* responsive portrait phone */ } @media (max-width: 500px) { .comment .children .children { margin-left: 0; } } .comment .children .comment:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; } .comment .children .comment .avatar { width: 36px; height: 36px; position: relative; top: 5px; /* responsive 500px phone */ } @media (max-width: 500px) { .comment .children .comment .avatar { top: 0; } } .comment .children .comment .comment-content, .comment .children .comment .comment-meta, .comment .children .comment .comment-respond { margin-left: 56px; } .td-comments-title-wrap { transform: translateZ(0); -webkit-transform: translateZ(0); } .comment-link { font-size: 11px; line-height: 1; color: #747474; padding-left: 10px; /* responsive 500px phone */ } @media (max-width: 500px) { .comment-link { padding-left: 0; margin-bottom: 5px; margin-top: 5px; display: block; } } .comment-edit-link { font-size: 11px; line-height: 1; padding-left: 10px; /* responsive 500px phone */ } .comment-edit-link:hover { text-decoration: underline; } @media (max-width: 500px) { .comment-edit-link { padding-left: 0; margin-bottom: 5px; margin-top: 5px; display: block; } } .comment-meta { margin-top: 3px; } .comment-respond { margin-bottom: 21px; /* responsive portrait phone */ } @media (max-width: 767px) { .comment-respond { margin-left: 0 !important; } } .comment-reply-link { font-size: 11px; color: #747474; } .comment-reply-link:hover { color: var(--td_theme_color, #4db2ec); } .single .comments { margin-bottom: 48px; padding-top: 10px; margin-top: -10px; } /* ---------------------------------------------------------------------------- Comment form */ #reply-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; margin-top: 10px; } .logged-in-as { margin-top: 0; margin-bottom: 10px; font-size: 13px; } .logged-in-as a { color: var(--td_text_color, #111111); font-weight: 600; /* responsive portrait phone */ } .logged-in-as a:hover { color: var(--td_theme_color, #4db2ec); } @media (max-width: 767px) { .logged-in-as a:last-child { display: block; float: right; } } #cancel-comment-reply-link { font-size: 12px; font-weight: 400; color: var(--td_text_color, #111111); margin-left: 10px; } #cancel-comment-reply-link:hover { color: var(--td_theme_color, #4db2ec); } .comment .comment-form-input-wrap { margin-top: 0; margin-bottom: 21px; } .comment-subscription-form { margin-bottom: 3px; font-size: 13px; } .comment-subscription-form .subscribe-label { margin-left: 3px; position: relative; top: -1px; } .td-login-comment { /* responsive portrait phone */ } @media (max-width: 767px) { .td-login-comment { background-color: #222; width: 100%; margin-top: 20px; text-align: center; text-transform: uppercase; font-size: 14px; font-weight: bold; } .td-login-comment a { color: #fff; padding: 14px 0 15px; line-height: 19px; display: block; } } .comments .comment-form .submit { /* responsive portrait phone */ } @media (max-width: 767px) { .comments .comment-form .submit { width: 100%; font-size: 15px; font-weight: bold; padding: 15px 0; text-transform: uppercase; } } .comments { clear: both; } .comment-form .td-warning-comment, .comment-form .td-warning-author, .comment-form .td-warning-email, .comment-form .td-warning-email-error, .comment-form .td-warning-captcha, .comment-form .td-warning-captcha-score { display: none; } .comment-form textarea { display: block; } .td-comment-form-warnings .td-warning-comment, .td-comment-form-warnings .td-warning-author, .td-comment-form-warnings .td-warning-email, .td-comment-form-warnings .td-warning-email-error, .td-comment-form-warnings .td-warning-captcha, .td-comment-form-warnings .td-warning-captcha-score { margin-bottom: -11px; color: #ff7a7a; font-size: 11px; font-style: italic; line-height: 15px; } .td-form-comment, .td-form-author, .td-form-email, .td-form-url { margin-top: 0; margin-bottom: 21px; } .comment-pagination { /* responsive portrait phone */ } @media (max-width: 767px) { .comment-pagination { margin-bottom: 25px; margin-left: -3%; margin-right: -3%; text-align: center; } .comment-pagination a { background-color: #222; color: #fff; padding: 14px 0; display: inline-block; width: 45%; text-align: center; line-height: 1; margin: 0 2%; font-size: 13px; } } .comment-list li:last-child { /* responsive portrait phone */ } @media (max-width: 767px) { .comment-list li:last-child { border: none; } } .comment-form-cookies-consent label { margin-left: 8px; } .comment-form-cookies-consent * { vertical-align: middle; } /* ---------------------------------------------------------------------------- less for Gutenberg elements */ .wp-block-image { margin-bottom: 21px; } .wp-block-image.aligncenter, .wp-block-image.alignleft, .wp-block-image.alignright { margin-bottom: 21px; } .wp-block-image figcaption { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-align: left; margin: 6px 0 0 0; font-size: 11px; font-style: italic; font-weight: normal; line-height: 17px; color: #444; } .wp-block-image.alignfull figcaption { margin-right: 20px; margin-left: 20px; } .wp-block-gallery { margin-bottom: 26px; } .wp-block-gallery figcaption { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 11px; line-height: 17px; } .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 11px; line-height: 17px; } .wp-block-gallery.alignnone { display: flex; } .wp-block-categories { padding: 0 10px; } .wp-block-categories, .wp-block-categories ul { list-style-type: none; } .wp-block-categories ul { margin: 5px 0 0; padding-left: 26px; } .wp-block-categories li { margin-left: 0; margin-bottom: 5px; } .wp-block-categories li:last-child { margin-bottom: 0; } .wp-block-categories a { color: #000; } .wp-block-categories a:hover { text-decoration: none; color: var(--td_theme_color, #4db2ec); } .wp-block-categories .td-widget-no { float: right; } .wp-block-categories .td-widget-no:before { content: '('; } .wp-block-categories .td-widget-no:after { content: ')'; } .wp-block-categories select { height: 30px; margin-bottom: 10px; margin-top: 13px; padding: 0 5px; } .wp-block-quote.is-large p, .wp-block-quote.is-style-large p { font-size: 36px; line-height: 1.2; } .wp-block-quote.is-large cite, .wp-block-quote.is-style-large cite { font-size: 13px; } .wp-block-quote p.has-regular-font-size { font-size: 1em; } .wp-block-quote p.has-larger-font-size { font-size: 3.34em; } .wp-block-quote cite { color: #6c7781; font-size: 13px; margin-top: 1em; position: relative; font-style: normal; } figure.wp-block-pullquote { font-size: 14px; } figure.wp-block-pullquote.has-larger-font-size { font-size: 3.34em; } figure.wp-block-pullquote p { font-size: 1em; line-height: 1.858em; font-weight: 600; } .wp-block-archives { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); } .wp-block-archives li { line-height: 30px; list-style: none; padding: 0; margin-left: 0 !important; } .wp-block-archives li a { color: #222222; } .wp-block-archives li a:hover { color: var(--td_theme_color, #4db2ec); text-decoration: none !important; } .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt, .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta { margin-left: 0; } .wp-block-latest-comments .wp-block-latest-comments__comment { display: flex; margin: 10px 0 !important; line-height: 21px; padding-bottom: 13px; font-size: 12px; } .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-date { display: block; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 16px; color: #b5b5b5; font-style: italic; margin-bottom: 5px; } .wp-block-latest-comments .wp-block-latest-comments__comment p { margin-bottom: 0; } .wp-block-latest-comments .wp-block-latest-comments__comment a { color: #222222; font-style: italic; font-size: 11px; font-weight: bold; } .wp-block-latest-comments .wp-block-latest-comments__comment a:hover { color: var(--td_theme_color, #4db2ec); text-decoration: none !important; } .wp-block-latest-posts:not(.is-grid) li { list-style: none; margin-bottom: 8px !important; margin-left: 0; padding-bottom: 7px; border-bottom: 1px dashed #f1f1f1; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); } .wp-block-latest-posts:not(.is-grid) li:last-child { border-bottom: none; } .wp-block-latest-posts:not(.is-grid) li a { display: inline-block; color: #222222; line-height: 21px; } .wp-block-latest-posts:not(.is-grid) li a:hover { color: var(--td_theme_color, #4db2ec); text-decoration: none !important; } .wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-date { display: block; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 16px; color: #b5b5b5; font-style: italic; margin-bottom: 5px; } .wp-block-button:not(.is-style-outline) a.wp-block-button__link { transition: background-color 0.1s ease; -webkit-transition: background-color 0.1s ease; padding: 9px 12px; font-size: 16px; line-height: 20px; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 600; } .wp-block-button:not(.is-style-outline) a.wp-block-button__link:not([class*="has-background"]):hover { background-color: #444; text-decoration: none !important; } .wp-block-button:not(.is-style-outline) a.wp-block-button__link:not([class*="has-background"]) { background-color: var(--td_theme_color, #4db2ec); } .wp-block-button.is-style-outline .wp-block-button__link { border-width: 2px; border-style: solid; transition: all 0.1s ease; -webkit-transition: all 0.1s ease; } .wp-block-button.is-style-outline .wp-block-button__link:not([class*="has-background"]) { background-color: transparent; } .wp-block-button.is-style-outline .wp-block-button__link:not([class*="has-background"]):hover { background-color: #4db2ec; } .wp-block-button.is-style-outline .wp-block-button__link:not([class*="has-text-color"]) { color: var(--td_theme_color, #4db2ec); border-color: var(--td_theme_color, #4db2ec); } .wp-block-button.is-style-outline .wp-block-button__link:hover { background-color: #444; color: #fff; text-decoration: none !important; } .td-pb-span12 .alignwide { position: relative; left: 50%; transform: translateX(-50%); width: 1400px; max-width: 100vw; } .td-pb-span12 .alignwide img, .td-pb-span12 .alignwide video, .td-pb-span12 .alignwide.wp-block-embed iframe { padding: 0 calc((100% - 100vw) / 2); } .td-pb-span12 .alignwide.wp-block-video video { width: 100%; } .td-pb-span12 .alignwide.wp-block-embed iframe { width: 100%; } .td-pb-span12 .alignfull { position: relative; left: 50%; transform: translateX(-50%); width: 100vw !important; max-width: none !important; margin-left: 0; margin-right: 0; } .td-pb-span12 .alignfull.wp-block-cover.has-parallax { left: auto; transform: none; margin-left: calc((-100vw + 100%) / 2); } .td-pb-span12 .alignfull.wp-block-columns { padding-left: 8px; padding-right: 8px; } .td-pb-span12 .alignfull.wp-block-embed-wordpress-tv .wp-block-embed__wrapper { padding-bottom: 56.25%; } .td-pb-span12 .alignfull.wp-block-embed-wordpress-tv iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding-left: 8px; padding-right: 8px; } .td-pb-span12 .alignfull.wp-block-embed iframe { width: 100%; } .tdc-column:not(.td-pb-span12) .alignwide { width: 100% !important; margin-left: 0 !important; } .tdc-column:not(.td-pb-span12) .alignfull.wp-block-pullquote blockquote { margin-left: 0; margin-right: 0; } .wp-block-embed-flickr.aligncenter .wp-block-embed__wrapper { display: table; margin-left: auto; margin-right: auto; } .wp-block-embed-flickr.alignwide img, .wp-block-embed-flickr.alignfull img { width: 100%; height: auto; } .wp-block-media-text { margin-bottom: 26px; } /* ---------------------------------------------------------------------------- wordpress default galleries */ .gallery-item { display: inline-block; text-align: center; vertical-align: top; margin-bottom: 20px; width: 100%; padding: 0 2%; } .gallery-item .gallery-caption { text-align: center; margin: 0; } .gallery-item .gallery-icon img { display: inline-block; } .gallery-columns-2, .gallery-columns-3, .gallery-columns-4, .gallery-columns-5, .gallery-columns-6, .gallery-columns-7, .gallery-columns-8, .gallery-columns-9 { margin: 0 -2% 20px; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-3 .gallery-item { max-width: 33.33%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } /* ---------------------------------------------------------------------------- custom gallery-columns-1 */ .gallery-columns-1 .gallery-item { margin-bottom: 30px; position: relative; } .gallery-columns-1 .gallery-item img { display: block; } .gallery-columns-1 .gallery-caption { position: absolute; bottom: 0; width: 100%; background-color: #0e0e0e; color: white; font-size: 12px; font-style: normal; padding: 8px 14px 10px 14px; } /* ---------------------------------------------------------------------------- less for gallery slider */ .post_td_gallery { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); color: #fff; margin-bottom: 24px; background-color: #222; overflow: hidden; clear: both; } .td-gallery-slide-top { position: relative; min-height: 44px; background-color: #111; } .td-gallery-title { font-style: italic; font-size: 14px; line-height: 21px; font-weight: 600; padding: 16px 20px; width: 80%; /* responsive portrait phone */ } @media (max-width: 767px) { .td-gallery-title { width: 65%; font-size: 13px; line-height: 17px; padding: 16px; } } /* controls wrapper */ .td-gallery-controls-wrapper { height: 28px; margin: auto !important; position: absolute; right: 0; top: 0; bottom: 0; } .td-gallery-slide-count { display: inline-block; margin-right: 7px; font-style: italic; font-size: 12px; font-weight: 600; vertical-align: middle; /* responsive portrait phone */ } @media (max-width: 767px) { .td-gallery-slide-count { margin-right: 0; } } .td-gallery-slide-prev-next-but { display: inline-block; margin-right: 12px; vertical-align: middle; /* responsive portrait phone */ } @media (max-width: 767px) { .td-gallery-slide-prev-next-but { margin-right: 8px; } } .td-gallery-slide-prev-next-but .td-icon-left, .td-gallery-slide-prev-next-but .td-icon-right { font-size: 16px; padding: 0 4px; /* responsive portrait phone */ -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; } @media (max-width: 767px) { .td-gallery-slide-prev-next-but .td-icon-left, .td-gallery-slide-prev-next-but .td-icon-right { padding: 0 6px; } } .td-gallery-slide-prev-next-but .td-icon-left:before { content: '\e80c'; } .td-gallery-slide-prev-next-but .td-icon-right:before { content: '\e80d'; } .td-gallery-slide-copywrite { float: right; padding: 4px 6px; text-align: left; font-style: italic; line-height: 1; font-size: 11px; display: inline-block; background-color: rgba(0, 0, 0, 0.8); } .td-button { margin: 0 4.2px 0 4.3px; background-size: cover !important; } .td-doubleSlider-1 { overflow: hidden; width: auto; height: 580px; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .td-doubleSlider-1 { height: 420px; } } @media (max-width: 767px) { .td-doubleSlider-1 { height: 260px; } } .td-doubleSlider-1 .td-slide-galery-figure { height: 580px; text-align: center; position: relative; /* responsive portrait tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-doubleSlider-1 .td-slide-galery-figure { width: 980px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-doubleSlider-1 .td-slide-galery-figure { width: 740px; height: 420px; } } @media (max-width: 767px) { .td-doubleSlider-1 .td-slide-galery-figure { width: 100%; height: 260px; } } .td-doubleSlider-1 .td-slide-item img { max-width: none; max-height: 100%; /* responsive portrait phone */ } @media (max-width: 767px) { .td-doubleSlider-1 .td-slide-item img { max-width: 100%; } } .td-doubleSlider-1 .td-slide-item { /* responsive portrait phone */ } @media (max-width: 767px) { .td-doubleSlider-1 .td-slide-item { width: 100%; } } .td-doubleSlider-1 .td-slide-item .td-slide-galery-figure img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); overflow: auto; } .td-doubleSlider-1 .td-slide-item .td-slide-caption { position: absolute; bottom: 0; left: 0; text-align: left; /* if caption or description text is present */ } .td-doubleSlider-1 .td-slide-item .td-slide-caption span { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 12px; color: #fff; line-height: 18px; width: 100%; float: left; padding: 5px 10px; background-color: rgba(0, 0, 0, 0.6); } .td-doubleSlider-1 .td-slide-item .td-slide-caption.td-gallery-slide-content { width: 100%; } .td-slide-on-2-columns .td-gallery-title { width: 73%; /* responsive portrait phone */ } @media (max-width: 767px) { .td-slide-on-2-columns .td-gallery-title { width: 65%; } } .td-slide-on-2-columns .td-doubleSlider-1 { height: 420px; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .td-slide-on-2-columns .td-doubleSlider-1 { height: 320px; } } @media (max-width: 767px) { .td-slide-on-2-columns .td-doubleSlider-1 { height: 260px; } } .td-slide-on-2-columns .td-doubleSlider-1 .td-slide-galery-figure { height: 420px; /* responsive portrait tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-slide-on-2-columns .td-doubleSlider-1 .td-slide-galery-figure { width: 640px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-slide-on-2-columns .td-doubleSlider-1 .td-slide-galery-figure { width: 484px; height: 320px; } } @media (max-width: 767px) { .td-slide-on-2-columns .td-doubleSlider-1 .td-slide-galery-figure { width: 100%; height: 260px; } } .td-slide-on-2-columns .td-button { margin: 0 5px; } .td-pb-span3 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span3 .td-slide-on-2-columns .td-slide-galery-figure { height: 200px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span3 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span3 .td-slide-on-2-columns .td-slide-galery-figure { height: 140px; } } .td-pb-span4 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span5 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span4 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span5 .td-slide-on-2-columns .td-slide-galery-figure { height: 300px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span4 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span5 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span4 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span5 .td-slide-on-2-columns .td-slide-galery-figure { height: 200px; } } .td-pb-span6 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span6 .td-slide-on-2-columns .td-slide-galery-figure { height: 360px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span6 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span6 .td-slide-on-2-columns .td-slide-galery-figure { height: 260px; } } .td-pb-span7 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span8 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span9 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span7 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span8 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span9 .td-slide-on-2-columns .td-slide-galery-figure { height: 420px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span7 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span8 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span9 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span7 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span8 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span9 .td-slide-on-2-columns .td-slide-galery-figure { height: 320px; } } .td-pb-span3 .td-slide-on-2-columns, .td-pb-span4 .td-slide-on-2-columns, .td-pb-span5 .td-slide-on-2-columns, .td-pb-span6 .td-slide-on-2-columns, .td-pb-span7 .td-slide-on-2-columns, .td-pb-span8 .td-slide-on-2-columns, .td-pb-span9 .td-slide-on-2-columns { /* responsive portrait phone */ } @media (max-width: 767px) { .td-pb-span3 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span4 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span5 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span6 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span7 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span8 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span9 .td-slide-on-2-columns .td-doubleSlider-1, .td-pb-span3 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span4 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span5 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span6 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span7 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span8 .td-slide-on-2-columns .td-slide-galery-figure, .td-pb-span9 .td-slide-on-2-columns .td-slide-galery-figure { height: 260px; } } .td-doubleSlider-2 { padding: 20px 0 10px 0; height: 80px !important; width: 100%; background-color: #111; visibility: hidden; /* responsive portrait phone */ /* if there are not sufficient sliders to fill the td-doubleSlider-2, then move -how many sliders do we have- in the center of td-doubleSlider-2 */ } @media (max-width: 767px) { .td-doubleSlider-2 { display: none; } } .td-doubleSlider-2 .td-slider { width: 100%; height: 100%; overflow-wrap: normal; } .td-doubleSlider-2 .td-button { top: -10px; display: inline-block; width: 80px !important; height: 60px; background-size: cover !important; background-position: center !important; /* responsive landscape tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .td-doubleSlider-2 .td-button { top: -9px !important; width: 56px !important; height: 58px; } } .td-doubleSlider-2 .td-button:hover { cursor: pointer; } .td-doubleSlider-2 .td-button .td-border { height: 60px; width: 80px; /* responsive landscape tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .td-doubleSlider-2 .td-button .td-border { height: 58px; width: 56px; } } .td-doubleSlider-2.td_center_slide2 { text-align: center; padding: 25px 0 10px 0; } .td-doubleSlider-2.td_center_slide2 .td-slider { display: inline-block; } .td-doubleSlider-2.td_center_slide2 .td-button { position: relative; top: -15px; margin: 0 2px 0 3px; } .td-js-loaded .td-doubleSlider-2 { visibility: visible; } .td-slide-galery-figure { width: 100% !important; } @font-face { font-family: 'newspaper'; src: url('images/icons/newspaper.eot?24'); src: url('images/icons/newspaper.eot?24#iefix') format('embedded-opentype'), url('images/icons/newspaper.woff?24') format('woff'), url('images/icons/newspaper.ttf?24') format('truetype'), url('images/icons/newspaper.svg?24#newspaper') format('svg'); font-weight: normal; font-style: normal; font-display: swap; } [class^="td-icon-"]:before, [class*=" td-icon-"]:before { font-family: 'newspaper'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; text-align: center; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [class*="td-icon-"] { line-height: 1; text-align: center; display: inline-block; } .td-icon-logout:before { content: '\e800'; } .td-icon-down:before { content: '\e801'; } .td-icon-left:before { content: '\e802'; } .td-icon-right:before { content: '\e803'; } .td-icon-up:before { content: '\e804'; } .td-icon-views:before { content: '\e805'; } .td-icon-menu-down:before { content: '\e806'; } .td-icon-left-arrow:before { content: '\e807'; } .td-icon-right-arrow:before { content: '\e808'; } .td-icon-menu-up:before { content: '\e809'; } .td-icon-search:before { content: '\e80a'; } .td-icon-user:before { content: '\e80b'; } .td-icon-menu-left:before { content: '\e80c'; } .td-icon-menu-right:before { content: '\e80d'; } .rtl .td-next-prev-wrap .td-icon-menu-left:before { content: '\e80d'; } .rtl .td-next-prev-wrap .td-icon-menu-right:before { content: '\e80c'; } .td-icon-star:before { content: '\e80f'; } .td-icon-mail:before { content: '\e810'; } .td-icon-behance:before { content: '\e811'; } .td-icon-blogger:before { content: '\e812'; } .td-icon-delicious:before { content: '\e813'; } .td-icon-deviantart:before { content: '\e814'; } .td-icon-digg:before { content: '\e815'; } .td-icon-dribbble:before { content: '\e816'; } .td-icon-evernote:before { content: '\e817'; } .td-icon-facebook:before { content: '\e818'; } .td-icon-flickr:before { content: '\e819'; } .td-icon-forrst:before { content: '\e81a'; } .td-icon-googleplus:before { content: '\e81b'; } .td-icon-instagram:before { content: '\e81d'; } .td-icon-lastfm:before { content: '\e81e'; } .td-icon-linkedin:before { content: '\e81f'; } .td-icon-mail-1:before { content: '\e820'; } .td-icon-myspace:before { content: '\e821'; } .td-icon-path:before { content: '\e822'; } .td-icon-paypal:before { content: '\e823'; } .td-icon-pinterest:before { content: '\e825'; } .td-icon-reddit:before { content: '\e827'; } .td-icon-rss:before { content: '\e828'; } .td-icon-share:before { content: '\e829'; } .td-icon-skype:before { content: '\e82a'; } .td-icon-soundcloud:before { content: '\e82b'; } .td-icon-spotify:before { content: '\e82c'; } .td-icon-stackoverflow:before { content: '\e82d'; } .td-icon-steam:before { content: '\e82e'; } .td-icon-stumbleupon:before { content: '\e82f'; } .td-icon-tumblr:before { content: '\e830'; } .td-icon-twitter:before { content: '\e831'; } .td-icon-vimeo:before { content: '\e832'; } .td-icon-windows:before { content: '\e833'; } .td-icon-wordpress:before { content: '\e834'; } .td-icon-yahoo:before { content: '\e835'; } .td-icon-youtube:before { content: '\e836'; } .td-icon-vk:before { content: '\e837'; } .td-icon-grooveshark:before { content: '\e838'; } .td-icon-star-empty:before { content: '\e839'; } .td-icon-star-half:before { content: '\e83a'; } .td-icon-close:before { content: '\e83c'; } .td-icon-read-down:before { content: '\e83d'; } .td-icon-comments:before { content: "\e83b"; } .td-icon-mobile:before { content: '\e83e'; } .td-icon-whatsapp:before { content: '\f232'; } .td-icon-website:before { content: '\f232'; } .td-icon-commenting:before { content: '\f27a'; } .td-icon-close-mobile:before { content: '\e900'; } .td-icon-modal-back:before { content: '\e901'; } .td-icon-modal-close:before { content: '\e902'; } .td-icon-category:before { content: '\e903'; } .td-icon-block-header:before { content: '\e904'; } .td-icon-home:before { content: '\e905'; } .td-icon-print:before { content: '\f02f'; } .td-icon-telegram:before { content: '\f2c6'; } .td-icon-line:before { content: '\e906'; } .td-icon-viber:before { content: '\e907'; } .td-icon-plus:before { content: '\ea0a'; } .td-icon-minus:before { content: '\ea0b'; } .td-icon-dailymotion:before { content: '\e908'; } .td-icon-twitch:before { content: '\e909'; } .td-icon-xing:before { content: '\e90a'; } .td-icon-ebay:before { content: '\e90b'; } .td-icon-acolade:before { content: "\e90c"; } .td-icon-backslash:before { content: "\e90d"; } .td-icon-bracket-square:before { content: "\e90e"; } .td-icon-circle:before { content: "\e90f"; } .td-icon-circle-full:before { content: "\e910"; } .td-icon-circle-line:before { content: "\e911"; } .td-icon-circless:before { content: "\e912"; } .td-icon-comma-round:before { content: "\e913"; } .td-icon-comma-square:before { content: "\e914"; } .td-icon-hash:before { content: "\e915"; } .td-icon-linee:before { content: "\e916"; } .td-icon-pluss:before { content: "\e917"; } .td-icon-point-comma-round:before { content: "\e918"; } .td-icon-point-comma-square:before { content: "\e919"; } .td-icon-point-round:before { content: "\e91a"; } .td-icon-point-square:before { content: "\e91b"; } .td-icon-quote-round:before { content: "\e91c"; } .td-icon-quote-square:before { content: "\e91d"; } .td-icon-romb-full:before { content: "\e91e"; } .td-icon-romb-line:before { content: "\e91f"; } .td-icon-romb-round-full:before { content: "\e920"; } .td-icon-romb-round-line:before { content: "\e921"; } .td-icon-rombs:before { content: "\e922"; } .td-icon-slashh:before { content: "\e923"; } .td-icon-star-full:before { content: "\e924"; } .td-icon-star-line:before { content: "\e925"; } .td-icon-translingual:before { content: "\e926"; } .td-icon-upp:before { content: "\e927"; } .td-icon-vertical-line:before { content: "\e928"; } .td-icon-naver:before { content: "\e9d3"; } .td-icon-video-thumb-play:before { content: "\e9d4"; } .td-icon-audio-thumb-play:before { content: "\e9d5"; } .td-icon-cart:before { content: "\f07a"; } .td-icon-tiktok:before { content: "\e9d6"; } .td-icon-yandex:before { content: "\e9d7"; } .td-icon-flipboard:before { content: "\e9d9"; } .td-icon-insta-carousel:before { content: "\e9da"; } .td-icon-check:before { content: "\e9db"; } .td-icon-cart-empty:before { content: "\e9dc"; } .td-icon-profile:before { content: "\e9dd"; } .td-icon-log-out:before { content: "\e9de"; } .td-icon-discord:before { content: "\e9df"; } .td-icon-audio-pause:before { content: "\e9ce"; } .td-icon-audio-play:before { content: "\e9cf"; } .td-icon-audio-speaker:before { content: "\e9d0"; } .td-icon-audio-speaker-mute:before { content: "\e9d1"; } .td-icon-audio-refresh:before { content: "\e9d2"; } .td-icon-medium:before { content: "\e929"; } .td-icon-github:before { content: "\e92a"; } .td-icon-patreon:before { content: "\e92b"; } .td-icon-rumble:before { content: "\e92c"; } .td-icon-clouthub:before { content: "\e92d"; } .td-icon-gab:before { content: "\e92e"; } .td-icon-parler:before { content: "\e92f"; } .td-icon-gettr:before { content: "\e930"; } .td-icon-koo:before { content: "\e937"; } .td-icon-copy_url:before { content: "\e931"; } .td-icon-user-rev-star-empty:before { content: "\e932"; } .td-icon-user-rev-star-half:before { content: "\e933"; } .td-icon-user-rev-star-full:before { content: "\e934"; } .td-icon-kakao:before { content: "\e935"; } .td-icon-strava:before { content: "\e936"; } .td-icon-website:before { content: "\e938"; } .td-icon-bluesky:before { content: "\e93a"; } .td-icon-mastodon:before { content: "\e93b"; } .td-icon-threads:before { content: "\e93c"; } .td-social-icon-wrap:hover .td-icon-font { -webkit-transition: color 0.3s; transition: color 0.3s; color: #fff; } .td-social-icon-wrap:hover i.td-icon-behance { color: #000000; } .td-social-icon-wrap:hover i.td-icon-blogger { color: #ffa900; } .td-social-icon-wrap:hover i.td-icon-delicious { color: #3399ff; } .td-social-icon-wrap:hover i.td-icon-deviantart { color: #4e6252; } .td-social-icon-wrap:hover i.td-icon-digg { color: #000000; } .td-social-icon-wrap:hover i.td-icon-dribbble { color: #ea4c89; } .td-social-icon-wrap:hover i.td-icon-evernote { color: #07c257; } .td-social-icon-wrap:hover i.td-icon-facebook { color: #3B5998; } .td-social-icon-wrap:hover i.td-icon-flickr { color: #ff0084; } .td-social-icon-wrap:hover i.td-icon-forrst { color: #3b7140; } .td-social-icon-wrap:hover i.td-icon-googleplus { color: #dd4b39; } .td-social-icon-wrap:hover i.td-icon-grooveshark { color: #f77f00; } .td-social-icon-wrap:hover i.td-icon-instagram { color: #3f729b; } .td-social-icon-wrap:hover i.td-icon-lastfm { color: #ce2127; } .td-social-icon-wrap:hover i.td-icon-linkedin { color: #007bb6; } .td-social-icon-wrap:hover i.td-icon-mail { color: #000000; } .td-social-icon-wrap:hover i.td-icon-myspace { color: #000000; } .td-social-icon-wrap:hover i.td-icon-path { color: #e62f17; } .td-social-icon-wrap:hover i.td-icon-paypal { color: #009cde; } .td-social-icon-wrap:hover i.td-icon-pinterest { color: #cb2027; } .td-social-icon-wrap:hover i.td-icon-reddit { color: #ff4100; } .td-social-icon-wrap:hover i.td-icon-rss { color: #f36f24; } .td-social-icon-wrap:hover i.td-icon-share { color: #000000; } .td-social-icon-wrap:hover i.td-icon-skype { color: #01aef2; } .td-social-icon-wrap:hover i.td-icon-soundcloud { color: #ff5500; } .td-social-icon-wrap:hover i.td-icon-spotify { color: #81b900; } .td-social-icon-wrap:hover i.td-icon-stackoverflow { color: #000000; } .td-social-icon-wrap:hover i.td-icon-steam { color: #000000; } .td-social-icon-wrap:hover i.td-icon-stumbleupon { color: #eb4923; } .td-social-icon-wrap:hover i.td-icon-tumblr { color: #32506d; } .td-social-icon-wrap:hover i.td-icon-twitter { color: #00aced; } .td-social-icon-wrap:hover i.td-icon-vimeo { color: #5289cc; } .td-social-icon-wrap:hover i.td-icon-vk { color: #45668e; } .td-social-icon-wrap:hover i.td-icon-windows { color: #319de5; } .td-social-icon-wrap:hover i.td-icon-wordpress { color: #222222; } .td-social-icon-wrap:hover i.td-icon-yahoo { color: #720e9e; } .td-social-icon-wrap:hover i.td-icon-youtube { color: #bb0000; } .td-social-icon-wrap:hover i.td-icon-dailymotion { color: #41bafc; } .td-social-icon-wrap:hover i.td-icon-twitch { color: #4a377d; } .td-social-icon-wrap:hover i.td-icon-xing { color: #1e6567; } .td-social-icon-wrap:hover i.td-icon-ebay { color: #db2e32; } .td-social-icon-wrap:hover i.td-icon-telegram { color: #3b9de1; } .td-social-icon-wrap:hover i.td-icon-naver { color: #3ec729; } .td-social-icon-wrap:hover i.td-icon-tiktok { color: #009191; } .td-social-icon-wrap:hover i.td-icon-yandex { color: #ff0000; } .td-social-icon-wrap:hover i.td-icon-flipboard { color: #f52828; } .td-social-icon-wrap:hover i.td-icon-discord { color: #7289DA; } .td-social-icon-wrap:hover i.td-icon-whatsapp { color: #7bbf6a; } .td-social-icon-wrap:hover i.td-icon-website { color: #000000; } .td-social-icon-wrap:hover i.td-icon-bluesky { color: #08f; } .td-social-icon-wrap:hover i.td-icon-mastodon { color: #6161ff; } .td-social-icon-wrap:hover i.td-icon-threads { color: #000000; } /* ---------------------------------------------------------------------------- WordPress default widgets */ .widget { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); margin-bottom: 38px; } .widget a { color: #111; } .widget a:hover { color: var(--td_theme_color, #4db2ec); } .widget ul { list-style: none; box-shadow: none; } .widget li { line-height: 30px; list-style: none; margin-left: 12px; } .widget li li { margin-left: 21px; } .widget select { width: 100%; height: 30px; margin-bottom: 10px; margin-top: 13px; padding: 0 5px; } .widget .block-title { margin-bottom: 13px; } .widget .block-title span a { padding: 0; color: inherit; } .archive .widget_archive .current, .archive .widget_archive .current a { color: var(--td_theme_color, #4db2ec); } .widget_calendar { margin-bottom: 36px; } .widget_calendar .block-title { margin-bottom: 17px; } .widget_calendar table { width: 100%; text-align: center; } .widget_calendar th { text-align: center; } .widget_calendar td { padding: 8px 0; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .widget_calendar td { padding: 5px 0; } } .widget_calendar #today { background-color: var(--td_grid_border_color, #ededed); font-weight: bold; color: #000000; } .widget_calendar caption { font-weight: bold; padding-bottom: 10px; } .widget_calendar thead tr { line-height: 34px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .widget_calendar thead tr { line-height: 28px; } } .widget_calendar tfoot td { border: none; } .widget_calendar tfoot #prev { text-align: left; } .widget_calendar tfoot #next { text-align: right; } .widget_calendar tfoot a:hover { color: var(--td_theme_color, #4db2ec); } .widget_categories li .td-cat-no, .widget_categories .td-widget-no { float: right; margin-right: 10px; } .widget_recent_comments, .td_wp_recentcomments { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); margin-bottom: 42px; font-size: 12px; color: #444; } .widget_recent_comments .block-title, .td_wp_recentcomments .block-title { margin-bottom: 18px; } .widget_recent_comments span a, .td_wp_recentcomments span a { margin-right: 5px; margin-left: 0; } .widget_recent_comments a, .td_wp_recentcomments a { margin-left: 5px; font-style: italic; font-size: 13px; font-weight: 600; } .widget_recent_comments .recentcomments, .td_wp_recentcomments .recentcomments { display: block; margin: 10px 12px !important; line-height: 21px; padding-bottom: 13px; } .widget_recent_comments .recentcomments:last-child { border-bottom: 0; padding-bottom: 0; } .td_wp_recentcomments > div:first-child .recentcomments { margin-top: 0 !important; } .td_wp_recentcomments > div:last-child .recentcomments { border-bottom: 0 !important; margin-bottom: 0 !important; padding-bottom: 0 !important; } .td_wp_recentcomments a { color: #111; } .td_wp_recentcomments a:hover { color: var(--td_theme_color, #4db2ec); } .widget_recent_entries { margin-bottom: 32px; } .widget_recent_entries ul { margin-top: 13px; } .widget_recent_entries li { margin-bottom: 8px; padding-bottom: 7px; border-bottom: 1px dashed #f1f1f1; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .widget_recent_entries li { margin-bottom: 3px; padding-bottom: 2px; } } .widget_recent_entries li:last-child { border-bottom: none; } .widget_recent_entries li a { display: inline-block; line-height: 21px; } .widget_recent_entries .post-date { display: block; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 16px; color: #b5b5b5; font-style: italic; margin-bottom: 5px; } .widget_rss { margin-bottom: 29px; } .widget_rss .block-title { margin-bottom: 17px; } .widget_rss .block-title span { padding: 0; line-height: 1; } .widget_rss .block-title a:first-child { display: none; } .widget_rss .block-title a:hover { color: var(--td_theme_color, #4db2ec); } .widget_rss .block-title .rsswidget { color: var(--td_text_header_color, #ffffff); padding: 6px 12px 5px 12px; } .widget_rss li { margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px dashed #f1f1f1; line-height: 21px; } .widget_rss li .rsswidget { margin-bottom: 8px; margin-right: 10px; padding-bottom: 7px; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-weight: 500; font-size: 18px; } .widget_rss li .rssSummary { font-size: 12px; color: #444; } .widget_rss li:last-child { border-bottom: none; } .widget_rss .rss-date, .widget_rss cite { display: block; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 16px; color: #b5b5b5; font-style: italic; position: relative; margin-bottom: 5px; margin-top: 5px; } .widget_search { margin-bottom: 48px; } .widget_search .block-title { margin-bottom: 26px; } .widget_text ul { margin-bottom: 21px; } .widget_text ul li { list-style: disc; list-style-position: inside; } .widget_text ol { margin-bottom: 21px; } .widget_text ol li { list-style-type: decimal; margin: 0 0 0 21px; line-height: 24px; } .widget_text a { color: var(--td_theme_color, #4db2ec); } .widget_text a:hover { text-decoration: underline !important; } .widget_text .block-title { margin-bottom: 26px; } .widget_text .wp-smiley { width: auto; } .widget_tag_cloud { margin-bottom: 48px; } .widget_tag_cloud .block-title { margin-bottom: 26px; } .widget_tag_cloud .tagcloud { padding: 0 12px; } .widget_tag_cloud a { margin-right: 10px; margin-bottom: 10px; display: inline-block; } .wp-video { margin-bottom: 26px; position: relative; } .wp-video .wp-video-shortcode { outline: none; } .widget_media_video .wp-video { margin-bottom: 0; } .widget_media_video .block-title, .widget_media_audio .block-title, .widget_media_image .block-title { margin-bottom: 26px; } @media print { html, body { background-color: #FFF; color: #000; margin: 0; padding: 0; } body { width: 80%; margin-left: auto; margin-right: auto; zoom: 80%; } body .td-post-featured-image img { width: 100% !important; } .td-post-template-1 .td-featured-image-rec { width: 40%; } .td-post-template-6 #td-full-screen-header-image { position: relative !important; } .td-post-template-6 .td-post-header { height: auto !important; } .td-post-template-6 .td-post-header-holder { position: relative !important; } .td-post-template-6 .td-backstretch, .td-post-template-7 .td-backstretch { left: auto !important; right: auto !important; transform: none !important; width: auto !important; height: auto !important; } .td-post-template-7 .td-parallax-header { left: auto !important; right: auto !important; transform: none !important; } .td-post-template-8 .td-post-header { height: auto; } img { max-width: 100%; display: block; text-align: center; margin-left: auto; margin-right: auto; } h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } ul, ol, li { page-break-inside: avoid; } table, tr, td { page-break-before: avoid; } .single .td-main-sidebar, .single #td-theme-settings, .single .td-header-top-menu, .single .td-header-menu-wrap, .single .td-header-sp-ads, .single .td-main-sidebar, .single .td-post-source-tags, .single .td-post-sharing, .single .td-post-next-prev, .single .td_block_related_posts, .single #comments, .single .td-footer-container, .single .td-footer-wrapper, .single .td-sub-footer-container, .single .td-category, .single .td-post-views, .single .td-post-comments, .single .td-scroll-up, .single iframe, .single .td-more-articles-box, .single .td_block_video_playlist, .single .td-crumb-container, .single .td-g-rec, .single .td-a-rec, .single .td-menu-background, .single .author-box-wrap .avatar { display: none !important; } .td-header-desktop-wrap { display: block !important; } .td-footer-template-wrap, .td_block_wrap:not(.tdb_breadcrumbs):not(.tdb_header_logo):not(.tdb_single_categories):not(.tdb-single-title):not(.tdb_single_author):not(.tdb_single_date ):not(.tdb_single_comments_count ):not(.tdb_single_post_views):not(.tdb_single_featured_image):not(.tdb_single_content):not(.td_woo_breadcrumbs):not(.td-woo-product-title):not(.td_woo_product_description):not(.td_woo_add_to_cart):not(.td_woo_product_sku):not(.td_woo_product_image):not(.td_woo_product_tabs):not(.td_woo_product_categories):not(.td_woo_product_tags ):not(.td_woo_product_image_bg):not(.td_woo_product_price):not(.td_woo_product_rating) { display: none !important; } .body.td-animation-stack-type0 img { opacity: 1 !important; } .backstretch { display: none; } .td-main-content, .td-main-content-wrap .tdc-column, header { width: 100% !important; } } /* ---------------------------------------------------------------------------- Sub Footer */ .td-sub-footer-container { background-color: #0d0d0d; color: #ccc; font-size: 12px; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); /* responsive portrait phone */ } @media (max-width: 767px) { .td-sub-footer-container { text-align: center; padding: 6px 0; } } .td-sub-footer-copy { line-height: 20px; margin-top: 8px; margin-bottom: 8px; /* responsive portrait phone */ } @media (max-width: 767px) { .td-sub-footer-copy { float: none !important; } } /* Sub Footer Menu */ .td-sub-footer-container .td-sub-footer-menu { float: right; /* responsive portrait phone */ } @media (max-width: 767px) { .td-sub-footer-container .td-sub-footer-menu { float: none; } } .td-subfooter-menu { display: inline-block; margin: 7px 0; float: right; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-subfooter-menu { padding-right: 40px; } } @media (min-width: 768px) and (max-width: 1018px) { .td-subfooter-menu { padding-right: 48px; } } @media (max-width: 767px) { .td-subfooter-menu { float: none; } } .td-subfooter-menu li { display: inline-block; margin-left: 0; line-height: 18px; } .td-subfooter-menu li a { margin-right: 16px; line-height: 18px; display: inline-block; color: #ccc; } .td-subfooter-menu li a:hover { color: var(--td_theme_color, #4db2ec); } .td-subfooter-menu li:last-child a { margin-right: 0; } .td-subfooter-menu ul { display: none; } .td-subfooter-menu .fa { margin-right: 3px; } .tagdiv-small-theme-menu > li > a:before { background-color: transparent; content: ''; width: 0; height: 3px; position: absolute; bottom: 0; left: 0; right: 0; margin: 0 auto; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); -webkit-transition: width 0.2s ease; transition: width 0.2s ease; } .tagdiv-small-theme-menu > .current-menu-item > a:before, .tagdiv-small-theme-menu > .current-menu-ancestor > a:before, .tagdiv-small-theme-menu > .current-category-ancestor > a:before, .tagdiv-small-theme-menu > li:hover > a:before, .tagdiv-small-theme-menu > .sfHover > a:before { background-color: var(--td_theme_color, #4db2ec); width: 100%; } .tagdiv-small-theme-menu > .current-menu-item > a:after, .tagdiv-small-theme-menu > .current-menu-ancestor > a:after, .tagdiv-small-theme-menu > .current-category-ancestor > a:after, .tagdiv-small-theme-menu > li:hover > a:after, .tagdiv-small-theme-menu > .sfHover > a:after { background-color: transparent; width: auto; } .tagdiv-small-theme-menu .menu-item-has-children { position: relative; } .tagdiv-small-theme-menu .menu-item-has-children > a:after { content: '\e806'; position: relative; top: -2px; padding-left: 7px; font-family: newspaper; font-size: 9px; line-height: 1; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-small-theme-menu .menu-item-has-children > a:after { top: -1px; } } .tagdiv-small-theme-menu .menu-item-has-children ul { min-width: 10em; width: auto; padding: 15px 0; box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15); visibility: hidden; opacity: 0; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-small-theme-menu .menu-item-has-children ul { padding: 8px 0; } } .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item.current-menu-item > a, .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item.current-menu-ancestor > a, .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item.current-category-ancestor > a, .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item:hover > a { color: var(--td_theme_color, #4db2ec); } .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item > a { display: block; padding: 7px 30px; font-size: 12px; line-height: 20px; color: #111; white-space: nowrap; } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item > a { padding: 5px 16px 6px; font-size: 11px; } } .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item-has-children ul { left: 100%; margin: -15px 0; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item-has-children ul { margin: -8px 0; } } .tagdiv-small-theme-menu .menu-item-has-children ul .menu-item-has-children > a:after { content: '\e808'; position: absolute; top: 50%; right: 19px; margin-top: -10px; padding-left: 7px; font-family: newspaper; font-size: 7px; line-height: inherit; } .tagdiv-small-theme-menu .menu-item-has-children:hover > a { color: var(--td_theme_color, #4db2ec); } .tagdiv-small-theme-menu .menu-item-has-children:hover > ul { visibility: visible; opacity: 1; } .tagdiv-small-theme-menu > .menu-item-has-children:hover > ul { left: -15px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-small-theme-menu > .menu-item-has-children:hover > ul { left: -5px; } } .tagdiv-small-theme .td-menu-background, .tagdiv-small-theme #td-mobile-nav { visibility: visible; transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86); } .tagdiv-small-theme #td-mobile-nav .td-mobile-content { padding-top: 74px; } .tagdiv-small-theme #td-mobile-nav .menu-item { position: relative; } images/admin-panel/logo-panel.png000064400000655455150211537140012764 0ustar00PNG  IHDRTâtEXtSoftwareAdobe ImageReadyqe<viTXtXML:com.adobe.xmp WMIDATxd%ɱ$jQU-1ܷo%9GiQꛊ&< 0詾"32…y?_ijr1_,SQfio}?L~WUU3CY.K?a*]MSx8|N]qgyw >N'| ^7OF~}/^Mm^W\&_|UU%Uu…V>n=Ň5 mub\.7WŬ^//oU ]~u#e5 -vSj]X(UxoTu"Ty+m{+\o6 o]şrj_lŋ]ZL~ã /s6_o8xb^.]wϟ>i|9泡ß7f-9Xu77bb/awz>|NO|>JiN~43l?<>>OO>/CBpxz{?88xFX\.Mugm錧n~X.3/Q=:F\s|]7B+S7p"ĹJ5pS78b^3.pб/fX| x>Ne%d%Qgig \ >g⛰w-8[yt#Lq>tXI-oo^tlVKvRwMlM_sOn֣NxƧg.vҎUxv밨T|zӝ5n{'zҖ|\y|B3|l^ZXtΛRm^,މ?4Z߂ߴ:uOlֻπ3 p R'`C"C766sp:uxqcV_/3ހ2kqmŁm6e Fcā}ˆbec-}VU>?x-̱_/@2Tw4NKw>Zq0z`?a_b71iM?n2юDc4ޫiq9o==Ԇ[g]hX+;n@?< u3i{xlxtJ\'iZ϶At*0w=Rm*lF1hCBc~jE߁#Q:S`u;GϲƮÙpq:2LSd>x V 5\x|>ެxI+pPMx b>^Eu+rEm\<8ǧ`MޖkgbP k3qb9{xxl6%bWy~LJX.X fM||z||zϗg|9> kE\OO/ϯR*;B / %6ehTFn;ÊvK`NZT֪#5E|}QpuD#Fn[1BѴUS7~o?s:L X`hO0d93Q2t?.Qy^CY?~,`.Mi}HGnaԩfHMGgGGmCk  )nPxh>M;{Zj|]Ug3+aOvxhnǏqzO0pUՊ!vAz*F(!с,61azW=- * 6x?=}K<}x'l.>.îJ!3n;sR|{k#~z9QN!2;U "6c'S(*-8owy*[>G9)PVkJ-yol m1$D *.qG׷;CRC4rZq6֕ޱrlOJ[{m#3*Fa})WoC;#A_f8k*8pݯl$vt &|r"yopw=r4yˆkl alp8b@u.^wz:qTFa6k/8 57Xd2N8WTVIF1l4Sz_.EI8*f JXNd(=v;nv 5NFV)dl0= 5x"RĢHgIuNZ hz6ۡA/U v,lOs!8 7QF[;:'X-wSŅPW;x YQ`oTŸQ>?NGش6^_qoooxnt?ld>fF0C`OސP*vy-[Seyx%q ghѽ pGH9 YJʔ~qbp'()hgrLP0>}S|!N,5Sa44-ٹ'#Qq 3zW"xbp]voNG1=6LTଏ h%9FF(/ #zYqN{oA㤩fQC]Jtq xO"|3ǝiȍ4|CưZrKy;_i1 7cr>&'\+~7ma837bҠVxZ006 +mZ;m |U>2$ʏ%vm<m}[![xMab- q]V95OJx|6(f"p"l'حS4ۯ6ۭ*25v a[:'oHVP/MX䕎dmw[mRcEBmxtƿ3@;cå{ _)d p 9wfAFCQZYQ:r* zEE3كdX#% d2z>M J_3-ˏn\γöfݦsQg_89`k/{xx ` I>Fj(a[Fsn?:(xW^[ORIZƔ5U"e5A9CuѠlqi5? +5mn8Œ`^F=Ch*X14y8U ygKpt5e\ϟ ZgW( L_~Í$4L7s]ƌ*?~ɻ`F%{*g^ M)]rATMSF}[ 3༟ZFp ~=_>ҳt/GpTC,Bţ`˹m)>b,\fi "{9e$4*P6&SoC-F0[z_F,f7;s.Y7Q[U(IV'"\^." j2"ώ\,-2P6vt2mL&hwCre(#JdxmQ8OŤHƱ*e c)HH}!N4 \%G1@ip&` ?}IVmzu nE+|]&Rml>_#j$*;Waf|2 A)!,E]p#Zv{8cD9j"=jUD5^ቨ ?[:p|4MUN*jM͂hTf4\ۥRo%ģ6Ze|lJX騾p@%ԣ*>D d]2+0ʾ]aC<5O\Jا]@YNnEa`xZJL(RxfrK 2 ?~bOS#oeP;W'ٵﮩ&"EUדP9#wj͙H!kF]0r\TY1"Tc+ۑ".cow UVNC̪Qdq86א: R(H!]o+3Nk0/J%'Xe"Q8 IE0TqD[.\˛=TaW0)ӂbn&U?pfX^B>(,DzK*9n6FA<\QX=uq`.BN~7q]DTk]16Fm 5:!@΃9byڙˉ5JdJӵ#J[:ftx)){fڒ~?qh$^Wͮ>Hͮ}x! (Š巯WaV^(upDufx98 ay.͇_G{g0sQ2oʹ'c0q%z{b筃SHЪR/UE_-B/jGp_UEuz?r2ј*ri8|zA /4rij`+Ǖȼ+v)M`V7 Q+Um_EkUaUYun5~4͍H<HGq 7p!,vBDs?9@";"̄{w}TR5ve!м>b?1Q;NUҘZdi'>#Υ qiDVVA4_bS(^7`fbn )3 *TRa9BS~gAi qWٓ$n!DEm\~{*2&̟He6fyC0XULL]~kM3px_.Y&@R!mg^`+~n'LezUKԹ+a4QUb$"|QXI!0K9k,n<oXOvː 8/`1{+1m֛8og2+*n3"Gm!YGtM>h| 2j_g ):}a^[?KgsH\T-"g.LzX./_ÉE׶]s-*z6 `d+5q6H=cF_<_Nn͒4 U8q1›X"Q@5e˃`wض8z79Rp( |rt?@[lE$.!"])F ݊bvGt%GXJ2\&vd\ò n~adz2B4EHਪ h >x+ kr66̮)8 SsQ:\!ĉ66׻3̊5>;1UPK>D"ojN k߀!U #33##z&DlY+bwtk&: L͡u 5)Z),i+qS|RjOhba"t86l(t`ǐ4}ꐢLs4-lv)DXg3{uOlRq= x*/mnM|ꅻm$joln0R7oRolop=uIʴ}z5lG=5ӑ)} Foɐidwzsf*'l>=a@wLX@ue< #*HF!x Y{1-~nv39@7_SԞDftNܪW|o`!Sw;$WVt"1E8<=/"&C:ؚ V(K$P~w5'nYW_~\wU-JZ5{}yEVWi9̬D%3 +Z|}䝖h1s\5b_9Í_<^nq"lԛø,Y}䦘f$=8eR8rrQCbfJǧx8|k0^ږ:MduUa$W T"(WnQ~Ug޴ҿ`V˅+2ÞY+0hZiCf!jYUj&u6Rq a\lpICʨ\2?zbA05#S R#.O͵J>Unǡe; Ze.gܱMXD'u6XCv&[e7*0"3h +L3TFEEƱLHx-D]5p=)! ȱ}Tr ¸u D {oC}yq~C(~GRR9 *"zFN6̹{ h(Y%kjy%\6~:~mB #v:H3`nXew :Eܬ}akEBN k{N=^ܬ}T ԩ1ӣJFxT:GCKStq5'Jb7S>G6jZӝk+M;_QDwngB`Acleq#70!YqpT}ʽ*:tx7=N,5ת( Xi@*Ww%W^S9 JqL}2ZBӟi 9 l#djR!el~5dNFXXݹVg|9TG1,Φ%oXM"Zcf>:Y kX$z h \r'!2vݹ#OEg2aph6U)2X#Ul3SB3UALҺ .4!CR o9M>$wNc&`:uXQ̴@2)Zi v@c?2fG&(* )!_ML=G/2뷗2U#;>q߰dZh3(- L)Ʉ*S%<OۗN[?zLm)w~۴{t*)eLlȧ"6Z/]q9B=!]Sُc**UH'z.3v/f)^]{ooCR/HcSEUGU܏ [i3;UUXXatYR9}I{7A_0۔ ߽ɏRԛ7'!sTUU J^Fׯ/\1y+GRsI/MoQ" +#UEmzvsDw!ZCz 8Us#VS`; iVJt^$1:r[jhd.l =bZO0Rt*q' J_pv3GZ`JfsFe[cIpl_n`eBilaptqrq8~8/4s‰IJhXFIvD91E8}][xySd7&^^au-)Q\4oC8OGCCAOi}~~=NFnq߿ّB9r*5F=ѝ%fLϩmZ'nn\]t:ޤ{n_H/qSx%eHӦOHZGX"ڤ6Ο1J26"T#րQBxC̹П&Y3TC]Ԝ&}oJxƭPi(=ϔL"3=b`(-m~'56!R/g𞝊w + I5c橾v4hL(i۽9F\vH8v0H\T!(ٲmbVȧ.^s< n`1T m .IX*㎱Gq"AҬ}w̟wf%9ekv)w☣(FL{Y3ҋ?DdVVZTևFXJxUPoaE$YWv&%ehEi$a&ALNj3R+ŌR̀ P1f+s׊׌-6))>7K;*h y!Kw]CM2+?Qɍy㢮7!'y L"X,pT%"sդo6G\OqF$PSenq\j7P;n[zOZ۹4^֫ca<ڧOGO糵_5ӈ1DE0XuxJ:$.k¸{KmB< Je텝 Oc5ujfU x]/oQ*dWєgH&n\,6R59z,hTH6KJIlnQ%μBKՕ˪dj %tJ@:uԻz;x)_>$C .D6 56KB-3֨^;C6 Hnv>h6 B{k`Kq磻SW,+#Zezͳr=*]i4þ!'IY(N\ vAȥ7U!3s-q;fjHIjR[bZySR95T&F CQрFAkP4Q6RCM\Ntc=X o-2Bb4y;z)HIIm(ֆ?uŲ1.L@$Ű((REl8qKgdg1v:aƊl(\N'lҮVKy V4/>I)ݮҚ!9ͭX^'r-nY(6Bļ`v:mb7[*u=~ċy|zZS0d@bRi44կ_ԥq?_uVꤳ#$%f'qn:L$J>b&x-.i$TN#\8Ë\<1fϸwVe*ܚo$򼭶6&~?~v ^X|6dOa?܆h/J)g$bl:u.r5H8yoLf3B&rrnwLHw/C6Jc`bgwFprh& Avg>!34sŏ5 lux6[h"V$%6,3yiE21n>˥#Q2=c۷2NHj͚*`NnnS3y*1S{}kU0Dԇ LW"#FÞRg]6@?bn44I*V/c؈uj{_io*VHP -<.썚]> p]p@zqXn4gTV]^z$ nnan /f?B%"wx%azB)z&8x:z#^hbwP!lu4\~ILJvjsn0DPN7&V7:!Q6",A[05\4L:ȥ W,`끘]67~(wp!>srBV׀G{-h~F*ȱhg7:QEMhM`Tƥ?Z4>8_EMk] |>L[@$oJFzSxނ?skѰt\LRl 4sg1RsiYjSLuϗ۴_|3cg@#h83>J[$މqMț`M]WMܱ{Ƚ0U UNiqܕ?'J^JFG*T0ժH݆xK|.bNjOŽ+ K%,תUJs6"P fFߪl,"LY9 ZmB,pS 2ʰ>+p 1$`f*z"D6nӽD"oODVҤm*XetkxS`jԸpYojË^,CdJ[E24 Cna+1˅ŴqwA=ZSAU,a>XxRd. I$Bq +|H W6)xU44 i'2Vk#~ -uM!=fI}"m/rdM/ɀ1%ӏW`hR5Ԟ[U:=uwng޻9^55 dep[Q jPv{q{SfJB/ghU֪Tˉ'.C "w=iKJ?l S2-:;;_nVI&I_pĚ/t@Y{fU!6úJNɚBugOЌ'Qei8aU%^;PCuSѪZ{]c|A3j)n{$ҽR~2,_Ք0B}-{ I쩆T.b9(I *"g&xZ j\ ߦUwJ|Cb\w7 h<2˙P[1II}~SB9! uH+%|(>_F"lvY}K9H:-z!Bmԙ-k˛$OȌԅ/o҈8df`:5)qn=̍j> H#HL{JC*MB]vi'DŅ-DcSc]"c=s#>\':UA U#HBg\򴾗W\G:#kx :ZkԡvD5 h=ҏ$Dj:Q( w![ (Q4[9Z/v;_ H#ϚAP RFqJᙿxaKH`H&|] ]V?kۗ&vFӞȚgMݮbV>kxLrxv)= UG u*i(fmjiQv{Ϲf-!Z>45pW*YI5Ӈ#rD(Ol6jm92ح+Ԫ}$\OMUqXMt6 4kKqvY̓ ab|$ y vZ9R.MS2N,W:}Ig hhG͆QtVqOO.yK|d&YEvcҘE/{nQh])N7-g9 _=\)lQh:SHss--dL;6X h=["U:\d~ws><<|/,sK!H=Irf /}k^ Dv#Ψ݃B:]^_{Ͷ`%TC :5^.l~²#H-a8Μ!d^MRSKHAH}DCjl#RQlY,ɻlbV^GcTVF-XoX- ʨprCiRT^W5:0CdQX6(2'??%a̚%.Ɏe3(Z_:Irxm-SG.V5s9USq"dײT7Rj0uYP?7Ue4f+HQ5H[t NB6Jqfn$/Pfs^r 'RbΊ*K:25sg$*#RjŴl*E:*R~ {A6"(=PIչh)DoMaA(u*ޜ+> hXtxdN0w y8)ðY\uɩ[.:ُ*p#u{"}{oY/?Axx<FFjj4ۙUPpq:=g{Y#S\ $Is&4~MJ%p9|f{ Q:OvO~SB>Ib9(@oT^f7C6tÃ-v^ђjp>z呰ln6w[wHe\q]y=CP)&5A܎ˣ?? e=.TogFxG"7)0yR<pız&C@.UfrE&L @'16׈NYxvSV傄: {i6f*QN䙐,V1A bHEKa].VLkr*|Wh{P^ ޿B4=Qr3r퀅:?_D^E/f1koTI2![v=2IwBxqˬe|2Ei]V_VϜ0Љ:nA 鱮ZROtXpǧD&J<<> Q&EE\x[V㿍+,h`@MjtpK/s"y<.8)_4# b&\UmGJè4AJ̕]YUM*4bf=IBq5˹J Kpavd7Z+Ih7V&иXf(p6*.޺ q(IAZ7x{wRMr`W*9.xFꉤ¶Tw˷ڃŝ./G[1F, &=ȒB0G$4Uh>xZH.Ҏ7߶. ѓ_ ShvsKbU?\#b[6b6y4[[ ʡSofr<- {pvE}= ]4s(}dٓx1 nC}+.=Y UzA%/D+97ִBNnSE6HY;Sg&b@"amEb)*C: V0`3ck|jXDZ )jl3iU bE~K & ]/7T$QϷYLڙ.ί5F*Cna˵ qOα,Mw}L06b1l7rE{^Ud|DeD*3_U y|'5=汈4ZCHf/w \4x WiBkJ_R 2qȌG؂ag]sV;(۶A5UÆ$U8!v8\z:1I, : Ou^Xh|4nAbɨQlֆ GfTF#̉,++,cw۝; X_\mu椧k+4.@ 3mqG=뤸bcY WN.E&GW鹴욳Q)\hL = 1-TgYIW63 x·j/gB?5'uÿ--bMb}<GgZ̴th-S8j'2/Y ,jL4%Є9surǸ$]_LFCbݺbҨj "Iģ.+[fК c qH1ܖnt E/d ]2m_ԖZo3McAӪILhR -MAtV"n.MdŞOvz3Uˆb;Nhav i-15:Lj ō+-4β^i$%(c)5ysм^I1㧦wYԀ`tT"BDJ4^vgov5J5Aqr/gʹΤHPLƬpTr1D/ cwhcf;D8!bP\蕝ƹ@s ~Z a<.F|b i)@ja,<ɰZjF܄WD,p:mi(c:8 9R>i(GUD-I}V->HҤZϘY$|E#ؔ-T]s%"TA[wWNwGe|[&Z8/eIc`=b1!PɈmBuL u{'''Yh7PB`[4xZkKM;[B#U-^E3%y5MZ|ufA;/Du#ɋBgU#龳o0gt\8,@,OY!ء\+jν X^+DwYFh{'Ȍb|UOPÔsC'V&vsʊ`۩ۄ}WǍ McCz@-6 ʧfs`wXUu:%<*׼B0h vֈFL ݒ֟?=9 g'^j E8La8i2Q7\" P)D SayN<{Q=y0O"{zT]Fk@5WIHr~Zcg)s3fhwA'@h78D+ݯ/-2D68TM=VԵƹ{;iVPDDSR&q֜ow{a6 ǰt MzC"295.2E&=y WYQ /,YkS(7-mpӲ5{+gYY @G3L M]lɍ^U_8%5=f['6b.I ={ҸGevP-<81xp8q\g{>NǓEjw-nv῕3򈜤S@R̚%ip@vn4wBf G#aO1xպP7!5mg3ç>#)/zވ$q0i?l-mFr"-T',$2UBRJK$u- ȳ+=[4SRǛmܙOs^=G VQS-$ ;pH|1>gI!uU` ݇膿)tR Kp2sf—R,۫Gho4#?ڔc{4;1cB&B]+iUF_%T1NݼHW鯊>X!i9 "T(mD2fakܽwkx>!  A^Jyן( 䩸JvH`R2s.cD/L e㞫~g8x94&窤TLkLj: @JV+ޝjO O=o`I'#TM1"C?)t#&Qս±Y󦐄nNJ[4h|C`dK v佈q>K">;vb1XP<ڭҒ:<̩J{;~V nZ:];*-?.US5d9';cT%JA~xJ\ _ك+QpxQGROO8hlkOZ\;3/@j74c/IBq>k/ҷZo2; xi jBA-(lЇ7ve G'4#1h!VRiZF/]t9DjԦe;E&=RŠ[DCSuß?pr.Pbn,@8G1b[s8G\'/6!~ӧ;Xƥv;:o-Mk].?(iž:, 8p:ebTITgCno-G&T1")NI FRfI;ۀ ;D V1{0[:v֮H["VG b_;-NGEJfuPM_gbx45NMY,MȜD]+ka" nMgJp+BG01fN+nu55;&2t RvՄB=zd;dlF6գ awIQ{3btz^ R&Pt0*w>C2j:x{}tS xr2j& -H# Nm.dKtImvO:px Q#`8S"!w_O#"r߿+`,ڔ6Ht)6]wvt)]HZT^-T=O\.,\ԞwpZCN.lzo;*›r.(~ڨgnR'c _mм6&OrwQ`-|f~;,BjiNS' ԯ؂o$¶^yN{u#.|ClQ:[[` n^޺Y@ykAoEBǃxR%3$XYNL8bDҵF8| )X)xJM;Aѽeh14 nx8rQ`XKR땫Ie`!C,}\R%J)4C0a1eVmh1) l9G(: v vFNIv-\'<'RfXWfK)"JZaj.&@["ull)Y[CLH{QYvz#ٓslšiU\JSKzUp*U[* dg$ f"Ue7%%vw_᪱`_^_Sa!mcy+# ՊY,cRrZϹ$$9A<)rrS30U8E]IBZ)KqaP_h@y<&}>H8ݿ*' ʺBI=ҢU 1x$iOn2H\|XT^gXR12EVQzCYԜI)d_|*G呾"gު|VRv^F2t[P!"^mv[K*,4IDKy')-D G{7Y6ٞX1K0  %fB7{9ՁP1pVP\Wb|{i/ō)LЁZ"Mbcb1H.L8֒ئkEZMw.V|[|y(e = n4 IIg:h7ۯb=Nx ҭF~pn ^dfp5 \6S''MaMwTRHςt #h c>TDQ߅"n1m]K0ݬ0,-YrjsAe~JkRV5%+QG'%l(I G~\ӄ)9J{T;iߺذBi*-L_'h{= 8T.3?j={4]e7|[ɕ &LxG')QR4Kޕ5Hp&P%]"5(*&^$醝CW/"?/r)'a uיbc4ma&~gLoDebARJ:zFHͷ&Fyij]"_f_LBE"*/#="fnU[3eba2ەȈTF'r9#rP tBh6]]2g]dJ|-}`\fZyZn UsZk2M<\1Zj3߿[`)|1p BS.rR )g.,]$[mQ,K6A54vI;tU~Ї;7܍KqnLc>X5_ⶑrXa }~~>PMug!nԘtGKָg~m{vn|Fڀ\7%]Hj{"PN=(xݦ3,-+Jq21"GK*U;1=[lbAe GA\jy>[stiikL;%ǬB/pk;#wpWKFUaFb&0ňsoKfpJjnEslEn!*j-GϤu̗]KR R_b pG[Q8u@mi'rM(x6 f8+7g[qG&[+')yxs'6Xȏfr]az/cCI͒8vߘtY/qӧO?ϟ?}{xnwu4n̈."+}aeo/=jfJ 1rs|عM2Kҁ 4g.:Vi4S$0H `q 0͛x] DIp͎ZMejizrRK%C %+)INӅ@x< Qg 5sD/6V]6Χ#n<5mUP\{@8FݘT5D!6oY`dϓ*-{動akPw+Ě="ޒNxӣ ,r.'m˥' 1q >G B7#U8™Ch1A7&Wx작TB(u )2`hRwl)TPUo7M6 3Ї_'0!HNqEϬo|̥<:G[^v|. hF-Lc84I]ec\HLD+Ky uMM^ -t;+ׅ^Y5c2vy@Oڙ6)-  DMb TUj)1{Sǫ: 5Uf A_] vAF֬QwxX 3M}>c[cBzkKQ6D_=?ȆZaY3F=G <(xר>ckيA:&}|>8t ?x Dqo.r1Q3[1<0 idDbHk{ OU *ql\4<ew#d#w `_;.><ŪV۠X! &.xr_|EDѪcc4*qS23Rw.MlGx%ggoNDQ=ܬ*Nݙ:0Pz_Bw?`7/?qwe dd2h4:3; ;dS*,%m|`O9.s~1c5V;HtWYm1rSBfC)>|89X#EplY04Y00Ec3 AQ>l᳽zA;JYz6D 2Oa:4!:*Īܺoq@4ؕ=%AqWZwls`vRꩲ/O =R=y-v-V~{V1VIj;{0^GPr9gQ1`awu;ftM)Z1Q  Vp'>ƪO=guD$~516aSi|0euT67L'&O_`j1Y$yŢOs}*BHƓc{ꄘ(9j3goBY$gyr,fߐ"l um~j0r$]e뻤D&TRQ(^ROK^MJISj,cv}D !3[XWEweӝy6B<;%>y\Oǝ3"/̣[ȸ|K í}J@(ئ9EIEҥzk~Xm@Zq<"z&}Xeʒ=nLch\'y"Ȟ<҃2s;4(iYZi9\cAY=4Pϔ㤹dIwW: : {x%p[ҸT|^ ] AR1윹rڳ1J=$mMe5w#R.X돍* u]D{ӚA!~ hC8<5P)LbTj7:D滿\ tJ 8E=wFzԽ>7\s1]rd]ׇ)a7JS8syV\+D49wH PvTXwEu? S Ԩ `bNHΙzxqfһ"0", jbsd15vlqGud(.3. #Q^ߟ,;+uX>)SJƊ <.6A2ݢNiJD/^"n|:$!JJ+_9N8F]qz/h'_|*'RiN; ,F p8@w䃔ǹ$YG }g[41 pS>KS1~}0m&"Gp LMCc;X3c}IY[NlxhB0<\|.˯"D>憷9~ jKVz%}rLAfG+[#.h|Nv@' `!eFO>:@ooﯯqjDn}*_/z|z]Kw2=r=I9xl+}vQlcX!J r هQ2]@axS6šuBv/lnm֛LJ4-l1EВQ QEfq:"-ZM[6IKe]aZ !qަսgqXC {FZ(//Z|3X0w\OCv/pЬTlpêQj,EmW~vXeuףHFzeXϧւޯlD曤>2wާHHK ' LN)M9fn $8}^0Y$01d"phel x˙>ӋcD=n$v,gU N#Fl{c5ҍd$y&ROad&]]#8/q1$(0_)[zf(ŇMsZK`QDQZ UD h3_%cKKE*D# \bq,nw&cqo`'"m\̭mekYH6i*dj֢uw2ewK8`x6{ )=#&@ 9M"ooQcWF!ު&l%V4@1Zj2-Ұl {gZRԔ1FܳɈ|O `isU2ljy*faѦ8ti,j䋋 ŝ4h{+ĪG{||(s=3(BpG\]`pAlf:CLAG:_2ْyg[?5?5ƚ7:]?*E{(A9R“]jL.),Jn$"C;[^?f>}ݝ<-O>#Py䞜$V刭;Y}٧Nn-y[tQDK=5lvqHI oO?~ÅS"j %i?6IFc-~@w{vnXUuQ,pdiWHIѩx{}xxGhdQ-XaZIKM5-{8[,Υ6Bޯ6UĽ~|[p٬= 4#3PMb=EB Uw-PX+;k) LhfUUWgLUHTXHA/1Z B(xX$zjb'.E<Q_èUA) _xp|ʩ;˓te&p#\v[TCJ3:bm wo-2UFo<}܂Op}fAzA7ϱTT-?hIj$#âYZYǚV  {;vG!i"s*am4[xV4\d E_IAX.[4!T^:Ïeޘϙ]ר ;}2-Η@C6(~Vs -e_$hӵ]`M :6t^4meUL6XX6jj}D(ӫIvfQ_c S)]A+E2P>nBW;H)np;$6AKD~"<'|zq_8mSM7I}[¥l!XS#n}IIQh/6XȂaN>=N^]x\9?_1;PNthmƈ$Q/mqOYQ5"4gWˡ֫um|}/-du%Ł 06x'a :3kU!kM>qcEHeD U\. =@ N-fME]}&ht"iJ7 Ist(oT32n]u׫U\ש<Pz{7[i4Uyd޻Ҵw 4s3-jrt֙1^=8<QEOZa}"ˠxridL9X7x t@WCp4$E,CJפFAG]%ŗ #%\E34 5ڝ%ge?<1YQEZbuިnr*y>dQZIM(Ů6h}f^@)~n*TヰlS!v|8XH8buLC tF// "{:XfGʌ%k5Px>8&ڛ< rp!9% =Ʒe}UXL<:5JyDu٥ r~+M| e.W`*8+p-,BXd"yolZv ݶa ?Q8@ 7f=3Q(hP4U;^Y&Sk,6qm$<[sy_i mT(\֮K`D^ T3 )0e0!EaB ,Rj۩}ObQlq ŢkCDe'WIZ}%+O.-},ߩ78jL ^^_Y]H"c `p^nDoVQi%{MReWйULfq!^./7;n|X$OgH'fbX8d[:/JT9zufbe >z4{2/ 6:gD* P,y6tZP>aQ2^wYa_ƕό.Vuէ.^+(q% 7-6jpO]a, ;moS_sEEsWm2Wd1^^IJ]*qym.>M:Jj(M:Rcl $3|"j)//H]@}J ,AVKcP4pqc=̘#I>>)*49f[$ĵ ]fsՖQh׹wVzʚL.'Qjͧ'B7~Q9vxXHsbL*'5`%_stTmY 3)]ܵE*4JqAUO'bWBo[_jNoVԈz7b0|OIgj-> Ӑ)V m t+4vIa63;5m Rtt2g3\qRbeC8YzɆo5{whzrmT fx-x9(rjI% d)zbyWs.ʠ6fS".,L+9;?"g<ss1dsֶ8?p֜I}ȮecQ(W6rZ 0 np&1t܆׷fnh¨ ,uȎV jZt=+-jT3*}%}!(t(}$%dX{߸h`fVǾ5鈞Q%5龽noVy^yFr@`Ln>JU"q×R) bT~nAw'v}??ݡ`ʡ tykIƭTP]0'ƜWle i:Ђfٮb!Ύ"!08ZCܝND{u1{'zMVqq &~"Ef\>z˜9nv6ک ~@M .n{zz6Dk*GkP*»pOі#W|Tᄌ-62ߺVpC54%ق<&x32u^H{$<]T>B /`9?)0m0EBmw9x=bbs$ELN,Ȯbm6eo p+!ɤf*Ȗ=$2J%#v@Hnw4XQy͹<'0ԏO2Bc =nc<><\ܤDJghB616&eo)˯gVA|x1U72v,QB {E"ךmk==Lغ ~tv>nU=& +6L;!mqG6zfT\81yQ=ͮrxT#~@2eH)f^] +;rYfU5=^%&+8uzȚ[5*?]p$):ӂ\gz%֟E~U`//>u yʜ)Rbuf2^ ʣ( _.[mK:6):V_~k>,doixMwhsN CEGٌ\ .UFqN/9 l@ZTJ>^tcV(axIBO/QD~b; _̗(M ,yx[,LWkiT 4?Oa6ꚔacęgaѼ"D̹1v,^+]xҊHf0ꖏ[amR^$03j:z)j>ց:ĺ .tHIVbx/b{8#}ׯ_?~r:]e<"^y&YhT4b-BhBfn  !si0!kxG2|(YzRT_ְi|}Aw$eFvk M1KLli`Jߥ9&cQс-  sR}w)Q=9Jet٧C2gƴy8̨.F[Hjo_ F%iVri>_\c￳&G+VDJo9.~J54GMzE`@*@nrm ~(E$ϦNN,<2Dl³ŀe1кغ7GG'mmbj]Gkz[c.uH5`ub:``j"{_?18nz>/-6$ FH䖇՛;!bcjYYdJj<$xcp%f9o{\r1 ^ˇ&O$A'Emsci!yUvAHKpŜ{&D49dO m3,)ͅ=#߹DΈP9Q%GY"gp^dw7SnJN8 qp5Iy'"} ջd^C76θ"n {Ug> YA1%)aOhpDru?:_^GenPF[ UvOuTjh<&gPfoUz` ɼ`d YMoycm"p hC+)Ac{2M VnbMPidHǁAhld 5jwzN&p[l<=qqdo$yDwPC5ncZHaSK/$NݥoɁz_ЋJ\b#J&MgF5\6*&<2+)#2K(B  G^q֨ȳo߾?<> wUL-%Œև5m{8]LvmY.? 'Kb`~]2L' G>BhǶFHl'2!Ոd`-f,@7(,0.8v'ތ,lMq6&A+7ҼV[R}>So>!ջ2Luo!15YHF:v)P'8-=qTs"xbX⫽|l# #|OeuNd 0K$9?y?ѯdz!h4SLuNMܳfR!NVf&Tޑ70)َ}V8i8'[dR[B&:V69LA9;8&4)Ko:SF]ÄgΣ#%FXDT)i.-F« WIO$[|h* 2hF,J9$!"搉'<c@ 3A4*NtYLI1Z0N+~4 `_q >_*{YBQ2Pop\,ȃXg<#Mi=+HyCMewff'-l9'QbF7 ii)$*9GkWMkuJOt:v{snq Z\ ax$, Z_E4x~auy&iogf),_NU+\YBg@bצo0pCeIzAb\)eYd<6A$CcN3$=Gjm Ϭ.:JjS.C1`jL4KMO$#2n"׍BÐ(=((& `yI\@APƃP&qwt)1?%ͯOcp=Y5f_KbiIZZo$;gRDƚ[B^|a_{Ī ӃdbQ||SvWz뷮t[)֨"7FhL.;?AvԏYV"P0Ќ+d,TKb5BF^Hq2`iSܐ{EDh<РN MA&͡uK-AQvHr,)33vv׫cGAnFڶR#)G4n!: Ãښҍyj)χ /]dk1j5g-:Oo2dž~҇syg*->Lp@8QUEgan~):dݭf-6N\gK)̼[;iD>n!ɤs4YˆA=K"6fJgZ5 "fzchXE٣%g(oLly{6r`~6CkBqV?:GWr  Io9I/Qa\omD~ɖI}2YEXċU%> VqF? b^bpt 0,}`߾}=}}y%}t^]OAGF&3)ӆq_a1!r+dZe`0ß{Yk<Eօ+<T!ġ'fr'ĖXF{͉w@%e``mi$}hwM-(^Q O;ʖ#mXD>1['B/o{M] ^VV)T["7#' [tZsQ6iZ{'++AOdިuWg1h%a ùw"Qq"s̈RgbkU őf.\'rhbˤޜr93 `>8sls@+v`$KF̢l`#P@H%&Ⲿ}mvNEj'q)<+1<ӳ($j3&H#0}9Mk q4nkjM)M b ;w&XdGny^ <#n~" R}7xZhjO &}f{+F[Lp1j^>>>Xkvʮ쎷w(hfs=Ga$a|>ُ^(/Ɗ0냳eߏrU?sZQf{)bφMQ&~4LBM&1S:{(ezdLlH9Z= &-(O^H8dqD .X.@eGtA̅<΂Cѯ/R)[ X#%c1$4mA穝ΤW%.\<t8\ X*V,٬Kf׀ ujAV̜-٧b{;LleyS)8F UZ5 M޹XULGUQ@5#ȵIyWpŷp}d`A=Qa41HIE)qj`⺺D/ٖnDmnL T4K wDxH4ug*s+jyl?g ~ pobA+ "3;A]DH0"W;J \$ efaF׉󩭉|gzܱQ~,Xn%h UdUЂ$ Qv-_0)g%js9ok?9}jB3/~2]:a/0ItګFX~}3i1 TUIH16ʕuh$h_5:xc0NSogCă 6LiLpۦMZo veB=R,^8=3 @&YX3pg.*,#ij/وU-څZOvh6O~ 㜑ֳ%Y ]F!Bg"R-ڂsꉥtz+\.O]jĂP5jS1OL zF̓z[I|=QFu)iqUWt4n4L%zX-oC3[ҟADm蝦^-,&$Vo}HF=t@Jo~vӾ9qs@y Mn߈N ҹ[CN@HS7q*Ӓ% \W aDɗfBBV ?uB3 P436FO 8X.Gx)A-a2SVx^<61ms۞qXt#G7Lnb"b%뱸ǰuu{y}^lt[!r[dJyV@}9"f3_@+ 5lje_RQѓs`isbh9LHR]Qt=a 9{O':\|A=B%zsv-o0`ɍ%h-= ՆB'0 z~V2V'k[ z|D֛"?F:E+]V߾}P\E?{Xۀ\֛u3%&kXOԄVh 9(A/\J2C `y|BU&"b]0)H:"~DAd1o5X N#؆qXo#*www`<1h# 2i#TܠBMI(|I8>jY^=v.xx0kI .ro]yqj2 [ aeF @TOix`ȘڑQ I7k'8!qr(N+H ٢+Jg.Y@|'>B͝Rӳ'jp%3VF8QcF@a7o#MFtf(4V2OGP`[u$Ю(iФ<ɈeHf kU YzP_^_2k:I?kX\ ܧvps},OϤ;g"Q{ p>ENj Rzn[|}y-+f@_9GlL+45*-L.;>`~./:kd8inQ9pv`{0mLQF,V<^J#6LJv $Gk{J~]5w 2SbDəŢ{@OjqOӌn6IƠf}8c3IέYd۰X@=Ըv5^$8?- cXZw=.㕼/voʼ&0؈CQ$ (toS"5A50ZL[kSţHݶ@s;4YbyiSiK6RiѮh";7Pi#Yd> sbP>֣tvP:m׾!Փ{k򣝋(iHD9Wn\J€}mc|\:cdj)f)鸿ŵGfr9ӸSUW~\u1R"B:g*1']*Welca&K/i#ŔSΛW-TrnvS"fdߛTqRW<@fЖZ)h6oٿuNR>u`-irɍC7/7N@o-> iT?jPcNB>Z:2.IoGv2DGHfDX Jf QۯހLrB f8˯:qɪe Ngr:788M̭%;o&bEM6lZ^^O*iܓI,2AToD<*)} nJ{ Qtxd>!M(.E?Pk:X1jTW|4{jA VN4FjҢ0q9E>Ij2\`FkB5GfȢ{ec媧I1<߾/ǝXI'T]- ~XɛR"I;)z} 72 S3 '> rj{*8.,N4kҨuhyR_PnsM'i.Ýmع񼽽0,:~XpkJT|8NHE픯|t.ʣ$N{iyپD,H8/f9V_m@#߾} [hM"@! {htL(Z&йKt2T2v?n&@mSbHD^/@T.dNCdN)PhԤP=iU85.EյI<ծgk֕#R,O20غ^-$ץggb1bf-_[p1 +!fl[e @uyK7j7J6$VUwFoQ鍼z) g,\nnU3/X{$Gբk^1jh"jo묌@s gTQF[CB'o/49qKn>ʳBu;ӃkSm P1t-X{JQ'⋓\#eVTƛ'sՐZ/(bIE}r[᫡&%&KC&$;fѣIjh״iESx.tYR񔬂aPM{\ W䖨bW†#ɣ#9T䱻Ll+dU`'È}])YֱLE!=CwߗGL8k]UBXO3ߩ8@E16vx:8TЎ5|Hb)x/Yh)xp.zǘ`D*d>M܇OtF"^zQ#gQVSg`U%m wс9O牌x^ܿݝ$>[bq!"h><>_?{$6wM\U`"rf&vg ŒG5l<=o]cOJYdB,KnO_Fb\A?x#HL«XuBMͽmƞhhq3(|ʃ1IJB]gG (C\3AXO3J&nm8y-wazQVR,O B|F j0MUTqD.6YY^d5I[56T`yb%)Wv#vT]VX 5U;/}"?qENv{ps. <܈N:8nD X(ǐ }]ƽ(KwnBI/ Ukc@"3CZjDNjx8iE!t'h{"J>P?~vߑy9h .pr'Ϻ/Dr&EMtBkTx]-ιh&iVڙ˃ #R{EĞK@zXS^[3W/vMot`P]Ydju.QsmjMgdeU-Xcg}jsa/C敎߭/w3gq5VD2sC&}13֟= |d8SQ*৅g'eTkRq Q7[XhWaUP*q_BJ7|uMUվ6Hh ՚{X7VdbƋªx٩{ii i N1.Çc.  vAtW+Q`Me1JAbLM j)}yzonEB[fh aK+rAQE}]>y83X q0ޭZy3Sm qa|DZ@b$@*//}Kk47VSņ[]VB犏jt„k,72zJiPg( Z3T撂.;hrܾ2^np.Xxt1tF9hYCUo]$ȮM\//]itǽnqrC18Ͽ//P~3Q|_epߓQfhwc%x(k^i{\$9L29zMGilŽOTwBy!#`!g㚫"cQ-",͗BdմPGX 1RŦ۴Hv^eoժn 6{O%QH#ZJ\ӈ]E,"vm<_~N[H:&ʽ/pE ;ulPc# (`lyr(B_6t` []g5n/lg_ϐ[: 8[DRk>u o?'/:SIΓ󵠻IЏT#"ǦYbKQo!dn-wD|r}"'SQ3C-Y;m8Ӄ<|= Uo(lG4< [1Ec` 3pF{㙳LtxޚONQPFCoe7mr[[<(=D#uz ucU]12o]cFz\;;*uܳw6X,}@M:G^ PVr3Z㼡ΏSf+fxlk`(bػLѐT2 226TRS67c+ .vc[d+vEMiӈSdZ>^?9p﷘ϟjq. L&(ǥI)N#eP" `?wf_, + CJ0 ?L`dpOb HKz8<12Ze&^RaœR2V|I 4>Ϣl^s/g̚fЌvrL~'w4qiː @k *PӞJ.F2 D R.l${Z>=+ `tpG~u&G w nj5|̏gԦpߟYFkLRBi&k7Si^z&xכ@_!ZqùԬrY-U7zZ )B[D#vێh?M@X'"w KR-h, &aB.j{8`SURȑ^P٩e1ŨawM8Yr8 ;[UINq2mW>E]TӬaI ̚28vW!@bTe"Y:ٺ.0jG+~cm϶H|vNG?‹߲JaBp{cچ(4ARȇ`p.x֣ Gh,fv݊4͛[I7俴k+50Yϓeo us:?Ǹc4-\f#;&GaףKc qѬ V(L>IZe W0cω 8 0>^PȍIf)#]rү~}Ogg΀ahFG?"ӧ tKǴ/'#Wz>=WܹU~eb,I^ r7&k%"ӂCV8+DR9x!Zh".3%vNQJ;|:9Q[ZRQg@luduD Cl2irS_)DUb%. .FW<жt&5LLչ`02+\RR ʵ1"VDzspu3t:hG]6K&- xVX=zظu7ww"I)1P\tgM6 )*uxjJOԮ1oY0w+5&N?>> |+Bz2tMjp;֫ZHp.ǧ#>c?MG3& 5mSS9k҆c:aCPPہ#]3x8bIESlpG `*P\eHn;tlbOy`U2蟤 U{sOyɂoI0LȵBMNA@"JXj wZ5,DOMH ǽDrti1&UMapQgeb怏6U}KnHwYԥ/ s!%6(R57`zr"d{:юB*(4,`ZMK{EkFz4 ]Ny,ojL0`dz{4 טse~v @}/6v6&7?E )YH=xf#n*tfGBjSA\0/ r'g0RI6Q7L "a÷VE} kNǽG^c:K%FO]Wq0.Ww+ceD¼]os*.XvG9lF`>+Og 0ųk'1b#1 4o4:ҠfIS8,D./`Y*j1B숤-2} -B2!Wː%*`/2O k8Do?``deɖ.$u\({oyOp:hqbt-e-Y7-8fh>I a&Kw󊶴\#،ћ4VctAFjqO8VqJ6J@"3tGYh?4hB'i`,_+Voipnnʤ08D^SvEˀΑS~vJGvܙ a2J'BMځSJi¬OJ})*:B>,3FCPT1TVt^һY37'zSs=nqTTp5{}{㼌$s0>u]ݏ`ի{*Uscvot!9 F[^|!Nq[;O4s 2M)bꢔBh@13bU祴w\ n^_^bϟO(?>$߃v҃=˒Yr8s| Md݁Q0R=pQёbږ`S;|⨮?^bS}wl#F\E(2:F5bm7V5B+?,T}* kjA[#+^-:.~5Pq[)?;qO52q0bPb&S|XyY brokh`gI]*,ČϣFjFk؟0uܿگ}O0'ڢSN2G\>g$G bu @uی=Vx6Es"HQo}$F16)$V/r6yIIqmFܱǾv[-LZCto`t*}bgq#El9eDw%%l쉥ĝl~l;f8̐MeGOi4+j)=Q_// ͉|9 Ga4"z^ޣ?>#o҆pu7tTϧh6qGRn._GFFıe2aClhԀx.Z,fSM< 1ིk,c~Vį'AĢ \qBkQJZE-Ŝ tu[J 8ťN=!8G27 ;ϮӓC:ؾ}ahͦ2J',H@b{W2W_,,4ͮ4 `3"%ƤaRGUnJv#[qj3mƭhSf7LΟMՂ˪YN(:elH0rܓ$@{Q ֋OzMtJm?>H&ȸXLNǣ':iVt9Ǵ6l.c%&=Զ])}9_ ;@lr=j ~exojeڈ}w}SD-9Dv}}+ra^ 0>aoS_3{ȑ ʋJCQ'";U??#Vs'CWO2?B}7ل"U;W6Wy;L ZMuHA .mzr{E3}n EyFq< kh)9lLx 73RɃh JV$>Wrޯ)BYfBcV2S+mR*k8a2$K0){aIG^Sn g޳yHbpslv~Tʲ?(@ޭIYC R q}Sf8RߣKb\$VRu6v:ImyaܙZN,:VcC)i"?Sp@",9Ct4hCpljGĬNz|zj<..MuѬcj<íڃqa ƝI` v qT?A8oM~.WȷQ==|۾ 2&OBuKxq?ۏKT9W`AK 7Ѥoo#V|9iMZ:D% n4?"+ې jGv3RZnVi># NIDpft# ʖhn% p>AX} !+zl*# p-C!Iϔ"TsוCQjtJ?ؖ 1]ѝs"P ]:NqZ2ZU|w%TJ`p _D>#vHfߛbA>uYT\ǥZ~J`ĽϷ"7iO߾O݂ xff4TNo?jDqӖaW.89pGRU+-4՞˜+@a6DxzvA@u[zצȑqMnT7KCOxxIJbN5ZS^y1quÄmB ф`)(F քJ'+KڦH@ƞg}:vU!'ww!3!q$ZmbOyj2yO?Gzyy4Kla)0Q~f! rt -g͢+fO_6q^~,ԦYPjV̓#x˝BB1z5ܑԣ2X76 ;Hjum}m-2fQׇ8(8l0oJ Êq0eP1%Y9I6#`` DܳvlS`JĨhW^/D*V⟾=GEԋ{MHV%GI:Yd $GrGyVn6{"31l TUf{gQ8TYU{>8ʧܩXÌEg^[̏i [%I\FLWa;K"}0F},. J1TJ`3XPSuO !m'Z|GbN,{,eq9&MJԡNFdc fox%HwPH9X "ׅN>/Өؘm1t6pt qUt:6"PțBkƪdH'xеKE>s2jb W4]@hwʯo՟dtp = .42Z%ʣD.>lVinKKll@crҟ@Nw{+Q:.v{|QZw*.ndzi(.X/:.(3 o:rKkZc7+r\S 0Q)faCN$i!>ǏoQ]c΂/'%` Ad֖.7HBgt7v_pa}JU]R_uSv|3nooVXBp|Nq%[OՖ8VM!CvLJ0MǦ4ؑn\Ml<'3F׉f;M"+O ݢieQ4'ړd3dD˾c(N"4_WJԤm \F$2cias}Z{R͓}ռX*$q2L9d"&*GLAM۩yzy]KZd-3Jk1ZIRc"Tf)-. մy9o" GJ?HZؠFt>S9@?=mR\J@Z/\t?[}peql7=to@%XE[6 UkX_Yvev՛':7D>݅kd$mqEm/l `"Y LcaMl(Xm/Jq'i5|J}L1"oީYc)E ˗>eajݬ^+;]K̴s1j8BpA{2@j6rG}9‒5(SZrBHQN"E QtblZssEb+7K鞼<8\\c2x vn^ÊSpH{O[%,ABqihc/'⦢J̈O"әnmVS*qӵS)jc,YI?2M-.泭sNuвܿ ]:euvQ%8C[wZ1d׍WSޝOmC? {_d5cl+!+f+#e'bު~~}ö bCK0^%h"lP=@„BuGԘUVr!6so8&ܲbKIYL?`ftӕ?\dzKO 8H#~THI_7rVOS=HyNѫ.YɇO&7~+V3Wg#i)+ VtFG{pgzIOQff7uAI&@bnY29dThQ0^-]vUXx5xcszgQ=>^go"Wxʗ2:ވkAs8) :HWDqf57'C pp:^yZUeWHo4)d̩_c!$Maa{q؍˥M*vyfFa w# ΢ڰv"%: |;ť-sѱ%stJµā=J]1aHV誗p<Q ggHѦt]b5\{-'$DL\H^%+`dlz22+?-l2ֱdX! [cIVlNrhѓ6ۿyn[Jχ K+әإmZf:ԪX)bvtL(!Kt_~e1_pb'apzB5^ϭQ;b>> z5xxWǂQ/\pְbb,Nq mfmu*cn ƚy}r]_o-ZtlXKYv;_v=+Ѹ[ac,7~8VD9Xk-@+wzgc!e0R}m;o_~QgX  cc?׫g^75 g:ᝯ3/3Scګz; r6 ړbQeSuspRIob1 vz;ڥR3[wg?6OdC5lс]ܺih&gTB31E$*wt=~88K~VS|&ο>+Ƴw0+=8|C?^N"a{;8.z“4%?NHs{h[Pk8YfK.uw2tM'XB&#x7emMU_#0fds9qsc$@䵥~=)!k2a1d 9,'d5VT W;}¦?]dh"3AFrZrs?? {\//ϯ߿x}}<|8ܬS4;69&L>69J1qƑgx9DʼfffoB$]~>jApΩnpVó(__}Ӹdl)".2m^^lOn|pEJɫB6˸qYG.YNŝ56U|5Ɖ2vYt~|zzpv`e]^x#x.'s>^}m0vs/ў5Nuc9쏉IH*;"|\6Ss5_/X##`'S/@Ly]QshP4]X|~r/Jsf);8)WTw:sn)x^63nC*Y'7bjѼ@jED.{aŎnV6Fq;~|ϹEƫuHLcL& \ u4!GTX."E'h+Cߵ ,2,욺L38\TmwQsY~C7 `XR18DQ?ÕA'R۹l#{aba c]Qd gz&ț힯?rNr̓H|Ub*r'VF%w34uڜ',!ôЭ ,Pp wh/3XgL{(9 5%U=\Lqu #]aO!QqGgn3]\G:5A)VnNlAɡuTPx!^ʥVMF= Xj~u7[kf󓚤\|f>d`Y'RԪJsJǛZLv^2AXw؏Ǩ-?zXn7atp '7hChI5q$4~ɖ[L<=V1;v֓:Ŭ⋋ W =0 Hx?t^ U`ڦKРz0R_UĎ$iAMJL< \RE0 nސĽ1G?:qo%Zm&=͹cAj6<+HWre1rcҭUuJ\z_/x~ӟo6 'O5rcֲv+AU3M!ʤp6؋2+)ύgHc}0Zg +DaMu[erC#<8?۸},]6Y~A(,2lꔍ~+a{+iOtb;D/3/Q2TQ^Wnw9 Mb1}X_y$htDAyuOghM3^ڳ>?uݺ8[Aq4Yg~.0@M;i]0I E!@h I|²N3dTƃ#7iB$4; STٓߘPQS~'۬ċL,3=y' @f`f&b^6t&gm 6VZXX ]Gh Œ}n[ݹU*S;dsOn k/^n7+X~%,Ϟ>7:'1ÙMIo zf1 '[̞Z.{wyy~@ʲXE("z? SQ0m6-[0O/?TEELwe<[IZnؗ|קOH6m4hs.3eӚhQ}74ĄG` OcpY BG';n ~uCJE u8IFLX9N]L&0Mh9H8id2bFիt$a"<< Wc1W lj'xW%ɻ*uI;}z5{(S(9iϭ A ͧWA`4ŭ>g?74~%ݒg, G|L.̦'Hqz P1Q P )SįDi\H|QЁtHtii{9hbDY+ jX*nW'.焴pT\R$C 1πyRh-LL(vaNz ?Aoۭ Q SSn7 v,08 :,H\dMPgbYw쮍m% s%d2x^B7eOAks%WeCT rhG-E ӥ&l4Y+뢃oD C%  =~׿_b)z\99 7-;Mέ!,je%f'sFb%,>,#Ybk]@VÃD_(m".US$OIE*/ B}*`O#T8wI(liD|Vv@|;^,r;A3Zrx7ݜl48݇B@H=U(sgR_'XV:9t[6f f=V/M,@p2JݲKM[l5rc`XdBڥS3aCjE1"l[w%5jm:\$GeLw>Y#y zYէ!NfK.Hmգ`裿m0ĉuzgyWZ91Un[LTvE1rdP$TwsMS~eb'"8 CkhkDiwFF[jӫA|t7&^H*QՙVx @{7"&;Fl,xT@8+?7n5Qoχ3X[ 4fy8|kGqͻ?iڹt3K|ܗ0kA7x|IpL3n,p.f6-نjW-ݷ8]Nkϖ&GRS O]m,vt<3߼1)4>&g)5of.)iJz+TȢl9ІM ׯ4qE^ (83 R]0LU{ Fu.fWA+MB@7x*5މдpBx-005I-}HgX)&5v!w٣zZB@; ,o$+*,Z )zSMH_C*uM|TZ6<[$p}I+ krxe;[ j)_X~/hgV3*]nUKy|混7ĸ)Qb6RPXþ3q(M~Z=tic ?WfM9ơcO0;+Q.+whڬE6mŃSo}qE%ioYbOgZ qcyo__=r7PU2m\3a6hN!:ÃLzH)CɟIJ .ls *# f3raB& :  cP-0 ھK :'o^1av+7EdCԳ2Lw$mvd'/Ë%nS( 6l#cS 8H'_$5[r8z38XtB}?rY&l؃VtZ7 y` UE3']u@I< B3Q)$CX O L3>F S(|S 8(ɫXE.;s!9~)C$_joc* @[ڢҜ6jMԵj$9n q}M~;gAg^"ч{L.Tҁ373|nnuZo~!#N%J C1 lV3> =$FMChȤiҗszu@2bjTݷr]& QH*/zGwRɘqh%v֣t)jϣtJ3yݲRیZobPO6g祫]OY>jf'QgzꙜY253DlȰ"|*ΓY#4i9Wk/[a!:aQK!B +k<-ѪD kLde)2{Զ\L_ѥ-jb7xLJ"9Q3@b\W'Ǥ =XIx-ĩbo1l˕䓑!YHd Hm]ov_oR55f˛%SF䴳I2UK|Ϫ-v{/z(,kLܷbH샚'}Dq sh >G2&I0N T-W!xnS1͐M1\qP2x;&pRaCz I䔷]8Ș =Oh2QgMez:>b>=F}%.=@Dֵp/_H"'by8[[`2nN4\KÎ +ޡ&%]>D ?#C`Iw-}8_~@hBz\sMdh%'ݝR&hD |c,vdWE+hXҧdGv.lx5dxz L\=zYC8}D^9({`W0VPo-2r>a 2`fQA#o<^?^Urmy:=iW(v }Ƙ@Bs~!2}bZ7pmU䑎:r4j<4rF6gܚ!C8OkwMqs+o ,FD#[Aq^ePޥş;L =`F~< pz|SHM|F*B$ʁ wW=yʚd XMd$3׌O YmQ $6I-89$T!;sԥM?|ӿ;% <ON5X`"ftKiӜF(Te> f;!]qEpIR'XFD'vUIAj-fk_o}ŝozKk7gVT0ڧrXߔY4MזCt$yx#,-BFm %OgI=kUF}~aM"/o@KYj] nå[;)FI34+?džI6k p7fP nwv\>erv*D2Ѻn@~'aY78Y6pU%h5d6cjD% VNv:훣6.rd42c6]gv?>]luw)主r!f\ۊϸ wETQhv߿Cki$Z;KU%MOS{7>, 25/n^JrrKjvaǨ0;c6 ,aQ"S%>m9[b~6R-IXBZg/5z{+UMK"u~|W]IAfنd ew0u40*{n]" <.k&`P_B %lqBw'qqzE&/ATqNfؖ-Q#VkizKc16.)϶$͊.[lŵ3#'-K}ܢP5#U nUE|޲9Y{*&,DD䳔0HEeU{kbٞBr2_<ܿ @1g3(o حΡp9ݞ`aNi#H]|::UIc/4k*nZRKU. Ε5@VűoI 5b1\UUZ'-UBf 8e{V4֏GOGqxP*бȺ!٧UcǾ,&4)9)-$PEO55X& Cզ%N! os+ *Ch8N&|;:FSOaU"yڴpTx~zQ&Ϣ裢+[2,g6%,id}WzTu "cId4IZ՛Wi@oo?8R?!8#3~V"ih w>>[ܰ0dc_AXXt<\[gDhj#7,Mi  bKC|l-Pv]uBfY% z :6hE?~:9CksylEt_|6  x>>Ϛt̩g2[$ON@%>(&bB(oKIh rdMف>sHpb&ܖ'S !]<{+2ZZ_دjȑpe71_\-&82v͖FWSy Z-b!BTHYQZlZkgܚ46 K3нf=ueȂ+{xxNJ8z)^NI 4vgHEߘ}OR&9Cq>L04- v`&^FKqgzh7TF?ܰ.&8lO~:EgEbݭ{-9ųE}AXv,@=|V4G]QBOq20Өֽz5 DLD_=A[P'5v 窚cjJ߽wuI*5%6A˫jp'գpp.i8 "٨th=ik{y\afo8l-⪍3Zc8')U#HG?偂T>##/yK!J%].2zQ'cqKk+9{T ߡXd"^7ɈQ v (gHRݧħ5)Q0]Ke-ZXL;*W܊ (rC"۩0'_כ&X7Tg,YkeBŲp8[ 4,-"ˈ3O=8O\ym&2GerۻLS|L:.FJ+7/Ϝ<kQހt>E-W<& HܗЃI#yvMZR`ܓGfL@T3c!pӘ8?5OSLqO콙kX0(j?RM/Ҥv\1_ 7=XGJo^nIJb:/~cu;6Q3iV=[auؒE%9d~cgAQxeO[GB)\u8F,8Fϭ&d󛸰M4SVoݸD[ s_ ׏ QWRYSbL懊l4!$PlIesT1: >;&W3>s A'}]@}a5@b#0C .DsW,8+$/' HRQLJ/nV">o)=H`O_$]]^^;@Lq8QLIl !bsnvqqpIW+mō]!;-Ezmk} QSh#gv{e{foc01ψYiN _<Ŧlb`qN^)S}=8ۙLɣ%M UG}ahH2R84!9ՅX` b䰨/w"^d<"]yf#-L g;t–մCW2N7Ѩ-/g{ ]9Bj?LL^E_ǏYPz$#GbF'V<"U?%/FXY@GoWǤ6a=#:zwoVnϣ+UkbOocy|bv*dswUzpTZŹ=~# p |e'|]homni]47qz4~ϫd̜  /&E ڌ2^o)5B@~@;D]o֐ L2-Ҥh&TI)!㬦Z eVf #4s嬖Kuc$M٨w b2"rd ]*߾}oR!br{zzz|xp}~zkr x/[w\?(X!;@ Lۄ|/EFy"`p>A$( Ԓx SDzvJ)LE99mI\ظ}L?I?}kU%֙L&&uיy"~V2f1>R,=v0m/Kc٤Ytͨ9bUߠpr&D@"}cb6SWl5`QTfp|"b>[<qkYb[1s -F+iN #5.;Wu*-|բ=oFd;t)4b?DE=)WX/JkkKƶPA犻K/RTpDrb:!X[;^1G|//R *wqm9:lsx(ݹ5=R=>$ux;cE$iμ]Ȋ+߿Zx&ҴDƏJ$ϗ6@b[k[SCt]2&eWo4(|&7iv7wűaEq'c봎jԝٝ.EW1H(D٪ =YK(Ób\^_jQQvЙ3@9,Os琰z#v;P,UՈs.$lHԙr+[GEә3q.&70+e# v^`N2mBq3}' 8 v {< N$613ϯY;u=65aae64&gct8J)A*{Q^Z>d%OMM&:cć+8BHfo~S{.Xk21`sªt+myCA3S-EGVZR>)VZ:s.U0'0u 1li@zA ߮xtIRy/22/;RΈRxSA8i (U꺸SfWvʥ\*oIv ;T k`QYIOFfHc=>=%nb@ߚ4:%!X!jH<$D9) U,Xl)n4Y::^jcI,y0<9h=6`x5"iB <&>arl2[ةn6+B6Qxre}|t<u@-U>ll2԰[oSk[3drd T?GŇ@c "gR.a^eǀi7i4j  HH+J<_|HwNkNE{ܳ t[c#QZ,1ioibUXtIZR{qB/.L#$w&ɹOb9 RW6֙&"M8ȱ/xĝ_/\ETj,'I{)8SEU2 tANrs`=9j(~歍ðQfY\M5-<&nS  g.ee2̞z(蠈q*R;/0쏧8ʹo4!yӍ?uMԎ'̗̒|[l M0t iޔ'2noUyieZm=fFǯA 'djQ8J`AⱹŊOc!O 'g3+̌uh NI_p8'Ԇ2lWk`}+ĽaM |YnݲKe n55r{4S%4|6˾^ts^}C+s_-_lH*>>VlknxP5ejRԉU_!ܴm ~erߦRy>hU4bcsM7\X`4Fg)@"Lыj%sB$l8e ѾqWjԽ-1ŎS;$Ǧ9E OVwtF9]q먪bPKTNNiQ7E_x:]l#rqjhv=aH9?{)sϷ c3'uQRy}}boeMJTUV4,2 %ƌ \4YUT^9LWp8])K\u#E.LD=(cbP:˗S |dצ>?ǑiqASLƹf@ep+-Ѝ7JL<T0hvyfeY0+P=|IA+r)x_/Oib\@VerJ`b:Gt4ebϾGX {G%i2kN& r3K ,T}:<*-lvgy^WdQhK@{U :XbrKJݪ&O2H<""".Ϡ4[;@WJtrm?@e}JfkPUhFװǻU7U#M5\l;﾿+i?(F)ښASyyAq%WAw߾|5.kl?n<]𲀉2|hT7zϧc<=֛xNjwǏ7#X9!aK96bF,I[śO.{dw +]`AXن.|e哤G*^3*rCk9'^Mﲇm;vZT:Y >>F*\Tr2Y7)6d-^NA4v. SF;%վue qȟET =]zk^⨏׼: b&gOgO? 8< i RLBƴUljbM(+Q tOM :x1ڙq+Č_ΐvkHN\挹 vM[`M>%xkIs-bx}*zgnpĕtj<׫$rt#` A=+`XzqnsԨa\IyG_Rg}">Bf Y˂P΃}Z-ߊ#ۃb0wCÍC.UB{1*Yt]e`h,-SC  1ON=jھY>l3Ǚdj4E)azڀ>JS+ ?R =lY 6+eQ8B|dL.7o?޾+h*NSIoU`D"9PM?)r ךt+#i'97::rfm-ذwEiBSf￿qa#z?Ae&bl|إ8էg%iuFIcW+Թvm NW`x8NIY|3؄gyu>< $ł8;=3Z_".- [ ah@DAH1EPK-''wFGxF*ojX-4/!%g/ ̄kGW qX}&{\؝q)_'Ea쮀TdG#mgm?.- <ez-6MԄ "POmqB6l6ӳhiWTp@4Ҹl>\c %Dj4j2enfwb<*:8~J,= [}W7Tgc"i^ Ϛ)\ewWj=PR#~NƱ>X{sJMT5XxO!X uR3OQ|li9G0OsJDj}i8S H3R3JQO\֝5aO$$Ј{M&E xbəjDƢ*[$Kpsї?m[F!6k^$C܀ȍC_xMJכ#`)5,P"ǣ-W}Vkg`ӇGi<1+m1Љk6[U7hs|L\ΐoߏHi(lbI-+~|kuO`C/TQFďŹJbFt߀N 3V%PǓLًonMKoq@fQf15;#dNO 9j+OA"L6D\,SL 'me$_,JYfpEnǒZP6;ΤæbP`bL3؄=_z~~:Oqcۊbbf1aO3%UjD])tTH-QUfk*vqfV<ɿMFJOTWoYSAә_U4&މdjM6P9E+3h )wNfvBYx%ϼQ;)fpzR|TJt:xív GBz&6[kI@!HP獏v?ڧ״4ETUM\N̖O>Cd^Dr:VҬhZBLh!0|8U5cq*ÃH{ +,c5!a\բ#K: 4^c -N30m֏DI~teƛg;Y!^`͒g-0Zj$0_w;Y#] <?[{ T`8;Of'Z@X u* ȵMq NSs5j$vd(TR?6>iOǵ@s/{@psqlLWٽ'T, WUۍKgC.jH8S{wW`r"ѶS Q:Y_ W8+JCȢoYܟ;ldHyАICHܗxYgsH߾AxI1sg_:*bVs@U~~U-z Kl}s쐗Z.Ņ{V8qA'uC۵;rsXw3c+d"Y[ח1f,iV@,,dOӉ̭qcrg gt*?PpYU 77ofzlZ!g6bGW!"(}q F;HܟeKׅd=iPzRܴpim.̚s@ġ2*)~-'Y36hme%7X&:jAV̪hj^?Gy6u c_z.hc*P[ ?nk3' x9&?x|&|ihڌ# I)uq1LKr-h2^P׫y7[8Ҟ`1'; $RV X0caI ę,xGv9| 5/_=m ^\*XsJ1"{[:C6S)-H5;|^w;Y1q<$ƷEiF"9nxѶ ~9D˭ՙh(9{nv\ʈ%smك)QV-ztkh>HyDoУ41rƏkwsIO,|J]G`9 6WX9qӸ޵LZUzVl)K3D'H#AWJBuJ槩~jEi/fvAҍHp)yfb%WR|bLG)ȃp^->"HaӖ$5rC+ V|bAU *N4h^$cv@Hsk%6LzibgC//ʦG$.@"èxaYjk9b:Zj ګnN=ABVXK_~}YA~//r@;hjq3Qo]ˍ%sx&,T)l,cuC.<ĥ 7H8 tz<<D vmHIL;RpaMdACv<'='qF,:[Evx!m>>=?M1R-2#Lgq]͠:4KBRX;G⛆o$iu}?<#\v@.We$ ?+O\OUi#qv.Z(F[u))LvbʫDb>w')"ltgg;mjUFбOײdHA?S CPUj}UpF5҄k0Ѫ@0 i ]+'M׼Ҧ,dijS\=RF3&d?=|)!buT/KO=>>}:$:eG+tVÚOKƵXbgT]7Ku=niƟbqHeOct9ji Z.٬)HMz1-oʋx\Cz>#x}n/2ߙMh񘔏z}y'{O#|ژcCYniFlG(`; Ӥna~b:k)dvP*(9 T__/sXj;Dq)R$q;>ZZtګ-3C=qN/č>JtMt@?eD`l?JѪ?=H1%fQ)Ii3k$S4Q.U^-O(<gkC^xej٬fV &NV=˨}cȨaGYFQLGM5xYJ|](J9]0k2Bn޸HCvg%LT͘ _o;WN켱vGu H\P- `~ݕŊgj0\ܡR 9{xQ( _ t(<_GOvf(bKT; t ǿtf]LvōhkXF,)|iXuOidiA1Qb3Np8v]Kژގ)]K=b1j+ RMƧFpC#8=#BǴZH!S74߿ko/E(ee/8cǞ-& hwI=0_{=<<~_Wrmn26Ilޫ:,dISJFM X5Ue,)J1ћTNRks,I.3s|iyLIH]gƺknyY}G#>x%ogWyG1HBi1O oev0I6<-*F;e,n5ءt% E;'ۼi5+ĖZFL`\`V|hȖV.\3 J+|yq-I8!#NdMoJn%)G73GcmX޴9vL {,$4z\޻%qT%і?w}Zk ;@i;@ڡQp.XEm0 Eϻ!.rx~zKt,R%dĈL~km1B'ٙ>mmqk2XKLAG\4J@lcY|3ae4߿lvUg&0$Z$ v:߫-ućp e8[穨Qٮخ__l%%<]sN!5igc4!Kѻ<7|gFC]<̽ITGDnx^Ud'>sw#~I.=b?[7c 9ȕ(agz2BgT+nk!Qؖ^4hzn|z4T  8 -|7x$y &4S\3q,&fYVc=͔4vc-P2zZ^{{-_, $ %-vR)ɿ&|F wۻdJnSG TBmX3x.55|oSlz*-l 4\WpW5N7_MzHddšQrk񰘔nRr.Da 6}XXcױ; *!cE)깫=I.<5 LJ07*#qғf$"2*D3&7kY!/IQ^⠛Ck0~y,)30XqM3s͎ A3ﱄ󘾢+41[os>ЎҴ"l+} lxkGK8TWW83D*Al'Ѓ*vÉ˅g2)nN` xJJ:VwZn b3\C$CޮcM+)* _SXS:Dو0{qB{\("ɗ\,-e0d-Tnt:Sj6O{o%+dS9e7[Ǘƻצ^whxEdkC3 Ugp=Le xbŲw\<ď9кTրz:1^<2YBj;oSQ5wy^\zÈ+3]sE?fK!8/'L4s,HC1w[6o#ŞY2xԢI~Fovq1cx ߑ>mcfY FpsQ#:*ydsVj//n/rxf)VZl߫E?Fa.Hc1M x@Dq4aU02ϔqjy,"~fU7&W LboEO4O/%| jtWȘL2k폳M-o0+6)g fjZ@>ѨNڜ-t EPȳr%XUd3? ɻ1V$Nσ&}׮ENBl _wڿ(Zae-ٱѯcY۞%YNC*'ht"+1jM=nmx7%r i.QT NIįXkvlFhWb ^%&A/?XW9~]L0qơt/O,*t,I_R+CȢÏ+A2b2sVLԗk!Az9QFm!r Qσ63qA"1>8׹ZFMG+9}HlRp 4}hE lq`mM|0 H#$,AH"(llhwЪDn<#fn @Grg/_1BaE)0BC8Wbq@=5lfYGvLsI '@!8BuY~5GJD`Z1Gk4tSXxPNNPLRX0d2R4Y'eJg&;aK%[&L"C:cHQe ~M>902?`*RzX+Qܜ'iɋm9Zڋ%MG(V֋j15/YA nS̴Dvr~Jk{PrfKÆ<8!8Ou<٨hyjMD n%nIt2K5O ?D1 t)ӆcsq ٞc=Kܢes20K{;h+RChSA^ϪO,J~ڦM'"X:+S)倓b;O="k'n6R,[Y0) xvѬx'ϼFjjAn8Pzv5E@.Zm+d*A l7~o"@x߷X2iy3d*e]'[q`'~8ƚF,*a rHd C:n1GVH.!YfIH+=Uk y5:qHuG 51!7Id }>i]?<7ңӹǍ;9aͨ1V4wFd P]m.(88K|ڧǧB9bel5?;?l+{R/YoWiV=Fgn76(Y  w>ObٔˤA_7hf_bXGiKEرo^9٩|'Ee=_ "S lm&FAu1 2M#:!u&LۍƏq{y4eֳ*")y=//O/c^_!V; l)YlpY9]+@2thSבtoɠa~a;r x]Gx:j=۳jgԯ zkd|;Sߋ=%_~Ʃѡvm%MAq\ %ỏ0LL$͜_>óAFfa(𰋯[pTGAZowv[eNUNt $j fy2L,Dm"xwU{s'ao(L#eSzvJ~%ajw 9~thj;gM9ldoC*`0qwy?7b9FotWә6̰X'8Ċ-&._O񶦚-H{,vSUnb#c3 9tH>A7}7WE~o֧HGiorOΩUϼE{xx4Y d'6:q(}e#p8u`A[Hriӑb> p.v{tTBl]OIz1s?qy 4|g8Nj ^"RU v0tsQm$ߢ>9^^Kfv.?c%)ݢNiS|l.0Q"|Abϰn`S;2"%LkjJiwdrMKAڬXYܸʶ$}P3O'q۽@sSrjĮZɭeKz6'>X N#Ee Rcv޽QЈI!Q3ۨͣXlq̽/k)MbēICc->D12nM>n8TLE]0­NZ`F̳ d3a|<QI+r*6z2: kTnƒܓZ/eS[dW˜dMaC|w>s|zz@j׉1>Cv4c uTEz# gs8o,RhYȝJE&IKQ:waUW[] JH8dTp$Yx6}|1TN M/L^Ff h9Iye:Gx]TV"gtOŀv⥢5l8̌d*tW0zD4Kyзвo o ,Aps:fIyHI)R#hy*)  1'Dy@y((}TIJ8a'E (RN' p P1KID349լl4RDG=6 I8jK!7=9QjEGW__\9aVT.,.LKQӬI/yHm(w'GĵjAX-˔?FlՋh4]B kĒIL&*0/x/.ghUN,9WCǑUNRb(ZV\F-ctHDIE6Ԯ̊;4hlhRR;,kH!դiwlٻÁl8B_ KII]Q(  YH%ě쏁FkGG\)KF-Qse[$68 㮺J;4#xq3P~)D3A "PIc\.he.ETڷUxxWbW '&`Œ}6ݲ*{t)Ĩ8}\G<t- խu=SjOVtsvNZB9%>q٦x1=4}Rц KRKi^[%l }L5}6wNBXrQc(ċ}#:PxEj7iE&K~9E㈄AVa=PBhŢ͆ƘҖڶ "C/?~Bڡd'pxz㭘r`?K>א2TJX]B"61QY\䧅QOOS|SOȻV"RXk4g7fHBQdi$qoV$nBvN,D[QfS7NPj6g54M}&Bodga``?ظs^&vؕJ5IBtq<ʘZh$!~,66fE@ߤ&#.@8V*A<"S&PBCl@.!%e:nORLNwA 7sy+$ӿLռy(\STKf<RRV&vzU*@g'JIfłF ̇[Zqr 'Oa8Ův aqMC/HdthP']!d^Ԛ9;0>4DMFPI lSZ |ڊ^17Pv3nv(n)vJ UkAeʙԳ$p1 k hdbmSMI접빰L>~n.iDqtD"P=4#rC(i-;?)2(6 /](WPЋֲjBgeP/BA6iBJ% FIZ?4EeO'Z~)fBbƁ$%R>/`_AfiCIDBਕ $=a5wMs(x_ۯT^:`PnXb0@\_CeO岔`;:6]T]iĆDeW ٦)mh< DJ0Jd8=1q(X)/DU_ubD~T˕ 1eґH[頲i+{#"ljfKA_YkEJr$S\.bmҳ5eq{QBPAR:I@=XrC2Ό}yiP NIrPͮ]-Hݤvrd*k2AܬP3$#ɩ ڷ/G[Z^\\]M쐄߰k&dR?3{Rf=33է2eQzP`&W +z(g`r6IN@:nR-ymm05HMDk)X!w څ1jDbءcqn$+.0pcKE Fsen 4IPΩ"RZ+*)ٞp/;7 _r|й&ONb)VjK'2wix׽~\wuo|Ir+VWhp;lT.ݳoo׷a[Iڭ*zj;_HP UJ\Th|/ל 4*q+SQo.,BhUdA&- -U` …O^b͊F\mTvS0b3QA`9. rHBE"F1=92죩mi%o, ?+:~{{~̎ ~o}-[f0 F'""bIBnGҥ{_Ձxpo;{%HUG;#V6s=!ɸrZ ^n_zWaAQzKO>YzZfg~~X:oIfAz'Og jVc`)!>8V/.rӳӓĖ;NʾիxfiiAE|"̵nIOA@"l8K-kf&me.ˍ  z4+ 3hzBzx=J|01,H;[cn#D֠3M.4x6^:P݋-]笤0U4px@[(5d%@]^5:J~o0rid'^*hu-/-r V4@&dhevP}(i!ys?ڎ ѐH, O{N}ǩy氢SVPEQr8'Y ۲Q_56}(``Gmw6^gҶƹ Ƿܻѹհ2֡%M͌dh;Pꏅ uGJu@!A.Lڡa*4$Mq03 I .QPȋ2ꂒbX E˰3S sD@6 O@dpPlƸvSOHPYձ@B$T$P{>ɪϮV%iI#>~ʎ2@CĚ:щlZe92vl.[llp} 9$ j+gIw}E|3CkЯ"crjO7?MCJSGu˶?xM7t7uqsw~c!ӊ6-Јiߎj5HR1ĘCi=÷QGq=k,)/ȞV{N(@B kێ:  F[4~ к~ouE/~Cܨ;15=3fEK(lV LtDb!l&ssATܨ,˶Gj@FO :,h^gbu 8 5eԣ6V0D'.Ȗ,GTܱ:dShϞ|.d,"E4"h) m?H%hl4m`>,KoϳKLaP<9胫&^|@l څ:R%s澺ƶZxGahwh'QiР5R-gqF#8&f)$veIc)o{u}̸G93RmM울瑭 bm]|ȯ8swnOr d-ccϕO:l C[۴&LHj#Qtci96GHJρm}Q{}f|]D z'nWⰹitϸ'N3Tc=w"sWrVE8 jd*N)˞,ڏ"#zReܡ\H/;63z;k3UI?:kү7`)U"n[B:;x&'', XJ%/ s~Y(v=я`ltpJ+w;%¼T'*"sEkK6Û.d ESp弇I=;H', [Lrf[►݉*iĈ'i{@6"GH M/-7ς,/5Auv>;NWݣY4 s'Ѓ|Mo~ zRt}G,!2"+E W/}KY/p n* J ?+YF۾:E(o9x+W?/'.#36[r-N&ڒkュկ`2Gý{o^y啧FPPhUigi=#^WAZO~_J6`:]y/g!QGyǍL׬Y;jp Ro=)O_+0ݢ`[FPd,iM*rƝ)({A. j?>3z o 0ޜ4G~7qOzAپ{9'-Y|cNwME&TKHuт%#K_׿u)ٱ$aF`׽N {{mhd%zO 7=rR|pHa!A(vALgM-ɩ`a-2,Dz;pЭ7aX_.B= x,u v^vs#:Ifݎ 2h ԉ'&&wZ؈BEvc*(r Dd]%0!:qy-ȒA2M~m)=!g8@<:$ dhL+KP@2eHph6Y<ߏ׳׽ߗnl2?8S%?hMw;' ssvvS]0)os׎LJĉcϾg6L= (1 sʪUb7 [Cώ6-ږ~z'wsWe ۋ=|{ڲ)DȲs _\0:"z^ gl@y֪EKdGF^f6րQ2Qg%׭ ?G~`Ztŗ/UEuJ*vߣP(/sP}8E[_ 1_Z.>W}YM)RC^?lE֭[GָQԴT]HB!PK%m;n`zm]h5|}Tcu8WjK\//X,ftUExUUb^LI1ثnk/WW~#~hyTZFLWm6$ZmDG!ZWKR @"q9ڲ@] l\"51-t]3߯NT x#1z5TS{{F|F@60d兪_@/L$)|GvI'zNrБlԗFNvia^?ū>3;[I]E 21D(X.yr#H;n&˲!QVj>oL"4OdQ=뮻oOG{z<Ꞛ"T.a0j43)i&ռ"/Ȍ+f 5I&bOb?O .فh _#o r5̍b|/.Wf0m)$NAR@?e˽-ek~ScOB):kkvrS,c$;hmN]v-u#@AxfӎGOX{J3=vOܦ:$nd(qliA._ԓ>55IL sHIsr1Q:Oټ#bu$b^=+Xm!:묑o3׷IޏrQ VnJŲxDRgw[-3K]%Q75=ma" !f VXQmR(P&hbFN(`%~#`FB`FEE "tDD}BP |e\I@X"J Em#'@3vg\q9dέ̝/(6%f8sQI u0Az'> :P52UgfM9E>,2Pҭ]=3GQC'%m26Rk۵7W (Q57+ڎ#~}T.耥g??:zh6&;s/?1y߿^{Q ph;:T{3٦ZGWItpe˺l\hPL#I F'~N:dg"t6MZaK7Mp(%$*Bn@S1ŽOpu-6H j- NIVKsVc7h?oa#fѽbtydLw&iЮ-q9.$:i1Y|vDa}Ev·?wy1Lzv5.qT/zњ5#[_~>QR8+6t){~#[[lqƥ@1Z/~?ē:5tzN 0h~c?80H H+ćǠ'EQ],llj,e>蠃VE]lz7? ٴ[615Df`1|L׎ĄY ? H8&ʃՑS8&cǭ"a,nϱ0nsŷ}eGf A͍F}\ðAkdfOCޒ; n,o6! */U9i1RMچ05mNKt((f\PHe{{nnj㋘i#[9Qzȣj1sk{٥뮻~g?mSF<D,Aۑ%ԩt%0hܗH(TLjɂ=6l<'o}KK.dq}9`׿ b;eXkeb#^zߐ 9YH#F\F )ק3O:y=obJRe|g_T䜮Z@HRXZ.K^27phb-\XX4&tb*L%yZ>bE)InF4Ì%Ζa p j Ԅ"hڭhh'NU-e aDRڷtaJT RZفhʨ{ R (\C4kiqnF;A+y_+}aCɊJj O1 ق}1JL!̏}ЭNքk׳W[Zz ?% IfzY ^?O~#1y{_z-:$)|B#Ck< }|jR`S)ꫯ^M;<3$:A0a~mj1sN:>cG^?utWH?T؍:ڞ(;;kJԴZFEEKk4X[Gq9"C>bR3D=bM .൯} >+ ^*cP9Ho6R#Xkf܉tV0B 7K{'Tv" sq{8hZM; cȭp4X@Hn#O֖,XY m"faO|8"׿~ 2bKe&"/t]bH)Ѯd55 l-8RBnB.(2^::ȚC"cҀpӅwTe (0W8nthm9Q{hoch>4 πx`"h9J`VŜ,D6n+>^-..d,{Ֆ#;>M}r3ݓ-Ff\i8-8b6TW\yg1Ϧ2/}>Vs8ӡhAa'=!GjZڽxsT`ݺu#[#_D GSMϑٱ{.F$s(֭[r?/}KGysHj @dU_8qm{ko[vmQ6===^tWh./у:C^/&h$x7zUE~$CjDT+5u{7۳ny򄉿+P:YV/Sݣ,-og?kO^uUrnbb“-b}c=nBX .H.-.,aX]d{-_\\FqJ}Rd&%9`ɲZ:Fdۍl~u]^{կkG1Yy'+1S?7wAG?%u~+W3oYᆱw!roYhOv8'|#?s~a>yȭvq|=Ћ_⦛oT'ٺ!+Za/RC ٙVwíDP '@B Ljj ]|=?hC֡EBm 1aר~,~0бsaλΰܴVp6H W_;R9+xH]!l#lAsh]m&9/h퀕PPwҒ Z GQp[m:ak n@=9gҲeMf(Hݮ;jXe x͛d c+RmR V D:QwC,~?=Ιb(LlRW?yDYV`dvm9z(v?$\Fzͣmކc#!Pvc'Sp^g>k\b1tM8AL; p# kPy&٦/s-lG) =vdJ^-9LAbaN~_#y7yA(X U_>ω_]o|ˋK"LG?H޿ 8$5$bz2Nq'?gl S=U UNqoNq.zwo8,,-^nnfZumm޴͛1`)W[ZNTׯ_:y;P8t?C>hlu(u,5Jksy+瓮ǑHy9:g9~PY\t^owjj:I; <$2sX^\LDi'g $+[Ǵk2h4v_gfg-5奥Mw߽/߽yNwcZVݟo? nߺ\.h5zw% )R7w})۵ooaIĠ#O۞)˦f Y O);&3P KBڊ,2͒$- @gU|'īTfOW(Yh^BAV (&" lTą!NaunEitI(ˌ_̮-Kb(%Wnr>^} i댯~u=jg>qiot 呿R`D" ^¬^P. bD>dE,PNX g?ƈo_W<ǹhnŻ@\eo->묳,x 6^r <_|p+wHk+n2G=.+g PDcFmݸTImLn5L˦r8 mt>`۳`2g$!^yl/'],K =tVL,V{}ݸN%nK=gPWZ$&{mT/FœbkދKJ/b_/ ,Vn759լ7Ը) 9y=k9Be>Sj { \+_=8FY@,ێ-öj; ;f@9ApP^[΁B:TR#|_/kz [NYA]VԥZ+#b1"N@f 2C3SVMDn@\ܷ/TW& n[B0j7WpT ټ7uß'HQu;]lbWj(YR +HaaĎIzA|aF}XtoV}wh<ؓ,Nъ-a!aѠ !3EuW_}?rȡO}Vf "D9`}[n.Xa=oၾZNmA+ۭ?N;Z-pB[oԲu(3 9`u%ԧ|H%Z@?SOkzSmA(((! |J# ;OT"uB8V4]Z9vsO[D?%C(U dgɌ-s^pJd1$5#eg\%Xa7 /9|(+rijF@K#DRzxɟ,%@F 51 crލwX1NmUx]xᅚHS5U+~>Ä,.څ2jV/P~C`ea8Ÿrd/it׾_owMˊ>s8}=;E|Et&Y~j6-i:r2SJ$^*,0;6\.WXQSTD * [$ƊRHOP,#EjT@-ґ+dTLk]PWǟ? @؟I[g?[[."PLɅBQC4/b} ˿!y(ii,+ + S~T9_#jl6_"wG? φaD"G I+~d_.b9.r3ja(=l 褬Ӑb.cfgPnmey7ݳS!K^ힳq]7a׌ O|G1 {~e^zyq)- ]2@۳YvC;h! 99 V[zF4IlYD}VIIۦ;A= Q$ts7RC0[fci$ޜEK&KPHm}mz5Mn馍7^})%c{Bd;'d\I^mܹr}N8?ndE'}dGLѬ YT jQ j^@k!y]utWDO^ZV,/-65"zN2qs//hC Oz7i{쳓^|똃!dd+Mozÿկ_ܕX&iu=./%UU[cپe=KG4(77컹P4kP.w)3 )GeI{7ҳѶ(J"Tt'@ĕ]D 1H-ʈ F55pϖhv܊2au{P$LTgEv"V}Ⴂyhq%w=>OWyͫ{նc4mkұˁ vzr`cAO;}P1j%[qNb*ۭ<<]ȓαXIY>ߤ/Bme Ze:uzTIcF[zKK=P[$}͍pT1)A=ȨaᵝR.RfٺLMUuKaM[,9&@_<.@_HB3cN=vC礈pX:)b켜Rϧ5CHVv8`{.⊑xg8FO|r7twq~ \DHh^N׿u\i9Hܨ6~kNzd5${}{W&۱r!^zu]gWBp wZqa`Ոy-@5R6A<5i"W~-7DL5ZY9˶nTZs#mrא6*U*Rb~nLHQ>|Dhz](7M3epvDÙ8ej`'D.z(hru,l&rffOۉmX&#g\qW+')>Djҿs;Og|>4}NadX (ncg P~$/<}]tEڍ挚K~2۲>~8Bo|G3+^c>sժHl޴|d ¶e*#Mƛlh{aD F}@g vffs{o7՟s[SVr1# ;1d&%o4f-%AiwNx%,424spƤjAP^P߮moywQwme]"cpް@%=b[,< 2c ,_(e'v2s"' ;z#o%<{t(+./-.,.@'huЯf4HZTI]@N(7PF؋LIzVݞNJEMD/2Ba@ 3px/Q9+\@1w=6!vgf"PM =i¨\c!eʌe%dE/[%{!I:ev㨧!* ȟzȗk*S'J@F*p:ƍ-q-f$-k#Tdkۻ7oǵ8-瞻S}e#ۦ?:<*8x}H^VJj’w;щ}fF+W寠29;NࠐI+Bu%9#Y[Z;;,lR?aN%(]hЇƵKӶMQ>jG?zcvWo47mwiiYx հl\%'(Oe ^jp[nz<( 5!zR,Ya*BH1:hݦ\$$MT?emjU`bIdb2*xF(J_ Qt (4lȐإjP}[:ľda#]!(xsL"; lGQ?D\jEdCA`CHXdٜͦj=IiSz,G/$QbAk&k6` #v|Æ V7C+'wi'ollcO ܉)F/=eun=*Q$fV D؞믿~V=÷tT'eHI{vaGyQ%+{,gkZtDݳMmɶPEH aqazzu'\!AB~$8_s0i鳤pmG@A{ٵ~}9Gujs't_='ijtQ bcyo8P!:}Mʄ;tffg1.K$*7p2Z*S=^z鷾rlx _xUW?̞V%i5k׬]N sFAd}.?+U #hN5u`i9tMfY}ynE;۞VkA x ݞ@TdgffmYZ\r<3V0mcZ]_VY1eA+v}#7;°ed:vkgLi#tNqD+ I`tR&T]xG2] Tx:2NN! Ůe% 6[v=HNkJ(J U;n$R\g$ND٘h]+$il5SSrŠgH&mRH?sLST-m?±k4a|JϤuf&"zvr0'&r~%2:V+LQq ێP%a)T͇OMM=I=ak֮]gwq=z+}9^tYd\H899%\bqDyӁLf;L3iNeFx2QOjLL4;5NF ;$R>^RI[Dt҂ ⬞/ XT"D\ŎKװ氟5[pFuk?ǓȮP,:G9YeoiMf^.W=:oǜmJIvK4>ѓ Ɔ*N /%,`mdh6+8P$Ej">gvքj`umi/..Fy Ծ%^]RdU,W!?UTW0Bvxb|<\hpL`B(ټO޻9rJKpTYEٔMڵ0@Jn'c[{ɩuw-miqΪ;Pj 4d[pE M[${p+ͫM&JaAB}V!!Ȕ7yҁ('̵rk}ILez}80p"ߊ)xX FlFu}d| r@8Ù)! H(de'"Nz+_Vն/vk$К[NBo4~R<ڦaQ$%%Z$zY$V[lITwԆLJK\ (A* "\C[`<;VkcS*j₲\* h i^vizR) ǩ)hrsA@s,RܚS@ ) 𩤥vjAYN!m =ȉs8Q.1 4רS3V^xQ@sm;¹23:t]3ϑ]րN;'xnZp>uf[.?x:ZIΕ ]i)xk;ۗ'1'!PYy;{OB~f(QIDHnuW(H@Y:ؒģ-!4r YD.A alD(໘K4JǶjmv, 23s&T`SM( $WIvcfn$bB GmN2)KqB݊XʠD϶j>=z=\ >Si\t!mۑ 2l˞ĂXe6Պu:!@ V*SMD@9˥++ 1u4(5DL;$_bzB*]|tU! HL4]&ך>լwck:}x&ǒ^䜘|hb +J\ PMt%mB̉EFϦWD|$FXbۤ(7G wvk[Xy=BھǡNt9IIH8\KJ~zܶH{ mBa2uvꚮpc@ɷy0ꐃ$8)z[Y3:L^0:k;_ObiJ6ZrF`a ?s9 u[#o\%ː$+P/ ;j? ¼ gHcY{ήb|+e \'y8&njr2^P݁QB2 *|5jJ\^CfZќsXّ WboSs8i{.mpa:QfK]Nt*%X)KIkY2dcMs;Vj(Ui8Ed$z7ߕRI݅슑nŬk ْЅ3)dAEG("5J`ASn-!e1ȰFWu 3:D2\r) eonf4}fQ pn/Nʲ.=؉@jFP99sQ4bM~T%ـBhv)<36ד-~h87 0N:ZNQFy(XYftcp%haKM CaؤV$ q& b#+\ uDmuAzvCc6NpN-V4tD8b]όe/\I3Ie]қ^C iY'IYI,$5FQ TYT .[KZ.!gb RI HTM3`@m;`g. t~# L_qLEN}ᲹK7;m%:/F,2ҹ?IxI ^# m,'=c,?e߯Bn8H ?HЦ$}W?` hg=d*WǗxAT AC! @ydP1 $1 *@ / 7|{ϩpO;?~U=g^{2Xe0n $7XRgW2wL>59! N䷦1xT%/l6 .$4qO=Qlmbw @\cTŒwdd4UwѝVY6+Α˾JB6'ᯧ#iU!J*|R0ݕ4)nT^k3f) ;G3$a2JKfEA~!?@HQ/uqTd 뙊r@7sp,t̲zP8wc3fʹHC)pA~sG$@⇃QfM&Rd%viB^-@=`0^ pjr\oeN/&B?gn>cm1ʌf&K93sB(7 )$ ;TX/FQƈΙ`S.$NMtAXLBp*q0nN|kܧQN,oZ`Vnqvz=RP̝ ~CT"t,KVWo ssUMo6&sW֯mz,ޏZ:FJŠM_vTء/FbLa) [U"]Y*rrH UCrp,FAVL Ȭ3NzZ:dFȈY8PMNN&A~2vzuuִ=V _(Q+tLC*50KXvb D,lRb§\#갳MGGFw} )NuyjgsW8qVH18i@w VH T w 'tE}-ކ("ۘzN[x#5T _0,жGIsDG'c\`億VshhMP@T/KsF[CTA;Nُ els "42RMkZ`rܯ8rOD@=FGāN fh3W\Li?^N GLs90E kpfsDJ8:Bv"/U=gu3ˑ`q .^7`q";h9Πiؔ0 J ^rrʣO"U-$+o@>SC zߦPzpio"nm`bU918Ù,uI*k MKAH@'Ǽf7=SPEQ~.5WCXdqYRjەAglG vc3\x5È%N` c:gNSa"ĜCn@sR/e6IRFk&UUm;gPd%4m`*X;ԍgvIH$hI>VdDf3:,|G 3ӌـ-k8jm$e*Uy_U|jB54~&HMUA LprbY<2ȤyXiC'F m.D . UV<'xjr5%RIG5h{0=a5c{Ȋ0xYtrslAȉdp aC"\gU!`G}4r5J&#f|J{*2X뱇,Mx7Rg6wM+"SEog!@c=JA l(( yF)D*$ ,\ HO ؕ^?99!1l&#"b,08I0/9Z"Q .ë)&A5dPi[Ɖe^" B{9r;糴uZX98`MT`o#9 ]ziv:?inύL{o~/ܼ\l'E`D:*6)RISšԙ?04rZo:&+DD""6N6lC$+d;kITRV4iȸJx6֡JJ=QUG%W+,ѕuN/KRMBc' y;IF$shM^Nz${ecO;v͸7IRPL='f.5,FܚaЖ:ν(o w b,%ƨ%"Yˌ3uݖLdBꀪY c f[Ƙ[doI~G|-c4)հ\ԾMH&$tVahLX> 9} Q<{4@[ 6DlDĉ2^{Q"h*['Z-TF(w5ל1ca ˥JZNR> 1Nׄz%љ`:ץqMD?.!ЙFs05&˵ =~Ht/*YOQ! ssXݚ P*S1R 5M|8Ɋj2GǍaDj]7mgE@L-.D@nꫯ!yE`F3قn$:u/z5 Ǚqe$ןӋLbG8U59|W6?ss?s "dq樸TbO]t(N 謧K,ҥKLlxjp^ֱ`t3027#$NHeR"?̷:P+2ͼrL\\iScQ_gaHe0 s4t32ǵ' qmš'8ad#2BFNB,ʌ/_dqH\#(I8>AF*E_bH04I Aqws Óh[3}nnb0qUd^ ;M%ex@^v\ZVGdaEu!_Vz]DWOoPɕFcjt8٧n+Xr*O;'y:@3%6n82p+e6"3#"n7u¬3>K95IH5b("LnbP)[4<'q K_͌SY U@f/;95ir$!NľmU#ɣ%#k.#NdA@ @W2AI% FQ&j=| ]^drrrjjR"2ڛeZNa$"6ϕBHkȵFX䡒5"g.WwLNlPFFvwqGEbZ-l:eȅŬA&Q>;I ix$'U:8 Xe,ӈicE 9F&g_vC9J Mcc/B'A[k+|㕮ᡡfq>ptvj*=ɇ͐bGۯBnW (B?^DԘb))4[*֦6{n>قlȆw7'eg@ep 8fLM{5F3nOOLLɚoh1ekQp@sŜJc(nyH2\n5KxЧijQ^dDY{:-R&CG.+_irvٸ3cWǂ"eB0ZٕWZ\xv) ^%4i81(oA):V@"c1"$cUCV=|`VrR Xox|=Fڣb8܍8-bۜ} M{AJL3OZe{ 9Yqb >Y9N1 "Z@eKY}uuA⍚TtQ "*HP!s%P@-5%P(\& DR8Bђ9?)YL6̉b2 bO͠-@\4f 81 Eʨ)bӅ^eΊ=h2kO+d͝;wR =#Nzu8(Exfm@fW^4rTd%555G뫪2#&B:GOH%؝`-T 5p%gldy UU΄42Opܜ359|, p4#0BRB;%;%__nk\Kz;Dy8/4MbK/xt`6g[YCz'}^)v:Tr?Oԕg-l2(28$,An4 vs!k\Ly r"**w5)PVdr7 OӥQuI(7TzYN1{ra4aVhggKE{*jёQ>3YgUhesDއ;WR?se54 8u70t4LweW6*М4VF6")OryXK in4T :?lTU(?bН'*E6HGK&KJA yu@^ nd#!hpP)i8ɑQ\jNH/H@[V;]ޒ@xkf.烋t85ժ24$"|/W-hP{6d,/uٲex  ~\ѳl7+."zS5% ~Uˣ~NLO d`AB6,i̚t\@!g̐ *7X1„rRTcH判xꅘBLY*cBTE$feYɞe ߏ\+-66 몞j,nkjl|<ߙ*ͮSU,#-bbZE۔P* _*66W%WyR`yJ82p VsTU9F٘jl<[GT:ȚlKY|ibje OlBK< 0j3:!Pj^}̤&IBX7یхZnh rS*g)fsũqP礑R9:E I8B?R˜fGpWr#;;S ͝8}YCu.m)Tj"L3#_ Ѥσ`qPi!aPq+sYx "O|c3,YޫQѤ$Ñj;\fflRot:,;5$#2 n2" U4QUŌREFl'uZ @Se!ivz/CBL⼓Ҡic\r˒Mҩfnp$kD ; ^~ȶvD#P gNq=d|~N8pb&Ѩ F$C<}=unD"MGGGXTGfv@7%}ZS=91j3@Taoz Z"DY e)"y2uTg5es4(-U|V ɥ,^Xɬ3s YH Y^oAuȱ?.2SO=瑺Xy}_ߚ9s,6h=vLu)&;!g;~ ^SO]wu_rmݾNs_>眻~w?>&y=G̡Q kZꪫ}>V/<_7xN8hkzח~O=h|緿-O`3g8蠃>ZkFvY/ϛw NjR oZͺj '}'t/$E-X {|5[;B Y:Ϥ #"*5^֘^DEwR*Dyi*\;A<A8%fJb"dƌ*TLC/)v6e zUWWt /.PEEY>Zb^uٳ2B8oP{6N3fPdc;YAww RqTyVԺHcϯ|0HRCM9G.ϜԣLv.?76sT%7;Lhdi~s瓓+ȡ܍FV\bV{5VK,:Ys8ro4 4`0D ;zCRX1Vpل44{ -R8IqG@%/QH*ti|xxhj"ԁDIWe7._muSGWNfe6.E,o1o-7߬ $k [k]{W,9(ïV=*#|]yo_]w_+/<{?V_,pA,!QEׁ \sX-MwQG%qVn8L2fM>wt0F|d~z%P +@r r@EM:L7#xU: ,]df sIX1lk6-t1`GN4"\hVAVeֈL3Iu˗])YG[g .U 6]NhTZ\UjZT?Q^mB5XVkP[C6E1/Q5v %9V%[F>Jχq5+ي^XT>bO*rgyWg sFYB .F zp7}#Z)o%<}YZŧUcRJOl-nMB[* J 9_N?k}Tj)ĵrAH!-GsdL㆐ I$s%k^mz$ n[.AL ȸQRFYMЊ`zqf0!W#cS+/G*&Exwak<"Qg_tх~Oie/'rC3a Qe5J6FF kp$vfj5a@b ^O=;.An+(`ut!>L~߸NM)[eU;[nȉQ)\ݸ\pW_};v%x(% s/3 h1K-k1Lt PEIYq>݆~,řjF|,kR5 umHf~a~g{%}Ydɉ'h" !L]}'ӟT⣏>矇RiR_֓F&%o:#PՀmNIshxrB8~!?9 J  D{,I]ƑM|PoIFFZЎvyR4a TVXrq\吔G:Ftrjđa@`h㎢oy7uz[~@JFV +,Q,P;}H8a@jzdB)H& tՃfnJ,Fm~ P$&Il0T,l(1q );uQo?,[R9m߻.E]{;pV9>D19^[ngz(ou,\Pj1*݅̓<~Sm#ML=R1'[}2VsL3IQ;QjF&lRYr7}:a(1ʃ} w' FHHM݉GGOPTU ڨ><~&dJ^`]gt-tRÀM2gy8 @^"( Jgn~yQ5M~110g\"b||VSSi58 #}ߙ3g%1PnSZRQkqR}; Xi awڶ`8})m3K 䔲o:06#1< 7my04<&Cr&h)n_-cvIGoÞ'_hcEv{:\=k kS'?k{}ςsWvRis%RJflK5֦@KfF|eՇ~{ycI]x?≟*3AgףHdQz:!:j8W 5\0"$<ٿs=Ryây-F0fGZkrJqS %ƱC(ɪ3g5I96. Wou5Rݮb {KaT̙7H]!?j#jűcK s|b _Ckn?w@ X_eң8 ``߸_(ߎ˜,QTs/Eq{C/S: $=롗ž vA!WVP &'9眛nIZkuYg/dY?{,6ԈB5C?B옹=u@}w&3[SO>SJ_r1q%:lR}?,>C.[oK!%W㟐}9 ||{ߓJOmH#y[=+Sg c9G>X?m&ƫ駟F܄mc!Q~;ƌ?ȩym}gpOPn{k}z|#\s5en69J! &jvT뭻G)[C$LX]}׿?^xѯ&!½[+B"\N;tWz8@b_&I kT`-pMi>Z?' \v(;-Rnoq?[wa{ .y//+8}z!\>709Wq,> 'NGưH]ޒ%K%Tjhηb 9_傗/[&1Sc8ͺr&S2I G-=JCIș={T1KgX.LK5J!F_zWwsj&8g(9ԠrjsJ忊z#RHG}tddDRmنgб'i]V\tCѱQ9?K/#_w=LUE]可Omj/KMg_0?$R:-`4B2 $ ~kKĹ{%_7|pUW^+) KЇ|K8Eipw}m4k2^~3N;=y'2eD|IbCBzƌ_WsOS<&l|޺w,6g^}]9nIqzފ}_v ?d*wdWW_Ns6K_ZhqOag%?6?*y6r;,ADVA {r<I?яJ|Ywu%7?|UWx.XGgt egoFY˒Md','|7x##n5\,]DwQN7Ds1VΓXT9x$L˳뮻p?]Ua$xRbp*B9FGnK:${cz\6rRz!t[oi>Ъsnrc7xkrjB^ /8N8A?ZU5T uOJ~O8_{q!?|t3fϞ#aZI'}^vm/'p=[o^uЇ$R_{jI9obdY{ȡʕKp'Q'?\;,Ǐ:S,.Bl0O"*Vjv\|MEApf 'OX#Tm @k49̲vi䯏=!Fꫭ:oލGqCDGh+gT9&CVʒ%f!Z\\4r0sdʖqINĕs֢bQFߒu0<]D*]za);K2 N☔\nŊdk#1cc姩y (׍&y/2;%LPG[l'j-I!o=@ҩ( # xlm,[eU +yk V}E9W\J7DTdv[o1Y1|%K0-MRjkJ4]!A3$lk֔,C .Ԧdu]?,7|KPū2W s͓c=0jMmՖDKԖ56ډ?a6-7 Ʀ !%"@^2AjҚf JG]qŕf5Ewqr!rU7tゅ ΟaNQhU Ko}kjjȭ*?}/s9D?7ߴ`BjI.?_~=H&97Λ')ZPַ%ѿ$$pO99di'$l42䧒q?CDE^|ŧzJj,*I%IXa|]jM!YRNYk6{-V8cF^z`8?Jֹ+B  D>*= @ޙܢc9F;Njc9CK.\P2TjLE=15YcW.1WbȰD]EB=ay% D0+4Y1(Qw9q(d/KʀJX !00y+Kl)ACER?FY͹q_)`:UKf$qRKiG_xBe)Qȗÿy]׿>rp~GW$vqG9Do%^k޷z{Kg'g̨вZ?-'K 08 1on_jA'abMCß;sArtPd V*-xد˗98溁rtzs]HK/y)l&#c9c}i*}1Z$gD&0{JVI8.v}O\)ql]v%tiPMS{P6* hP J+>eUr7%ۿ~J,$V+fro!-"$?͈3 }J?qI*HmKyI+~ғ;©ã5)N꜋WI@ӎ!rmI#Se+[^'d!K%uo4S 9 O)_k$cj5A 8:}}cf+ lZjɷW5_nS"4[/*rcȢ@Ir\@ӀŖ[m:rT85g\?)#5NRyHydSTO ..@׈':'Dk\/!0mleQHg+bd+ϗ&bF4\'BcKr~sY oQQ"* I/_ @.ZHC?~ڷONo^.e_nSO=ya}'>.?y.Wo~RlF{ /V()Ũךjр= I7Y(C.jwM⣏9?]=t] G ZqRNdCg?/+w#er[今bɥ祊}uPtS zlvV&aW-q rPTJ6o]̚5jt8z)ޞmdI Ãť#^>X<\!0W_^[Bk}9sODW^q+s`c_*RVV5?sGݥ4tdLwzEO5l-);94$+llev-3 (*/Y_뮻N*g(K ֜Ay}T#6Mvu7^!V^%PiK{W_}Yg%S_V[p|eK"m?3[l ?Q~w;y.?O$Rמ[oTO>dOJ-{~#p|_җB4 ѣP?eJubbܹs=W_}u 68}2Y&PꦃEktp9vHmϣO*w/TsٿM$Л^_9d3rs=m U&^TSB."5 / 7qpΜ?{^sOMAţ]/g{NRRV` 8y Izd~Ɛ>V ŒIQ%qvdX<n.Cqtg!qLa Aw)W)c㪪ByHR9{v5:61j9EN h^+B%uZ*Y~7b=9 JQa\ʑA9&j xE$f v#ݱlەjdqoA"N=Ն?[8qo҅0,GZjR'p7=XJ~ᲬE ]uW:yg[/ Τf/O,RIiQ,U?Cå =ٖj9H a ^y_hziV4Î~!b]N*=M%, ϖˏkj .SȹuEDX ! ֓uqWr F뙉24ԔDDU>TY. P]AęeSV䀘tͬT]-1u]PBN6rzܬbH!9$W+jeЕ43$@j~[Ӽg?[8k!= j-{"ŕW|SN}ݗ]t?ijR K~s\^~+rov̀/'믿׿ebbBn VeUvS@:W,cƎb01`,/;66]e/O;{~#Yd/ſ-e|pf<$ YovP?]q_͛O,\H´|"y_VlR+l z꩗_~yul#_z饋.t%XͣƘԳ?Ywnf !t)Ʀ{G6˧>w:?X?'tEUZ {Y6 :`I2L1"n#wR6LWM9ݑ?Vq}k:wfm}Q 9du׏F'|G>ߢ ~4T/ (1<7l8\H^Vaj5)Z50Xlŋ[*K2QzCBT'!AaU ;Hvˢ!u2$7uHnkdx M wM}<2OZ<yjRh'pojMP rKNe"CLu4K Wmci#3ϸ;-J'=dʲr$;$$MaB?$+I۲JfW@ h>l4򗯹ڙ3g:h=4Jr؝wY:8$4k1;R{&yr&zɣCG!hvM%1E˾ 9<;!K??29BIO<믿"fv:S䠕|%_: Uh"QC9!vPh/b^|/i659YYُKCM7޸C;#*epؽ}xY^rh}Rș˾[$HPzH›e[8Y/^#YܳrT=rd^{.zg1Tny^r:"%RnjIBm*H--ߞX1yWf̜AO?9*[)|.7UXBՒ}': p=[%̛®Xe*q:P\Ȇ2u=oXy`CSsJ$n&ȕ`&Z:؃q=(!rJJA}¢Yǧ4_\o4ͥZI }M\A(J!F4_ʙ1RQ:W^SDPhvZ)Fp=4v&\Ky7fs45y]! :OMNЪ%XFݣ$t%+;Zc[pFkB+/#{5%Js:{FME ^"c(kF<9 A^,-!BU=޾ dh;wrq6CIT9&9i/su9Zx0"Eu6ﮌ.f TGHfHϬrE0ؼp7^ za 2fgMT 2b gPב<4^_L媫J)_5%]z*m;'c'7؇H 6edQ2@ԎmK,MI$ 2U*˗-V´&f V$}U}(guxLKoͨZ ^ ١ӴjJQuF8 5rhnN䋛G0YU*c^@.˝g@xp*_'Sqfݗ;6:53Uӓ[*r&TY[O*W-ACdR&P#ntNd)ly(ũj~h|_jʺwR!w`.o-RY|9r7IXabŊ%K.Jb'%H@7[(fMnq%J45)d[ڙp8;{V4.k5i]jS);iye=9t(D&9֕|A'@dnޒ1 6kQ.KC@9ŋq(\46z9(OGfF_ ^ԢTǑQM}72n5ep432tmi.]tiy@ȌGx|Ƙ w9kgzєCyg4M>Uިr'r#\ttX a$+l|ƌz4@R:(S~\A@3jKO f0\ik&xN\*$ sW;hh=jQ !]x.55'Q/cFVj癚AOa@>{^t! 4-3y*O[%sxK<]R4<՝xbSU”u OɜMC/FQ$eK$#M?z`2Gu䯭I,uB*__> #ׯAM l8+QOTK!2T-tȕ_B"3s!;nIM!8:Q 0z d8ь>[SSr+#ELi9꾃(;hyסb$[QU8*Ъʹ,$M S7B5 F!7Ko,ktW0j^+I4<4bb9Rm@s]VYǜAJ)ucՈ݈fVzh5܃&!G, !Fo2 Eo4ɜU栒3̑@y n^4-L/ZH]0QnJYrJY`tictY])#'-C?#:55wΆF~r> fJTGo"9ҭ8KJmd-ߜ-6KGJ)-: H!PC֪06[˫kn,""UABmtԠK<4'3bV\A,^6B0Y/ stc =Y;Ǟbru `!"#;;渽&?!m .vAAXOwT+ Dۉ0y9sD6҃0Býz:I-]6|U0aI{YjaL0I&GF`2+ Y\?׽dvM Ċ!O&SgC8/BK Jsx1B9*$K t55%w'*JPqgnkZ]uW/+%"2G&@ '1D\U% ިlpOGDydԠ.Ye ݲ^gUVdzɛb@:mѓџ!vt]30+1bdl6Ί(|>i#=s /29Ǜ*]2~˷k2i<V&#L5SC!UCL OdL(*FW)%Rw0dฉ䋇eiExMA̔wP4ouIxw:d$yȋ5Xɬ7`Veϕ{ZubRjKv+[qC7VQ2V FN j%tt Z吗+YիWCPs,'!+-fV!͝4I<ʴkh|M")ψ9++4n=a'~K6Vj] XK-jw5|3E*Ha}ggzi P@>CklG)KPVxcSڝn+( ~t!.bQ*5!ġypƗaMvV)"Mߐ` N! As0V:_y t&IlѪrk&WH)އ=#rKŰ3OGuqTXٓ=?8q4N=-IPPsL3t\ o/f W措˜LN/A8ժ kZ ;#o&4J`X;W^M)_Xpq{2i `Pi>hv,Yq|Jn+0 môV!Gd6r#5A9e u"'@ ,0Xx*V'MNŰVBC3U4vpG $ 25{#xPPp-4mg=@buyY3gRj"$e$qp0v{.X|v&vMKAXo )p*0I9Kra)Qb@lPv&I%deqfg+*d[-R]a:b 1=BveA0KH]۹3e~]_+uO LKg!ux+sAهf(3 +kltlHRU6f1jK SGd"@m >5gb@MD/X;T !AΙHs`{Pk_Wﴕ40v.1M϶!eq*"T\P i}}.NeAD:0p]Ɋ`@-t$JXeCqx24©FJ8S EgYZ!!J2vO9Mg&`ղkB0Ϡ40 Ѩឨq8bӱzͦjF*`JR¹( &P p6Fl0j RzٴX"L <(+V4ijHn6$nKʈe˖ǰ-E'wFc ZT|K^-KlN4h8ҎD9~2 ͢2[իc26j׫ @dy_# U\(`ڷGnGH5mP26A\6иeOG@98p="͠l0/\Iyq@b/\5P}gBUa֑XH]:6xfe<ɲ8o=z:H*o4=_"1⃷h`]#ۏ(Z#柪?!597,+V]mu.~:t-v0X/'-M\xy4wdk\ovO V%nbz0Opd=#ͬ`2ɲǡc@5@hâtڏ7m(.ib\KZJ-9D|DIq(҆C&*5|0i)9 $O65$JkD@yش~|y7} GHND3{~&mlɯkݬTz8\2nӖG;-Fl\Hؚ۪}H^ q?DI}<= tꀘEBsA6ѵ8)89[O -EiXVp0^KLVUZ5LLuyucn}dyەj 7FD?OtXZ{NX,BaTd7~?D"F&3FNߩ4T)Ŧ[h5~^zSxm|UX & 91-#m>>Т+%V}`JND/W85N ["""S4PROgoZǟ~aj|G.ŭ03qݩ2Iem4p&QfTEcl(+*7o i|iaB]4x4=(ͬZ3>n6 V$InB #Xgù:{|29' } LVnx8L(CU9 Y]Zuhu$]4oM|YM Q= kw Dbcȝ%Ei'^2 9uI?d3Ռ(|mQIQuF\R' ;=΋HHhV%FP#gISW%NONas9yz0F&nfD9v]r ¡h$EKY tvS,Tir61^X@f(Rh91$7^u]U꜄NeʚKmOK^@{ ĞtGd=uCٽr_&ad'mZ'RVPpHa PMPW\]EſMzyVOw@Lsrx{(IRZ?yl pe >ݏ}1iU,c?E>JKxP*\ŸBaD_2M?zxOF)#qT 9T3ʔ KAl*MVYPtE$R`2c)T5^sSЧKJrHp7R:5ڤJ W->B-Diip֒Z ^fgqf$Xvz%FVmΕI#\=ߝf~oWmIGib3.֫.Bo//vm(ez2PZ}I(/bRb Ӧ{:|p{gpkBLs471R ^7tnƮq鰺Z3bש}9h,n`*-"k4&W6Ĕ RS5鈘h;{J8Ll[W2[e֢}oUb|CˊɜHmj*v/ gg=Rs3eoŭ^Y6~PZ*F?l$B+Tئ(~15W0۷xGp%.D[-iR|ɟ =| :3tf:U* ~&FJ@~ˏsnZZ<|^nxL;*e?YXmeE ]w0 労f]i-ߘ ;}XoLXc 'n}OO-_r*#vHY) +}K` 78Wp7]*MO[[=)CfHXb~O^3cQ1+cqJ͍. _?W5΁W[*a_gvҼ+ǽ^;G,$ `Ǵl!igF|aN$q?,ţyX %~(-ii MQք@໑oϏqY 0}Մׂ7Id6~E")TѬZRsT!v`I6P7*Xq~QיGUU,v¸[y?|}uvSs U\󐂔}Aa,c7ߎ#]+ յ^tek83Ju;@U͠:V>E9>X iW<1MqA6sPu V僧/=xfGBL"]I/_>{jl5msiǣuyČ> hJ{n{XrJn0 햲 (/%C9!ݥ@M«GFeyԂt,~\cr h=oQrfi2MTс9nrD;r X:+r$APvz_Jx{ypn5qqjw|rUNh3`קcYH=M:9@'fD s'ib =q5~\kSb84эԘ-W DATFaۂ;tLalyI~Tr5}^I~_{4pЩ\NxS%ntucs Ͱ}t:/"ۉ6fz|A|A`|xh6 ݥY{_=Wb'0Uճ5'?}W#*7i8M:W"Ah6hJ=zzUL8uSD|!1f1 C Ke6Û R Cb 9i>>Ҿ(Qj*]P@D_c[#NAۅa}ێBpBp|*TAMT&/[|@1=7_DǹEE=Qk/e54HQNtڂ4I4Y?Wbq]pP!ބy3ƻ!|Nț\I#/81c$&ʉj'>Vt0pƣ14ga -w"*Q#*#öTε\ZA%έTOIad54SNpSS-l"t:pRRfK3 q(I%X-7Y=@Pf~a5,ioW@N%)"ÊhYª,t]rHv5HiqmX.y*OE\i_~X_NЉѨc/M`!BD5 l"=uc~nÏ?f8tz/BiD;f:"NI]GT,oa'z뻱R,.8zj ٦< RXÂKX7,N!kDs:Yf7^lv`Ĩ@R8"s.uP3O0X?lgZ-eST!d A*sY3Y>O/-5 :4?Ϲ( ~2FvS޲&# ,aPƶh7^6\T ?==ŕNεx:"bEk#;tKIW2R_QT sPo:?05]}ٜ#<]&f-H [DtJƞkw')t~Jc 2]L_xXչ]:U~yi[2s4bqri$,>޾N;9]sSz:3϶B1;P6YZ0uT误/Kugu>`-m%3}p!U"niKâcn]}e:,s~zav8[ 9.w-'  'f>}'C/ eż>??j4,_]$zplq0F򒧝֚_2yb>,Nӿ⻚߰hSOtFRӧ iPcgGǀEE@(;?]iaInK Xi԰9^e3xQ-'pjq +(+YvVT6uu\.rş2+9]j^=N_a erA 2&lvu,t> = zj[dWgA)Ъ"ȹ@BuX[N&>.[?l>r>oRK6&HS~aIAek;tY|7 JPM .F%fN)IsjnPw7rzO/C3@Ωx≠Ղ^%Uu){o[:PS1vEv_S=qQR'-蔶r;"(ӺwT>Q9f!,{¹!~ &'a0-!hw<#!.G}DC5e2;]jt$4mr) T% 0#/^Cwt:OԨ6,m?8t}8X" 8 U>ݯ}P8]-OʓTcqEPg[Xn2&z,$_(WRR#T3bDN qWpBW㺲1om/5aGl)0?ٛea^Ih (U ކUX4Vf(JiQ*@/mQݍFR/BqNܜ 2TJe9FzKo]=HZXQYѤ;Ϩ3$k^ !Dj+iDo*.:Ʊݬ=oQ$NP'{xneVH$4ڞPt+^P$i~LjmvDjUi.FV'( ذXE{ƴRh!1V*0_b0f8&^h3zĤٯH)' ȑ`Iqw*%3HZ^7艅)"z9rl+aWKZx+BAcL)#*(#(WHK0XVu0k˯0E[Ϲ+ x>m8䌥Z68FOF.ASĒ( 2CGq/F1خ69r8njV{n4J һF&z3oU0YsO?Ȥ1]0n%qW}H{h#L!Ybݨ6h`h^]IW lGZpiR ^#H`  ¦7iؤ F 86c9@K_)~iSS KN;E%_5AҔhR28b:1}dϒ6V*!0OFSPۺxõP p*hSi_vgݯKV+Tav۽G ֶVR_bYkL^BT#td(EC9QEIs A|ݝ@E=/Tըmt6~0y`IJ0u Z 5Bz'+ݏ$1E@5[C^ Ԗ^Hhʹ}1)NVX{7zd4, 8zZ,U7(ݘy'5%*d_JMLUƔG'_G f+rn7u\cИ hIgJ08$4Vś~X/x2g2Z Xud?ΊM,- XG R% m An!e#ymd7 4`CqJ>P0<m[鍞Լ]ʳ*) QsH C< qK+zkS.S+﷮Hʵ1F5!Y?J;M~dҬD&^w3T5dOPך-~G%ױa\#2 t({I4i@lCM=e^ nhk 1MTXP;T<1Wr :W˓66d98P9/ߖF3(B/5k!hxC|Œ#7v8XGˠ/&c &i#{wc|PR']W1zꕝH:, w23[i-Fe0^Ws $2u-s|I'9D[[:7jvw۵e kgHqV߀9dU/uG.~A$v6>~R&E3 q,i y:tB'u\_f4P=ת3ʚ[ |XԴ2 $]M끉)řZ+Z t\- F|VYjwi)ʷlDztwsXF"׀Gu/p9+Y][}zuj|A)'9|^$_}9I8{]-D@֥ԖTt͝VsUF`$L($? 3;H3q\4P{^$fqkWYJ}ЈrwO]ۻX;n]7}ȓ{1))X4ŞGgN~Χ @{ծJU=7 f<ВGI?{:@O6o7U7Nh |]1Ve w1}OP񨽳l3GדMʢ۾懡v\o(Pz/l|zո]~`7'>@Qg/bNw61&mbP:WihB$"_/BgI%S4^o{ aU}3(x .csb"Ob5$c*Y_.D%q,jݩ\v6gKvk#KҎŕؘ"ęݧ`yW9oʬ,TuR `,۷)YМo_~8xXoYvV~"v<1BpN*na _tHEt~3[3'oűIa]e~}R5n*Yu"[JGG!3٘3Ťb@H{pj!b{}{q _,`cihZXdHtӶ)Ԅ,JDXMh$=xM!X\}p9|E!>3neF'o=ԟ?i9rTq~n 25ܯȭ5=??C q!bԄΒ/I %K0"V>&ì)k OmK(h_ӧO> M`CU"S󺱢0z_PB kܱ0M,G<'=7VjU-d]+,,kK25jv'cQ86#WĻIdp%T9sZ%I@eQ[#EuFpߣQĸضbqp+0T!bZ@I4XH@/Wi%l2|*۸DS` Ɩ޳q;ODs$o|6\rYD1nG 큻/7,W0e0g*M)AZ ؍[p[sU>\}.C29wZnlUyW@4ƎPEHAЦ@%ǃ"3`NJ^g =Qn~o"0bU5sΤ8Pzɽ:r7.gSwT^ >@Ry﫴iD0sA3H m}z)oȥ9`آC"HbrBk8u%H'I%Z3~-ƚb闪5Gۛy7ܣ>9ޥ [9=$7}\zę*Q9[ )xk9 FwP}(qjs7sO? bakJYOx/fvr" 6 &j_ 95ԚfM` sFU!Jw翑S*r.Vɲ`z[_na%# NAy0žnt89/_aY-#*D1"2~Űʋupv=;٤uJ$݉w ncͯXHcԘ+iOGnΧzXf3 R%<1>0i/C|+hs|?uַ~ޏ[[nn.sFHaVxpug͊MJ\/{ңy |/4&zH\X/ R]"GmT@T|a [F~}}5OVoQH'qsl ҿ4|xTZxS%//o&{hn 6oMGXoug 6us[{Xɚ8x5tdY,ɱ-c;MǝO|SVF]=H|nӴ_L?z4 h`ڧ+CY>ڳO4qm7Ka#L2 PZ'rlf}CXe#ZxJlWD E>leq О:W+5AΡguTΌz첰":ew׿uJiutcWb>h |LtlpKع;XH$3_RnӺT{5vڧϟ0ڬq` mԥZT2SZW.bE?VfVrd+y:m[k%cɎ!"Ii|||ߵc *e*#N*cxMQGw ɾeKp(.hӕ5H5մufO[Q6Y<{){XM8qKy XD6m&דeAik.  X:)N`fQkSQWu-xX%~Ka^fMk:ӢBuYTdq/;xzrBppjp"b On}8$Ҍ)-ů&R^* ʓ*u\08Z؍ I܄oA/|t[Nalin/T: w#xPhSr R8k6Rkܬ9lhX, hQRa ` M#֍ΘAPW|P d3{i~@M諉1&أ؂b;6C1RIZzMwGo߾oՇ[*yn8KȰ$8_VRWq˛'vbDm@ ՁcqZxޖDcWsy#&ϸXs^BdK󷄩XOs5qQT#ՔJxv1ઌ%}e#_}P!e9 ]m'~0~E8D݈m~*+IL=HO$!ȨrG5bdn-rĜF`O% OTy) 2c@_ҧ2/Bq͟?n=dR5ѿ1||<A~"&'uRڀW e_ŶӑkOd"C}WĆ nk>+hDPp@#ņ-"?7¹X/A0_ËUems-i[5-n\N2ՉVt϶ 7E\t/gO<6w*nFU3xFYyU)nz}]HԨo9>c/!fZB$eڻ ~QS1`.AS:f`bE'sY%8dCb ^(ȁofܝzm,v_ NpZ-](>6֕恞&pLЧ7jۋ~mj1PmRϿTgP-NǺqpDŤSU9Qs9WٓÊe]3V2?肉VŽlĘ҉ͭ|%ݦr/KV75b%TLSpFJe.C@EzGCcyUZP# RɏqQ4Ic\s$o/wX]c {T~ZC[ \ijمZ-U-LthO=Asaf}i6q;//r4\uS3q/g3~\PWd<6$ƛWZZzd>$Sh27tlJǣ!CByJ`U8>8\nw{>\X13l!lBx@X"(TRƌ$ל(͘zyBGi1r>-br~_Hݲ[أo *Q9X7hƻ^26sZзO7XSX{F7G 9C*eiG4帯)d~Sacw&y'cG-&Im%? !q¹I ]ɜlУEqR`BZbjn1/8ԹN;[J'&ܲxSC7{`9XBl^Edև`BZ<ʼ*ĻyיZ#J 븰dgf#4[zt]Z2%I@-yÈӥ%0LJ:q=_#`a윲SKA'荁3TƌAg?Zfi9 BrW c}ܓ|{.vb?=pzDn"+FKb ƾc[}>#6(<wFjK.~pnd+UjBL"ԧm&4HJ#{ KX枬ҩ7U6\GQw'싸lUEI`saiɈ/V)_*IKV@h'GdȏcHԪ/h8#&0_<̑$w 3: 12ST#fs c1RdԔsl^:>Fqc8&gwb4~1eMkCGNWZR@t0|apNŅnӜzw;JWe~?yu|<30PZڟ˂[ _K_忳{W`-js_hj J<^_J}sR9`qZ9ӘfNi޳'p0sq%٩Hc5<bb! 2 E( =(<#ٍbr8PbG"lR&bTAL0iNJ6Gr-Z6Fg3:rc_z|{k6U/,K<~)KYvwD;Λ-8݇?ZzƝJd`\}~ŢCkAgÊolp=dxN@B^L# -hKWNNt?_-t[ǣo 7$8[Hiѥ{wSࠜ88EK)J M)\[wXfI76q^:jiz_b?01&!"&mbβI'xcXK ߍLXһ&7Z|͑j>8\!`~.}'Y{ QDX` A/[Sq@ r˻'j]Ss3~ # @@E'cI?Fa,LѯqۏݰM^mѽR2?4(4-fr"f37*f HY ߃^#"λ*[}=baR^UI Q5UYb,Q@a/,;|NP$̍Z$ ھիa8*"LcIqeUC#ʺz;39q|nO@G_/tv>lF\uJvka}+,R.0=z`#i =I+*jPִɩ(+]HI!rHH .8Q[K6{)#Zd2LX 䮆ac,3,6gvekXڛ<:fG|Vt/?hg ԃ!i.Ƚ;KIq(9=UܵE,h^H.fTȇh|mAwp)F+;sij)&$¡L랭+FtR~0(C!A|b?T?l؜BI"VfL[P#j)BU"Lկh8Nc]#:U;s2-$}(:HNTt 64_!W Htr,KE~j{cnlKpp< LED%/Vhݶn8zm6]B5 "-4ި0<U{+,$EVGfkD4@垪Fi~ x2RwQC<U-qgq CԠөWkJtlDmXj@-1d4kc.us$o-ҳI֘:%+_T KqQn! E~9V@EDwMYmn 50 L2HX, ?qo?=zzz\7wc=ފ}> ćxghL:{3wAWj?O<ڸO.c>?nR.ѡV-N׍5>c3㹾 "'"s?cF1I\r9U|4vğŚ* H$LxCq | X~2E_\,EXϟ7Ƣg5. %.!#iYW Cgj,;bdϴ8 9OtZaĚwKn/ ,jk=9߳LZW}}ÿ?i|!ak_zzM: !Wc<KJLQvYq0 \S`uVJ|cj{;R41#GQqZ'˷Px2@po\pX4m~h= Jiaڪk|sXQqX JE+=-3zR5mB{#zg1_˽,UiCH@ fd;-Bt(x2g"KG8Tu=*n69,K$/ʎ0@)-tzsI#nDLԕH2IZN=R6B f3B$)6V;]Ϋ MUʔ`u'L5pIvJNjMMVjw8i ɠ^)v3Uhs5вǞjb(I/#RJ% lnw{s^w6uhuwz`x>㉃-nwb ,+0qnhOq 77C]+za^N#X///T7̡kX/YN뿖J)JE:E%2V5{܎6+A_}HU˺2$?>'}6$d1kgKY2C"l1jb))[jmD@‰]"CАJJ\@(|cD2'Kǟe]]5\jiXge~[?>F{e2 -#.,5ƣ3\Wi?(- qOOX5{Ys8ѳ|,Hi݂*EDJ;X kЪ+<w̨GLD<;}AƶIqʙ' #ݤ5!}7;-PZVR*<]P5 #LjbqĮWq}Gogi "xB(HӓEׯɩ,:+r.rIl,5hrKp8G9],PVfq<@]+6ռ:Gb!.UE??Fo70zGxJTOȷC[ģJXe>i);K#epث[JĻ8J‚J5 /u0$*`6<$D^fA*>z()7N٬G5waa xZ bչwdQ%S:`5rLx}eZa%Zq+iRWE(WZ*@8o6 o 4%#omLƾxx<{d";KڙtzKc`p0nQM u|z~c _Dǧ'uD'Mt?;ti?rȩ?:JD/Ӿoa1ÛD0S?8Pf9v[Y&( yqS܎V쫏P(2qS)|5e㈶|rGBm $a|K(ceXJ:[-,?*X(ici4EeIs5G4nElIbZɓ1$U3. ۰iy \?緗onܻHKfޥYPF5J2<Ք띇k'`v6V^qJѤ>FJ(nx90;Up,[ҥ>c秧R;Ƚ&,dy 9B{Ӌto+ z$!y.>f^_uЋ|NBRz{2&shGx_}yõybGfL}rTc-/@G=Hj}Rë́=k/=Qa:M4+ꩰ6n5Fk|Jo޼*5P`A,` KҠ-)ݫXoo"ΜhMP'&e܍ Fn(SyR{\Х'9Px[3tkR}rUJK7%)W*jƹ!hRlKNʖIv0^|5bz+7Oڞ^ k.bsBlML4b䥷b0 -)ם!z xn}s˝wJjwG6=>ኞI2!qCPN"NI͔ L]\O)5|zxeL],Χc<=a!ݵiXFmTCڳ*2Niͩ髞UٜI#Nvi:e>ioi=6/q}BIʱa3kG1Bڞ+b>}igD{i;èљ$ { o]>Ln<Wfb[f&fn9sÁQ[ȂN# ͙cp/ R3F=-RWXZ6v(0LĹ=zP:O2#JH(^H{`pQ=MDB׊2;"&CqlT)}!Y4`@3b jΠltermfG_XČo&7 ee~p1bVO;%v`E =*zq^)+@B,IhCVz[V[]p°p|ȯ7ynoo"-}/DHXD%C-QjP=YME>ՁX ?x!͐Pe)障FsxJҦ\~///+UA37cqRZEr)zpzC?sᆌ΋25!,.o4;>&^mL[쉻z:^e"fVDl|Ō<ׯf-h/zpNE\Ϻ%̶.N+^12 k-+sUy$R+ޘ~#GǰhFqWCludP'z4[ϯDh戟l5(Tmr^95C" Qʼ+ M1)W7RR땚7/`У]-n;i\OfF7=ķí= z:hXO0&h-|]֭ U]5P6ooݘn8zV#]mS9'Qʅ*B_M*-*h8+U^hٿ G A$:;:2A`]Y2in&]*}5azȰeԭY]SOqft&E|qo/YwBDb@1~5$>z#ԒssI "Hvb+``.fJIcAuXQ·s糂J|(i.!5wi=N;K]w<8՟y{>n/IɊB=虐Y^|M<|XoȽ/-q฼\ YکYdžFqEl\w⻫efU4p}-.y.޽‚AZ6.. wV/om(ח,%pxKb]Z6j\\SyR1j!BQ<(VamfTDD"CQ\&&RMՈf~`A񯼻?H+ԛRHryZa4h垠3K}64Hg.E; rAc?HcUEC>K7fH  aDmfݶ46̋D`Jۀ`1!oĿbyPT64 _YָVs;bL)DmҊ:&C/D XǠ[Rd.EUL(HXE쭯2)TT#n%g[+7NQ;v0IܽZ@NDfv;IF4|{=8zH+Y|7F_wg53{#3]akQ OΏc\v^aDlL;d*PQdgEi82sBN{3KE5@Qn[+s#xzzkil7^QLӑQeq j#nϵ}bs w̍`7 05'ev_{T>S\ I,J<^im.½ O!Hqmk?^K<֏ /Fnq/{'0 |ZJq:F"_7:6EqbR>@TGӯ|}Y_n7V0WXcm)N]x.|+:0f~ 1.[7*JC5!AKŪx6*? {k_ f#y:|eN05']0i\Б0~s0軜CKy4䷒ (3 .]Bt!ӄu|l5ϥX*e<ݰh!:#K77<[?_?+_<3&\]ZfXɗ:.hʘSZ`t}H(Y~n!%sE;uF@bk,l8CN& Wd& X2*=+uZ\וJ{|z51쿅":é錔 F:fi"E*ZznLw4"+nO{ttĢLY9[0*nۥĀ]<>>^G;s ?뛤yiQ-4R vSR3=Doxa@qXs|)XꙎ1ˀK{Zvo{ئo$JѦϊ~=B)h* IrN,wC2By:~NuK5J0?ŝYrS]׋3h_WU$#E`,AP҉C/K7S$hXjTc2eS:55%]YI\OKpo"&45- j:p/$h\;ϯ<^+Cfľ }sɅ~.X@-S>}4*tSãeyEey$z pL l1/=JZ ho -܍bbªM+>CLaXӭ]'#JjTL{{ca$qnC Fپ-^UߖT)(R(6Jj,9NKfI;ݱE5hcfK:#W ~wD8%ȡk:ρvÀ(qkaF|,vxu3+B+X~1 ̔сnlc,:"c,Z{m-k㷾}vGJׯ/w!BUAqry=?1vmEYXo(>??}{QzwT9ͪE4oMSo'iN}[ζ>+WEQsiRA ΢BRv9\҃f!krl)ʼ#_IS۴#"+-yS]FS:ChDvsaDa^mi5LJR2.h}r$$f29r# EYFm$+AGOBUn2EV ikz}}I="re0c:?2H5E{995V]3v(ok촩5xOktFvMQE *mo7} `UnB/L]vZ؉|cu)`$xΝVM*K[eZ~ޥj`[$PTl ܿLV|X IwuY6 J珓c!ux8"0jqޓj%=K2)~du{ђ zߖvp|;#og˳0VsoQpG4/trZ[K<31?q]*awyu7*<ƥ,|+O;(TX G,cq<hI.~}0?(˛wPJG3_S^N/kpQ e_S>k[` Z}JI+z>}1/=a˧-:4`LFgaqx;@x?k=D>1quۍI ;dJUӿfqyަ$1Ib3s;*K$A ].#0駷+JbړioӨhmlbr'JWu7k/vMб,a31T{@^0ܻ4dV 1p]ݗ73A ,;rxvoWpp]_{Q9fK CEVרּ+V]8 0#SteUmYpGĥ'Z]qҝdu$;TrƶѦ2U= wV1jbCٜ/ :?ĉ:=wwg }5P#J\C-bµN'%r^Xr11Gh!gaC]Kt5lpy'RXy ژIgE-wb~J写Oyi* g>;E93]$~-*;ؼY tAHvOtTWYp |UԯH%kfz{@p4rq_ /(S|B Ǝhv,۷] шg?M/^f"i2hHtLe'wx wGyrv۽&4N-* ɀ>XI\I8|u#l2V/h.̻6JR1qJtR\6YkbxB5TNH߇ I+_6)/P\0_2BCpyјLyheU5?ASz>f"oKqaۘ愻̱ <+x_=p+@׍C}my13|W\]Gf#7V&k2~Lw{[޳{aec=Y%^NٍdNDÂlP.q}G<ԎR3TU.LҚУTTyG4'G&F2y+Vέ<!nnv]yu<e.m7Lob//uړķ(Y+6UQ'O}O Eʸr{#kcQ޿/[K! P;>6ށgՂ_񉊯uO"]RzZfV~(:׳eTwVQ?>\fZUf[JoO>e!yKH벫_<%8[6~3)U2(m=iUF A2sgݞ|:ʦ?hIlhC'RHQcۈ6vH77qȨrp[)fΪ~1oDRqӺ |Smex.x?9֦:8¶ۖ,L)KY\ TXfx sRBsCL*Kݖ 95SBY>}fh=ʛu+RqjX;Sʝ3-xrA]SQXT=XyL^Lk.z^=pTWF-4Cy%T~"F2 8@e{34.?tb|әmw{! z(1?4zs҅t ݤ9ZV?<4ةSX?~4ʷXos$09l@"0U*&wF%3ܭ4+{a@<o= hYj={vbk?mf´&WyL/&3}1WdZj͑JHMVKS̆j-O=6+1G 7rq%қzJu%~ |L:֗fUKDeb Pj\2 YD. 9:Bʬ13FKأw9ʽoeCQwxv8K549CWVT%v{O=`XQ_^i`v0 C?U9HKkQUx2HùWvQTC*'4@<X-j1gh 19dLY]u/7EPMsޔ07fqC:i.HpL<.U-&堻\6/5)kFMWgYn10z urFMm)E턿j6krƇO^(72}~~!y)Ǎ7]JdTY,eݞ_rބ+1*Ӳ`do b (ƣtKP0wt}{Y앥5k\áG7pVQ ]"olU˜~sޔ)q (aRK:`ؒ>2L㬳:h~ hiU<rY I`ɯDݎJ%S)? 啑6MOd#휊 _>&-_*b"\΍wr| mlmi٠\+苘$鼘+˭O;834&֕ /H6bŻ5z3kL ݝ,",D7rc?܏fZ)WKml\pmEzXi%xa4&8+*d_/ e#mI~Z"r&J_,# !H^mg&w[Z&{L]= ^VLrM]9GE}da{> u+UvZh+|9}.3%|Uql;Jp3<K r &M$IM?^KEk*zM.#BU*^<(켏8isnʑ7FWʛdgzIO^8\ fզAv+)k4#tr X<Zc1JYݬWPa ҡ~Hje5elܚ~gig6 x$yԦԦ\d*zme&x$N.{|ˉrIMhB O"5&Ckg*C5'H' [6ȣmȠ\ъ߱+Kcm\xf46mvҢZ*/!Wt_vPd߫w "  Z/w1Y[E]X`bBGv,x*"jq|V8ͣV1HXq̾]OPiK mG9kpysS+WO_KBV7XK bI 2Y͛d}%KNJEwreNpfnF f]t I`3=d`t !+#ՓصbGP~{+/u)/e;}-TZ\%k=3~ӍR v1R̺[ЦZ@lwBk~/_^_]%ӚhG[9ZFUw1}8Sμ< q,ϟt>Y ,ӱ\f jǯR8l #mc?ax"xHƧ/K]n];>~~]r2q>ec,G_:fJC>1* 젲sc#`K~`B>eɽOگh^KǫWt e/;2V2V2Y~/# ԁ#_KS,.f6HUey` Unן]1ǿ}2| ]gE )yVs-쁒PZiR݀{/TPߜJl뫀nhRLq)z< vC|PC S+;b FC? nyPEOV-nLrv͂]nf)bCӱ5e׿POa,}ͯ!byt3HKłFkzuQiWkJ'p8kbϩ]eݘs2{yp;GU u6Z~Ge*K'4(X #"֨w4ZFn]oՠD1u+ef;=ʮɁ8:Ƥ@dQ ˜|ѱg&[ۀްk\~Un׆ҢAcc=N'ekwSy] 6G;Dd ؚIE&t6P4|8:fo @"5֗FL7y# 2)pNCs`Ü4D:ƁK1.nYʪ ޥ> ڨ'[\laq`b+$`< ROh)h^^_g- #$)slj?ɶ9UjĞ2dKqk'wv(&U)gvE̲b[io7[kq %pxW21ެأBSY偺IKFw)nuhMQրrE`ڕ|CQnu1ܘjB|&z|(NhSf"5b4,bsj+oY}V5J\ӔEIwoѲ?ܯʱ[U9pTS?;E74 ϑMs j)ZœʦUgG QL@*}HVXJQN9˵c+C Xnnx̓wաuUC 7[ e@U?i"@ Lj6IyL&Km!]euC'!UU>6%̬y'@˻jՖuB *5g=O (oH!<2V)߱м#Qs,P[UyyeXّKdhK5, {&U6۽M~oĠr#!j Nh~JvM`6VmF3u.MWRtIaIS 9/{a!T7Zm~`)]ب` Ax)+^f&)M•<8upa#Ng7O )D(V:"b,e>Ѡjk?Oy#$_,_`3Ã|yylAd0tMZuՠ -*ݭBB?4T'`uM%8 ơ0.P,U^7@c}AeMإbgS(A_%kl kYG:q:[޾ΗR n(:G&sFoL#E=Q;D|6'k tRmH[B]Z<==?8W>IΝPhwAxn/_IykgAtDDF^(no؛k Rp+"\?eI4ALVGF׀Sܩ4dۏR0qq~,sMliA]fN)cu8(Xi%}}yqjO$Ǒ+][Ȑ-bxòVxNʞNaMcf XNDv1=*P25Qʚ=f. eXN 1^tsj6ԃL&hSrs&TU*Il$V*3]dH:ƿwS]~K"ݒs$m E\k˾v1M]0EEffs ׂU#3!(M]H3K[}1\)a0j0 r@u-2Hc~2&u0P%}]9,`y9GYuq-˅:/.6Ihbn=o[6%vf Xs1wApAZo<ǘheTT_7tg2R2rDCᶤSP7Q@C] cR<$`fIi:v^lWL™,^cnz<_.2&| "ټ QA!O%͕+le'pAd.G(^+ ~V\$%1QymVP>rKLB%p8'ٗMV @6aKZڜ0V.Yv;/wM(bZ*%zʬlOagv+mHv{T_n~Zۢj1QYd0Kr:Wߡ2Z_P2?1L()b[ TCE*;K vdX8w5EY~ae0wp*Ɖ F@SsW}hs"{D|2.gVa{y}qE"ÃbQN䰲emsa= #.6U<^-1K M`Y;7סNlo&;YWni@#*PPK9xU>8s:9 !4m x6hQͣV?bœ嵼"YxKJ(چTVnNw['D,j7a0f{u8AH,~.Dp"p~1!kw75.0D q"D9X0Ny/aHΗr~'~ed9C1ml G 9#LrIZc_頍1.7wbA LP0=UUu!!4%>ޤC%[OӝX6{Ѭ_&1WwNNبCB/rUtn;ʛ,/+3we=ݪsF.D-f6ƧKGzp|zMvYG[0XprΗuqkkj)yv(Gz˞"ǒ(-4VP8'W\,3Ga@C[~{ N>__f4:8[\meiSִ3 1PaF*Zpy:6LHӅF D^.޿3@ mx/g[Xjî#ɣItV98@}:4N/1S2o?a MD2;3{\W樸[򰧫.{_QU)5GtaVgg+ qUpM4X*k󐆲ICnaJfSAVabઐ@,qj˲&< ~{)A|w*lĜ49K8P^Lt[G.H=,Nj= IQêFy\mp f𻢢!$6/'7%xf)Ȼx;)&ޅiUuɽ]+ՔGY*er06ɔ ݊4'5+,GZ_/.ZZ iIw[tjO:OF?4_ANyr8][Ymv wpkGv3{ɆI:S-6|A ZWǮ@Uȱfe)6gi0~|7ܟǏThyJM9̮-K]/-Ċ :T(;ta4\@ s.wtFjya#lגiо#|]hYș^#S!OW *Ϳr˰sk-j\RچA,LP483qY!rX,%vR6:1x FLY܊͕FU;'6o)}1?\^-!$gei1Sn[Cho0;;Fk-i6{`ufP ck}$.IiҰ~rWNȠ`<:wt@zb' &YσYnH6gHN*  @X kwA}pګbnIoRxoj|n":GKcxǑ4)F)x$ 6N끽%$fx&T1B3Kn-XA2.:<򘊺igɷMe7oTt9kwᅫrɟ'd$+6r"ïEnE;v! D~DFhVݲM$W:\EB9lN ZP˔֍ʈ5HzW`LT'~O1Xj5DC"W-7{sSF+MwRwx)Ih-}ތSYo?^,mg~X%Vl}J 3"~Tl1f ̛?T{A̕TόX-8jg .Ț^gM>LYC…CeՁ"arvu#sS8â'ʷ 5oSYh956ip믿q3 Xı!ISվ%t-qxGE%ιPx荁2HM~Ogخ=KvcEd.j܃%שqCX i 5q'i">etLY&\dP7.m1&mݽM2eLm]8R5{9AӤiLzّ-JzZO!&Xm]el,!'6XH`9{oVv1+M J6!uhl/C/: L$q7m-fBhD!Rҥ^+])c\I`[Iw\&tA,,Y-p5-4#2mHW䝇&ȕLHGz&}d$u-{KP(e  o@f9!v\8wowf@6JS{)E/C*'1THvTy gi޻hLP3I}:BzD&LR<\*ғGJ D#AGŸ(2s]Q}?\o3^2w4˝YF`LCb``` J߄'`۽*26ͳ2앴zINL*8"Cm]ObFj=*>,[Wmtw{ygc-ltC1dvo;V}0}#kqNCu2E-M]gFެumԮzUH?vi߯,=/qHlj3#:|ֈ|"yOI%qfr*˦jUH熰{Bn:y>l[ky-u,hynDjfxtt,`5:4X9?ثekJb=?\iZEzX j= Sō:e5}^^^2L[Y.IQ1mX}rlwî^_$PRt)XR|g/զ\'œgeikf_jiS&Ao5Oh/,&z*ω4r+Oϰ ipQ.b:vw!eߺneLj2{Av:uKV8LS݄9ܐ`I_~ʡ3B>''iyqnV/ ]G[=2|r#PCg\P s: ncsJ o>?~SЋ+d%]H@ő!ylTΐ$lܶAa;E:I--MVl މZwص*[i7x0?iV^5jWP'.Ѓ&n36>8ڈO %mᓱۤ$L{솀Ԟͯߑբ?>C2(>dmơgjUOK*&%%Կبe=ԭ z"pbA P͐wS$lדFuh>qbVLHHInsr}p+f]L|asӂ޺ixu^9gd;8_AZrf5S0}V$r "ju*֜8]_um WQגڂSx!ղ6 fT3kBAڛ f)utsWfE5F1JT?|W_'ǀ )MP4j>RnE̖͋I[r=k{FBcY!eCh:ed 2m/Qɮ4OfaC9ԊR=V‰cLZQib@B/82tBJG zxJ^mTVr{&(K;k ?v"j[kÖm&Eyeϵ{ Ϥy%ΆodOz:ձP (+Y%rKcՆ{Ƥ_sȨ`P Bl6S=9l{o%򐋘 ,u_h yn-" C%L,2E3{ozmi_#+HMu<ʙ7L,0A5(^GC3/XHko|;4d,_k,VTh1` qIA]PӚHM$ %|^0ly74Em_7lpN HBFJgi,-vn lrz6YYZO{bNG!lűeigDқ*3K,OOo);9tyen[b&)h&!!*o$lכK.zO y̚;/zIϟ%5So1$ eEsZ ]LS=/ARi[@k oȂx6C[uq=hLB"4C *2O@%QOQȪa>[2F02UϚqqLga]J`;ƨţSDuߌ=mY)yxZ#gdPA )g̰pMrnL-[R/olvYP]q@uFe3=]¡?Uq/#?^`^ju,m6(7ʍ1tܼM^)_ EH`slC6Q&ujvQn3\C FẞR:{`)P^0VCU0wx$u`x}S9Ok *TD^{Vr'ZOEUrNUUޅT=CkYDy6+H$gZ}6뒂F,}+Üq8MΜ3#u1daWjBM9ayWMi`j4jS5VGnG00GZW6[DyK57U83=`r\*RzcM,5=3L1)_yVA'Ɂ؁ oh. qzwa7A>ՑRO<=f5EcBH[,؝Iuq{1,sM 4$&?gjLOq_p;#֐~Gu?~k+AͲ8Olb:O2T8\#o,b/ {7FHeYݷ2(-H15*pTw0 h蹪#` 1Nϝ73o2UxtSͩ)|*Qd7*Ɇ G{&If !B^Z+A|I*BksFMSGbh73H9^{.i"K\mJ{ VVs逸!1aFi4QUTfѧ>5 JE+W> F .y<}||rC~uta렐.r5^:{1i$5I?6N p 4Wu}oiVսFkm&$t褻ZGPOܡ/y=.br vNRX ^CjJX,+זvǩIh=z6{P$5ֽ zh *-B'^6A$}C}^ݍMP6;Q{o[{w43a\ FX>fTAbpj& )`zG?pIi\ӗoWFQ>{L+t[m*6EKhr "~# fHYSb#k{$;5XӂEGjUXV n#h^h9+?tnu\jj3l :~ƙSI7 !`㇫Kk>tS}WlB1upj9Ytފl3"ˡ3^H+b(RWr`<C4rDBHjgݦL7-U[;g *M2TRF#0R}ܓPe+9,y:ݯ=` {6PƧzvȋ^8jV-']34HW3\4R^HjIK0tV0k{mZo?azCr!_j-?,첐o? f@DZ L,i_썬eߕ=hh !&|g=_GRv@ctVDU.J ?fZfDֈʢ6gyaBrm6!f_mMZү tsqFi`Vڢx{ml Ck1B8,,`P"`ZT_QI5cmc- ڑIYGH<}aFO{pl 6i l!X׈wT?Z3 2 hIЍ13#9ima[n j`eHg $и1PSbn 0DEz* <`NY傗 PՙOMH+LuT"p 5?p @0y17 ‘nm}z>s AvDDǭǑurx+LgnS?~y4Jb~ppbӦY H=>(bq?7$෣p; ,;;sc./un)2^o%(K@Nh/M1|):.Gkib+mÄP~޲!(nPz] K T+UC^iYהi~O KX)k\_{6j+A$~q[j-;ֵ^Ғq 7i?֐=Q]Re(Rk_NL(̹d'K{rJO0gg#/ح.A'%ֿOA*Bt O޸ɚҰl[̓}HWKI]Ii[7>Sh3۷Ý1I\-'0BҜ-d7^f+k쒶F/ޚ?YROm”K"9Lh%9j&!}xn8L;[*gʶ;y?ή^QZ2. Uft߽9^ 67&^,k5Cv0 "G*<.Bip1rҦN>ת҅эӛA(gw[b2Mhi5j/Ѓ1CRYW^"x>_SIaKQx9^ trʂrm9q#!a[&;ȓ5-lCqs4dbmk,oˬh5t3ˢc!EgM01 1w`ΫWltb&Ihyјe\a(|^]=xbQH(Yzq\93kC/>˲Z%<ЕU#/y\2bjÙv jC^Є/zY9z gR|[0R{Y+} iQ@y+M`NW 'i@:MGCfGsҡ p)89l3~ +WN伥 W$fv=~Ɩ4g5K: 7FFF)fZ ?^ [LMx-誀 vNQxwq7A_P)p&6x؏+2n">x~^Uʇ!ֻs*aw@Vh|76v: J1\ϔ܌ДRaO8^[ Ϻ7nߑS>.T2-6t4˜{DpP_&P 64X-: ᰯ9ua%Hz<ʺS nT|NjfS氙2PL錡QANЛ@}45ZVU --!3:8?s2) fBLW6Ҥg<Ѭ͠ !U&VΉ,c[JYR&{t8ky(=QXvGW:{spJNۘ//:]u#6!V#6Bw<%#]B) .yAcqnosY9OS^F k;cŬwfnզ/DDcҥ.h-Oƌ- zIjv}n U3.pm5uDw>+2BXayA`ΘCaAV],'eAJ_XwLr,gÆ?pe& -:OS q՗` 厙 ' NQtCһ?Dx7}0rsx: ՚COe`HUjC#= lK-ʤ{q׸afYaѵddMJCLb})bXazළ;f1wbuenA6@Lx-ѠAQRMY%}U Eɝ?. 64gU4/ӊ`^ mKu:V]k/Cu):~k. @__;RW:6vvI<ZnB~SS9H2Y8vVH6dxW.z)?55#zjtNf (NF,s~[ވ-;ڕjUTaj5i"'1TB >#0\kc:#`OJC'F v|hpQbOABJ- 0Z|C☛u0 ͼN Ka2!XZzu<~N~rOZ~}.%@\(7SL;#BQaUBi?cTXkj*) 9w nV5-ey0g^"05㻰 h@Fcm#܏o)"t8)B0-im@][ꔘDfݚPjDAQZO 5HlI%n4@Y7`m?9!Cgje\{߃d& A){8 wIH"W>϶+EfS"i)KJS}=;ԣO}ßz_/ek"ā e3G:]qX eBNG{Yl.hˤr}HLp܎^'׌*Մ!UfuVOI2X ̉\݂E\_0X8WD\:caVy{W皖7s$j]i29Osn"Q $c]u]Ύ[|h_FSn xBIWK 4+4Vʳ`X|D|;u j_RU12C}@Yޫ49N_xy~^+VvGU^6IΗ]p6)}zW̩& M)gI\!|nxݶ:Nk r&ʴ9M!5UiOD+@C1LbUx{Jwُ4m.G _TߐqЉQTvk:-/~?v*8&(A^Eb9,7A;N>.p~+uqA:G ÚނKkhⲏ/iXT!MPȺ^"WsT0w_q;.Ru:S bJLyT:'OOhIN+qVyy}Fb"f̡C "lC:h:p幗-BHz ڈ|hBTL q ͒V1k#e+C>P5Unn;qI7@TkA~ d ?i'`6BH\FAM[_k|'̈\7F__MR{qS'wVR{L"hEPGAxe!NU7/oU\? eyuw9><;Dic,1 3h ss0Hw(Òz| e.WrA<͕cnF\>¿&om%B2Ы<@yf8-OZn2Ԓd}&!=5])U.ŋ Ijs//ϊN$@aom}@qh[j=+Iܞ>$BO0&pJ)'ևjgC,deOg:8\ۦ-"%nI433.p6yk;-UacJ¿ ;yoSh''XLhmҧ=X 괉쯜NMwȜH&7X]pl=ݺAYjkʔ޹ /,cxS\enczPMLY )J w{r\Jv~- ){DчOYUxa |<CO^4y<{a<Ofƾ5ɻblW'KI81911 *krk_GMJHN.>g"q9eDP鷈9߂NanoPb4kGnPQ m[%Z@`i %n٢9Xm=Q2Eaۍ6fDzTLC'\.'YT[X ĮKaTZeDf'c\ ?.IR6³/U $hCȬi=VF;p.*;iel8Cj`|Na!m.V\Ks F]U|ys]f^!sȵL՝Ä3Qw*oTP3"w㉂L [^FfMZ$PeqXc')t#y'F1bibB<J=OgsumT@(GzQy%je%\4 XHK\( 5frl>U}6fPmiQO8!{Zf[PV'W_:B'/L!|g2Hxa~ t<:|!TM82*FLyl"10 *WZvrPMDrK2&igjn[{V /=MTgs,cVU-XI@Aе7 .Atb/gmןpAAFKVC[}tc%-DdzD 7S Z#Ls F~mO DW߲>K,&a MUi_׻YaW[ˎJz)\қދYQxZܸfbq=W,FL6ϻٿw U;Uxjfn~%q~mT 9Pa {Xb p4^3x 2rnZ{|r&$p[)gkm"[SGY[QYK"u1:^OK-+wLF|-L+BATVI>GYARDvN;]aʽ;Rܺf~vʴ1t#kl"jxsA`8ҏFR(t=4+!3r,Eq] u/=oy b,;>Wle2p!OscIHtwhMa6 qsx6H8E=N[rє|Ūd ]btR^/s-e tiRj1 t4o[}Tؔ[zRxǓd*\tbQ&Yi7omlk<'`/^`Aq х_N4uĮY*4, a´>mbS95E̪BMo3.W{Md6k?`=9W\DɓCzdM9w_HVTr@7R|;`O@#] S #tQ6u5TxqӰH9}{dwĄu'})aXa&m_q8vtoߗL99Kws3"R`0<}vkj[W2rBDdJKJS?G׌i 1Pp`>JӀIIV(XsDاqIbKʫr>dMj)9{>) 2ri3L\N&jJ%CWDQ^(/# =)XUG*DG=aL_Ky>`SNퟟ}?h, 7ӬID j(d]&հNOe??Qe3!: G}`mWgV %2 ~Iu䴦s>RnJd4!xWt]U@EcEÙ6՝qx!W~]H3!{\Ed>j׵7v},Ɩ'ICh1Ȉ~89S?ʟӪ׍^KҀ5"F".)Rߚmۑb #&?ʿnՃ]zTT#2ڎiu6>ɡS.=fA%ҟs?{-;T"H-#'#DAۗy۵jIvj= %g8ߥ WдG^aW\z9@Zy B{I$dnoǰh4 efZURwT,&Qf tµk{fTDЛW2+Ĺ]Z@{8AΞPZRe.n"7nkhٓw5 ($%KoT-x|:5VJߔ ^F/tC{*Q)e50&k޾ .),DoNg{/X{x(#I:vۚHh>>fٞɹ\!2]:Õ Â1(9}sU;1|bW:'_v/a=Γ9$jqU/ey u9۷4uYy}{<+@vwgLd 3v2qVS l6*$M\)[렞`B5D1[,"5\[ =>$ fks$Ƒw~#Bƌ{1v$7ƵeK>hlVyz mtTН@(8x XRb | ፰.^p$tW 啭oXw*s _&"ɴ3IRV{1UvVf1ȕ\jx &Tc$, -EW*bFLP!%VV+@f9Ka_IR d"?=O2Co]#{z~x YYLPtۥa(T[_.]R=aZ&'Ϣp\kT "}=捂ꅂQQU0Ѕ,[tZBER`XBrrG?v5F"{zHC85ס[rG]ouqU?=me~mR7-u2>\ۡ<KQ8kě^S;t>+My^_sŞ&V,ǥҖv\)n˳z?^[ӬD?8sdWzIˆ~(ܛչV.YQ\q9DJgG !)[E2 c30azh%w-!_\@^ϼȷ&hBH: Í.`>1%-̥]DkzZT0ኬC!X1OR׸ 82L,o umcئ®[#K}"ۮ; 5l`q<wy~y>ϥ!5.jWWiE}eȪw/8kDBPZ9e*jUE6xԶylia- #|UxxyQW^w+0.fTKQv͗d* m-ż;LEn~s׷[AbS%}!kvXOEJ"p80"˪,>ͣ#Bg筺֧Y5@s^`?qhpoWK:j;T%BhnM,"\!Uj-R~wr﬑JIi(F@kIFܩ|!HN5 U__#O= R]qLpСr^0kw;q8;ΈbW7SO=SՌtMc ɯFZr=P$?Z/~߁L%~]WxM׾0 E,L^IYtmϸyq!;fREzz%g !p34xY9U\07Sō89$Ṙ$GK{x:Ovk`⚉km,:v@y Fc~5u .V7)NƛcdEΟ>RZ8 yZJwhzcW/rn9Eƹ)[yEI%x6fwWiQ\ >;b&()xq fYwNnyփ _s'Q8N94z#\-s]ow]@|# YZǍ>k;Cة!Qz|k1[m4I@3peJD]>컣 ó0@QZh>?[ *׺m #?jeϨIO;GaZ y<ӷIojZwy+9&Q| ^l[;>>*;SH%>k.yR2},ᴄtaS[Τ%`bdY[뻗oR:;{gW6RU1͖=lMh'KJ'\ȏS FB Pz[ i*+OmH(ŬV̅V y8^ow;Йᔇ 5 οV$Gu~.KI ME|OM>-I? 6ksy̶#/> @Z+ļߥRqvi| LǤ@˷ 1/2af㒽B0ŀFIqɏvWe> HN>qrEF˼[{UЦ|uzI4FS&xCGX%$y"gҧLH$m:*+*3N=w9ds{89zEY@o|>:YE?8U3&#NO9p 7QܬbCWx.m#W0jcH!A#:zSLiEGuf[v wqNdz8n/SbQ͒LJWDѰV9jNI&se+pGjSHڝeXɮގfMبjx݊gkh d!IqG6ıgyf.a%-:bР"SuZv]9ZGYR0{HV?^:!~K6yz.x2U61} 9/ME\В~]ץ\lY"a.2H䰩c Ck<_j历f=.;R)/;!'X3$l(aJ? Vn-$S Jרò ů.ڲ)`jwWo}V;d0z &e$0$ߊ?BMJC.k0q&5J>qn^@笚OEBY [ uNsKӬY,]gB K,$2XH.s\_pv.Nyy=U4a a {S<Ĭqyإ%d+0,9(!T۲Wk/*(!N(xY7]eYASNU0bק0.&ƞA!i."znuz8G Ot9փ ~bgT!妷u2zw G!HD8Ix {OBtf!~Gm7hWRf%vU*cȋǏ *9 |P+態m{BSBVj8d P; Gn_>zBd@Y1J׫.Ju^)K67PaA'߶???IvE{RgO3C #bI;8mm%w^D4,.hV X87ի2?afaqբ};jZUގ2kk,]P<#s'䫪:(UQQ"JAL8K3p}B|_J5P1V}my5>uy `[\w?Ud"&3ٰkZ,E.9B7P:åj6. 'sH?3t7hQp%/(QT mE[RNū t;vc;_sNiwXBL(ͬ8Fu߯ñ]P]PXH__]'up"/dzU4y6Y~]9Zu#Ro>\h'7 )I8M"a%ykdl5vrӗ "35mkU5!Eo֠&tELvxo>mB3Z`}qItD1m[;dKi2cERh|Ԕ &,@}xY[l) ;DOn;h譡 gJJqo@\-3l{)0mgpZ07Xb[{M2Qrt x{ƤJ~"/*:m#G`sUtcPK53d-`j_;q ڣƶ=byؗVupfy><i8L?I^XW޶;-yzV %&FA Ԧ]BI|V8+0*;/^_\=GgH׸Q"jOV"jlf'C ֵPofjȔg6@ޑ[Ęk>@8GD[6V?b% ˭{{O! Shi]Tw6p3gj@dc3_';ɼQ逞)8! tCU(q"w4@0Bmՙ' >r{@MS傮8P/z.ߓ4p$ό0">,Z5>Np.}L'ڌ0rz4I6C~>tv~f2bM v O?ؔp!(D[ ؆H_= e!}fcU41 yGO uWX/;I{3]j1z4ϒ1(M/4\;"/2?3P&fqTL~pB uuyq􈶵ICœHT=b%JQayr. cBHBVpg}YIJYpQ{/M/Ǐj>Z D8dbD)Db˩,Tq6-J.(JPkfT{D{ ލtVOGctIًÓw iBiIf^Ďd!"&J߶_PH\ tZUEVH'[:@gP_ ƃ x*Wʬu%֨9J6D HqP@- [`⪫pI[5{,8zst>F$P^7ˁXp2π{Ο^+3y~nu,U } rn".]jkylUy\X=~BnbqCB)99V#&oP d7FW'`I}B_qS1yy J<ٖw-Ait9*髫= G^ޮ]"u+#^qXvO'[v AI+"1l9s+I\ WfGPfV=jR5&tf?}bֺ4 y ?pt@-Ji'h479/2Wd k &55H!B(YDw6q7;$UcP3oei'gTFu"#n4ENo#{~ y/Kr S|s)zoָmR.N&+}:eH?-*ډn¬pR3KѬjZnsU4p&a`ג_Qĕ.K'm2[˪_ OVX {cr>~~u,+ Vm$1v5Xs=T#0m SL^$Cbm>6FE"Ms,BCˆf2q'Vdx kvP[f^]"u Ewj(I:Ӭ_|-w=thIaQ{Ʒj InGs(l')Y$饡 ENվD(,zU/,-$?6:tNJ%~B!&Kg.VPTŸ6i[Cxd2[%kXߵBRrLB yKFskb1#4ڙ>t5~ :xьKaB~ֱ!ai t~>KG cFe'zO_|gz-5~?{&)/óܼ![fW.'&3 ֲr~& `-EȋVӥ+wGL*V_ow3tr mowTHX~njDMmῚ)S>:\.LGCC[C9"1kgbg]ktIm5'؍O';F3PT!յFѝnڴx'}ІOA aQ+%+ [}g.׏ld0e\KqW3>o?߭  x%Tߊh_.W4p{ɝ * eb #֩Op49 g Pk$Oa0KLd`;N ⏷GP/JhQ̍tvihÃMeE5sv p^o`IIRLH/d6,;Gπتᑆ(ri=t sPB!r1i~}* |RUXj\g&Mp<al1y@NBKkXⰊ Q[̧iA10SpT b?ߓ6!.\,G~5XY#8YƟ?bu~.*i9O/]4%pϿɉ;[g5|z}fcGiI`w;;}k~P';=ծF\*t--9,.Yu$(%C[(tMIJ'ٸ/'8qPڰ_mVvX^*q.fwm/I!Wkk/ۧ޺A*&~:j}7ht5fI/-&\M!Ql-eWJ1RW/)N Z!*N9~{[e. \J+pr 1G2|vlkɋ.8гOB ]6,O:ܣ.aw0jjף"oT6_ҭyD[dv1)jRxAł7:17G^R ~hV:fa6] 1kh7&='o~ZZ9\.HݨqI1]h41AŔ Vg%V SXPpsKE6^ qv1 nKJiAyFI9~MNP?Rw"H-#eϗ=cmNO`'2\5#hnVZwD+VK.X&9~?>?/W~=b9Uq/xx>`Q+juԙ 9FwXd>%wiDs\JYu5̅s*$d?y<2^ty0CMfR!N$:[Dח|Nח 9xrȜic'OpOxKhJQ$M@!,+K= X߻|:_??R o=e#U Gw su-l++2hd~):K1O#NȎ(2uRGqaJxmXJq)r1{ƿ4_54YvڶM rM};42FpgE?.4~l ;JvA%rs¼! tו@^IENDB`images/editor-style/grid-sidebar-desktop.gif000064400000002143150211537140015126 0ustar00GIF89a! XMP DataXMP ~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"!  !,ڋ޼H扦;images/editor-style/grid-no-sidebar-desktop.gif000064400000002151150211537140015537 0ustar00GIF89a\! XMP DataXMP ~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"!  !,\ ڋ޼H扦ʶ Dz ;images/no-thumb/medium_large.png000064400000040347150211537140012711 0ustar00PNG  IHDR4 pHYs  ;ZiTXtXML:com.adobe.xmp Adobe Photoshop CC 2014 (Windows) 2015-02-19T14:48:05+02:00 2015-03-10T15:23:13+02:00 2015-03-10T15:23:13+02:00 xmp.iid:1d1aec42-c155-e048-b97f-d90e33de0d6e xmp.did:FB6C609897F611E4B6078AEF29B43AE3 xmp.iid:FB6C609597F611E4B6078AEF29B43AE3 xmp.did:FB6C609697F611E4B6078AEF29B43AE3 xmp.did:FB6C609897F611E4B6078AEF29B43AE3 saved xmp.iid:70c5574d-e4f5-e94b-ae62-80b538cba5d0 2015-02-24T10:21:46+02:00 Adobe Photoshop CC 2014 (Windows) / saved xmp.iid:1d1aec42-c155-e048-b97f-d90e33de0d6e 2015-03-10T15:23:13+02:00 Adobe Photoshop CC 2014 (Windows) / image/png 2 1 720000/10000 720000/10000 2 65535 696 436  cHRMz%u0`:o_FPLTE  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~khIDATx10 A)(i":4&nm|&u!\H+] pKgE Wr*pp!t.U.JB.\"\ȅ\:Õ.…\E Wt+] pT/^A \+\ EE \+\ pGAWg \kppAW pGAWg \kppAW>wdppqE6pAWppA \vIENDB`images/icons/newspaper.svg000064400000400034150211537140011651 0ustar00 Generated by IcoMoon images/icons/newspaper.ttf000064400000104004150211537140011645 0ustar00 0OS/2`cmapgaspglyfrhead< L6hheat$hmtx^`loca̩*2maxp[< nameJ \post  3 @@@   >< /z2z  /z2zBdc 7979798X%#"'&5476;2'#"3132#"'&=!"'&=4767!5476nE0000E&%     7   01DD00 $n&7     R#"/&547676B'))'&&&&J632#"/&54767''''$--%\#"'&?'&7632d$$$$%--$R/'&54?632B'))'o''''(9676763#&'&'&%327654'&'&747632'&5R3=;7NJ&2>R2><6NJ&`CCCC``CBDE^=++++=>++--< #"'&54?632 632X  X _  //  _ Y   ^ / ^   #"'&547632/ _  X   _   _    _  #"/&547 &54?632yX  _ 0 _   W _  0/  _ X %#"' #"/&547632_   _    ^ 0 ^   X  F#"'.'&547>7632814&'%>74'.'&#"3>73265HA+,21,+BB+,12,+BI !]?>HG?>^^>?G;k/ $'2+,@A+,21,,AA,+2 -k:G??]]??GH>?^! $V47676767676767674'&'&547&'&'&76767621676767676! 12=>%  .  -  $>?11 ) $%&$'7*6 "  #$2 .$*7'$'$#_2 '.5467>33   , (    7 uu,    "&'&67 .762#  :,   I 7}6 J   : &"'%#"'&547'&547%6321 1    E    )) Pd%+"'&'&'&'&'3!276751'&10'&'!"327676767676767657!"'&74763!2[ ZJTnw     wnI&%&J&\uK KuJX`CW^   ^W**!&%m&%0^os2!!2%327654'&/#254'&/#32!3276?3"'&'&'&=47676767634'&'&'&'&#"3!59JP22ۮ KG21/o6757J33  22Dd +))))9)) --V4 /VV)w***)7T++&&%% ,,!! HPP3<M762767>7675.'>'&'.'&'3#&67%&'.76731,-D[BBV+b87Y%U55= BA.-;hchc942353<()4  -_.Jy7P;;M V11.lKI10)*? cGG !!!I&#>7'%6'5.!6'.'&5#qXgqGGQ7;;i)(4%%cc|sKo-$#\23,")+,O XA@SV} &5=LU74;54;#!732=#"4;+54;+43!#!74;5#732=#"4;5#43!#!5732=#" d pDE e e f e '  pE D & oE D} U} FG8} G2U2} G)4?GR]4767632#"'&'&536767&'#"'7327&'327&'67&#"632&'6767&#"EDvvvvDEEDvvvvDEUl1jke( ,M^P:9tLK;___/ZLFv4LY??\C=4Q34 K=9GvvDEEDvvvvEDDEvvzaWW$9i.\)IIXFZSS[^:[b 3lcF5RR_Y47676;27654'547676;632#"'&'4767676;2+1#"#";27654'&'&'&54#"#"'&'&'&'&'&575743+"634'#" `  $ +=('6%c!+  *n&&  !:(Z 6 I   _#F.%?z) = / 79[<-T+T.    4N fE6 $``("zS W #"3###535476; <<[i;ŗXaBC7"'&547632!"'&547632R<;:;TT::;;R;<;:TT:;<;<=TV;<<;VT=<<=TV;<<;VT=<V !57'57'5#'! eV^XhIW8PD5;.Y7654&'!3#"'.'&547>76327.#"3gg_JIf|zO3-,BB,-3.N!w7QVLKq !! qKLVee oJJT(LSA,,22,+Bv26 oJJTTJJo %7!!/#37!'!!% ^ qpe z%JbdσP887h \\n '34&#"3267#"'.'&547>76327#"&54632%"#&363226767>7>767>'45456&'&'.'.'&'."#"#*'.'.'&45<7>7>7>32IV<=UU=#$J""    ""J$##$J""    ""J$#''\5-[-.Z-5]&''&]5-Z.-[-5\''?+"IHZzVVXXxSFF&48RR]wwwv@Ax%1%'; *22X^88v,@/  $21^fDC10_"'O00VV{{UU,,GyF((ww%34762+"'&53#!347676234'&"#75#$$98#$#$:8## b+sHGvJ<3""!"61!"""3T~$#ONqa! !!7%!R { {u 6X3!539f66767#"'576532767654'&#&'&'ւ@"!| !1"(00*%!<6R.:00 $ (:Rv>44//4l&v0LP<p&EV+"+"'&?3276?6;27654'+"'&76;2+"7;27654'&+"'qm% )m F% +pqn  +P1:'$pm 4 X12!?#+ ('>?bJ99 {de_KJ..3} ZZ G,,NOzMM..K"~^k47632363732'6767632"'&5'&'#263276767632#"'&'&'&'#&/&'&56767&#"32767#67654'&'&'&'&#"7476#"'&'327673#"'&%47632#"'&'327654'&#"654'&#"33@?,G #12##!!4;abINN7 F11-*!<="{rHa:;" #:,,<&.2&&h 22675MH~qqL --115WcKOOKK//%%&&%-989<55!*EFLIGG?'""&$%##8))<$$;.&?-.%T%!!!33##((;44<;'11G0((o $%4BC]!  D/<;:-))4734#$ ((V' *822$$ %%@ASK&(%%.-@"#$$'##%$$##$:9B,7;++%/S7#"'&547632+"'&'&'&'&'&=476;+"'&5&'&'&'&'"'&=476; ./ /. % M  ]] [SSAA''% R 33QQpoy kk=>. ..  u ]]  L ''@ATT[ {onRR22 R <=kk372#"'&54765%#"'&547632%4'&547632#"'6?----?@--+3@----@7' --@?----?6' %,,A@----@!--@?--@--,,B?-.! y47632632#"'#"'&547&532767676'4'&'&'&'&'&'476323276'&'&'&#"#"'&'&'&'&'&"RRtOE%-ȍ RRtF>.*Ǎ &I300))..330/&&&) CBK/,,))))::<;((' tRR+26<@sRR! 00CJ*.j **6;))!  8 %$5C)) &  2$6C^77676=4'&"327654'&'"727654'&"3274'&47632632%&'&'  s   r   s%%u!"LBC(("G1122EM   >R  4  *  $$>?K23DF118To"327>7654'.''&'.&'&676767'&'.&'&6767617&'.&'&67676'j]]((((]]jj]]((((]]j -23p>=C  ICD|983 ? 4??DD=FLLFG;>NNMM;#DVWXYG &((]]jj]]())(]]jj]]((     $ $ "* & #  !3!7!!?%7777NQc~o -Z.GGVCVIVWUW'WTnTE88#%r$"64NX2  &#IfB 3 ! # !3#kJ#ɷNT` #yW6767676?6322767654'&'&#"67632#"'&'&'&'&'&'&898**    !,,3 + $1sW[ h&45??II55(+%%##PQ C44  **&&++5599b1, 6 P>T'3!hmlSSLL--'    %!%!zzx6>B?Hy;}'2:C"3&'.776&'&67&'.'&#>767>'&%6767KHG}22!8 v7<f 6O 9,//c3220f<  *7^=.*+R''%P99F0p- AEB,D- !* *Is//.\//&miN)Wb QUY3#""!54'&+"=&76?6%32?6=&'&!33?27676'54'&#!%'7r& s    ?v* FýU>q  9;  *oqqA4'%&327%6%! '&'&'&'&76'&7676767676!   %% *~~)  *~~)    7//%**%//77//%**%//7676;2327632767654'&'&'&'676;132167676767676?17676;2327676#"'&#"#&'&'&'&'&#"'&'&'&'&'&'&'&'&'&5   !   '9 %%=6   01  !  $  H*)4DK   D&PA@'',k_ TRsL   !+ -  ?g ;$$   B65" U ##! %%9 Q4767632#"'&'&537676'&5&76767676'4'&'&'&'&#"EDvvvvDEEDvvvvDE% +,* ')/:.+"0*0  6UUaD vvDEEDvvvvEDDEvvC *%7O~  2(3(C: 11 ,*Q..?>S 3/ .7/7#"'%#"'&547'&547%632mk*1 1    y$$qq   )) -7//%"'%#"'&7'&767%632&["#0 1  #`%  ))3'463!2#!54&+"&5%#!532654&+T**G6)_9)?f5*.)55)oF*GI*})H̩H) *GG()-(74?'&5476327632#"/#"'&5$$$%%$%%$%%%%$%$i 6'&76Az}kjlon!2%4&#!"3!26=4&#!"3!26=4&#!"3!26=n,,,<267 326?>54&' >54&/.#" .#" 3;HHHH5HGHH$4&/.#"326?>54&' >5!!K}$$?4&' >54&/.#" .#" 3267 326?>581J"  II  "I"    " "J" JJ !J! 90414&'.#!!3267>5041 r  4((    "   &  *)  &  " # 1 #7 31 3 7 WPWVSWPPPWSSSS<+5##"&5461 07+"&' '"&/&6762546;2%ۓHI#tu#3 m }'*J*Vto h ESf2+32+"&=46;2+"#"&/#"&=467263254632##"&=4632#"&=463232%4'.'&#"767>767>5:  KK  f  e  KY  h   i   if  K ()]]jj]])( !rNO\ *32y<<(76 0   0 }  ~       VLKq!!!!qKLVMEEm%%   , # T11/<~D<sZ&'.'�'&1067>77>76767>7676'.'&''0'.57"21&'.5&7>767>12201006?>11#"'"&'5.'.'./.'.'.'#.7&65>71>7>3173;3132;;;3233 11030"#"+"&'"&5.'4&=.'4&54&/.'././#'./5/"&#'#/#'40#'5#/#/1#/#/"&1#&"'+/#0"1#'+&"1'#&"#'#/#'+'+'#"&#./&4'4&5465>346362;;021:33;330202303323 0201101101#"#"#"�&#.'.=4&'4&'./5/5/.'0&5'#'5/1/14"1'#/0"1'5'5/#./#'#/#5/#&"'+'+/+'"&'4&'4&=46524346702726;0230232323022 1#"#"&#'.'4&'5'5'50&1./4"#/#/+'+'#5#"&1.'.50&5<74637>373x W??U-,~EE1,00Z$ ! >56P $%R$$   C h- M'(!%/*:;k%&    Ed  "     5*/            S  -"!O--22CC76g,&%  :76^`ON{,-&N-,.5  ..o99)S.& @''jDCQj!           .*5           F       H )"3#2654&#!#5#"&'.5467>3257X8LN=3JL7#K01T#.0,*&Z30KO68KJ7:M<" )k>:f(%%""! 3373!!#5#3#3#YC oYߜYYYY7 pYC  'D"001;26764'"0364'.+"01;267'.+112z34!!N!! G  d f YX\\=<<<  }C     =x3>32>7>354&#"#>32'33#7#.5#"&5467#"&'#>=!32673#'.'&547>7632326=*32654&#";%.#"!j&f5,,-Gk"HF@0?p NFr&{mv^ b'bBbf ?((.:f!hXZE/LmE(('F43BC34F8//E"HS4>SWD!I\\JI][J\9>Y7.!>//@?4 ;3&"U:(2Jj(-"1$Y< )""0 )( 9\HP()*$A-,590/C=/.?"/6UJ aPPaaPPaK=AG}"#'26=467.=4H3}2*DQ +&",,"&+ QD*2C(.99@,I I+A99.( #lyQA\53#53oIJl#"'.'&547>76328%&**&%88%&**&%8+%%88%%+*&%77%&#"'.'&547>76328%&**&%88%&**&%8+%%88%%+*&%77%&W4"327>7654'.'&#"&'.5467>32G>?]]?>GG>?]]?>w$b88b$%**%$b88b$%**%]?>GG?>]]>?GG>?]$**$%b88b$%**%$b88b% $0#"&54632#"&54632#"&54632!#"&54632\6&&66&&66&&66&&67&&66&&7i6&&77&&6&66&&66D'66'&66&66&&66&&66&&66E4&'.'.#"3029>5E ''%+'    '')+"U(S %>'#53'+*2PK +$qSI5% 3##7##7#537#53733733#+3p{OPq}myPOuNFFFF!!5$HZZ #5##3353•ZZ䕕ZE (#"&546324&'.'.#"302181>5@'''' ''%+'[''''    '')+!V(S3#>'#53'͆ +*2UKr*$qSH5C %#"&54632C''''''''C3#5-84&'.'.#"3:181>'4&'.'.#"3:381>5 ''%+( ''%+'    (')+!V'    (')+!V' >'#53'3>'#53'?+*2PK +*2QJ `+$qSI5+$qSI5  ! nD**Inn**;.'.'>7>7*??*)`33`)*??*)`33`)8)`33`)*??)*_44_*)??*4.'#3>7>75.'.'.'>7>75<J<55EE55<J<55EE54"43#"N**N"#34""N**NS4EE45<I<55EE55<I<5"N**N""43#"N**N"#34!1Jc%.'.'>7>7.'.'>7>7.'.'>7>7!.'.'>7>7,""""""""!!!!!!"!!!""e!!""Z""!!""!! 3QyA5 '7'?$$``fddՖ % %/7'7'?ڄ SS+ +ϓ϶WW >323267#"&#"'H:6z+#KF;7z) "Ld]OB$-]PC$-Y 373c%3#JJA#7#"&'%.546322%#"&/>322U     $%13./s32 ߹ 5b   9W ~:LLRS j-c"65<5&'.'.7267>7&'.'&5467.70>32>1767>7654'.'&#j]^((]A@LaD   )#\ +*)B DIA !AJC C)*+L@@]((^]j((]^jUMM// 6 8 5 ) : "  8//I*E J51  25J E*I//8  .$4L /0MMTj^]((#"'.'&547>76323#dDCLMCCeeCCMLCDd;LCDddDCLMCCeeCC%&9x736767167>7654&'>74'.'&'1&'.#">>767611'&'.'"&'&'.'&547>767&'&67677>7656'.'&&5<5<546 &%`;ddZZ*G66IG;;`%& .  )*h??LL:9M  M9:KL@?h**! &  E   !U547[[@@A@Z[4 - /-- )*%&E  >ABp'' l ,-xCC9 !F&%*( ,-()M%%&"$%%$M((,,  #"iFFYYFGh"# aBBTTABa  ;qrop8_]]]] tEE/=CDe5! 3 FI8157#"&'.'64567>7>7'./.5.'.'5.'<5467&67>7>74651>7>7>7>7>7>7>7>7>73>323#'3'.'.'"&#"71"#1"1011''1>7>7>3213267>7>7>7#>7>7>7465>75>7>54654&'.'.'.'.'1.'/732671231810"9!*#0&5<5467>75>7>77.'1&45467161#0"9"&'1./4&5&67>712632131"'.'7.5<51>73>321171#*#1"&'5.'5  -yF  :Az61i6          !  B#+H8 /K;I N:      ' 7I'*L"         "   :    <    y 8  5b,   :U(! "+#  +    %C         ,$%]7r-.0* %   = !>       %*    F%   #     ]&         , )   -           *DM_k3#"&'7326=#"&5463252654&#"3#5#"&546.#"'>32'&326>32#"&'#32654&#"a`O$='"&-->TT>-D))((a'37x?% ;$5Ra"5!->TT>-aaD(())V`]I 2(ZA@[((((N=(<+ F CRt h[@AZ((((*?%!546;27>7654'.'&+'!463!2#"&5463!2#1!"U1#4//EE//57dFu8XMNs"!"!tNMYUFdaE#22##1kW"1F./54/.FFd"!tMNWXNMt"!dF[Ea2#$21#T'3;Cbq67.7>7>726735#35#535#%33535+3353>'.'*#:3<5:3:3.''*#<5:3%7<5:3'.'.5467>76.v     %3  __SSG696'9(%;  !  /    $3! "3 _    !   +.(+R+++Y ,5i5##'" 9   1 $$  >"'.'5.546321326?>54&#"1#"&546?>32#181"'.'&546?>32#"&'1.#"326717>32#89K2T >$6oW=7@ @P..)(=#pQ..))<#pQ.7] >%6oW=8?@Q.+/%  p7>W? @"=().-Qo#<)(/.Qo#1(  o7>W? @#+Z"&'.#3'##"&'.54671'.'1.546712631%74671>3232'11#17>321'.546717'./11+   7 ( p (' o ( 6 /0 bc @  $   //   $ wNvv   ,[m"&'.#1'##"&'.54671/.'1.546712631%74671>3223#11#1'.546717'./+    7\l ( p (' o ( 7 0 b@  $  Sb //   $  v  +Z"&'.#3'##"&'.54671'.'1.546712631%74671>3232'11#1+   7 ( p (' o ( 6 @  $   //   $ ([qt2#81"&'&?&'.'&547>7637>54&#"154&#"11326515732654&'1'#54&#"1;2654%754&'1'.'181"1326757332654&'1''814&+"3133265153265bWV%%%%VWb( (1((8%%VWb B W  @  DB W 6/ K  ^    4  3 VdCDLMCCe "!P--1LDCdA TF tA >[ aV 1MM~   $$ * r %'##%3 3[߅{ѵGW I? X5.'.'1.#1<'.'</041049<50&9<54&50454"5<5<#1<50&9<'54&=4&5<1'04'041&41'<94&=&4'50&=&45&414&5<1/4&581409&4'5&45'4&1'<'5'4&14&540'14&5/40/<1'&410&1&41'401/5"4#5"4'5'81.5/5/0&50"5'5/ 5/#/#/#/#/#'#/#'#'#'#'#'#'+/#54654&'.#0"1"1113""1"1#1+*9###"#101"10#0901891911533029023267#>7>7>76?>7>7>75>7467>7>7>570238981:71>71>75>54&51818906981890"9.7>3181898183189858989.7>30292'+'+1'+1+1#11##"#>3>7>70292011#&'&67%71#0"#"&'3.'.'.'.5>;267>756&'.'1>7>7>?>73>310212'#71511"1#1#>567465467465465465<5<754&5<5<'4&51021"&'1'&'+07676&1&10"#781"&'.51.'+03276&'&63410"#>54&#"93:317>54&#"13267#'""#1"1101913898126717>54&51.#1        !   E+!& )=    -    6)C&%2 6  %  '"'    "%0 A 5#=.    3  45j   +''''s2               5>     $      1'/ G  ) )   ( "R Hk$ #wS #L&  $    7(6$  6 F ( 3:BKTbp~"3>73>735>73.'>73&'.'&#.'>75.'>%.3737#'#'#!3737#'#'#!3737#'#'#327>767#.'>7#.'5#.'#.'#.'>75.'>%>QJJw+++ $=! * %O+(+O% * !=$ +++wJJQ(I#LV.L#I(-4'b(8b'4-40+,/4,!'4(!-440++/5,"&4(!-250+,.6-!'4(!.++wJJQQJJw+++ $=! * %O+(+O% * !=$ +.L#IP(I#L.-8b'54'b8-]@@K&G -( >> (- G&K@@]+ Lc cL Q2 *<<* 2QҤ{{ssqq{{ssqq{{ssqqK@@]]@@K&G -( >> (- G&g cL  Lc 2Q<*  *<Qv^~01#"&54631211#"'.'&/%#"'.'&547>7632>7374&504147>7632%.#"383181267'.54632#%01327>7654'.' "1"894981"3#"&''3265409U<767>'"&'&'.4#&'&67'.'&'&'.'&541'''DD'''8 E(('CKG44GG44GKC'((F 7*)Z*+ *+Z)**hg+MIC/0  0/CIM+ ''W&& h*;e4&1.'#07>1'0'.'.5049067>767>541#54&#"#54&#"#5467>327>32y.RR-z+''>:c(INY::g cH,S*P{ Y X Y0"44"0See K(DBAm(' FG  T-$()E"#*)ww)*#"#6%%6#.'&'.'�"1">3832.7>7>7.'.'>7>77.'&'.'&+"9;>767>'&'.'&'&6726328((2":">&&F% #1#3654&67>7654'.'&'>54&ӀPPm-0=>5-" "`-'&+"-+55 +M+-5QR0-$$Q,,0.++O$$`-"\55]!-+rCCr@ #3654&ӀPP +M+85&'.'&5467!4'.'&''0&1!0&'>55>V:;C)##4+"ssV:;C)##4+"m@C05>5QH@?d!" B*)-5]!y@sH?@c"! B)).4]"sC05R '%%f#*%\k@@&%#"&5463:12##"&54630232#%vTSvvS7.vSTvvT73II34H ,m3II33I C.#"3#"&5<51854&'1.+"1#"&5463126515410531>71>54&'.589467332651331267##"&'.#"189#"&'.#"1383127>7675<5<513267>504550414&'1   0D 1""11":43M  hN2BW>>WE fC   <  ;''-+ 7712K2+ C0  "11"#0M33;.T# @#Qx C Q5>XW=BXA ,(':   F0/6   %33ЯXQ,S%.'&&'.'>7>7>7>'.'."'&'&7:3763267>' BI'Q*"H$)U) $?3;7654'.'&#"32#"&546"367>76323&'.'&*$%77%$**$%77%$*2GG22GG2NGFq''R! [87>>78[ R''qFG6%%)*%$77$%*)%%6CG32GG23Gl\??J910FF019J??\!!463!5!"3!5!"&59E97 )8OO8) :P:7x QO88OQ .'"#"&'&'.'&#"&'&67>7.5.#8126?.'.7>0327>761638167>767>54'.'&'"&546323"&54632#T= (_- &*)H H)*&-_( >)&&O"" %KNG55FF55GNK% ""O&&)&********2    100NNK(33   33(KNN00w0"!00!"00"!00!"0#!4&+"!"3!;265!26=4&   ` ` 7`     ` 3!26=4&#!"   @   C7!5!!5#"&=!4&#"3267+#!"&=#"&=46;463!232[ I !  A-$ 7W$-AIn \% [ [ -A7 W7A- B%#"&54632!#"&54632!2#!"&5467#"&546;2!2n+,,++,,+I et I++++++++P F    4 5n5Ts2#"'&'&'&=676323232763276767654'&'&'&#"732#"'7&547676763310   L8)*+))  & 7 tHCC0000CCHIBC00E.ZkWPP9:"##":9PPWpaN>"#9:POX$**@=24'  '' *$00BCHIBC0000CBIt^,<""::POXWPP9:"#6LfxXOP::"" 0c4'&#"327674'&#"3276534'&#"32767#"'"'&'&76767676767676767&'&54767632nEDvv?:b  T/0EDvvvvDEdTT11 b     4HHRcUT1111TUc3%6&%626?67%#"'.'&547>7632T~%  >Y((^]jj]^((((^]jj]^(( 'ւ<_ j]^((((^]jj]])(()]]K;_< cd=cd=R]\R }YV&$nQ%Xp$31#?w3wn@,,,@n 2H6hnb0T  \  0<.,f:48Pr^Trz X ! !\!!!""$":"v"""##0#@#\##$$$$%%%"%~&&F'n**++,-N-.f/T/p4567<78889969999::;;;;<(<<===>X>?`?@FY `6u K   g = |   R 4icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.images/icons/newspaper.woff000064400000104120150211537140012010 0ustar00wOFFP OS/2``cmaphgaspglyf rhead66< hhea$$thmtx``^locaT22̩*maxp [nameJ post0  3 @@@   >< /z2z  /z2zBdc 7979798X%#"'&5476;2'#"3132#"'&=!"'&=4767!5476nE0000E&%     7   01DD00 $n&7     R#"/&547676B'))'&&&&J632#"/&54767''''$--%\#"'&?'&7632d$$$$%--$R/'&54?632B'))'o''''(9676763#&'&'&%327654'&'&747632'&5R3=;7NJ&2>R2><6NJ&`CCCC``CBDE^=++++=>++--< #"'&54?632 632X  X _  //  _ Y   ^ / ^   #"'&547632/ _  X   _   _    _  #"/&547 &54?632yX  _ 0 _   W _  0/  _ X %#"' #"/&547632_   _    ^ 0 ^   X  F#"'.'&547>7632814&'%>74'.'&#"3>73265HA+,21,+BB+,12,+BI !]?>HG?>^^>?G;k/ $'2+,@A+,21,,AA,+2 -k:G??]]??GH>?^! $V47676767676767674'&'&547&'&'&76767621676767676! 12=>%  .  -  $>?11 ) $%&$'7*6 "  #$2 .$*7'$'$#_2 '.5467>33   , (    7 uu,    "&'&67 .762#  :,   I 7}6 J   : &"'%#"'&547'&547%6321 1    E    )) Pd%+"'&'&'&'&'3!276751'&10'&'!"327676767676767657!"'&74763!2[ ZJTnw     wnI&%&J&\uK KuJX`CW^   ^W**!&%m&%0^os2!!2%327654'&/#254'&/#32!3276?3"'&'&'&=47676767634'&'&'&'&#"3!59JP22ۮ KG21/o6757J33  22Dd +))))9)) --V4 /VV)w***)7T++&&%% ,,!! HPP3<M762767>7675.'>'&'.'&'3#&67%&'.76731,-D[BBV+b87Y%U55= BA.-;hchc942353<()4  -_.Jy7P;;M V11.lKI10)*? cGG !!!I&#>7'%6'5.!6'.'&5#qXgqGGQ7;;i)(4%%cc|sKo-$#\23,")+,O XA@SV} &5=LU74;54;#!732=#"4;+54;+43!#!74;5#732=#"4;5#43!#!5732=#" d pDE e e f e '  pE D & oE D} U} FG8} G2U2} G)4?GR]4767632#"'&'&536767&'#"'7327&'327&'67&#"632&'6767&#"EDvvvvDEEDvvvvDEUl1jke( ,M^P:9tLK;___/ZLFv4LY??\C=4Q34 K=9GvvDEEDvvvvEDDEvvzaWW$9i.\)IIXFZSS[^:[b 3lcF5RR_Y47676;27654'547676;632#"'&'4767676;2+1#"#";27654'&'&'&54#"#"'&'&'&'&'&575743+"634'#" `  $ +=('6%c!+  *n&&  !:(Z 6 I   _#F.%?z) = / 79[<-T+T.    4N fE6 $``("zS W #"3###535476; <<[i;ŗXaBC7"'&547632!"'&547632R<;:;TT::;;R;<;:TT:;<;<=TV;<<;VT=<<=TV;<<;VT=<V !57'57'5#'! eV^XhIW8PD5;.Y7654&'!3#"'.'&547>76327.#"3gg_JIf|zO3-,BB,-3.N!w7QVLKq !! qKLVee oJJT(LSA,,22,+Bv26 oJJTTJJo %7!!/#37!'!!% ^ qpe z%JbdσP887h \\n '34&#"3267#"'.'&547>76327#"&54632%"#&363226767>7>767>'45456&'&'.'.'&'."#"#*'.'.'&45<7>7>7>32IV<=UU=#$J""    ""J$##$J""    ""J$#''\5-[-.Z-5]&''&]5-Z.-[-5\''?+"IHZzVVXXxSFF&48RR]wwwv@Ax%1%'; *22X^88v,@/  $21^fDC10_"'O00VV{{UU,,GyF((ww%34762+"'&53#!347676234'&"#75#$$98#$#$:8## b+sHGvJ<3""!"61!"""3T~$#ONqa! !!7%!R { {u 6X3!539f66767#"'576532767654'&#&'&'ւ@"!| !1"(00*%!<6R.:00 $ (:Rv>44//4l&v0LP<p&EV+"+"'&?3276?6;27654'+"'&76;2+"7;27654'&+"'qm% )m F% +pqn  +P1:'$pm 4 X12!?#+ ('>?bJ99 {de_KJ..3} ZZ G,,NOzMM..K"~^k47632363732'6767632"'&5'&'#263276767632#"'&'&'&'#&/&'&56767&#"32767#67654'&'&'&'&#"7476#"'&'327673#"'&%47632#"'&'327654'&#"654'&#"33@?,G #12##!!4;abINN7 F11-*!<="{rHa:;" #:,,<&.2&&h 22675MH~qqL --115WcKOOKK//%%&&%-989<55!*EFLIGG?'""&$%##8))<$$;.&?-.%T%!!!33##((;44<;'11G0((o $%4BC]!  D/<;:-))4734#$ ((V' *822$$ %%@ASK&(%%.-@"#$$'##%$$##$:9B,7;++%/S7#"'&547632+"'&'&'&'&'&=476;+"'&5&'&'&'&'"'&=476; ./ /. % M  ]] [SSAA''% R 33QQpoy kk=>. ..  u ]]  L ''@ATT[ {onRR22 R <=kk372#"'&54765%#"'&547632%4'&547632#"'6?----?@--+3@----@7' --@?----?6' %,,A@----@!--@?--@--,,B?-.! y47632632#"'#"'&547&532767676'4'&'&'&'&'&'476323276'&'&'&#"#"'&'&'&'&'&"RRtOE%-ȍ RRtF>.*Ǎ &I300))..330/&&&) CBK/,,))))::<;((' tRR+26<@sRR! 00CJ*.j **6;))!  8 %$5C)) &  2$6C^77676=4'&"327654'&'"727654'&"3274'&47632632%&'&'  s   r   s%%u!"LBC(("G1122EM   >R  4  *  $$>?K23DF118To"327>7654'.''&'.&'&676767'&'.&'&6767617&'.&'&67676'j]]((((]]jj]]((((]]j -23p>=C  ICD|983 ? 4??DD=FLLFG;>NNMM;#DVWXYG &((]]jj]]())(]]jj]]((     $ $ "* & #  !3!7!!?%7777NQc~o -Z.GGVCVIVWUW'WTnTE88#%r$"64NX2  &#IfB 3 ! # !3#kJ#ɷNT` #yW6767676?6322767654'&'&#"67632#"'&'&'&'&'&'&898**    !,,3 + $1sW[ h&45??II55(+%%##PQ C44  **&&++5599b1, 6 P>T'3!hmlSSLL--'    %!%!zzx6>B?Hy;}'2:C"3&'.776&'&67&'.'&#>767>'&%6767KHG}22!8 v7<f 6O 9,//c3220f<  *7^=.*+R''%P99F0p- AEB,D- !* *Is//.\//&miN)Wb QUY3#""!54'&+"=&76?6%32?6=&'&!33?27676'54'&#!%'7r& s    ?v* FýU>q  9;  *oqqA4'%&327%6%! '&'&'&'&76'&7676767676!   %% *~~)  *~~)    7//%**%//77//%**%//7676;2327632767654'&'&'&'676;132167676767676?17676;2327676#"'&#"#&'&'&'&'&#"'&'&'&'&'&'&'&'&'&5   !   '9 %%=6   01  !  $  H*)4DK   D&PA@'',k_ TRsL   !+ -  ?g ;$$   B65" U ##! %%9 Q4767632#"'&'&537676'&5&76767676'4'&'&'&'&#"EDvvvvDEEDvvvvDE% +,* ')/:.+"0*0  6UUaD vvDEEDvvvvEDDEvvC *%7O~  2(3(C: 11 ,*Q..?>S 3/ .7/7#"'%#"'&547'&547%632mk*1 1    y$$qq   )) -7//%"'%#"'&7'&767%632&["#0 1  #`%  ))3'463!2#!54&+"&5%#!532654&+T**G6)_9)?f5*.)55)oF*GI*})H̩H) *GG()-(74?'&5476327632#"/#"'&5$$$%%$%%$%%%%$%$i 6'&76Az}kjlon!2%4&#!"3!26=4&#!"3!26=4&#!"3!26=n,,,<267 326?>54&' >54&/.#" .#" 3;HHHH5HGHH$4&/.#"326?>54&' >5!!K}$$?4&' >54&/.#" .#" 3267 326?>581J"  II  "I"    " "J" JJ !J! 90414&'.#!!3267>5041 r  4((    "   &  *)  &  " # 1 #7 31 3 7 WPWVSWPPPWSSSS<+5##"&5461 07+"&' '"&/&6762546;2%ۓHI#tu#3 m }'*J*Vto h ESf2+32+"&=46;2+"#"&/#"&=467263254632##"&=4632#"&=463232%4'.'&#"767>767>5:  KK  f  e  KY  h   i   if  K ()]]jj]])( !rNO\ *32y<<(76 0   0 }  ~       VLKq!!!!qKLVMEEm%%   , # T11/<~D<sZ&'.'�'&1067>77>76767>7676'.'&''0'.57"21&'.5&7>767>12201006?>11#"'"&'5.'.'./.'.'.'#.7&65>71>7>3173;3132;;;3233 11030"#"+"&'"&5.'4&=.'4&54&/.'././#'./5/"&#'#/#'40#'5#/#/1#/#/"&1#&"'+/#0"1#'+&"1'#&"#'#/#'+'+'#"&#./&4'4&5465>346362;;021:33;330202303323 0201101101#"#"#"�&#.'.=4&'4&'./5/5/.'0&5'#'5/1/14"1'#/0"1'5'5/#./#'#/#5/#&"'+'+/+'"&'4&'4&=46524346702726;0230232323022 1#"#"&#'.'4&'5'5'50&1./4"#/#/+'+'#5#"&1.'.50&5<74637>373x W??U-,~EE1,00Z$ ! >56P $%R$$   C h- M'(!%/*:;k%&    Ed  "     5*/            S  -"!O--22CC76g,&%  :76^`ON{,-&N-,.5  ..o99)S.& @''jDCQj!           .*5           F       H )"3#2654&#!#5#"&'.5467>3257X8LN=3JL7#K01T#.0,*&Z30KO68KJ7:M<" )k>:f(%%""! 3373!!#5#3#3#YC oYߜYYYY7 pYC  'D"001;26764'"0364'.+"01;267'.+112z34!!N!! G  d f YX\\=<<<  }C     =x3>32>7>354&#"#>32'33#7#.5#"&5467#"&'#>=!32673#'.'&547>7632326=*32654&#";%.#"!j&f5,,-Gk"HF@0?p NFr&{mv^ b'bBbf ?((.:f!hXZE/LmE(('F43BC34F8//E"HS4>SWD!I\\JI][J\9>Y7.!>//@?4 ;3&"U:(2Jj(-"1$Y< )""0 )( 9\HP()*$A-,590/C=/.?"/6UJ aPPaaPPaK=AG}"#'26=467.=4H3}2*DQ +&",,"&+ QD*2C(.99@,I I+A99.( #lyQA\53#53oIJl#"'.'&547>76328%&**&%88%&**&%8+%%88%%+*&%77%&#"'.'&547>76328%&**&%88%&**&%8+%%88%%+*&%77%&W4"327>7654'.'&#"&'.5467>32G>?]]?>GG>?]]?>w$b88b$%**%$b88b$%**%]?>GG?>]]>?GG>?]$**$%b88b$%**%$b88b% $0#"&54632#"&54632#"&54632!#"&54632\6&&66&&66&&66&&67&&66&&7i6&&77&&6&66&&66D'66'&66&66&&66&&66&&66E4&'.'.#"3029>5E ''%+'    '')+"U(S %>'#53'+*2PK +$qSI5% 3##7##7#537#53733733#+3p{OPq}myPOuNFFFF!!5$HZZ #5##3353•ZZ䕕ZE (#"&546324&'.'.#"302181>5@'''' ''%+'[''''    '')+!V(S3#>'#53'͆ +*2UKr*$qSH5C %#"&54632C''''''''C3#5-84&'.'.#"3:181>'4&'.'.#"3:381>5 ''%+( ''%+'    (')+!V'    (')+!V' >'#53'3>'#53'?+*2PK +*2QJ `+$qSI5+$qSI5  ! nD**Inn**;.'.'>7>7*??*)`33`)*??*)`33`)8)`33`)*??)*_44_*)??*4.'#3>7>75.'.'.'>7>75<J<55EE55<J<55EE54"43#"N**N"#34""N**NS4EE45<I<55EE55<I<5"N**N""43#"N**N"#34!1Jc%.'.'>7>7.'.'>7>7.'.'>7>7!.'.'>7>7,""""""""!!!!!!"!!!""e!!""Z""!!""!! 3QyA5 '7'?$$``fddՖ % %/7'7'?ڄ SS+ +ϓ϶WW >323267#"&#"'H:6z+#KF;7z) "Ld]OB$-]PC$-Y 373c%3#JJA#7#"&'%.546322%#"&/>322U     $%13./s32 ߹ 5b   9W ~:LLRS j-c"65<5&'.'.7267>7&'.'&5467.70>32>1767>7654'.'&#j]^((]A@LaD   )#\ +*)B DIA !AJC C)*+L@@]((^]j((]^jUMM// 6 8 5 ) : "  8//I*E J51  25J E*I//8  .$4L /0MMTj^]((#"'.'&547>76323#dDCLMCCeeCCMLCDd;LCDddDCLMCCeeCC%&9x736767167>7654&'>74'.'&'1&'.#">>767611'&'.'"&'&'.'&547>767&'&67677>7656'.'&&5<5<546 &%`;ddZZ*G66IG;;`%& .  )*h??LL:9M  M9:KL@?h**! &  E   !U547[[@@A@Z[4 - /-- )*%&E  >ABp'' l ,-xCC9 !F&%*( ,-()M%%&"$%%$M((,,  #"iFFYYFGh"# aBBTTABa  ;qrop8_]]]] tEE/=CDe5! 3 FI8157#"&'.'64567>7>7'./.5.'.'5.'<5467&67>7>74651>7>7>7>7>7>7>7>7>73>323#'3'.'.'"&#"71"#1"1011''1>7>7>3213267>7>7>7#>7>7>7465>75>7>54654&'.'.'.'.'1.'/732671231810"9!*#0&5<5467>75>7>77.'1&45467161#0"9"&'1./4&5&67>712632131"'.'7.5<51>73>321171#*#1"&'5.'5  -yF  :Az61i6          !  B#+H8 /K;I N:      ' 7I'*L"         "   :    <    y 8  5b,   :U(! "+#  +    %C         ,$%]7r-.0* %   = !>       %*    F%   #     ]&         , )   -           *DM_k3#"&'7326=#"&5463252654&#"3#5#"&546.#"'>32'&326>32#"&'#32654&#"a`O$='"&-->TT>-D))((a'37x?% ;$5Ra"5!->TT>-aaD(())V`]I 2(ZA@[((((N=(<+ F CRt h[@AZ((((*?%!546;27>7654'.'&+'!463!2#"&5463!2#1!"U1#4//EE//57dFu8XMNs"!"!tNMYUFdaE#22##1kW"1F./54/.FFd"!tMNWXNMt"!dF[Ea2#$21#T'3;Cbq67.7>7>726735#35#535#%33535+3353>'.'*#:3<5:3:3.''*#<5:3%7<5:3'.'.5467>76.v     %3  __SSG696'9(%;  !  /    $3! "3 _    !   +.(+R+++Y ,5i5##'" 9   1 $$  >"'.'5.546321326?>54&#"1#"&546?>32#181"'.'&546?>32#"&'1.#"326717>32#89K2T >$6oW=7@ @P..)(=#pQ..))<#pQ.7] >%6oW=8?@Q.+/%  p7>W? @"=().-Qo#<)(/.Qo#1(  o7>W? @#+Z"&'.#3'##"&'.54671'.'1.546712631%74671>3232'11#17>321'.546717'./11+   7 ( p (' o ( 6 /0 bc @  $   //   $ wNvv   ,[m"&'.#1'##"&'.54671/.'1.546712631%74671>3223#11#1'.546717'./+    7\l ( p (' o ( 7 0 b@  $  Sb //   $  v  +Z"&'.#3'##"&'.54671'.'1.546712631%74671>3232'11#1+   7 ( p (' o ( 6 @  $   //   $ ([qt2#81"&'&?&'.'&547>7637>54&#"154&#"11326515732654&'1'#54&#"1;2654%754&'1'.'181"1326757332654&'1''814&+"3133265153265bWV%%%%VWb( (1((8%%VWb B W  @  DB W 6/ K  ^    4  3 VdCDLMCCe "!P--1LDCdA TF tA >[ aV 1MM~   $$ * r %'##%3 3[߅{ѵGW I? X5.'.'1.#1<'.'</041049<50&9<54&50454"5<5<#1<50&9<'54&=4&5<1'04'041&41'<94&=&4'50&=&45&414&5<1/4&581409&4'5&45'4&1'<'5'4&14&540'14&5/40/<1'&410&1&41'401/5"4#5"4'5'81.5/5/0&50"5'5/ 5/#/#/#/#/#'#/#'#'#'#'#'#'+/#54654&'.#0"1"1113""1"1#1+*9###"#101"10#0901891911533029023267#>7>7>76?>7>7>75>7467>7>7>570238981:71>71>75>54&51818906981890"9.7>3181898183189858989.7>30292'+'+1'+1+1#11##"#>3>7>70292011#&'&67%71#0"#"&'3.'.'.'.5>;267>756&'.'1>7>7>?>73>310212'#71511"1#1#>567465467465465465<5<754&5<5<'4&51021"&'1'&'+07676&1&10"#781"&'.51.'+03276&'&63410"#>54&#"93:317>54&#"13267#'""#1"1101913898126717>54&51.#1        !   E+!& )=    -    6)C&%2 6  %  '"'    "%0 A 5#=.    3  45j   +''''s2               5>     $      1'/ G  ) )   ( "R Hk$ #wS #L&  $    7(6$  6 F ( 3:BKTbp~"3>73>735>73.'>73&'.'&#.'>75.'>%.3737#'#'#!3737#'#'#!3737#'#'#327>767#.'>7#.'5#.'#.'#.'>75.'>%>QJJw+++ $=! * %O+(+O% * !=$ +++wJJQ(I#LV.L#I(-4'b(8b'4-40+,/4,!'4(!-440++/5,"&4(!-250+,.6-!'4(!.++wJJQQJJw+++ $=! * %O+(+O% * !=$ +.L#IP(I#L.-8b'54'b8-]@@K&G -( >> (- G&K@@]+ Lc cL Q2 *<<* 2QҤ{{ssqq{{ssqq{{ssqqK@@]]@@K&G -( >> (- G&g cL  Lc 2Q<*  *<Qv^~01#"&54631211#"'.'&/%#"'.'&547>7632>7374&504147>7632%.#"383181267'.54632#%01327>7654'.' "1"894981"3#"&''3265409U<767>'"&'&'.4#&'&67'.'&'&'.'&541'''DD'''8 E(('CKG44GG44GKC'((F 7*)Z*+ *+Z)**hg+MIC/0  0/CIM+ ''W&& h*;e4&1.'#07>1'0'.'.5049067>767>541#54&#"#54&#"#5467>327>32y.RR-z+''>:c(INY::g cH,S*P{ Y X Y0"44"0See K(DBAm(' FG  T-$()E"#*)ww)*#"#6%%6#.'&'.'�"1">3832.7>7>7.'.'>7>77.'&'.'&+"9;>767>'&'.'&'&6726328((2":">&&F% #1#3654&67>7654'.'&'>54&ӀPPm-0=>5-" "`-'&+"-+55 +M+-5QR0-$$Q,,0.++O$$`-"\55]!-+rCCr@ #3654&ӀPP +M+85&'.'&5467!4'.'&''0&1!0&'>55>V:;C)##4+"ssV:;C)##4+"m@C05>5QH@?d!" B*)-5]!y@sH?@c"! B)).4]"sC05R '%%f#*%\k@@&%#"&5463:12##"&54630232#%vTSvvS7.vSTvvT73II34H ,m3II33I C.#"3#"&5<51854&'1.+"1#"&5463126515410531>71>54&'.589467332651331267##"&'.#"189#"&'.#"1383127>7675<5<513267>504550414&'1   0D 1""11":43M  hN2BW>>WE fC   <  ;''-+ 7712K2+ C0  "11"#0M33;.T# @#Qx C Q5>XW=BXA ,(':   F0/6   %33ЯXQ,S%.'&&'.'>7>7>7>'.'."'&'&7:3763267>' BI'Q*"H$)U) $?3;7654'.'&#"32#"&546"367>76323&'.'&*$%77%$**$%77%$*2GG22GG2NGFq''R! [87>>78[ R''qFG6%%)*%$77$%*)%%6CG32GG23Gl\??J910FF019J??\!!463!5!"3!5!"&59E97 )8OO8) :P:7x QO88OQ .'"#"&'&'.'&#"&'&67>7.5.#8126?.'.7>0327>761638167>767>54'.'&'"&546323"&54632#T= (_- &*)H H)*&-_( >)&&O"" %KNG55FF55GNK% ""O&&)&********2    100NNK(33   33(KNN00w0"!00!"00"!00!"0#!4&+"!"3!;265!26=4&   ` ` 7`     ` 3!26=4&#!"   @   C7!5!!5#"&=!4&#"3267+#!"&=#"&=46;463!232[ I !  A-$ 7W$-AIn \% [ [ -A7 W7A- B%#"&54632!#"&54632!2#!"&5467#"&546;2!2n+,,++,,+I et I++++++++P F    4 5n5Ts2#"'&'&'&=676323232763276767654'&'&'&#"732#"'7&547676763310   L8)*+))  & 7 tHCC0000CCHIBC00E.ZkWPP9:"##":9PPWpaN>"#9:POX$**@=24'  '' *$00BCHIBC0000CBIt^,<""::POXWPP9:"#6LfxXOP::"" 0c4'&#"327674'&#"3276534'&#"32767#"'"'&'&76767676767676767&'&54767632nEDvv?:b  T/0EDvvvvDEdTT11 b     4HHRcUT1111TUc3%6&%626?67%#"'.'&547>7632T~%  >Y((^]jj]^((((^]jj]^(( 'ւ<_ j]^((((^]jj]])(()]]K;_< cd=cd=R]\R }YV&$nQ%Xp$31#?w3wn@,,,@n 2H6hnb0T  \  0<.,f:48Pr^Trz X ! !\!!!""$":"v"""##0#@#\##$$$$%%%"%~&&F'n**++,-N-.f/T/p4567<78889969999::;;;;<(<<===>X>?`?@FY `6u K   g = |   R 4icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.images/icons/newspaper.eot000064400000104250150211537140011642 0ustar00LP;KicomoonRegularVersion 1.0icomoon 0OS/2`cmapgaspglyfrhead< L6hheat$hmtx^`loca̩*2maxp[< nameJ \post  3 @@@   >< /z2z  /z2zBdc 7979798X%#"'&5476;2'#"3132#"'&=!"'&=4767!5476nE0000E&%     7   01DD00 $n&7     R#"/&547676B'))'&&&&J632#"/&54767''''$--%\#"'&?'&7632d$$$$%--$R/'&54?632B'))'o''''(9676763#&'&'&%327654'&'&747632'&5R3=;7NJ&2>R2><6NJ&`CCCC``CBDE^=++++=>++--< #"'&54?632 632X  X _  //  _ Y   ^ / ^   #"'&547632/ _  X   _   _    _  #"/&547 &54?632yX  _ 0 _   W _  0/  _ X %#"' #"/&547632_   _    ^ 0 ^   X  F#"'.'&547>7632814&'%>74'.'&#"3>73265HA+,21,+BB+,12,+BI !]?>HG?>^^>?G;k/ $'2+,@A+,21,,AA,+2 -k:G??]]??GH>?^! $V47676767676767674'&'&547&'&'&76767621676767676! 12=>%  .  -  $>?11 ) $%&$'7*6 "  #$2 .$*7'$'$#_2 '.5467>33   , (    7 uu,    "&'&67 .762#  :,   I 7}6 J   : &"'%#"'&547'&547%6321 1    E    )) Pd%+"'&'&'&'&'3!276751'&10'&'!"327676767676767657!"'&74763!2[ ZJTnw     wnI&%&J&\uK KuJX`CW^   ^W**!&%m&%0^os2!!2%327654'&/#254'&/#32!3276?3"'&'&'&=47676767634'&'&'&'&#"3!59JP22ۮ KG21/o6757J33  22Dd +))))9)) --V4 /VV)w***)7T++&&%% ,,!! HPP3<M762767>7675.'>'&'.'&'3#&67%&'.76731,-D[BBV+b87Y%U55= BA.-;hchc942353<()4  -_.Jy7P;;M V11.lKI10)*? cGG !!!I&#>7'%6'5.!6'.'&5#qXgqGGQ7;;i)(4%%cc|sKo-$#\23,")+,O XA@SV} &5=LU74;54;#!732=#"4;+54;+43!#!74;5#732=#"4;5#43!#!5732=#" d pDE e e f e '  pE D & oE D} U} FG8} G2U2} G)4?GR]4767632#"'&'&536767&'#"'7327&'327&'67&#"632&'6767&#"EDvvvvDEEDvvvvDEUl1jke( ,M^P:9tLK;___/ZLFv4LY??\C=4Q34 K=9GvvDEEDvvvvEDDEvvzaWW$9i.\)IIXFZSS[^:[b 3lcF5RR_Y47676;27654'547676;632#"'&'4767676;2+1#"#";27654'&'&'&54#"#"'&'&'&'&'&575743+"634'#" `  $ +=('6%c!+  *n&&  !:(Z 6 I   _#F.%?z) = / 79[<-T+T.    4N fE6 $``("zS W #"3###535476; <<[i;ŗXaBC7"'&547632!"'&547632R<;:;TT::;;R;<;:TT:;<;<=TV;<<;VT=<<=TV;<<;VT=<V !57'57'5#'! eV^XhIW8PD5;.Y7654&'!3#"'.'&547>76327.#"3gg_JIf|zO3-,BB,-3.N!w7QVLKq !! qKLVee oJJT(LSA,,22,+Bv26 oJJTTJJo %7!!/#37!'!!% ^ qpe z%JbdσP887h \\n '34&#"3267#"'.'&547>76327#"&54632%"#&363226767>7>767>'45456&'&'.'.'&'."#"#*'.'.'&45<7>7>7>32IV<=UU=#$J""    ""J$##$J""    ""J$#''\5-[-.Z-5]&''&]5-Z.-[-5\''?+"IHZzVVXXxSFF&48RR]wwwv@Ax%1%'; *22X^88v,@/  $21^fDC10_"'O00VV{{UU,,GyF((ww%34762+"'&53#!347676234'&"#75#$$98#$#$:8## b+sHGvJ<3""!"61!"""3T~$#ONqa! !!7%!R { {u 6X3!539f66767#"'576532767654'&#&'&'ւ@"!| !1"(00*%!<6R.:00 $ (:Rv>44//4l&v0LP<p&EV+"+"'&?3276?6;27654'+"'&76;2+"7;27654'&+"'qm% )m F% +pqn  +P1:'$pm 4 X12!?#+ ('>?bJ99 {de_KJ..3} ZZ G,,NOzMM..K"~^k47632363732'6767632"'&5'&'#263276767632#"'&'&'&'#&/&'&56767&#"32767#67654'&'&'&'&#"7476#"'&'327673#"'&%47632#"'&'327654'&#"654'&#"33@?,G #12##!!4;abINN7 F11-*!<="{rHa:;" #:,,<&.2&&h 22675MH~qqL --115WcKOOKK//%%&&%-989<55!*EFLIGG?'""&$%##8))<$$;.&?-.%T%!!!33##((;44<;'11G0((o $%4BC]!  D/<;:-))4734#$ ((V' *822$$ %%@ASK&(%%.-@"#$$'##%$$##$:9B,7;++%/S7#"'&547632+"'&'&'&'&'&=476;+"'&5&'&'&'&'"'&=476; ./ /. % M  ]] [SSAA''% R 33QQpoy kk=>. ..  u ]]  L ''@ATT[ {onRR22 R <=kk372#"'&54765%#"'&547632%4'&547632#"'6?----?@--+3@----@7' --@?----?6' %,,A@----@!--@?--@--,,B?-.! y47632632#"'#"'&547&532767676'4'&'&'&'&'&'476323276'&'&'&#"#"'&'&'&'&'&"RRtOE%-ȍ RRtF>.*Ǎ &I300))..330/&&&) CBK/,,))))::<;((' tRR+26<@sRR! 00CJ*.j **6;))!  8 %$5C)) &  2$6C^77676=4'&"327654'&'"727654'&"3274'&47632632%&'&'  s   r   s%%u!"LBC(("G1122EM   >R  4  *  $$>?K23DF118To"327>7654'.''&'.&'&676767'&'.&'&6767617&'.&'&67676'j]]((((]]jj]]((((]]j -23p>=C  ICD|983 ? 4??DD=FLLFG;>NNMM;#DVWXYG &((]]jj]]())(]]jj]]((     $ $ "* & #  !3!7!!?%7777NQc~o -Z.GGVCVIVWUW'WTnTE88#%r$"64NX2  &#IfB 3 ! # !3#kJ#ɷNT` #yW6767676?6322767654'&'&#"67632#"'&'&'&'&'&'&898**    !,,3 + $1sW[ h&45??II55(+%%##PQ C44  **&&++5599b1, 6 P>T'3!hmlSSLL--'    %!%!zzx6>B?Hy;}'2:C"3&'.776&'&67&'.'&#>767>'&%6767KHG}22!8 v7<f 6O 9,//c3220f<  *7^=.*+R''%P99F0p- AEB,D- !* *Is//.\//&miN)Wb QUY3#""!54'&+"=&76?6%32?6=&'&!33?27676'54'&#!%'7r& s    ?v* FýU>q  9;  *oqqA4'%&327%6%! '&'&'&'&76'&7676767676!   %% *~~)  *~~)    7//%**%//77//%**%//7676;2327632767654'&'&'&'676;132167676767676?17676;2327676#"'&#"#&'&'&'&'&#"'&'&'&'&'&'&'&'&'&5   !   '9 %%=6   01  !  $  H*)4DK   D&PA@'',k_ TRsL   !+ -  ?g ;$$   B65" U ##! %%9 Q4767632#"'&'&537676'&5&76767676'4'&'&'&'&#"EDvvvvDEEDvvvvDE% +,* ')/:.+"0*0  6UUaD vvDEEDvvvvEDDEvvC *%7O~  2(3(C: 11 ,*Q..?>S 3/ .7/7#"'%#"'&547'&547%632mk*1 1    y$$qq   )) -7//%"'%#"'&7'&767%632&["#0 1  #`%  ))3'463!2#!54&+"&5%#!532654&+T**G6)_9)?f5*.)55)oF*GI*})H̩H) *GG()-(74?'&5476327632#"/#"'&5$$$%%$%%$%%%%$%$i 6'&76Az}kjlon!2%4&#!"3!26=4&#!"3!26=4&#!"3!26=n,,,<267 326?>54&' >54&/.#" .#" 3;HHHH5HGHH$4&/.#"326?>54&' >5!!K}$$?4&' >54&/.#" .#" 3267 326?>581J"  II  "I"    " "J" JJ !J! 90414&'.#!!3267>5041 r  4((    "   &  *)  &  " # 1 #7 31 3 7 WPWVSWPPPWSSSS<+5##"&5461 07+"&' '"&/&6762546;2%ۓHI#tu#3 m }'*J*Vto h ESf2+32+"&=46;2+"#"&/#"&=467263254632##"&=4632#"&=463232%4'.'&#"767>767>5:  KK  f  e  KY  h   i   if  K ()]]jj]])( !rNO\ *32y<<(76 0   0 }  ~       VLKq!!!!qKLVMEEm%%   , # T11/<~D<sZ&'.'�'&1067>77>76767>7676'.'&''0'.57"21&'.5&7>767>12201006?>11#"'"&'5.'.'./.'.'.'#.7&65>71>7>3173;3132;;;3233 11030"#"+"&'"&5.'4&=.'4&54&/.'././#'./5/"&#'#/#'40#'5#/#/1#/#/"&1#&"'+/#0"1#'+&"1'#&"#'#/#'+'+'#"&#./&4'4&5465>346362;;021:33;330202303323 0201101101#"#"#"�&#.'.=4&'4&'./5/5/.'0&5'#'5/1/14"1'#/0"1'5'5/#./#'#/#5/#&"'+'+/+'"&'4&'4&=46524346702726;0230232323022 1#"#"&#'.'4&'5'5'50&1./4"#/#/+'+'#5#"&1.'.50&5<74637>373x W??U-,~EE1,00Z$ ! >56P $%R$$   C h- M'(!%/*:;k%&    Ed  "     5*/            S  -"!O--22CC76g,&%  :76^`ON{,-&N-,.5  ..o99)S.& @''jDCQj!           .*5           F       H )"3#2654&#!#5#"&'.5467>3257X8LN=3JL7#K01T#.0,*&Z30KO68KJ7:M<" )k>:f(%%""! 3373!!#5#3#3#YC oYߜYYYY7 pYC  'D"001;26764'"0364'.+"01;267'.+112z34!!N!! G  d f YX\\=<<<  }C     =x3>32>7>354&#"#>32'33#7#.5#"&5467#"&'#>=!32673#'.'&547>7632326=*32654&#";%.#"!j&f5,,-Gk"HF@0?p NFr&{mv^ b'bBbf ?((.:f!hXZE/LmE(('F43BC34F8//E"HS4>SWD!I\\JI][J\9>Y7.!>//@?4 ;3&"U:(2Jj(-"1$Y< )""0 )( 9\HP()*$A-,590/C=/.?"/6UJ aPPaaPPaK=AG}"#'26=467.=4H3}2*DQ +&",,"&+ QD*2C(.99@,I I+A99.( #lyQA\53#53oIJl#"'.'&547>76328%&**&%88%&**&%8+%%88%%+*&%77%&#"'.'&547>76328%&**&%88%&**&%8+%%88%%+*&%77%&W4"327>7654'.'&#"&'.5467>32G>?]]?>GG>?]]?>w$b88b$%**%$b88b$%**%]?>GG?>]]>?GG>?]$**$%b88b$%**%$b88b% $0#"&54632#"&54632#"&54632!#"&54632\6&&66&&66&&66&&67&&66&&7i6&&77&&6&66&&66D'66'&66&66&&66&&66&&66E4&'.'.#"3029>5E ''%+'    '')+"U(S %>'#53'+*2PK +$qSI5% 3##7##7#537#53733733#+3p{OPq}myPOuNFFFF!!5$HZZ #5##3353•ZZ䕕ZE (#"&546324&'.'.#"302181>5@'''' ''%+'[''''    '')+!V(S3#>'#53'͆ +*2UKr*$qSH5C %#"&54632C''''''''C3#5-84&'.'.#"3:181>'4&'.'.#"3:381>5 ''%+( ''%+'    (')+!V'    (')+!V' >'#53'3>'#53'?+*2PK +*2QJ `+$qSI5+$qSI5  ! nD**Inn**;.'.'>7>7*??*)`33`)*??*)`33`)8)`33`)*??)*_44_*)??*4.'#3>7>75.'.'.'>7>75<J<55EE55<J<55EE54"43#"N**N"#34""N**NS4EE45<I<55EE55<I<5"N**N""43#"N**N"#34!1Jc%.'.'>7>7.'.'>7>7.'.'>7>7!.'.'>7>7,""""""""!!!!!!"!!!""e!!""Z""!!""!! 3QyA5 '7'?$$``fddՖ % %/7'7'?ڄ SS+ +ϓ϶WW >323267#"&#"'H:6z+#KF;7z) "Ld]OB$-]PC$-Y 373c%3#JJA#7#"&'%.546322%#"&/>322U     $%13./s32 ߹ 5b   9W ~:LLRS j-c"65<5&'.'.7267>7&'.'&5467.70>32>1767>7654'.'&#j]^((]A@LaD   )#\ +*)B DIA !AJC C)*+L@@]((^]j((]^jUMM// 6 8 5 ) : "  8//I*E J51  25J E*I//8  .$4L /0MMTj^]((#"'.'&547>76323#dDCLMCCeeCCMLCDd;LCDddDCLMCCeeCC%&9x736767167>7654&'>74'.'&'1&'.#">>767611'&'.'"&'&'.'&547>767&'&67677>7656'.'&&5<5<546 &%`;ddZZ*G66IG;;`%& .  )*h??LL:9M  M9:KL@?h**! &  E   !U547[[@@A@Z[4 - /-- )*%&E  >ABp'' l ,-xCC9 !F&%*( ,-()M%%&"$%%$M((,,  #"iFFYYFGh"# aBBTTABa  ;qrop8_]]]] tEE/=CDe5! 3 FI8157#"&'.'64567>7>7'./.5.'.'5.'<5467&67>7>74651>7>7>7>7>7>7>7>7>73>323#'3'.'.'"&#"71"#1"1011''1>7>7>3213267>7>7>7#>7>7>7465>75>7>54654&'.'.'.'.'1.'/732671231810"9!*#0&5<5467>75>7>77.'1&45467161#0"9"&'1./4&5&67>712632131"'.'7.5<51>73>321171#*#1"&'5.'5  -yF  :Az61i6          !  B#+H8 /K;I N:      ' 7I'*L"         "   :    <    y 8  5b,   :U(! "+#  +    %C         ,$%]7r-.0* %   = !>       %*    F%   #     ]&         , )   -           *DM_k3#"&'7326=#"&5463252654&#"3#5#"&546.#"'>32'&326>32#"&'#32654&#"a`O$='"&-->TT>-D))((a'37x?% ;$5Ra"5!->TT>-aaD(())V`]I 2(ZA@[((((N=(<+ F CRt h[@AZ((((*?%!546;27>7654'.'&+'!463!2#"&5463!2#1!"U1#4//EE//57dFu8XMNs"!"!tNMYUFdaE#22##1kW"1F./54/.FFd"!tMNWXNMt"!dF[Ea2#$21#T'3;Cbq67.7>7>726735#35#535#%33535+3353>'.'*#:3<5:3:3.''*#<5:3%7<5:3'.'.5467>76.v     %3  __SSG696'9(%;  !  /    $3! "3 _    !   +.(+R+++Y ,5i5##'" 9   1 $$  >"'.'5.546321326?>54&#"1#"&546?>32#181"'.'&546?>32#"&'1.#"326717>32#89K2T >$6oW=7@ @P..)(=#pQ..))<#pQ.7] >%6oW=8?@Q.+/%  p7>W? @"=().-Qo#<)(/.Qo#1(  o7>W? @#+Z"&'.#3'##"&'.54671'.'1.546712631%74671>3232'11#17>321'.546717'./11+   7 ( p (' o ( 6 /0 bc @  $   //   $ wNvv   ,[m"&'.#1'##"&'.54671/.'1.546712631%74671>3223#11#1'.546717'./+    7\l ( p (' o ( 7 0 b@  $  Sb //   $  v  +Z"&'.#3'##"&'.54671'.'1.546712631%74671>3232'11#1+   7 ( p (' o ( 6 @  $   //   $ ([qt2#81"&'&?&'.'&547>7637>54&#"154&#"11326515732654&'1'#54&#"1;2654%754&'1'.'181"1326757332654&'1''814&+"3133265153265bWV%%%%VWb( (1((8%%VWb B W  @  DB W 6/ K  ^    4  3 VdCDLMCCe "!P--1LDCdA TF tA >[ aV 1MM~   $$ * r %'##%3 3[߅{ѵGW I? X5.'.'1.#1<'.'</041049<50&9<54&50454"5<5<#1<50&9<'54&=4&5<1'04'041&41'<94&=&4'50&=&45&414&5<1/4&581409&4'5&45'4&1'<'5'4&14&540'14&5/40/<1'&410&1&41'401/5"4#5"4'5'81.5/5/0&50"5'5/ 5/#/#/#/#/#'#/#'#'#'#'#'#'+/#54654&'.#0"1"1113""1"1#1+*9###"#101"10#0901891911533029023267#>7>7>76?>7>7>75>7467>7>7>570238981:71>71>75>54&51818906981890"9.7>3181898183189858989.7>30292'+'+1'+1+1#11##"#>3>7>70292011#&'&67%71#0"#"&'3.'.'.'.5>;267>756&'.'1>7>7>?>73>310212'#71511"1#1#>567465467465465465<5<754&5<5<'4&51021"&'1'&'+07676&1&10"#781"&'.51.'+03276&'&63410"#>54&#"93:317>54&#"13267#'""#1"1101913898126717>54&51.#1        !   E+!& )=    -    6)C&%2 6  %  '"'    "%0 A 5#=.    3  45j   +''''s2               5>     $      1'/ G  ) )   ( "R Hk$ #wS #L&  $    7(6$  6 F ( 3:BKTbp~"3>73>735>73.'>73&'.'&#.'>75.'>%.3737#'#'#!3737#'#'#!3737#'#'#327>767#.'>7#.'5#.'#.'#.'>75.'>%>QJJw+++ $=! * %O+(+O% * !=$ +++wJJQ(I#LV.L#I(-4'b(8b'4-40+,/4,!'4(!-440++/5,"&4(!-250+,.6-!'4(!.++wJJQQJJw+++ $=! * %O+(+O% * !=$ +.L#IP(I#L.-8b'54'b8-]@@K&G -( >> (- G&K@@]+ Lc cL Q2 *<<* 2QҤ{{ssqq{{ssqq{{ssqqK@@]]@@K&G -( >> (- G&g cL  Lc 2Q<*  *<Qv^~01#"&54631211#"'.'&/%#"'.'&547>7632>7374&504147>7632%.#"383181267'.54632#%01327>7654'.' "1"894981"3#"&''3265409U<767>'"&'&'.4#&'&67'.'&'&'.'&541'''DD'''8 E(('CKG44GG44GKC'((F 7*)Z*+ *+Z)**hg+MIC/0  0/CIM+ ''W&& h*;e4&1.'#07>1'0'.'.5049067>767>541#54&#"#54&#"#5467>327>32y.RR-z+''>:c(INY::g cH,S*P{ Y X Y0"44"0See K(DBAm(' FG  T-$()E"#*)ww)*#"#6%%6#.'&'.'�"1">3832.7>7>7.'.'>7>77.'&'.'&+"9;>767>'&'.'&'&6726328((2":">&&F% #1#3654&67>7654'.'&'>54&ӀPPm-0=>5-" "`-'&+"-+55 +M+-5QR0-$$Q,,0.++O$$`-"\55]!-+rCCr@ #3654&ӀPP +M+85&'.'&5467!4'.'&''0&1!0&'>55>V:;C)##4+"ssV:;C)##4+"m@C05>5QH@?d!" B*)-5]!y@sH?@c"! B)).4]"sC05R '%%f#*%\k@@&%#"&5463:12##"&54630232#%vTSvvS7.vSTvvT73II34H ,m3II33I C.#"3#"&5<51854&'1.+"1#"&5463126515410531>71>54&'.589467332651331267##"&'.#"189#"&'.#"1383127>7675<5<513267>504550414&'1   0D 1""11":43M  hN2BW>>WE fC   <  ;''-+ 7712K2+ C0  "11"#0M33;.T# @#Qx C Q5>XW=BXA ,(':   F0/6   %33ЯXQ,S%.'&&'.'>7>7>7>'.'."'&'&7:3763267>' BI'Q*"H$)U) $?3;7654'.'&#"32#"&546"367>76323&'.'&*$%77%$**$%77%$*2GG22GG2NGFq''R! [87>>78[ R''qFG6%%)*%$77$%*)%%6CG32GG23Gl\??J910FF019J??\!!463!5!"3!5!"&59E97 )8OO8) :P:7x QO88OQ .'"#"&'&'.'&#"&'&67>7.5.#8126?.'.7>0327>761638167>767>54'.'&'"&546323"&54632#T= (_- &*)H H)*&-_( >)&&O"" %KNG55FF55GNK% ""O&&)&********2    100NNK(33   33(KNN00w0"!00!"00"!00!"0#!4&+"!"3!;265!26=4&   ` ` 7`     ` 3!26=4&#!"   @   C7!5!!5#"&=!4&#"3267+#!"&=#"&=46;463!232[ I !  A-$ 7W$-AIn \% [ [ -A7 W7A- B%#"&54632!#"&54632!2#!"&5467#"&546;2!2n+,,++,,+I et I++++++++P F    4 5n5Ts2#"'&'&'&=676323232763276767654'&'&'&#"732#"'7&547676763310   L8)*+))  & 7 tHCC0000CCHIBC00E.ZkWPP9:"##":9PPWpaN>"#9:POX$**@=24'  '' *$00BCHIBC0000CBIt^,<""::POXWPP9:"#6LfxXOP::"" 0c4'&#"327674'&#"3276534'&#"32767#"'"'&'&76767676767676767&'&54767632nEDvv?:b  T/0EDvvvvDEdTT11 b     4HHRcUT1111TUc3%6&%626?67%#"'.'&547>7632T~%  >Y((^]jj]^((((^]jj]^(( 'ւ<_ j]^((((^]jj]])(()]]K;_< cd=cd=R]\R }YV&$nQ%Xp$31#?w3wn@,,,@n 2H6hnb0T  \  0<.,f:48Pr^Trz X ! !\!!!""$":"v"""##0#@#\##$$$$%%%"%~&&F'n**++,-N-.f/T/p4567<78889969999::;;;;<(<<===>X>?`?@FY `6u K   g = |   R 4icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.page.php000064400000003340150211537140006170 0ustar00

category.php000064400000003266150211537140007100 0ustar00
'category', 'category_obj' => $current_category_obj, )); ?>

name ) ?>

gutenberg-editor.css000064400000164117150211537140010535 0ustar00:root { --td_theme_color: #4db2ec; --td_grid_border_color: #ededed; --td_black: #222; --td_text_color: #111; --td_default_google_font_1: 'Open Sans', 'Open Sans Regular', sans-serif; --td_default_google_font_2: 'Roboto', sans-serif; } /* ---------------------------------------------------------------------------- responsive settings */ /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ .editor-styles-wrapper .block-library-list ol, .editor-styles-wrapper .block-library-list ul { padding-left: 0; margin-left: 0; } html :where(.wp-block.wp-block-navigation-item) { margin-top: 0; margin-bottom: 0; } .wp-block, .wp-block .wp-block-freeform { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 15px; line-height: 1.74; /* ---------------------------------------------------------------------------- table */ /* ---------------------------------------------------------------------------- h */ /* ---------------------------------------------------------------------------- button */ /* ---------------------------------------------------------------------------- text columns */ /* ---------------------------------------------------------------------------- text highlighting */ /* ---------------------------------------------------------------------------- Site wide > Forms ---------------------------------------------------------------------------- */ /* Input buttons */ } .wp-block p, .wp-block .wp-block-freeform p { margin-bottom: 26px; font-size: 15px; line-height: 1.74; } .wp-block a, .wp-block .wp-block-freeform a { color: var(--td_theme_color, #4db2ec); text-decoration: none; } .wp-block ins, .wp-block .wp-block-freeform ins { background: white; text-decoration: none; } .wp-block code, .wp-block .wp-block-freeform code { position: relative; top: -1px; border: none; background-color: #F1F1F1; padding: 2px 6px; } .wp-block pre, .wp-block .wp-block-freeform pre { background-color: #f1f1f1; padding: 4px 10px 4px 10px; border: none; border-radius: 0; margin-top: 24px; font-size: 15px; } .wp-block cite, .wp-block .wp-block-freeform cite { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; /* ovveride bootstrap */ font-style: italic; font-weight: normal; text-transform: none; color: #000; } .wp-block cite a, .wp-block .wp-block-freeform cite a { color: #000; } .wp-block cite a:hover, .wp-block .wp-block-freeform cite a:hover { color: var(--td_theme_color, #4db2ec); } .wp-block q, .wp-block .wp-block-freeform q { font-style: italic; } .wp-block ul, .wp-block .wp-block-freeform ul, .wp-block ol, .wp-block .wp-block-freeform ol { padding: 0; } .wp-block ul li, .wp-block .wp-block-freeform ul li, .wp-block ol li, .wp-block .wp-block-freeform ol li { line-height: 1.74; margin-left: 21px; } .wp-block .dl-horizontal a, .wp-block .wp-block-freeform .dl-horizontal a { font-weight: 500 !important; } .wp-block .dl-horizontal dt, .wp-block .wp-block-freeform .dl-horizontal dt { width: 70px; font-weight: 400; line-height: 24px; font-size: 15px; } .wp-block .dl-horizontal dd, .wp-block .wp-block-freeform .dl-horizontal dd { margin-left: 90px; line-height: 24px; font-size: 14px; } .wp-block address, .wp-block .wp-block-freeform address { font-size: inherit !important; line-height: inherit !important; margin-bottom: 21px; } .wp-block big, .wp-block .wp-block-freeform big { text-transform: uppercase; } .wp-block embed, .wp-block .wp-block-freeform embed { width: 100%; } .wp-block .wp-block-archives, .wp-block .wp-block-freeform .wp-block-archives { padding-left: 0 !important; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); } .wp-block .wp-block-archives li, .wp-block .wp-block-freeform .wp-block-archives li { line-height: 30px; list-style: none; padding: 0; margin-left: 0 !important; } .wp-block .wp-block-archives li a, .wp-block .wp-block-freeform .wp-block-archives li a { color: #222222; } .wp-block .wp-block-archives li a:hover, .wp-block .wp-block-freeform .wp-block-archives li a:hover { color: var(--td_theme_color, #4db2ec); text-decoration: none !important; } .wp-block .wp-block-gallery.alignnone, .wp-block .wp-block-freeform .wp-block-gallery.alignnone { display: flex; } .wp-block .wp-block-paragraph, .wp-block .wp-block-freeform .wp-block-paragraph { font-size: 15px; line-height: 1.74; } .wp-block table, .wp-block .wp-block-freeform table { width: 100%; } .wp-block table th, .wp-block .wp-block-freeform table th { text-align: left; border: 1px solid var(--td_grid_border_color, #ededed); padding: 2px 8px; } .wp-block table td, .wp-block .wp-block-freeform table td { border: 1px solid var(--td_grid_border_color, #ededed); padding: 2px 8px; } .wp-block table .odd td, .wp-block .wp-block-freeform table .odd td { background-color: #fcfcfc; } .wp-block h1, .wp-block .wp-block-freeform h1, .wp-block h2, .wp-block .wp-block-freeform h2, .wp-block h3, .wp-block .wp-block-freeform h3, .wp-block h4, .wp-block .wp-block-freeform h4, .wp-block h5, .wp-block .wp-block-freeform h5, .wp-block h6, .wp-block .wp-block-freeform h6 { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); font-weight: 400; margin: 6px 0; } .wp-block h1 > a, .wp-block .wp-block-freeform h1 > a, .wp-block h2 > a, .wp-block .wp-block-freeform h2 > a, .wp-block h3 > a, .wp-block .wp-block-freeform h3 > a, .wp-block h4 > a, .wp-block .wp-block-freeform h4 > a, .wp-block h5 > a, .wp-block .wp-block-freeform h5 > a, .wp-block h6 > a, .wp-block .wp-block-freeform h6 > a { color: var(--td_text_color, #111111); } .wp-block h1, .wp-block .wp-block-freeform h1 { font-size: 32px; line-height: 40px; margin-top: 33px; margin-bottom: 23px; } .wp-block h2, .wp-block .wp-block-freeform h2 { font-size: 27px; line-height: 38px; margin-top: 30px; margin-bottom: 20px; } .wp-block h3, .wp-block .wp-block-freeform h3 { font-size: 22px; line-height: 30px; margin-top: 27px; margin-bottom: 17px; } .wp-block h4, .wp-block .wp-block-freeform h4 { font-size: 19px; line-height: 29px; margin-top: 24px; margin-bottom: 14px; } .wp-block h5, .wp-block .wp-block-freeform h5 { font-size: 17px; line-height: 25px; margin-top: 21px; margin-bottom: 11px; } .wp-block h6, .wp-block .wp-block-freeform h6 { font-size: 16px; line-height: 24px; margin-top: 21px; margin-bottom: 11px; } .wp-block .td_btn, .wp-block .wp-block-freeform .td_btn { cursor: pointer; display: inline-block; position: relative; color: white; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 600; } .wp-block .td_btn_sm, .wp-block .wp-block-freeform .td_btn_sm { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .wp-block .td_btn_sm.td_round_btn, .wp-block .wp-block-freeform .td_btn_sm.td_round_btn { border-radius: 3px; } .wp-block .td_btn_md, .wp-block .wp-block-freeform .td_btn_md { padding: 9px 12px; font-size: 16px; line-height: 20px; } .wp-block .td_btn_md.td_round_btn, .wp-block .wp-block-freeform .td_btn_md.td_round_btn { border-radius: 4px; } .wp-block .td_btn_lg, .wp-block .wp-block-freeform .td_btn_lg { padding: 10px 16px; font-size: 18px; line-height: 1.33; } .wp-block .td_btn_lg.td_round_btn, .wp-block .wp-block-freeform .td_btn_lg.td_round_btn { border-radius: 6px; } .wp-block .td_default_btn, .wp-block .wp-block-freeform .td_default_btn, .wp-block .td_round_btn, .wp-block .wp-block-freeform .td_round_btn { transition: background-color 0.1s ease; -webkit-transition: background-color 0.1s ease; background-color: var(--td_theme_color, #4db2ec); } .wp-block .td_default_btn:hover, .wp-block .wp-block-freeform .td_default_btn:hover, .wp-block .td_round_btn:hover, .wp-block .wp-block-freeform .td_round_btn:hover { background-color: #444; } .wp-block .td_default_btn:active, .wp-block .wp-block-freeform .td_default_btn:active, .wp-block .td_round_btn:active, .wp-block .wp-block-freeform .td_round_btn:active { background-color: #000; } .wp-block .td_outlined_btn, .wp-block .wp-block-freeform .td_outlined_btn { border-width: 2px; border-style: solid; border-color: var(--td_theme_color, #4db2ec); border-radius: 4px; color: var(--td_theme_color, #4db2ec); background-color: transparent; transition: all 0.1s ease ; -webkit-transition: all 0.1s ease; } .wp-block .td_outlined_btn:hover, .wp-block .wp-block-freeform .td_outlined_btn:hover { background-color: var(--td_theme_color, #4db2ec); color: #fff; } .wp-block .td_outlined_btn:active, .wp-block .wp-block-freeform .td_outlined_btn:active { background-color: #444 !important; border-color: #444; } .wp-block .td_shadow_btn, .wp-block .wp-block-freeform .td_shadow_btn { background-color: var(--td_theme_color, #4db2ec); top: 0; -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); transition: top 0.1s ease; -webkit-transition: top 0.1s ease; } .wp-block .td_shadow_btn:hover, .wp-block .wp-block-freeform .td_shadow_btn:hover { top: -3px; -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); } .wp-block .td_shadow_btn:active, .wp-block .wp-block-freeform .td_shadow_btn:active { background-color: #444 !important; } .wp-block .td_3D_btn, .wp-block .wp-block-freeform .td_3D_btn { background-color: var(--td_theme_color, #4db2ec); top: 0; transition: top 0.1s ease; -webkit-transition: top 0.1s ease; } .wp-block .td_3D_btn:after, .wp-block .wp-block-freeform .td_3D_btn:after { content: ""; position: absolute; display: block; left: 0; top: 100%; width: 100%; height: 5px; background-color: rgba(0, 0, 0, 0.25); z-index: 0; transition: height 0.1s ease; -webkit-transition: height 0.1s ease; } .wp-block .td_3D_btn:hover, .wp-block .wp-block-freeform .td_3D_btn:hover { top: 5px; } .wp-block .td_3D_btn:hover:before, .wp-block .wp-block-freeform .td_3D_btn:hover:before { height: 0; } .wp-block .td_3D_btn:hover:after, .wp-block .wp-block-freeform .td_3D_btn:hover:after { height: 0; } .wp-block .td_3D_btn:active, .wp-block .wp-block-freeform .td_3D_btn:active { background-color: #444 !important; } .wp-block .td_text_columns_two_cols, .wp-block .wp-block-freeform .td_text_columns_two_cols { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; -webkit-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; -webkit-column-rule-style: solid; -moz-column-rule-style: solid; column-rule-style: solid; -webkit-column-rule-width: 1px; -moz-column-rule-width: 1px; column-rule-width: 1px; -webkit-column-rule-color: #e9e9e9; -moz-column-rule-color: #e9e9e9; column-rule-color: #e9e9e9; margin-bottom: 26px; } .wp-block .td_text_highlight_0, .wp-block .wp-block-freeform .td_text_highlight_0 { background-color: rgba(0, 0, 0, 0.77); padding: 5px 0 6px 0; margin: 0 8px 0 8px; box-shadow: 8px 0 0 rgba(0, 0, 0, 0.77), -8px 0 0 rgba(0, 0, 0, 0.77); color: #2a2a2a; -webkit-transition: color 400ms; transition: color 400ms; } .wp-block .td_text_highlight_0:hover, .wp-block .wp-block-freeform .td_text_highlight_0:hover { color: #F9F9F9; cursor: default; } .wp-block .td_text_highlight_marker, .wp-block .wp-block-freeform .td_text_highlight_marker { padding: 5px 0 6px 0; margin: 0 8px 0 8px; line-height: 1.74; color: white; -webkit-transition: color 400ms; transition: color 400ms; } .wp-block .td_text_highlight_marker:hover, .wp-block .wp-block-freeform .td_text_highlight_marker:hover { color: #F9F9F9; } .wp-block .td_text_highlight_marker_red, .wp-block .wp-block-freeform .td_text_highlight_marker_red { background-color: rgba(255, 28, 26, 0.62); box-shadow: 8px 0 0 rgba(255, 28, 26, 0.62), -8px 0 0 rgba(255, 28, 26, 0.62); } .wp-block .td_text_highlight_marker_blue, .wp-block .wp-block-freeform .td_text_highlight_marker_blue { background-color: rgba(57, 213, 255, 0.75); box-shadow: 8px 0 0 rgba(57, 213, 255, 0.75), -8px 0 0 rgba(57, 213, 255, 0.75); } .wp-block .td_text_highlight_marker_green, .wp-block .wp-block-freeform .td_text_highlight_marker_green { background-color: rgba(77, 216, 69, 0.65); box-shadow: 8px 0 0 rgba(77, 216, 69, 0.65), -8px 0 0 rgba(77, 216, 69, 0.65); } .wp-block .td_text_highlight_marker_yellow, .wp-block .wp-block-freeform .td_text_highlight_marker_yellow { background-color: rgba(255, 203, 0, 0.75); box-shadow: 8px 0 0 rgba(255, 203, 0, 0.75), -8px 0 0 rgba(255, 203, 0, 0.75); } .wp-block .td_text_highlight_marker_pink, .wp-block .wp-block-freeform .td_text_highlight_marker_pink { background-color: rgba(255, 101, 243, 0.75); box-shadow: 8px 0 0 rgba(255, 101, 243, 0.75), -8px 0 0 rgba(255, 101, 243, 0.75); } .wp-block textarea, .wp-block .wp-block-freeform textarea { font-size: 12px; line-height: 21px; color: #444; border: 1px solid #e1e1e1; width: 100%; max-width: 100%; height: 168px; min-height: 168px; padding: 6px 9px 6px 9px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block textarea, .wp-block .wp-block-freeform textarea { font-size: 16px; } } .wp-block textarea:active, .wp-block .wp-block-freeform textarea:active, .wp-block textarea:focus, .wp-block .wp-block-freeform textarea:focus { border-color: #b0b0b0 !important; } .wp-block textarea:focus, .wp-block .wp-block-freeform textarea:focus, .wp-block input:focus, .wp-block .wp-block-freeform input:focus, .wp-block input[type]:focus, .wp-block .wp-block-freeform input[type]:focus { outline: 0 none; } .wp-block input[type=submit], .wp-block .wp-block-freeform input[type=submit] { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; background-color: var(--td_black, #222222); border-radius: 0; color: #fff; border: none; padding: 8px 15px; font-weight: 500; -webkit-transition: background-color 0.4s; transition: background-color 0.4s; } .wp-block input[type=submit]:hover, .wp-block .wp-block-freeform input[type=submit]:hover { background-color: var(--td_theme_color, #4db2ec); } .wp-block input[type=text], .wp-block .wp-block-freeform input[type=text], .wp-block input[type=url], .wp-block .wp-block-freeform input[type=url], .wp-block input[type=tel], .wp-block .wp-block-freeform input[type=tel], .wp-block input[type=email], .wp-block .wp-block-freeform input[type=email] { font-size: 12px; line-height: 21px; color: #444; border: 1px solid #e1e1e1; width: 100%; max-width: 100%; height: 34px; padding: 3px 9px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block input[type=text], .wp-block .wp-block-freeform input[type=text], .wp-block input[type=url], .wp-block .wp-block-freeform input[type=url], .wp-block input[type=tel], .wp-block .wp-block-freeform input[type=tel], .wp-block input[type=email], .wp-block .wp-block-freeform input[type=email] { font-size: 16px; } } .wp-block input[type=text]:active, .wp-block .wp-block-freeform input[type=text]:active, .wp-block input[type=url]:active, .wp-block .wp-block-freeform input[type=url]:active, .wp-block input[type=tel]:active, .wp-block .wp-block-freeform input[type=tel]:active, .wp-block input[type=email]:active, .wp-block .wp-block-freeform input[type=email]:active, .wp-block input[type=text]:focus, .wp-block .wp-block-freeform input[type=text]:focus, .wp-block input[type=url]:focus, .wp-block .wp-block-freeform input[type=url]:focus, .wp-block input[type=tel]:focus, .wp-block .wp-block-freeform input[type=tel]:focus, .wp-block input[type=email]:focus, .wp-block .wp-block-freeform input[type=email]:focus { border-color: #b0b0b0 !important; } .wp-block input[type=password], .wp-block .wp-block-freeform input[type=password] { width: 100%; position: relative; top: 0; display: inline-table; vertical-align: middle; font-size: 12px; line-height: 21px; color: #444; border: 1px solid #ccc; max-width: 100%; height: 34px; padding: 3px 9px; margin-bottom: 10px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block input[type=password], .wp-block .wp-block-freeform input[type=password] { font-size: 16px; } } .wp-block img, .wp-block .wp-block-freeform img { margin-bottom: 21px; } .wp-block figure img, .wp-block .wp-block-freeform figure img { margin-bottom: 0; } .wp-block .alignnone, .wp-block .wp-block-freeform .alignnone { display: inline-block; margin: 0 5px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .alignnone, .wp-block .wp-block-freeform .alignnone { margin: 0 10px 0 0; } } .wp-block .wp-caption-text, .wp-block .wp-block-freeform .wp-caption-text, .wp-block .wp-caption-dd, .wp-block .wp-block-freeform .wp-caption-dd { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-align: left; margin: 6px 0 26px 0; font-size: 11px; font-style: italic; font-weight: normal; line-height: 17px; color: #444; } .wp-block .wp-caption, .wp-block .wp-block-freeform .wp-caption { text-align: center; max-width: 100%; } .wp-block .wp-caption img, .wp-block .wp-block-freeform .wp-caption img { max-width: 100% !important; } .wp-block .alignnone, .wp-block .wp-block-freeform .alignnone { margin-top: 0; } .wp-block .aligncenter, .wp-block .wp-block-freeform .aligncenter { text-align: center; clear: both; display: block; margin-left: auto; margin-right: auto; margin-top: 6px; margin-bottom: 6px; } .wp-block img.td-center, .wp-block .wp-block-freeform img.td-center { position: relative; left: 50%; transform: translateX(-50%); max-width: 100vw !important; width: auto !important; margin-left: 0 !important; margin-right: 0 !important; } .wp-block figure.alignright, .wp-block .wp-block-freeform figure.alignright, .wp-block figure.alignleft, .wp-block .wp-block-freeform figure.alignleft, .wp-block figure.aligncenter, .wp-block .wp-block-freeform figure.aligncenter { margin-bottom: 0; } .wp-block .alignleft:not(.td-post-image-left), .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) { float: left; margin-top: 6px; margin-right: 24px; margin-bottom: 6px !important; /* hack for tinyMCE / post content diffs*/ margin-left: 0; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone - just a bit, after 500px we make it non float */ /* responsive phone CUSTOM - align the image on center */ } @media (min-width: 1019px) and (max-width: 1140px) { .wp-block .alignleft:not(.td-post-image-left), .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) { max-width: 312px; margin-right: 21px; } } @media (min-width: 768px) and (max-width: 1018px) { .wp-block .alignleft:not(.td-post-image-left), .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) { max-width: 220px; margin-right: 21px; } } @media (max-width: 767px) { .wp-block .alignleft:not(.td-post-image-left), .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) { max-width: 220px; margin-right: 21px; } } @media (max-width: 500px) { .wp-block .alignleft:not(.td-post-image-left), .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) { float: none; text-align: center; margin-left: auto; margin-right: auto; max-width: 100%; margin-bottom: 21px; } .wp-block .alignleft:not(.td-post-image-left) img, .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) img { text-align: center; margin-left: auto; margin-right: auto; } .wp-block .alignleft:not(.td-post-image-left) figcaption, .wp-block .wp-block-freeform .alignleft:not(.td-post-image-left) figcaption { text-align: center; } } .wp-block .alignright:not(.td-post-image-right), .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) { float: right; margin-top: 6px; margin-right: 0; margin-bottom: 6px !important; /* hack for tinyMCE / post content diffs*/ margin-left: 24px; /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone - just a bit, after 500px we make it non float */ /* responsive phone CUSTOM - align the image on center */ } @media (min-width: 1019px) and (max-width: 1140px) { .wp-block .alignright:not(.td-post-image-right), .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) { max-width: 312px; margin-left: 21px; } } @media (min-width: 768px) and (max-width: 1018px) { .wp-block .alignright:not(.td-post-image-right), .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) { max-width: 220px; margin-left: 21px; } } @media (max-width: 767px) { .wp-block .alignright:not(.td-post-image-right), .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) { max-width: 220px; margin-left: 21px; } } @media (max-width: 500px) { .wp-block .alignright:not(.td-post-image-right), .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) { float: none; text-align: center; margin-left: auto; margin-right: auto; max-width: 100%; margin-bottom: 21px; } .wp-block .alignright:not(.td-post-image-right) img, .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) img { text-align: center; margin-left: auto; margin-right: auto; } .wp-block .alignright:not(.td-post-image-right) figcaption, .wp-block .wp-block-freeform .alignright:not(.td-post-image-right) figcaption { text-align: center; } } .wp-block li[style="text-align: center;"], .wp-block .wp-block-freeform li[style="text-align: center;"], .wp-block li[style="text-align: right;"], .wp-block .wp-block-freeform li[style="text-align: right;"] { list-style-position: inside; margin-left: -21px; } .wp-block .td-arrow-list, .wp-block .wp-block-freeform .td-arrow-list { list-style: none; margin-left: 16px; } .wp-block .td-arrow-list li:before, .wp-block .wp-block-freeform .td-arrow-list li:before { font-family: 'newspaper', sans-serif; content: '\e803'; float: left; margin-left: -16px; line-height: 26px; font-size: 14px; } .wp-block .wp-block-quote, .wp-block .wp-block-freeform .wp-block-quote { padding: 0; position: relative; border-left: none; margin: 40px 5% 38px 5%; font-style: italic; text-align: center; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .wp-block-quote, .wp-block .wp-block-freeform .wp-block-quote { margin: 20px 3% 18px 3%; } } .wp-block .wp-block-quote p, .wp-block .wp-block-freeform .wp-block-quote p { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 32px; line-height: 40px; font-weight: 400; text-transform: uppercase; color: var(--td_theme_color, #4db2ec); word-wrap: break-word; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .wp-block .wp-block-quote p, .wp-block .wp-block-freeform .wp-block-quote p { font-size: 24px; line-height: 32px; } } @media (max-width: 767px) { .wp-block .wp-block-quote p, .wp-block .wp-block-freeform .wp-block-quote p { font-size: 22px; line-height: 30px; } } .wp-block .td_quote_right, .wp-block .wp-block-freeform .td_quote_right { float: right; width: 50%; margin: 21px 0 21px 21px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .td_quote_right, .wp-block .wp-block-freeform .td_quote_right { float: none; width: auto; margin-right: 5%; margin-left: 5%; } } .wp-block .td_quote_left, .wp-block .wp-block-freeform .td_quote_left { float: left; width: 50%; margin: 18px 18px 18px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .td_quote_left, .wp-block .wp-block-freeform .td_quote_left { float: none; width: auto; margin-right: 5%; margin-left: 5%; } } .wp-block .td_quote_left p, .wp-block .wp-block-freeform .td_quote_left p { text-align: left; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .td_quote_left p, .wp-block .wp-block-freeform .td_quote_left p { text-align: center; } } .wp-block .td_quote_box, .wp-block .wp-block-freeform .td_quote_box { margin: 0; background-color: #FCFCFC; border-left: 2px solid var(--td_theme_color, #4db2ec); padding: 15px 23px 0 23px; position: relative; top: 6px; clear: both; } .wp-block .td_quote_box p, .wp-block .wp-block-freeform .td_quote_box p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); color: #777777; font-size: 13px; line-height: 21px; padding-bottom: 16px; margin: 0; text-transform: none; } .wp-block .td_box_left, .wp-block .wp-block-freeform .td_box_left { width: 40%; float: left; margin: 0 34px 20px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .td_box_left, .wp-block .wp-block-freeform .td_box_left { float: none; margin: 0 0 36px 0; width: auto; } } .wp-block .td_box_left p, .wp-block .wp-block-freeform .td_box_left p { text-align: left; } .wp-block .td_box_right, .wp-block .wp-block-freeform .td_box_right { width: 30%; float: right; margin: 0 0 20px 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .td_box_right, .wp-block .wp-block-freeform .td_box_right { float: none; margin: 0 0 36px 0; width: auto; } } .wp-block .td_box_right p, .wp-block .wp-block-freeform .td_box_right p { text-align: left; } .wp-block .td_box_center, .wp-block .wp-block-freeform .td_box_center { margin: 0 0 29px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .td_box_center, .wp-block .wp-block-freeform .td_box_center { margin-bottom: 36px; } } .wp-block .wp-block-pullquote blockquote, .wp-block .wp-block-freeform .wp-block-pullquote blockquote, .wp-block .td_pull_quote, .wp-block .wp-block-freeform .td_pull_quote { padding: 18px 25px; margin: 0; clear: both; } .wp-block .wp-block-pullquote blockquote p, .wp-block .wp-block-freeform .wp-block-pullquote blockquote p, .wp-block .td_pull_quote p, .wp-block .wp-block-freeform .td_pull_quote p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 14px; line-height: 26px; font-weight: 600; text-transform: none; text-align: center; } .wp-block .wp-block-pullquote blockquote p:first-child:before, .wp-block .wp-block-freeform .wp-block-pullquote blockquote p:first-child:before, .wp-block .td_pull_quote p:first-child:before, .wp-block .wp-block-freeform .td_pull_quote p:first-child:before { position: absolute; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALBAMAAABSacpvAAAALVBMVEUAAAC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLRK0HxpAAAADnRSTlMAd+67mWZR3SKqMxGIzB8/1rAAAABlSURBVAjXFcexDQEBAAXQd+KCRm4CDZURFGICMYFadTHBxQQmEDHCzWAI9XGJ8s/ANS95FBvccKwYr5kuUQ/5omm5dpQ9Fu+H2efEPX07Sg62f+bJ2T6pJkmnTi5FslM2L56r9geMACBhjTsodgAAAABJRU5ErkJggg==') no-repeat; left: 0; display: block; content: ''; width: 15px; height: 15px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } .wp-block .wp-block-pullquote blockquote p:after, .wp-block .wp-block-freeform .wp-block-pullquote blockquote p:after, .wp-block .td_pull_quote p:after, .wp-block .wp-block-freeform .td_pull_quote p:after { position: absolute; bottom: 10px; right: 0; display: block; content: ''; width: 15px; height: 15px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALBAMAAABSacpvAAAALVBMVEUAAAC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLRK0HxpAAAADnRSTlMA3ZnuqndmIhG7VYhEMzOiL2oAAABkSURBVAjXY+D1E2PgULZuYGB89+4A07t3AQzn3r1T4Hv3ToCh7t27CUDRBwxAYQe2d+8MGBiuAuWr5BwYGBjeFTAwzEtgYOB6xMDA8RAowGnOwMD6CsjIA4oWKwBFXYGcLQ0MAFHHH+tW1OhlAAAAAElFTkSuQmCC') no-repeat; } .wp-block .wp-block-pullquote blockquote, .wp-block .wp-block-freeform .wp-block-pullquote blockquote, .wp-block .td_pull_center, .wp-block .wp-block-freeform .td_pull_center { margin: 17px 0; padding: 15px 50px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .wp-block-pullquote blockquote, .wp-block .wp-block-freeform .wp-block-pullquote blockquote, .wp-block .td_pull_center, .wp-block .wp-block-freeform .td_pull_center { padding: 15px 20px; } } .wp-block.wp-block-pullquote, .wp-block .wp-block-freeform.wp-block-pullquote { padding: 0; color: var(--td_theme_color, #4db2ec); } .wp-block.wp-block-pullquote.has-text-color p, .wp-block .wp-block-freeform.wp-block-pullquote.has-text-color p, .wp-block.wp-block-pullquote.has-text-color .wp-block-pullquote__citation, .wp-block .wp-block-freeform.wp-block-pullquote.has-text-color .wp-block-pullquote__citation { color: inherit; } .wp-block.wp-block-pullquote .wp-block-pullquote__citation, .wp-block .wp-block-freeform.wp-block-pullquote .wp-block-pullquote__citation { color: #6c7781; font-size: 13px; margin-top: 1em; position: relative; font-style: normal; text-transform: none; } .wp-block .wp-block-pullquote.alignleft, .wp-block .wp-block-freeform .wp-block-pullquote.alignleft, .wp-block .td_pull_left, .wp-block .wp-block-freeform .td_pull_left { width: 40%; margin-right: 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .wp-block-pullquote.alignleft, .wp-block .wp-block-freeform .wp-block-pullquote.alignleft, .wp-block .td_pull_left, .wp-block .wp-block-freeform .td_pull_left { float: none; margin: 0 0 30px 0; width: auto; } } .wp-block .td_pull_left, .wp-block .wp-block-freeform .td_pull_left { float: left; } .wp-block .wp-block-pullquote.alignright, .wp-block .wp-block-freeform .wp-block-pullquote.alignright, .wp-block .td_pull_right, .wp-block .wp-block-freeform .td_pull_right { width: 30%; margin-left: 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .wp-block .wp-block-pullquote.alignright, .wp-block .wp-block-freeform .wp-block-pullquote.alignright, .wp-block .td_pull_right, .wp-block .wp-block-freeform .td_pull_right { float: none; margin: 0 0 30px 0; width: auto; } } .wp-block .td_pull_right, .wp-block .wp-block-freeform .td_pull_right { float: right; } .wp-block .wp-block-pullquote.alignleft, .wp-block .wp-block-freeform .wp-block-pullquote.alignleft, .wp-block .wp-block-pullquote.alignright, .wp-block .wp-block-freeform .wp-block-pullquote.alignright { margin-top: 0; margin-bottom: 0 !important; /* responsive portrait phone */ } .wp-block .wp-block-pullquote.alignleft blockquote, .wp-block .wp-block-freeform .wp-block-pullquote.alignleft blockquote, .wp-block .wp-block-pullquote.alignright blockquote, .wp-block .wp-block-freeform .wp-block-pullquote.alignright blockquote { margin-top: 0; margin-bottom: 0; padding: 0; } @media (max-width: 767px) { .wp-block .wp-block-pullquote.alignleft, .wp-block .wp-block-freeform .wp-block-pullquote.alignleft, .wp-block .wp-block-pullquote.alignright, .wp-block .wp-block-freeform .wp-block-pullquote.alignright { max-width: 100%; } } .wp-block .wp-block-pullquote.is-style-solid-color blockquote, .wp-block .wp-block-freeform .wp-block-pullquote.is-style-solid-color blockquote { max-width: 100%; } .wp-block blockquote small, .wp-block .wp-block-freeform blockquote small { margin-top: 5px; display: block; font-size: 13px; font-style: italic; font-weight: normal; text-transform: none; color: #444; } .wp-block blockquote.pull-right, .wp-block .wp-block-freeform blockquote.pull-right { padding-left: 20px; border-right: none; } .wp-block blockquote.pull-right:after, .wp-block .wp-block-freeform blockquote.pull-right:after { border-right: 2px solid #FB5502; width: 40px; right: -40px; } .wp-block .dropcap, .wp-block .wp-block-freeform .dropcap { float: left; display: block; font-size: 50px; line-height: 56px; background-color: var(--td_theme_color, #4db2ec); color: white; text-align: center; margin: 9px 13px 0 0; padding: 2px 10px 4px; font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-transform: uppercase; min-width: 62px; min-height: 62px; } .wp-block .dropcap1, .wp-block .wp-block-freeform .dropcap1 { -webkit-border-radius: 70px; -moz-border-radius: 70px; border-radius: 70px; font-size: 40px; padding: 2px 14px 4px; } .wp-block .dropcap2, .wp-block .wp-block-freeform .dropcap2 { background-color: transparent !important; color: #4B4B4B; font-size: 79px; line-height: 69px; margin: 0 9px 0 0; padding: 0 13px 0 0; } .wp-block .dropcap3, .wp-block .wp-block-freeform .dropcap3 { background-color: transparent !important; color: #4B4B4B; font-weight: bold; font-size: 79px; line-height: 69px; margin: 0 9px 0 0; padding: 0 13px 0 0; } .td-text-highlight-color { border-right: 2px solid black; } /* ---------------------------------------------------------------------------- custom post padding */ .td-paragraph-padding-0 { display: block; padding-left: 0; padding-right: 11%; } .td-paragraph-padding-1 { display: block; padding-left: 11%; padding-right: 11%; } .td-paragraph-padding-2 { display: block; padding-left: 17.5%; padding-right: 17.5%; } .td-paragraph-padding-3 { display: block; padding-left: 11%; padding-right: 17.5%; } .td-paragraph-padding-4 { display: block; padding-left: 11%; padding-right: 0; } .td-paragraph-padding-5 { display: block; padding-left: 22.5%; padding-right: 22.5%; } .td-paragraph-padding-6 { display: block; padding-left: 17.5%; padding-right: 11%; } .td-pb-span8 .td-paragraph-padding-0, .mceContentBody-max-width-small .td-paragraph-padding-0 { padding-right: 3%; } .td-pb-span8 .td-paragraph-padding-1, .mceContentBody-max-width-small .td-paragraph-padding-1 { padding-left: 3%; padding-right: 3%; } .td-pb-span8 .td-paragraph-padding-2, .mceContentBody-max-width-small .td-paragraph-padding-2 { padding-left: 8.5%; padding-right: 8.5%; } .td-pb-span8 .td-paragraph-padding-3, .mceContentBody-max-width-small .td-paragraph-padding-3 { padding-left: 3%; padding-right: 8.5%; } .td-pb-span8 .td-paragraph-padding-4, .mceContentBody-max-width-small .td-paragraph-padding-4 { padding-left: 3%; } .td-pb-span8 .td-paragraph-padding-5, .mceContentBody-max-width-small .td-paragraph-padding-5 { padding-left: 10.5%; padding-right: 10.5%; } .td-pb-span8 .td-paragraph-padding-6, .mceContentBody-max-width-small .td-paragraph-padding-6 { padding-left: 8.5%; padding-right: 3%; } /* responsive phone */ @media (max-width: 500px) { .td-paragraph-padding-0, .td-paragraph-padding-1, .td-paragraph-padding-2, .td-paragraph-padding-3, .td-paragraph-padding-4, .td-paragraph-padding-5, .td-paragraph-padding-6 { padding-left: 10px !important; padding-right: 10px !important; } } .is-root-container h1, .is-root-container h2, .is-root-container h3, .is-root-container h4, .is-root-container h5, .is-root-container h6 { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); font-weight: 400; } .is-root-container h1 > a, .is-root-container h2 > a, .is-root-container h3 > a, .is-root-container h4 > a, .is-root-container h5 > a, .is-root-container h6 > a { color: var(--td_text_color, #111111); } .is-root-container h1 { font-size: 32px; line-height: 40px; margin-top: 33px; margin-bottom: 23px; } .is-root-container h2 { font-size: 27px; line-height: 38px; margin-top: 30px; margin-bottom: 20px; } .is-root-container h3 { font-size: 22px; line-height: 30px; margin-top: 27px; margin-bottom: 17px; } .is-root-container h4 { font-size: 19px; line-height: 29px; margin-top: 24px; margin-bottom: 14px; } .is-root-container h5 { font-size: 17px; line-height: 25px; margin-top: 21px; margin-bottom: 11px; } .is-root-container h6 { font-size: 16px; line-height: 24px; margin-top: 21px; margin-bottom: 11px; } @font-face { font-family: 'newspaper'; src: url('images/icons/newspaper.eot?24'); src: url('images/icons/newspaper.eot?24#iefix') format('embedded-opentype'), url('images/icons/newspaper.woff?24') format('woff'), url('images/icons/newspaper.ttf?24') format('truetype'), url('images/icons/newspaper.svg?24#newspaper') format('svg'); font-weight: normal; font-style: normal; font-display: swap; } [class^="td-icon-"]:before, [class*=" td-icon-"]:before { font-family: 'newspaper'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; text-align: center; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [class*="td-icon-"] { line-height: 1; text-align: center; display: inline-block; } .td-icon-logout:before { content: '\e800'; } .td-icon-down:before { content: '\e801'; } .td-icon-left:before { content: '\e802'; } .td-icon-right:before { content: '\e803'; } .td-icon-up:before { content: '\e804'; } .td-icon-views:before { content: '\e805'; } .td-icon-menu-down:before { content: '\e806'; } .td-icon-left-arrow:before { content: '\e807'; } .td-icon-right-arrow:before { content: '\e808'; } .td-icon-menu-up:before { content: '\e809'; } .td-icon-search:before { content: '\e80a'; } .td-icon-user:before { content: '\e80b'; } .td-icon-menu-left:before { content: '\e80c'; } .td-icon-menu-right:before { content: '\e80d'; } .rtl .td-next-prev-wrap .td-icon-menu-left:before { content: '\e80d'; } .rtl .td-next-prev-wrap .td-icon-menu-right:before { content: '\e80c'; } .td-icon-star:before { content: '\e80f'; } .td-icon-mail:before { content: '\e810'; } .td-icon-behance:before { content: '\e811'; } .td-icon-blogger:before { content: '\e812'; } .td-icon-delicious:before { content: '\e813'; } .td-icon-deviantart:before { content: '\e814'; } .td-icon-digg:before { content: '\e815'; } .td-icon-dribbble:before { content: '\e816'; } .td-icon-evernote:before { content: '\e817'; } .td-icon-facebook:before { content: '\e818'; } .td-icon-flickr:before { content: '\e819'; } .td-icon-forrst:before { content: '\e81a'; } .td-icon-googleplus:before { content: '\e81b'; } .td-icon-instagram:before { content: '\e81d'; } .td-icon-lastfm:before { content: '\e81e'; } .td-icon-linkedin:before { content: '\e81f'; } .td-icon-mail-1:before { content: '\e820'; } .td-icon-myspace:before { content: '\e821'; } .td-icon-path:before { content: '\e822'; } .td-icon-paypal:before { content: '\e823'; } .td-icon-pinterest:before { content: '\e825'; } .td-icon-reddit:before { content: '\e827'; } .td-icon-rss:before { content: '\e828'; } .td-icon-share:before { content: '\e829'; } .td-icon-skype:before { content: '\e82a'; } .td-icon-soundcloud:before { content: '\e82b'; } .td-icon-spotify:before { content: '\e82c'; } .td-icon-stackoverflow:before { content: '\e82d'; } .td-icon-steam:before { content: '\e82e'; } .td-icon-stumbleupon:before { content: '\e82f'; } .td-icon-tumblr:before { content: '\e830'; } .td-icon-twitter:before { content: '\e831'; } .td-icon-vimeo:before { content: '\e832'; } .td-icon-windows:before { content: '\e833'; } .td-icon-wordpress:before { content: '\e834'; } .td-icon-yahoo:before { content: '\e835'; } .td-icon-youtube:before { content: '\e836'; } .td-icon-vk:before { content: '\e837'; } .td-icon-grooveshark:before { content: '\e838'; } .td-icon-star-empty:before { content: '\e839'; } .td-icon-star-half:before { content: '\e83a'; } .td-icon-close:before { content: '\e83c'; } .td-icon-read-down:before { content: '\e83d'; } .td-icon-comments:before { content: "\e83b"; } .td-icon-mobile:before { content: '\e83e'; } .td-icon-whatsapp:before { content: '\f232'; } .td-icon-website:before { content: '\f232'; } .td-icon-commenting:before { content: '\f27a'; } .td-icon-close-mobile:before { content: '\e900'; } .td-icon-modal-back:before { content: '\e901'; } .td-icon-modal-close:before { content: '\e902'; } .td-icon-category:before { content: '\e903'; } .td-icon-block-header:before { content: '\e904'; } .td-icon-home:before { content: '\e905'; } .td-icon-print:before { content: '\f02f'; } .td-icon-telegram:before { content: '\f2c6'; } .td-icon-line:before { content: '\e906'; } .td-icon-viber:before { content: '\e907'; } .td-icon-plus:before { content: '\ea0a'; } .td-icon-minus:before { content: '\ea0b'; } .td-icon-dailymotion:before { content: '\e908'; } .td-icon-twitch:before { content: '\e909'; } .td-icon-xing:before { content: '\e90a'; } .td-icon-ebay:before { content: '\e90b'; } .td-icon-acolade:before { content: "\e90c"; } .td-icon-backslash:before { content: "\e90d"; } .td-icon-bracket-square:before { content: "\e90e"; } .td-icon-circle:before { content: "\e90f"; } .td-icon-circle-full:before { content: "\e910"; } .td-icon-circle-line:before { content: "\e911"; } .td-icon-circless:before { content: "\e912"; } .td-icon-comma-round:before { content: "\e913"; } .td-icon-comma-square:before { content: "\e914"; } .td-icon-hash:before { content: "\e915"; } .td-icon-linee:before { content: "\e916"; } .td-icon-pluss:before { content: "\e917"; } .td-icon-point-comma-round:before { content: "\e918"; } .td-icon-point-comma-square:before { content: "\e919"; } .td-icon-point-round:before { content: "\e91a"; } .td-icon-point-square:before { content: "\e91b"; } .td-icon-quote-round:before { content: "\e91c"; } .td-icon-quote-square:before { content: "\e91d"; } .td-icon-romb-full:before { content: "\e91e"; } .td-icon-romb-line:before { content: "\e91f"; } .td-icon-romb-round-full:before { content: "\e920"; } .td-icon-romb-round-line:before { content: "\e921"; } .td-icon-rombs:before { content: "\e922"; } .td-icon-slashh:before { content: "\e923"; } .td-icon-star-full:before { content: "\e924"; } .td-icon-star-line:before { content: "\e925"; } .td-icon-translingual:before { content: "\e926"; } .td-icon-upp:before { content: "\e927"; } .td-icon-vertical-line:before { content: "\e928"; } .td-icon-naver:before { content: "\e9d3"; } .td-icon-video-thumb-play:before { content: "\e9d4"; } .td-icon-audio-thumb-play:before { content: "\e9d5"; } .td-icon-cart:before { content: "\f07a"; } .td-icon-tiktok:before { content: "\e9d6"; } .td-icon-yandex:before { content: "\e9d7"; } .td-icon-flipboard:before { content: "\e9d9"; } .td-icon-insta-carousel:before { content: "\e9da"; } .td-icon-check:before { content: "\e9db"; } .td-icon-cart-empty:before { content: "\e9dc"; } .td-icon-profile:before { content: "\e9dd"; } .td-icon-log-out:before { content: "\e9de"; } .td-icon-discord:before { content: "\e9df"; } .td-icon-audio-pause:before { content: "\e9ce"; } .td-icon-audio-play:before { content: "\e9cf"; } .td-icon-audio-speaker:before { content: "\e9d0"; } .td-icon-audio-speaker-mute:before { content: "\e9d1"; } .td-icon-audio-refresh:before { content: "\e9d2"; } .td-icon-medium:before { content: "\e929"; } .td-icon-github:before { content: "\e92a"; } .td-icon-patreon:before { content: "\e92b"; } .td-icon-rumble:before { content: "\e92c"; } .td-icon-clouthub:before { content: "\e92d"; } .td-icon-gab:before { content: "\e92e"; } .td-icon-parler:before { content: "\e92f"; } .td-icon-gettr:before { content: "\e930"; } .td-icon-koo:before { content: "\e937"; } .td-icon-copy_url:before { content: "\e931"; } .td-icon-user-rev-star-empty:before { content: "\e932"; } .td-icon-user-rev-star-half:before { content: "\e933"; } .td-icon-user-rev-star-full:before { content: "\e934"; } .td-icon-kakao:before { content: "\e935"; } .td-icon-strava:before { content: "\e936"; } .td-icon-website:before { content: "\e938"; } .td-icon-bluesky:before { content: "\e93a"; } .td-icon-mastodon:before { content: "\e93b"; } .td-icon-threads:before { content: "\e93c"; } .td-social-icon-wrap:hover .td-icon-font { -webkit-transition: color 0.3s; transition: color 0.3s; color: #fff; } .td-social-icon-wrap:hover i.td-icon-behance { color: #000000; } .td-social-icon-wrap:hover i.td-icon-blogger { color: #ffa900; } .td-social-icon-wrap:hover i.td-icon-delicious { color: #3399ff; } .td-social-icon-wrap:hover i.td-icon-deviantart { color: #4e6252; } .td-social-icon-wrap:hover i.td-icon-digg { color: #000000; } .td-social-icon-wrap:hover i.td-icon-dribbble { color: #ea4c89; } .td-social-icon-wrap:hover i.td-icon-evernote { color: #07c257; } .td-social-icon-wrap:hover i.td-icon-facebook { color: #3B5998; } .td-social-icon-wrap:hover i.td-icon-flickr { color: #ff0084; } .td-social-icon-wrap:hover i.td-icon-forrst { color: #3b7140; } .td-social-icon-wrap:hover i.td-icon-googleplus { color: #dd4b39; } .td-social-icon-wrap:hover i.td-icon-grooveshark { color: #f77f00; } .td-social-icon-wrap:hover i.td-icon-instagram { color: #3f729b; } .td-social-icon-wrap:hover i.td-icon-lastfm { color: #ce2127; } .td-social-icon-wrap:hover i.td-icon-linkedin { color: #007bb6; } .td-social-icon-wrap:hover i.td-icon-mail { color: #000000; } .td-social-icon-wrap:hover i.td-icon-myspace { color: #000000; } .td-social-icon-wrap:hover i.td-icon-path { color: #e62f17; } .td-social-icon-wrap:hover i.td-icon-paypal { color: #009cde; } .td-social-icon-wrap:hover i.td-icon-pinterest { color: #cb2027; } .td-social-icon-wrap:hover i.td-icon-reddit { color: #ff4100; } .td-social-icon-wrap:hover i.td-icon-rss { color: #f36f24; } .td-social-icon-wrap:hover i.td-icon-share { color: #000000; } .td-social-icon-wrap:hover i.td-icon-skype { color: #01aef2; } .td-social-icon-wrap:hover i.td-icon-soundcloud { color: #ff5500; } .td-social-icon-wrap:hover i.td-icon-spotify { color: #81b900; } .td-social-icon-wrap:hover i.td-icon-stackoverflow { color: #000000; } .td-social-icon-wrap:hover i.td-icon-steam { color: #000000; } .td-social-icon-wrap:hover i.td-icon-stumbleupon { color: #eb4923; } .td-social-icon-wrap:hover i.td-icon-tumblr { color: #32506d; } .td-social-icon-wrap:hover i.td-icon-twitter { color: #00aced; } .td-social-icon-wrap:hover i.td-icon-vimeo { color: #5289cc; } .td-social-icon-wrap:hover i.td-icon-vk { color: #45668e; } .td-social-icon-wrap:hover i.td-icon-windows { color: #319de5; } .td-social-icon-wrap:hover i.td-icon-wordpress { color: #222222; } .td-social-icon-wrap:hover i.td-icon-yahoo { color: #720e9e; } .td-social-icon-wrap:hover i.td-icon-youtube { color: #bb0000; } .td-social-icon-wrap:hover i.td-icon-dailymotion { color: #41bafc; } .td-social-icon-wrap:hover i.td-icon-twitch { color: #4a377d; } .td-social-icon-wrap:hover i.td-icon-xing { color: #1e6567; } .td-social-icon-wrap:hover i.td-icon-ebay { color: #db2e32; } .td-social-icon-wrap:hover i.td-icon-telegram { color: #3b9de1; } .td-social-icon-wrap:hover i.td-icon-naver { color: #3ec729; } .td-social-icon-wrap:hover i.td-icon-tiktok { color: #009191; } .td-social-icon-wrap:hover i.td-icon-yandex { color: #ff0000; } .td-social-icon-wrap:hover i.td-icon-flipboard { color: #f52828; } .td-social-icon-wrap:hover i.td-icon-discord { color: #7289DA; } .td-social-icon-wrap:hover i.td-icon-whatsapp { color: #7bbf6a; } .td-social-icon-wrap:hover i.td-icon-website { color: #000000; } .td-social-icon-wrap:hover i.td-icon-bluesky { color: #08f; } .td-social-icon-wrap:hover i.td-icon-mastodon { color: #6161ff; } .td-social-icon-wrap:hover i.td-icon-threads { color: #000000; } .mx_image_background { background-color: #f2f2f2; } .td-visibility-hidden { visibility: hidden; } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } /* usage: .td-block-row { .mx-row(td-block-span); } @all_span_selector - is the begining of the span selector */ .gutenberg-editor-page #postcustomstuff table textarea { min-height: 40px; height: 40px; } .editor-styles-wrapper .wp-block { max-width: 1068px; } .editor-styles-wrapper .wp-block:not(p.has-background):not(pre) { padding-left: 0; padding-right: 0; } .editor-styles-wrapper .wp-block .block-editor-block-list__block-edit { margin-left: 0; margin-right: 0; } .editor-styles-wrapper .wp-block .wp-block[data-type="core/pullquote"][data-align="left"] .editor-block-list__block-edit, .editor-styles-wrapper .wp-block .wp-block[data-type="core/pullquote"][data-align="right"] .editor-block-list__block-edit { width: 50%; } .editor-styles-wrapper .wp-block:not([data-type="core/separator"]):not([data-type="core/list"]) .block-editor-block-list__block-edit { margin-top: 0; margin-bottom: 0; } .editor-styles-wrapper .wp-block[data-align="center"] .block-editor-block-list__block-edit { margin-top: 6px; margin-bottom: 6px; } .editor-styles-wrapper .wp-block[data-align="left"] .block-editor-block-list__block-edit, .editor-styles-wrapper .wp-block[data-align="right"] .block-editor-block-list__block-edit { margin-top: 6px; margin-bottom: 6px; } .editor-styles-wrapper .wp-block[data-align="left"] > .block-editor-block-list__block-edit { margin-right: 24px; } @media (min-width: 600px) { .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="left"] .wp-block-cover__inner-container .block-editor-block-list__block-edit { margin-right: -28px; } } .editor-styles-wrapper .wp-block[data-align="right"] > .block-editor-block-list__block-edit { margin-left: 24px; } .editor-styles-wrapper .wp-block[data-type="core/categories"]:not([data-align]) .wp-block-categories__post-count { float: right; } .editor-styles-wrapper .wp-block[data-type="core/button"] > .block-editor-block-list__block-edit { margin-bottom: 22px; } .editor-styles-wrapper .wp-block .editor-post-title__input { margin-bottom: 20px; height: auto; min-height: auto; } .editor-styles-wrapper .wp-block.editor-post-title__input { font-size: 32px; } .editor-styles-wrapper pre { background-color: #f1f1f1; padding: 4px 10px; border: none; border-radius: 0; margin-top: 24px; overflow: auto; } .td-gutenberg-editor-small .editor-styles-wrapper .wp-block { max-width: 696px; } body .editor-styles-wrapper { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } body .editor-styles-wrapper .wp-block[data-align="wide"] { max-width: 1400px; margin-left: 0; margin-right: 0; left: 50%; transform: translateX(-50%) !important; } body .editor-styles-wrapper .wp-block[data-align="full"] { position: relative; max-width: 100vw; margin-left: 0; margin-right: 0; padding-left: unset; padding-right: unset; } .wp-block-freeform.block-library-rich-text__tinymce, .wp-block-freeform.block-library-rich-text__tinymce p { font-size: 15px; line-height: 26px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote { border-left: none; box-shadow: none; margin: 40px 5% 38px 5%; padding: 0; } .wp-block-freeform.block-library-rich-text__tinymce blockquote p { line-height: 40px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_right { margin: 21px 0 21px 21px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_left { margin: 18px 18px 18px 0; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_box { border-left: 2px solid #4db2ec; padding: 15px 23px 0 23px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_box p { line-height: 21px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_box.td_box_center { margin: 0 0 29px 0; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_box.td_box_left { margin: 0 34px 20px 0; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_quote_box.td_box_right { margin: 0 0 20px 34px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_pull_quote { padding: 18px 25px; margin: 0; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_pull_quote p { line-height: 26px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_pull_quote.td_pull_center { margin: 17px 0; padding: 15px 50px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_pull_quote.td_pull_left { margin-right: 34px; } .wp-block-freeform.block-library-rich-text__tinymce blockquote.td_pull_quote.td_pull_right { margin-left: 34px; } .wp-block-freeform.block-library-rich-text__tinymce .wp-caption-dt img { margin-bottom: 0; } .wp-block-image figcaption { text-align: left; margin: 6px 0 26px 0; font-size: 11px; font-style: italic; font-weight: normal; line-height: 17px; color: #444; } .wp-block-gallery { margin-bottom: 26px; } .wp-block-gallery figcaption { font-size: 11px; line-height: 17px; } .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption { font-size: 11px; line-height: 17px; } .wp-block-table td, .wp-block-table th { border: 1px solid #ededed; } .wp-block-table .wp-block-table__cell-content { padding: 2px 8px; } .wp-block-quote { border-left: none; box-shadow: none; padding: 0; } .wp-block-quote p { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-weight: 400; text-transform: uppercase; color: #4db2ec; word-wrap: break-word; } .wp-block-quote .wp-block-quote__citation { color: #6c7781; font-size: 13px; margin-top: 1em; position: relative; font-style: normal; } .wp-block-quote:not(.is-large):not(.is-style-large) p { font-size: 32px; line-height: 40px; } .wp-block-quote.is-large p, .wp-block-quote.is-style-large p { font-size: 36px; line-height: 1.2; } .wp-block-quote.is-large .wp-block-quote__citation, .wp-block-quote.is-style-large .wp-block-quote__citation { font-size: 13px; text-align: center; } .editor-block-preview__content .wp-block-quote:not(.is-large):not(.is-style-large) { margin: 0; } .block-editor .wp-block-categories .wp-block-categories__list { padding: 0; } .block-editor .wp-block-categories .wp-block-categories__list, .block-editor .wp-block-categories .wp-block-categories__list ul { list-style-type: none; } .block-editor .wp-block-categories .wp-block-categories__list ul { margin: 5px 0 0; padding-left: 26px; } .block-editor .wp-block-categories .wp-block-categories__list li { margin-left: 0; margin-bottom: 5px; } .block-editor .wp-block-categories .wp-block-categories__list li:last-child { margin-bottom: 0; } .block-editor .wp-block-categories .wp-block-categories__list a { color: #000; } .block-editor .wp-block-categories .wp-block-categories__list a, .block-editor .wp-block-categories .wp-block-categories__list a:hover { text-decoration: none; } .block-editor .wp-block-categories .wp-block-categories__list a:hover { color: #0073aa; } .wp-block-latest-comments .wp-block-latest-comments__comment { display: block; margin: 10px 12px !important; line-height: 21px; padding-bottom: 13px; font-size: 12px; } .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-date { display: block; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 16px; color: #b5b5b5; font-style: italic; margin-bottom: 5px; } .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt p { margin: 5px 0 0; font-size: 14px; line-height: 24px; } .wp-block-latest-comments .wp-block-latest-comments__comment a { color: #222222; font-style: italic; font-size: 11px; font-weight: bold; } .wp-block-latest-comments .wp-block-latest-comments__comment a:hover { color: var(--td_theme_color, #4db2ec); text-decoration: none !important; } .wp-block-latest-posts:not(.is-grid) { padding-left: 0 !important; } .wp-block-latest-posts:not(.is-grid) li { line-height: 30px; list-style: none; margin-left: 12px; margin-bottom: 8px; padding-bottom: 7px; border-bottom: 1px dashed #f1f1f1; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); } .wp-block-latest-posts:not(.is-grid) li:last-child { border-bottom: none; } .wp-block-latest-posts:not(.is-grid) li a { color: #222222; } .wp-block-latest-posts:not(.is-grid) li a:hover { color: var(--td_theme_color, #4db2ec); text-decoration: none !important; } .wp-block-latest-posts:not(.is-grid) .wp-block-latest-posts__post-date { display: block; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 16px; color: #b5b5b5; font-style: italic; margin-bottom: 5px; } .wp-block-button { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 16px; line-height: 20px; font-weight: 600; } .wp-block-button:not(.is-style-outline) .wp-block-button__link { transition: background-color 0.1s ease; -webkit-transition: background-color 0.1s ease; background-color: var(--td_theme_color, #4db2ec); padding: 9px 12px; border-radius: initial; } .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover { background-color: #444 !important; text-decoration: none !important; } .wp-block-button.is-style-outline .wp-block-button__link { border-width: 2px; border-style: solid; color: var(--td_theme_color, #4db2ec); transition: all 0.1s ease; -webkit-transition: all 0.1s ease; } .wp-block-button.is-style-outline .wp-block-button__link:not([class*="has-background"]) { background-color: transparent; } .wp-block-button.is-style-outline .wp-block-button__link:not([class*="has-background"]):hover { background-color: var(--td_theme_color, #4db2ec) !important; } .wp-block-button.is-style-outline .wp-block-button__link:not([class*="has-text-color"]) { border-color: var(--td_theme_color, #4db2ec); } .wp-block-button.is-style-outline .wp-block-button__link:hover { background-color: #444 !important; color: #fff !important; text-decoration: none !important; } .wpseo-metabox-sidebar ul li, .wpseo-metabox-sidebar ol li { margin-left: 0; } style-buddypress.css000064400000063631150211537140010610 0ustar00:root { --td_theme_color: #4db2ec; --td_grid_border_color: #ededed; --td_black: #222; --td_text_color: #111; --td_default_google_font_1: 'Open Sans', 'Open Sans Regular', sans-serif; --td_default_google_font_2: 'Roboto', sans-serif; } /* ---------------------------------------------------------------------------- responsive settings */ /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ /* ---------------------------------------------------------------------------- BuddyPress plugin */ .buddypress hr { border: 0; background-color: #e6e6e6; height: 1px; } .buddypress fieldset { border-color: #e6e6e6; } .td-page-content #buddypress p, .td-page-content #buddypress li { font-size: 13px; line-height: 21px; } #buddypress .activity-list li.load-more a:hover { text-decoration: none; } /* ---------------------------------------------------------------------------- Buttons */ #buddypress input[type=submit], #buddypress input[type=button], #buddypress input[type=reset], #buddypress div.generic-button a, #buddypress .comment-reply-link { border: none; box-shadow: none; color: #fff; background-color: #222; font-size: 11px; padding: 8px 14px; text-shadow: none; line-height: 12px; margin-bottom: 3px; vertical-align: middle; } #buddypress input[type=submit]:hover, #buddypress input[type=button]:hover, #buddypress input[type=reset]:hover, #buddypress div.generic-button a:hover, #buddypress .comment-reply-link:hover, #buddypress input[type=submit]:active, #buddypress input[type=button]:active, #buddypress input[type=reset]:active, #buddypress div.generic-button a:active, #buddypress .comment-reply-link:active, #buddypress input[type=submit]:focus, #buddypress input[type=button]:focus, #buddypress input[type=reset]:focus, #buddypress div.generic-button a:focus, #buddypress .comment-reply-link:focus { background-color: var(--td_theme_color, #4db2ec); color: #fff; border: none; } #buddypress input[type="checkbox"], #buddypress input[type="radio"] { margin-right: 5px; vertical-align: middle; } #buddypress .mce-toolbar .mce-ico { line-height: 30px; height: 28px; } #buddypress .standard-form .wp-editor-container textarea { border: none; font-size: 13px; background-color: transparent; } #buddypress .field-visibility-settings-toggle { margin: 5px 0 0; line-height: 1; } #buddypress div.generic-button.friendship-button a, #buddypress div.generic-button a.join-group, #buddypress div.generic-button a.leave-group, #buddypress div.generic-button a.mention, #buddypress div.generic-button a.send-message { padding: 4px 10px 5px 10px; background-color: #fff; border: 1px solid #ccc; color: #777; cursor: pointer; font-weight: 600; outline: none; text-align: center; text-decoration: none; } #buddypress div.generic-button.friendship-button a:hover, #buddypress div.generic-button a.join-group:hover, #buddypress div.generic-button a.leave-group:hover, #buddypress div.generic-button a.mention:hover, #buddypress div.generic-button a.send-message:hover, #buddypress div.generic-button.friendship-button a:focus, #buddypress div.generic-button a.join-group:focus, #buddypress div.generic-button a.leave-group:focus, #buddypress div.generic-button a.mention:focus, #buddypress div.generic-button a.send-message:focus, #buddypress div.generic-button.friendship-button a:active, #buddypress div.generic-button a.join-group:active, #buddypress div.generic-button a.leave-group:active, #buddypress div.generic-button a.mention:active, #buddypress div.generic-button a.send-message:active { background-color: #222; color: #fff; border-color: #222; } #buddypress .acomment-options a.acomment-reply, #buddypress .acomment-options a.acomment-delete { font-weight: normal; font-size: 11px; border: 1px solid #ccc; padding: 2px 7px 3px 7px; } #buddypress .acomment-options a.acomment-reply:hover, #buddypress .acomment-options a.acomment-delete:hover { background-color: #222; color: #fff; border-color: #222; } #buddypress #item-header-avatar { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { #buddypress #item-header-avatar { width: 100% !important; text-align: center; } } #buddypress #item-header-avatar a { /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { #buddypress #item-header-avatar a { display: inline-block; } #buddypress #item-header-avatar a img { margin: 0 0 20px !important; } } @media (max-width: 767px) { #buddypress #item-header-avatar a { width: 100px; } } #buddypress a.button, a.bp-title-button, #buddypress ul.button-nav li a { font-size: 11px; padding: 6px 8px !important; display: inline-block; margin-bottom: 5px; line-height: 1; } #buddypress a.button:hover, a.bp-title-button:hover, #buddypress ul.button-nav li a:hover, #buddypress a.button:focus, a.bp-title-button:focus, #buddypress ul.button-nav li a:focus, #buddypress a.button:active, a.bp-title-button:active, #buddypress ul.button-nav li a:active { background-color: #222; color: #fff; border-color: #222; } #buddypress a.button:hover span, a.bp-title-button:hover span, #buddypress ul.button-nav li a:hover span, #buddypress a.button:focus span, a.bp-title-button:focus span, #buddypress ul.button-nav li a:focus span, #buddypress a.button:active span, a.bp-title-button:active span, #buddypress ul.button-nav li a:active span { background-color: var(--td_theme_color, #4db2ec); } #buddypress ul.button-nav li.current a { background-color: #222; color: #fff; border-color: #222; } a.bp-title-button { padding: 2px 9px 3px 9px; position: relative; top: -2px; margin-left: 12px; } .entry-crumbs a.bp-title-button { display: none; } #buddypress div.generic-button #new-topic-button { padding: 6px 10px 7px 10px; margin-bottom: 20px; display: inline-block; position: relative; top: -2px; } #buddypress div.generic-button { /* responsive portrait phone */ } @media (max-width: 767px) { #buddypress div.generic-button { margin: 0 !important; } } #buddypress #item-header-cover-image #item-actions { /* responsive portrait phone */ } @media (max-width: 767px) { #buddypress #item-header-cover-image #item-actions { padding-top: 0 !important; } } #buddypress .standard-form #submit:focus, #buddypress .standard-form #save:focus, #group-settings-form input[type=submit]:focus { background-color: var(--td_theme_color, #4db2ec); color: #fff; } #buddypress a.loading, #buddypress input.loading { -webkit-animation: none; -moz-animation: none; border-color: #222; } #buddypress a.bp-primary-action span, #buddypress #reply-title small a span { font-size: 9px; line-height: 9px; padding: 1px 4px; } #buddypress #whats-new-options, #whats-new-post-in-box { overflow: visible; min-height: 43px; } #buddypress .ac-reply-cancel { font-size: 11px; border: 1px solid #ccc; padding: 6px 10px 6px 10px; color: #999; top: 7px; position: relative; } #buddypress .ac-reply-cancel:hover { background-color: #222; color: #fff; border-color: #222; } #buddypress .ac-reply-content .ac-reply-cancel { top: 2px; } #buddypress .ac-reply-content input { font-size: 11px; line-height: 13px; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); } #buddypress div.dir-search input[type=text], #buddypress li.groups-members-search input[type=text] { font-size: 13px; } /* ---------------------------------------------------------------------------- Tabs */ #activity-filter-by { font-size: 13px; } #buddypress div.item-list-tabs ul li { border-top: 1px solid #e6e6e6; border-left: 1px solid #e6e6e6; border-bottom: 1px solid #e6e6e6; position: relative; margin-bottom: 5px; /* responsive portrait tablet */ } #buddypress div.item-list-tabs ul li.feed { border: 0; } #buddypress div.item-list-tabs ul li:first-child:before { display: none; } #buddypress div.item-list-tabs ul li:last-child { border-right: 1px solid #e6e6e6; } #buddypress div.item-list-tabs ul li:before { background-color: #e6e6e6; content: ""; display: block; height: 22px; position: absolute; right: -1px; width: 1px; top: -1px; } @media (max-width: 1018px) { #buddypress div.item-list-tabs ul li { margin-bottom: 10px; } } /* responsive portrait tablet */ @media (max-width: 1018px) { #buddypress div.item-list-tabs ul #activity-filter-select { width: 45%; margin-right: -4px; } } @media (max-width: 768px) { #buddypress div.item-list-tabs ul #activity-filter-select { width: 100%; margin: 15px 0 20px 0 !important; } } #buddypress div.item-list-tabs ul li.selected, #buddypress div.item-list-tabs ul li.current { border-left: 1px solid #222; border-top: 1px solid #222; border-bottom: 1px solid #222; } #buddypress div.item-list-tabs ul li.selected a, #buddypress div.item-list-tabs ul li.current a { background-color: #222; color: #FFF; opacity: 1; } #buddypress div.item-list-tabs ul li.selected a:hover, #buddypress div.item-list-tabs ul li.current a:hover { background-color: #222; } #buddypress div.item-list-tabs ul li.selected a span, #buddypress div.item-list-tabs ul li.current a span { background: var(--td_theme_color, #4db2ec); } #buddypress ul.item-list li div.item-title, #buddypress ul.item-list li h4 { width: auto; } #buddypress div.item-list-tabs ul li > a { background-color: #FFF; color: #444; padding: 0 15px; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 20px; font-weight: 700; text-transform: uppercase; position: relative; height: 20px; } #buddypress div.item-list-tabs ul li > a span { background: var(--td_theme_color, #4db2ec); border-radius: 0; border: transparent; color: #fff; margin-left: 3px; font-size: 9px; line-height: 9px; padding: 2px 5px; position: relative; display: inline-block; top: -1px; } #buddypress div.item-list-tabs ul li > a:hover { background-color: #f7f7f7; } #buddypress div.item-list-tabs ul li > a:hover span { background-color: var(--td_theme_color, #4db2ec); opacity: 0.8; } @media (max-width: 767px) { #buddypress div.item-list-tabs ul li > a#change-avatar { padding: 0 4px; } } #buddypress li.friend-tab img.avatar { display: inline-block; margin-right: 5px; } #buddypress div.item-list-tabs ul li > span { background-color: #FFF; color: #444; padding: 0 15px; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 11px; line-height: 20px; font-weight: 700; text-transform: uppercase; position: relative; height: 20px; } #activity-filter-select, #members-order-select, #forums-order-select, #group_members-order-select, #groups-order-select { border: none !important; margin-top: 0 !important; } .item-list-tabs .feed { border-right: 1px solid #222; } .item-list-tabs .feed a { background-color: #222 !important; color: #fff !important; } .item-list-tabs .feed:hover { border-color: var(--td_theme_color, #4db2ec) !important; } .item-list-tabs .feed:hover a { background-color: var(--td_theme_color, #4db2ec) !important; } /* ---------------------------------------------------------------------------- Activity Page */ #buddypress .activity-list .activity-content .activity-header a { display: inline-block; vertical-align: top; } #buddypress .activity-list .activity-content .activity-header .avatar { width: 20px; vertical-align: top; } #buddypress form#whats-new-form p.activity-greeting { line-height: 21px; } #buddypress form#whats-new-form textarea { width: 100%; } #buddypress #whats-new:focus { border-color: #aaa !important; outline: 0; } /* Content */ #buddypress #activity-stream p { margin: 0; } /* Create Groups Page */ #group-create-tabs li { height: 22px; } #buddypress form.standard-form .main-column { margin-left: 170px; } #buddypress div#invite-list { background: transparent; height: auto; overflow: auto; padding: 0 0 20px 0; width: 160px; margin-top: 10px; } #buddypress span.activity { font-size: 12px; } @media (max-width: 767px) { #buddypress span.activity { font-size: 10px; } } .bp-widget h4, #group-settings-form h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; } legend.screen-reader-text { padding: 0 5px; } #admins-list h5, #member-list h5, #mods-list h5, #members-list h5 { margin-top: 2px; font-size: 14px; margin-bottom: 0; font-weight: 600; } #admins-list h5 a:hover, #member-list h5 a:hover, #mods-list h5 a:hover, #members-list h5 a:hover { color: #222; } #admins-list .item-title, #member-list .item-title, #mods-list .item-title, #members-list .item-title { font-size: 14px !important; } #friend-list h4 { line-height: 24px; } #friend-list a { font-weight: 700; font-size: 12px; } #friend-list a:hover { color: #222; } #buddypress div.pagination .pag-count { margin-left: 0; font-size: 11px; } .groups-members-search { border: none !important; } #search-members-form label, #forums-dir-search label, #search-groups-form label, #search-message-form label { display: inline-block; } #search-members-form #members_search, #forums-dir-search #members_search, #search-groups-form #members_search, #search-message-form #members_search, #search-members-form #forums_search, #forums-dir-search #forums_search, #search-groups-form #forums_search, #search-message-form #forums_search, #search-members-form #groups_search, #forums-dir-search #groups_search, #search-groups-form #groups_search, #search-message-form #groups_search { height: 28px; background-color: transparent; padding-left: 5px; } #search-members-form #members_search_submit, #forums-dir-search #members_search_submit, #search-groups-form #members_search_submit, #search-message-form #members_search_submit, #search-members-form #forums_search_submit, #forums-dir-search #forums_search_submit, #search-groups-form #forums_search_submit, #search-message-form #forums_search_submit, #search-members-form #groups_search_submit, #forums-dir-search #groups_search_submit, #search-groups-form #groups_search_submit, #search-message-form #groups_search_submit { position: relative; top: 0; display: inline-block; left: -7px; border-top-left-radius: 0; border-bottom-left-radius: 0; } #search-message-form { position: relative; } #search-message-form #messages_search { height: 31px; } #search-message-form #messages_search_submit { position: absolute; top: 0; right: -20px; border-top-left-radius: 0; border-bottom-left-radius: 0; } #buddypress div#item-header ul { display: inline-block; } /* Forum */ #buddypress th { background-color: #222; color: #fff; border: none; } #buddypress .forum td { border: none; } #buddypress table { font-size: 13px; } #buddypress select { font-size: 13px; padding: 3px 9px; } #buddypress table.forum tr td.td-title a.topic-title { margin: 0 0 4px 35px; display: block; line-height: 20px; font-weight: 700; color: #222; } #buddypress table.forum tr td.td-title a.topic-title:hover { color: var(--td_theme_color, #4db2ec); } #buddypress table.forum p.topic-meta { font-size: 10px; margin: 0 0 0 35px; color: #c3c3c3; } #buddypress table.forum p.topic-meta a { color: #222; } #buddypress table.forum p.topic-meta a:hover { color: var(--td_theme_color, #4db2ec); } #buddypress table.forum .td-freshness p.topic-meta { margin: 5px 0 0 0; } #buddypress .forum .td-title, #buddypress .forum .td-freshness { position: relative; } #buddypress table.forum td .topic-by img.avatar { position: absolute; margin: 0; width: 40px; top: 12px; left: 0; } #buddypress table.forum td .topic-in a { font-weight: 600; } #buddypress table.forum td .topic-in img.avatar { display: inline-block; margin-left: 3px; } #buddypress table.forum td .freshness-author img.avatar { float: right; margin-right: 0; } #buddypress table.forum tr > td:last-child { padding-right: 0; } #buddypress table.forum th#th-freshness { text-align: right; } #buddypress .forum tbody tr { border-bottom: 1px solid #e6e6e6; height: 64px; } #buddypress .activity-list li.load-more, #buddypress .activity-list li.load-newest { font-size: 12px; line-height: 1; text-align: center; vertical-align: middle; background-color: transparent; border-bottom: none; } #buddypress .activity-list li.load-more a, #buddypress .activity-list li.load-newest a { padding: 7px 10px; display: inline-block; border: 1px solid #dcdcdc; color: #999; } #buddypress .activity-list li.load-more a:hover, #buddypress .activity-list li.load-newest a:hover { background-color: #222; color: #fff; border-color: #222; } #new-topic-post h4, #new-topic-post h5, #profile-edit-form h4, #post-topic-reply h4 { font-size: 18px; font-weight: 700; } #group-admins, #group-mods { margin-top: 0; } #group-admins li, #group-mods li { margin-left: 5px; } #buddypress div.pagination .pagination-links a { font-weight: 700; } #buddypress ul.item-list li div.item-title { font-weight: 700; font-size: 16px; } #buddypress ul.item-list li div.item-title a { color: #222; } #buddypress ul.item-list li div.item-title a:hover { color: var(--td_theme_color, #4db2ec); } #buddypress ul.item-list li div.item-meta span { font-size: 11px; } #group-settings-form .bp-widget .single-line h5 { margin-top: 0; } /* Members activity */ #buddypress #activity-stream { margin-top: 0; } #buddypress #activity-stream .activity-avatar img.avatar-150 { width: 20px; } #buddypress table.notifications { margin-bottom: 20px; } #notification-bulk-manage { padding: 6px 10px 7px 10px !important; position: relative; top: -1px; } .register-section h4 { font-weight: 700; } body.activity-permalink #buddypress div.activity-comments > ul { padding: 0 10px 0 26px; } #buddypress div.activity-comments div.acomment-content { margin: 5px 0 0 35px; } #buddypress div.activity-comments ul li { padding: 15px 0 8px 0; } #buddypress #signup_form.standard-form div.submit { margin-bottom: 30px; } #buddypress .standard-form #basic-details-section input[type="password"], #buddypress .standard-form #blog-details-section input#signup_blog_url, #buddypress #signup_form.standard-form input[type="text"] { width: 100%; } #buddypress .standard-form #basic-details-section, #buddypress .standard-form #profile-details-section { /* responsive portrait phone */ } @media (max-width: 767px) { #buddypress .standard-form #basic-details-section, #buddypress .standard-form #profile-details-section { float: none; display: block; width: 100%; } } #buddypress .standard-form label, #buddypress .standard-form span.label { /* responsive portrait phone */ } @media (max-width: 767px) { #buddypress .standard-form label, #buddypress .standard-form span.label { font-size: 12px; } } #buddypress .acomment-options { margin-left: 35px; } body.activity-permalink #buddypress div.activity-comments ul li { padding: 15px 0 8px 0; } #buddypress ul.item-list.activity-list li.has-comments { padding-bottom: 0; } #buddypress div.activity-comments form .ac-textarea { border-style: solid; } #buddypress .field-visibility-settings-notoggle { margin-top: 5px; } /* ---------------------------------------------------------------------------- Notification Page */ /* responsive portrait tablet */ @media (max-width: 1018px) { #buddypress div.item-list-tabs#subnav ul li#members-order-select { width: 100%; margin-top: 10px !important; } } /* ---------------------------------------------------------------------------- Messages Page */ /* responsive portrait tablet */ @media (max-width: 1018px) { #buddypress div.message-search { width: 100%; margin: 18px 0; float: left; } } @media (max-width: 1018px) { #search-message-form #messages_search_submit { right: 0; } } @media (max-width: 1018px) { #buddypress .standard-form input[type=text], #buddypress .standard-form textarea { width: 100%; } } /* ---------------------------------------------------------------------------- Friends Page */ #buddypress #pag-bottom.pagination { float: left; } @media (max-width: 767px) { #buddypress ul.item-list li div.action { position: relative; top: 0; margin-top: 10px; } #buddypress #friend-list span.activity { display: block; } .group-invites #buddypress ul.item-list li div.action { float: none; text-align: left; margin-left: 60px; } #buddypress form.standard-form .main-column { margin-left: 0; width: 100%; float: left; } #buddypress form#send-invite-form { margin-top: -30px; } #buddypress ul.item-list li h5 span.small { width: 100%; } #buddypress ul.item-list li h5 span.small a { margin: 7px 7px 0 0; padding: 0 7px; display: inline-block; } } /* ---------------------------------------------------------------------------- Groups Page */ #create-group-form .main-column #message { padding-top: 12px; } #buddypress ul.item-list li div.item-desc { width: auto; } #buddypress div#item-header div#item-meta { margin: 5px 0 0; } #buddypress div#item-header #item-header-cover-image #item-header-content { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { #buddypress div#item-header #item-header-cover-image #item-header-content { margin-top: -20px; margin-left: 0; text-align: center; width: 100%; } } #buddypress .bbp-header li { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { #buddypress .bbp-header li { font-size: 11px; } } #buddypress div#item-header-cover-image h2 a, #buddypress div#item-header-cover-image h2 { /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { #buddypress div#item-header-cover-image h2 a, #buddypress div#item-header-cover-image h2 { color: inherit; text-shadow: none; margin: 0; } } @media (max-width: 767px) { #buddypress div#item-header-cover-image h2 a, #buddypress div#item-header-cover-image h2 { margin: 0; } } /* responsive portrait tablet */ @media (max-width: 1018px) { #buddypress div.item-list-tabs#subnav ul li#groups-order-select { width: 100%; margin-top: 10px !important; } .mygroups .item, .mygroups div.action { margin-left: 60px; } .mygroups .item-desc { margin-left: 0 !important; } .mygroups .group-button { text-align: right; } .mygroups .meta { margin-top: 10px !important; } #buddypress ul.item-list li div.item-desc p { margin-bottom: 5px; } #create-group-form .avatar-150 { width: 50px; } #create-group-form .main-column { margin-left: 60px !important; } #create-group-form .main-column #message { margin-left: 110px; } #create-group-form #friend-list { border: none; } #create-group-form #upload { margin-top: 10px; } } @media (max-width: 767px) { #create-group-form #upload { margin-top: 20px; } .mygroups .group-button { text-align: left; } } /* ---------------------------------------------------------------------------- Forums Page */ #buddypress div#item-header { position: relative; } #buddypress div#item-header div#item-actions { /* responsive portrait phone */ } @media (max-width: 767px) { #buddypress div#item-header div#item-actions { width: 100%; text-align: center; } } #buddypress div#item-header div#item-actions h3 { font-size: 13px; font-weight: 700; line-height: 1; margin: 0; vertical-align: top; margin-bottom: 3px; } .group-forum #buddypress div#item-header ul { display: inline-block; margin: 0; } /* Pagination */ #buddypress div.pagination, #buddypress div.pagination .pag-count, #buddypress div.pagination .pagination-links { float: none; } #buddypress div#topic-meta { padding: 5px 0; } #buddypress div#topic-meta h3 { font-size: 18px; font-weight: 700; } #buddypress div#topic-meta div.admin-links { position: relative; top: auto; right: auto; } #buddypress div.admin-links { right: 0; } #buddypress div.topic-tags { font-size: 11px; color: #777; } #buddypress ul#topic-post-list li { padding: 15px 0; } /* responsive portrait tablet */ @media (max-width: 1018px) { #buddypress div.item-list-tabs ul li#forums-order-select { width: 100%; margin-top: 10px !important; } } /* ---------------------------------------------------------------------------- Members Page */ #buddypress div.dir-search { margin-top: 0; min-width: 280px; position: relative; } #buddypress div.dir-search #search-members-form #members_search_submit, #buddypress div.dir-search #search-groups-form #groups_search_submit { position: absolute; top: 0; right: 0; left: auto; } /* responsive portrait phone */ @media (max-width: 767px) { #search-members-form, #search-groups-form { position: relative; margin-bottom: 30px; } #buddypress div.dir-search { width: 100%; margin: 0 0 25px; } #buddypress div.dir-search input[type="text"], #buddypress div.item-list-tabs ul li.groups-members-search, #buddypress div.item-list-tabs ul li#group_members-order-select { width: 100%; } #members_search, #groups_search { position: absolute; left: 0; top: 0; width: 100%; } #buddypress #member-list.item-list li div.action { float: none; margin-left: 60px; } } .buddypress .td-page-title { margin-bottom: 20px; } .widget.buddypress span.activity { font-size: 12px; opacity: 0.4; } .widget.buddypress #friends-list li, .widget.buddypress #groups-list li, .widget.buddypress #members-list li { line-height: 12px; } .widget.buddypress #friends-list li .item-title, .widget.buddypress #groups-list li .item-title, .widget.buddypress #members-list li .item-title { padding: 4px 0 8px; } .widget.buddypress div.item-options { padding: 0; } .widget.buddypress li { margin-left: 0; } .widget.buddypress .bp-login-widget-user-links > div { margin-bottom: 0; } #buddypress div#message p, #buddypress #sitewide-notice p { background-color: #FFF; border: 1px solid #F0F0F0; font-size: 70%; } style-woocommerce.css000064400000052341150211537140010737 0ustar00:root { --td_theme_color: #4db2ec; --td_grid_border_color: #ededed; --td_black: #222; --td_text_color: #111; --td_default_google_font_1: 'Open Sans', 'Open Sans Regular', sans-serif; --td_default_google_font_2: 'Roboto', sans-serif; } /* ---------------------------------------------------------------------------- responsive settings */ /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ /* ---------------------------------------------------------------------------- WooCommerce */ .woocommerce mark { background: transparent; } .woocommerce .button:active { top: auto !important; } .woocommerce .woocommerce-message .button:active { top: 11px !important; } .woocommerce .page-title { display: none; } .woocommerce.tax-product_cat .page-title { display: block; margin-top: 0; } .woocommerce .td-container .page-title { /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce .td-container .page-title { font-size: 30px; line-height: 40px; } } @media (max-width: 767px) { .woocommerce .td-container .page-title { font-size: 26px; line-height: 34px; } } .woocommerce .td-main-page-wrap { /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce .td-main-page-wrap { padding-top: 30px; } } @media (max-width: 767px) { .woocommerce .td-main-page-wrap { padding-top: 10px; } } .woocommerce .product img { box-shadow: none !important; } .woocommerce .product .onsale { background: none var(--td_theme_color, #4db2ec); border-radius: 0; box-shadow: none; text-shadow: none; margin: 0 !important; padding: 4px; line-height: 32px; font-size: 12px; } .woocommerce .product:hover .woocommerce-loop-product__title { color: #000; } .woocommerce .tagged_as { display: block; } .woocommerce .page-nav { padding: 0; } .woocommerce .order_details li:before { content: ''; } .woocommerce .order_details { /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce .order_details { padding-left: 0; } } .woocommerce .order_details li { margin-top: 7px; margin-bottom: 7px; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce .order_details li { width: 100%; display: block; margin-left: 0; margin-right: 0; border-right: none; } } .woocommerce .variation p { font-size: 14px; line-height: 21px; } .woocommerce .widget .variation p { font-size: 12px; line-height: 30px; } .woocommerce .widget .reviewer { font-size: 12px; display: block; } .woocommerce .widget .star-rating { margin-bottom: 3px; } .woocommerce .payment_methods li:before { content: ''; } .woocommerce .product a.button, .woocommerce .product #respond input#submit, .woocommerce .checkout input#place_order, .woocommerce .woocommerce.widget .button { border: none; box-shadow: none; color: #fff; background: none #222; font-size: 11px; padding: 10px; text-shadow: none; border-radius: 0; /* responsive portrait tablet */ /* responsive portrait phone */ } .woocommerce .product a.button:hover, .woocommerce .product #respond input#submit:hover, .woocommerce .checkout input#place_order:hover, .woocommerce .woocommerce.widget .button:hover { background-color: var(--td_theme_color, #4db2ec); } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce .product a.button, .woocommerce .product #respond input#submit, .woocommerce .checkout input#place_order, .woocommerce .woocommerce.widget .button { font-size: 10px; padding: 8px; } } @media (max-width: 767px) { .woocommerce .product a.button, .woocommerce .product #respond input#submit, .woocommerce .checkout input#place_order, .woocommerce .woocommerce.widget .button { margin-top: 5px; } } .woocommerce fieldset { border: 0 !important; margin: 30px 0 20px 0 !important; padding: 0 !important; } .woocommerce fieldset legend { font-weight: bold; padding-left: 3px; } .woocommerce ul.products li.product { /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce ul.products li.product { margin-bottom: 2.2em; } } .woocommerce ul.products li.product a img { margin: 0 0 8px; } .woocommerce ul.products li.product .price del { display: inline-block; } .woocommerce ul.products li.product .button { margin-top: 0; } .woocommerce .price del { display: inline-block !important; font-size: 0.75em !important; } .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 15px; font-weight: 500; line-height: 19px; padding-top: 0; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce ul.products li.product .woocommerce-loop-product__title { padding-bottom: 8px; } } .woocommerce ul.products li.product .price { font-weight: 600; color: #111; font-size: 14px; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce ul.products li.product .price { font-size: 15px; display: block; margin-bottom: 6px; } } .woocommerce .form-row .input-text { font-size: 12px; line-height: 21px; color: #444444; border: 1px solid #e6e6e6; width: 100%; max-width: 100%; height: 32px !important; padding: 3px 9px 3px 9px; } .woocommerce #tab-description ol li, .woocommerce .entry-summary ol li { list-style-type: decimal; margin: 0 0 0 21px; } .woocommerce #tab-description ul li, .woocommerce .entry-summary ul li { margin: 0 0 0 21px; } @media (max-width: 767px) { .woocommerce table.shop_table th { font-size: 13px; } } .woocommerce-page .product table td { border: none !important; } .woocommerce-page .variations_button { position: relative; top: 10px; } .woocommerce-page .related ul li.product.last { margin-right: 0 !important; } .woocommerce-page .related ul li.product.first { clear: both; } .single-product .product { margin-top: 8px; } .single-product .product .onsale { line-height: 32px; font-size: 12px; left: 0; top: 0; } .single-product .product ul.tabs li:before, .single-product .product ul.tabs li:after { display: none; } .single-product .product ul.tabs li { box-shadow: none !important; border: none !important; background: none !important; margin: 0 !important; padding-left: 0 !important; } .single-product .product ul.tabs { padding: 0 !important; margin: 0 !important; } .single-product .product .related h2:not(.woocommerce-loop-product__title), .single-product .product .upsells h2 { color: #fff; background-color: #222; display: inline-block; line-height: 17px; padding: 6px 12px 7px; font-size: 14px; font-weight: normal; } .single-product .product_title { font-size: 28px; line-height: 36px; margin-bottom: 0; } .single-product .product .summary .price { font-size: 24px; color: #111; font-weight: bold; margin: 20px 0 18px 0; } .single-product .product .summary .cart { margin-top: 20px; margin-bottom: 20px; } .single-product .product .summary .cart .button { border: none; box-shadow: none; color: #fff; background: none #222; font-size: 11px; padding: 10px; text-shadow: none; border-radius: 0; } .single-product .product .summary .cart .button:hover { background-color: var(--td_theme_color, #4db2ec); } .single-product .product .summary .cart input.qty { height: 31px; } .single-product .comment-form { margin-top: 10px; } .single-product .images a { margin-bottom: 3.8%; } .woocommerce #reviews #comments ol.commentlist li .comment-text { border-radius: 0; } .single-product .product .summary .cart .button[disabled] { background-color: #222 !important; } .woocommerce div.product .woocommerce-tabs ul.tabs li { float: left; display: block; padding: 0; border-radius: 0; } .woocommerce div.product .woocommerce-tabs ul.tabs li.active { color: #fff; background-color: #222 !important; } .woocommerce div.product .woocommerce-tabs ul.tabs li a { display: inline-block; line-height: 17px; padding: 6px 12px 7px; font-size: 14px; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-weight: normal; } .woocommerce div.product .woocommerce-tabs ul.tabs:before { border-bottom: 2px solid #222; } .woocommerce-cart .woocommerce table { border-collapse: collapse !important; } .woocommerce-cart .woocommerce .cart_totals { text-align: right; } .woocommerce-cart .woocommerce .cart_totals table, .woocommerce-cart .woocommerce .cart_totals th, .woocommerce-cart .woocommerce .cart_totals td { border: none !important; } .woocommerce-cart .woocommerce .cart_totals th { width: 60% !important; } .woocommerce-cart .woocommerce .cart_totals tr { border-bottom: 1px solid var(--td_grid_border_color, #ededed); } .woocommerce-cart .woocommerce .product-name a { color: #222; font-weight: bold; } .woocommerce-cart .woocommerce .cart_item td { /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce-cart .woocommerce .cart_item td { padding-left: 7px; padding-right: 7px; font-size: 11px; } } .woocommerce-cart .woocommerce .product-remove { width: 46px; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce-cart .woocommerce .product-remove { width: auto; } } .woocommerce-cart .woocommerce .product-thumbnail { width: 46px; } .woocommerce-cart .woocommerce .coupon { float: left !important; padding-bottom: 0 !important; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce-cart .woocommerce .coupon { margin-bottom: 12px; width: 100%; } } .woocommerce-cart .woocommerce .button { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce-cart .woocommerce .button { width: auto !important; float: right !important; } } .woocommerce-cart .woocommerce .actions { padding: 10px 8px 0 8px !important; } .woocommerce-cart .woocommerce .actions .button { margin-bottom: 9px; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce-cart .woocommerce .actions .button { width: 100% !important; display: block; } } .woocommerce-cart .woocommerce h2 { font-size: 15px; line-height: 21px; font-weight: bold; } .woocommerce-cart .woocommerce table.cart .button, .woocommerce-cart .woocommerce .shipping-calculator-form .button { border: none; box-shadow: none; color: #fff; background: none #222; font-size: 11px; padding: 9px 10px 10px; text-shadow: none; border-radius: 0; } .woocommerce-cart .woocommerce table.cart .button:hover, .woocommerce-cart .woocommerce .shipping-calculator-form .button:hover { background-color: var(--td_theme_color, #4db2ec); } .woocommerce-cart .woocommerce table.cart td.actions .coupon .input-text { padding: 5px 6px; } .woocommerce-cart .woocommerce .product-price, .woocommerce-cart .woocommerce .product-subtotal { text-align: right !important; } .woocommerce-cart .woocommerce .calculated_shipping td { text-align: right; } .woocommerce-cart .woocommerce a.remove { line-height: 20px !important; text-decoration: none; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce-cart .woocommerce a.remove { line-height: 14px !important; } } .woocommerce-cart .woocommerce #coupon_code { width: 100px !important; height: 31px; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce-cart .woocommerce #coupon_code { width: 100% !important; margin-bottom: 7px; } } .woocommerce-cart .woocommerce table.cart img { display: block; } .woocommerce-cart .woocommerce .cart_totals td { text-align: right; } .woocommerce-cart .woocommerce .cart_totals h2 { padding-right: 20px; } .woocommerce-cart .woocommerce .cross-sells { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce-cart .woocommerce .cross-sells .button { width: auto !important; float: none !important; } } .woocommerce-account { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); } .woocommerce-account .woocommerce-MyAccount-navigation { margin-bottom: 38px; } .woocommerce-account .woocommerce-MyAccount-navigation a { color: #111; } .woocommerce-account .woocommerce-MyAccount-navigation a:hover { text-decoration: none; color: var(--td_theme_color, #4db2ec); } .woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; box-shadow: none; } .woocommerce-account .woocommerce-MyAccount-navigation li { line-height: 30px; list-style: none; margin-left: 12px; } .woocommerce-account .woocommerce-MyAccount-navigation li li { margin-left: 21px; } .woocommerce table.shop_table td, .woocommerce-page table.shop_table td { padding: 9px 12px; } .woocommerce table.shop_table .product-quantity, .woocommerce-page table.shop_table .product-quantity { text-align: right; } .woocommerce .woocommerce-message:before, .woocommerce .woocommerce-error:before, .woocommerce .woocommerce-info:before { box-shadow: none !important; display: block !important; height: 31px !important; left: 20px !important; line-height: 31px !important; margin: 0 !important; padding: 0 !important; position: absolute !important; top: 11px !important; width: 31px !important; font-size: 21px !important; text-shadow: none !important; } .woocommerce .woocommerce-message, .woocommerce .woocommerce-error, .woocommerce .woocommerce-info { font-size: 12px; line-height: 21px; border: 1px solid var(--td_grid_border_color, #ededed) !important; background-color: #fcfcfc !important; box-shadow: none !important; border-radius: 0 !important; margin: 10px 0 20px 0 !important; padding: 16px 120px 16px 60px !important; } .woocommerce .woocommerce-message li, .woocommerce .woocommerce-error li, .woocommerce .woocommerce-info li { font-size: 12px; line-height: 21px; } .woocommerce .woocommerce-message:before, .woocommerce .woocommerce-error:before, .woocommerce .woocommerce-info:before { padding-top: 0 !important; } .woocommerce .woocommerce-message .button, .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button { border: none !important; border-radius: 0; box-shadow: none !important; color: #fff !important; background: none #222222 !important; font-size: 11px !important; padding: 10px !important; text-shadow: none !important; margin-left: 20px; position: absolute; right: 20px; top: 11px; } .woocommerce .woocommerce-message .button:hover, .woocommerce .woocommerce-error .button:hover, .woocommerce .woocommerce-info .button:hover { background-color: var(--td_theme_color, #4db2ec) !important; } .woocommerce-checkout-review-order p { font-size: 14px; line-height: 21px; } .woocommerce-checkout-review-order .product-total, .woocommerce-checkout-review-order tfoot td { text-align: right; } .woocommerce-checkout-review-order tfoot { background-color: #fcfcfc; } .woocommerce-checkout p { font-size: 14px; line-height: 21px; /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce-checkout p { font-size: 12px; } } .woocommerce-checkout #payment { border-radius: 0; background-color: #fcfcfc; border: 1px solid #ededed; } .woocommerce-checkout #payment div.payment_box { background-color: #fff; border: 1px solid #ededed; } .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register { border-color: #ededed; border-radius: 0; } .woocommerce form .form-row { margin: 0; } .woocommerce a.added_to_cart { font-size: 12px; color: #222; } .woocommerce a.added_to_cart:hover { color: var(--td_theme_color, #4db2ec); } .woocommerce table.shop_table, .woocommerce-page table.shop_table { border-collapse: collapse; } .woocommerce-checkout .woocommerce input.button, .woocommerce-page .woocommerce a.button, .woocommerce-account div.woocommerce .button { border: none; box-shadow: none; color: #fff; background: none #222; font-size: 11px; padding: 10px; text-shadow: none; border-radius: 0; } .woocommerce-checkout .woocommerce input.button:hover, .woocommerce-page .woocommerce a.button:hover, .woocommerce-account div.woocommerce .button:hover { background-color: var(--td_theme_color, #4db2ec); } .woocommerce-product-search { position: relative; } .woocommerce.widget { margin-bottom: 38px; } .woocommerce.widget img { box-shadow: none !important; width: 70px !important; } .woocommerce.widget li a { line-height: 19px; } .woocommerce.widget .block-title { margin-bottom: 26px; } .woocommerce.widget.widget_shopping_cart li, .woocommerce.widget.widget_products li, .woocommerce.widget.widget_recently_viewed_products li, .woocommerce.widget.widget_top_rated_products li, .woocommerce.widget.widget_recent_reviews li { margin-bottom: 11px; } .woocommerce.widget.widget_shopping_cart ins, .woocommerce.widget.widget_products ins, .woocommerce.widget.widget_recently_viewed_products ins, .woocommerce.widget.widget_top_rated_products ins, .woocommerce.widget.widget_recent_reviews ins { background-color: transparent; font-weight: bold; } .woocommerce.widget.widget_shopping_cart del, .woocommerce.widget.widget_products del, .woocommerce.widget.widget_recently_viewed_products del, .woocommerce.widget.widget_top_rated_products del, .woocommerce.widget.widget_recent_reviews del { font-size: 10px; } .woocommerce.widget.widget_product_search .screen-reader-text { display: none; } .woocommerce.widget.widget_product_search form div { position: relative; margin-top: 11px; } .woocommerce.widget.widget_product_search .block-title { margin-bottom: 20px; } .woocommerce.widget.widget_product_search input[type="search"] { height: 32px; width: 95%; font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 12px; line-height: 21px; color: #444444; border: 1px solid var(--td_grid_border_color, #ededed); padding: 3px 9px 3px 9px; box-sizing: border-box; } .woocommerce.widget.widget_product_search input[type="submit"] { position: absolute; right: 0; bottom: 0; } .woocommerce.widget.widget_products .product-title, .woocommerce.widget.widget_recently_viewed_products .product-title, .woocommerce.widget.widget_top_rated_products .product-title { font-size: 15px; font-weight: 600; } .woocommerce.widget.widget_recent_reviews li a { font-size: 15px; font-weight: 600; } .woocommerce.widget .star-rating { top: 3px; display: block; margin-bottom: 5px; margin-top: 5px; } .woocommerce.widget .ui-slider .ui-slider-handle { box-shadow: none; border-radius: 0; border: 1px solid #fff; background: none var(--td_theme_color, #4db2ec); width: 15px; height: 15px; } .woocommerce.widget .ui-slider-range { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5) !important; box-shadow: none !important; } .woocommerce.widget .ui-slider { background: none repeat scroll 0 0 rgba(50, 50, 50, 0.8) !important; border-radius: 0 !important; margin-bottom: 20px !important; margin-top: 10px; } .woocommerce.widget.widget_layered_nav_filters ul li a { background: none repeat scroll 0 0 var(--td_theme_color, #4db2ec) !important; border-color: transparent !important; } .td-footer-wrapper .widget_product_search input[type="submit"] { background-color: #444; } .td-footer-wrapper .widget_product_search input[type="submit"]:hover { background-color: var(--td_theme_color, #4db2ec); } .td-footer-wrapper .woocommerce.widget .ui-slider-range { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5) !important; } .td-footer-wrapper .woocommerce.widget .ui-slider { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) !important; } .woocommerce div.product div.images { /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce div.product div.images { margin-bottom: 0; } } .woocommerce #payment #place_order, .woocommerce-page #payment #place_order { /* responsive portrait phone */ } @media (max-width: 768px) { .woocommerce #payment #place_order, .woocommerce-page #payment #place_order { font-size: 12px; padding: 14px; margin-bottom: 0; } } .woocommerce.columns-8 ul.products { /* responsive portrait phone */ } .woocommerce.columns-8 ul.products li.product { margin-right: 2%; width: 10.75%; } .woocommerce.columns-8 ul.products li.product.last { margin-right: 0; } @media (max-width: 767px) { .woocommerce.columns-8 ul.products li.product { margin: 0 0 2.992em; width: 48%; } } .woocommerce.columns-7 ul.products li.product { margin-right: 2.2%; width: 12.4%; /* responsive portrait phone */ } @media (max-width: 767px) { .woocommerce.columns-7 ul.products li.product { margin: 0 0 2.992em; width: 48%; } } .woocommerce.columns-7 ul.products li.product.last { margin-right: 0; } .woocommerce-page .woocommerce a.button { /* responsive portrait tablet */ } @media (min-width: 768px) and (max-width: 1018px) { .woocommerce-page .woocommerce a.button { font-size: 9px; padding: 8px; } } .woocommerce .products .star-rating { margin: 0.5em 0; } .woocommerce ul.products li.product .woocommerce-loop-product__title { padding-bottom: 0; } .woocommerce-cart .wc-proceed-to-checkout a.checkout-button { font-size: 13px; padding: 18px; display: block; width: 100% !important; } index.php000064400000001772150211537140006372 0ustar00
'home', )); ?>
comments.php000064400000017514150211537140007111 0ustar00
1) { $td_comments_no_text = $num_comments . ' ' . esc_html__('COMMENTS', 'newspaper'); } else { $td_comments_no_text = esc_html__('1 COMMENT', 'newspaper'); } ?>

    'td_comment')); ?>
0)) { ?>

exists() ? $user->display_name : ''; $consent = empty( $commenter['comment_author_email'] ) ? '' : ' checked="checked"'; $fields = array( 'author' => '
' . esc_html__('Please enter your name here', 'newspaper') . '
', 'email' => '', 'url' => '
', 'cookies' => '', ); $defaults = array('fields' => apply_filters('comment_form_default_fields', $fields)); $defaults['comment_field'] = '
' . esc_html__('Please enter your comment!', 'newspaper') . '
'; $defaults['comment_notes_before'] = ''; $defaults['comment_notes_after'] = ''; $defaults['title_reply'] = esc_html__('LEAVE A REPLY', 'newspaper'); $defaults['label_submit'] = esc_html__('Post Comment', 'newspaper'); $defaults['cancel_reply_link'] = esc_html__('Cancel reply', 'newspaper'); // login when you want to write a comment $post_id = get_the_ID(); $url = wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ); $defaults['must_log_in'] = ''; $defaults['logged_in_as'] = '

' . sprintf( /* 1: edit user link, 2: accessibility text, 3: user name, 4: logout URL */ '' . esc_html__('Logged in as', 'newspaper') . ' %3$s. ' . esc_html__('Log out?', 'newspaper') . '', get_edit_user_link(), /* %s: user name */ esc_attr( sprintf( esc_html__( 'Logged in as %s. Edit your profile.' , 'newspaper'), $user_identity ) ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( get_the_ID() ) ) ) ) . '

'; comment_form($defaults); ?>
comment_type == 'pingback') { $td_isPingTrackbackClass = 'pingback'; } if($comment->comment_type == 'trackback') { $td_isPingTrackbackClass = 'trackback'; } if (!empty($comment->comment_author_email)) { $td_comment_auth_email = $comment->comment_author_email; } else { $td_comment_auth_email = ''; } $td_article_date_unix = @strtotime("{$comment->comment_date_gmt} GMT"); ?>
  • comment_approved == '0') { ?>
    $depth, 'max_depth' => $args['max_depth'], 'reply_text' => esc_html__('Reply', 'newspaper'), 'login_text' => esc_html__('Log in to leave a comment', 'newspaper') ))) ?>
    includes/tagdiv-config.php000064400000113701150211537140011606 0ustar00 'Revolution Slider', 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/rev-slider.png', 'text' => 'Build amazing slide presentations for your website with ease
    How to install v5', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'slug' => 'revslider', 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list ), //array( // 'name' => 'Visual Composer', // 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/visual-composer.png', // 'text' => 'Customize your pages and posts with this popular page builder
    Read more', // 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color // 'slug' => 'js_composer' //) ); tagdiv_global::$theme_plugins_list = array( array( 'name' => $td_brand . ' Composer', // The plugin name 'slug' => 'td-composer', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-composer/8505194c2950b1bf800079c503a07e37/td-composer.zip', // The plugin source 'required' => true, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/td-composer.png', 'text' => 'Create beautiful pages with this custom frontend drag and drop builder
    Read more', 'required_label' => 'required', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'tdc_version_check', // class used to recognize the plugin is activated 'td_install_in_welcome' => true, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Cloud Library', // The plugin name 'slug' => 'td-cloud-library', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-cloud-library/f6b4e4ee000751786489ff7d2b0c153a/td-cloud-library.zip', // The plugin source 'required' => true, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/cloud-templates.jpg', 'text' => 'Access a huge collection of fully editable templates and elements', 'required_label' => 'required', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'tdb_version_check', // class used to recognize the plugin is activated 'td_install_in_welcome' => true, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Social Counter', // The plugin name 'slug' => 'td-social-counter', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-social-counter/0f1656c48c5da80d87e8e2dbbe8b195b/td-social-counter.zip', // The plugin source 'required' => true, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/social.png', 'text' => 'Display your activity on social networks with style using this cool feature
    Read more', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_social_counter_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Newsletter', // The plugin name 'slug' => 'td-newsletter', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-newsletter/795e74d53223156068c4e29e39e0ed3e/td-newsletter.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-newsletter.png', 'text' => 'Newsletter plugin, beautifully designed with over 8 styles', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_newsletter_version_check', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Opt-In Builder', // The plugin name 'slug' => 'td-subscription', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-subscription/td-subscription.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-optin.png', 'text' => 'Generate leads & convert visitors to subscribers with opt-in content lockers', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'tds_version_check', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Shop', // The plugin name 'slug' => 'td-woo', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-woo/2852a64b55307dfd7353b7b76ce6ba63/td-woo.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-shop.png', 'text' => 'Activate for super powers and features on your WooCommerce website', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_woo_version_check', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Mobile Theme', // The plugin name 'slug' => 'td-mobile-plugin', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-mobile-plugin/cca29e6e1f21dd83ab5a5f38860d1fd9/td-mobile-plugin.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/mobile.png', 'text' => 'Make your website lighter and faster on all mobile devices
    Read more', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_mobile_theme', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Official AMP for WP', // The plugin name 'slug' => 'amp', // The plugin slug (typically the folder name) 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-amp.png', 'text' => 'Mobile Theme requires the AMP plugin to give your site the best results
    Read more', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_class' => 'AMP_Autoloader', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => $td_brand . ' Standard Pack', // The plugin name 'slug' => 'td-standard-pack', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td_plugins/td-standard-pack/1b3d5bf2c64738aa07b4643e31257da9/td-standard-pack.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/standard-pack.jpg', 'text' => 'Build your website fast and effortless without code. Perfect for beginners', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'tdsp_version_check', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => true, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'WooCommerce', // The plugin name 'slug' => 'woocommerce', // The plugin slug (typically the folder name) 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'img' => '', 'text' => 'Read more', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_class' => 'WooCommerce', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Advanced Custom Fields', // The plugin name 'slug' => 'advanced-custom-fields', // The plugin slug (typically the folder name) 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '6.1.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'img' => get_template_directory_uri() . '/images/no-thumb/medium_large.png', 'text' => 'Read more', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_class' => 'ACF', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => false, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Real Estate PRO Plugin', // The plugin name 'slug' => 'td-demo-real-estate-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/real-estate-pro/td-demo-real-estate-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-realestate.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies & custom fields and more for Real Estate PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_real_estate_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Compass PRO Plugin', // The plugin name 'slug' => 'td-demo-compass-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/compass-pro/td-demo-compass-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-compass.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies & custom fields and more for Compass PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_compass_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Eastcoast Check PRO Plugin', // The plugin name 'slug' => 'td-demo-eastcoast-check-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/eastcoast-check-pro/td-demo-eastcoast-check-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-eastcoast.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies & custom fields and more for EastCoast Check PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_eastcoast_check_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Doctors PRO Plugin', // The plugin name 'slug' => 'td-demo-doctors-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/doctors-pro/td-demo-doctors-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-doctors.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies & custom fields and more for Doctors PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_doctors_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Job Hunt PRO Plugin', // The plugin name 'slug' => 'td-demo-job-hunt-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/job-hunt-pro/td-demo-job-hunt-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-jobs.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies, custom fields and more for the Job Hunt PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_job_hunt_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Coaching PRO Plugin', // The plugin name 'slug' => 'td-demo-coaching-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/coaching-pro/td-demo-coaching-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-coaching.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies, custom fields and more for Coaching PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_coaching_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Momentum PRO Plugin', // The plugin name 'slug' => 'td-demo-momentum-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/momentum-pro/td-demo-momentum-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-momentum.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies, custom fields and more for Momentum PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_momentum_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'Cali Sight Plugin', // The plugin name 'slug' => 'td-demo-cali-sight-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/cali-sight/td-demo-cali-sight-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-cali.jpg', 'text' => 'tagDiv plugin for demos with custom post types & taxonomies', 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_cali_sight_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), array( 'name' => 'APP Find PRO Plugin', // The plugin name 'slug' => 'td-demo-app-find-pro', // The plugin slug (typically the folder name) 'source' => 'https://cloud.tagdiv.com/td-demo-plugins/app-find-pro/td-demo-app-find-pro.zip', // The plugin source 'required' => false, // If false, the plugin is only 'recommended' instead of required 'version' => '1.0.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher, otherwise a notice is presented 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins 'external_url' => '', // If set, overrides default API URL and points to an external URL 'img' => get_template_directory_uri() . '/includes/wp-booster/wp-admin/images/plugins/tagdiv-jobs.jpg', 'text' => "$td_brand plugin with custom post types, taxonomies, custom fields and more for the APP Find PRO Demo.", 'required_label' => 'optional', //the text for required/recommended label - used also as a class for label bg color 'td_activate' => false, // custom field used to activate the plugin 'td_install' => false, // custom field used to install the plugin 'td_class' => 'td_app_find_pro_demo_plugin', // class used to recognize the plugin is activated 'td_install_in_welcome' => false, // custom field used to install/update/activate the plugin from theme welcome panel 'td_show_in_theme_plugins' => false, // custom field used to show the plugin in theme's plugins list 'td_demo_plugin' => true, // custom field used to show the plugin in theme's plugins list ), ); } } includes/tagdiv-page-generator.php000064400000047130150211537140013243 0ustar00ID); foreach( $categories as $category ) { $primary_category_id = $category->cat_ID; break; } $category_1_name = ''; $category_1_url = ''; $category_2_name = ''; $category_2_url = ''; $primary_category_obj = get_category($primary_category_id); if (!empty($primary_category_obj)) { if (!empty($primary_category_obj->name)) { $category_1_name = $primary_category_obj->name; } else { $category_1_name = ''; } if (!empty($primary_category_obj->cat_ID)) { $category_1_url = get_category_link($primary_category_obj->cat_ID); } if (!empty($primary_category_obj->parent) and $primary_category_obj->parent != 0) { $parent_category_obj = get_category($primary_category_obj->parent); if (!empty($parent_category_obj)) { $category_2_name = $parent_category_obj->name; $category_2_url = get_category_link($parent_category_obj->cat_ID); } } } $breadcrumbs_array = array(); if (!empty($category_1_name)) { //parent category (only if we have one and if the theme is set to show it) if (!empty($category_2_name)) { $breadcrumbs_array [] = array ( 'title_attribute' => esc_html__('View all posts in', 'newspaper') . ' ' . htmlspecialchars($category_2_name), 'url' => $category_2_url, 'display_name' => $category_2_name ); } //child category $breadcrumbs_array [] = array ( 'title_attribute' => esc_html__('View all posts in', 'newspaper') . ' ' . htmlspecialchars($category_1_name), 'url' => $category_1_url, 'display_name' => $category_1_name ); //article title $breadcrumbs_array [] = array ( 'title_attribute' => $post_title, 'url' => get_permalink( $post ), 'display_name' => $post_title ); } return $breadcrumbs_array; } /** * generate author breadcrumbs array * @param $part_cur_auth_obj * @return array|string */ private static function author_breadcrumbs_array($part_cur_auth_obj) { $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => '', 'display_name' => esc_html__('Authors', 'newspaper') ); $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => get_author_posts_url($part_cur_auth_obj->ID), 'display_name' => esc_html__('Posts by', 'newspaper') . ' ' . $part_cur_auth_obj->display_name ); return $breadcrumbs_array; } /** * generate category breadcrumbs array * @param $primary_category_obj * @return array|string */ private static function category_breadcrumbs_array($primary_category_obj) { $category_1_name = ''; $category_1_url = ''; $category_2_name = ''; $category_2_url = ''; $breadcrumbs_array = array(); if (!empty($primary_category_obj)) { if (!empty($primary_category_obj->name)) { $category_1_name = $primary_category_obj->name; $category_1_url = get_category_link($primary_category_obj->term_id); } else { $category_1_name = ''; } if (!empty($primary_category_obj->cat_ID)) { $category_1_url = get_category_link($primary_category_obj->cat_ID); } if (!empty($primary_category_obj->parent) and $primary_category_obj->parent != 0) { $parent_category_obj = get_category($primary_category_obj->parent); if (!empty($parent_category_obj)) { $category_2_name = $parent_category_obj->name; $category_2_url = get_category_link($parent_category_obj->cat_ID); } } } if (!empty($category_1_name)) { //parent category if (!empty($category_2_name) ) { $breadcrumbs_array [] = array ( 'title_attribute' => esc_html__('View all posts in', 'newspaper') . ' ' . htmlspecialchars($category_2_name), 'url' => $category_2_url, 'display_name' => $category_2_name ); } //child category $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => $category_1_url, 'display_name' => $category_1_name ); //pagination $td_paged = (get_query_var('paged')) ? get_query_var('paged') : 1; if ($td_paged > 1) { $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => '', 'display_name' => esc_html__('Page', 'newspaper') . ' ' . $td_paged ); } } return $breadcrumbs_array; } /** * generate tag breadcrumbs array * @param $current_tag_name * @return array|string */ private static function tag_breadcrumbs_array($current_tag_name) { $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => '', 'display_name' => esc_html__('Tags', 'newspaper') ); $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => get_tag_link(get_queried_object()->term_id), 'display_name' => ucfirst($current_tag_name) ); return $breadcrumbs_array; } /** * generate archive breadcrumbs array * @return array|string */ private static function archive_breadcrumbs_array() { $cur_archive_year = get_the_date('Y'); $cur_archive_month = get_the_date('n'); $cur_archive_day = get_the_date('j'); $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => get_year_link($cur_archive_year), 'display_name' => get_the_date('Y') ); if (is_month() or is_day()) { $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => get_month_link($cur_archive_year, $cur_archive_month), 'display_name' => get_the_date('F') ); } if (is_day()) { $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => get_day_link($cur_archive_year, $cur_archive_month, $cur_archive_day), 'display_name' => get_the_date('j') ); } return $breadcrumbs_array; } /** * generate home breadcrumbs array * @return array|string */ private static function home_breadcrumbs_array() { $breadcrumbs_array [] = array ( 'title_attribute' => esc_html__('Blog', 'newspaper'), 'url' => get_home_url(), 'display_name' => esc_html__('Blog', 'newspaper') ); //pagination $td_paged = (get_query_var('paged')) ? get_query_var('paged') : 1; if ($td_paged > 1) { global $wp; $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => home_url($wp->request), 'display_name' => esc_html__('Page', 'newspaper') . ' ' . $td_paged ); } return $breadcrumbs_array; } /** * generate page breadcrumbs array * @param $page_title * @return array|string */ private static function page_breadcrumbs_array($page_title) { global $post; if( is_page() ) { $parents = get_post_ancestors ($post->ID); if (!empty($parents)) { $parents = array_reverse($parents); foreach ($parents as $parent_id) { $breadcrumbs_array [] = array ( 'title_attribute' => get_the_title($parent_id), 'url' => esc_url(get_permalink($parent_id)), 'display_name' => get_the_title($parent_id) ); } } } $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => get_permalink($post->ID), 'display_name' => $page_title ); return $breadcrumbs_array; } /** * generate attachment breadcrumbs array * @param $parent_id * @param $attachment_title * @return array|string */ private static function attachment_breadcrumbs_array($parent_id, $attachment_title) { //show the attachment parent if ($parent_id != '') { $breadcrumbs_array [] = array ( 'title_attribute' => get_the_title($parent_id), 'url' => esc_url(get_permalink($parent_id)), 'display_name' => get_the_title($parent_id) ); } $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => '', 'display_name' => $attachment_title ); return $breadcrumbs_array; } /** * generate search breadcrumbs array * @return array|string */ private static function search_breadcrumbs_array() { $breadcrumbs_array [] = array ( 'title_attribute' => '', 'url' => '', 'display_name' => esc_html__('Search', 'newspaper') ); return $breadcrumbs_array; } /** * theme pagination */ static function get_pagination() { global $wp_query; if( is_404() ) { return; } $pagenavi_options = array(); $pagenavi_options['pages_text'] = esc_html__('Page %CURRENT_PAGE% of %TOTAL_PAGES%', 'newspaper'); $pagenavi_options['current_text'] = '%PAGE_NUMBER%'; $pagenavi_options['page_text'] = '%PAGE_NUMBER%'; $pagenavi_options['first_text'] = esc_html__('1', 'newspaper'); $pagenavi_options['last_text'] = esc_html__('%TOTAL_PAGES%', 'newspaper'); if (is_rtl()) { $pagenavi_options['next_text'] = ''; $pagenavi_options['prev_text'] = ''; } else { $pagenavi_options['next_text'] = ''; $pagenavi_options['prev_text'] = ''; } $pagenavi_options['dotright_text'] = esc_html__('...', 'newspaper'); $pagenavi_options['dotleft_text'] = esc_html__('...', 'newspaper'); $pagenavi_options['num_pages'] = 3; $pagenavi_options['always_show'] = 0; $pagenavi_options['num_larger_page_numbers'] = 3; $pagenavi_options['larger_page_numbers_multiple'] = 1000; $paged = intval(get_query_var('paged')); $max_page = $wp_query->max_num_pages; if(empty($paged) || $paged == 0) { $paged = 1; } $pages_to_show = intval($pagenavi_options['num_pages']); $larger_page_to_show = intval($pagenavi_options['num_larger_page_numbers']); $larger_page_multiple = intval($pagenavi_options['larger_page_numbers_multiple']); $pages_to_show_minus_1 = $pages_to_show - 1; $half_page_start = floor($pages_to_show_minus_1/2); $half_page_end = ceil($pages_to_show_minus_1/2); $start_page = $paged - $half_page_start; if($start_page <= 0) { $start_page = 1; } $end_page = $paged + $half_page_end; if(($end_page - $start_page) != $pages_to_show_minus_1) { $end_page = $start_page + $pages_to_show_minus_1; } if($end_page > $max_page) { $start_page = $max_page - $pages_to_show_minus_1; $end_page = $max_page; } if($start_page <= 0) { $start_page = 1; } $larger_per_page = $larger_page_to_show*$larger_page_multiple; $larger_start_page_start = (self::td_round_number($start_page, 10) + $larger_page_multiple) - $larger_per_page; $larger_start_page_end = self::td_round_number($start_page, 10) + $larger_page_multiple; $larger_end_page_end = self::td_round_number($end_page, 10) + ($larger_per_page); if($larger_start_page_end - $larger_page_multiple == $start_page) { $larger_start_page_start = $larger_start_page_start - $larger_page_multiple; $larger_start_page_end = $larger_start_page_end - $larger_page_multiple; } if($larger_start_page_start <= 0) { $larger_start_page_start = $larger_page_multiple; } if($larger_start_page_end > $max_page) { $larger_start_page_end = $max_page; } if($larger_end_page_end > $max_page) { $larger_end_page_end = $max_page; } if($max_page > 1 || intval($pagenavi_options['always_show']) == 1) { $pages_text = str_replace("%CURRENT_PAGE%", number_format_i18n($paged), $pagenavi_options['pages_text']); $pages_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $pages_text); echo ''; } } static function td_round_number($num, $tonearest) { return floor($num/$tonearest)*$tonearest; } /** * the breadcrumb generator * @param $template_data - the template * @return string */ static function get_breadcrumbs($template_data = array()) { if (empty($template_data) || !isset($template_data['template'])) { return ''; } $breadcrumbs_array = array(); switch ($template_data['template']) { case 'single': $breadcrumbs_array = self::single_breadcrumbs_array($template_data['title']); break; case 'author': $breadcrumbs_array = self::author_breadcrumbs_array($template_data['author']); break; case 'category': $breadcrumbs_array = self::category_breadcrumbs_array($template_data['category_obj']); break; case 'tag': $breadcrumbs_array = self::tag_breadcrumbs_array($template_data['tag_name']); break; case 'archive': $breadcrumbs_array = self::archive_breadcrumbs_array(); break; case 'home': $breadcrumbs_array = self::home_breadcrumbs_array(); break; case 'page': $breadcrumbs_array = self::page_breadcrumbs_array($template_data['page_title']); break; case 'attachment': $breadcrumbs_array = self::attachment_breadcrumbs_array($template_data['parent_id'], $template_data['attachment_title']); break; case 'search': $breadcrumbs_array = self::search_breadcrumbs_array(); break; } if (empty($breadcrumbs_array)) { return ''; } // add home breadcrumb array_unshift($breadcrumbs_array, array( 'title_attribute' => '', 'url' => esc_url(home_url( '/' )), 'display_name' => esc_html__('Home', 'newspaper') )); $buffy = ''; $buffy .= '
    '; $array_elements = count($breadcrumbs_array); foreach ($breadcrumbs_array as $key => $breadcrumb) { if ($key == $array_elements - 1) { //last element should not display the url $breadcrumb['url'] = ''; } if (empty($breadcrumb['url'])) { if ($key != 0) { //add separator only after first $buffy .= ' '; } //no link - breadcrumb $buffy .= '' . esc_html( $breadcrumb['display_name'] ) . ''; } else { if ($key != 0) { //add separator only after first $buffy .= ' '; } //normal links $buffy .= '' . esc_html( $breadcrumb['display_name'] ) . ''; } } $buffy .= '
    '; return $buffy; } }includes/wp-booster/tagdiv-remote-http.php000064400000014555150211537140014721 0ustar00 self::run_test_on_fail_after) { // run the test again $channel_that_passed = ''; $test_result = self::run_test($url, $caller_id, $channel_that_passed); $td_remote_http['test_time'] = time(); if ($test_result !== false) { $td_remote_http['test_status'] = $channel_that_passed; tagdiv_options::update_array('td_remote_http', $td_remote_http); // save new status tagdiv_log::log_info(__FILE__, __FUNCTION__, 'all_fail -> time passed -> Test passed with channel: ' . $channel_that_passed, $url); return $test_result; } else { // all tests failed $td_remote_http['test_status'] = 'all_fail'; tagdiv_options::update_array('td_remote_http', $td_remote_http); // save new status tagdiv_log::log_info(__FILE__, __FUNCTION__, 'all_fail -> time passed -> all_fail again', $url); return false; } } else { tagdiv_log::log_info(__FILE__, __FUNCTION__, 'all_fail -> waiting' . (time() - $td_remote_http['test_time']) . 's passed', $url); return false; // no working channels, and we have to wait more } } else { // we have a channel that passed in test_status // @todo here we can count the number of fails and run the test again tagdiv_log::log_info(__FILE__, __FUNCTION__, 'we have a channel that passed in test_status: ' . $td_remote_http['test_status'], $url); return self::get_page_via_channel($url, $caller_id, $td_remote_http['test_status']); } } else { // the test was not run $channel_that_passed = ''; $test_result = self::run_test($url, $caller_id, $channel_that_passed); $td_remote_http['test_time'] = time(); if ($test_result !== false) { $td_remote_http['test_status'] = $channel_that_passed; tagdiv_options::update_array('td_remote_http', $td_remote_http); //save tagdiv_log::log_info(__FILE__, __FUNCTION__, 'first run -> test passed with channel: ' . $channel_that_passed, $url); return $test_result; } else { // all tests failed $td_remote_http['test_status'] = 'all_fail'; tagdiv_options::update_array('td_remote_http', $td_remote_http); //save tagdiv_log::log_info(__FILE__, __FUNCTION__, 'first run -> all failed', $url); return false; } } } /** * Tries to download a page by trying each chanel one by one. * If a good channel is found, it will be returned by ref in the &$channel_that_passed parameter * @param $url - the url that we want to fatch * @param string $caller_id - we need to pass the caller_id so we can log who requested the channel * @param string &$channel_that_passed by reference! * * @return bool|string * - bool FALSE: if no usable channel found * - string: the content of the page if a channel passed. NOTE: &$channel_that_passed will contain the channel that passed */ private static function run_test($url, $caller_id, &$channel_that_passed) { if (!isset($caller_id)) { $caller_id = ''; } foreach (self::$get_url_channels as $channel) { $response = self::get_page_via_channel($url, $caller_id, $channel); if ($response !== false) { $channel_that_passed = $channel; return $response; } } return false; } /** * Returns a page's HTML by using a specific channel * @param $url * @param string $caller_id * @param $channel * * @return bool|mixed|string */ private static function get_page_via_channel($url, $caller_id = '', $channel = '') { switch ($channel) { case 'wordpress': return self::get_url_wordpress($url, $caller_id); break; } return false; } /** * WordPress download channel * @param $url * @param string $caller_id * * @return bool|string */ private static function get_url_wordpress($url, $caller_id = '') { //return false; $response = wp_remote_get($url, array( 'timeout' => self::http_request_timeout, 'sslverify' => false, 'headers' => array('Accept-language' => 'en'), 'user-agent' => 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0' )); if (is_wp_error($response)) { tagdiv_log::log(__FILE__, __FUNCTION__, 'caller_id:' . $caller_id . ' got wp_error, get_error_message: ' . $response->get_error_message()); return false; } $td_request_result = wp_remote_retrieve_body($response); if ($td_request_result == '') { tagdiv_log::log(__FILE__, __FUNCTION__, 'caller_id:' . $caller_id . ' Empty response via wp_remote_retrieve_body, Quitting. HTTP REPONSE CODE: ' . wp_remote_retrieve_response_code($response)); return false; } return $td_request_result; } } includes/wp-booster/tagdiv-options.php000064400000010054150211537140014132 0ustar00 self::$td_options )); } else { foreach ($option_settings as $key => $option_setting) { if ($option_setting !== self::$td_options) { $option_settings = array_merge( array( $current_time => self::$td_options ), $option_settings ); } break; } // default limit is 5 positions $limit = tagdiv_util::get_option('td_tp_backup_limit', 5); $option_settings = array_slice($option_settings, 0, $limit); update_option($options_settings_id, $option_settings); } } } } includes/wp-booster/tagdiv-admin-notices.php000064400000001264150211537140015174 0ustar00message = $message; if( ! empty( $css_classes ) && is_array( $css_classes ) ) { $this->css_classes = array_merge( $this->css_classes, $css_classes ); } add_action( 'admin_notices', array( $this, 'notice' ) ); } public function notice() { ?>

    message ) ?>

    'hash' * @var array */ private static $td_plugins = array( 'TD_COMPOSER' => array( 'version' => '8505194c2950b1bf800079c503a07e37', 'class' => 'tdc_version_check' ), 'TD_CLOUD_LIBRARY' => array( 'version' => 'f6b4e4ee000751786489ff7d2b0c153a', 'class' => 'tdb_version_check' ), 'TD_SOCIAL_COUNTER' => array( 'version' => '0f1656c48c5da80d87e8e2dbbe8b195b', 'class' => 'td_social_counter_plugin' ), 'TD_NEWSLETTER' => array( 'version' => '795e74d53223156068c4e29e39e0ed3e', 'class' => 'td_newsletter_version_check' ), 'TD_SUBSCRIPTION' => array( 'version' => '___td-subscription___', 'class' => 'tds_version_check' ), 'TD_MOBILE_PLUGIN' => array( 'version' => 'cca29e6e1f21dd83ab5a5f38860d1fd9', 'class' => 'td_mobile_theme' ), 'AMP' => array( 'version' => '___amp___', 'class' => 'AMP_Autoloader' ), 'TD_STANDARD_PACK' => array( 'version' => '1b3d5bf2c64738aa07b4643e31257da9', 'class' => 'tdsp_version_check' ), 'TD_WOO' => array( 'version' => '2852a64b55307dfd7353b7b76ce6ba63', 'class' => 'td_woo_version_check' ) ); /** * Get the $td_plugins hashes array * @return array */ static function get_td_plugins() { return self::$td_plugins; } /** * set below with either http or https string * @var string */ static $http_or_https = 'http'; /** * Determines if SSL is used and sets the $http_or_https global */ static function set_http_or_https() { if ( is_ssl() ) { self::$http_or_https = 'https'; } } /** * the plugins that are installable via the theme > plugins panel & tgma * @var array */ static $theme_plugins_list = array(); /** * the plugins that are just for information proposes * @var array */ static $theme_plugins_for_info_list = array(); /** * the js files that are used in wp-admin * @var array * * @todo check what js files are needed for wp admin */ static $js_files_for_wp_admin = array ( 'td_wp_admin' => '/includes/wp-booster/wp-admin/js/td_wp_admin.js', 'td_edit_page' => '/includes/wp-booster/wp-admin/js/td_edit_page.js', 'td_page_options' => '/includes/wp-booster/wp-admin/js/td_page_options.js', 'td_tooltip' => '/includes/wp-booster/wp-admin/js/tooltip.js', 'td_confirm' => '/includes/wp-booster/wp-admin/js/tdConfirm.js', ); } /** * set http or https */ tagdiv_global::set_http_or_https(); includes/wp-booster/wp-admin/css/plugins.less000064400000020040150211537140015323 0ustar00/* ---------------------------------------------------------------------------- plugins list */ .td-admin-plugins { .td-admin-columns { margin-left: -10px; margin-right: -10px; } // remove the border introduced in WP4.7 .td-demo-thumb { border: none; } max-width: none; .about-text { max-width: 1050px; } } .td-wp-admin-plugin { max-width: 219px; display: inline-block; padding: 0 10px 22px; &:hover { .td-plugin-image { .box-shadow(0 0 21px 0 rgba(0, 0, 0, 0.12)) } } } .td-plugin-image { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.08); overflow: hidden; position: relative; border-radius: 4px; height: 277px; background-color: #fff; .transition(box-shadow 0.3s ease) } .td-plugin-meta { font-size: 11px; width: 100%; text-align: center; font-family: 'Open Sans', arial, sans-serif; .theme-name { font-size: 15px; text-align: center; font-weight: bold; margin: 0; padding: 10px 10px 0; position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } p { font-family: 'Open Sans', arial, sans-serif; font-size: 12px; line-height: 14px; display: block; margin: 6px 10px; color: #999; height: 61px; overflow: hidden; a { display: inline-block; margin: 6px 6px 0; } strong { color: #888; } &.td-plugin-notice { font-size: 12px; color: red; opacity: 0.65; height: auto; } } .td-plugin-buttons { position: absolute; bottom: 0; width: 100%; } .td-plugin-button { color: #888; line-height: 1; text-decoration: none; padding: 8px 15px 7px; display: block; position: relative; margin: 0 auto 15px; text-transform: uppercase; font-size: 10px; opacity: 0.8; &:before { content: ''; position: absolute; top: 0; left: 0; border-radius: 50px; border: 1px solid #888; width: 100%; height: 100%; opacity: 0.4; z-index: -1; .transition(all 0.3s ease); } &:hover { &:before { opacity: 0.6; } } } } // demo plugins .td-demo-plugins-install { display: flex; flex-wrap: wrap; .theme-name { white-space: normal; line-height: 1; padding-bottom: 3px; } .td-wp-admin-plugin { max-width: 257px; box-sizing: border-box; } .td-plugin-image { border: 1px solid #ececec; } } /* ---------------------------------------------------------------------------- buttons */ .td-wp-admin-plugin { .td-button-install-plugin { display: none; color: #fff; &:before { border-color: #0085ba; background-color: #0085ba; opacity: 0.85; } &:hover { &:before { opacity: 1; box-shadow: 0 2px 8px 0 rgba(0, 133, 186, 0.6); } } } .td-button-update-plugin { display: none; color: #fff; &:before { border-color: #0085ba; background-color: #0085ba; opacity: 0.85; } &:hover { &:before { opacity: 1; box-shadow: 0 2px 8px 0 rgba(0, 133, 186, 0.6); } } } .td-plugin-version { right: 8px; top: 8px; height: auto; border-radius: 3px; padding: 0 6px; font-size: 8px; line-height: 16px; } .td-button-uninstall-plugin { display: none; } .td-button-activate-plugin { display: none; color: #fff; &:before { border-color: #40a200; background-color: #40a200; opacity: 0.85; } &:hover { &:before { opacity: 1; box-shadow: 0 2px 8px 0 rgba(64, 162, 0, 0.6); } } } } .td-plugin-active { .td-button-uninstall-plugin { display: inline-block; } .td-plugin-image { box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .08); border-top: 2px solid #69bd32; } } .td-plugin-inactive { .td-button-activate-plugin { display: inline-block; } } .td-plugin-not-installed { .td-button-install-plugin { display: inline-block; } } .td-plugin-update { .td-button-update-plugin { display: inline-block; } .td-button-update-plugin { margin-right: 5px; } .td-button-uninstall-plugin { padding-left: 8px; padding-right: 8px; &:before { display: none; } } } .td-plugin-no-install { .theme-actions { display:none; } } /* ---------------------------------------------------------------------------- supported plugin list */ .td-supported-plugin-list { max-width: 800px; margin-top: 30px; } .td-supported-plugin { padding-bottom: 5px; margin-top: 5px; border-bottom: 1px solid #e9e9e9; position: relative; p { margin: 0; font-weight: 600; font-size: 12px; line-height: 1.4; } span { position: absolute; left: 210px; top: 0; font-size: 12px; line-height: 1.4; color: #797979; } } /* ---------------------------------------------------------------------------- wp-admin/plugins.php list */ .td-amp-plugin-warning { .transform(translateY(-1px)); .notice-warning { padding: 10px 12px; } } /* welcome panel > install plugins */ .td-wp-admin-welcome-plugin { padding: 0 !important; .td-plugin-image { display: inline-block; box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08); overflow: hidden; position: relative; height: auto !important; max-width: 130px !important; background-color: #fff; .transition(box-shadow 0.3s ease) } .td-plugin-meta { display: inline-block; width: auto !important; } &:hover { .td-plugin-image { .box-shadow(0 0 21px 0 rgba(0, 0, 0, 0.12)) } } } //white label .td-theme-wl .td-plugin-meta > p a { display: none; } .td-admin-setup-plugins { position: relative; form { display: flex; margin: 0 auto 30px; max-width: 680px; flex-direction: column; align-items: center; .theme-plugins-setup { margin: 13px auto 0; padding-left: 30px; li { display: flex; align-items: center; position: relative; font-weight: bold; margin-bottom: 3px; .spinner { margin-right: 0; } } } .td-button-install-wrap { margin: 0 auto; } .themes-plugin-txt, .themes-plugin-status { width: 140px; font-size: 12px; font-weight: 700; text-align: left; } .themes-plugin-status { display: flex; align-items: center; justify-content: flex-end; position: relative; font-style: italic; color: #0489fc; } } .theme-plugins-installed { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; visibility: hidden; opacity: 0; img { width: auto; margin-bottom: 10px; } } .theme-plugins-error-msg { margin-top: 0.8em; margin-bottom: 0.4em; text-align: center; font-size: 12px; line-height: 1.5; color: #f00; a { text-decoration: none; } } &.td-installing-plugins { background-color: #fff; opacity: 0.6; cursor: wait; .td-button-install-plugins { pointer-events: none; cursor: inherit; } } &.td-installed-plugins { form { visibility: hidden; opacity: 0; transition: opacity 0.4s ease-in-out; } .theme-plugins-installed { visibility: visible; opacity: 1; transition: opacity 0.4s ease-in-out; } } .td-button-install-plugins { &[disabled] { pointer-events: none; cursor: inherit; } } } includes/wp-booster/wp-admin/css/welcome.less000064400000001656150211537140015311 0ustar00 // full width admin box .td-admin-required-plugins { float: none; width: 100%; border-left:2px solid greenyellow; position: relative; .button { position: absolute; right:14px; top:19px; } } .td-admin-required-plugins-wrap { margin-right: 170px; } .td-admin-welcome-left { width: 600px; } .td-admin-doc-box { margin-top: 26px; } .td-admin-support { .about-text { margin-bottom: 32px; } } .about-wrap { h1 { font-size: 24px; font-weight: 700; margin: 0; } h2 { margin-bottom: .4em; font-size: 20px; line-height: 1.2; font-weight: 600; text-align: left; } h3 { padding-top: 13px; } .notice.td-plugins-deactivated-notice { display: block !important; } } .td-welcome-update-theme { display: none; } .td-theme-update { .td-welcome-update-theme { display: block; } } includes/wp-booster/wp-admin/css/wp-admin.css000064400000066676150211537140015231 0ustar00/* General CSS for WP admin panel */ .td-admin-wrap { position: relative; margin: 25px 40px 0 5px; max-width: 1050px; clear: both; } .td-admin-wrap p { font-size: 14px; line-height: 1.4; } .td-admin-wrap .td-plugin-required { display: inline-block; z-index: 1; position: absolute; padding: 0 6px; color: #fff; border-radius: 3px; font-size: 8px; vertical-align: middle; font-weight: 600; text-transform: uppercase; line-height: 16px; top: 8px; left: 8px; letter-spacing: 0.2px; background-color: #222; } .td-admin-wrap .td-plugin-required.td-required { background-color: #d93d4f; } .td-admin-wrap .td-plugin-required.td-optional { background-color: #0085ba; } .td-admin-wrap .td-plugin-required.td-active { background-color: #69bd32; } .td-admin-wrap .td-plugin-required.td-premium { background-color: #f4ae2b; } .td-admin-wrap .td-plugin-version { display: inline-block; height: 21px; z-index: 1; position: absolute; right: 0; padding: 0 9px; color: #fff; font-size: 10px; vertical-align: middle; font-weight: 700; text-transform: uppercase; line-height: 21px; letter-spacing: 0.2px; background-color: #222; } .td-admin-wrap .theme-screenshot { background-color: #fff; z-index: -1; overflow: auto; position: relative; /* responsive portrait phone */ } @media (min-width: 1298px) { .td-admin-wrap .theme-screenshot { height: 214px; } } .td-admin-wrap .theme .theme-actions { opacity: 1; height: 35px; padding-top: 7px; /* responsive portrait phone */ } @media (max-width: 782px) { .td-admin-wrap .theme .theme-actions { width: 96%; padding: 12px 2% 0; text-align: center; height: 46px; right: 1px; position: relative; border-top: 1px solid #dadada; } } .td-admin-wrap .theme .theme-actions .button { margin: 0; } .td-admin-wrap .theme .theme-actions .button:first-child { margin-right: 5px; } .td-admin-wrap .theme { cursor: auto !important; margin-bottom: 5%; /* responsive portrait phone */ } @media (min-width: 1600px) { .td-admin-wrap .theme { width: 30.6% !important; margin: 0 0 4% 4% !important; } } .td-admin-wrap .theme .theme-name { text-align: center; padding: 18px 10px; background-color: #f5f5f5; } .td-admin-wrap .theme:not(.active):hover .theme-actions { /* responsive portrait phone */ } @media (max-width: 780px) { .td-admin-wrap .theme:not(.active):hover .theme-actions { display: block; } } .td-admin-wrap.td-admin-plugins .theme:nth-of-type(3n+1) { margin-left: 0 !important; } .td-demo-page-content .theme .theme-actions .button { line-height: 14px; } /* ---------------------------------------------------------------------------- ap-admin header tabs */ .td-wp-admin-header .notice { margin: 20px 40px 0 40px; } .td-admin-box-text { float: left; padding: 10px 26px; background-color: #FFF; margin-bottom: 30px; margin-top: 15px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); border-radius: 3px; box-sizing: border-box; } .td-admin-box-text p { font-size: 14px; line-height: 23px; display: inline-block; margin: 12px 0 15px; } .td-admin-box-text .button { margin-right: 10px; vertical-align: middle !important; } .td-admin-box-text h3 { margin: 0; color: #111; font-size: 20px; font-weight: 700; line-height: 1.2; text-align: left; } .td-admin-columns { margin-top: 30px; } .td-admin-box-three { width: 32%; margin-right: 2%; /* responsive portrait phone */ } @media (max-width: 780px) { .td-admin-box-three { width: 100%; margin-bottom: 0; margin-right: 0; } } .td-admin-box-three .button { margin-bottom: 16px; margin-right: 10px; } .td-admin-box-three p { margin-right: 0; } .td-admin-box-last { margin-right: 0; } .td-admin-wrap .about-text { width: 80%; font-size: 14px; line-height: 1.4; } @media (max-width: 767px) { .td-admin-wrap .about-text { width: 100%; } } .td-admin-wrap ul { font-size: 14px; } .td-admin-wrap .td-small-checkbox { border-top: 1px solid #dadada; padding: 10px; min-height: 22px; } .td-admin-wrap .td-small-checkbox p { display: inline-block; font-size: 13px; margin: 0 0 0 5px; } .td-admin-wrap .td-small-checkbox .td-checbox-buton { top: 3px; width: 16px; height: 16px; left: 3px; background-color: #fff; background-image: none; } .td-admin-wrap .td-small-checkbox .td-checkbox { width: 39px; height: 22px; margin: 0; vertical-align: middle; } .td-admin-wrap .td-small-checkbox .td-checbox-buton-active { left: 20px; } .td-admin-wrap .td-small-checkbox .td-installed-text { /* responsive portrait phone */ } @media (max-width: 782px) { .td-admin-wrap .td-small-checkbox .td-installed-text { text-align: center; } } .td-admin-plugins .theme .theme-screenshot img { width: auto; margin: auto; left: 0; right: 0; bottom: 0; top: 0; max-width: none; /* responsive portrait phone */ } @media (max-width: 1300px) { .td-admin-plugins .theme .theme-screenshot img { max-height: 100%; } } .media-sidebar .gallery-settings .setting select { float: right; } @font-face { font-family: 'tagDiv'; src: url('../images/font/tagDiv.eot?3d2d3f'); src: url('../images/font/tagDiv.eot?#iefix3d2d3f') format('embedded-opentype'), url('../images/font/tagDiv.ttf?3d2d3f') format('truetype'), url('../images/font/tagDiv.woff?3d2d3f') format('woff'), url('../images/font/tagDiv.svg?3d2d3f#tagDiv') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"], [class*=" icon-"] { font-family: 'tagDiv'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-tagdiv-ico:before { content: "\e800"; } .icon-tagdiv-facebook:before { content: "\e818"; } .icon-tagdiv-twitter:before { content: "\e831"; } .icon-tagdiv-googleplus:before { content: "\e81b"; } .icon-tagdiv-pinterest:before { content: "\e825"; } .icon-tagdiv-whatsapp:before { content: "\f232"; } .icon-tagdiv-linkedin:before { content: "\e81f"; } .icon-tagdiv-reddit:before { content: "\e827"; } .icon-tagdiv-mail:before { content: "\e810"; } .icon-tagdiv-print:before { content: "\f02f"; } .icon-tagdiv-tumblr:before { content: "\e830"; } .icon-tagdiv-telegram:before { content: "\f2c6"; } .icon-tagdiv-stumbleupon:before { content: "\e82f"; } .icon-tagdiv-vk:before { content: "\e837"; } .icon-tagdiv-digg:before { content: "\e815"; } .icon-tagdiv-line:before { content: "\e906"; } .icon-tagdiv-viber:before { content: "\e907"; } .icon-tagdiv-drag:before { content: "\e25d"; } .icon-tagdiv-naver:before { content: "\e900"; } .icon-tagdiv-tiktok:before { content: "\e9d6"; } .icon-tagdiv-yandex:before { content: "\e9d7"; } .icon-tagdiv-flipboard:before { content: "\e9d9"; } .icon-tagdiv-discord:before { content: "\e901"; } .icon-tagdiv-copy_url:before { content: "\e931"; } .icon-tagdiv-kakao:before { content: "\e935"; } .icon-tagdiv-gettr:before { content: "\e930"; } .icon-tagdiv-koo:before { content: "\e902"; } body:not(.td-theme-wl) #toplevel_page_td_cake_panel .dashicons-before:before, body:not(.td-theme-wl) #toplevel_page_td_theme_welcome .dashicons-before:before, body:not(.td-theme-wl) #toplevel_page_tdb_cloud_templates .dashicons-before:before, body:not(.td-theme-wl) #menu-posts-tdb_templates .dashicons-before:before, body:not(.td-theme-wl) #menu-posts-tdc-review .dashicons-before:before { font-family: 'tagDiv'; content: "\e800"; font-size: 14px; top: 3px; position: relative; } @-moz-document url-prefix() { body:not(.td-theme-wl) #toplevel_page_td_cake_panel .dashicons-before:before, body:not(.td-theme-wl) #toplevel_page_td_theme_welcome .dashicons-before:before { top: 2px; } } #adminmenu #toplevel_page_td_cake_panel.current .wp-menu-name span { color: #fff !important; } .td-wp-admin-header { background-color: #fff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); border-radius: 3px; overflow: hidden; margin-left: 5px; } .td-wp-admin-header .td-wp-admin-top { display: flex; align-items: center; position: relative; } @media (max-width: 767px) { .td-wp-admin-header .td-wp-admin-top { flex-direction: column; text-align: center; } } .td-wp-admin-header .td-wp-admin-top:before { content: ""; width: 100%; height: 1px; background-color: #ececec; position: absolute; bottom: 0; } .td-wp-admin-header .td-theme-line { width: 1px; height: 16px; background-color: #e4e4e4; margin: 0 12px 0 8px; position: relative; top: 3px; display: inline-block; } .td-wp-admin-header .td-theme-key { font-weight: 700; } .td-wp-admin-header .td-theme-unregistered { padding: 4px 10px; cursor: default; -webkit-animation: alert-red 1s infinite ease-out; animation: alert-red 1s infinite ease-out; } .td-wp-admin-header h2.nav-tab-wrapper { border: none; padding: 10px 0; margin: 0; } .td-wp-admin-header .nav-tab { border: none; background: none; font-size: 14px; font-weight: 700; color: #000; } @media (min-width: 768px) and (max-width: 1140px) { .td-wp-admin-header .nav-tab { padding-right: 8px; padding-left: 8px; } } .td-wp-admin-header .nav-tab:hover, .td-wp-admin-header .nav-tab:focus, .td-wp-admin-header .nav-tab.nav-tab-active { color: #0489fc; } .td-wp-admin-header .td-wp-admin-theme { padding: 0 20px; } .td-wp-admin-header .td-wp-admin-theme span { font-size: 12px; } .td-wp-admin-header .td-welcome-version { padding-left: 20px; font-size: 14px; } @media (max-width: 767px) { .td-wp-admin-header .td-welcome-version { padding-left: 0; padding-bottom: 20px; } } .td-wp-admin-header .td-welcome-version b { font-weight: 700; } .td-wp-admin-header .td-tagdiv-brand { width: 75px; z-index: 1; } @-webkit-keyframes alert-red { 0% { background-color: #ffdad8; } 50% { background-color: #ffffff; } 100% { background-color: #ffdad8; } } @keyframes alert-red { 0% { background-color: #ffdad8; } 50% { background-color: #ffffff; } 100% { background-color: #ffdad8; } } .td-wp-admin-welcome { background-color: #fff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); border-radius: 3px; overflow: hidden; display: flex; } @media (max-width: 767px) { .td-wp-admin-welcome { flex-direction: column; } } .td-wp-admin-welcome img { align-self: center; width: auto; } .td-wp-admin-welcome .td-tagdiv-demos { width: 223px; } @media (min-width: 768px) and (max-width: 1140px) { .td-wp-admin-welcome .td-tagdiv-demos { width: 123px; } } .td-wp-admin-welcome .td-tagdiv-current-demo .td-wp-admin-button-simple { margin-top: 0; } .td-wp-admin-welcome .td-tagdiv-current-demo-img { width: 311px; box-shadow: 0 2px 8px 3px rgba(0, 0, 0, 0.16); position: absolute; top: 18px; right: -135px; z-index: 1; pointer-events: none; } .td-wp-admin-welcome .td-demo-img-left { right: auto; left: 50%; transform: translateX(-50%); top: 110px; opacity: 0.02; width: 100%; z-index: 0; } .td-wp-admin-welcome .td-tagdiv-disabled-demo-img { filter: grayscale(100%); -webkit-filter: grayscale(100%); } @media (max-width: 1279px) { .td-wp-admin-welcome .td-demo-img-right { display: none; } } .td-wp-admin-welcome h2 { margin: 0 0 6px; text-align: center; } .td-wp-admin-welcome .about-description { margin: 0; font-size: 13px; line-height: 1.4; color: #666; } .td-wp-admin-welcome .td-welcome-content { display: flex; flex-direction: column; text-align: center; margin: 35px 25px 0; flex: 1; } .td-wp-admin-welcome .td-welcome-content h2 { text-align: center; } .td-wp-admin-welcome .td-welcome-content svg { margin: 14px auto 30px; } .td-wp-admin-welcome .td-welcome-content .td-wp-admin-websites { text-align: center; padding: 15px 0 25px; flex: 1; z-index: 2; } .td-wp-admin-welcome .td-welcome-content .td-wp-admin-websites.td-tagdiv-disabled-demo { max-width: 470px; } .td-wp-admin-welcome .td-welcome-content .td-wp-admin-websites .about-description { margin: 0 15%; } .td-wp-admin-welcome .td-welcome-sidebar { width: 350px; border-left: 1px solid #f1f1f1; background-color: #fafafa; padding-top: 17px; } @media (min-width: 768px) and (max-width: 1140px) { .td-wp-admin-welcome .td-welcome-sidebar { width: 250px; } } @media (max-width: 767px) { .td-wp-admin-welcome .td-welcome-sidebar { width: 100%; } } .td-wp-admin-welcome .td-welcome-widget { border-bottom: 1px solid #f1f1f1; padding: 25px; } @media (min-width: 768px) and (max-width: 1140px) { .td-wp-admin-welcome .td-welcome-widget { padding: 15px; } } .td-wp-admin-welcome .td-welcome-widget h2 { font-size: 17px; font-weight: 700; } .td-wp-admin-welcome .td-welcome-widget .about-description { font-size: 12px; } .td-wp-admin-ok-svg { width: 40px; display: table; } .td-wp-admin-step-demos { display: flex; align-items: center; border-top: 1px solid #f1f1f1; border-bottom: 1px solid #f1f1f1; padding: 10px 0 0 0; margin-bottom: -1px; overflow: hidden; position: relative; } @media (max-width: 767px) { .td-wp-admin-step-demos { flex-direction: column; } } .td-wp-admin-button { display: inline-block; font-size: 13px; line-height: 32px; font-weight: 700; border-radius: 30px; background-color: #0489fc; text-decoration: none; padding: 0 20px; margin-top: 13px; } .td-wp-admin-button:hover, .td-wp-admin-button:focus { background-color: #0075da; } .post-type-acf-field-group .td-wp-admin-button, .acf-admin-page .td-wp-admin-button, .td-wp-admin-button { color: #fff; } .post-type-acf-field-group .td-wp-admin-button:hover, .acf-admin-page .td-wp-admin-button:hover, .td-wp-admin-button:hover, .post-type-acf-field-group .td-wp-admin-button:focus, .acf-admin-page .td-wp-admin-button:focus, .td-wp-admin-button:focus { color: #fff; } .td-wp-admin-button-simple { display: inline-block; font-size: 12px; line-height: 23px; font-weight: 700; border-radius: 30px; border: 2px solid #000; color: #000; text-decoration: none; padding: 0 11px 1px; margin-top: 13px; } .td-wp-admin-button-simple:hover, .td-wp-admin-button-simple:focus { color: #fff; background-color: #000; border-color: #000; } .td-wp-admin-button-simple-small { font-size: 10px; line-height: 17px; border: 1px solid #dedede; padding: 0 8px; margin: 0 0 0 15px; position: relative; top: -1px; } .td-wp-admin-button-license { border: none; color: #fff; padding: 2px 16px 3px; background-color: #000; } .td-wp-admin-button-license:hover, .td-wp-admin-button-license:focus { background-color: #6dc25f; } .td-widget-system-status h2 { padding-bottom: 10px; } .td-system-svg-icon { background-size: contain; background-repeat: no-repeat; background-position: 50% 100%; width: 12px; height: 12px; display: inline-block; margin-right: 10px; align-self: center; } .td-system-green { background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%236dc25f' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E"); } .td-system-yellow { background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='orange' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'%3E%3C/path%3E%3C/svg%3E"); } .td-wp-admin-status { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 3px; } .td-wp-admin-status span { font-size: 12px; } .td-wp-admin-status .td-system-desc { flex-basis: 145px; } .td-wp-admin-status .td-system-error { font-size: 11px; line-height: 1; color: #e49427; margin-bottom: 6px; display: block; flex-basis: 100%; } .td-wp-admin-status .td-system-error b { font-weight: 700; } .td-wp-admin-status .td-system-error a { font-weight: 600; color: #000; } .td-system-value { font-weight: 700; color: #000; } .td-admin-accordion { background-color: #fff; border-radius: 3px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); overflow: hidden; } .td-admin-accordion-title { display: flex; align-items: center; padding: 9px 12px 9px 22px; background-color: #fff; font-size: 16px; font-weight: 700; color: #1d2327; cursor: pointer; } .td-admin-accordion-title .td-box-close-open-icon { margin-left: auto; transition: transform 0.3s ease-in-out; } .td-admin-accordion-item-open .td-box-close-open-icon { transform: rotate(-180deg); } .td-admin-accordion-content { display: none; padding: 25px 22px; border-top: 1px solid #efefef; } .td-admin-accordion-content .about-text:first-child, .td-admin-accordion-content .about-text:first-child p { margin-top: 0; } .td-admin-accordion-content .about-text:last-child, .td-admin-accordion-content .about-text:last-child p { margin-bottom: 0; } /* ---------------------------------------------------------------------------- plugins list */ .td-admin-plugins { max-width: none; } .td-admin-plugins .td-admin-columns { margin-left: -10px; margin-right: -10px; } .td-admin-plugins .td-demo-thumb { border: none; } .td-admin-plugins .about-text { max-width: 1050px; } .td-wp-admin-plugin { max-width: 219px; display: inline-block; padding: 0 10px 22px; } .td-wp-admin-plugin:hover .td-plugin-image { -webkit-box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.12); } .td-plugin-image { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.08); overflow: hidden; position: relative; border-radius: 4px; height: 277px; background-color: #fff; -webkit-transition: box-shadow 0.3s ease; transition: box-shadow 0.3s ease; } .td-plugin-meta { font-size: 11px; width: 100%; text-align: center; font-family: 'Open Sans', arial, sans-serif; } .td-plugin-meta .theme-name { font-size: 15px; text-align: center; font-weight: bold; margin: 0; padding: 10px 10px 0; position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .td-plugin-meta p { font-family: 'Open Sans', arial, sans-serif; font-size: 12px; line-height: 14px; display: block; margin: 6px 10px; color: #999; height: 61px; overflow: hidden; } .td-plugin-meta p a { display: inline-block; margin: 6px 6px 0; } .td-plugin-meta p strong { color: #888; } .td-plugin-meta p.td-plugin-notice { font-size: 12px; color: red; opacity: 0.65; height: auto; } .td-plugin-meta .td-plugin-buttons { position: absolute; bottom: 0; width: 100%; } .td-plugin-meta .td-plugin-button { color: #888; line-height: 1; text-decoration: none; padding: 8px 15px 7px; display: block; position: relative; margin: 0 auto 15px; text-transform: uppercase; font-size: 10px; opacity: 0.8; } .td-plugin-meta .td-plugin-button:before { content: ''; position: absolute; top: 0; left: 0; border-radius: 50px; border: 1px solid #888; width: 100%; height: 100%; opacity: 0.4; z-index: -1; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; } .td-plugin-meta .td-plugin-button:hover:before { opacity: 0.6; } .td-demo-plugins-install { display: flex; flex-wrap: wrap; } .td-demo-plugins-install .theme-name { white-space: normal; line-height: 1; padding-bottom: 3px; } .td-demo-plugins-install .td-wp-admin-plugin { max-width: 257px; box-sizing: border-box; } .td-demo-plugins-install .td-plugin-image { border: 1px solid #ececec; } /* ---------------------------------------------------------------------------- buttons */ .td-wp-admin-plugin .td-button-install-plugin { display: none; color: #fff; } .td-wp-admin-plugin .td-button-install-plugin:before { border-color: #0085ba; background-color: #0085ba; opacity: 0.85; } .td-wp-admin-plugin .td-button-install-plugin:hover:before { opacity: 1; box-shadow: 0 2px 8px 0 rgba(0, 133, 186, 0.6); } .td-wp-admin-plugin .td-button-update-plugin { display: none; color: #fff; } .td-wp-admin-plugin .td-button-update-plugin:before { border-color: #0085ba; background-color: #0085ba; opacity: 0.85; } .td-wp-admin-plugin .td-button-update-plugin:hover:before { opacity: 1; box-shadow: 0 2px 8px 0 rgba(0, 133, 186, 0.6); } .td-wp-admin-plugin .td-plugin-version { right: 8px; top: 8px; height: auto; border-radius: 3px; padding: 0 6px; font-size: 8px; line-height: 16px; } .td-wp-admin-plugin .td-button-uninstall-plugin { display: none; } .td-wp-admin-plugin .td-button-activate-plugin { display: none; color: #fff; } .td-wp-admin-plugin .td-button-activate-plugin:before { border-color: #40a200; background-color: #40a200; opacity: 0.85; } .td-wp-admin-plugin .td-button-activate-plugin:hover:before { opacity: 1; box-shadow: 0 2px 8px 0 rgba(64, 162, 0, 0.6); } .td-plugin-active .td-button-uninstall-plugin { display: inline-block; } .td-plugin-active .td-plugin-image { box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.08); border-top: 2px solid #69bd32; } .td-plugin-inactive .td-button-activate-plugin { display: inline-block; } .td-plugin-not-installed .td-button-install-plugin { display: inline-block; } .td-plugin-update .td-button-update-plugin { display: inline-block; } .td-plugin-update .td-button-update-plugin { margin-right: 5px; } .td-plugin-update .td-button-uninstall-plugin { padding-left: 8px; padding-right: 8px; } .td-plugin-update .td-button-uninstall-plugin:before { display: none; } .td-plugin-no-install .theme-actions { display: none; } /* ---------------------------------------------------------------------------- supported plugin list */ .td-supported-plugin-list { max-width: 800px; margin-top: 30px; } .td-supported-plugin { padding-bottom: 5px; margin-top: 5px; border-bottom: 1px solid #e9e9e9; position: relative; } .td-supported-plugin p { margin: 0; font-weight: 600; font-size: 12px; line-height: 1.4; } .td-supported-plugin span { position: absolute; left: 210px; top: 0; font-size: 12px; line-height: 1.4; color: #797979; } /* ---------------------------------------------------------------------------- wp-admin/plugins.php list */ .td-amp-plugin-warning { transform: translateY(-1px); -webkit-transform: translateY(-1px); } .td-amp-plugin-warning .notice-warning { padding: 10px 12px; } /* welcome panel > install plugins */ .td-wp-admin-welcome-plugin { padding: 0 !important; } .td-wp-admin-welcome-plugin .td-plugin-image { display: inline-block; box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08); overflow: hidden; position: relative; height: auto !important; max-width: 130px !important; background-color: #fff; -webkit-transition: box-shadow 0.3s ease; transition: box-shadow 0.3s ease; } .td-wp-admin-welcome-plugin .td-plugin-meta { display: inline-block; width: auto !important; } .td-wp-admin-welcome-plugin:hover .td-plugin-image { -webkit-box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.12); } .td-theme-wl .td-plugin-meta > p a { display: none; } .td-admin-setup-plugins { position: relative; } .td-admin-setup-plugins form { display: flex; margin: 0 auto 30px; max-width: 680px; flex-direction: column; align-items: center; } .td-admin-setup-plugins form .theme-plugins-setup { margin: 13px auto 0; padding-left: 30px; } .td-admin-setup-plugins form .theme-plugins-setup li { display: flex; align-items: center; position: relative; font-weight: bold; margin-bottom: 3px; } .td-admin-setup-plugins form .theme-plugins-setup li .spinner { margin-right: 0; } .td-admin-setup-plugins form .td-button-install-wrap { margin: 0 auto; } .td-admin-setup-plugins form .themes-plugin-txt, .td-admin-setup-plugins form .themes-plugin-status { width: 140px; font-size: 12px; font-weight: 700; text-align: left; } .td-admin-setup-plugins form .themes-plugin-status { display: flex; align-items: center; justify-content: flex-end; position: relative; font-style: italic; color: #0489fc; } .td-admin-setup-plugins .theme-plugins-installed { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; visibility: hidden; opacity: 0; } .td-admin-setup-plugins .theme-plugins-installed img { width: auto; margin-bottom: 10px; } .td-admin-setup-plugins .theme-plugins-error-msg { margin-top: 0.8em; margin-bottom: 0.4em; text-align: center; font-size: 12px; line-height: 1.5; color: #f00; } .td-admin-setup-plugins .theme-plugins-error-msg a { text-decoration: none; } .td-admin-setup-plugins.td-installing-plugins { background-color: #fff; opacity: 0.6; cursor: wait; } .td-admin-setup-plugins.td-installing-plugins .td-button-install-plugins { pointer-events: none; cursor: inherit; } .td-admin-setup-plugins.td-installed-plugins form { visibility: hidden; opacity: 0; transition: opacity 0.4s ease-in-out; } .td-admin-setup-plugins.td-installed-plugins .theme-plugins-installed { visibility: visible; opacity: 1; transition: opacity 0.4s ease-in-out; } .td-admin-setup-plugins .td-button-install-plugins[disabled] { pointer-events: none; cursor: inherit; } .td-admin-required-plugins { float: none; width: 100%; border-left: 2px solid greenyellow; position: relative; } .td-admin-required-plugins .button { position: absolute; right: 14px; top: 19px; } .td-admin-required-plugins-wrap { margin-right: 170px; } .td-admin-welcome-left { width: 600px; } .td-admin-doc-box { margin-top: 26px; } .td-admin-support .about-text { margin-bottom: 32px; } .about-wrap h1 { font-size: 24px; font-weight: 700; margin: 0; } .about-wrap h2 { margin-bottom: .4em; font-size: 20px; line-height: 1.2; font-weight: 600; text-align: left; } .about-wrap h3 { padding-top: 13px; } .about-wrap .notice.td-plugins-deactivated-notice { display: block !important; } .td-welcome-update-theme { display: none; } .td-theme-update .td-welcome-update-theme { display: block; } .vc-license-activation-notice { display: none; } #vc_properties-panel .wp-color-result { margin-bottom: 0; } #vc_properties-panel .vc_description { margin-top: 4px; } /* ---------------------------------------------------------------------------- MIXING functions */ .td-panel-remove-transitions { -webkit-transition-property: initial; transition-property: initial; -webkit-transition-duration: 0s; transition-duration: 0s; -webkit-transition-timing-function: initial; transition-timing-function: initial; } .td-visual-selector-o a { outline: 0; } a:focus { box-shadow: none; } /* ---------------------------------------------------------------------------- tgma plugin */ .td-tgma-tip { color: #4db2ec; } #tgmpa-plugins .install, #tgmpa-plugins .activate { visibility: visible; } #tgmpa-plugins .tgmpa-type-required > th { border-left: 3px solid #dc3232; } /* ---------------------------------------------------------------------------- Customizer */ .preview-tablet .wp-full-overlay-main { width: 768px; } includes/wp-booster/wp-admin/css/general.less000064400000041267150211537140015275 0ustar00/* General CSS for WP admin panel */ // admin wrap .td-admin-wrap { position: relative; margin: 25px 40px 0 5px; max-width: 1050px; clear: both; p { font-size: 14px; line-height: 1.4; } .td-plugin-required { display: inline-block; z-index: 1; position: absolute; padding: 0 6px; color: #fff; border-radius: 3px; font-size: 8px; vertical-align: middle; font-weight: 600; text-transform: uppercase; line-height: 16px; top: 8px; left: 8px; letter-spacing: 0.2px; background-color: #222; &.td-required { background-color: #d93d4f; } &.td-optional { background-color: #0085ba; } &.td-active { background-color: #69bd32; } &.td-premium{ background-color: #f4ae2b; } } .td-plugin-version { display: inline-block; height: 21px; z-index: 1; position: absolute; right: 0; padding: 0 9px; color: #fff; font-size: 10px; vertical-align: middle; font-weight: 700; text-transform: uppercase; line-height: 21px; letter-spacing: 0.2px; background-color: #222; } .theme-screenshot { background-color: #fff; z-index: -1; overflow: auto; position: relative; /* responsive portrait phone */ @media (min-width: 1298px) { height: 214px; } } .theme .theme-actions { opacity: 1; height: 35px; padding-top: 7px; /* responsive portrait phone */ @media (max-width: 782px) { width: 96%; padding: 12px 2% 0; text-align: center; height: 46px; right: 1px; position: relative; border-top: 1px solid #dadada; } .button { margin: 0; &:first-child { margin-right: 5px; } } } .theme { cursor: auto !important; margin-bottom: 5%; /* responsive portrait phone */ @media (min-width: 1600px) { width: 30.6% !important; margin: 0 0 4% 4% !important; } .theme-name { text-align: center; padding: 18px 10px; background-color: #f5f5f5; } } // buttons .theme:not(.active):hover .theme-actions { /* responsive portrait phone */ @media (max-width: 780px) { display: block; } } &.td-admin-plugins .theme:nth-of-type(3n+1) { margin-left: 0 !important; } } // demo install page button align .td-demo-page-content .theme .theme-actions .button { line-height: 14px; } /* ---------------------------------------------------------------------------- ap-admin header tabs */ .td-wp-admin-header { .notice { margin: 20px 40px 0 40px; } } .td-admin-box-text { float: left; padding: 10px 26px; background-color: #FFF; margin-bottom: 30px; margin-top: 15px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); border-radius: 3px; box-sizing: border-box; p { font-size: 14px; line-height: 23px; display: inline-block; margin: 12px 0 15px; } .button { margin-right: 10px; vertical-align: middle !important; } h3 { margin: 0; color: #111; font-size: 20px; font-weight: 700; line-height: 1.2; text-align: left; } } .td-admin-columns { margin-top: 30px; } // three columns .td-admin-box-three { width: 32%; margin-right: 2%; /* responsive portrait phone */ @media (max-width: 780px) { width: 100%; margin-bottom: 0; margin-right: 0; } .button { margin-bottom: 16px; margin-right: 10px; } p { margin-right: 0; } } .td-admin-box-last { margin-right: 0; } .td-admin-wrap .about-text { width: 80%; font-size: 14px; line-height: 1.4; @media (max-width: 767px) { width: 100%; } } // install demos .td-admin-wrap { ul { font-size: 14px; } // small checkbox .td-small-checkbox { border-top: 1px solid #dadada; padding: 10px; min-height: 22px; p { display: inline-block; font-size: 13px; margin: 0 0 0 5px; } .td-checbox-buton { top: 3px; width: 16px; height: 16px; left: 3px; background-color: #fff; background-image: none; } .td-checkbox { width: 39px; height: 22px; margin: 0; vertical-align: middle; } .td-checbox-buton-active { left: 20px; } .td-installed-text { /* responsive portrait phone */ @media (max-width: 782px) { text-align: center; } } } } // plugins page .td-admin-plugins { .theme .theme-screenshot img { width: auto; margin: auto; left: 0; right: 0; bottom: 0; top: 0; max-width: none; /* responsive portrait phone */ @media (max-width: 1300px) { max-height: 100%; } } } // modal gallery WordPress panel .media-sidebar .gallery-settings .setting select { float: right; } // wp-admin icon @font-face { font-family: 'tagDiv'; src:url('../images/font/tagDiv.eot?3d2d3f'); src:url('../images/font/tagDiv.eot?#iefix3d2d3f') format('embedded-opentype'), url('../images/font/tagDiv.ttf?3d2d3f') format('truetype'), url('../images/font/tagDiv.woff?3d2d3f') format('woff'), url('../images/font/tagDiv.svg?3d2d3f#tagDiv') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"], [class*=" icon-"] { font-family: 'tagDiv'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-tagdiv-ico:before { content: "\e800"; } .icon-tagdiv-facebook:before { content: "\e818"; } .icon-tagdiv-twitter:before { content: "\e831"; } .icon-tagdiv-googleplus:before { content: "\e81b"; } .icon-tagdiv-pinterest:before { content: "\e825"; } .icon-tagdiv-whatsapp:before { content: "\f232"; } .icon-tagdiv-linkedin:before { content: "\e81f"; } .icon-tagdiv-reddit:before { content: "\e827"; } .icon-tagdiv-mail:before { content: "\e810"; } .icon-tagdiv-print:before { content: "\f02f"; } .icon-tagdiv-tumblr:before { content: "\e830"; } .icon-tagdiv-telegram:before { content: "\f2c6"; } .icon-tagdiv-stumbleupon:before { content: "\e82f"; } .icon-tagdiv-vk:before { content: "\e837"; } .icon-tagdiv-digg:before { content: "\e815"; } .icon-tagdiv-line:before { content: "\e906"; } .icon-tagdiv-viber:before { content: "\e907"; } .icon-tagdiv-drag:before { content: "\e25d"; } .icon-tagdiv-naver:before { content: "\e900"; } .icon-tagdiv-tiktok:before { content: "\e9d6"; } .icon-tagdiv-yandex:before { content: "\e9d7"; } .icon-tagdiv-flipboard:before { content: "\e9d9"; } .icon-tagdiv-discord:before { content: "\e901"; } .icon-tagdiv-copy_url:before { content: "\e931"; } .icon-tagdiv-kakao:before { content: "\e935"; } .icon-tagdiv-gettr:before { content: "\e930"; } .icon-tagdiv-koo:before { content: "\e902"; } // don't apply on white label body:not(.td-theme-wl) { #toplevel_page_td_cake_panel, #toplevel_page_td_theme_welcome, #toplevel_page_tdb_cloud_templates, #menu-posts-tdb_templates, #menu-posts-tdc-review { .dashicons-before:before { font-family: 'tagDiv'; content: "\e800"; font-size: 14px; top: 3px; position: relative; } } @-moz-document url-prefix() { #toplevel_page_td_cake_panel .dashicons-before:before, #toplevel_page_td_theme_welcome .dashicons-before:before { top: 2px; } } } // activate theme button color when active #adminmenu #toplevel_page_td_cake_panel.current .wp-menu-name span { color: #fff !important; } // new welcome page .td-wp-admin-header { background-color: #fff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); border-radius: 3px; overflow: hidden; margin-left: 5px; .td-wp-admin-top { display: flex; align-items: center; position: relative; @media (max-width: 767px) { flex-direction: column; text-align: center; } &:before { content: ""; width: 100%; height: 1px; background-color: #ececec; position: absolute; bottom: 0; } } .td-theme-line { width: 1px; height: 16px; background-color: #e4e4e4; margin: 0 12px 0 8px; position: relative; top: 3px; display: inline-block; } .td-theme-key { font-weight: 700; } .td-theme-unregistered { padding: 4px 10px; cursor: default; -webkit-animation: alert-red 1s infinite ease-out; animation: alert-red 1s infinite ease-out; } h2.nav-tab-wrapper { border: none; padding: 10px 0; margin: 0; } .nav-tab { border: none; background: none; font-size: 14px; font-weight: 700; color: #000; @media (min-width: 768px) and (max-width: 1140px) { padding-right: 8px; padding-left: 8px; } &:hover, &:focus, &.nav-tab-active { color: #0489fc; } } .td-wp-admin-theme { padding: 0 20px; span { font-size: 12px; } } .td-welcome-version { padding-left: 20px; font-size: 14px; @media (max-width: 767px) { padding-left: 0; padding-bottom: 20px; } b { font-weight: 700; } } .td-tagdiv-brand { width: 75px; z-index: 1; } } @-webkit-keyframes alert-red { 0% { background-color: #ffdad8; } 50% { background-color: #ffffff; } 100% { background-color: #ffdad8; } } @keyframes alert-red { 0% { background-color: #ffdad8; } 50% { background-color: #ffffff; } 100% { background-color: #ffdad8; } } // welcome page .td-wp-admin-welcome { background-color: #fff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); border-radius: 3px; overflow: hidden; display: flex; @media (max-width: 767px) { flex-direction: column; } img { align-self: center; width: auto; } .td-tagdiv-demos { width: 223px; @media (min-width: 768px) and (max-width: 1140px) { width: 123px; } } .td-tagdiv-current-demo { .td-wp-admin-button-simple { margin-top: 0; } } .td-tagdiv-current-demo-img { width: 311px; box-shadow: 0 2px 8px 3px rgba(0, 0, 0, 0.16); position: absolute; top: 18px; right: -135px; z-index: 1; pointer-events: none; } .td-demo-img-left { right: auto; left: 50%; transform: translateX(-50%); top: 110px; opacity: 0.02; width: 100%; z-index: 0; } .td-tagdiv-disabled-demo-img { filter: grayscale(100%); -webkit-filter: grayscale(100%); } .td-demo-img-right { @media (max-width: 1279px) { display: none; } } h2 { margin: 0 0 6px; text-align: center; } .about-description { margin: 0; font-size: 13px; line-height: 1.4; color: #666; } // content .td-welcome-content { display: flex; flex-direction: column; text-align: center; margin: 35px 25px 0; flex: 1; h2 { text-align: center; } svg { margin: 14px auto 30px; } .td-wp-admin-websites { text-align: center; padding: 15px 0 25px; flex: 1; z-index: 2; &.td-tagdiv-disabled-demo { max-width: 470px; } .about-description { margin: 0 15%; } } } // sidebar .td-welcome-sidebar { width: 350px; border-left: 1px solid #f1f1f1; background-color: #fafafa; padding-top: 17px; @media (min-width: 768px) and (max-width: 1140px) { width: 250px; } @media (max-width: 767px) { width: 100%; } } .td-welcome-widget { border-bottom: 1px solid #f1f1f1; padding: 25px; @media (min-width: 768px) and (max-width: 1140px) { padding: 15px; } h2 { font-size: 17px; font-weight: 700; } .about-description { font-size: 12px; } } } .td-wp-admin-ok-svg { width: 40px; display: table; } .td-wp-admin-step-demos { display: flex; align-items: center; border-top: 1px solid #f1f1f1; border-bottom: 1px solid #f1f1f1; padding: 10px 0 0 0; margin-bottom: -1px; overflow: hidden; position: relative; @media (max-width: 767px) { flex-direction: column; } } // wp-admin custom buttons .td-wp-admin-button { display: inline-block; font-size: 13px; line-height: 32px; font-weight: 700; border-radius: 30px; background-color: #0489fc; text-decoration: none; padding: 0 20px; margin-top: 13px; &:hover, &:focus { background-color: #0075da; } } .post-type-acf-field-group .td-wp-admin-button, .acf-admin-page .td-wp-admin-button, .td-wp-admin-button { color: #fff; &:hover, &:focus { color: #fff; } } .td-wp-admin-button-simple { display: inline-block; font-size: 12px; line-height: 23px; font-weight: 700; border-radius: 30px; border: 2px solid #000; color: #000; text-decoration: none; padding: 0 11px 1px; margin-top: 13px; &:hover, &:focus { color: #fff; background-color: #000; border-color: #000; } } .td-wp-admin-button-simple-small { font-size: 10px; line-height: 17px; border: 1px solid #dedede; padding: 0 8px; margin: 0 0 0 15px; position: relative; top: -1px; } .td-wp-admin-button-license { border: none; color: #fff; padding: 2px 16px 3px; background-color: #000; &:hover, &:focus { background-color: #6dc25f; } } // system status .td-widget-system-status { h2 { padding-bottom: 10px; } } .td-system-svg-icon { background-size: contain; background-repeat: no-repeat; background-position: 50% 100%; width: 12px; height: 12px; display: inline-block; margin-right: 10px; align-self: center; } .td-system-green { background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%236dc25f' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'%3E%3C/path%3E%3C/svg%3E");; } .td-system-yellow { background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='orange' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'%3E%3C/path%3E%3C/svg%3E"); } .td-wp-admin-status { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 3px; span { font-size: 12px; } .td-system-desc { flex-basis: 145px; } .td-system-error { font-size: 11px; line-height: 1; color: #e49427; margin-bottom: 6px; display: block; flex-basis: 100%; b { font-weight: 700; } a { font-weight: 600; color: #000; } } } .td-system-value { font-weight: 700; color: #000; } // accordion .td-admin-accordion { background-color: #fff; border-radius: 3px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12); overflow: hidden; } .td-admin-accordion-title { display: flex; align-items: center; padding: 9px 12px 9px 22px; background-color: #fff; font-size: 16px; font-weight: 700; color: #1d2327; cursor: pointer; .td-box-close-open-icon { margin-left: auto; transition: transform .3s ease-in-out; } } .td-admin-accordion-item-open .td-box-close-open-icon { transform: rotate(-180deg); } .td-admin-accordion-content { display: none; padding: 25px 22px; border-top: 1px solid #efefef; .about-text { &:first-child { &, p { margin-top: 0; } } &:last-child { &, p { margin-bottom: 0; } } } }includes/wp-booster/wp-admin/css/wp-admin.less000064400000003466150211537140015373 0ustar00@font_open_sans:'Open Sans', arial, sans-serif; @font_ubuntu:'Ubuntu', sans-serif; @import "general.less"; @import "plugins.less"; @import "welcome.less"; //hide visual composer .vc-license-activation-notice { display: none; } #vc_properties-panel { .wp-color-result { margin-bottom: 0; } .vc_description { margin-top: 4px; } } /* ---------------------------------------------------------------------------- MIXING functions */ .td-panel-remove-transitions { -webkit-transition-property: initial; transition-property: initial; -webkit-transition-duration: 0s; transition-duration: 0s; -webkit-transition-timing-function: initial; transition-timing-function: initial; } // Transitions .transition(@transition) { -webkit-transition: @transition; transition: @transition; } // Transform .transform(@string){ transform: @string; -webkit-transform: @string; } // Drop shadows .box-shadow(@shadow) { -webkit-box-shadow: @shadow; box-shadow: @shadow; } // mixin // Sprite Function .stitches-sprite(@x: 0, @y: 0, @width: 0, @height: 0) { background-position: @x @y; width: @width; height: @height; } // remove links outline .td-visual-selector-o a { outline: 0; } // firefox remove box-shadow on focus a:focus { box-shadow: none; } /* ---------------------------------------------------------------------------- tgma plugin */ .td-tgma-tip { color:#4db2ec; } #tgmpa-plugins { .install, .activate { visibility: visible; } .tgmpa-type-required > th { border-left: 3px solid #dc3232; } } /* ---------------------------------------------------------------------------- Customizer */ //Tablet preview .preview-tablet .wp-full-overlay-main { width: 768px; }includes/wp-booster/wp-admin/tagdiv-view-welcome.php000064400000027643150211537140016572 0ustar00

    Fast Start Your Website

    theme_plugins(); ?>

    2. Prebuilt Website Installed:

    Other Prebuilt Websites

    Pre-built website installed is unavailable

    This Pre-built website is not available for the current theme version. Please update the theme or install a different pre-built website.

    Check for updates Choose a Pre-built Website

    2. Choose to Install a Prebuilt Website

    Dozens of Ready-to-use Prebuilt Websites are waiting you. Build your site in minutes!

    Prebuilt Websites

    System Status

    PHP Version = 0) { ?>

    ⤏ You should use PHP 7 (recommended: PHP 7.4 or above).
    WP Memory Limit = 268435456) { ?>

    ⤏ We recommend memory to at least 256 MB. Read more
    PHP Execution Time = 60) { ?>

    ⤏ We recommend to increase this value to 60 or more. Read more
    PHP Max Input Vars = 2000) { ?>

    ⤏ We recommend to increase this value to 2000 or more. Read more
    Full System Status

    Buy Another License

    If you do not have a license or you need a new one for your next project, you can easily get one.

    Purchase License Now

    tagDiv Cloud Library

    Quickly improve your beautiful website. Over 1350+ One-Click, ready-to-download Templates & Elements are waiting for you.

    Access Library
    includes/wp-booster/wp-admin/images/plugins/cloud-templates.jpg000064400000055437150211537140020736 0ustar00ExifII*DuckyPhttp://ns.adobe.com/xap/1.0/ &Adobed Z)>[      ,  0!13"2@P56A4`p#C  !1AQ"2q3aB#t5Rb$ 0rCs4Ec6%DT&! 10@pPA`aq"3!1AQaq 0P@ QCFGL GH$!0$$آ::6<`l$du( GL$P(Ɂ" &DYspږW ;˘Mi}9G ptOٍ+~}?Sz~7~sbպU>K{5R=_N~_Iʼn{O3iOMc8]YY-;kx0AmN=e3lIfff5,KL@"!xHYYcbڟi1DfH>_WܰJx^LּݫZVJ'[5rH8JueymOxݲ̩, iV޿ ,lnVJtiLnW&`1-n n7)ȴwq+5fϵ>cp28(h4 pX|hu/ח^wm6oWr_k_Zߛ-=/o?f>.;G~HF ĉ(cxQ$ʦc^Fͤ8kZr,Z"DZ`+sozefb V[֛.KZNyK׻,HkN%K=Y}-fu}~lX2(]+•?P jD>T*ƚwrS\ljO}gVQ1/k{Xo ^`^0Яo ^ȉ{hW"%ȉ;@rc\&4`5rb\&%ȈLkDS'$tn9R>l {̆ Ιǚe ХykAxɲ0:lqϑo2"]/ZOұ4| @b>buc#y^6ܭ l16V6F ӏ!db՛fGp>1 ne7:nNK7;ߴ>>>͡;Nv~@\tGBʙ!#k;sumOnɸ ]S2fF)#hZG8Br4}8c];Wv‡=[Vӆ$Td[)ͫPz[c&=^#IONۆ(yo#] wJto}͞YI th+'[91 t_tͷiY>62`-skX KM^/7xGcz>"""y quGB/wkym=۝|ֵ# l{-7Lzԭ؟ԝ#3F;fmXj ]a|K/u.%MSKN+ U'H2@TX_ ]a|K/u.^ 66~%ĺX_ ]a|K/ufz " *+a@Hq{ 4eʍQNQz{s-{WJ1q,qÏ0`Ǖ.0ԝ$lFhWr^%{T&q 1ϋN@ɔd1HTMJ f3׳vOs2$:ad{& o7Bc z/Ћlv{.S/մPVVvG83lXws 1+"'tjX7,]:wo6ڎ_^s.j9m+SԱngz1YoʙuW4u[-NfB^|*պ&`I,OYd=/Wd9 XDۺn`= <[~6>+l3|lݭDc< :&jMʂ'uIYeuH@zrelsshnPvoM>د?Ͷ#}l@~ƝӺ0e7*vZ/,[U{W^{W+دb+؁ @2+>K;b+دb ASLu1p @.D wCvI꼘W&Ʌra\W&ɅuYf~79L ddʺnֻwMBpmir}^?EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEDx?#nDFWrY dK $SOYk-NlLpNһ.c]`ʝ-Mv&T`Q=yRTId]yhsb{2з7iAJf M̛6U$olg&{?jڿ5Qle2V,x#r%Y(7Ia9i4S<|Y$c|FN-k[19@Es}4ŒUҗ3aq ;?YvMF))ci#y*dAZx&:QOa`k]iEnPwکqa%3/wN X}0Ar5qݳ)csX?: Sϕ7gNoks WsXRjt3e9D /E\<0;yOglu&u hkC`ⰶC"eP'rspD^u& d\pڧH-s^e z8uqbSϺi+wN 07 `nॖL[co·2Lww dd7Qtqk6p@ 5N{M>XfϜ> /h`<0Li-rЭ 'e+入я*y93rNAf~I'hݴ/WXङf:1&95-h{0{|ތrf2iݾu+rZȷwvJC2\5qy-Tֶ%QINq>*sw~ue<'DXBx’֌N47=>Vjj,˝Ud'mê Ol*)5ي Գe!*8";Bgğfnew iyVmv,f7 ѣSP{@k%іNV4b;r-.&w9v#k4!)r{ґ|~ݛUʬf0LML$ ~+ ۇx̠}.*ݦЋEiC7v*{Tnۄ@ u] kKK6 /:+m+Dr鍿p?jQE1^!>}$NٙP6kCL.kئR:D褱ذ@,QJl͒Q)ҝ27:ZL.C" dQv8>|jV]Nt9;KyIFg`Zfk廥uҵi'̻cwy;wź*;wbۿ1X]9屉llٙ2?vM*eL˚jZcbdڊۊ[p56tOnB$hΪn:tfdU2ilI1Wnƿ-5&yFu<0 1hQ2F,qآg-qF+{^{˦v-n `oI[H,5bcgڊ̬aEZ0n?M`i-NUyT.eoy3 GoU3{fL^٣S:WhΕ?E3{fL^٣S:Unifʡϖo0 1j RJsF^,n2 [.^ ƹ #sIB@l_j;KCiddi8!.Hse5_wcjOsH2X`˭uMh<g&}BFpi=(B.ѷoj|?@ wySXH &ш }DS6&jY"1*FmZ)#vu>iw.nghr:ugyCe/ilBT#J7ҬP6[| h7j;9$5Õh:]+++*|Jm4/Q#s^n:-l G;d4n<<~?ʥ~HF/s5;||#";ZQMˀ S4;3ЩiKED%KTu h~<.wc \3\fvH.f7f\lD2T,V 9^GB,]/do_&jT[>Sd-kuݵ3&08φmy8*Z̨$ӵ$R7lj8PvV25@yx]v$M2@$6͈ҳtϒ%>80j0 ZxNbM3zW2}?FG ,>Bn/vaWCggC__NtvXqFT݌K&bB1=ˈ,BGbBOfDT&ٓ,:>œ mȞʦ0'Js&:>td ͛2U6rղv.{&F])ak&<'7naŅ6}5Vl1iBcm^clF.m4FF/Ks0&t%Vl~]f&&^i h`lsd?thlX_Zz[IN\B0,IO-8T.K\gh-A*V藺YB-`#[?)E&l +-E[$ȣ*{&ӣ ԃMi|{-eέgw"?o&(kOxPKҞre{D\f&x#/bL9!^uZYk+զ Yk-eVZфFt-Q7-.mZYk-e82EzdovpnFl-&ᢵ$@y!u,BY䅿e0C:%o}M>;R$.H]KB 2esA*,B B|s9V-A8%oS[:jP jA';@)"LR.t! kͦ Dф,O2x\iD[fNkw?7DA{kvrb-OٸCtr@v܆ⲱ;fKܣڐls3&Ztxѝ0RS C\KY*SD\]@Su2 ̘wb3qp2LLk9A=MvE`{Zw'7)MeR$spqr PP-߫oSʼ{^T+~k_U;x§JU=]ֿ[ٹPC&xx]n#{S-??!d3:yYi.!`՜Ed)M>G1]}p"$f(<&S¥c̷؈u9UŇqtzjw+{2~ wI5ʻ?I6G >p($ǣCd̯]=}^n#3Ȫ.Fs-9d T s_zKǗp%+ѹ/ǩOY/,mJyUMjW$AЦv2Īl%)E DP!B +@p.-L9vj)$c-캣@̈́8!tejKN#) #,T^.;ԳwA[{`0f 綠iFXfK xD'|-,KypĶ%;kX࿨m172M6}Ka'< O;#+2v~q}8CMi0BQpa#qs !vQU\'phĹԭ͖&AGA4?"W1v6XO<=PnQ/" ׌!+o`YFR22M%\!&3yt [ \'>PbWi"-cv9%6 ?4%vc/ZYTk]:Qq_'agJ=4h-UL\9NvH8C쯁xI*̖ۘj4o.mw4.o$8qqQ^FSYvAj^WkMCeN_12WwpkmX<E5 0tg )ԭ#ѻcGzON:t=A"k4zeݛD"VqƁNr܌9$CCN:tLr~t+_g~}XC DNNDzz|z4|DI[ Gy~GW4kfR%C?wjJMQj\ ʐ3!{a%,mB!9SduǪBt$n-_N,ao1_|zo oDs7ypREWY_iUS PÖ؇eI`A#pEMT**Z1bzW_tFakoiF(&+mhV,X٧5fBm<A%D->Z;k{,n1˂=Puz#wC -ӟ+G)znq ?} n/XQl0fF9N[(.u_bq.,?%|w,>MI~~ЂPmI=.U'Q^v!o|5x]Z!(~9va;STbC, af% Ga6en?hӈqQ.(1ݖdh0V0}dTo&<'|t(oyZ}+qFwygՖ[eŒSdR }Jת+JQGZ/uprʗbb[5:#٘Vc|D[ _\m'iA{y OQPh)TVU  )SnlqH8oC:Ayx GF=}R/8N_Opg$'򍀧dhPYS)e~%Z[՟g=YJ*Xv 4=iOZ֟=iOZdEGj A7pĬ \*e%QUR[b|uKĢH,^lƛ'?I5Uw\hnLrWN=ܨ3UK%Ͼ|! VĮBxG :i-bMbCI|$5YeYkl/܁h/x{9sq#ysmNl/Ene Z5) w6 G%0U1^bH瀫-KlqbU hxGG.hSE֦Փ;08@x.yɦ7Asw6iA}#Lh=o<޸н=?~}7;CՎc{'>>]/_>O}BFzWϟO{8@?|ڟ?!++++++++++++++++++++++++++++++++++6=~߮ou6Ad4Yo\CR xNm)Ib*߮Au?ToN俀V/մbmK?11?oY}/N`\ |-H!Ck|0Yq`o]`K1QYUUߙ]C7֮cx|#= )nIloο J:j wгu*o_Jit-[u[~r˗Թ!軗.|MHwu}|M/M?!˗.\r˗.\r˗.\r˗.\rë :ί*TR_x=1*FTac-\mSX2MZeu w_XwXwY}fP:hbo5eJtxTտ܀7-}g{xkћCҿ[(sc* PnutN_Vm _dePn4sϏw+= 'gӡ|?Hka0K|m*%k6PH0IP̷Ώ^ bZ;1hoCW K.\#*TRJӴTRJ+J*TRjAta?DuA U^ ^^_ouA`H_Լáޑ!w\aƮS2 OX|čJД%Z:˗/r=`;0 0Ǝ"n[K@5ul")Wá4ˍgWՌ>&U+#蟀!S0Iz|c  $$ K-$dmYI$mI$I$$Y$I$I$I%@ mmYd[mIAI$B5$-l4*CnԐgOCVaS <5}7}<Az hT,%FeI$I ͱ&t#v/ h HMhY` xLC$A"V:F"p$$$II$) g$N砂H $L)&i6 7PO?* ?Xz)_HufW6%ײ G>UߎĴG&f1cQxd=ʲ>;CЗ]h?9 ό_Q0BJ2c ~K6 zlMC+_SKlha4 pY^|DJUaRBls hm(c"n]v_ƥKNq(G27M U㹆AO]Jyk0yC܉ؼ$?ŞuE\~ڃDYVIW;(6{42{q 5^MjM bLt-vvv82j8.~E)1Cw>eXi >L qJ=o3Mõn|-0A4Άȱ(%\[mfLX*;ę?[Z,x$t@eyȓiڭb(ZҚڥ& dI$K.|s!~ gkψ/BqZ]P0KEC. јdc bXl(jIuY]J[@r UX[5Y4)83?83?83?83?83?83?83 U[}誘+c0dhc?a?Oa?AcL,ȌN؀a;ʊ6)K2X'zu(}* *vԪCV,,CzŐ[U`2*8Æ<. CM"|Ɉ0ZH ]U| uM.b| $psP 0/ʔ*\ dH ,a?O^ śpP0 N5 v*$)Nو1؇)))))))))2AC pd}"efwbUDl^Zj 33ҟ$ hhP/){ LTQj:6"dFYOhUWj{FХ3~#?'sJ[Mr~ ,]i7=!m6m}n@W1L@Ju e1 LPtPnj6SUOR+nc1\VTG}Mr&lbh(+jyb 6~ruq[o3է- ɭ*2^XJsZ$24n .W\H\WqvG1",1W8ETpϋWhR C4pN`E}T)r A[T*i;IeյqPV0`^5Q+MlsJ*ӕc )Zڅ6Ycwc6#":">8%zA9nQQF5t $?ffu\+J&8u4mnR ELc{[I&@ +#$愸嵭"yM{E!//h/Gn!g {j# 0.Q]sU2Up9E4Vف; 8 X>@M%jyCb  wnx Palcy-8x#{q+2b:NS x9lB'@/5PUXr1Q!jLR4_hp8%ITɣTrC ]XM۵*:i_M %fV O6ezUڄA \=99zq@/I>FŨ+}@^镀HҰ"yYM, Pie xwX %lҵ\rMf&F?JꑦnuJ`4GyV׈5.>M9) ̴ ֜MeU1%P`-Ziw![Fn(d#C $\.Ma#=B\1iXQ Bl$#X~rZXrqgl4\⥡U iޖ9l"F/W}ǃ# 9-B ؃e) 0ЭD=7%FUjZ@K.03GUi.6$H  1hW<*I|ֆL\#]8.'BYavͩe8̻[K\%QUXHj4a(PB|4WGi0 eU}V_PdHrW._h{.7 R4hNlJ"H8¿h/s? (PHǛC`RR;) (P>h<TuNp3C[ w^R֊R4ՙV[ 匝'Nte!\]-wĴZl n [&4T.vd3˿G+EX[6+1#ͭipa@Ҏ(H) pf nu7Bo!!WEs.x9{sf }V,.L.j/2fK۩0eZ.i W uT;f3N"/k+&UNnּV[:!n 0]r;8,G%GeE:m@gPޑ W8%J{' :8 d{NJo7al`fRN@E_; FPV*$+[Ěɵ\&Nz]Zo=y,:ahjbE;{ Fb`>rFټ u& qSF{\BYp;A WA IIDQIh1eʝ?QFZ|_.tWB[.yg(Yta.rFD4G>aU4J](H ж z۸AhC#𴬌pH\ TKKۃL؅_mt1&heF}f&!2,'B) 28TF"$֠/T-lbM+o*H8rP7n(/j4|YV; 5eKu36\4txV8+;~saNWUM.Q"Aՙêl.JTR%Y$~ -'kUPQM`N7WsT[m\&J.Ёi4zQ4#,GPS+Ae\%bF7q]P(3VYP8Ĵ!e9rEC@p;Z"meqeAl:( pY%5k #A~|yMa"e`- cJWހII--Dv p̋ Uْ 9Dcn nz[4tyelWxUK9iU[yj;6d !')m]ܣ B*ϐ X9zix`i"4=GBq^ 9v{tZYf1&B"XHPZ-5B+l!UŪD|OFw럚zf=H{fA7DOfOR|'z}%ݧ6>mhUko=!O߯gt?OOOOOOOOOOOOOOOOOר%J}tK.\r˗.\r˗.\r˗.\r˄DRJ*TZ*WLuGK%%H#6u,.\rd}aelIe}c+,b-^[ Fc05)(,[^kWx hT`cKGc6 G_((ӲW\6Źv?#t bo~]jnI5+G1Xyى-/Vl PĻܹR j[Y}_*_ufκ%J*WBf: =_)CjE7 `;lSiNҝ;Jvj!E'}g1dZx5R;Jv)SiR;Jv)SiNЧg]ngJs4A~o/T/?HI7DaF>u,"wG?F6uTp+.3D7?~7HAPib+9Mt~/~RiP=O/ }CC<Ǽ0_[J9;bL$/IL].n z"zo5?Yh2?2.UK]i9<qHt:Kw8꩹g%FFKϏE{]} k\>SHkJJ۳^ {27x`Ѭ= 6np,~Ĭ (,jlRd{_+!uU;"kuҥJ*WԩR**TRljPpܹr˚&r˗.h=AF,\r\6u!h~"Jt*I^Avh< 3xvayMt|z&hC]5:^~{~Oٽ.l?//////////////////////////////////w}n_L׮Jv-[iih5]+.!Id@W~+ DUnaaYh`[ v~ s5(ٍ9^IŌR .s65d}xVS2[o׮E }IRJ:A`s鬬51.2,5H)ngf0@~u+6x,H oFwU'y|wn;lpЭsT] |@@ TAmGw*0(~O{KB~ j)]=?^ z_v ?ia~ T=ze [5(abԃ37|SV`>DYk׈ޡBݘaP3{DMe%"\ hj8M=(SDD{\8Wnk_xgoJ]w٫;_wvFe72'j \zvtlN%xj bSTè> F޷1>r廿V |S>4k~ F2Y/Ke奥K^ư xᘕ H\i5AJQY)5ʿ0 %^_}w P`T/u,Nݔc"/AnJTuR=;ӳЬ:9\Legឤ:HC/K.ܐz#q] GE+&I:J0NcJ';alc Gv̘Q=v MuٕEytjfPXy,Z6%eYeZ A0Bs k\`˾~JWv߉EiIE#qxNWicFG]Nøܱ۩ԧv"™$mr82o: (xZ׏K֟K] ѷb%z~ߞU,Ƭ?+.pUG_rFF{Ea".}w) "ۉ&8UqʧzF7c顟E lVθtnR֫.Vo{&Rea%Jer*Qr}兘? j!;&$p8m/]d,EKn0݊-mjnj((,ʩjU%2;h7*t2.Nc+W ߤUƧ:!c#&2MsdΜGP(_@lݤIg5VHi+2=] 0qC6 A#~J650[m'0o4|M qDa-vRIcNvWA:ܝV; >j_;v&-31 :=H@ 'w>dähnF1J=v?}ńv0.2+k&u]&]d8(MŰ6an<(j>2ѠE\ZBV‡ X $=N;PY 4- B"dZJ6|I*sU2 ̅Z"3mr I8ҧ,a@ZE{ܡH jhm"k0/oJҾ)6,3Se8D>l7Zik"e-=.{`"Y-YmZm_bp“8D+T IޢeFOn(bWRWZџ:+W7ftReSiӲ7`iL'ժSRiBG`HlG8jSc7iG(˕1=3j>d\J@AXO}4?W+|y*+46sNd=R60pzGuZq/_A kcjZ3ƲO UUR؅u 1-̅ fv׆",˝_HFglڬ }Yh!MZպT]?dn|_?sθ,K1KklG_zT r3L?!ovC@ Z? ^z[<`Fڙ#+P5벴b #^-RK,mT#Q.3=2NؿKeES] )6dU[J q:TzAxnGԱ]}"@Rv&"\.FeW{S̺,\)E^Xvz`31`cY&UCoߗ=hj KӚIpp nftBJӿcbl QKAp%.v}KL}8F\F/UR4@.,ѭbJ ܡSPe=u<3 S)\N&|AsXAqiXV~o1|t((K紳JR|u54" 2+C<4GagPB4>wŷ J1쇣9Z\:yYX! }3YV\q8+9ggJ1B,n,tyXDۓyTN1VtiF]5ҨB9֕0㪢(Ҿ#mm0yg, bGXRTT[ u ?q(Lb>hҨhbK\kL]N6=w鹕ǎxIԑsG_0xcUƒ輶nH?!8./O=%j܎IENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-cali.jpg000064400000103423150211537140020005 0ustar00ExifII*Duckydhttp://ns.adobe.com/xap/1.0/ Adobed,    !1AQ aq"2R#CScӴUuVBr56b3s$%DE& eFGW  !1AQa"q2B#RTr3Cs4 bS$U႒DtEe& ?ҔiJ4R)FJQ(ҔiJ4R)FJQ+yvҕW C(iJ;Iu/pq̟fr׍ygd4sוޠu};_:ppĿfۯ_ڀ[kc]#P=ώ9ϳN[zנU1WG؛P<<:eOS3Ӕau02%`obb<})yc'٪{`"/S] (-?2tfۇ!}6_Կ?S1v韇G؏WO7Vf;=3}ڣ؏WOOɿ5T}{}/5<띇y_`28^`/nUrp:PʰM>H{^K"ur%`:!LJΟK/2}wj?0ǫW9ԧ{Dux~zE?˽32}gon'*[Mt<㑁igd5>[ӔTDsn h'(Kn90:cdbJ`ʍuWR>@5q_4SGH?2*:WUU(ҔiJ>p4<(JfIy(%MlY@VICn^>mJ!_wþA=!ռ E5n%(ﷄ6 rQ^ckNlbaqJ!kֽǠ ܱ/JǒU4#TlyG`MļT!Ŷ]\n105`kk9©-{oS}ekzOpG tF6eqc=CO"ns)`;0.Y"ڕtאdi03S*#J\oAȮ!?~> _"itIGpl]W@b&M%?pEwbgՆ,<3)?^Pt/bk[Kw9`&Y^Kafr3ES>fuwsvtr{ u99>GǏ2ʾd):_-6jX:+x5z `9}۝$'qSL3?hADb՚j<5$3+^ib%vZ K ,rrR7U-HGQ%qasq=@y.^&4'vQ\]|HP 馕r?A?R Wg91s؇O""XIPLm 8=FFҳʎwYM.9'g˯[&X,8] R)bP vgf͔xw+IYZ9xS+ln ~9Eޜcn_㢖GYhMkRl4ߨ6M%-TG ;Z,ZƶyWhvFd'nzr! n3uLS v6/GŒI k< ;pVo(JbU`ڶze/Oױ)rN`zRCiK!zA'C7a]yo?+#CZPɹ{@ q@Okq#Njh*`P'[ף߇P%]{åZmUz#ۣaԬ@,SL)K".5>5p#,F"2^'.>`^lj@)ap0X.1̭$0nĦ->4βQxApoz1q(]}_B?qA௕5ѳ|*\;\GYMu~n>̝1qK/n ,̈ͼY&9y:e#j{۶Ʀa]вg/5n@c_=aZ{ݼ%$Vھ^^<@w;ٝ_VOǧ'^GqfdVg(rZ '̻?/fۮOuWչL_jvʽB2%$UΚyr(FTDEsq)K#{?xG+ HUHB+f Imm˘]" _:'a$hm,h0;UmïQ;0ciQiTsy+d#kIhY&۩$Un- T^nrݘs{CC ?KTjmN.r'tL$O՞/{7^?e2~(TEFѹ lU;KRG1:A`y~,F%Jdk:=vӇpO 0t~wL3oQ+f=mw@oᅬYi/z9Ēߠ6~k?P4F>G@m5油/buM}MT{~zWCΏ`,`֑o?Ꞻʏg?㮏DkE6}Jp~RHUec[ɯ" `b Q(+3R~Qum:bc|{Q&}^MߓҡG m=)G m=)G m=)G m=)G m=)G m=)G m=)G m=)G m=)G m=)P&o=)K )[xzR4{ hFdţc)%<HNmfRwtgS.O#''?{k׭pq47֮az|@ ү$wîq=cuO5*!~> |_tjQj HcѾ=`^׌B`cלskxZ']G2K S&̟Ⱥj~n"r(G31 Gm{'X۞> >n*X~DSdNXB#/rp|WasU~$p11aIFQ 9["F`< `7Ģ) B)9!iƢM"Ύ@.v'18W'&,PKQ ot}/:N~_9 LTBN% 7XkR=.rEgV&SRze;ÇRH11JՓ]:NDd:7 '%ztPn.6;anCfwc>F\2A$ 8? 'C`n֤5zG"ZۋଳooYBBD\rZƛ7 fvɖ9  "7ݳt/19WQ/Kl;I{>ʋ,|e."_V@!9o^94Sy̧wlK%X.W&U͔rg(XDdvw?w_l1*p|PTbk ==+!we53DJw@K~nkWC#mHlZ$[3)` 1*1dx Nɟ"GI,>Aӥ+dgp|ur3Gk$fȃ[Ҵ=X. H筞`-$(}- ,S|&E1)\y-S9Hi{>? &d ĄNey2PC Jٰ߳JI"V]5IU]'Gu=xޥ|1BXW > ^*|%<;k{S?QxX2`H6o_1N8H RzWE? iS^#`Cͯi%kYIa8v}nפrGխ9te$=DO:n|;nI;}Ba @zC;격:2i\Mo CG Z;#p}9Ts/ܩ#j(A|RgJW+}'~l?ݦAs3Dc ayFWW;ٛ-R߱] d"ꏻS\*ȋȅ³ ˏdT,򺆍d׽'xAkHu=@,u!I.b ;'ɝӿsɓΧ)hc:j<;QfL&I~Pɓ`2xݏ8&ַ4e/'7 Nv"IikgHZ;ؖ*Ez݊\mHź=qwG#(VxA-sx9D`Fagβ0Y` VY;'10vb0% + UnAse&1%❡!*ɬsVX@Z;nw*8nNC@@u+#*L,hᑑх]IVVH hGYH`>z )FJQ(ҔiJ>֔/:Rmϐc;f3RW}Kr sџ@z:wӳ +1buvt=}=:"7WN|}CJbUW${@{=i50ۧnk孅Łҟc(ux^s%[jB[d1U|fN̚RVAvlŔMSpCv1@7ɯXg/rŮ:XSj~ {rWae Ʌ&9p?Q]IW}w})FS+Bhbậ`"^%<(+'9l&)w_9G;77SjvKc{tE἟5ޜleFqqʝ;͵?Tpmn'Pqjmb7Z}n+p \[+dbWEYdk^fs bȨbỔ~֮gA#x_.7(Ċd^/]A[nG5TFar_=+ElrfZ0tu$II5z~FW^B~w<ww:*a騾'pfGRr-7g uEG$QRu?5L- Pcbǖ-e2%2C%"DxpA}ksܣ%no?"^ :z/x3-|v|lXWw0史@eQ v,t/ǰOȒ+r1(dRCp"M'J&7 Ypx\M!#I#__/;x_3uI򲥕@ih U Ѻ # @gïI>Zo)'W55hZ'd1 arѬ\d s=?gjqY9<=ǭ kR1]"% ʉ|ak>@o c~^ȏ x{k¸;- sln~=}"NnH@600Tnz^ڳg]7X"dt1v@PD'vz7֫{xwr?=8,uF.ra Z/^q'7*`R>5AsM jb5y,6H9YGuN,v܌AٕjKv ^ :Q8G3ʇ,k?7WWu-@ێƓ]Hi+n~K[Jzuk/ӍA9dWRީ'!yek-dy05[W.+Y.jsCfbȧ#:An$>DJ U/!eeD$")>E.eDY Fd)`o@Fڱ!REdJKǼbmӹ*-w S0{E4EAbt{U\&ّ2yɣtR5!' OaGݡWMV8\X$0$D,+E^hQ\ysq%Qm rBX]^\8f>͇iEc+),2 e+#K.F\- FbLa4FjfTCS9JyvQbfj檮cmce[ߔRf3홰I7)<ș'<,_Ζ16Ԉ.,@.{-\%ʆIGM+UidCa# l}9>c\o5/w.MpV=p|UƇRґ@[x8ԭ5s $E+LO&Y@;$yb!491` %EBdcK%5GH%|X%VxjŎ`ئ`#QGP(y!n,Kl2a|w|M#EJCFY$](',(0\o U%qʮIR0 <êtMefuZǿ]ū{k ǼC%,̳5 /3ι#i[w)'hE5CYÂE uqru\ǐmhg`GIl 2cS%tryw8dBe\VZ$ f FREћl`,h[2^g`/]_pu!q+9RN%*f1<3b&pئ:xΚʒrp SJ1OɊ[Mdv`n8_50 G| |~PLoAmi]#1T%x0|)\⟜^>pm~]#nHrصlW*"BLz q: gL%q~ӣ3 7]mN)ecq.12[1Pgi# cؒ,6ܢLx`=q^κ9Z - `d<~f {j&Aj4:@D6񏷰{7Sii}6(xDXmkc;I:@:m=?jv`_oFSn[]+sECEܭD/zagJ;T,8/ -3W]̈`XKk'|W,2ye-0]vlowǻ^Ӎ'#9w IDnљw"jw _" ͥaEdNByۙ8= N_~{j9fxY![+P2~42䍕"K.{1q/E,Mh\*!~zi52) 1R:0;r SŊc t8a Gnvo6D)K3`?Y4-"fx{=eMQL@ AoHXj5yǪ)_ƒbU w,m`k,2fM@_"q!R:݁{oȒNՉÐt "{ɼv?I+!bHg 6Rhn$_1B:Cs++y}wɒ/bA+BD!G +Fi `;?!f EǤP#)olʶrzU8_NyUE=7V%SZ^R01\ZZnV~IH=]ҀĜJ\qm_k}<]2..q{ۯuuz~z^9!s {{.nƳV%Y4mR8 (Dn!֞8[s߿mKtvxrqDq-r󣽍=@$ڷ펹R_gJR2?_+h|[!)˟:;12Ò\YFKynlr-:dI&횤OR *.*,]LyX1.<DIRcXum\I4}+I*}]t9XgռTx)xNNA]kوBc9qw),,X㑖ܛ($7Ic\ }K{zU 3qM'ARcVN0 T#=*[r;Uw_ާ9p- ٫%LYՖ s*vEȈJ>3 4YBGbR FP>7(cRvk6FJPѤg{r^ bot ִE'.q"*(˱}S~W>>tPy!!rUcNB[`zY>gTB,{` nqRVƻ;:\9r_w&F ,l1\(Bs187xZT&x;S4eMfLXaH~K XѸVʌ_lyEۗeinS3r|'>,ʱ٬FU-:>;sb9Þ\)V7Sz!̆2"A4K忛 0+q̊c#),'Ɏy#()Idf9Ȧ(ȒA22s|| y2'yVe&[.ѵWbdZ5c`RA3@I1xX\D-HLegcPn\G*ƒj 0W1d(uX#588, [Ygm9sMۯHuDhbuʲ;saKWXR,/?! iY.զq #Mf[椎\֔ړ[k9&~KrBϖ&xm[md?Wa2RTW ̱Pm}bSW|+gO  Ǝ,qHtyd=/+x,\`]*^lQ7pdsMF()\rTYd/"6([|t俼wdm O򛙄jR΍c^(d%Y"DNȦT r9w۫[v&%e:r#saxbf 1ՈoU&v@:vF7Ω/"A(7 մ4M,Kّg_}ɏ%#.>hRLb)HR# H(H qrp էߘ9[*)T6x [_qso*x\aBz}^vUE7r(?\8T܄*{^^{(d[FGS)i&x Vc~A`>}|r1ak[e1Jt3|@o!1{rŕ"|+7YL{d$A߬mz0exL } [E("Z>~vX2,q6Ա_׮Ḗ4ӹ`{i1JSn b;lb j(l\LSma/%ц`Y)_/hP׸*ESpEz4/]t+v[B5}J3t>aqQ]d hFE@1:N[^?w"ɉ|^bszMM)3KΤj !USsM Roǥy>?rdX9X:48gq%Hq {ޠ_IM<4[phɺ7`t(bFB[lq8FQ3bNa.K$Eu(lbQ`SDX2dJn1(~g|/#4hg@ ʲl..u+;׏ 'nP n7ttTxy}*P!cM)6cƙk|AdmEąOʟQ< "v6 \}V1w7]J/o{4 ñq S"M$pYA!{13(s4RuV ?8-HrZ+cyqe V7zn魫4F%|W0)BZ" DG:vʝ591^p1[$moM{FNŎ$r3j7  ՗mT<}6;{wgty S%$/Œ+ɶnP 3*Nr }PKHqd#"/Ӄx`#Nڛu$WI: *(uN^ᆬLJ_1`>?32K"An7|k?c kƯYJH/6*(6 1SH`CF|M<,Ex윖ȋ0DE )VߧJX22em&S$8ʢ]"B@ ! e8'ض ݨݬp`Ϗ/I'*H:kzLtɻ,P"iJݕuvPȆLOïGˡ:J!x[^+?o._>r)_dݠ@HYTT$KDG.T~AѐJXZK׼UaaT;ͬ|+7+Gijjue"§I3eOq!/ܗʌF9 DnlV xܯO&1l?%2B+)%65+}u}9pS\@^a 4u&rp2or5.DΆ!3?e &ަ}H"~;H fGEUR^P[Ql&c fY~ ߮àLt zɼlD44KDXE4M#"(" I(Fyʝɑ;,nnYI$MlDq]5JJQ(ҔiJ4R=C)b_p󌡓Bcy  u7n|p=rp08q2##Vvd"8〉e)}|zyȫ`|7y $x?AU %ĠȉDE7);hN1S1 y U,ʙm=&.V[sUJs*`Q0@7 /IJv,(OAVsnۤ~ zvYXtn^~^%/ Y D )pu zw5._:ί?Ǖ;T_P|Eqi:D@Np7z b4xAk'/ud.oZ-$̠$ So ><.07jWQφ>MjCI5*bE ? @[WebkCa1* +& RɘDgDzW% [*O"B'q:umnRE$A ;wb!/NԮZV6DݍF$$ʪ("U3!7pU+x]?5C' 9i&Ef3U5(ݪ6qXNm&&Y+b=VqpC?mCӣ3$P1v:{QL&6C3u;CY>9cBn,E~2IMlB 1Kѹv0dY Yh<6bxS [F~'ZX|"e?s4aRax7Fdk;$ss zĆ9MxN30$X\9VR06 {=6.\ML0 h3A X^?ibsF;sE HtA,l1: ٓἏ@, }+CuﲃjR+N38ib8c]->D3(Fa.̌jcP9 Sv7Y*֤sQM ֡]N6Ɣ'`X L˓]ؽ4܌nkv][ck5* _}xy,| H`&.w)U]ʫ9t̳ j6 B B BRUTP,,~OS_? ިJ@ۘվ09V#4:f)j;ۈŻ㳤 iiѸöOq^cc~dQDUo}s=G(fCמyፋA繳1&{GHpdAC`DzJ)E6jx̤DP_[~/w#]pzR)&{mxaP8LCrWK}g9WE;xa |랫~*?t##aRJWϤ[_Iwr!0*lx;'6͔|ؗ(#Q"wT=]0ĉ߸ÅþX2JYq)/AG0 '3ch-.?&\1+guͣ/qvK&CNA' &8y>`=eh, )㙌<'1|s*UM]KCE1W۪vb[Ƞ|lW.L2>0i~3ˇ4Flx-)%%M7ΏFE Y8/C&WGүn~r|NC7ө7}]8]mP ge[l|.lB3-2HJF;9z GR-8EK>ɚ\Ar6F_0G4-@G<qy P㤙bFqs&ez2\_5BJFA#Ĭ>)&;E q&1K4+ ofp9KKvF3mx]dEc/*9hy 'dwIÓZ޹h ʶۉGj,d~&4>ZRw2|# ֎I yhcP~1?gdɏI'#"ȸ.Fύad0*&DqeROü\r,@61AYo*I7(G~5hVz\<_A4fd^nP |,|$GVpW܍HV"|HW _$dÖp<Ռ$ʤ#8fEl7)rP]%dVdb䐎a-^HBtoqF;!>ƷY;H5QI GF4wF'͗:)TaA*w/*hWx9 mfS$|r@"1\2]Ȣc5m\j`\d2 kHv=IDMs?)3|3,xS }$Y/dǂrL%Ñ2.I#66ްM!]3PX"א)˵f%AZR=fƿ͘>.V˘-8tríGT@#$R>NsHF_akcy5X{ `9J&U8GCp8ð Xy6  iA^^q017*RP/>DDzuru;"C<;`t sGBw_ _:(_':شWҕB?:R0~ߊ )[G+XYKQr$l3k QHr*]% h^L{>6*|I"B|dE<؝7u|c{4:#uH\bܱ wlU "׵P]RYB}Xr'ybkX2\ >- DbY#C׽"ܭܷU)5r#\ 6A5Zii, {xK"Rțs(Js,9坱Ul_AZU*WQٳ`Ws!HRGj6 WvֽB|r_1R%CT385uX|ۓ&^k^3w&~ddDːa$ezc14Tn!Ly#!'&Uݺ."l C9u۟YMMlQP#Q):$R_;RQ')AB\$G0ap!d1 ! PΦ>r}S>OU$DB^ٸ>+TsB}÷>!UbQ[I`oX F{&8?#}\ y7UY IV;nQ=ʛX?jN@2/R떪 k;nd5=NA!fR.c^TyUH65ҧӾ`KU7i֩Bd;dGB4CF$u 'T4bPD&6":y I(巼RܴM"W^SyDm{_Jx)29`-c9;!OG;rQi''ۺ1WTʭm0|EpW8(nґH\rzKvڼʥ.:w8FORM,1|]#([nR(*cN@%!tjE/~xI߱h,"?)5(9MxKbD `R}Hٮ&}{#$XO*NOjBlISb\lKtcondY33}Z՜N0r ՓZ=DSDq ٜDk ܽF,xAG&c 6#]+7ޔqysM<>Ye@dhoqH?=׌M{|m)T/) ҕzR/SybN11~U)wiI qʢwQ}9w n-de:r%~4Vh !:0*7-!LӬ ΔK36>Fh]oF?-5v2@qG.15Nj &BNk%RH=r@H@1e/E+QT &:H i'&ȄE3[piy; LKeȖʢ[ы˟B6w6W)̱|zy-JNMe2Qn^%*8l &,,ٰ3 cv@@*0o8ɸf,$XF~7#L'#rb˚Y3F~ll ˝ӏnor(;WBd%t{ DY:*QWܱ(H8"FPx 8ĐWJcdj omr"|t(X$ZnRA]y2J3R(X2}r"Qh)&(A^*rTvh@x"byL`#9Nd$qUp!d6LYQ +ufAwfEaSuhk.Cvխ7+5S#䬨R~ ᕨxJ:fUᛔɿh~W|*ՎO&8*Xc9g%жT@R5Ub*>CXIuHMHq7gbيFb'{,)͙OC\nZۨxnګVjGlI*, 6@taɊ%l)qT)] +y!o-ّP-lL_PѬ-@u d)"U=8.-7Q 73i :C"%gy`M@[O]eݶx^tAFĈN|O:)12GrXJ伅H+cLn7G$#bR"m4,W`m2>Y(?TF'cQi`,KPR:E]xwtނxWNS.\r ϒvCBX`@]paɅcbov`YQ^LXlm;ZD9hb?!k'`Ƀ/Xa\5M)q9R]$VPmVa@7Ȼ9HmxC$Z3xf/G}NĿ?)VJw?)+f>ic\-|9rŔRcRvH(!N=˙znZ5ksv˳npoO0m>4vV2lXne'P"N7΄Ө7 z j b֢_Usr*wgaZ`Z ͬxVf+Yu#R,sI,mx[OQ\$ i$_UDY۩uڝQd)|$Fc%=VXxIGb^ˤ0gIOQk[P::*)VS} 5 sy/v5̫Ve(9\SwϦ9+&&́^\RLN@QGOp./C`[:-z=x" [ 33^&Imq)zK"2M;pJ՛V: &ePIۥQ#Smר})ӽ!Vi"oi&UU*/d !PŖS#b}Ҥ,:r@UUwU&ױ`.mR.dLl~ƶ>˓a[JJQ(ҔiJ4R)X,B7JM%{c)~*?t##aRJQ(ҔiJ4R)FJQ(ҔiJ>֔/:R)_SJRLܻ-\5ֈGi}į$JE͹te 8r)ʕ1 `Tbf–^Sy,9tVFďrx9-!m̦քn W N_#K H#Ԁ<4੏snL/F$7QLd 56k4X"0q4AjTi9L*lk~*c,<yuiV{ dlT55K'^jg/$Z&*d99a8m: u)ݑ6[Pa܃Zmjijw 0\.&G86n!R AiC*Ԇ%ǮVDH`#))y #Bul6|e1[?xODَ{-TL1]F?5)j/|g(LT d;'mZu[lՑj(¨*rJ&ҌܻiT0VfNInJqS/cLJtH#5Yw9DbQJIlf~J}?Ol,RNu'MIWW4Hsf@8mD㣷Rz</@:xT-\aJV*$JmkzB&`d5p&j}-&HH$(RiJ4R)FOájUt&=ҔWҕB?:R0~ߊ )[G(ҔiJ4R)FJQ(ҔiJ4@zkJRĿ?)VJw?)+f~Sx[o:Uo V256uKen6x3bSR'-x%ڝ P%miB&4 RNdfi׫,e7, E0;*oY7i&f\Qn>t[ߡ]FYvu=^nkxGkXi'"g, 8AI5X d .K(-?OƢěxUL:둍(ԣ?fHIϣ#^Z8+HS3k]b!)͉ poM@b؋}SK埭b_%~p+Y>aRN@ᕘF>15P@n wXf\ | OaO?,Iߣ{*ÐBгQdibx딢I4U+̨Z8 ‹gk"'.M4[m[ޠ1#]/!ydRo4YiYz}"$sXM'-߹eT$@[lRFPV:X"XѹUyy^RbFFn*.$.)h-~ȍW*A٠͢| M9~-jQ?T.K"lB2euiY >gW\DȽhHi$HIcPc~֯4P+hbwVU4\Ȍ[戰 ݚѯVp(d(2+v|rnlb~5 vc?VCEP)7.ʼoO9 [mSF)-P[֐uXh8 0Ad8t|*:TF?4@O*IKu^C,:HJmXhBr!FȯQ]($CwnP+\RT$c;mkOW+8"\Y'h#Z%#%e:,KelW(4Jrq:2<鰅>}N*>OlUzHX bV+iIH"LtD *T,̐@n ]LXf0lJ0[\/H٘5CΟYZv/Wu>+_N~_O·E^X 3j'2`勤*D YϏ'J N.gájUuFIOlt7}Pd0?CJVJ9OHlwnII>mxyy>?=d&cxj6g\c*瞰2Y)d? (l :ivEK OuݵR)?~b (>|Ꮃ٪[c;#YTڃŢ'2&\x0arlj5]jA>i t-M29oVTb`w1N%Rg'Q%_/dgr8AFޥlr72.őN9ptuN?0*IuƤ}-[YP15~@--j3y!}9Z,Sв:^VE87 gY@k=m*`m 2A,4u,zq0[:[R2FPb.A۩6o TfY f+ ۮÃ9׾la [UQr-ɎSgbƨVĊP]lzQCǹ]ª %P4YG "ڋZ[ WP5cWiJ4R)PҔ/JRLW >ĉ{8UvmJo4>>O-.|otO ~(}&([])G4BߢJ8~ JQM>PR'߂iEҔq>O-.|otO ~(}&([])G4BߢJ]&7>d,i s"ѰKQ!ENDn"~&׶׆;^_#s82ݷf<+n[#o 'c[RF:x˜V$3٬s!9[el֫tYNN^Bhd#iret*IGdW=oA*qZ8p8H#xq#L[ܳh/)"u,fAbl%GDDzGjdnZ*PQd`u"REdvpٲL1uc 5//+/.ܸ bI.#HG4'&8{/E4Vbnٖ;[CꪩUW.3fh LrX}ry,;J[D%b>xk\-+*eAL .>k2_}lDwIp3m1&[ށ~jIү$eTQU׏ܬcBaϾ[8\~ |X8V.&T(TC<<Ϊ{Ky@x}=SjF%Kٹr‘4i|vkD3f.IRɦ%~}d7>f\O2eaCȓҢVw&b#FC鬫 Ask3JE$~{ bIsU{S ٺݎbyͩ&ԕyu>JȦƙin܇HHacJ bz\_#&&vmi'\)>RBU]*XV "[m.# 9|H%PQkGAQEZ5&ߚcKY7Q3R"1I(EXY%J Jzldh3DJDM`(#MMl~j4R)FJQ(ҔiJ4i>\eE|EO+ hMk[P$X(Ȋ<BpƀKA?S}j̒ۀ]zHO@4נw/o+eȘ{|^9=1k6.ĥӥSR\՗Vh7(äTNɰQHf٥\mӭ3ZgK(־~i~_چ]ck!IOlt7} p^CmR׈ށzJU‘Go+e >攣2sJQ_(/GҔ|_iJ>c/K41%Rt})Ge >攣2sJT K?sJRloa)OF3{18Gthw8ތF`ʹ3zC(凪x,cN#ƹ"ԭM{#6LJZ*U>Dȭǵ(ӻ%c@nX uVcrbn"kWNؾ[Ǹ/aTjOư3uhl&SE ]XDH tT ٜBuET [Sڃ(wZ I7Z1XT&],a&'jfzERUCcDa{յ,kӊ}I#UcVZ9!#bdldZ-EYd(SޣHzuFkJw<dbs*815@^I\Ge=GBI5ǩjj4R)FJQ(ҔiJ4c\qx1^8te$X˩Lt@)-*6PddA#̩0u:HѱVoR8{4NX$#C]0c0ÙEW+)_ɋ#`Q66K5/ 6~CX9p1$\c昞b.^q预mmb#jM3DEa2)9hd11Bok_AJ@`-tLN8dmjPxzJRdRb/})M{xLҕHQz)R^o*ܞǓJT;<`4ܞ?RO )Gw'JQ(ҔwrxiJ;<`4ܞ?RO )VlHr&3{VnDHNB$p:f5Y5P@b!*C@b"GtPg)^~CJQ$x/ݺR#xORlJ|@oawiJ>_} JQ"_RDҔ}wȿ&vE 70]/ݥ( L/)G|@oawiJ>_} JTB푇a~ҕX#I7\8xQ>)UUeިJ h8s n)nm` )L ::)W޶cJT8{R8{R8{R8{R8{R8{R8{R8{R8{R8{R8{R8{R8{R8{R8{RdMp:z[*Ok}[ѹziJ,x>ȇ:R~/R~pҔwߋ󆔣6_4(  )Gpm8iJ;oJQ~/R~pҔwߋ󆔣6_4(  )GpmLҔ}!(CJQ􆔣 )GR4HiJ>ҔPuxz,Ҕ|JQ)G4,Ҕ|JQ)G4,Ҕ|JQ)G4,Ҕ|JQ)G4,Ҕ|JW:G )GRincludes/wp-booster/wp-admin/images/plugins/tagdiv-doctors.jpg000064400000067155150211537140020565 0ustar00JFIFDuckydhttp://ns.adobe.com/xap/1.0/ CC,   X ! 1"AQS24Raq#$%B 5rtu3bs&CEWe I!"12AQBRabq#r3$CS&4Ts ?DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD%(DJ"QD. pM(i$AQCD0TEiM+' E S |baa9nRp&*9 `iðe8x.i;S1]9nB'ne] [iCp;v??'y&cVZxܹ6(@<ї=Wvv<1~t64P:(ˋ껩-|x:͗jN| ?2aj4R?Au{̢UZ~"?u7{ːjIGN_6U澆d4ݟFIT;Dg?v~4 |Z|Ĉ:'E۫#HЮ;1LB2Ǻ٠v$ۙG +ϙ$S&@ ">.Rk:;?GW:D%(DJ"QD%(DJ"QD%(DJ"Q|7>՟Ϲd(?"A/֮k;WzNk͊xz+6M)'"d. 6Lx&Q9)־hHlRd]5e4,;lܼ<+b7ޝ9}#Zߌ22"ϋE|wnǹH'/gNK&LdA T!1UgaBT=V~/7"ܫn=.eG#RpjK[(uSqKh5g C;rJiyy0'7ZNLL5~IhmM>sxLwx#>!\[m/l?׵Ћah:L=N*LQI)$fxK1zX :<@]QжJc5f {X(7$ڌxPer*HLtHF%.ýINnǑ.c=AmڭEm"IRk0noCL'-19ḦsuJϭ[6kV}jhdmL ф#p:-&z$ "%mZ~,5L7o\mGܲr+zQL%Z~eS:or:@~tMG &e\9I̅ݛNAj[Uz6sm5*MWh(kJJl+ie3xURD%(DJ"QE#7*K}-DZհwn1a f+|IOc̦.2sa ǻ~y[ CɸyUV!ɛ'L/H\l5a;J%R^v:Z[I3[u/AD옪#u"j$&1?q6_ʥ~$R~_{vX>[^یu=p3"e9:^,s5DʛË7/u߂/f]#V3朁aٖ{ˍ1+$cG]cl)銂2J2Tb\: $&^+ c,4֩G2m6Y &4:Y|jTYRLnP7ͯiT#U0}WE뵬/ .M&8 [=Σ/|YmT K-#1-NH:Ab.]q!6i؍6?Nnmif"=H9@+^^/ecaXx)b%u%lG5`YU§I@bv.5T qdK=h_2|D>&  njw|wڷo{eɁwMLj=DG6jkEv<@~@>깛⪲HW} 6Pwm%9߇u b}ar>Bb ! Ð!QQىY} ;s (%P`/ v rEQS[P6F """!ǿ蘏}/>[q rG1 LG+sur7`mwV{ۊ@6 fU(DJ"QD%(DJ"QEDTx*Oa EBE[܃'.\b9L"'"\'WYH*߅nn^+}j^щ5 r-1}oIfi6du$6"M̢d!'](R^U;E8Xb9?-jFx|<{q/f\ю)NUbE(I2I%&9rq67UUTH]JΚHWymp*D2IuS0A/!y֒YH$~& lFOǕ?j;' hW"ɉVRXXVp?ر![Y'$8Ie.:d@9 Bў=~ψTHTs9s XޖtvjhԢ \ 8t^_kW|hw3+^D9>;FAacJ؟5K?m|է۳3sVLMT)1lnmv >K$ !+܂]-1ҍêGm+.㜗pW8ƒHP6*8 A1=LJ^ mSWOg/+࿔ѱpU,=>;T\Vɗ/0*UhF&Ui8x$ TWs77[rav//]2HhOw7VL#svqqMR#S@%?R48 vR)*C[~Q;8{RDžzKޝ8cR}g!ϑ7,ƜSN-V Փp5A嚸NM2$ Щ:4B8cl\2Û*Oqc)#dCekk&Hk^8L;EJo6//d:ri9:h-NfIdT=%3;دY\&+ >V'~l&ɸ;zNe>;K|?"i>Ցt2+FLhK&}y6UktG7CcSIg $'+S3lDsc~=YkeCG;,rr-n7c#7Ĺ]Te}6ٚ̚wӎs5Ձ왨M+lD*B= l2@ss Hu c'fs&|fzC7v?G'?[G ݍrT +S+B;"0푟lń,?cXE丰4OV 'x;ǃsdu[ۦwD"ӾYdޠڙ!Ӿ s;MeY_wk'6< q"TzF͌RjI#,bxze}݄#I7/Rq{4ӗ524fŸb{ V9!"1odacdU7*S&gQ"XX^ewf] (UpBwv[K|ȷ#q W?d+bqI+3GZ9&`A9MgjDE@"qlVkqn7uQ ~#qr~ =d/pL3rKX&p婒ʩQSf&` LCXD \U#Ӫe`qg"nJ#9;~>? nj e pFCGOEG̰2əM/ZTO5((ՈgvYMDJ"QE~(ע-10hnAm(L}gF-fB,@O!|<#ݷT?D7m}Qrnv^:mik ׸0c$`sr_Ķڲdg(҄li c&N#^4_QATes`qɜPZP>FP!1a?07epYוGIu2mHɢq5LxAuڦRO%n2 wDzfvvCOWTG UA ;c\!}f⫣M/A`6b'&"c.^\y6uW l_2&҇yzg $,Hc"c\H49f1w'$[/M[ -E\T]ĩ|cs1y508哑 _y!nőο͸~"Zд:J񋧓)Mu/tŸherT؉&'T!kUl5)PH3"[.w{IZ֖9))ߞjrs`9+VӾmӷn+ZOfNʐ1&ZŸ!LeU @r 72A1)3bN1o׉z9Q!|Fi;0NߑV09Xv3o[HeIghrLʂc:,9['es v BOѾn>mks=]Huϥ۪Vζ/[J0>%ȱUcJ q2QnL܄t=bذcl/3|Y;ϼ+bPY,]m{F ZmN[Z4Wŭ-\ ='흕}Z)t !82Q"Be$. /ufw7|ܷ,!y|`jV6= s(Y)΍}J٧.FkܹoQx%YIѻۂ#:ԕP=kBIavjǧ{JQy3nb^_⨼ЋGvz؟8KQh=#:W}uC^F4BX1pJ%(apWpUCF9#wnn9ypq;yw^8{>}ϖzB3@igsH%٢2-i9=/\?`dD<}ؔ0g>rtP[%Wtogi:;ö<XvKMu.Yzfcg5rk۾o E-F>fv+(P:'|_&?KU0UCO }|xk0t9)twOX81][ICӖR֓p2;f$s_]E7 dtb@b]rDҸ33$Gj ^|1P"Y,߼*!)5l=OJ™~ŽvdR9o.̐#WZ LHH*g.ۙ"d)fJ#)s/k5s~.Q10LJW|[C NDӥ 2X9d6!`NSrm+n_]=eSMtʒ`stԐeIQq1gD_\yXJXۉ5DtV֬}ҹa.JY=mn2\N. MEl&ʠeLi9 Z3^vxөMG!Dc3q!6Y}]MOR `&f3bnRrϣgBN\qw]-2;\s(w6pe;]xm*b;Y# dw!vD:YMՔFشT^8f:9܋9$K۠MFM#(5!T)4'> 誦E.a+&wGȩHB1xdE ?+u ,ߕ2*pR8!ļ'(]:F>Q9g"؎;.Pv2]Ff1J'HMDCK;uk#;?QUJ"QD%(DJ"QE~(C3)! z(kJ6D0$@p7-k30$5$6/9yUUs7Doy9UlVۢ}޸OYY=Bc6A7k]vaTKۊc"Rc\eLTO;qkSHLa;`&`a!x|zI%Q<۳y tP~]7~|~~+ WOḮ]mnX}}KVTpv]a,Y^ Kjv f|ZajE"Z]vY.Ue{$#WKJ(.*Mc "g'a|-ok[2-g~^STJ;Ʋ<9Xd&vQէ%lL۸EI4]$t&n.--*f7 Ըr]~/~޸ Q͒.n -|M~v1v2~aP$HL4$ֶ-6n?B.Ui^J"QD%(DJ"QE~(E/ ?ע̎M! )w#[g~*j{müw~Ncj<rd/nA˼>ڧy/{x[6^8 LO^ gN-9nf(NB.B!8ChtWH(d5LFXlrc)=ˑ-~ZQ;4Q3.QD0Oa^7m2ƒR"sqx"TvMdLG ļfPP3>Hj?T+Fx>]V[gkikx3<ZU.VUm٩2=ĵ3Dr$vtK'_PVJn>3V]tjuЁ'ٶ8yeo]|5V˭02 y yYf/h[%T2,nϺ6Qavc=xeTbJAXOF5|6';lvUg5*?uɘq3(]c'&#*cn%c/LV!~V ۚh(Pǰv&p) }c׵l.ECO||Z͡.6=^yv.evp\̘;n"wqF;5ݗJ@C;;xwEQ{?nOe{02\+>GaZ-133\C`DJ"QD.EpER.,Ok%QT>)a%wD%(DJ"QD%(D\OGˆR z(kUHL QI!}|B^\3x2ԩD%~B=wk?ĩ1/EYIq*MWk`(O;aȻE޳wc_^Ȅ_+V/8n/׆(c %,w8+vrwE,UA@vB';{&^6 Ԯu8U ˻g#b=*}+DdbD3rST9w` ۶uu-FKDg 6XK^dge"=J,bA)xSװm}n4uiiL%Ջ;<(i_|flP&NXK 4'͙ӑr9]%O:d_m/Dͼ<6WK3o'O tLh}6uA'bb"O̻q@G}?vtD7DŽ.&7~ ]ٚK6WKG6t>_m/Dͼ<6WK3o'O tLh}6t>_m/Dͼ<6WK3o'Q$ !ɷpU]ΪQE$%(_xQ[2_ݯUQ>Zh HSKq6iHhQ}M,/)#Jc0,앐!,ks]VR̄5FMHMIT oqpq!I' emA^VAQ09oз.k̸[>-kcM;6U)7o2*iIFHbvY]ޡQGDL 0pN"L<͌`#mrA,/Ӎ V1pwSD6YϽ}&W5=Hc ' B&ŝo=t6y&UwҦd7s1 [ nP.VD\HgJebh*!t-@Nw\yII{C8]xEgΓL>ZUy3KUMe]ZV;Y[#I+M2*B!89ǁ"nc ![y az|x2ns,- #F6,JUݬRLAP1" b Xg5Lar"lufpR5EI.As@=EhnG @)9 B5mYbx#f=^l.'kdi&9^>&8'/s5<>u򋦑EŽp,pw*wu6etLtęĵu մwE4K0&v{1a3Cu?kX_p&^X]erukq&"偒Mun)MiYH=EQ`ȇ\>;5MOz0-5M=}43SPDr+'-%PzNxL/XH&HR 2X>3/$'NVNژ񘌒nl.9nle"V8,~ं$V!e[ ֙l6U铕t'U"#z" r:@rH^tI)FQ`6.r,NH$.sd%>2dQ{NQFJ:"xii6 8ö3[z1,'ɨ4B?YXᆦCb/jj o"Cp"Yz>U!h-RTG qUTqr}]1N[ey^2T\>6Ux,ILdX̙bҳP1N'ϴzeT)|RSP+p YxE304c@At猻(Vf'dƛ<,z4$}$`\0^bIjyfG1ukjZ_ʮ IH{#E:<p)4.SKo PTI/el>[?->j;PST5=6U }56J:SHڰꉘ*)m`;fqϯXW Ur ϹFH3IMGj5IBR }`НY}]oBtmiI=Mz6t5+O.%,'u&%P`&ί-jת%Ma8_K}QH;GN|WtS>T.JLA((#Q@>~TUkݭjJFq:ω_c̄'̭W4䔐ryIDbz^գIa`ђCԼ6V *uid R92E9?ESkKV4A0}-ZuJ͹>^<)&v{&0rVeߏ^@ڴ4D=LEմni.%wdBp)Y3MKLRi2ӽ-f ])a0 ~*(To"~+[ B5Æipقgk>lzׄ\l{fA$V(`d2ɬ;D̢z jq*77$N9 rJW0i ^fz+󅸴%{WAH%dD.IٶM*! taˢ w'` dltϪt4ZȬg.;pa 2!İ niZ&PǥktQMsyt9;9d9d[#M@\08+Y2YfN굛nزpqWaqĺŮIu%Mź ΓsW魦Giz.鍹) 3,/y5-ga64M%68MΒ2hCtD$8c3ގb1٩Y񜕰Eb5i9@o7mJ,&vxUXKTԠ1*3Q q3])KCn0O\x\xc_0|Io{\va@[.-+iHNU(&ٻ (܎"\0uIJ?S& Su?hu*ڐ}MS=Ii/0SOIMѰg8Ȅ=`>,dc7Eq*bljT.W 1L(ufNbŧ(B9d-],zċu#+HR y!ݰ[c)9MMM̼ߞܫl ,'6fI[57Dj@7RVEMY6dmSv1wYzKF蒆bz$7ń]#+6&0PT qQlN2n\{-kz;EmʹWOM T-0_W0)a͸? *W@D)? o*)s(πgѾD(Cƞa+}P)M%4Po~7c9G̙t jCy WChY>K IXViqECkӝ `;Ha9!C0~J"Q*gL:TWRD.'#}DR.#Q:(o-yxo}pDh݆1Kԩ(( ]1iӍwf`rxq8ICPE&Yw]Xh0uF9-LnofCS6eE# ۻ%cZ -u]%߬eMt}\*)߂y@ĸ{tقJR&|R)D=|錳Vb/.$K3'QL|Ya1H]ۋehgԿli'd?T+Voh'բo, xNʿ-2$gg/C]W5k dEbV*ɱH緓w@vDTфLbb.B>7/7*9`.36 >_/ 0&sc%=Giol XVeuD8_o1F9#-LN4b-g/c+qkX;%Q+ۢa#i].&x9j5s@0q7 v[ehvĭ&٭\ۖG8 rW׀JV%qvNѱwM^ܽ`@?wvJ+[8K܍,?r;M{ffY80Z6z:;8@ioaN<<ʅ\xoFǻIԫm?Ī-' ّPS*[ ]Ns6k !%)m9wO]lQX &%=)^(_Kvv:M9_Ǐ/| [9%/%̣>o)FrQ-k8H"c.ܓn^v܋v;rfDzGlKk[mT;2ĿYLYkQf8I˹ǙKK!dq[.Wn+aPW8~aD%q? "< `*"qۘ_T%f1hv|AZzT.l?nKd*̫pn)9KG#isI L 0x 1 dTBڥ6v 88ߴǻKx`+(d8"Є5vێ)lUDծVEBx.Cp8\j]*=/O*je~R[y;΍^:x"0&trgp-<$q \v̄*Bv:f,3BIR'LS1MՅy-I^U5S=%LE{2%(?gj^)1qn0͹Iu-鮑>kN*[XSNZo78}K̓e,cFDK5HA67<]r~fC]V^>A Oh)R\3nSMFSIGD`Ao"P`^Ńט;Rx3C(±o"YY\*mI[7Y)Ft󞡉#DΔ831M{Y4hU5_ ~n+qdWz2u:hvb'O$$o$&KCN"V.jurFE,GGjbʦBukbrrN$ÍЁDcFv4m0H|ADKy'jF`< "#,iS(Il-#Ea2Dri\s'{=Tű $f`ř۲[Vz> F (ɤȩ>ȭ/,׾,?X㚴1i[-ly4]=ijα=|!(Y ֲH՝ TPSH@"(rEn<D^8uhFć[_x2΃qA֤%++?nB[NmB;dԉQ4T5fĞ_&*.(yw1D7ww2 G )S>T.I3u&ɜs4} ջ8LRp'I'mL)P!m. ȤCdY& epŴf.Z>K h:hAHY)'C4[${tG)$ &ߘoWh(H*d21yu.UI8lDxV;6ecc-L y͒1c,8l˧%nW7Ջ[uTѦւD(!A?=QH2$ʼn5F0Yf[2`|yˎgMJܠ.FТwȤ"Ŗt/m;jmqH@d+[1c>u'jdlG#y'*욝]e}ٜ9mbzǗѶIPI'5•:i!g'IxnHZ9boS#b{Zl˷80rwV b#*9ьt{DXhI6ɑ6) ~/}|-E~rkk"|LD[b. xKJXW jtC[ԃJ״IL՘HI^ߵW0%VS La1Gj*3teTR\ ]v pp ^ߵWSOF'z#~_D|lj`>I^ߵW0$[/Doګx-7UtLD a071q37F]UJ"QE !;>"4 ` aw. =tP!gZL*rE߶0oxT^N/,U]EC9;ppuamUȽeov~jJ{$vT@Nn@#o/Cpm94%!A܆:e1=I`LyHf5L|ԨG#3Y"rxMeY%H;d0T FF{$>FBC\KB6[+l2&$TC(J!UyeIGp#r-dHZ ;4Q$ŶI &y !C|߂6fakÂCC7U G-HdؽgzF921[2" (a"LJx|akorć.n7TD$P b!,m حːXV~pǃ~]G1Sݽ9,soa)l[rŒO4Ż *yT@< &&%p* !6>7cqxIlBXɤ1#+gMm۝&nnSofV `*@PGnH036x׻ɿǷ\]]RRS*гǒJYQ/PK@fnd[KzkpT1czKWRQ٨[,ŪJ_f~ͨ1Fs)٪w[{T=W~eT ?bmXw_]| TB21,טuy0|vU+1Ve\s cqoX*X*X*X*X*X*)ώJHXoGCn`v0NvW}H Xve1=` I͐oBmL^L; )Ey`P  ;SZXIjGb[xHK)gd81cZ, T~VulP`~a)Ҕ%Bx0@G@NJ  -cYb?jX T~F %_Q2,-PEI*?$$qgɒȰb#8ַ-KI]  oF#K塁dh',D)Q 1$ fXLLmJw[.PuSpo(,3$,҃g}5rm͘C3-5G IdH6bvșW3G;e&DZ`@QS؞m:6 JgF]|gtlx֑ ԝ7W55]?J.lՍEl.=UC,vbĚ:Ew˂b'Vı8RRRRRRQohhhX1c#m,Q8:dɰ!g7|ƃ5=)4&:05GDu,4qZ/M AI/Ec1Jsn$዇sG.:IѺ Rj+,7@+;vrl\ EzҠ^>pXcI )F0^5F;fldeB_biڊi#y+! ehxbOǒ`5k{9|̓ͷ;xH/ gkD<"J)CvŚkp{ϝ{8|ָ|PDAk,wej1#{3ܞE~嫾{U XEDZʋUd/A^ʖ:ө䭲e: o~<@,q8 |@b~‰.Eb S ߨf$H-Ba6wSY۞B$ޑf c!.a@4]LZz7c%m\d* S`e8c"uK>mGMXumd{oJٰ7:U fy6.[QA(Sjd{xT)p8 9 `ŦA@<ɠ  |P?XsPrsGkaǟq` kEAF8B)Q(-iMKm+MF4ۍ_ԬG_&Z5W]_h[?M@ Gҫq@<5vb} $ër02!n^blOA~ .`'LXd/^}nqlPPQf{kvbYв@iEh应";/>vi583^'3S81d-h(U mͽ)dsX򀸷f5+{td"%tA ^uٙJלٜM1=^ӤjV¦N=7އ"Հr8,@B@I@r\v a(Cv03zow_~1" ;"ie3 k@V?J xg,WqUОC*@Slܣڴ]+0ϒNx!seIeʥX? T›R m _ĺS\_' E-F0ވr aMekLZ YnE8 O[yiv,}]%"8?ܫ=+dֶYL:bQPS&G*hS[/͠<O5ɜ l !Icf܀dF4oZ;6F3p`6@2 Yd7$ :3 C]}a#~;tMYEZ +8-mdKmwFb,؋z@"DB'@8"%Ez疱8ijmy{Kqv!˸e+VAL+hÊhawsfSs}TٌYp\-=_7z%Ӹ'XCz R=wB؀@'RH$zA{DZ~^o`nX"tű'A1 ҉zw1HX_ zqPӉn?sW^ Hp7W>eWL.&'9Z.]V8QJ) uv@aɀXnŹK,eebn%:#Gf/_wonUrkڎ_f[ov3kshtM KOj7m=@(3]͎ JIϭba~!^Chwi;^!g!dD༣ntx4QU\ b nrdR%Q__"1lz|j5c,#Rh,ZOTt]A$@ncXCt&C~jX%`XrKìsC^4]&0ͦBKjݧ2ֶ.Nb.~_bH J1^aDi+HČxm39q?gvf*R9`uLk% q.#e~G)񅗓5mtޙMΧeʕ g"Kb5UMtyKLimtH/~K0{;d(. /0{N^ti$Nc4Ro6rw;yHQ=/_1) !fL^4FmD: JEh=H uB"d䠀8ƔJJ!ՄrvwM8nqh`@ґJ06PI8G^znJi0KC#OwH|>0rHy3ODwuSJa#}~S2HIENDB`includes/wp-booster/wp-admin/images/plugins/social.png000064400000005773150211537140017110 0ustar00PNG  IHDR, =6PLTEQn@&f)('Ol):"MjJd=$Lg>$<#^Q:}nQnӭ|̃z@w߂tWpecYbQ@PfD?9N9G1q'q&e&#|_yQ<ˆnnUk]@|to\iAJ3m eQnO֝ρnfnZo{IDATx٫wF(*a7p-,\0Evۘ”;YH$(",L G<,NAF1FP+)wc1ǁd=HЃd=HЃd=x'_*`hKTJӫCtoa\{X6Y;'yV; :ױr^yu,+l;2RU^˶dWՍ﮲?V/q0>XXް T,oWX;J*@ Vc!J2,ڱ erfcA¢1%zY@ d=,GԍEcc%OKuRo#O_3n̮m&X;Xֱj@K94x!gTUXd,-^ L CAOPi%)56I^ CI9[$8YΉ4?>څ1aCWoF^Y =ꢝ[/柃U',ړ0;Ϻ|ҝc f42-h:gN?~cw48NE^,lmcìnHGk<ցg*3Y~׃5 bl7Wt?&YXА0&7efז"zwmUff9[Gr;b^attg-VT=WQcO"kWEZTZEޖ M*ueʹ5|gO1&S1Q qaFD55 {MXvM Oqz hJ cI< "Yc+) B8'܄ O24d1Gp9x|kYZ [ҠTyȺ[e3)zfդ^%nm %h-EZNa֙mٸ@V=:vЬ$1c*2^=[47[I֡8 =功ɢb Qw_Ů;u'Yrej#6RD_g&ITKl:t!YclAH/q`'筰,*CZZwsA p]Vph[zP^*;uyG53+O$} dl{qrWogZ˞u2_˂D(^/cPXk @晈ׅ9ES5 % kE 0[X, 繚_tBkEC['YrE2&MQqW?'KnG-a"2t*uVVv۶tR:# et^ J`Y\HRVNNNΏv50 ϔw /phs RN̂P%b)c:4AӦ^xwBi|PZ Ai|>GX9خlR@ ׹.ߟNkoiwɱFhח=^ nDdp,=2c?NgDEXsS6af6,f䚮ZծZ233?AjXQ";:hGrzsSioXiwH++S,q+^gJaA߬ЇێŚf;) vҙu6 m_Î7u.ӻp f%8bE7.lA1źgZ['YE,`سP:KXn|ʋP'+NfeYxwPa1zB/bف|b̻9̃mЧC)jd7p}+X^ u׶Iruñ;x@)|pFw]]- @>8cpuquP)cA0di%s,T[Q,B!B!B!7M ݰNIENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-amp.png000064400000023134150211537140017656 0ustar00PNG  IHDR,rtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp CBa"nIDATx x\ՕW*l˛l˲/YY;$!d! L}= :I'4| atCH ClUXTUwJ%i=[.WI_{9L 3 , , H H H " " "   , , , H H H " " "   , , , H H " " "   , , , H H H " " "    nHɔSm`W "Y&A`Mx |MkixkRt+FꗀlAԊ Ա 3`0i![kY׮*WMC)}s,EPX<#a# _}|V= ͻ1(މ85`°ބtE][|^LZ5vEzB߂@X<^HC%Ȋaߟw甇K& Z -1 &%mp=yKQ= O _4\-hy;q)x*|ȯ @T K9 t K?gJܨLA`X!BϟfN[t(+^ZiY7*!KŔT)9b=WF^gfR~.9~^Y;||QKo-eIPq.),yv`WpnpcL+5g\5}Y*+<"h.Z̀8ӫP31OAyyOdan/fϹ7^>Ѯ|#g딵E." +orh WXp"Yr?qU`^^H%tqMϪgb@eߓE.! S YװGg 8ebJgTワj&K,,?q X)yi 0)Ϻpw6p?x~1y{θqIO7 WjR!ֽL-7LN~_ݛ|]I_0e!0rU6sL'F_'DK0ꤊh`'Kgq/pø{_KAJMz1ٓpyD/=aZ,KSUиبW?=Pg)Zθ@ޱʻR H?(Sd\̮r|vAu[-@У#FG|ST̹QQ6UZ\v6 sA<ۓHl]σo|5UD">nYIop Ō].'S-7gɝCP TW1 `̟ n >~W. \fa~ ,zPZ2W7p9XE"T?h2I벸`_ҺbW=|т}su%<9}{% J%C 9NaLrJZt1ׯvx?("GӃIEFp#SHoiU%߅ĀOZD`D3sQ: -DNjgӍqUw,A͟K dV:ؕ:bgץRRT4Yһ!_GyqŌP7oS9e)Ap;Z\:?=$XԆ8eWD˸kYE*]lY^)0q^T)wFޯ\[mJ k1yҲe ֱez*I1IeRioT~&"ˮJ+ʖ֓1JUe2kig:VԸ{|0 [v/Zk.M[TR7:&=sV] dG+fL aԋ XŰH1т6S+ 'ZמV{s' )T-wSь`!SJEՇgF Z=0Az2Ik5"9Kst;WeW&7)w#A @y ϊסq ܟ72MAә pri1=-V/K뤕pQn_-V{@֒`0xւ+A:3yE?+IPChx mھ3X<_)'~`ZǎI_[$"FӅLe(\7yvPGё[唘9jf( kzZĒV Ѕ7R))Vv+QI#Eun6`M./V $"F5<5\%)$̐ƺgx>cBaÖr sDAl@_(.4>AO% 1" 9M=ߺ*gߛk_Xmտq :)'LV>"ǚY B\BGWzj$DzAR'vP`cc+tX)?~Sc86@iRud\ U/[)r\K.PXO3,)|#.)-6w\w\{0E~$XĘxܡp'5 ;FL-wտrpݰ.v^x6; ࡢ# #S =-o.[^q,x/E̋/a>7#IEz@!?Xdz"mT.6NلPsp;P,%5[7a+"k%@NRjjZQb-T? r7.)à>~gxHdHly59=z*Q"2 Gy_pޫw79aYd|+)]294RԆa.;TK<& {=9tLFƗ}JTʂD末`ͼ4[-ks;$Z*%/=е |fe02Ƿ0IRyY^=%\. a/!Tq l<ɶW?`G6y2%ϻ3/QvDe4aqDkJ2[Ad{=|MV_oNJ,b,lG\Co~;Zs/Sn[J}Rl)\ (s_&]Mv-ףt4z\c] e tCIEK׍Kbۉ@t lz@G֪:ϱrKaV "VUv6s[P֮t_C](HJ[j7FA9…04ٳ$PHKt>Vc :lo0b]e3Tl/SA& ,,0id|=Ȯ❌UTq%t){DpDU efC]+TT|/=$XXdһFa3788פphA zG}͘nT / {b#=kfJ|YXyQ@{_ӃIETle*IY 4IV V\L6$qV nd;yZj!T)T<TF4]|痍 <.5ܐJO% 1`5݆4e>MI,|Ë;Ѻ^ ȅpi6U*Jf\ uUuS$]``a'Ht7!W*iȜn b`H3Be5  .vu%&igQ=w,b,맣]KA;NX}JjAAaKIU 'S<9A:#1yWUcP{?Ze5`c|ۮtN0 9;,VU|[J4ur'}Z1+vMq6d`4ex^ $"boJFmuv_6'TY[EԌApU;`Ԟ#2ZWB7b\`]@% 1|0s8i' \n,3@դZ$yaCEw*W=3k_DfQ9ٙD:?`cߐmo:y10-F;vaغ10oBJZQZTTAHpoAu޽;t HHEJa&z԰q*i^#TΝ"(⃰U dבpXhR񮕱R$BT!,,bLx2ΛW&ZĤ ZY\۷]W Bz$᫚һ~͝iu ۵鶵ND/z`Ini} Cq;sCǍFm^f>`r4Mmc6Egrpy ٺRlgOל>SF`cy(@aMre]67i^SKKoعM( ,5ږR6wXUѳHE|9U3Kgf e>0x|d}NW @lxĪ_f>҃IE/skN>afA{-^ѢݬR 'Bu͑n%S/vܺTdO{HLx\!H$hͻ--}V 9Qp2+U;JࣵN`]Zp㯄eA˭+&Am6[p!zx4 n!S}!%|!,ͦ`,3OS+) BCHa\rsej/1un|x_zygG~K/s 6u!@v`'wrh.eDOvyX;V@oۄL50,SB76ڷrddƱA.!1ӎVR y3hzz+,f] h' }ӟ.߂P!x|KϠt҈uE^ qRL\Kaxt6Jw  H7?r?g_u4r+v( ׫gC,N[KV+*{έ{HHgchd޷D/v]PUÊQnSG}oa n;Fh;W5\s]\;QuqXB]{vw~uMvCgCnт0=sHs,pNDu6r&v-Ţn飈;J7] L;0EIh(e? jj>qɷwZ[鵴P+H-z BؙRaT筪_+"6 :Q?V[ӃI1B3 m#Nd-X<ؙyrϳ3R)5NUvx82Ɯp rۜ:ҵ+~]WVg㊝N:eVΨJqwz~2ee!",CfAy^h}k|hz,8&H&ҽўL޺ l%!:ƲEOxSL:iN~ >|t$2e=~K/>SpPDvee l/׫D<,:i$ SN8*be aybkTv^!lFƥd߇ͯ7fq:q $Xz6)D:/dV>/R~%C:):۞/p6q*) 1;55ŋ?س,\T={,-\/h/k%K$XP`ce[^헙?h@?a`T>e}+j3a}E!:=然" QBtgşP@>[~fYX'S/ :xZZ?zLwGz7ߌhVTgVI3R !}ߺ{nzˆ; "WFV@o_Lvz\]'LZ[mRi$_L/i;VjUhk>i1^4m7Z[IZ~m+p{YU$XgաYV"v_X <5t.YNTM\y2{J .wSvy|=aDPgcKCp]UKq2rᵆWWM_*|"˸E\BFLr V^~[-lh7]V$ͮ^r  qRHxZ7=aB󇽰>ѭU9ؿ[uHejd 3~(>E]lms2 8S;A$XA$XA`A`A`AEAEAE A A A$XA$XA$XA`A`A`AEAE16WD?~MIENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-shop.png000064400000007160150211537140020053 0ustar00PNG  IHDR,StEXtSoftwareAdobe ImageReadyqe<IDATxOLTǾWI|@,4DLHlO)<hą;j.[46i. .4ļi`!F!@l| Wsg.fOa=)?WHHHHHHHHHHHHHHHHHHHHHHK~bh'uf~iDB@BQ@P6VVg9Udˀ̃!#R-GNwg$ 2bjn6 ?[^ 䋉w +aZQB˥빵GSKa>2y)(1$Ӣhx] tZ&V==?)m$YZN2'K@:Z>wř.c:{"0f ?NV"!vhnZ܂".yy~I-^26/'HR#mۍ7*p$L04+N溣V1Y)f/%"-ɋy]aaO +3anno?T;!n_О2ϺQevx*jzlndL$3F¼&y@Fd1-{ c'@ OFz)ugGώ[Xm,Ea\tuSJ Gj GvFev! {F6j +m[4o;ىtՒ=(&3X[bUFjnno 'RU 0/qC)-f`zLN a߬[v/[sD?yi[ |c墝}ך?)a +!PU]2ë+cPcW@f3m7 F=- lF -6('E# v1HڡAѪHçvj{U \ sݜΥƞ1N]ZaP46֩!ggl#`_vWsܬWPZ,xQZsV WH-"Ϭ}>hUP|(Q^_YS> TfJFKgkIB {tDg; hF z- %40Ũ hU!azOː{|?ڲjw%B=w Z3~$Gq 48u~U~M葼6輐{ŀmf] -6sؙ-p,vϕ6znD<K$vriz1hN?=;ޛd`ʷWHH$::و4x-?#U>u[:{:I,xJ u^3vk1 d/h2p .,F]lRe7zaMFŋn8z.f]9&R/_燣^apr{t9ɗwԷe@V<$]v֠xoS~֧WV96._a kgSB9 u<%6 +3U⃒r m;/=l@݂B:cSyU<ٺ XW;x~Um E(.zmwK4yFq`[3 v) ! ! ! ! ! ! ! ! !.`ELIENDB`includes/wp-booster/wp-admin/images/plugins/visual-composer.png000064400000006136150211537140020760 0ustar00PNG  IHDR,rtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp ypIDATx{lV/w -zS idxftӘMenNdYt..˲E؜6M7݂qq[:0 "SBzнl:*=ϓ\O9U` X` X X`` X` X X`` X`` X` X X`` X}<w=a%Z tXyU@, @ ,,@ @, @ ,@ kH5ƗgʉeQ1fHL6(AgoiƖX9^vWG ҧwS٧EGFO8qۡloҍu=azGXDM^3==:V++ƦgweuT7Xt;װ2"9KbɭW> S͉Λh%WԯOg閯_s N=$&E~Zbǻxukc,\-m6`sUw}̼YU/qi|\U;xKfXV]<:-EFo.>1/̻{ ^v8Ɣ < ƽϬ'^#n23n̤]ù}nEMC+QN9)H+~IԿK}{AUg>s~|t#ju݇d: T>;r5lS%NIqr8NS\cؗ}^&s79vylq;- (yjMWPԵg sp8o?GឭZؚIw}q94fjU?jN03xxt ({1zIֱܯ,~dzYgtMZw ]KqF,ރifYuku.y$Zv<>='_?R~?#b_/G>mc>,>X{uW>}b)2ڪ:6/󌶴3I^K㬟.+4]+J\ahB?jCN1:nk.aujE].Q0GG%Lxq@u"9N1M'+xS7ri˙J||UKˁ/. 6ilKd_MѹǗ#M 8(\Gvu6xϴ5mLGubkO9^"~itL,xQ )P]ԣ8ºƖR9' tkmĀj7e)y=ӍE$ٙsh*uoXu=eFHAt!HAt!HAt!HAt! OZJyo[|Pď.}^y%bNߠ¼u#&*'J<*&WJ̸ mׄyS4ZY}c K qpgJړ}uKUZ#o _I^Q6 =L-T)mN\Wnqe_RspSޱdc)< ߞs+jמ՟eb=Eś p.}5c{+5/8vejϖJN3zFة ߆BZ~D/#- *@]n&~n *nwC1q='0̔v :KU.^e-mPjb+۱3/e3Xv ۮxh}ɹd-*CJTN2c8V3qIXV֩J/yɧ~bQ+^HR]RUԯ,yg9nRʑJ*t+/ߎ~Oum^\Rv\Ĥc™YaO+/>.zL=N-$3lD|"\Z}*kKh)vLʴoĢvc1;DhwFrX% .\{a}$㓈]JU(*K]F)hR25;Oh"CQuY /9-TN_^ > :*uǖ!i&pV0XRICiJ|u9m'+203pnϱ?%p/3*Ksb[imycDVVR d@9[tiwAķح#jQ$ԠZ!do& 2HK!.J白!J4bi!0 Ko1 % "Q"Ѻ?m:;.V;[APDȸ#omT NLl q߰s-iyp˜x,Bc/fC]0EunL/-n1ru87'C3H(X(eٙaÎgDq; QG NLlEF[SKF0"q%A=ڰ\\s\Yiz-gzՇd)j q Qel`A93..J f"-Z)]VMƃ5owB2eNg8Ry7!J]zigry(ڽ6 H0˰v@b;}vJ>v},B9J9maIO՞$$*R[4dZeB꥿&xcJ ?cN~_=Tzs9vRJB_]^tCZǚ3^F[W)+G9:cpte+uKJR zQb6j'Z H-]+]#yDۖ0LoH5؄-1?U挍,#AUUPLMVl\M.nm[Z:>k G]M q1(q]yxK*ƣ|;99'=4ȴ-+uXs^yǟ_8zX},;g\ GNӭMI܌WS?B9uyrw9s:9<%tԟ/_|U3.ys/?|gӮ%C~2>|xϗ1^|^|sȰF+⩟s̏1<3wNq}x>R3Er1_L dqqCOqӭ,>|U3.y|^e|b*<>w\PSyto/KEr1_L d;()oFߐ'v׾@IV/j:daVeqO֬ڃKo$Uz "^檛 N3C֫5 ٣$; &( N5eFGj9BϙQ 2q[ok,I4/L>s9[r/޹.-TʈR.vӵ VjyU$ix$|uI `]:&H,{A,q)*ܭ7^""P@T;ff qeLQ%n16C::>C%9, o'0C8$VV|1JʾwϔGx W8/ʐf9 ؽ_s+GonsVrw8~^n8uE)%$yrFI$Trp성B0-g ž²*Q[WD*'+muuNC!5u4Xoͽ`~3Vcv @6H,1:ܻ+z؋U% kf%rv{WjS-(j7Fԧ{!s`& p.d!cۙ)50ѪLN[ աl%i-+]TT݂{E؂M 7-R>s->dv{F++iгGp|jwT92;3\N|Va_9c']еG@>UU62" Zv~9E7¯zD!7Z6J; ! R20|T}iqn^l;k 6pTE!)693rn 0D!eDȐy>1/ߍ`t*"AQoR3U[J%SRG;8</ 3) s)'秌J*Rzi[U)bTբp0.n7)J0r v, <*}TRJluh3bW/5 LP.Uga>tZ%ث[rm"LeV>PҠ.QTbRu[s||Hedg֤`nŝHJ"[ 00>c4N^sal%M6Kmv 96mreYvtz/,%첶?a ޽~dH]A(]җ^Ĉ}\1ɬ@eIIReYeGZs5IB,TE4^4qOEAv4}I"TJ@~ ]lB"Pom+SХgVAld2lYsQ2+I՜fHCocXn75:l#0AChD͠umHE|m'AM6IO8T6Z8`EJKl4N)?%|>^Me%̊ ҢR+|xNoƷ[koɈN,F;~Wz'm/XY|vZW1.$k4 }rjbkDTDl616ZZ_zBI uʅ)svP[u ajr 6q[13bSU㉶4@dSd$y eo>Ig K{Bq5~ntdd&Y\ ͭHfu1PQ訮ƎX/Tl3$avBlUd%z [mjciRqGѰؽ>6evJ</)L᣺^:VT >@3ͼk%xra.AH8ZٙNRЇc%io u 9/0(M~Cio;3hXu"%&l߼] vhHl;rl^-ѱJ@0TXgR)*F:ԥc92Bȁp,YnI>krl9bgl;FE7(4YAtF8𼛍٠gAY(bY IYM\j׻]z,H8P!>Sa%&:-PBCDxr. ũvW6x p8S~cfĩ.v2IM{MBվh*(RmEk0l[awRJn94ʚ8ܾV[.+v*#צ[bK FɷcZ9[4vf+~I\~ >$`u`$J_M̷۟u 6+fBcrq GnU[nA K[>8\;f,\E))a 7gX,gMC`kJuܒ=>V<;AܘIŜo!˲["1@ǹgnA5$q7WDEs 8)|6{'ZsVA+ ǖpgS|<֏?.9UCPL9+w-+33uD~AtG_436/~E[ ;@!šy[bOlЂud2aՕjOrP>ޮ3郞-%cnTU -niWQMQS:PtjS5(5B24Y!D˕1Me$A{E͖faP&i}2\D%f^DwUכxԋewpܽn$<(H}lijU"׷}id6&-> nfnkmJ ܆8i"U'!rNnIt[Ą:1LJ@EBaA[UZ<(->V,[{sJ6K4z`gCЋb>M y0=T[!JTuRoXn٬Y&Mo" [4{QҭR+:89zA|og {6oil}nzfmTG<s$uMý: }a: aRcQSDEwY Ze p<2d -"UC@nc@OTzȝoܳ1VVp@nLS .wK2qH4a^XQ]2xL68 ]F^p !"ѧiWd-pĖ7l};NVUUJ#Dk+d E_ 3+M*;qe[m<бPcIE0˕R!)PcGQ*07DxL~Jpջ5xң]\\ypiKQmy />ج<5筵UqKXD7ml|Տ;mmڜ2Eȼ0*0m3+~ܰW[ٶK[&ۯBȣ* T(g Q QsTV@8CZ-IK.zQOT+eŒZ+4hו^Kȋihd py}SnnǷOk&; ҹ@*aSw:)`+^8Zh"~b*`*MH&`AQ"aS2.W ;i[nQ2\f˂+B%A_=7ko;trKj뾰6#1EқM]Ai"2 ljE_˩6 p. IP:(-ƄV$,<4.4AZLNpu2qvGa k4_hmQXPǬgG2.됿W]rY•V*mfdG؝X`6^X8Kݪ!r-6C; &2s%Mă 626&- Tkpӫṃ%jvv\0jTAhz+rljY3/U`)pφ(Fwv'ņFoJbgFA F2QMEKPP|,q#V`$4vUɗsw$?#I|Gn]N /aS%/9B՜:P1eRI=&PRRkV͹)J:Cp N$h.6%5T&=het o<#/ա,%֔-R N;È0Lr mh^^WZ! ,f3M9Z؇48uY,q:}&󝑼O{}jblRM"$)A>pDȣQ#ħ"&+!M)nqnUaxz*5u3g.dORϝ1a0FNdRE'$y2n^yt!ULO2Ge~C9mx4 K#4DmFGk! 1eT9G[g N]Sb >k_ofm OEwkp浛IZ7F˚'!fe@W"q#xR1яB~pB J7,h.GzVَ͕t2W|BT!il\Ka] ؄?h;i}$d0㲇 pa,{ 'Q, 7'\7nfT앻qq]Y+m2 V $}3TrqOWVF~m8Cx<08{)ºf^A\kOn[bӬ˛~p^벑{o1ծ}rűnUyiI덑VeKA1[Puk:>Ax H%ܟ=9ᘬ;hQ߻i4O ˀ錰7MIR1뿈1\E]h*dvI)6׷MlpV7 &`UKj@Hʝ[# DKɸ33KޝTJ%SN4Jmmy,4-yu)TJUqchU =f 8ؚMX K)VI/"7Ozϗ52:Jە-2LM]Dqse6![ch/SNY>+g' m҇KV^VTy/ \<|([ƋHnpbm{Q u?TV+|ez[U c`Q}ߪg嬮'[S2E9cvJJee 8TH% UDI87)2JZ(u<-gO]b"l7ÃqJN ;q,g$2BثNQ<; a:!m[;(>QF}]4 t[A*(UQ VDMi>誔4kOCkf$YZR5AE±ͳS\@OHG{(w~-폫:[!2+P(Q멖P?⥛okI#l9a\Jd_.s} 08ylyTτ-5%jS+}+zdԷ ^ұkHjу_d;(؄0UdZ̔բCH@DZ$PbG< )kEbHmLmNWw59GvEwX3NF\|#Àjv.HW\ciչt2%KcX:^"o}DsX9i$Xs=m*(a(Miw6:FéYD#m(e]f˪n dSz|%DDh<ڋT%MK"m"4r'Jdž׸l;ŧMGkAimVϗrX18aFӨme'-w+|/It~NjaV½gw[w bg($~_G\KID]CKG`?U3[r;;45yЛ*pvAtήRNگeQvUmp̰N۩q,+{1Wwgo!5c31(im5GB5z%TO[6e)̈́SiJ$]׈Cj+#]R , XOfSC2Aɏ,cQ-4e1x$9XR*Ļ~KFZlVQs aƤ/^@fHzJڥkz!Qku&g`uT44̼-Cw94L_l3fjؠL9K:֞m Dt]lN7u6lCu3[FGu?d/7X^gQ;i}z«^ڦ0*n4b7Q)p] i { ;>Ҍu9IQI-K﷈m+Z8ø=>+:*XY:(}(g&lreH9NA>V[="pf%<ϳy[H ee%DqT'Z̺;mE( mQ&VK Kmw>m~8g||Èp Q6L&s5K9a6ʡ_V[1j!Zu)LsOm#ڔJ8^/963,8G_M%ԯ `K<3Uߴ-ZJ!#XGzSain[>(tI>˱S&&-`E$::^05mϪhfv 1=fM *7"ΰA ;Yq}4-=鱴JQ$"!\ {Qo 4j! PARIDrWfh k[{`GBunJu?XʁQfġ{V&W6m Z"9RXD48f@mixN5:1.쵨Qd̠GFz]ǜL-kpi%PKRiR| kʹ/M7,)zělz_0؂İU-ȆkRs9IpXJo 4⼜ëw ] J-]WKKn\*KRΧգ+>0SP3_G" ZV:!K0D<ןk EU[6w|F_ [tl\( V҉HaL2ċqC a)F1; |UUI~q(eq*m@#- ԃqe▥7jp;?@t6K^tTޟt_iE?hW0,bQ *brmdv:Q*33R:p:>_E(_=,jӯl1p{g_f rl1o(tޤ`d(!$4V[zRK#͹Sҹ ELSx^: O3 =*Ԡ!D{5:K d$CEfGA[bXLCJSd?뜘bn)ܞ46lؐMDjDFU"݄*ɼjZ~TV'OtsK10 xaqۘ Hg/VMz)/rƉ:c%$̰{lLQmV6k G*'~n]m DѧGҥRI:Z.bMoNJ`"1\-/m7+"2 Hȑ\ d_B- i5wQ431n0`cf:ΩR2ZASz7Gt|d DAjkT1'fXƕrX:LJ.(mz #"h,{fxUC57E| *Lk(UOQS$Ia #1lQHqS$^eתɄMO0!(lXJGd+3صm始1řVoyPW {M J#Ѭ0m띓^Ǝ޳ή[آ3yLƃ|?I(%-- +Xh*+{QY8 FGu?d/7Z91TN_^|3vN g'f%V>'(b^!?Qma(NVcui31JCʖ~h5;o7M\^`cT6īT 7 W ZY36XHaBˆ<2ɔš*qiG jY)EA]TQ3GVI.48*rԎ*J^\XrZ>^q'dn@ :[ y o% Kii2fբ&nܭtC wYױyVR^rGj[pӪӚ>5ke#;wfF3!mObaFC(yyDĊ6.=M,pho@[^ә iY]Ib t &"óX}+ھ/%\2Ru!u8#mw}uwgC83x{%(?9[̿0ib Bxrm_SK"& `7LCWbk _ޠ]ʓVcD?Udc#)Sm{q*0#Sl-mNڶ:s%)JHȷ$.:3{xor~Y*Ceȕ ض5V7-R,f ʵ?{pjZJ.{x@ir0xsA@x(i>8=,.,bhυCڴ.H] etp~qI% haq*CXNaD1,@h6x3hXeP]:.,F2$זfj`TA}%J`-xW+ÒLc&]eqU&@r놎vje| ~uJ5Rr$d%9Q25"cLjAI۞JZG{-^=2L0,ub<`(dD́Z kcYЮRA ZkC4wqX9iwYF^'W@œi!*ViVzܞEV^Ny!'ɀoܙ,<;\ZOVp-]y&J4Ȯ{G~Qi`ΐ :^&+0%mTIJ$˩:B_RQUJ׊b*S(9Q#!ԕcR)J޾%@ h):hPIQLꏕvpCm%8pqY`EdMB2Vg&]`I¥Tnۗeu3 vFVbs$J,GXB\(T! 5IE- F8{4QHg A5L-oTm0m4t$J}N#uS"'ЀsZJ68.ʹlB( 6luBP8;%0ϖLEi/[ ^!uƼD2,Za+1funf!Ga>HgI eyi7&cyV,2킠XH3 hv3&Ď2E3|%l Bg+lAӎMQfbsuaK:ά6Cս!8e zeY]hCV$RBێÓhӮ[B4ZlM)|dbXI#̲y#<䪚iJ=# Nzڈ(ub3bnz+}4yF]xVÉo;)$˃hUސ,ed->)NV5}QP2ycjƳHAt!HF!m񃕒㎛wꏇ H3jR9o/>)3_l; uW=+1-ťZ՗64˴>@`aT!-po g$Zm, +0xܐ*!#y\V}jCp`S L 0,ιxQ1Y&ijJRzHMnPݻ݋ICVz,ᶞ=j dMz>Ԍ# _RQˮJɗ&Z3 fD+ nU-1R}q=j .VRԐrȃt@tW/u[Ndx,Q}]G.6-F5/beuaQ)unVTɩes-%&+43r&6A2$ x1ǏӆjV n0yڔm)i͚æTcDh\[ {N=GkyיKٛFHj]JZ%~qR>j4יŞ& fUu.jG,$k@^&[YZg,2'+j)Ƶ_Ks2E#-[tgKZ>jatnOBBFbbZuəg\dNͽ(Ʒ5٠3IO\VKDk8CgjGV Z[e°MqTݢo -8ޅR:n kmbAH鴄Ri]XhϺf}ALX%CT<;+1^eP)W\i}HJh ߲"ЛuX|wy9. BG};-D|BG}G믱BG}Oj"ɨVꗸnu]d 0TLƤDuU#zYO㞣͢:'(Ci;˄W}e>0p:b#l4"PbɂܣrqxNVbUAuK^ڦnnt>Tp\rV6 WZy va.nw7{"{mir9w_<ZZw^6n9m]ߤO-`<3xUuiy8ABW|mCq5H Mٰl;Q~7T> Bvaq ﵭSX} ˓}e\w kBp5ZP:&H穇$i,;WyL.sڿ]zYX[hZ dž1\Ǒt[,Qe=Pi-{{R#NZ|mk{~Md4R_4n]_lrsިaxhS>;>omWXYINNC2@썦YMarf_IyuSBcjn_xWڎґǦpӕ~Yɐe xۇq%wZϹiCOUf׫Ӷ{wxFU7S7v1$^ fN=pBʢ>`gCp9qAN`hxYJڋHˏc .Zq|#:c8sQl)l4 NE_s=\sm$D93Bd  DB,$D%JS!}N^{Ehٵ=kmrf~ULSL㬒L(nH]5̩"qB1~ RKw>'IvF7 aīDuNOH\v0Gi˩)BѤc0SMli/X[5c3DId҈;LG3/3mڣq"A1Xu* xtj˹";)uy'Vo\mvƑLeA179L4N5͌Mƴ"皳xЈɪ8+Hs[ou۳{JfEslY"L6y0)>R]r0<6VA|/euGho=[<~6s|ز]W,%#{ . c=tEIloG7Yo* [95~jw#rOaʩ8zt25<ϚwFԤMmzQjr$.k\KgoL֗/fvy8l >v6T[O,IkiFK$R'7~!HAҹ٢~:FxEטv*Xfve"h8W}-ZV3g}T Kv1;x869-ɹyRةA Ds>#D1)%,Wz҂eKɆ-)cʖp2ye)OoXk&ڈEC\4xpYq̵o˭ -/=jo aے7Pٶ|xlCgXeqx[ꨥ?[{ pfθ7{^鈼;ᥣ% \FTaؔCj[%g,Cюkk9kNqTUߜmWk' Ώu,z7>"E\f++'-!lAV|2S'ƅxy{SK_~yl )ySR߭C3}|h[Ve2!f 1B0x.T6$NJ*^AH+B(+: u9o$=jZ8S=i VKN.^mrܩ` 0E#6J) yQ5L٩vX׉$Gz(KiSbOrc{K-ҕ|RN6ga36I11I~O1'%P@-[s4gZ!}|Yn8+GfԤf*]Kd JT&|cĿ(p3Ws{'Qxc}G^-ܟQkL;.+֘0XYUKyrL2m>;c+1Hyp]!cLZG^6YLhW6UiOҳZsqzkSKZW?=~8]0)U-oY2YdYʅvbMha v:F9V1ل%J,']#%[ڜup#EY~/+xz+JR#}Pa*=(V19JWC羔ѿS:C8})}togT*?!sJ~tx]?ʏ#;~ҟ34VgM|)}݉ξaK2#^X=B$<\t,@ zEĄ,thLaJV CC5)YBS5gb73WGHwG9?:. G?N{OΎ:%mNkꂒ,Rb~?g]!C羔Ώиy#Pj<X+-f+˵+'=!C羔F-75[N!iqIZw!+8Wa9qzC8})Ы8`Ͳ:Ŝ4.RJMHHA9?N;_ۥʨߊ3VBQdc.D ”__C}"V#{J0 ҝ'v{G]2md6HЭ#cXIDXwBeʻH.) h5ӌGh{҅IDud#+o̱~R\`c\i^,I{_wƃ[h!C%ſľEԡcnUd.XFҵ5srywhVZԿ]aM?dJ vKE86mBTn1Z=.sSA6}ek|0,L@a9_7g0= ljƅoo~sv}!cF|HA#gC7;9>ƑO}+8| hd=|I_~|2D} ψ>lqo?WΚp$SgF|JTqt>1;|Iʧ"GCZ5@UT$t׭Is۶'ԏ3s0@xr[w !Ÿs+ 6ckdd%fBU%Y'HSvpTDxzдG Z?jSvC٬AV2׭ùCD@51 +qO(ɼYIYt HGѤ~ûrNv + JɉBkĀK ܭ#$sC)V=R"w;cj>T݂j]E{LZy2S_IƔ ]%~X(FkHҵj/ĎrnKG]u@I]'e,Dοx(9 2߈^%+A2۩^ZK3_Bxۓ櫖56ة@UV4i%kϟ+mzJ8r}D׺xYuЅ6 ;/cDLޮFLTen)ՊR<2 #Tzn( Ab!Kк}R#6}CZm fhDܠTulLHwK3Vn=:f~`C1q.B;W>oB*ŚD{l6bS۴Hhukj 2'oC;R}!QuY 9%TN_^B^`\{Z?m+\6 3QKUNY2H4,)L%G[Eg@~hX8'l7a^"#j14qQ9_\U)lax6[-ڛ̶Z&!_'Rax]cDBWߘh2w,pZ͜K ǬƔ,NS[i"j1gK&0cglM=i;="tiض:ɵ[>*?a%0dhG|vUnm⍺,SM{>MBvaDH$8CD[P=1HBsu>5vUl.@ZWfM@].rӵk"gC#L&Y6=qW7e⹸mǷ_Pz)Jpㄜn!Ԃ_!z}!?3;xLٶGXFWIֱc :B#ūa^OG*vS֨Q,@5"Eʰ2u,39WY0vX4w}L<1l[&e@ENbUNоK)hty ᵟ($S5d6嬃[W!x?#4ڳ:ڭT"^B[lri*9#gV'WseiQcqD-~u5o5ynM EjcnZkU$]}#mIU,IM,+T_e /.ږ7;4#H2XyV;4qb"cLa̒ Ii(VzuKQYX+̮[3ZFᆶE`68+mT'<$zҕ̰Ʒ,ǒX 1JE).($VO⛅6Er? É, {g kWR]|r^W9瀛&mci|׏$FCCPžki \è*6@Ux<7dn0U|A+3 JGҖ Q]e.+`|^3xvZ{ʍ6*-$bb_GX mG+VRM"HRL|g6'ob~ѷ] & W~B"{anE؅OIG$Y1d)41c:Ueʪa7Fcde/; ;,D&v٢mzXQCR^V"+3 xUЌe cvxFge!N\Rԓmv-[3rt'`3 ǬA+z'S[ [4iZLԉW+KNV&фR4Y,+>cBX!Fv_+H;_/7;.l5ÜI:6jYCݒ]rὸ9=pB(f27țt.05Ŋor򚶱aF(;4fPP2 ;(Gv,q &tK얦t" ӰHO(t4gs/%e_!_NpyGo+:w MinդG#텎%c&d# pd6I42;E>=TjBc 蹋y;;o}6}کZu7-^>=Avb8A(F4WϹvGw\v}s,:ؚD0ʉ) K6 "9B;˷pVue~˩sZlm9P669r!Fcr=W*666JikB3ݍ-"dSDk? Wr#WPi; ZƱ#e3E;*&cXsz,uSx9 aN4i6(`GSZ }xS.>5V= VCu.$}!X;xki*jCH@ SJ٫6\:F-GA04}jQsqo<ϼЊhǧih::%'-hmQ* dtr24edZôbrQ ^J:B"gw7lg=%} Rc-D6AtF*wYt>z¾S U1dI&nmImyKI(@h ZFYȿPW>oBkޝ֚mWt7^gwBHrMMBx3 5&pfZ=!Z!N%m#yYNm4n(:~X# JSlyi#Xb G$bŵ; Ĥw;8= hh{kQwjjRVti oqi*nڟO5pRQB}e[iM!VNFCi%xGa m)ş) yY-׵xW[n˺-uSe;f22Bw _-g"!xu•\7`Ioy)}s1_)uGc1()s\rAorPg U4F0CxJ}!8N>_dFUwq}UuuHs~zuDn=dv`Uv͢"5rdw_4KxMC]$e4bk.#()FP"d֑oO/ x7m uQSf,Vچ~5`tusEGf\T-rh[njh@?"Hd@iamh7Մ{IVtWUѮl7덾+32ճWBȸj `0s4;IGԴVIZnGxo|^/uߌwˌv H,yl2q|CSCe"a'# UDodbJbyI ȹ`&gVOpɍ1P`j0 Uߔ;CKV1ڌ"\Edzbyɰi.(F朓}Cy 1(էî Rp'y;L.eX˙) S抂>xɖ*@_xYSyf{arcCz Ö*y1Q,9~Xr mCvakSwWlWD-<+lcWvZ^n6ɒleDI5^mFdPg) !u#%b,+qvHj2o|g42"|:I)xv )(Gk\ўLO4lf\b&cnyC}m!ԲR򦐤!O}gdTPR 343 ;r< s1A;rB+M?5'XhAc^D?#4qL)q`c[+8aӄ={/ LDN6(3 XYúy^G WX{e=! oHDO?vm,礯rRo}bE:BFJVN5&GB!o`S$-8ǞS;qcL^+NSFw:6yܬ9ZD@ †HfdzIVX}'ykq\8Z{l!;LkA&Ph"0juԎ%0lmm!BdWawJǾvk OnMkÛ,P:/R!bF2p_XaȇLy/&y\MƧ FMWn`AJ#:yR5G/C5a燾&juy;զr #֕i ~ʷZ>IKH^jZ5?QkCh)OxQi\1 "ۙM v;ر!1i+oiC,믋FW5/68)쨐AZTcq.hþ^9Y)96#kc2PnYyB)LfJ+NݜlX"C | pn6 wb݃FA儁qD{3Im3#" Z5"ܽ$o1 OM$ڢ[C&Hٻ6j{q/P@Ӳ lէ)B(eQjѮW~#ڑiu PJq5:`F9OB4\ök/A+ ِM{bW'juOZ կ8ե?wcW? U|Q7Z1 !FU]70G9S |)X4Y=ǟ~ 2TlW~K3Li7r?37&ugcžbL'gd鄑*Ĝ\!W(-SrUϕUJ-ʝ؋1Hv ءI.^c%dz/--!kJ>U-#[/"R LVU*5-ȡ-x2řK9m!Jx|Q܎Sފ/"fe`LR€CFbI`9 -e(m}"/'\<^୚n^<'}hG>=84&giQJR\C#/=E4DKPƟJ  3y V+A"*{5R&`}_jT\6h,Ю/hFWd<^*jt; 5ٛ8f% sO;98@Q+]e[m &Z6%\G*5eX8A-?$) LJ@ 0iG2H t3x0B0žYr4v$.҇& iyae0G1/$Č@IGb8"~ef.sc)jm6?y ~nj_GYp̽iB=^ig+--1"BL8@vWU {I5 (#aO:"E[Hk NهZ<:rcuL*EcXqGX[ #у'~e%_U/oct,yYnqqfvWۤ3_>y/(]aY|83ggHmqXqvFQe (̶vZJRi JPa)Jp'ˤRk/oHX|+d5}ȋÆ82"( 2P!e`F`TU3ULKJ'3&dn:ČiJ_%&۟*?`kyDu`^I>[ts8 s1Kn\R1Z1%54&jL<͜4kq*$%N6?v59<øL>sHEȗ$sUp KU-m>綼LF!eBMMՀr˶ΎzrY. , 674x4ɣǜg*Y\|TuMvQnmV tD# #' >q$}!q.azc`^u2ʩfM)*VqYHD ']cBau+I{׬; vY 9xk[,qgXkZI(V**1%n/ _IeYG% *⨳Bu$dY)9%v(Qc |\_HE1< J]"Lsd!HD^x'+0ʵ*pJR>W +R݌%IV{~º護qemdU yXfL]:l{4:08BxS>Zޥu neQ˒!WPiwGv,>N70u,h4kS6>'u*%*v4#h^bW a/'&!.R:r$NdLQ=[Ko]¦dgIPpj6P] {Fxg@f\Vצ]SFXۭ4 Pc6Fe)^%kq#g}XcEpp4mpMU;jugԑ)#ZDA GwT%|[ &L/]JqGMVhFdޟepybaRf܋)ׁNCκ. $Fh]qqh4o oBŷtbx7=,b hFjDA*etjT=Q|.M^n#K0(W?CJ""sJ$m]DzBgGKmrkuyzRqhV>=NG[C҆e ʱeT%I t1f 1ᜰ#d"lC戛,D(Y[(FҗqIZSg)ä"t!HA#?ÿݛdu9+h\zkXo&9":|[ujxs^*ma^x+tc6Y›L}~6='Wc RS'7qZl5/%a Z6q(.ejˋ[l+g1W!6eBfOd?6:Hw{Wؑ2r z瑜3+Z]k}2h\dYj$L:[Ĵ!JJЏx95LI@D!e1^ԅ6"Ei[iZc= nr^i1G3HD7 ҥnQE-+QccfknS7qCt ՒjH$f.[и 5P%yyO*W0s8",mkWw}N,ԉV9NV^5&uf[:۲ ej*Pn?`0D"!Xo0Dw 9Ted5%B ^iNO8ϖ4e,zlt{%Evk8١˶xDŸgqۖ|VZ۳7uڴgb55v: R(a JCRЬ^iX5f9-Os FXkiß6ŀDDD5xjpiBkmIyKj׳}׏e~>rxV[mqyCMw}# OsV収U?^s^ϲkDzL|v~}yM{>>Xz+ѯ0}~}yM{>>Xz+ѯ0}~}yM{>>Xz+ѯ0}~}yM{>>Xz+ѯ0}^ FڔN*sg(W1_^f39]"=v#aaQ2laMWXTI "NKę74+j=6/1%jS|IgUFljS|IgHAF?ğztjS|IgHAF?ğztjS|IgHAF?ğztjS|IgHF|B%+~x :m?\E 뭴mS)8O:BGu?d/7P~䗽Q;i}zw9u߆7i {4b-WR61iJvRFRaDoe9mF?ğztjS|IgHAF?ğztjS|IgHAF?ğztjS|IgHAF?ğztjS|IgHC!'|Ab妍DݒIoUH˨7}1zSe =dzJ)^&Z$9^c :B :B :B :B!~m$2K: S{L&"eDFDP^$=yt)S5HD;PFwns#ӡLw/* Ɓ1efI@ft:!^56in% zez5گ4!t!HAmnڬu[DaGYnk!}-YtduYHBBrL|o_je@"nfD0ě"chwgN%)1t3X-zR1ǫѻ Nmzfr.WQM<*&*G,J8u<=;9B Σ:Բ ?]_lrKިaS\k„e/2Ulre[GNdr< 1\K#hr-uaSa]6cv<}\A)&2y*{.0 pG!n!*-kWo5)Bdۘ2Ie$h9R[!u8q+:B gZ{^\M?d}+L$(ۤ}sK2~v0/KW?ُNzdxo>v2_ o)zsֻ%O 5AeyOcӞ/"}`^/z,>JYkoZD%XܪRw:RKMլxM*S%)z.[}k _N"BHܴWt&{$ӡffTauD ~v0/KW?ُNzdxo>v2_ o)zsֻ%O 5By+)W-p£e`[нnv+̭WZqN).Y)T_ǻІq׌ؘ[jifax +'0jh2n2_y4!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!HAt!includes/wp-booster/wp-admin/images/plugins/tagdiv-compass.jpg000064400000055126150211537140020550 0ustar00JFIFDuckydhttp://ns.adobe.com/xap/1.0/ CC,  K  !"12A #QBa$Rbq35SWr%'47CUX L "!21ABQRabr#q3$CS4VWc ?D&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&]' yW(u_5Gm6vЖzTAE>zjF"_  ٓcu-kλLhWk™r [Ff%]B%0x\"U0y9@d*9]hrgzor~=lG5C~R=/,o9GA=Oǰ  C7 `.OP?CN~]~)??,_ 8(J|~+Ci%K^!{M_<%mv`*^|+Gnz)8I7_?Kq7ozwT$7>4PGJ)v] _-B3uw;LZ*BUQtᧂISw 6 &ST€ 뿷<gIՖ bcbX{ yg|WAG$L"?PHˡPD{sfL.Lx h®R~ؘC~G;x)i$vV D:@D@sR>!!N&1C?/ʙٝ*Q/e0}t?#v#fzr&39A7Cf:(~_]Eu'?"vҼro#30xg'{+ `Ru̵6>k60[2X8$Gՠ>"f[_&Au}芿(@J P攭.}n_<䞾ҠÓOladUAHhzLgKRmPdEm}$nۄA 2h;-vzNr5d'$(跊dGnU*MRgՄo[`Uuv;3op{IV߲ Lf%PLM|`QN!d œ Ȼ̫EvѶgjdG;e(v"'} gyX8Wk)'p'9A8;~"Q2-L!̉|*`) p6D[UG6u7R~׼nԱ_W՚NJf-cf]G3ȮG^-ܦs(ȳ_lp!FUrC;K>f&|k?jJ&ɂ~as9,ϼI]Ƞ>]2(Ȝ(@&+i+(i先x+ߙ`$B{ɤ_?p0r–GM/s`z#eȑs3)_>"뼨rk]ˊNZX} `V fv>&M D$@SedO,W!u-+CC%sI6l)JcD]q-m̬*_yrmˎJ^kul;U-28BNÆj r$~J%NШMvYQBVuY&)ԛ`BB^xSLt nNW7/9_sy>M覤4fڷ7J-AAUr$Uc cNus09R&եpuSVŵl$FrLԔIu-z@|_ܻkGmlԇSY%nZSZ:;89mbYNVgVd]gN_IʝrRHғRSof9r9iYi7/VUeXUeV:1PxD&0L"aD&0L"aD%f䫾d2eBoo$E5͹i#cO;%ˑ91ZOgۘ'X * X7G1E5\IQAa9ZG* *Pa!l9JQhWH/V^7}/ckh6vljlka^bf]=$!H|EO"xrp9zU _W.Yܣjw\#"TU3S|@P K5q}x Tvגdz3X.oS(3(v?wC!U 3s/Qy&s7w8=r^A'C1?,ٜ6=k :va$aN+{Ŗ^q"m=KL48Pȴ_lq[u:wmJF( )' pc=,,9X-1D}MOlM _drbf x\vu&onUJvPw_PJa":" R&JS>9 8u>ٓo^j=zԵEHY=;ήF=? ʳ f]gd}#%gB#Mʒ ׾!ffly/M@I%CVls7x*^ϯԶD y&2 UQMq)"&MYp^V/# oqso{jIkM{QUxYY9J9ϣev^fӇ;Uչ竸c6H}>9GVlMv(slԎbNj Euj1^Y(#7(Gӷ|e\#+*,x%:-ٜ۔IZyUEr;~Ui5bwj2Sj=9rR8n^3&? \g#CV䆙 ;[mlzJE`'냶k[ԍ_)9V3iJzs{.uDǰD8(搣w3ֳ7ucE5P|v#ZWw5']]K{*JWJmZ]̨;&&2_Cs&M%J΂}fZW7%I쒦 b++ c  V( IJ`/@K~~yDtfF+8w.(޻HvkGz^>h=K )]t,@(f p;oi^&2ZB6KBvպ0QxyIՄ)v>*n{S;fT}'.Y=DF\o6blF'&QnZri-./u[xM9nSHӛ9Mw>+1LE6! (W')aiXir=Tg-ocvϛ)I36<=%B/#H؜؍ ,+4L+ȇX' mzڢ8Z>/3eR41@=kr+ڷMU5M𸽕[ܩL@FOe+B:+|j4+=@=) Noٔ3ipr+jPqQNֺ1,]yQlE&8V fEeR;tt {]{%Paeg~Rnҭ-;uv$Q2BIMdVde+(ZQJ2a9{XGsޫ&qZh;D(m̡̉Hcȩsٸ |ƳM\=+ivWG3 ); vV!Lbo= oy4R)fw5a^֠Uip5R&WM^pI“UU) ⎀;63TTƥ3k{^4z1IGL$e;pu2(eeR8[zb5K b5e -[m$P)$,0PJ^ /U]kzٮc$c3kqd[|ʄ:3<:?_}K:0(QvԤa V Lˠ0s(P'/GL _!D B (AD?0OQ2Ȕ@ (%>?J =~}<}{=^d<~/T@G(T?~xEL"aD&0L"K+<4-G1l2h&/5eщ4JW%\~$ +g,\ll($UE^Ƹv4Fc[)*F/z.ySU0mFb!"Uy˖!,cM 8`TLA_q.z7˥\X?IMK/X˜ \}1$ݻ4bd_Q+b$)|CsRDO}6D-/WA{Z(\x"r lMaJL ٢B6,|fhPhAprn@o$͉Tm @;ZŻ_~μ{.cM_c'g&*yo #u9 yMI #Zt$C 66n?;uYn8tA-9a㩺˙EO UrEQ1jbܴ~&XU6y¨hwr3Ĝ~=Os0fEr;}诪fŹ09*&Q,]@A!3i| żr*x9\x*^j^ؕiuf+_HȺx5N_r 7qYGb*?HBzki`%@1gaϻsƃ0L / SYZl]fbY#*) 6H81>?lا|]eҲ0k~PϘI٦@БQǴO; py\սXC9fkKbd#Z߃l(l 2$DP7ޘ(xM5x *e]OuX(\Ҷw|göh7Ah!c S.\>UH5w Zs)UL^">58)#Jc"_9&5zb=Djr]hpE㺄D*np坞hIHJ}lkb&Vއ_PziHy,zu^LlRi=h'y>},GT]Ȭ6"੪>z {o*vIYG7i|Gkhm\[-wH]e7J.vKAw=b× 7/~2r%DidӕZ0Um絭7H5R[$絭^iQ=~&jbǍ nuS›mƍi[{zU\8_67ԷfA_nuav. sܾ &$1Hצw.ЬF ;*ݪ5>8yF y== {r-&iԳ|([0^ z4]2iL:58]}ƷR3Vv}RUϱ9%5+~Rn-<$yz2K'^q y'J8ƽaߡn|ߡ5ď֗)JkНܬK;H(K[<,ۘ턮EZ^u;Ź ǎ7;kY⶞c  ½&?dyv3{elv(Trr*a"M:MʮYh-Xfu.Yv,X dT[lŠ6i*&"RoӴ>UoNM߷^Z|W[xh];^~m2dz|nJa"tZ+rj%ons:WiR]6{nn3#4.lݒˣ[bj3BKFaHH<"hڃ6^7:o)pFtRc~ʱaXjIٞNwSp]A<#s(!e Tj)i[^q_:6b FYvnҚ~} mmj%E3Zj`*b-db0j1|aD&+GBºD&0L"awqܣ.kUnO߽GD*.unQ@0\xx<ԭ^֗Q{VϚCao/QG#jQTE҇ yMM[ =L/Y[段<ь}CrkϷmS~Ld#ZfGHp x@bcS7-_jMN{nMzw\r&\ʉא Cku%:^B+Ih)#+F^[W&P*s(t !}\7w|ܮBH66YJӬq/S^,2&^mد$.CuN.~H nR꘭}=CA߹mx \MQE"EoҨ$9)P{UKEK"1dF)RF4|AcSz̏wEPʢo?<&+C,40sZl>ip_2)1:"&0L"aD&\w$^Dr3[G:/dQQTjs>t@XF˽U:UZ9&DQeӇvq7}l$qq ]t|"6ªkŘe-,_[_|GG`EW}RizCu-CPc% š }f#vF /䑕E#.ҍ*)5!\X}/#"$_gsv(j,>j9k߮S'/[nXpbZjY ""mMQm01߷1Sô%O,ėji'zJ`8iiڻl/#QU1ݝ\,76zUmښf49={! 6/팠l 9zn1]1/qUdVIT&KS UHCt^y}a> [%p_ &=}.CE˨fDT3P񜚧s9)ǽYf1a $UM,+ڹL)o*dVAr$DĠ' **Z1|Ma,fe \nU6Cv+UVC3;w QV HbUP$G=]!hj.wJO͡93)I1r!ȹ;oBRo,[˷N$g`ms',~8DPn3=04LY(9 (wFpĨ&B"c~yw'p*lBɹuꩍL*!tD<Wx?C+q krZjE6빈vPbwh 5@2DW\T0dq1Z-}PQ LddC=ov2绹fEpc}TH\`MJT*pHLt԰}&FVwiEzY )ƞryHō Bޕ:k2rM7 E۴M4 MseH%Lsxz=kWϕ{}Hxiե]o7.}Z[jvHVvQbʹrE򺸤#?fΰgF\=?r֛g޴cbO an`)^"mf{@޲=[RɴPWe a (!ח Sy[m¦c we6G#ZD=۽>e-.$L׾. âYSx P8NpppSZ>]=t/SoF&k[ym*NJ!V`vtdE)7/y #|_='h-i9u#<{7w\Vi8UdaT[MFic2LU lWE]QAXQDO^a?+WXmvb h1bbJ ªf 7H0a) S3ٰě[Yzˋ8v&YMcT$^?j֞Wגp[*141l èijv^)#k]{k't=!mm1 d8m}U5I4x6 0 #1_ <ܪiD*^{ kIEvLY ]׮$l{eSN8$6f;%S`?5`8PbqdZe:a] wF8~5O."U0MOXGQcaH)D,9fa'N'zrfB\OkMN,uN/gQGj,RPp/Y9$CÄQ$LOqCe\W:K:&mJ06h@+ay͌D)G''&mV$ $ $1yW.@~_9O[ "B|Cd`vȜ[ʼn֙/ox㐛:BrdeuG o:݅jc-k)4e"XM4U/T:xD018|8,;V` d6]( a'{r޾z( n ,&\h2K44 5eE.bsrca&͕5D&0L"aD,P.Vޡ! Q)/՘[FN1~մx C۫/i|ɕ/%8tʠx$?O ;𥍜|#![oەII8MW-09ENP9̠s498dZ~2jMgPUļBDR!ʢ%IԬ>&M2& =1/i89]!51]q04{܇ "/6V/32MܲZJOEetf2.$YLC *ܦ4HJxqUDw3#wk,nżO>Gx Ra\[3pZUÍ{G qEW!g/)KW'1Y:DɨCNCKPlf5>TT4gRJsM0rJ׹O fF)3A+GYAYQYI)PY(|̰TM1 8!&USwrO? ȯU}qXN!ԯы%Y#@Y=ULbS.6uGi^-u-?9):Kui!Y݋\kX0 )FRRBeLmm{N'k;bϛLFi*SO:Q1DG~/faT}=Ѝ_|VVUnlGTQD`l("&cΠB1@؏Gt>K%ڜVOWGmհUTImK=szEZ$JoW0ΰrTUͪH^8Q_im8O4%Ӣmuu_bI"5me5"$n*7o&q"nΓR ՛XG,4uu^/9CuS۞-k:^""x mF)TgG.2#/o6Ҫ~YSp*$Nuz]lݶ1;SmX-JBV3i2׊6F9ff;]T8F=vߦjmFv>]7Funi=zo8ew}.ZEii鄌٪3ʝv`zH_jػCVTض@V3N Җ\]hYw ceXE7VHL*lb @DJ" D=~dOT0L"aD&0uk\j BA:-/mUdAը_}Aq?OxRυVEO4h[oYD#K$4.[.WCx 㔚1QG}*'@SP,fQKJ[ /3[n[4 1RաkeZǖ rOlku=TG=R ᇾ.<0Tas \qِݘ1yiMbU;3]bSCJR>W"E{\+FiPX(VLL AAb~=$ q/2j\Gh<*b1nQfj &*&h"s&!7ʽ3(W:VxwInL$) $1c2Gas ehWWʋccdAXGַR"jWWX$OU5MOxv%9K&־/lGr{hvVv̺5-gGa2~<;b{CI"YUP8neSS$< ""Sx£xo#R*b^]7]$UR7u̳)USze2"cxrj~h2,ZFЂ@ݜ_z?WHP,q0]T͎8IuSRDu&.hQ",7g}1hxi]Sc~驧am~l~^RqW2Kʠu(EE.%K f= xذlپw7cXU,x4fY;^:Ӟ~f;_{ Q| a{b L@̦iً* =]#Wؒ~9L[G+{zz7)RtJeydrG̝b$~ՏeMmې9扞зo{e^AM7ڶe#A$$k,V=EԦYGƦQ* zy.WDD2Hmdo ı LF d1 %>_?F"7_=v_l5\oj)hjkPZy>InY <QA1DxEuJwM)Vs?e1Z:VғSӕKNwb楩^Qь}$Ld,DffA.ʷΧLf76.AvLc(~EkYd~8J=[tK3=_u6:nm6wE4 j269ȲjXx嫶f!;d0B^~nir>b2rcP '$b2N+M^ \/WCNVv$r蹏ژ:AUA;DW(I 8BHMEA%0 2Ȥ'[z(AaGTe$=H,$9$bw ĥ1+%IZcZ-ceh@b`G1%Y"Bbnd$Qhd_1*XdˊQER1Pb&(N}!(ʔ*N6eDii>bP[zI&oIӴEh&3h&*>mnt"0 Q1pBNdEiY nݤ2g6*-ɵCېl$M2&NB&P(wr&0L"aD&0L"aD&0L"aE;%0(@C.`wEt!YDD(DL6L*0 @ "L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&0L"aD&includes/wp-booster/wp-admin/images/plugins/Newspaper.png000064400000040614150211537140017573 0ustar00PNG  IHDȒqPLTE2#m*V;!Q%F #$#&~5Cj"3F2.,3\.xW ]BQ?Lr979FEBy>gPNN-7ap_[VeceP]~mop7 qwv(@x3*Oߗ-gՎuvyii֔E+s7C(6mrJׂ,>O璿;R]G3YӴ4YYhTd&/7_jnl7ΗF)r>HXNAtѹx{S[<ƃKZqP˾F0ew mS_ʺoU&@gKf> V-WS%rX|F[l;/@7KfH0sw\pF>oskJ@qzfr+ZYz۷؈i}Η^ն?RM`/} BFgvvW<qpcϣֳȘƴ$"i}RR07tʙ)zQY_aG{Zȇ>HA|>6Kom #]B;Tmnq9{pSwIDATxOje-IԚ [gvZce/lVpP̮Jg͎Y.Ǻ, sAZVfPLWVŋԵG}s@\ss9|}~9c9cTSEFe*RQa҈mYeX;ܮD('UfW 5KIUF ax~{eZقsVI_8U<7;g]pdέOqؚy,Oc %n.f˲gpsܤ8J*-CUhɊ';j2!sz#e׬hd٬ؙL&1Bn:rn~ǛczhWAvtI0:{Y {#ӼjzZuhd;k1:2뷆sN7?2=@~{sSu#Mr vRD_ :-TSu)S]ozP-l8}q/w\O{Zj9e!E緞f[v ZcDfLq+YM{ǒ3h,FjA#~B hVo'j? 1L$=TL&ֈr`~aO^]Kd*wlSz;IX*x(t u>~pSorϩ~{t {rܠT*ԱY?3j~R F"0d*岧P#{x8ͦM/ b'zr CAo))˞ e>VcqLF~xzj777#O[b1žHά@OŚ H2l>9SY̜gO1vB,LJЅg.2ƒ |^̏Kȳ;g=~ߙ kgq->b.Wg~G Pv)fFDp%XnvG_06P)PPυ=]Ғ닰MO&ha 3.F-ŀŋbdT.@UO*G+4?n_0ia6::j]a9 CYU2b$v"B$@Zƨ UMO\sb|1{U{ρI &)Y+΁q͸YB祇$OK~bST:]tz'CV.NPSKe|̙|Z|!h^E%;@e9r0ͣ]*zx̣vR`S Y- Tyd+'DSTz zJUOY.$\k^ Vc H RC?{ΣAt@ _} px`r/P?]Eb9ɴ 01om[j/K(%~ Raz&FG$>i7`L1Xr~7`XM$O=6Ϸs2ժ-]K&{={l)s!DbxG~qŏm5h12tq?߅RLf0p<r\> NF$]7?n^ثa~pCթQN>29abm@֮^coEcGш V.# ޯM8޺=b%xnSZo?Q1Vzb"R4%iKT/Q<zzסە4_ n\W}w8/ еB˅K?/CpsыzGWedm`'Q*㒬3&,c`m Z̙YZ ed^֍%*&E]Oe݄"N}}}>s`M0x?A2,2e :;>߽f;9  N Ehj'.Nz8θi $S'K@҆֔+#5E{F7GBЈ6bT(E)pxK@UĜŴKXkGID67eU?^3|'po ?U:L asCX\ڜlIs%RIT%$*Ix<b$`9 {5{j͚lfh2K4W-x֙ހsI,`? ~ #b fa#"t&kM6@q E(KĢWs<29> `H$T@qxbn!i Xlgt\3 ߠIRLT!& T"cpE$J v4yVU~$VR|A&cL(0~Zlޜt) ,H5}!:Ijln>418gl3Ü'rBtU<8b*9f(v v(6)b<'<y3M|}G`A;nYi;z3gFc ݱ$hDNpK\nEC PzZa`xG:"t徧Y< `_iiCei-رװhOÉ;-&3V@ JKHj:x@IT))iLУ<&lW|wfzpz>=}Ջ_=MAW -7/3mo;G$!^l"PT>2k*>ɩ<'7;Ъ/ꉋ{v'.V:\p'n/I*.E.͢q|!hVF3vp|yns3{ǎUvA FAnn٫ȧxΝm/FbYaZ6+YVkU;B8# ?+psc4g(}"L&:3S.wD !+Wd<C?l&_zLpH:<twT!_-*$NX;.׵_|')&+K~Vg³s/;OZ_T(<~*(1PL#h-?7d^ !L=@8Dr7w֬Xj2$jKCkTI8[0p SOIf_}Suaze.VL[_`DWa?PY^5/immŁ#›%)d'7e2QTF!\SCJH:;{;+h>ng>ٞzdx0w+}oՖ$1oKv-VՎ!Fy|wmMTOLL4†1+U[k`y7))t: s#&r J#R$ͷҙ͌l#'vq-?9e< ޢ_~+p8G:> 8ɕAc y& 'KJ=v!I!^uPDdճT({nFל|I<5cq)p͆K{-kI"Ұ0h>ܩ*эH'kC= #ӭ#Cx'HW]:Hs]Qɫ.w;V(TSnC<ڂMMsgh īW0I=Ɍ_ rmGGG{vvJ==jCy Z(I9U+kuMmQHKUE~\,:#s24whO/YTJRV Jve?:88vou礎x/(^=P*ZRSg\Zg;k}Δl@'Q_x K=OL]k?A)Z`QJG߶gf9>8h'|nρ9tg=/iktEWt"+;|#&7O~`D{bUHHFRR,JU_.+J xQQHfg ||nNBB4O^mZ}ЙA,x:TP71>~N'ED2rw}gS)L,Og(EGo6/|{s|$b(EIy}>87vOpUOO׸tnskQvuڱċgeQnC y ]pO=n|#vuwo:/Ϫ>=X7d]Y9CFH`XbH f*r,oD#L@A[,ȇ0KǗQ&4ǎ^Uu!ҬM{}vK^d(-$4E {{"#`Fq$KD[_(D].ˈH፤b 5[Gy[^x'wΘ[<1>= $I zQ29D #gk~2ƿH"/tc݊2fQu>jҭ>jjR惤 + e ? a%$H=# %>zPr[8A>ajB>ld:[z["f݊GR,.-Ŋ9]Rܼ};Kg&gyP%b?VM6C?juWaRׂIZ0&rZ- $_2"ƳS#<å]6 ڲSS _ILXٜoUUU[_֮] !8V|ˋ1X:H#>|$>T垦6E0脦+5 db4idEAQ%AG\pk[іXq5~#UiLm΅|Үk|ݻhwqw60?#֕c"쇭]mQq? )8 cb1Bj<}G6V"!ՕQ}/ zUO{3e;YFNӑ2h,4\Qh„o70}qؔ|r |] @(DU1V ?y1`c,3[űLX#f4Rp_hGce#ZwftpQWD2kְ6{nl5/?tODys:90ߌp! H?Sic#ѯFեz3b2f|9xB6bkS+z#RI  oaֻ YRB)lPOlܣBx8%Bɵ@dx>v4`6 CrSҲ,j 3hx8LYy+,&S-Lv~ EPیgϛ5[w+!>|1,e#0̎%B&a6a9҄;Z4`<ىrWn47bv?'!"5>H(沵b_X 3wdBM]Vԑk2ࣉF2$4!칋tr~(q) f>4ūlC¹b*=}o=TLp>M$#'#tAY^zz([/g1)julN%`%BEw0rt6W{ $ůC̉/w8a~|PF<٠d@tQdo'sq 4,~hȥ4;FM"5 Z;F UZJuv9dX9c xk44<ҒTğZ{ATua>0E.faiރjTdg|x#AkGFKM`}/fk>mƩFGM̕_'u9=!mCj Z5!?yg(32X>0o񳯾4a2p|S:}\(|b1z^oHDsh %TT?H9꾌RdRs%{[z&)*V .ߤs6dOj'os|}a 23j>́DZ#Kq'\E _S7: bȌғ|@`um5훷}>__Lz;(8o_rh|GNt0F/| nr-#'|[989z9#cǨ DN|pPW׉5TJ/ma&YTA8:3jȎO)5o_Cpy~ޚ. jԺgk&&8-^j"_}.\4Di@cIqGC-fTd!QstXheu.NFj!F&j,?f=5h4auMt*SG*7/T{qk,ud=*YȭLVBDZmu2X^^ϳط0;r]2}>[ՒO\Rh:CjǷ/7q;8$[|8F-?SUPKh?]7#Mh|1#M- /GUd l_ZR,^ =# ɔ\H)12'-4cޭ^͐\@@|>;_`a\|Bu 9dM J+:X !;E7TQ_dOZ .tHf$eoz"h8#0_W~ᓲ>8nn]ltͣw޵^w{sOVKaB^~|dǟVE/@aO7NpKQ%P:@ɕ5>o`v}=ju鑣N4/=NTR`k>Lv3XwDOlz*_'} Cg 曟O:R>r΂ ,5?q OZ5>*RMU*+%qbzNO8`!1Apqk~-RIH\ȦL.?D4҄|dyfYEVDxf?'X$pgpt1;$"n冷zk/r_~F~Sm8 |$vK8QԘA+t4øk9y%Hg;yƌ:'!%HØK9%ĎP]pUSs *CC=g/S"nOTtqcxd>8{*͢zw_ppY#t6)A4ݦLRl :k>'gG H"nⴁaƸ/Z'fbi |<Μ)_9;Gg޳'ȔlhIi9y]ȓW5w|Uw ZXN/&2 I$"tI "z^"j>1g>F4}̙9>uߙ'M*dd۟G:G<N@K񓦑ް~9P9ȏhj5?3}ݪν⺻UbWvƪ[6&i\]/d2Ð#Όw<%UM/}/[W4H\Lch[7IMӧ/E.M@dDKP`Regtr(2+ \zQL|zڵk}axr| %Qhmie[|]]׷.n9׵57/h9 $6L<{g}Ƞ97`߬}a"AMþuyvW)+Rdh?vh”o.& ӛ[swhDH#;bo5h[}%ٵm'\I$G/#!> ~C'_}/_a?߷Uɓ $ [^>ze|Toos7bVe"K 8%\AvƦD;&۳5}{Yd|t8;m-]ٚ4J|VLlLm岂b|[SVNW3Ի=o`.LOm=j~ &rF 9m"[:aI];ʇ?[a7s|{{䜞3[P_g)a> ȗaO3}s0XT86Vܥ~ob{qfEfa?o=Ћ~+& P" 2 {ri#]>o..m]SS2/>a{6.( 6M(|XAMer"Csˉc~/bW6_R~<,)6-P+"A=OX+)aW=7w@g>Eye|^ Ρ:rOou)B'#dWq @Cdyw d2.ثxb8ve_M$[DχA;Ax3V`/<ùz~pHH$8E7V` {40pvm¤|~N_G09QZ58dG|Zhj6kk6,z|t〭|ܛYØ?Qx ,d *Y+kW Q1P%~dʊζ~jy|,9\@Bugg.֊zv.K["#X-p'$u2>kd:]{BگN:=>/NM݀%M|B_~!B.m&B!XIQ1^a_ {F3_X D %1KFti#ޓ~ΎJT[ݰn" jGZ۩ˆBُ2^fH<* fȲҟʧS|i2_0598]M>Bx$}s׈4Oq\%7 @Wa:Ҫjce JZD7;՚#dDS}/*NΒ-_Jt2Ѹ .|@O(}v~{/Dl"1jQйGx%k xrхR*3.l0iT’L&Lw|1) zC&g<8|jq[Y'.}F&^g{yD4Y!@h :V l) _(d,wZŵJ!S޽sZD5?DFCFW cf`I2<I5B-x8tt>*(z[ʍ&62V*Ry`nuXX@_AX)łv̚;I{Ž ^+k:}+ Ogނʥ(/iLC^!+uw2Wa2jSjV!3+gJ%,IڝH4?dȡ0&{įHzv;,4Sg'tɟ~;]S/cZhYY+` H@_l!WB#y{ix<%@j3?r8$ A:ɜXq^0#'5"3RR] ll\ n ieSAo cPGM %_ag8k±F\ 9Y$B|evPIx -ɂ@uQ&"V&z |*:p. ^ L$rE K ՜eD#?ABEHV#QHJF^Dkc@f$"وWIy m`B|G4`+H+U4 2|0NM6"N\ 3H8D>CL g%OczX b#zPo~,t vHRK!,z <}z=V*yKE\ 1WvvٙXDXs(Z'?@q!2F{ؤ"^"UeA&]:FɤK`$Š$IOk̫ Ea)#)~BGf X 6D;7MGckO(.)Mvl0^C_\T Z^|ZR0:ŧ#ֈFTr(I4푤Wo }nl [CR͟O-H< ,ˉtyW+˹QóQȆoWBĂ`4hnBaj2 xiiw6/rgK7 'End)@ݦQ#\ c+|,~{f* 0ְ>?1VAZJ8Yr ݴe [68 tҿD|ygُ7։oI/Jp_?=J$!_B>y2/Ժm>Na ŢT{tPpazʩFH|{mg'>~ru}|q͌T> ߃9Z,)NYb'Bz%(T!za9>'K:p>_^󕵡!$!:**!Ox_T+) Ћ z(1"-?l'B|0h7??3goP9_%Q \O7yp%}El( Or#:c(GFΗ~ʃ %Qi˰ `a F;o~FωRlyTO!`_'G޶>ouu]%.X=*?o:aq}Yɐd̏[c~M+dCExAJS+ #* ROuLO[Njt',p6TIC|3_͉;߮oGD蟘&Q!߿˫&>Rvt|{6F=}yp4iyȈ*_Ex8IENDB`includes/wp-booster/wp-admin/images/plugins/rev-slider.png000064400000001330150211537140017673 0ustar00PNG  IHDR, =69PLTE8D휀j@塚]0pQ`vPm@ZIDATxn0@ccH{a15&l$#x3 bXˀX2  e@,bˀX2  e@,bˀXob]r]G'䖃|{n%:FC+b niE mjE;WK[kX39/ĺk)j ZsJX=v$Yb"Z-Ӎ!"3'vzwʱ6 +5jeZ4dUGf wЊt VL;iߊwÕ/=ccydW+NJ"pƊ?:wbu:hN2ƒieJ+*((VUjer!VkdXV^&X[%%ȷK NX+A_JG!Gd;bhiEKwJ9x%4fy)kcC!*o59*LX}l)~lޝeVUիtGֽk;bDE׈e@,bˀX2  e@,bˀX2  e@,b'lIENDB`includes/wp-booster/wp-admin/images/plugins/td-composer.png000064400000003175150211537140020064 0ustar00PNG  IHDR, =6PLTEN;LE=OIA8?GmsbYThz^2STkIDATxr dv[lU,r=L/|7Lrq" (,ǷT'Lq^(ܲ$Kgӆ(O4!LgE.f+BcRnnN)ʹ,M&^h+g46n; EWMA+ 8NuzuPi&[HmkMK+^F^&N ɣ]J^9[AQqC!&8HAֆVi&.{\ŜӤ(bT8Zl:5QH6VWr{瘝vp1mZEeᣐlCN4 _[Ipӣe{}F™ +ۺM~s3ut,E:fh$q!յ*&:1,yobF4WmM%&g?Ӗ rԼ3^h;v VyhbJFW̹s^ӾH'^,eR[}p0w}ُUo|ۣ%)b3=HL9bSȌ[+Kb@w5d?͏nKdOvTT]=NI؟d>Nm]u3}*k-ժiHfu;saF`(DA>=4[g:&Ei{9O摃/w 2w`)O쓃Պ&&N[6qwu05!D%;*:DyqM488~ru051nvz<&m|诃%mm䅉;UF!ɣ7a܇׳ĘZsBWQ4MKYj**Mh&lm. Ns2~eb:kN{9x%Rmv) r \`(c" D[UpL%֏[+*&Yц,grs]=MԈAY{^%ςZƆHq\t*ЮlU=c⅃ݐ}ԇPt_-\01)miv́VV*V]u[u1W&&0QiْeWz[&uKͶhBCCzVi`ԛM}|Aoo'{]uDIENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-eastcoast.jpg000064400000126164150211537140021072 0ustar00JFIFDuckydhttp://ns.adobe.com/xap/1.0/ CC,   U  !"12QqARa #SV$37Brt%s4b&'CG _ "!21ABQR#bqra$3STU456Cc%stDdVu ?qǢ i4B !HA i4p1Gi ս'w|'Yb} 2/:~d^/u4ȼ_$ ixHA'"|OE!XoLB>߆b} 2/:~d^/u4ȼ_$ ixHA'"|OE!XoLB>߆|@wjO#(QC#D-!B61fRe:D> %7G>nؖJYY )Z$樈䙢nJ`L)eAQnT\OƫZXσHA i4B !HA# ]NOӹB58o{w5H'^HޏNVlUb#Q,^􏙧zA~~?K!w['Gt{zA~~?K!w['Gt{zA~~?K!w['Gt{zA~~?K!w['Gt{zA~~?K!w['Gt{zA~~?K!w['Gt{zA~~?K!w['Gt{zA~~?K!w['GugǾ3`߳銣fmojEMDm[|}O};5ls:ar7}>G-!HA i4B !HA \ܤxw8 )GbMOfe8> q3g2$ J2Tc7%7>䤚 7]ET( ٿw)yDT.?xeRTTY" gBbNffL=pmD8LUPrEHJz)ہ fԻ\mcjΡZrBDh//C_WU8^Tס\T J}nL R6 V\M[?B$I3n3' 3kmdk:Z&б:՚"uHME*ml2U >nbCc .)0$ T=j\BFY|(a%uM'GH lm@v=r1OթG,1Pc%v7b.ERȣRP"YC@"j>ף.Tnx6꓄VCLW۽G6';ӗh>cMJ0n."#(WP1eA[|Mn]Zvhl8R6ERAD~Jp-lJ!,⍡8 66 o #[ĊdHMUv$_bDAխ7(~Ej(zlJK;% n$ aq7bi m{])īn άi[g,*J黑vl-)X۶[v\ǿ>T[!vZEs? !XSJ[4){5ڔ6EOlә:XJ#O؝]ǥɵ0a?22($#'}^ll2")VR 'UvUD`3 eݞAm i@%78Y"" iey_ pp*Aɹ$djhA C,7 p*U q)8d?&k$,>H n*eN*o(8$yof\9ahhkm-ըǙ[͑2$YeqnElOOo+7WFrD$e֎4|Znw&fŠ=uw 9sQYbUrO]z@Jd%fY!]v.g`B7QCn\ͽyE\"H}zdPYĢ/0(tZ5)V]aD B Ca/.!s$׫FjaWɀ]^"nʫvKg ̵fOQOqz]P]xr3s7I27O-RzfDۨ8`=VᕞvEGiL QIK\y!p'ree5L#ch[HoĴĠ6:-!DyֻDQdˈCpދwck`9J;7/~2KE^HR$;>AFM!HA  64pH{< {ݧVw{C5VE!x'>?LBOh| 2/;=d^/w{C4ȼ_$#rrx۷g֫n]?l>}d6+ߊMtb;U=ߪ.7DE"'v(,P]wJU32{6ͺv#Lw{Ӗѯ0QM̳!;aZ:@O]'ߓ%M7 [ߘ{c!KWŽ zS1?.UW^L36s? \o>n1@/P&'0 &6&kfzT,LEJ"We|sxurP;t(a))&?t,','MӄؚV )QɬpdT)QQ;67wMu#۶&"*=B?qG;VeݞSn1Ot5W"M XR]+)9?*Is^}$7]g)ߦ̞~IWMBtF "cFDI z 8Ógb̌[bl\CIwo\Pn̈.d\5h)kY)7Y#tmީܶ".';7'[[n/͆/. =7NXg|Ւ0l)hK2A;$[mIvmTu*OWܘϋm(T)v/ZQ7vΟP#I-ܢba'$=ɑ㻊RQ RV)tNi ʝ [͇J^,跫.(˦Q QvutuqXp81^M}tb`" &@1 z PIʃԜm2~ Ml7z;_LKJj$ef`T9|=P< #}]*+tki: ԛ9\I: Dz.Ě}ϣ YeYU+J3+`=QdCH]'YB vRm4Gj5̹-2ۭv}z'.T~ҫW3BXTKRi^eTJT$X󦘁H/|#9ڪnw4ѭ6i7%1cegBWȔ\4)_9i]q/"yE.IYkkc1tU2I2"˲FG#!5axVS'R[("%TcfG=E3)R]%hHD $KOt:+Ď]™3|쭕EUl(3\P/1uVJ~RX`@6_yv0tm=eE*Ƴ'm1nՔ3s|CC9c*e: $ʑP%s |yHTj\M\j J'G:U>35yΖ@zG?X1;87$b>{l64&Tu, Mr u&̑$够ۤ-Tp'HR  <g26ݑ[3".1WN+K1$z˦ 2kpbĊF#nB+i!.PP!w$4鋰KnA7`լsOD#6 !HG~tC7ˆČFFR;\hGlɊ2`n7'#8 r%viQ$m\Ut řeǔ.AOB?+Sm=1O0d?oʙ;'Ob1 :f2F0(PP([ u2r E)#2 L^FitMONL4ORߚ`V6mި]P~no$Z!kU&2AD )iY||)lרV9 ebj tjZ)RM,=36FY7 EQ̄R6f~VFV0)0h6]]7P VC޺ Rigu9oPGjwuLWf(//D㾡ܒ~U^RN1ۖtALb!mNw F]KqǒP ,&VjY% [8ufZx9AenO[DX2:&eV+sv=[tL/;lzVĻ;#>ra2$)"h%-1g%^9!5Tb6\̝:jb-#!+KQ{Q4b{\)K#,h.ht-jP2g?7) zkK0:^ L2m=bzQ2 n}yhIm]M(*,49EL:3A _-Zq .i1\zt+[Xdg:&"n&z^Fd"0dffCR /d?ҍ]Ap"Ӳ\U%Tk.Mk`lgtR>B4t[-b*`.X {@ 'DL%/.=33UysvGHJSg^z%, Xm(Om"""!gK؝!B"<(ZG=PBqɄ7I4ʚÅv̛tEP"d)o8ܾi$eIİsGϳYɀm TK~9d,GN*rsLG,ږvXMh,\"34.gC )DYԬrNȣ62-,hD/Z-}~a_˷*L+Y h 1g>\xx#vcEҊF.2`Qb*hݳMjȊb@[MkN?e~$ؑk> lMxm -V5wJ}:V,W)?UF2#tJ pr@-,]-NJ}BF]W4B !d?V 0D|AF6mq􈆷T"ʥ.Kٿ0*h&*oKU' Yd"c%DI7N2շ.Ynݖ}~tWyUdf#~[X.yJzՔ>۪s(`n>[<|qcM9jB=C@@ n"QPmRRsM?j/1&e؊=p-nӓ}A; >Edy22$!&c@:I*&_42R LԼmW*t]iecr9.T@o!11/b]c&( fu_tFJT{v엯f["Ǧʝ&2G2 jo\?}Q[rMc {<1Jt?h^GLcL$Z&;d܂K&g3F&3b"8"G1P"AM:s̔>[VMGź4M)oFuvn=DmeQ҄m)cGQ"E U$E:RJ D]'ΟMhSfH2A7-\55)qEN^yas6Nt FM "gI 0"CŜ[v_1Kãz^Zm.Pλ}+aZ^E9J_B&Q$LR=",frR)d^dA^lTϣ1OQ嘎҃}¬G,u8^,wkg'UcP)oHXے9ir{$t!,¦ۻ_V1&G$Ҏu&1fD1u~FK) 732!6nȳD\cV|b3vؙhT[Aʪy ѓՙG*THd˅]nqLIm9GJy(( }YlAAt&Ԧ٪Πܞ!ܣ :9cߩrBRuKyv. C"𮱁5I]md388m@Hn@2MֱZnḅ!"ܑhMiI[Õ{݌\<]!x7H@YrE+d9Nk5qJ'dA:3mUg LmY"zwdCF]I ˑ%w ӧxݼ'?VA3=Gx˪HA#ڴ+@9pYr23K-2|Ͳ%QD޼dK68HfdLSTmF#ui%8R86xeYDM"LrsIfKvQqq&Ki-W-#pZR;08sT N dHIFlXB@&"t`y-S+s󎽽b\2z2`m  Q reҒI7e4 3 @BCf#>(᪎K7fNŋcK=vG-pɷ 8I~T."8CL;<"D&YD6'iV<}Ff`Ҏ }m{3} N;!LߖAMj;zמrROlf)$lHgItɾ"uVr0L6;ҦK|aVDCnlwZVc[_O!! ōoYZƹ"vz7W2D2:nSXO`Em.[y卦rBp AqSxO2#PXervDV9wLTDIAmnN#Ym2^q\-HW&V+-rڵeQ 0TEt՘tZw?r#LJ*6i 9uOfa$fYN?~qC.gH4fq d3f[9FKsdOۘCEĭHK Q7Txt]IĽpIVn nn_ zd$ڙ Ld.6.4jm:DE5L=œn9A0㾴ua5Α$Gh≙FE\6"[%(@&|uӠKצs\ȮQHObO["kmVlyyIIӳ[ P0)R!+)mwsmjW8 Zg2^ܲt(ldSJAS$㇧:7iʡ*T3i;]%Fnk釈,M>hiGx.WwSqL$"ObQpe`&Q;ί;DU隭9S2Ħ9mb4R=D\D[S8r䬰Yn˲HVXV,XB0,rNv=a܉"nS#0 2I;MeaqeѽLNjqI+ X76Y]ipV-S6KH.R\ɧ0WnKL }Ļ\x]AsJ9onw3`Nye:==v>E3sUZq45ӯ&7AxB`p=]gV\Ssvi[fsL&,ǪOQ/x~rODnǡ=Gx˪HA#ڴ+DN,YQz*κJp|}%z|K&YKf$ݻezmuF})FUh(Wj"Vç SK;RL&1崐oVO(ޭ#u4ڂ(22Eŷ@QBIG5H^,5%Plg (2yL@dt9s[WĎ;M$7XwhS+p;BqL40pޛ+YP$r*tAܕ *m) <_NTf%sɖImH9N3\DR, >]bcXy HUMe\3I͈؈Zorr&5b)m7> LvH6.yf$Zku3I9>syf60W𘈠q_0vgH7suh,nRiMF&dLXH*8ٸ2IM;EUE.ʣɁPr~Ďu&0t,tN7%Dj[ʀb%3~a31<<!ܶ ˹˜dd ҪgQxQEb*qU5 b*U `D7*aLK˾FGލfJ#T-ęiȻHQi 8QxIRt"&=MIaܦ SkJ*^F"7h-HBَqUqGhbxJQ06v1o ycՑ:}pШ XD FK %HJBHo0̺ۣWq}I'+\\3B~$$Quh <']DMR":$MmNT`&@٘DU@^#tUV28)qxCWe \uwq GǪynEf$yrB]6n 0*^C/=Jr"ڳsj(9bw?RN:I#9YPAl h Us뻹b{RV'8$F B6 ք Tg35$*E\Q+tΩ.k̊8(zLny4E2]z33@݇%rV5Y"K\SG=Gx˪HA#ڴ+Twl]=eo6jwhK7n:MΟ)1Ebg(j9fep[# CӸ M ֧inBLl{ BwZ)j>4@Y<|22JFA.63%淒CUn$"Gr.ʂn\؜W 8>/bTybzFVz`@ަ2ohp\[VA*'({KpsҘ #HgrFЙo}U 3BJ;cwOBnTݶ< Sr04.\Pۛyy'Nٓd26^SnĜ'QҬM70apxM,^ҌN'k6,#GTEF.ٱ,"ŷ"UEȸ|>O]&Y>dU)Dck5)z3N̶f,(inyoAq jb.'66ˢ$oX7o 2?$v ]W pƜ>BfrNA8>U4l3]bI1R.T9V<1RM5=@VRn^ufMd  QB\T'Y3ijM!치W2Kf#j]t> 1زNY!tv{EiɊv5"$>2zo@+5ÔKqĎ!t\wT$Rqĉhq;h; _Ŵ7bN]vVu4\ۉнv,adjL3V./wHv"T)`7)qG8ɷR5LANq/e^mHirߨ!-%cʳR:C/Vv2:rx72c0UүtJpy.Qƛ`*xv+79$*$y1fY1/1C}mg:p̓Jzb1 $Hf^b֦nT\H/Zjٓ V/+A|7Lܘ՝'VGf`Tfjd I%T{.\9(x.GrM=3>3 Ի ɲ?RnrX<3k^Ss&)P3{2.L 7mĠctj%Y-K;?<7ve*p.}ԭ6޻&ZYULs`غrDqEZGų?Tzrska1O HYH钨Z @o0^NsH)6Y1H TV0snߧI[RM\E)8\]x+)@Ja 6^vxW8݅6QrOrVĬII,3"JKͨ\Səw\ڹr?}£vĪY50 DVV*WZYCL㸲qo8z&7 [A K Ț!b%؆1I2 ٸm$:tE$-1 TS+BR.V;<^v>,w7r+Iȹ-]v"TeY8e)Z{ø4uB% q7V5ߟs_ x)N?drrPr} A4+)8+n]FhR=g+@$HgPDPY(aiâ̽lғEw0țJ.03B[5*/$,}D7nX9T۝BrMcHK,Hvy$D/{NI#p;uUQ۳DvGyPtR0ruM{l.gNZ[PPLI5|UNWEvyJ2zEfw%U;IvW$@l)dYB\-zg ^tMk3qX_?2C &R,zh1ѱ-pu8LaER`Q@p!]fViaYcȣ Gs$ɦȽ2m D.Ո -WD\=\ "&®1)F7V@1pmx+]L**$30* E5•9ǥ.}$7[s_}F*W`K*+gd"I7*$ṽA)\a9Q9}F K`W$I}MiRߪ6wj=s4j=O;G1?<2F*6e~C§2Pcju]7BC=$%çwMusꂄVԽW$iLb#3,@ؕh<JU0S2s`rsyhl1jRCJsBE.H"T#ocɿ46RC\n[j30E[-aaqٜ &1!$ro11+14ػ7mȍHswvq)Q$*H !Mȶ\0ƫE0ݮ_'ܲqmv=Rf XA<]Ҿ^5ULЎj ˭˭%bvQ0RXiÊmyר,ALJ;K`$o\MvevchK\SО^#uexepHA OPZB)d{0xt1 &uID11KA1pE 5:^6p7\xxbȫ7_=#[]NZitpPEK6;  |6!f$$HBj {?.:*Fd6y1\>yj(Ip/5ܓc&BC(+&^V*b/ɽ=fNLd+n:7Isض CXT)tbG_yΜv%k7$NG+%{/2=XfE0Nwv"o)uZbnZIm 5',`;RTcNLZE2}s$-.Ȥ98W2%A5ܞ< yy0sE4._XL}D'x y^qPl6mԥeLdE^hx/ 91v乜ٹ(zR߭GjA4D[릚ˊ%s {.,ۋq/IF9]~GܘIƹD4k JVk²F|fɽye:#o|5<,36f^c*m'@|>g%@K"uydJV& Lj(s ׉*2T¸y^4-.Hc4t괓a4|Ce< = nm+ Gq=L9\3Μfܟ~W& )g=dT.E}|IrU^n_L2d=U*:?J\t2G(8-#Sb*DNUn*U 7\ƳwT(}9&V\cRZ^XQ*bs!$iZ;*u p˳/.f;D"a0א-m6JCY&Z9m4HЮGLHq9;Û|uud+ Qr3^*5*EfJ^zd)'NŚ*7"fQC(d)%%˫L30J+fJy]7t(E%DIQ5y&z%>"qJŰivciQNbBcCW"5ڛǑ ^Լ?7>g4l8ܻLlmvbBH;mZ|7FI9tf "QAQQUdHB;H]GCZk;Gp6++ uQ Q=iTԆjd&[A̜ɌIJkSͲ$sEFK$}m"?$p@dAJeYY֠OG%6ȋi},%e*`p6#M=KmQlߓCe=%3g&APTB*j Dz }@?\}i4B8)ݫAҾE1vf'[>~vR 񤯠r0*f2?;`xQ]? 6kޱTT\rƲMʉ!D: a}WU .c#mVh "Q>"l!;xxyicb՚@ 7`#sClma Kn>{ޘiG-ٹ4J)o\lOȻnHw#eU Rjv,2]%,%#,PG*͗'藛!LCq'ZSq-%~]Zm:.IګO2zfzr$ܜn5IJ9-wQqKք AOr+Į.7bbQ*D֠ϓHꎟ, tۉS &Lc{w,(o ja|&'G]eYdER[E=7'us= H6d-!o{3a(Ł*y6}u@v.2ۄ;2;r|5۵y_"gh23p.xvV5ܕ[ @ŨG)Ivgrnftǟ?u;Nc=/B%˒]"X'xj}-V E8Gv1'jwK0ڡ$Qc:?C#&J;q"J7Hu"y.8.I9͉E㋋s ]b|UVvW*Q)1Ѽ]ˡ% \ڍ$2bȘ\ھp7ꙥ& 4ѥ2"mWJQ*NC"+*G,.*p-Ш2"avi%E*8jN7pe;)q<4}vh1EvK5,! S[=? p,6(K5U%I6BodwC9yhZgoϝx: @h*9FpRk3d茫:c Iu!dJWTX Nܤ+, @LQݪT)SG=:̫pS<͓5g2o2e Hb\8ewrYj*4y\ ܶ ljR2xMyV$ؔ~dî#,7nᓄuBɑ3 NReWqM.{*V|eF7K!\=Sr9F"Qiy\w1sG+IvǬGShe$ۓ%CjlU 1% \*&C/o.Rp:eê u^޴ ZS}eWzG?jXϜtILNPs釛p3 GUjrIysp /$T-ۤa/ޱ1}M%z!լiµtE92Ҙ(&#r K7:rDۭ."ЙJӁ%2xu [DiSsRt'ܵrF8fګ!y^5.b镽u",C4~Q}^YvNhfȬ-$`DA{P~mY lxrC-^rÏ#3y72ʭھppCUEHiI7+c6$%'UD?7mm%G ["\\6cuE[W' EsPOLgƘ5eKtd#[h7Vv>h`y'Nx$)̞kܭL$/cIn=%fc;1.Oe,RE]WňO ?ezc&lUCsO+NJ+yH8S9]QeB&nIuVrRE5*O u?d;8sU^ܼ̼,;atջGyl|uNXfN*]yx Quh$6[EpmdiрHN*,ݴ)EqEp'9CLs•9<7'#&"󶅳mk` m,w+FO$qW$rQAwlx"޳fsX]L.NY$k]VLJBD?aXUd^fQ&H {'+1$VB͒Vm3+ڸT0vn~qfdm¼d_QEwKg6qP>-gzN^Qma(c%7s2Xy˔.OynSF]"GCc.hR:mB\L&ir0;M_B萘)G q]U8oͳ$):\xt9""j=ZsrR 4$;$a5QCAи/+dN\&{gb$C%.Hڋyb&2k֜kg`՛hѤH7[#E3SN&ks|9N a!$F/MI$slgjXu)BFN$DTtǎ=³fjIؤL'3܀LU:ܥGPyu?D>MS'fID2(4*-nwDϥeduREBN"49fe ΋땲`)K˨LF+^"(7fxY$U}J [bEl] 5]1Vld$`ċLFJ&6e -%)ҩ'@)8Xr9Wšp8A1PVrwd*L8Ӄf25 -֠upFxՄ/Qľ}Gy"ۂYA1!PLu3tǵ=r}7)&XNIe.!+!J|_F>SmA2%& nU8wetfzARs`M>7ZMkj. O*y%"KDK]G KJ>jN@~)8rxk`Y11VFfrf]|ӃHGƘC IK \zvf^7R!TZ7g2 mraSL#X]÷SQ!j+dժɓ1 WNqaRLfT*PnɌ+wRyAz:{pl㼐0nܕpix(򗭩 F}%'kRי{" [~A]_$1m;oז#Le$M 䬰1v}v[z^~n HÕrk7fF5꬝yB1\pS "yD9!9'ۛg-$ ޜW$M8gT[=*]uB2٘rjLz`α q~x227OX! "cu8'kM-Ѽp<31.Y1"Q&PϠY(T &B" %u(gPqtk˻Dik51Wy\)c|(w9W!IA6ȒΙ1jrLˠn:>fZSڳM*ѡK1=DH#ri_7LrLICUvt9Yynxm:" BA**jƤg7f-놘Jc"P.$[6+Z֦>IcJ6;MLD3l*5{q%CE0f[Q%U|-RRg$e7o&h{-GgQ{x>Fz }@?\}i4B8)ݫAҾDR⏇WYb+wX܊XVsPg#TDbYU, '#pELa! CmXyY8&T PGQ'6PO1h7%,ThTy@W5jmtyR1ܲ#18\]6wIG A0KCI[)}e.' u2r}kcRI$ǵK>xzA)2ևY.$ TJa2Q= !(&Ն}p#%HXp2p>QT.QA,~K:teJ%\4|ܠDD=]o&O7S,CHindI @t/e:}ӊt,%$##t\h]YDn:,vPf?U[Jb9lMygytJk D8&ja[I4n-f)ଲy&6LYDGe{5:a,ǰui5$c>m30sƩ)&\ VD`PXk)>š;t׫2@ glA"󉆀.;qQM3¾6"1˔?N˦!)iL!3r"]܉mcƸpi؈[ӜWdf]HG7M0N106(L6'I@x(U%nnI239ٽvD(EjQQM; m걬Zx) ,BT8M7M^S8$)TP &!)TML(,4< smԭZkqGSo  @D@2(NN:$KWI5G r^֮y_F _F0r?bL, ꤪk$NJE0x<5$jbiRn;P8ݣKQ>6D$xt ZP [t*")m(xk3>Øu}ZNg̏,t]zqd4~&A v1JAUq {?HZ~dS{ ;c,T)}^G,~j+2YdTSPͬ4hTT'$[\Ĺz.iaBhW1t$1]c^s gUTXPu]Wyݨ-^[xsR5).V c:B:Hs#u|l~*8WUr#+S윞 *3FIۙc}Rho8d^e3媥SbJfx{)DI!Nɛ"#\W&2NzμcrýEEB dnU!\Z>:JL"OmdDUQ O'5Q_ƃ[1^pó}dZ:E*WRhK(A[bDnJ+;x@퇶j&73@Okݧ/[rkLPp@w݇2[|Rjx0qjy۾3Y`Scp(Ӧ߃oo=+:EطXfB߽b9z}aH{J?婬CLfCsn fZa}XDn[Gz.HQx~Mn^[t%)vZ=HTR"ı3ۧ7*M&c&x@+˿)=]sCțʬL1(ˬ4'۝:}]а.P5S+fW&@Z(Qp!H%ƒL)2( Q0xxZVcd=#- _JH~,`  s fsrp}>;mL\d'.B+5J: wuW-m7 U I2Ȁ}nmt _'/S%R]7a0.o3^HnU͔øtIwjs&ޔű]p9 8u|fCi<~HVB`zg^_lӸw P')ɨ8bj%Tƭe IgR*:HUZtʼnl`v#)aJ.wv(ENz/K\ SOD/:cq2A i২ovJ!zoY$SN?4DG= l<{/B^ޣANY߀\{BeH$,Q#V :dU9}N:e$C+2sȗz܅ڴGy$qWMbb`H%E%xE(IԸ6wJgy%r`Yn:+ Q$.LӘF۫"-ȝIUfU4^CՑfi\"*E%K4uE@WhChpWNzzIoHCWc;m/(&{M÷;>!D= `#搃HA#Jc)}>h`@J"(6> !UuPEęU&:Q!D bHGgHGYq^II[,Ȧ/Rڹ.㍣.w]uI @RGshlL4.s {P\/KU@ӿ4!RBE!Fƹ"&-.^r-l1ǗcBe6\eޜHoEu&#eBQ̥FD 4e"/dO@] n֍ߒo:} ʎՐKGLQ 1]6UMMYvщ;mTbQj!vS8ee}^F:R7+ЏcOf.x"u8>ˊۏ,*UnυFH+\Ĺ ܓ`Y[΢E: B=8o#rL*yYTjQŶ: ݪHHƷQUgHޢO)G*^J\" !i7W)!RjRK1ќR+[r)͝9۴m 10>z[ET15m2ϗO6"ANs)0U.f>;9= Բ>%.ܳ=Z<pgHˊ#{Fd3 hV܎}. ݙK~e dIoHCWc;m/(&,y4^\LEr.n=W 8C4.Te T}NܝzFomjV iLd$mDHԜJZ;=/+UNdÔISIIGnȭ tly&xR`cDͰtϜ+uV8wO1mhdkLy_5myn)R՜ O(&B7Νy[Yd UqGyyvNlי0Y&nbZt٩y S,mI|Q. Ğ]bgwZp#q.焫]_&YKYx ekҕ6V)MT=FEvH/dVPleZSNTL*tH2oM?8rb٫EN50mԌĝ=#kהAֲ(̛nMF1"(` `\;ElV͂]a яc,v;/#,*ӖmHU>dgNai P=qgA%̝G\\T^&6rZZAi̶s oLٶg2&n~9puJmr5wyʋq%g+mkƲRkƙ[w 4e\kTmHI*1&BSV\g0Y3w,R J"!eɝD]nTPZr!)AM[8SIMj(U.uE.mT֭98[)D|5Hd<5Zpm6Lze7f8x5ݲi[bAu#eɴk le<̽EfF*r=*Fnfq ^ :4|8RbTe/\jdHJ6mh^Itp8oÉֱUOfܷ;ZjnęYhVƟ)#+RR]fx"EN̚GnlikJu3deuB7%n\!m2<`aMڦ|Kdb ɴ]|@WʱqL(F}XJs*ŗ jD]z9$MJh]꫏6sEhP U](f䲀n)ȳ1. IˆS%vi ˳$M A٩VmF6bv3J3vb+Nɀ2=̚,PXH=R TlL^)%hnezXf \ 'j J|d2 yʲ(bjUQ hщk3i4@n +Fq[0"8kUza+ r"2>O8ïe՞w%KlLeFD>O 7aguTESK!C4Nm Pm|]esZ4B ! 24H='vA3(4肍X7f P^7Wi sy[rn?w`v8VdﺢahL=X -z]Ӂ))Ley"Tܬ_{!<[-RSzA<LGij!p"k,N1~+"ة]w_%GFݞYglk5^£ڤ!aQȻP8<;Pp R />s-g=B|kpYTQ(X)UU%nVH<bS9|[qi3 z6.: F0Gs!  !X1^$[G.jו=ه=Gx˪HA#ڴ+`V72yܜ,hD{z٨1EJi'$fRۦn)e%Uvk*$%i qr1!!BiGXJ=HEM8Ev'} WX$+`GL_00yctc',(%Y}v@.ܦ0m︆ލӬxɏUovyx:m9}y}B>ss10lqmHG2GXT@ DLp% AAHGMoHCWc;m/(&6$,f::aVE H|y"'Ss&_0lL6rm\G8O.=?w6-Zq"r&&j Et<3tTmF\1U9'6(Fby^֚DYG)'Pk\4J)7)v- T"RT90m8kRMjVGxSm{MTheF5;b#2(nHc@\%|B(F1y; kf()UVK1)^oԙ]|$>pa ,F(q?nixڷmRM*C;EN#w#äW}#wpuPS,^':M2Xٸc+F<&\ʦ(5p*dE$CSs˴"J*qf*vݝb9tTtި%{Yo'[4j2q8b ,qU6TO#Vl_92 DnUG=Ϭ$nuD\HA i4B9(y1@Gq@|Ueh$Es$1Wb(EsSkKݹ{/Vg$UٖY/~t}nN!  t{Re"qdrep5RlCɪi"Bm:_A:?_-ABHV= {><=DcODvaOD/:cq2A ipD>gM!(AXbAW G.IPET) *}#AӪM[-ef:o%Q.]rAʕ6jMz̔An] j1ɣpE935[o?7N}sc|Uϙ~Sk;&?CEW|w>f7NE;5q_1>| ?_:}sc=U~s`_|cZÿa PUϙ~Sk;&?CEW|w>f:O3Ccayc=U~saf6xNuRrRsLWU>;3ͥDO|G 4!au!%Taj)Xټ[*Eb5J) \Ye .Ϡn^W'X'}' Z9䍖$,AFBtD{BQD2 Pɩf@VS߄RD8ITH];v=Ìd8)΂ uD 饿M5=rܠmHFNat}Gǐ{<<HG}= i4B !HA#U$::% T C&Sy/0t7'D316Ԉ7,F<ɶQHxwD4X%t/ZLS~e6RN ؝kv{u(86E&V]9}cZ3#UfL8y*vze dbYUvED(aMBP*諒8~v,ʊ j(ZzzWYYHOV%T$V_8v*ݪJRL$QR5yym yn#mAzƛ0Ga?, !X1^$[G.j.&G;};mw: BP= >F]W4B !o٪PQW%HGLcR8r~-}BEpQ>z Q>^^:Ka)y<|uO>HBn3aC}=!Cg-nݽb_QM{b<B !HA i4B !HA i??}>٤# ɤS)"QTM~x&=RIrTtGD]D>c;ӶNGmy}!Uv\#+^r!ŸKع!1`yX5hX>B2 i4B !HA i4B:v5h:WL?i¹.pTE㌋(&rxR)Csu<Qy{qʯF PUO|jTəLD=1 '(<ſr󟕿T1tZWbr|9[o_"bܥ#;~Vk[<>~-+0)A󟕿O&/nJ=P~_=|oƵC~艋ۧҿ3r|9[o_"bܥ#;~Vk[<>~-+0)A󟕿O&/nJ=P~_=|oƵC~艋ۧҿ3r|9[o_"bܥ#;~Vk[<>~-+0)A󟕿O&/nJ=P~_=|oƵC~艋ۧҿ3r|9[o_"bܥ#;~Vk[<>~-+0)A󟕿O&/nJ=P~_=?+5+"fDL_?{{cKB!iXvTU~f))AYm}S*b:99PHD :Ա$I=Os9 u=Ƃ]=̓ԉ楥6oK{mBT8UG32C Q\>ޢfFP{:K>(Ħ&::|#hm} Rhξ]e/.ARhΗ| Y~4gK˾y,T?<__K//yw%GtK:^]e/.ARhΗ| Y~4gK˾y,T?<__K//yw%Gt /tK@)Gݷٶ*#0.z㯑UrH& ߿T*".j;i4B !HA i4B !HA#i6`|HA{B l`4> = !i6`|HA{B l`4> = !i6`|HA{B zB>4B !includes/wp-booster/wp-admin/images/plugins/tagdiv-woo-placeholder.png000064400000027114150211537140022167 0ustar00PNG  IHDR,SgAMA a cHRMz&u0`:pQ<bKGDtIME$+v-PIDATx}dq^fVcO\"n qhq.  E[Ӓ aò(")d'x R8~*?dUٙ =$# z^ά5u>Zo꺮 " _4D@(I1&y iFQ=_~P, wށ+U D"6GJh(v٢TF. =!eA¬03Z,>"QjR:9"-#"pL "$Baa＀|Iq碐+k}x~Ϟ]L'g XDh"n|KOuy"",f'LU7:](N^{ϬFY@fB®@"*K޳GDa R^@m Rh8E|klrrA@r $E_O $^F^Rbr؀GVwb($xBD!" ؒPD&: "0ofRƥOH :$*APnLS@"[HpWNx _A?MlD!aW4MCD, W@ $Sj=>h3dHK!S"z2FRBf@(-TRf 1gXMi'|2OwB5pPHiiU0k.}r&C/l7-ڐ8<8E#{NY ιqDz^S׵0#g3{ֲgD zKKKjq8$ Qz1v2QHu@F1'0Z[d2qQe(1Ƙ̩8%XwchSγ'DF#8\Mczy4뎑38A Р7k@3.TU}8Ϟ9{ܹյ3gV?G}tJU#DT`[p{'Hh1{z[YYaf"\#dXkhiii8\;"( uLZk%…`гf? Zoi9:@^ t~ k: /yzݍkh̞90 6G!a ՞!=7x3'R] ]MuC Rp+QpY'"Zk_.BW)TUsH;R@\lB@TcHD8+{U^G2IMe~r&::f;K04ՆqsUp{cB`F~k1dk9e2Zη޻3|A@t є߉̼4))-QHÅ NE-FҦfV`g^(Dbf"Vj?ƄsNu@np9b4$CO&…%S,h7Փpmhh9hEqɻ"eoCctC!aWN5˪[V'.Sr| -#Cn޸s Kcރ!!j1j(zW4uCDk.1d̼op>H V}=[Av. ~D5]f?sUbϩ_o(hW %f,u!OE+0@ꡟjp삤QU )0 ~b >.p*[ҭ2s"x<~e}KKKbQRVGU]3Ѹ׫= @GhLVxR蔈/^}iBK\sw + "CLBZ@H[30ȧ [Ykv:8zM7޴{~Okkk|ر}nuR4CGK[ˣp#(P$Mh4G2|xa8D!(C74ť??~^z"nҤؖ;q0([p[UHQ&)wD*,-q(wOPTùÇyj4%4C&27P5vٙmLXa޹~7zzɷ>v]w֭4sS "wO\B7!`~ξ4K?e$ 6C!aWbH?AhɨvM7 VY5ݡh4-'/\X9LN(L`>`U>kwa' <0qޟF!aWy-dϓxeev^ܹ󈸴ʼ1C&w*;wՕW;vUsZLf҉`\EQH bu6MX-*]н_Ԓ13fzw׷Hu|!$CJe(:D}o8 .Vگ$ץD4- ΝUj+pjjW:} 4ޛ0tq6+le릑藦uW;R9" L;4(x욭 C5\pT:a|@]ADi‰"4OV(py8lF!6mEZsA E?g^gf@t7MOvDe.t Mٺ+/Nyjzťh=aˆSՆs5uw^.z &lR>fvʊXp!/>S_"r۷@VR#!p'qb"\Uɓ'Z~ 4 D͖E!Pjڵ2.,DZ[_[زi51Μ9?zjWQ:r63WUu5W?q9dO3>ӆۯڃ>TFa4"O'vE_ZZJ5ͺ5$b5k:'TE7|oz?}镟%cLr.>yqĉ' z9"(JG7xs]򻩷p C^ә,n1~PHXk.KĹf8X\`17ַwÃz/>s+wqq?? / Xh(R5 c3g^/|Э@I '"Pjv  #.*ffKKO6ӗ^?PUU{~7xr0s׮]O\3O׭g3h|Od޽[q48 3z 97QR9bABc~ӗ~=xYcI}ί?4MjyS }qey~4g"H{ꫯ9zW/~ԫZ\2Tr>\HJ+C3F+>05HH,XO曏}+_\\\f.y̻v|y>_H+ofk%ً݉DmB@)]=1 {:tZ*X[[۽{_^}략uk5F}3&ADF7t??Z^^<M#3 Νp׏p:WXn0M9]1LGcD D$$cZ]]i9 "zݓ?x;s}NLmZ"W\q 7?w\Z8[Pu}wZkpzID&Ul hJ($Tnf &LUѩS}s ph{[?u3ɇ-0آIxL*B[s@D~0H]\],J" ?$̕mSѧ>p4McI(JiDvO`|ϒYKLԐ-$PH>HCޓG*kZkZ JӒpCW^/|&\Wx<6K@@|!($ l:w\ ( 1ەʋ 2f<ӟzkK5~0&;B`LTUHc~~[ϟ?o1/HHQSOLjh|!"׸Cʫo1F.wID2&fM iKd /B®@Uj:Y#pOvBJ&^B&,|}zYe/U}4:yB]fDƓzDPHjҿ`O~7ȞsJ='IHJ=G>i;۝^֎-PHϛ++Ξ9oYͮ]ϟ`?1$/>7 kiA@DcH+ӋڜGlB®0TJ#08_qy#G^` FlՂȔ=$YPN "c̓7!"Zk6 {6dvA!aWe':܄( KKKKˋKKTk !K6EI@sG@ĺo;5p]7:猡4u`S0֒"yƘ5{ߤ]SWL )}d4 %jh(u2_u{ϝ? LvʭHKi.?amO&¬ehLlfQ4Fz%N0"?!Ŧ 3/ P2[b0{fV,",SaLO z BjO$ f#b]wށwRQݯ ĭr($ Mͷ)EųgGnׅ6D$1E#=y6Dݽg'+d<5vB- /q{bI1ےc(ؘIPd0L0|97z‚k\k !Zv@!aWT,H,63YOȗK"4p:JDOݺ{Ͼǿęgy^0zդ?  e+RA@H$5B2Q(Rc=Z;!X WgVO~3@dru}<t/>e < ہx1{(zD!aW `dǘ3CV(c`-u8!.1MP 6yBrk#+YyԻ{;]xjts>N<cg:U?@+fWJ;yC(gd9Bb4™9E]B{nq BFDcFѩSWWWZMx={v_uI?sx_]8DGC!aws.[&|G{H5/(Mkfn"|F9kr2W={|;뮻v#A;~wO,~o+۫zo=Co VzA$i҅mp;]=告|- ̻0dy~jl1% zl&"(1`Ѓ߿/dSJw=̳4\\ow5f2##<<3 4=A[&~ۊ\]ίJH 0ؽ2mž(mo)dFiM?"ƾ49XDrKKկ}TUI[JCs?x7Υeu0w.]Oe}UG?<?޽{ZrGp[WT`Sd1wvˤP%#4B9Yx] .Wњ髮ӷ_xZ6^|>\UZS7"%c_[U1]}'KԏƉ;!稪ۢ|@&6f*Q?̚Ybmt@T]J ijxJHR-S,{%8ǣ+{3y<寜:uW~vuuӫ*?T@m6gЃVckkk{x+ޤqooBK@bKWgAܽdGdd}ÙYHh KXbja崥Ccx7[o ` Azæ<"t]~-\ OD+kp=;_x.1Ц(".fj,QPPÜwXӆ,  *65L̠H˭OO}ܹs'?3=tX8-]Kh BDH ZV.0TiDŽƔ 9`FBg6hk5| (̎1(jF|X")3 d{xC8 jkRFC!aWhZؕ@ G"r*D(Lp*4MXT d@KAX@ffDۯOid?|߽Wkn!\' T4H!&==BBR@]16 %pD*bKG= JJTNQq)g$y} 8wÏ28nעL`aT~؄g P&&E%dbk3qMF/ bQ9j>$D Crod29pݫ pjpZ!`SvE8^b]r!,8o8(兔:i_<ԮQ-!e+ Lâi͘0@׉E+V3|_Y^ޓ1i*,žYJbv&R䄅c$vF`(ʻ @ b&!ckV-.ބqBVJM*EZ;NG!6HEcN,Z \``gvBvhyw+Z 9~mZAFbjY9f&D5mgdn,m b7W^*NY,4BCYc۠|@]ADɳ(6w]yBô1$TW Aa;DՍTmV ;6UvuSN%L Nӝ~yD LUgG~QANQxHኔ)s,)r>]2P;E͵kyv: .^fq N$R/y)#d2ںN)y38fƌβ]&ڸ @TɤG fZL<n1D љ6k/Q$F\@CLR.vh1g[p(ִB3~V4pi/)Ă-PH "Bオ:~` ĄaK,^B1-▚!&ɬeAܐj6>noTlBNHM *+0*H;V<&6N:b3DA@B`q)ek[tQb*!b!2n0$5!!StF-Hhn捳-l@땳=lxFYѐ fDkef-#¢#13mQH"RYs W2^7+[W^};{l4ުBst,R:GX43mZQH ct.ҍ3<ˁZ\]9!"wz^5$BX ʂw.7L9>w5UR׵,=XdRCԮgU{cl߫Kƚ0g7FZt!;{\kt{MӨmޏSJ5[U^XKZk+n d2Fј#n2A*D`{/"";Ξ9}w}:mBNkpRmڏI[I]Gϟ_]]'pxL{…$ݦ0ug׫)kĐэY׳D1&0 g;cUU[\Z\^Z22_XX֦Ghf<?ϝEc]Z^ݳ0hoC!aW7<{rpH~*M6\n:s_Ci5bӦ 0SĶ=\k G!gMf:9] 2-+ }W!($Y9MK\w%`UP0gsF!aAQHXP0gsF!aAQHXP0gsF!aAQHXP0gsF!aAQHXP0gsF!aAQHXP0gsF!aAQHXP0gsˌKE%tEXtdate:create2021-04-20T02:36:43-04:00>\7%tEXtdate:modify2021-04-20T02:36:43-04:00OIENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-small.png000064400000006004150211537140020206 0ustar00PNG  IHDRKKPLTELZIG^DSPAgUsn`?\|kWNwYybvieQ\ ~y =}2qUN< JLE~:G 8> O7 ) /Hp T +VyCb 1 ;S y?7 4 5 c. }>*'5$ |:WW92RHlp ?CI[>c$pQMF2Lp{{Lk ypW? Y+[/6t]ITv$f']$|(y+fD YC^ym"R z$k/j/u5 V /9D|uvb#a*pe htcg\Nh`!Lg)bglhQk$u)j*u2oe"] ~.po%U&YLS n4r۷<udS.Xo\>^-7)dl|\v#YDnn5}E IDATXdKHTQlC%ntQHQ6JZ-hS#Qhf 4{.ZҞ5B 1*J(vA;ss]o> K,}*++7nH+;ޤZJ]($ebu:K0H)L+***Z1ҹ)umGUY,@޽{~ta,Ūʝ$ZAAYi"cy.T{;RGa ̕ͺN"H܂˵ڵkPt@WNX 7oެ`4J+Iblut K]w9k%dz)m}X,RB K ۬&<B Y>A . Č|+8CMMMB"oN}vlL)IJRX`]I kJ4;2-dZeVW`=Es_c\4*T'+jh/<X e233jZ@$g>nl7]];>)uhS_ƾ9 >P`q"OmPR1J- 󣣤 -)EzQQY[?[2HJ6`:-++xoU5o`_ #5 ub$Q1tԤw,kj^Ҟ=jv6#` 'hQW^%ճ[4`4p^bM|9,maPQ7U=D3P:bT@`Nzy*8~$hZhC H1 `LMmZZIea` @pB"\$Ų4f֭D{mHҧ^}}NpIu ̢gv;,,۷e!q+AZ{U]=B"V,?@R일Mi~wƍalذbb/߼NiX4xb[;vlb$rqTFReTl6VR,evrX[t,"TTr~It׆Kf6&Cmnu5`3TYgfEe12)aJ=UֲaSEoR+e=śI)U6v̌iR B^w%vʤT8ZËPڌ[5ٚ_r{,BCP0+w|kӊ9X5gf"YRcm1_eD=dbt&M+c(Q*VTV 4k.\!LwN<8[]]]r:m7ayf-^!0(rM-v,R 8F!ȴ={JSfY==8zӰ\,:s̤Ě.,04mFtOЦH5綱ǍK LLO#єwײir,˱sA0Ҷu!`n?^~t9/JR3 lr`rZ--Fh˚J!1$O'L:\b!m1M0,cQ\#,̢O04ڗ8,(ќCljY;kK.ήͱ_SwYIENDB`includes/wp-booster/wp-admin/images/plugins/plugins-installed-success.gif000064400000053105150211537140022713 0ustar00GIF89aP9=16imuyUY@Eغھbfz}_bΤղƈ}Șlpei28Y^Ҵ׵QU͢¦ШLPϥ԰̐ƒ&+דȕ̠Ҭ,2͎őؼč)-ؾڿǕʜϦpsJN׸HM8<ЧѪƘɚճڀ056;Ӯ>CNSpq4:GL/4DIruor;?=BLQNTKN̢rtFJŏ+048ŠÌ׺BGˠy}>D[_DJΝ̟MQ]`49tw˞IMx{&+x{cgǕ7<{~IMӮظͤ(,49Ɯ̠FKNRͤB! XMP DataXMP ~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"!  !,PyH*\ȰÇ#JP3jȱǏ CIɓ\ɲ˗0cS)͛8sbϟ@3 JѕC*]tgPM*՘TjZ2+ׯ`7z KزhM˶ڶpKܺxqӾ} LˆCN̘Ɛ/>x2Ė/ά90}?+ztҦNv5봮_-;,f|{޾^y8qƏoN3桟C'-}Ucz;w޿s/6SW8/&5. KRv^G!H>؂a]cn_bHb~&ȟnb.H`2(E8<#/!,s  Bj'!,q 9H߮) l䬂PpV!,H .r HBa!Ç5{U@ċ3L`E HÐ( _0%nɳϟ@ JѣH*]ʔ-oON%iɏY!,JK3 Hs!\ȰÇ s ŋbs%CtHKXa3KqZ@ il.ӫ V Uذ_'?&8Yu y q`GS -08!Bxz?(ш삠 0& !,!v6 H'‡#JHbpeC)'P`ɛ8Chfl&:wf`H"Eғ$;Nx&!$5J DaN^Xwh-y(Q1ňH~&Rt 0)NtK2-J@!,}7 H&&‡#JH"*,CI2b ! 0cʜ蟫8sv Z@ֈ*]ʴӧPwNզ5jʵ'^ÆسE@-ahppK!%A { AEp$8W!׍hdHqpm}:Eh2Zfa\>a; z{"8V-Xp|d6iV.!UvO@D3Olj|CcElz-w6v5--HȔ.O-iT-|'(^[YȲ ZJv*sW\X35BVni5ΥyҍSS0X 2tb^fC h℞/2O@!,}9 H&GÁ #JHŋ A_N}Hɓ9H@ÉI&ELhϟ]Z !ѣ3kfҧP-|d#ի +\lT] p$]' PqKAKcPWl@|xL!ʘ3k.(*f}=LV)#N֣/X'MNmnMP$}{\eZ&sySFi-p.JpgÀlD 3iQ"6'Ar4@G3W`I^R&cnY]M\UWqS/(ͺְ-%\|[m2?,ŻC_n =97]tǒsalӫ&8_sA~U> )O~ir +4`Q?f< ]E@x!csAx!cIX@h\6 .DK-@D'C B`K,Na蕣HތPdDAuT"RHDHSTI A]P"F@AR!,/ 8\*\ȰÇ#JHQ ^*jHYC:uBDT +c Nʄ7e&XtvĥVNH!@dSҘ)J]iXƤg`R৉h.̐h]! X^G + OS̕2d=˳iY;z0W+x`-d*n(gͶ%s(o@ֳkNxnnywӫ_3h|_TӿAAVth&q ]@q(Obq a`(<@V@$D$ΊX P14> 0y D;!P8 2H e@O`@;Q`@0BA!,? H8RV*Z#JHŋ3R͛1Z.AHɓ(% "$_*P)cʜI`l2ժɓ$.a=Q:$XУS]dTMFL%)X  piK -K䭬۲*" طxWڼ3ÈB`` drL$)M&"`WT 22}m8D&?Ʌr]Q!xG͉gwyУKNZoaa v.I1%Xg̥/3my$zB-8Lx%0r-Bہ1-#iSs 4 -IEl1LAȒ@ Ax07Q*/@2c@,cThwb1Q[XK+u%bqdihyjY2,yrJ]3.Kf٧Aq z 6KԂ=*Uahu7~Ǚ 3XyuA%!`tؘ? \`"ȅ%z?4ϬҒK #@j`l' P0+%DԊ@D;7I?E ǿ1-0O@A$!, @ Hj!\ȰÇ#JW2dEǏ C2\D/L\ɲˁ) ͛8fkGΟ o*Mҥ}և/jRʵ!tqpٳt [h㊜KT&oG@_+Z~K lARL! T̒j?8A o=-ſF"ĺG!"Uhܱ^:ͷylHoG ËOZˣ%ҫz \sɟǟ\P42Gp,AX`Dp!ЁKA&v$P.8 C܉@b1J480ҋ}.$Ջ cC"B!c/fP&, u&Ј,K!@ <僷Xy (Tʘ萏Xp5ˢՒff*uЪb'L2kHbC츫G@P$+y葤hu1C RA{IJ ys3'L\9HkhR175GqS >A\\D/@޼G5h '70Da0;πqAQxS(EQ'47(xuQ.Nl`.قLE׬Hwq y؟*T>onƒB$hA'DAA66! c2@4K+P( bCR.tQ-j@LXI*>$ ĸI @ 5wD(?EܐpO *.+%$pyUW8C&6r9?``qLD` 6U-Dn3?T.3Q+tbb-|@h{B Gb.rDd.lA([r(s?-f01JK-%PW C#RsU`M$K;30f[,\ V4.抶L*YR-{[-?"'ưhlmH[ O8PS?lp̲ 1|p`U.d0`Ւ8G?Z|sT ` \`Иu< P $JgՎTg/"W@!, < H5k`-#JHŋ#Hb2II#@`dp 0?k'3|Sy9QJL&S<)ܸwe;=1 $ҟwS7Lۀ3-0< > D d$6YVCQ0%)OQ5(Ѐ 4J &TT $ 5hDO* B!"P.tpHF@PQ/Ҋ2hВ /~yX$B&?F,' 1E^$D:&,DhdB<':iad+jj뭸N%\S=:Q˪¤ FdimeR,B~Ov<-PX2K.dT+(TO+ 4n\!, > Hs!E‡#JHŋya|aIɓCal7DI̓T7ZeKhPIёӨSH xJ3 ?ZZ]%0WB3i8Ts%XwYleoo S'_ = EbCiq<&S@^C_X5;D`@gԠHbV?5dDdS2nqrnIˋ "FINT v8[ tAXAl2aNb!S{OBy?8Ru i9? C$CʛA!iH-PS6R--F垅 neC[\. -HSQ/\0^Wˍw% Q##@,) E%tY.r/:VKdlО9@,9S#ҝɃPAua pXxp #-\$?"vm&l8bY@!, > HiѺÇ#JHE!H@‚ CIr",lC)Cɗ0cDH+ ϝBLSqQzx8RD H60)$81.lC'0 '6 mwPj5˗,rRÈ ڪD6JL 9CM4[L3WgTMЈGY@KAn-pB\DE+A&!U)./A9JϾ}E7orHZG|7KHᆠL tuM;-! aU6&)_nAߦ|OK:ET`1 mlx8nW<e%^OGpI;-*ACq!, > HSÇ#JHE` oCIdD 0xxЂ0cʜypvXɳ"-={Z/\H!J #LxH<പAxj\+჋BbEr)k>20iж݇"+w &Q8--hL9|3k)Iqe޵!Ztٟ= k<X7LZ?[ +ȏj2ja뒭!w2\'AH ~?4{HP}Q]F >?$v H`ˀwK;,`w08aXWFtB$>P -fHk[ R (5՝ݞBbD°."n #CJdY/s`z-| ` A Ԫ0ªUYMuK+\S0 I=l0  \mRbE޶k6+<3QmۖkbҲ-pZ BV1PZ 9ܖ=aҀ5p1W\$# #BaV_[!, @ Hi!\ȰÇ#JH >p5lXŏ CRgZ !ɗ0c4?+ p9Z|ʴğABx ]fLIޚM QZCְQ}cÜO8pRv"E]jsaPh# -L؂̙0piv(}5Z֮c˖kmfͻ w,C+_HsOIvJ%/B N^Ӌ^?.˟OpR;]\M?Dp EhL 0ADQ >A?H>.\E0 yQ6Qzѐ7yЅ B0L2L`C+ڲ!.zL-;ӘC8RH*3Dji0Dؒ>:- I ~kr\$k Zc hJ]-Zrrq̷Q%K.S=? L\,P;,#DH D'pnnZL63ra!, @ Ho!\ȰÇ#JH!-HxpKaŏ C QK$"Ђ˗0c2LGG`2BdꬸcN§Q(G JE8Tԩ#c W(S+H֘ c?ҭK)1߿pqctg+{ĝ>,ʘ3HglLzӥS^ͺװzsrlŴ4ۊ35zd ,9UV\9S. )?o~u|_T^j[tvU_J՞QnEtL>dKB 2DdA>X7 " ~T*҂.#B;mHQPŐ?d?3 @8Q$ @p JdMDǤ3tQĘH=2P@&D!dDE%\ܹ@>XbbH01 IJˣ,L0t) xO+dv:R-.qt B$L-= hpLRs >\B R-]NT+xC 9@ < "B!,, Hp`*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗-Iӡ[5sgM| uF CDӧPJJ*D5VNĦ֯Kv4DW_Yt~mn kz/`miX/Ɛ#KLZ3k6y3KAʤQ23KX&@4KxX!*k !O5ƽ Nq؎Bk*lXL%eZ+ !,C Hk!\ȰÇ#JHa.6θTȱǏ Ƀ ʁ\ɲˇ86Ź^ܘ;wI_2]߂AL_*!j]B[Wbяa g\,Fv%r#@5Iy7H7Vx Aቻ>/ր< 'Ϡb nx`c,5ha׸Sc;Z!x\"_T2УKN糮koAIƶcrP`0/~nG 9S5AsUE-'Hpq-6?Vhfxj!sJ T RֈKD"@UxKN;࣐.6?C5dD.S ?$IsJF @6XE q(Q sfS@4XBC"O5"PEe%yB#C NĆr Bf _#?(Q-G0p@Jw3BZAC7|pk,SI@PLA곭@5?+-I̪V7]b -jlO-kO;# C#D (K4`8_2{R+'R,GO ۲rS̏m6"`r!m?h ?(4€.x%(VЋ  qj3 q?O EBˆl0?ȑVkX@!,. H 1. *\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜIfl)PI;@;h*ekӧPJJիXC檕+D ^ f`*v=<5 OUW;["+Zv ]WU^Ȼ9/3kg~ƚcU[Sn8lj\@KUN0p>(qrRLeKNuM$v})Bɿ:`?3gR0 !, D HiÇ#JHň821"ŏ C9R&& B?0ceK͆Hk$/o ϟ#C*17 EnMJ5+DtTLRLJTftΌmKs PPnH%&[jE ZK<|\ aT7Tb@ ")ͺ5AD6`4c,J2 _xE|u[l%ڳ_3Epd762 u&M XBP> \ q=md'9V/HY@!, / H*\ȰÇ#J3jȱ#CaCIɓ(S\ɲ˗0cʜI͛8si#\;t^ *!PeJիXjʵׯ` K`Kە]+P B|AmO)u v:%", ܕ֎^WhayΠCMӨS̔Okոpa~]AV StwT \ U!]ICaHRmKN:%/dI{NY>X߬6Ua@!, 1 H?Z *\ȰÇ#JH@|,jȱǏmIɓ\ɲ˗0cʜI͛8sɳϟ guvK(УK#2T"4gK*կmuБٗu۷pʝKݻxLWo2R/^oJh .5,ן,%:QBxTJlkB2n.je8aK7`rłMyђw УKNYf[?~v8xlT4=U4! Sج0Sp1<#fxS-,!O#D;K:By,<'pԘS-LP@!, D HO@Q"Ç#JHŋCa CIɓED8aSL֠ITi֍ϣ$_p2 l9ꯩՊZXsjM'RQիYP8 ٓ(q(T]ƸjwEaR7]\b GAA*sWY!XdHBBC/ ^xLѰc;%ʱs;0uג!q:μУKNسe쟮]ڃ+I #%RHZ6 GDx#= &G@тGS*l.QFVhfvxkJAqp_WAр hX; Q+44C6hWpTM ,!+' @f҃ TEZJTr`ÉX>1LBHMEmbĘ#} NgF! 0[.<9@ף,Lt"Y2"B''XX#KDR=]2=8BCD2a A[2hн-:_$CμУKNسk~VĹ_!NjS#?HJT zN@r?GwE(6" F(VhFK5VWu-M?"z"O>"UY DO?PPD`pbcQOB=d`!d E>a:C0 Ir !8qd/CuCxPI:n4(sO7!, 1 HV *\ȰÇ#JHbA_,jȱǏ CIɓ(S\ɲ˗0cʜI͛7ɳaBa?: X]1<u1իXjʵׯ`ÊKو':{ ! Ɩ {p.Y Nȴ %K6D %l4 bIc?;D2cS} .kS^ͺװcv)kWxlެ/U =? aډ)7RPӷJ\lhq8[ѽ! !, F H}!g Ç#JHŋgQr4 Cyɓ!a#] K+I?jth?2ؐ(I[ Xq1C$ Ŵ*YC < ʵ,DaܪdZ0@݂֭P猕$P]] HWk r0? %C .^$@"はѰc%.@Bѳ@_μУKNسB-٭z^45"}EXl+ɐ,a)Bx]H,I AqD?Bav ($(Q. H%7,ț?Z(  1X?, ?lxpB>֔1UPO6iD;d-Qr@|@ ya;Ae H:E+S@9D?n<LyQ>bD"B)m# W?DDnBP  P-ဳE+Pyï0} B _ODLNd́G-00M-Hű# $31ǕO&@/ɆؐD/, B ]#]P K?0 ,,N#pH}wU.dUaЃ?$,!BL yULC_~ @ F"?lM5xt!, 1 H@y*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜI`*kji,rR P.]s0PJJիXjʵׯ kPٳ;ڳb_>o" ʓz/_\T;!x< NK̹ϠCMӾN_JuUd5:{ڸsdh'#ӄ;mkNoX~B4IxNxZrJ\e!, G Hg!\ȰÇ#JH@.TfǏ Cl'aB2\ -c"Ö-&`!'HXz ]:_< 1 ?[=67kC-X uXUA (bۏ_.d󗄃JoHq[doȋ2gk٫,(Q@a@S>BpdåոWoݚxzy#_μУKNسԮ-ܹ]}e"BzG?,e)2 >8ޣh2з/[Q-g.#8C7F(5bfv zp!R\HP-%.yAOwrXC`7h Ȕ?O< d A)𐁂JA1H 'C $zHHl-4B; D+2vPV@Zx@*:?@ 츔mFOOSPC2c\mB2ePC<6 -dR/4lYLAL ]b lmWF@cfeI:qlA [$µْN",?NoLMJ\.*QOO(2bA Adobed,     ! 1ђAQaq"2RSU6vB#C 3r4Dbғ$%5f !1AQ"aq2Rrs4B#b$3SC ?⺕uaC])\u)\u|ZRq=\Ogť)iJu|ZRq=\Ogť)iJu|ZRq=\Ogť)iJu|ZRq=\Ogť)iJu|ZRq=\Ogť)iJu|ZRq=\Ogť)iJu|ZRq=\Ogť)iJu|ZRq=zz˥+ҕJW:Rg7(zzR5mRu_W>Է53s=)zryҔ~PM)OK&JS@ɥ)ryҔ~PM)OK&JS@ɥ)ryҔ~PM)OK&JS@ɥ)ryҔ~PM)OKf%nb*h? |:\n{jnߪMQz*ɸzBkx\j^iV'} Zf_ok?y K懓Zs''M*4 懓J\ӫ''M)sNhy4:|Byҗ4 懓J\ԂZUF]Z5;Mz򀪥3OKfxHƀ`vɏۉD(,RXa!:#Ko}kX6}ib.N3,XFy/ėVOO4<4 懓J\ӫ''M)sNhy4:|Byҗ4 懓J\ӫ''M)sNhy4:|Byҗ4 懓J\ӫ''M)sNhy4:|Byҗ4 懓J\ӫ''M)sNhy4:|Byҗ4 懓J\ӫ''M)sNhy4:|Byҗ5!>!|iQjQ&4/s5C}Z+sDGӭwV;y{?ᩪjx>}fxT (!wƶW05owP6pζ,bAp + rmz bLǒRSTcJګ"N 6k}TpCg Yi *aHf#ƅ@.IzZo69E&Ә%o*R传ɕ8\^i8JY폾ӻy8 G.8&^%A\Qg4b369s)xՔgXA9 \QPl@,tU< -@Z>԰ne痗tʎ(0ac402y$Ƶ?xQ H}G,"3f~!8N-XvnjTH'I."cɪ{m,IeRs9"yD[$Hy!#)K*:M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)M)XrS=[c0&m?o~Yޞc}Xn%٭!ƪ?pMSoh5 xU=M[e~ Y~_okckSJSJSJSJSJSJW]Na̹kwKmԒV 8K\a1n @*cɋT3v9s[˹l;i&+9y{d8XJ3&ND_BI<զȼx [QUL2I&_XQ{*$ncS7UDD^1/Y{nێw1YT/M'MmiTnoH1d"Ɯ0ȁtUQjFrYisy#RN#Ѭv>K*U⦣Fэ`dLl{Tc҈L{o8#rSߕյ''Ua`˨Q{|4j ƙдX Hc tl;+ʓ^d(RNN~銥>*O\ݢV~UUxc*Dsx+f!Kw0?~{CU*¡vըnUuHT/88qԥ~QBllr"Df {qȿ¢55Wxܟ/̾ǛSiAVwf~6E~5 :Gj@z/uw햚;fTu: bc)@D0JP )]TN"nc;H6BoM3$h|Ͷ05Ny^a$1l߼Wn6J`Akf퉗]4 rAS5v|TA*HH:ƎT)]lq@ ʊhqP46n$E ٖ/" k0Cv qn#.[W4oW/`؇'ɚ&,z6 'j2f4pX92 !rѰ(/~m, k^+5uaZmikXe _4ҭG.Jx5irAL%DCw$H %+7 7θ$$o΍~5k;sS*Lr )p!ǧêܑ' /r8;nNzNpW#qe@Ґ<2%^rq_,@ҺF&BK2icY|1a$e` k{ט{z1.w ^xza l6R3ⓞ-5D9n5UNT828r2}cT VFKl :_sTvlXqd%Ɍ<؇GYBe('V wPfX[_e׉n)"~͊suK4Ãp!SA aí6/w04Sǀָ* .d[8ӾOp"z5P^NyP:J=$9GDWY,{5QӇc{CdҦ# `VF՛W\x]#]KR G yr hFQ"UH<(C^lz*\z;cl?#;#x11Pq!HRO$")Ec究ǃ:d$MiW2hߪ*$*$"(@ *%bN5'һoHcc883˖,0idUVv q*4ETB(tq[-444`I 4acMHQppO&yT:pwn9|D8݀Ckb.op=lzvX1 cg}1d+HXE v/;Eaab#9811ըIa'Ezt/bա?d(_ u2ǛB-~>dtlɰɋ&ŝjS$yw*FK,YC4*][y^|M@M6<^#gGOק-k\ΩnaYJG.TXEnr9\ݖMfjMɛk+)lu$M_l5Y$g!FD9O9'b.-w|pPrjB^]x;'iwŅ̳iEw 5JcsyƝ3St~>ѱm pǑ*H%XęL:BjݧQF ZsIx$s- csdp+&T1%lTA9 g,,x\.8{MG47՛o a6O>d;lw<+dbÜ!ˀ]{hT;m{;kdf_떹 ́qo,Y݅VR&MQ*&D QWZzk]~Md-2vZlx5aYa$k%T;(>Kx>0ַ dck#TTmj*6bY7h^ּ˃#jDy$/!If^َ=ύ<ɍfqe%\d^v[ l)}& 2@9&>GG.FF{ {_Mr:1Ovf:1٘ c^3a6.ǘ ?z^9BJ͚nd&NeʊEAn&KR!g#8y1 IKmO48qbV I&6v濍992KubLl7*Y2TO.ه#MH9(E#Z[jʳVg]El2 ܨ@T^'qq!Dv%L4g|$i$ (XBburr'p0Ut"9>J n9I yM{!R=8D㖑n6!m{ھmjmc4REqY+v reT?XQdcPXO XRE\CI}04G,hN1A9$v\>L.^ee9eDwEgb-ı\e>l :bq~֝j4].6jYG"c,@A0K[Fߝ6bebA# `,Ѳo2P?(z.̐fImQeJύˬh bچ5jK5bQ 6L NsA@cD8Q&+=!cE!QU$`$$U+^$t2@V) zRRR?dWٸFNK=[\RJ=u<ٸ5Vw,♤,UTv۱N P-SbA|5lļ?潴 c{6cA$ܴ6''vLr"Rǘ[Xʹ)8V6iVs@+ܰ@-ߧ2ϻyI U^2EΚ*. d|6<b}dV:ͣv~LfmmpPqSmLH.9K]Er ̱&s(p=m>%VxEؐnUs3+FR` H25đ%Vݷ}=A6[r/o m ۘjtUZU%qcXJu9] ,mbB/$lnC $q*6DFM_Ԓ{mU;r;!r$E"c;׸ʾ$m[{rwkœ^vI}Q)y),Qa.'EA3Pԅ}/[>;[|*ٖ67ۊSbvԬRMd+# `KZ;d];Թp<| 1R ^s>Cyq'<EG<8.HqSo5Kb۸ǵVNh6q A3vl` VbNJ3#Bw |G4^ֳI[@xGxhXq`(pMn7`{`Ҁ4)T "epjyrh!:^^>Ҳǀ+IJOZAe 'gӯCTa4Xz8(Sf$\>]72tɇ ̻Ϟg]87UM/Ę*A8* -{׭1pǏ$XB,;PVnzmnlc}% |AN.!W\ e]n}GZO\gtG$SƆWY6TUSbĀS?!2#L`|nH I$k;{sr;2{V:8mYfMi)6ͮi׆BzY0EUuC_":`!6Փ˂PӻNi#DHdkb$kʽ ~ܚ5|uXcFR)9X#3*a{[,%g8,0NHU89MqˑBneZz UܻP Tpr;5:|`Vž/b8ׂ]SnMvm/1Hi9l"Jܺ#r2¡' zjP*<;^Tr2Fd8qTxovܭI1|]-D+ vlb_M^Qj(G8jAiV(D<s-a^{W0QT{9U +PBN8+ !e!Гkء(,P R$bL}GǍpfDd ]@^kk1&vbn8nF"Ce),,95X7fm--\3;9~UiV4B~$>Y7,erC"~/xq&rl\ ԏ.UGԃz:CޝhCcfQe2YREƘdzHO1Pz[HTh@Y>aU0>B[FքC1Yt>ޣ b.a{Ѭ< +{q尰: h/řm{oMȱ77Ta{}J_erC5ߐQ{ˋ*Nc1k HԘ692I|T~aaWSI$]FIiN07=" ,NZ˻5q 1y06nY=?wsf\@8j{t9mRȜp<>drOu4#Xg̠#0dܦ30Qэj͋aTDri5@2 c􈉇fddɓٓJH bܣ.Mx w<,s#K,.O}xOk|;z>+UJ݋##2&Wc7;#o UȵMߠu)]. c@kPNNdɉѫDye+X UUHc^ԛ듃9rr4qO$kyJU$ar0jIHgđ4k&`w@r['sp 2#It Gޭy}&!WWj8hcU&"r9h I@ ۶ڤ7x~\o2! Vۿml HPnD`|Mmx[^&_zfv% CF].b,XN;NafL2[EUݾJqU<5^HTږ -ʪ/vf[-~+nO%+f'-c;_{]J?xY})v}pj)&W<,R:teWe'VȺ]ԶM 5e)kX0UR_`ǝCpdUlK^ByXk!7+es5 c5[p{fxVyLd*{ gi i!IoYjbrB #3(sdbA"qwya]<_RVE!|/,3 2JAk5lٱ]7ompƷ9eC8#|!@=YO1`99P)cf,PX 4ZB@3:ҕzm??CZƸ?؅ncU_MST#oh5 xU=M[e~ Y~_okckU=>e:"\;Cp@%[<'DG/R-"@FJLqq`)w3[oRD9TYe>>F>gebEOb2 Kg ]+ G 9UKkQAlHHǁ8v5L]WfY1H #[obA9I0@e1M=sZ*,D!a]d*cU[=pБuNVP!T:"@ȉS(C( < <5ݹ?ortQ54Y!9,)a/Z$!nn%?9Uaګ䠳gk {Űs~q-eQm$QX[Xox"F(n AL"'[jJs6 ~7P],y(&1a(he9l#d' 4tN U0=#uYtc{{M㍿aim+K-_r+ U[8+rQ@IE dSf E$축s,+juE߾x[IC5QVwrd%H퓖xtQLJ^\ qП~{+?doح}2q^hB}VC2~!C\<:8kx w%x;#$͔ iBvtleMls%[\W+ܛʢ℉ݠE5o"|tݻ 绨۴?un$;iܦSy Dx{<}MxıM䚮5 SJV%;a+qU~_n/7+-l̴y4pKD%jPJ6I485Zb>so"bk\j^o$ՙ.$7nyuВ8^ +m@ @C >y] FPD̪@C*NQQ2Չ@SyxOҕҕLT2 R 1z¦sP90"QJWc()@Lc@ Rq )\ *br)B b$bT/|f ]0 Up5UA@9"蜆9 GTAR9( c)Cc)B)LS`@:RҕLS!0b)@@@zJT(Sq) 55d ^=X4MG &CvB`"u`)@D@5 jhHj0LPLcq(rxq)\JǍ ye6gzg-c\W{ lB1ƪ7P<*qK]e@/ٷ5j5ΪQ;4b*bL9A3ˆtGqzR[lxp tHsn>/Cxq44:t,KGIlܫHkZg"`~Sv`^d~oԾm{%Lw&&WOLw NgHI1ϖIznVM>ghFl#GHq)C<5ޢY6}u./tLV]>.%@`_ sI'YWUCwݴ5[<$z"H(~bnnݑ6l >kd}{r5ȃo 6arDy]ۘoWb(ɴ~dGI$,)dbl232 BDڂEF[+~GJp.Cbr9)d*̶ O8F.f։ 9:8W``bUJ(,m~i\-ON.(uBnibbSQX(Ef26vܷ($V¶5-j?'+jKUk푅i~V@v$1>:m 7^Ńz+F-{o1'($YLbL~5bEH Rfא?;[GcΗӐz?:پ$6#O51`"(*p0!Sxw)+aݻhl;s)cid.g^F:6^A7}l s?zE .E[ӻ\:1|Q2 TRatSjYD'sZP/'X0D }Sʋ|Kb :Ii+7G틘ir<~ᄃƍv¬C $ Dfq{1E>OMSv2QdO7Sь!ٹVIt2:l#5QdI#L)y(e]ZHuꛛ›|h~(e 2IĜB-ЏeǴ#)( zB՗c4rԦ(Q:91LwG!'-,•{x"o0{a.#!֤ב$8rڀP@ Z{1D:_bL!>I}T<9Y\21]sL죙cjB&@"IrPxI6rGs<&?J36~1e`rLEt9lSLeHRY">Q҆#HԜ#oP{\88('Y&Qdi劳dpiIf=;G)(B_&6crx # uc̞DR}y$_ )&i/"Ҭҙ)2 G8C͛ۻO.;Z_0d"d]=|eiA\(,I)d䒇,Sb!7<=ڀyN4$Dr^4>jC)Yb=dl/Pp8IJ/x@D^[n/)*re;{!Mo|רUwN0reD;MȆ_{GZh }m=2q`#wg]8'aq{wW z.>:܎`2H\[wܛ-/RS.Tl )7s*zZUZbbLE B:"InY*h]lyj}9΃yvn'yLWr<3H e'}晈iUs"ٴ~@9y8ERZݲ*yA1UPˆdHKcr-nQ\Lz2!#k E/W$8L|$!g#f`1|ܝRMܠ^"X8FIpt&+Ͼ[kV9\pӦ]$哳.Qtިj8tU(2stbqnir/+9|k6= UfՔ~zETb͸7u: `n<8߂iI7+wMԨ8ăGVɛLrg8q5jÕ 4b*N=$ u6ly93R6R](p-WGuޡ̋ڤu3SX,MƆձݳMm|~jvt-}Ua]J0+#`OAcٮ43U1q5O:)!]xP @ תA?Dt$|fk8h`+5TB Km6F6lv]dRRr"e9b"X'àx ޥaEqI&8*ݎ7z_;ODzg/WI̱1X䐲ʜ-v(5-$Xε4[6 7eI4xMp|=B9El4ڪ̸5{(7_O,Z>H 5]V]LbAEr:u2XV*o$1M$(ɬne QTtt挭;)Lr"c<^TyE ۛ7PfLyl(yvxeʝH!J!-b!+3km$t\h!UM1!Jz?\h *ΌT!mua4#ZӦVPK`,*HՁuۢTVh#:be  sD<:ykm}ڇF˜IHEJF#$d"5H|*f)H*iAcz3 QL#Y&dǠFڦuʊ)uT11GuMcrj`cw'6 s/~7ٟq_5 :Gj@z/uw햚;fTu:gsLS!^>@Fvj T9UHS</ L >J]ɛsu#։ ԥ6@ry}8tz[kn\9ܓ)(޼۳bMKs,{}kνeiZAjf%k"Cfn`) P1wޞܶΟ(dFYKxKr(}x|llƙd_ ﭗ6["KMba[-yt+%~jcH5,`Iu,ǠQ2&@MzLnrI@r9Tuq)Ϝ2:{#sE58<ߑK/2 HyDZdȬ\8u7m̪LXqQOܹxqqDpy;fn!ݡeu7:9UʑWuۺayhDB\ ,cu v:Z(V1nB9aV!]"C?8*c4V1 uՓnLعd QM7V\|۷@X֩WPfBExlt4J5AF]jaؠE1H"ocBCLTL`@)zӘ ud&<(&[?jY6)ݫHs{T7RS YNz8$ HH`1G\V0UvĊ0}+e-L[-% 1T_ԬV{ѱs3pG!b !T(s#Ϣ77w-bmM"E-(#W[ ē@SMBM)M)M)M)M)M)X?_}7?O1eks!V8U5B>&P<*S?)lնW՞w6;F4KdzvAQugLDr0RlWDb[H[tT" =S:KylEv߲QHpn6 ۊkcՑR&+E`m25enY7m 4ۜĥ*' ='EԽ5u5P5c$@-ř`+E{-v3a+@-řa^bX6>%Gy4 ȤT";0,>jfˊr?/sU,HR{J75)3'ˋc3sBǔ3v{U8>1#dܩ E@k?ǨZ`A7:JM{ر7>̓*{mAR,}ΧiF:6$KTeu]n.gyH֠V"q2jDDm24m% c+‚B@xu:^}mX9?{Yp;bd;+eݍUcdNfQB5K]P(s lTMaߺn9bYre2M4y#Ak,XKq1FAxi5[Kri˸Qvat`^,DLafʍ Ӣ6EI 5u~ۮ(21r4:`'%)465>wiխU*rqbz- 5  (8jO3C7}`ȃ*%H]C+)au p{ETVxܟ/̾ǛSiAVwf~5~+sjj|{A©߶Zj+j;r}S[֣\R6L&'ޘxtC4Q+IB0B1 :8V;qQ9;e"0Pr-=Jԯ8[R5Q$̸U{^\w96~f ?92ǥs׬|݃/cv?x :ßݪk;R1c~XADυSxBnj!ys4%!Y/y#Ыݔrf;!1ę7;Ȱ(^1bvPUO9eK'ݾ3PыHZyÆшtĩ] %P|Czxz;&4{~ XX8h$9D9 :@t soYq|(Ȟ(c~pH jᔃ<$:2ƘdYnWME@SDJ`6I}KŒ#`Y/{Vd^6J4`/H!$m+ޓxSBE_.UYOZJA5YaH¢6DRxu֥OQ3{d>O+~ޤue< цf!Y׳N:Zo{'l-FAc(UuZB[۠ $ҩwAB@<5m㥎nCKcc{1-U/KmF&RUY$6SÑG+xlu*9$ܹWˮOQ^Ff m=q;NATЬ1&4r L;>*QbCxV?>}6~F,҅8VkoW{/t{Ƕ+@ՒEښ4|zn.vjԌ 5 =z@8?ifrVQDdȰĘBK'R8VZ=ōmޟ1rm]-H,hE0Eac'CW-W29ՐFэsۃrt$ Vcy#]KQ9* t1 sʃRO՘ڽST-ؿl")L_8pr+4>>uZ+*Ʉ@DL#mMP5O,\u>*ջuSgkd;-F5D +"ٳEA|sPØTGի])M)M)_ng|֐WW yٚ#Π|,DkTtF!HYa p(:k.mn6gC$W馧[ WpO;& agn\g5֌SyiL# q"8&N{O%͚n9/U,,w3] 'Ln6Xl6 J6pE)8$jeݍI-|#Kx(q;^ӻ=;ro5weFQa=+ˊuH9hSfWlDI hzn{ƥQ:+k2I&Ҫ0G ` +nvf۳&XwBԞi\ig`U՛iC^˺Ywϡ`[$Ūs6bmnic,C+b:.l$mk+8&ۉ3]F 1 `jJSJSJSJSJSJSJV2^-o!XьrL,MWG(V?^'JP>l~D<-'r[ ݚL{[z^ou 3bc-e [IU'keM2zMjp]ԈSzҁɪ(0tk2㘘ǒOfi^ЎS)Ubks1=#+$/zlrC4!]%Q2 Q&N)nG7TE .;+n8x2":BC :-vݥ'&E[O"F9K[-Y CV ӹe)elfJ>=5#cLLQ0>~V7 `Is-?tܰ'ʌ^pBwo yOeMǃQ/]2+zLn`UhuA4U'=W" C<,J%ίlLtxy]n&ċm*{Hdnh0TYqص .wsMLu޼IUUh @aO3hX~ QdHӸ'y ^ְՕ/qr:~T.KLK%Wp)˄}Id+t΅N(`Y&S Z-S(&帳&孯POI&ibLdR*OJQEAISql3"tsHbYM}mv%Q:$T,m\C.雏ۊk2|6}_w7ine2u[C..pw<5g Ssp)>6I2:ini^-|Vhyel~u,G@X&\" kw-otW&,,n=$K$rWO^=U iJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJǍ ye6gzg-c\W{ lB1ƪ7u xU=M[e~ Y~_okckSJSJU.pomǫQZ 'aaa"IV4T'k6:6pQESRWe2)~k-n>B/05-"eYe(oef @4F[5C\iŵz9X?{V^s)Th_̍\[s ҢtۅIx_VgKhF{H詴 ĢcT9_(%h TT%Å,jZֹ]oÁ:{=ڷ0_\|Ο2 A'c(1ߞ2%lAo5匐jG|-3sKTjYh`)u;fAGjp̋͘w)eyK#I @B7jq-tL3[~ Y_okb+SJSJU%)AN!jRmϠW!|u"RvdePTDq9@x48Sqp [VuV.Dfc͗$DѴIJ82(RW9IUc l %Q =7_@) uTںT's,H&4iW ?nz:se̓wp,r$)IeF#o1(Rۆ R&+n.eiW,O[)dFŠ6,I4ڑ(RoZgީJ'DǾ Q䈖NVev Į3J`RnT>ZoiOۦTrfH$/$PHb*Uln7XN}ĂS4QHV]A귩UcQo{gO*IyEǞ( LdhrFUt[b3tsG[Z%y;g%U$NL)Gń4Rl_߰v]D8I`uʚUû*4 `0$aO“+Ci,cNA8ȪKaB j ߍ5ޠ6F6_QvV#@-"1k{U&V`&XD41L=r%I_شCUD<@DPoA%yO$TI#|$7hjw 5׳˨|\: ISơ\JiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJiJf?D׷)!Eg{G-c\YyJxkbqjN *BEWjD1I\:&]ܢUC&s*$(x<:$Cp mP5&A-UdDzʠtɲN?{GXS:Ohږq0DۍPO|=kC'}Og?*hIOԆN&l~US'Γ? M?ٟO'm?R;ճ?iV?{GO:Oh~2w4f~~>tHdiVX?O|=iDOʱ>*~{G![3c|T?C'}Og?*hIOԆN&l~US'Γ? M?ٟO'm?R;ճ?iV?{GO:Oh~2w4f~~>tHdiVX?O|=iDOʱ>*~{G![3c|T?C'}Og?*hIOԆN&l~US'Γ? M?ٟO'm?R;ճ?iV?{GO:Oh~2w4f~~>tHdiVX?O|=iDOʱ>*~{G![3c|T?C'}Og?*hIOԆN&l~US'Γ? M?ٟO'm?R;ճ?iV?{GO:Oh~2w4f~~>tHdiVX?O|=j%-䓏1gQ{Wj͒ls!PAS4kW+bs 좈@ "q3$[[|Cp| ,Vڑk\;R@({\CwLw燼55|LFxu @-ԛOM(ljVd >>s*Z(!:R$`JS%R/Xq))OiJ|JSR8ҔƔ4>q))OiJ|JSR8ҔƔ4>q))OiJ|JSR8ҔƔ4>q))OiJ|JSR_4w/|>支4>y+includes/wp-booster/wp-admin/images/plugins/success.jpg000064400000011567150211537140017300 0ustar00ExifII*DuckyF/http://ns.adobe.com/xap/1.0/ &Adobed # Yu    P 0!1"@A#4!1A Qa20q"R#Bbr3$S40@! 1P`q!1AQ aq0 ""F &jqp+dJg[}MwdzMi}QLxtz̀HKk;Ms2?c,XXVglbƹ%t򍼼grpۑDh `Jh \edldOk|z+o[n2q13ɇLm2tfxym zނW\wY[, 1c8䅱4뵔dOsf/m4fX+kK[L5lrY>uyV1YJa1_[#Z>>014|k1 tY)&Q47$Y &;lB̊G(mv }O @m)]L(_G#w&h 0)cHUjB}$Gf*/mt$*ͻ/hz4€gs}aZׯXm=dTch?OMoCrdž?JyvFw)ܰ1i?ىEPJFfV:e6E_ƛ~ևS.:B>PaOVV o:_0iM$/}ZMByT87~Z )PC#p+hޣ[USy;Ж&OT/UCEIۍf`n[?ӤLȿu1Cx<)U QǚU.͌;:s[&W*jiS`~du %ɦ*655']b9$xSs̯Ą͘ ҠN[0oFi}}ҍLu'_Nɖӊx<)̧r\W}}0ߜr%* F\n<*.OYs}Ry*Ɖͅ68ήPLhlKd#q *UubN#4b6(L6WD5497p10n8o-_ s2+߱rs=Bʤt)*f= Jz/ 1է$:5nv* ni0>o0 ou}]zc?!DelP8MYd3 -{5?2Yڙ&O_w0\Aē%7i05[K,m8}g%,whXVSL=l,IP069jF XnwI Y;6u Б`H=-\@m^(06&-aލpm)&&|=/w堬5 eqҹ.j\rѐr ksdު-_,ra@\i}ND4c|5qJ)4a0i$Gza}IJ#뗚=vb >z7X%mˡ[.._P D|'CQ sj@ဧ̌&o yBbmÅ/ۄDOiL#XC1lY7YdXvwR8BqO ?Ƥ2O3C?!V*_InDho#vt ٧(~u[sR[R5C.=5>C{'@k%S::7&$UՋN H Kyg/Jo!lbKEw?tgrg:Du 5r?!T3Pw5"VV4ږ]<ԟ]MOn=HY\{r: kzAA0w@$./7(n/85:tw(:.^ 1Pz h~4Xw?tVa3RfÏ﨟D_zʛ? o    `8QȐ1  88`tB0??.J$NɭdHbJ ^ǹM=$1듀Kqq0%4nsP,ՠ.0 `5&cQb*`̢`ׁ`÷CϩG-F1î8p/=Y%9Kn&XrTzC0(ѐ}uBc. ш$X0@4rQ"26 RY`V4&ѵ01Wy)&)%WBDr^@FaP."| [^Ln$ط998r}KEW R,2'7^ʤрtndyi뺪yfcTLPdտ 3IDATh1 NLLI@}RTZ`pe.fcTLr d[O%fdATc`f````Pac`Pa``de@ `fcTL.H dVMVfdAT8 @WYeA3F@DDcZ&.,f!"2j[|1fcTLD4Qd~ZfdATHM0E[1&bOȱb޷|) 1𣟂[Tm[4E8|:BB}&} !s UGH=ʉBARJ)!V#6dVTIsBw5?2Ƭ$$;x OfcTL v5!d[8fdAT XnP3 W)E҆yIWm\{o1ۓ3x&ЗewhIҘ"E*m$=UyILO6IyqA pUANJԒlPGRtfcTL |7d0}fdATXn@YDDDR֢_I|0F@]i{7~(c+TIrYlk E;֒*1{QqX}; q"alW\HFdKGU9CUɥ3NЃ<ھ0iޑTw*ъ_s7A>Ҥ"0&&3tS\rq0!2YBʊL e܃U3HSH)Gz1w b n!RB+!m9" ) \i)4]C .tN )s &d1:!k_H)Fk28Fte77|C{c@xaR,x??M!inՃ@th>LfcTL|9d%fdATX]O@wH+"`WЀ:yeLh&I(ܝLNݍ0X<ѣg# yq}2T#1Vji˂)0Ŋg>3TݠBp 9/.9 ML3I,x\Gb$rZc= i+8f:#bN'BIzUhV$RꁈDhтd\$};'3 1V)TfNQUO !W+)8seT~` rfcTL+ d0RpYfdATXNPtnKdjfYwקᇑT88>773X`hwҒ 5G1ԝ~fI81hHz aPua=$CgU _^9Cl }=s" ? %0}L0Nb7WH ވa.5L,}#"sK TqaVwqL'E" 0"*aD{jq*I&0F7> T g4#5C6ƱrXjkm8 Ol%pVI?q gRWM Icݓ <ͭgafcTL- d@TfdATXn@@;""ZPі_c %,C/ffVb-mSzJ!̝ G |HQ0Ëz}7WYU D "Ō!0vaWp߁DQp+ҩXVJ8UV؅'މd**fcTL/dXyfdATXr0/DQ*h|}t]S^NȜWe!2?HQDNgRNiHKjT a~\N':_Utx_YocYuUnF/i`~r36L,fcTL@ dfdAThr0F!$&D֏Z9}vvVS}ΜWOɢV%z@x@+VҡEK%Znez2ox!{t9%ѽd#ǎOW0͓ 5D6Өiz=R$ t;4 ud$odrYɁ Hix-WmQz:k*&ժef3TU3j U~ѣ bMtضtpF#7SEk5[V|B[4i,R5S;SXr-Îםk Lq!DUyD9(e׋8qʟjkQ#w!/AK.G5)/?I$bӱ@;mE튌p7ђMO)+p>mHb@? M |}rX~yJdʡ 3)^sCA8&ΫMj|o'˗]3l΂4>zVH?=wU6fcTL?d?ņfdATh]o l @%ͲjmVVJ6icb8uxLjJY:GoNфqd{ɹHNmt-)%\%4hcJV7N^*Y2䀬q I-\gJ*@ 2OhUM):˛001r b=zPfH莓\ӨϫO=}\d6z ѐ_oI5ZRV pq8֤ !ݸ%%yGXx%S'6(AX0\@dwi%,R'j$u0QifB{J N.!%sYr1%wL4yrQl[2Mo9 zL-]w#%+9(3q\OV exo#GD&fcTL< dH\fdATh͘v0G(EJBIHyYKz9A s^ t''E1I,K3+L2EDl!+=yY ?'NԈJ޼"R&A ~Sl`Ԫ9{.GuN>?;}xRnJq.R@ⅽ>DIqg/5*FYPWWeXd&+™rbe>v&!.g]ś CU/TN%U*4+U6Ij `ݑFHo㯗7dFv5hTݛEE ~z*Hnb $S´Pu?oj, 4)T,`fհs'!?_i=d>f;M)rTsκv3,zL5JtKӼĘ`fjsGeax:*uGgU] JW6ײ։acW[8$jr=㪞+c ahr#o/X`5PN*MKacU#vT.;R?lb;־u.ˈ*ԯ%},l.]+|dX ]Ў;rzG#;|[\!&Y›0'›;1'\ks'EK6?rG[nE9[wesRcx~|g-.}"{)'g=+2ELg\M+V0@(˙S,;dMaW0 2΂֠?nI$ӫbv|DfcTL< dOmfdAT h޵z0Gȫ$mB3|צXd-̅=9s1&홫>ADDw(*>AIx'3Du=)?;2/yPǒ Q2,߇""/ysAyU$E/M_VÇl=U(?ʞs_5+?E(S_5)"tv1Ԉ<+%FWO50Xm*Ij+U&S_&K.|ڍ O F=7oy2KJָ"4S)Wct(z*ٜv,fl9bysD1cTDA)acOx[ɵ@ ZOzw}3- GQuSMr*.?v5ְPr'%pwҤ`Bތv'xf]&Ƅƪ;O)m^ac'+K׮붅}2*I^U.bݼ6L5\jp)Ôf։acWcM5bZ٘C=̪y}"ݼeb91j^fŒַعlp͟`K7^XaH 1s< fPjT3w6Q!q x~B- f D-1QԆ9(35bc~ !΄|֠;tNf}o aGވS1fcTL!> dH]fdAT"hko0$q@QߪmjHBq=^4(2 3F:><%+fAVYapDC..2צ 1!g Zkͽm"?Upaϥu֔#HN.2M.hDŢbj(Dp#&Qۛ6! )A[$j3F+y9LMG-]/Ԕ/6ȧ=k5<\) {c<2"Hğt q*]X >gyw5LJL?yWAH&pd wN%I^La~&D(R2DxxF6+uD vvOHW2M Cl :Ey<IFë4Ux"ӯ(Mlh"{IJ%'3 M^"K~-6="aκ$&mu!@Htpy@S~"KChɫZy]Qu'„[-*űh)C|)ʵPN@ dfϴfdAT$h͗r@_ A!L)5.lfg;~P࿣/uJc n<7_2X&| -ߐW3od8|x>4xUh㚬E S$~w^jEf5yG<-rjoC!EGJ\V~zaN:*OFh>} X@1a}_Mjafn(m< |^A A"#-,4r vFQLI6Qed~ӮYY*+>7#XI>5@3,kB#(w-Bs6l0x;餵wYɵά`F kxGz854 6ZFHxtWjr0a@`0Nam^IU Im'ņ{@'޸2ۚ'`VJ; ^i\b4PJQ k8"z Nh^-% żZt 'HqxoUMrry秷K-tnO?F8F뚴ݎb8k֯b`W(89Nj#l&O9,Ĵ#[_C U`+&R?qN4/<*p};^pR99e;̕.аm"21!H)'l@דK@Ű8\ #S[4Lpn^E=!<|gnYlc2&g(tHN2|d7͸m6~7؎p|C׿ ##tɺ<)%q&wlIO|\$nJߢF1ҒNx'B΋fcTL%> dEfdAT&h͙}w0ƟK#ȋD:o;6(B?9G˽77C:OBt/z)UqI{#W҇uD!ñH+(8S,z#+L"zFK/3eTr?9b@%njyV rfXc^Ƈ~N++є&U{"|FK+%LAQXob1އ۲]^0Uf?'T[г; GER*,J "Lc}}a14#a3Ydc.TvXØ Γy58.UK,qcÉ/0b;QR qk6ZZ7M><Fqd:IC&ajjd*[Dδm5|*e5q;x tTwJX1GK{WY3,YGS_:yٿ锓D*ȼP(ܯffcTL'@ djfdAT(h᎚@3#,"RT__Ӥ Zar0A+l6bs΋ /W%zN`-bFEL~KJ-LU P@cK&ɫa%yc K_Gy ѓbM18 &$s@Üi'k#@qaCŭi6?Y,CQPe[EB8JB `\+[[PͲ3C劒 ]`iaQ6Rs7qPg;X59հ(}><劒mv*Ɗ)Uπ@dQXmR@53\8]Y( ܞaiSg{FjDQhÃJ Eγ n.+ѫu{6pyDG2fxijk0 +ˠ0DMʮ23-3004&d'A)80Zn2ro Uެ›{?%#.`GCC]xߋ2aTxzwc%0YQ]fօKX?. Y ؕc3rlͺPPkc.\'G赙K.<,C?e|1mF]{ib/EkPY[NA4*]okS%aFPn*":P6XY$?@REԥW3?9o35hJ]XHX . hl A@|&u6e{2@>>oY)}B^&MAe3T6T]bo1+|%cx{IVՅsQ`ʲ5S23\`NA%8s5YqG4+?X$njM' ]77Z90C7*§hB6 tll\`$2NRSehe/VqّqݏsIx9'xWԼ:j YPB!/ВX/>O1HrMB(2AӴ%ChK҇3<[~b]#,PD6S(kLK6B2 ɍ#[V]!uS'pڶkՊup$d:B#n\Zw0dCU ?,n䧔]HR2wXcxƢ܋1pf+"v{unLQuv{uV<„Tv9ϝB`8z][(Qk(--u:{pmsdlڅ#/ <ة9ÝL !OK02.,c cYf[-^)܊xz73Bʸ73B94 'cVf0 =yI|΄u6co;nP@cȅ!PJ:46f^xIsT;bT+%QDJ@g?<2ska*Ѳ+{]6T ]8粛c": _ca.j|! Uhkm WRE.Dl0ŗc ;e<̘ 5gF~+gx" O\hh>?m̘KpY5ИNY̜=mN1^n¼`! ޽[)+,tc٤‡{u(,a|hT B|# $b}.Uy(`*(2X0w%8-#8yz^pR>oɑc{|10pb6 21TYBn1O2,0d5̥L!#"N2X rqubQNMz" `1/3fS\bfcTL--dYfdAT.Xõks0@A7֞3&|8d&A)<az1'Y|ћ O fJNp5;qpb"浕%Ke(4[Z**z~3iq>D[,[~a<^vYovӔVe ,nM'bx=#Mwjf1<`lR 06FadJ~5}$LEȨŰdID;Q39l9kf"jB}L{L2!g)#n,c Or؉Z"llҩ8 U¶60I1sm6@fdAT2hٲ0EAGw?TLI%,3MD#F.ډӃLLu>"'v{fL;<ֆ*o\#hZ`<ԳD'Ǡe5ސ)I D9 K_(+v=s*Q] Z|4IqariRC "XtZ_.f 2M60fʂ%Fe1MLT[Cs^0oL 4guI=&^$$%l"Namv= JS҇.L-ʹ_oF9~bzh|>30Lw4o+nu=Ӛ=6Sn6Z51']l(A!ۑ>u`  ˆ[LxMB}l\`|6@cw:ِL4 ݭet$c % @)uSHSouSs |`W{KS\@.* X_<̼hIBqI*Ydf3swI&0wtj6}*x^S}j6uߓs,pUƇ Mlf(xfԁBpno>|6xUR-Bu oy6vܪHK$lhckXФfs: LUt.u2:ٰXPyP-rcV%,}W„w)_ʅG] *tB΁j4ChݸfZ;x+ 0YPz%Lai/D;֘׊I$ μbKuˉ;n+;>4:.ld &d&ae8ݖMSXi?^tKϺt8%L% c6FU # 9,K@Y=ZgA6 fs2r(sJGWmlRJ,D3RCVCQ&7+5fP$yIn Y0l_$ϊ[`\pfcTL3.dfdAT4Xý r06ʘ}$7U) X ,B҇CLa8jՎ;؊d [6yx9#\]].,aM"Άխ/rkͰ`N61{Ȟpl_wcKV]F2k6=m6`O`0'l8pg<76q6tv  rl\yx_ kٔS&EjQjg 3xS@S;}6|;vy*%C\{@$QR9`D&&]]pzPv(%]f3]s.\N%4Pwtj6}r)P>?fs9vƈ%R2`U[8;c5\c7& -C p+0rA/?dA_=rrMؤ%=u|(f0 r99Y%p@]Ɇ\BCӕ/YpXsr!>g3fcTL5Dd˳`fdAT6h鎢@,@eEmdfҦ Rx9pIZdd(0debRaX 39h'ndjcJUWu dOVxMl?YJB:O!ޙ4:y% &"27CؒNД0X운dv)g&3(V\IF~9!7o\/b[u -;q:|*x8C('XT27B,Fi5q &g.:?rԾ&#=8gY3Xqɜ}V2g6nrwx''r.D= h3/nk|1edu)_ Qo 0T⯭tBzK5 qsIC# Jtu!d)A.A@@-q6&0^w2)18 G?KL2F{]ܢ#s DiNInn$)fo۩P@WD TDZM+>#[w~+'}męy),d4B`"\蝹n^OH?/ Edr3de0bb 3pzzbu#;E*.c\Nπ K\Ttfe[aBf%'sx M[]"W+2Q@`*w"a%DWޮX] ZoTkE|p+V]jdu[r|smIv 7dU_%g~vQ?6Og?u܏ds/ fcTL7/dXfdAT8XA ! JF׽9 ]Zޔ|'"&醲63;QޭB?Q+weƾ s-CNK@582$| o!H+(4zE4GtW&jVG}hpy!UحsSxz N]fcTL90 d; fdAT:Xün@w_jwM&mqCNxYV @16׉7")a(U2\xTJ0Gm79+fBgehtBFLC +.bǧRGc#]L +ez0_Xb5ɒnks ^)yflM8_VH8݀Î] pp)⍇%n+0<OX*ě)Yݶ14M!tȾ^ȹNo5M{7'lj/{s$yYjR 4ThIw}p=+P V (NFf Qdf -sD%T_=-JDK@B3GDٺ <\O6] H!:Wx+Y!rpިJ"ў Y˅ɐj Zۃ6$A>vfcTL;D d4ufdAT" 05 5L".I%z.&WML#_Bv%h6t1MYAe)(KlL#k'wpVGepUx%'c1 R9-E95R|lz x۱y `^9qcӓig,¿V6q J NAIFeB5H'"4^* Mx67V%dXjG]/wt{k5,IE^tٔnH NVN}Gns|;q=6pɦjW+~9佩ϙVJg]}I?XT<7@AfO߉fcTL=1 dn!fdAT>XýR0W, RX|ǣiڤ3cg4'06~A7ƅLxFO  Г8'Xfj`=$Q-~òauME"F;ΓsRɒG"aKLwfpE]ve2VC'a>9~>'׈-VC!!}|oϏ`͎S꧑3!8r8gMh,)1Ζ4ZA̸XMŨ nFb7h([σ=[wPLwN'WzA15v) y(% .2!@ <2U E)NVŨ)hއ`Eiw 33 kAY>|zHW0kV 0>EcRGv۞M*ւ)z)(D}Y]E ܡAIfPE7GLUg6ˇ[)UtNȭV;FV;WoM E[m˰R髕A2X}(Dm<M%9|O!S6Q`{;vg}+4Uׇ1,Hr*jw׻PJ)LZ'"oK,% Lmzr$SӆaSo5#25KT@ XS"م\.T: hɮ}U̮Ō͍lnֱG Gilm)Ý,&K h2$IR,6i#ѕmyi ezCu98xJ[xB[/ܵ(s7痢]5^IiHqfcTLA1 d֏fdATBXýv0wD.bUq\ӕ%$—psу/Hc%<#MpɊ b-N0&cA1ʜHĉ#<3)Xu_Jy)zTuv- wR 4ST#**ȵ}VmJD[};NmbX2uv9TiRĎs<^g-],1,$?I'Ax\ B5BVM^м$/ykkSLqL qOs ft\nO,+ lDZաUόX46vn59l?(F&!es1ѮhF 8oф곙ŖUƀ58آ/X6L` 'Ҫ[rܸk UxN-IhCLJ)ȸNf>zWJ\ Wv+u&\7臿e"Ʋa,*z}[xŘ5ΌHxkh<ֆ`@N;b鰩rU$dRYqN- /s8&,pf"]uHPԡLB,9`Ex%g_CUe KfcTLC1 d=GlfdATDXA 0_$I;MW!U7ڮ}|' Lq8$>s4X1s}2_ɉDDqCS>-NP*T&4aNrA Avٌ;a m_j|5,yAY_W]Q6}V|ZFn]:**w=Y-%v/CEfcTLEF d1nnfdATFh޼r@F" J ! 2`9Ջ*hCX%آbnRIg0:ԛҶXP+DŽ'X|q',ԧ9|I# 龥k%- p$com̚\뾉`0jqT JjI7Dl}Ѧy/1OM$3)hVad%=obNIᰋvl10ovԳ"C3p{0~躬ThP/8i6UmD&Ji?|c:^4`2`η}X&‹FT,[&RhÈRql#2YGvKd- #gF !N#NK"Bډg͔@$;$rVD+Qp<ȥ-_9DZS Sa2tONs4YQݭD%Ea( +" 4(*=z盪鋞b;PX}Y[GJ6LV%*̷3z"D[syI3};^h?6d0I&~LN}4JvXɊHkks`:0RP+ 4]WFDlXaIWKGd)zLDTL|ѥ׾GG>O;pK lB뿋w4pGpŁ Y's8j_ȳI#}4ٷNKr[Jt wªŕ8l6FML0ZƝClYak2jގ#mXa;dB}Xjx(kNa:2*CXwN1Bq XR"Ol &ïH: 8JipdIJXJ ^&7@ l{RVZ>1JsW[ V;)v[L*0B` xbq'7}r/ȳ-,J GӃ,N3kr=<$1ls!Y,&J\IQ 0ςSy$6!0W6k㨥/Xdh,0fi-.fcTLG1 d`fdATHX 0Б67MMH?R AFIL.^ ӁR/nz8BDDުi̮}AjRR 7ِ~a 2y`4eA&m ^C|@u?)B9 m 爖yփV9@# o>fcTLIG d.\ fdATJh޼[v@4 -J vd|'ke@VYtR9م"ɲXÎ0eq nu'y/' oCErPhf䶌(+ o$ډӃL}tє͖nkJB7`~@ڕ@'u%m?L5 wO1ZxHz?~Y0I: #~iOhP*? $weF㥪.x1cMIXl6'žk9K زh S77x*W!*Џ76I&E'5o"A7͙H5&Q$6L$".؅qv CXsٰ)֪[FFYbc%aV[%:*#tB qŸ3]tMT󃚔wPd٤웈L%ԑƉpX9-4G'" ~Ga1$DB|hy"2.a&^i2Es쑈;# \7)0C&hoFU]xz'x#ے06}=O 1Y/Q9!:~Z $FP[,2ߏ. 궻Hb(LOPTGTu~nGӉk@D%oxJ!QqwPURQ5&,mZYIYLK?J 225^h ]cЖr2"Z&0.+!_G;/ut0Klď#F?Xљ`ffLmٿ-Fؾ $ǏR^/`J Z01f˸3 `Rl+n1)L ט˷('>'3%`5>Q5J?ʽ}yjƏNk0l=/fcTLK3 d PfdATLhA0_-VZ6,K!MaApg#wI7^7`FcRPo¡X]c6'ظ$.D;xb"*8Deݹ hSQHaU1FgJpOM" Pʠ{{i@,!򹃺tsE[crG6/>5kIENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-newsletter.png000064400000012351150211537140021274 0ustar00PNG  IHDR, =6PLTE\IƜm:*K9~qyY+|^K|XEH6tUAMyP>C1|lēgq_^N`LN9F-숶0!LWB2yg=-䓑lnѩkYfT3$քwf)}xvk\{⮭ԡŽgXXKH#Y~q,|RꚐɠsɒjHF|nԶ󐃶w{ݰf,˾ϸga£`4qjv{pke\JWEh?12+끣aڼ˾ya<*Ɲȱܗ̕.4ً|q{kZ}QRH7+Auj3=0qvfEv؂~ss\C>f/nόԂt_ZKWD撯oSR.-O@ЇگOyJru.fLݏ4@{{!IDATx=j0qF|/dj ўhht/ s +t$+ii}~dt.Θ@K9p̡.j`!eu'Z.uZmdY -VƍR,EUj'fU2lkm-)ˮپn: I\qQvvLU-WR>>ߟ锇LD0K+.2u]չU\y>EWk[R;WxFb]̦7˪jK=N)M|Z2ʫhIEk)Z\E>ZcloT4Tk|?QFGTCށ{w ^IVyu$PhSRs#롚y|p34B34]Ovت9(]6y8.}MP{kjnf72r2ǎ1hll=y#BLvFQh,"uI4o;YkV#=RfdШDK!a)&խ 1;F45$q$/2FfHU<9uE49"`ß,V +DBVy"x0͗Vw؝/V-e EBY st4Z\1`;8ZA]dQ|p7`GUKg>4~4 ?ꁬrKqYbdIYUb31v)Gs0sղW+0j#@ͪ%>вD̝w\l!r5iٞ9vGKL͖w3gmfãx4#PtO'qJL6ey^Kk' cuuugV =Y1gb a|K`PRYe҂.= W/?u) NadJ_ʒ[/?|Yei2WY@P*HCg/CUE;$*z  SN;lPUhڐ Rf٩ntkFQ)7>3UPdzcG9'W͓aK->.`+L+ Ù~yy lIO4QÛ<({ԃZVPq>\MІ;k|5SV-7{DqEQ)hE1(h[y]JѰ d-#S&%dφb,l>\z *?[iw|ye'o&_MTtmn6bhNuҕc59-*;qjĒ~6z .mRK{rOlGh$^y?~|bXjkrgX"5Qrlס@YJ%Ǫ5spA JX)`Sʲ(ySB!Lɘ.o-8b7F#pZGlsXX)V ѣv-smXkLIxr& 3Ai=M$~Z;t},p9q =<MaoTD:Rmny an5)jZ\J'tpڧ<ɤbe˱vmz;Y\p1}kv kAi߇UٟtzWENJldvWСS9ݟ;pE^,KGMy.9$L,pdOEQp=7i?g d+S]8_?8\ jX>>~#clݦ4cbյ8 $6QƗa8eЩ^vS*u'Hrmf" (lȨ@G` Q/Ab9s&WU-Ba 8 ռrySgPM-KǛ@r)~ .GiAFQtH]XGcѨ) WxK7DOA&C!AD~jO8w 5cQ9Zݝ1 dbG 2h1V(r54\- yd>kS,iA&-WAPk874<ȣf;?d4 0XAr42JV+|84t;x^7#O?tWF$QH7Xcy#%uUu (Nll\ e q+ujQ*qU7_/n :GXbVT6I,Ys6MqC)'4!x %(-6TgEh/ޤ +((ԋxrz | ݔ z GoT8CY\>RY|702};@ýb&<}OM SI %[Ge.q ~lלx}˗/a'IZNДy^2 Y%5b)ˎc=YqTE߼OD';N$ zF4PX]Ӟޤg$V,QX piϕe*9R(hc1+nZ-0- C"dH$KcD [V5`dS(RJY%_)+LVJPr?$p82NV&9zTd30H#G+OVk8*I=aD]V@xJ۝u";ܚ5Tթ)1s (1Y('nᩭʸ-꪿= R3iĩ+K*<>+%ܙ%ǝe Ț+}UKc[-y*Z[Ak'|K JpՁ.; MVkKR5Da.TxK]WUW_Ϣ+q+5@o'K챕?\iJŝ\*VJ-:퀒0*)<ҲOУtI~i ꟠:*-yy8*u'oYUs<it2D5ODTьM|e8+vbAV/YMҝ!8T:M.I KePDAEDo4RF>Ŧ0^KlCY 9^Qct"qk1B2=9@/+3 6>.:( -:%(:>$$  (# ;P`(6' %4*7 0 !2&0%2$4$.6@).+)5 4= )0- ,@N/;>8A+8>Ra! &7N_ -14?!1'9D)=K7<'7:N]#( />(.1ES"/*-=D+6+,7KZ'+%5@!+5K] ,: !2BI,,BS (6*6;"$2:-31#(' 4D *0*:*" "8J#.#* 1IZ #$4/6jvzAWg.5H %##P;Sd(1C#04% Qnr)?G$,?5:K :C17548@HNimpDOZ#(o{);7>?Win,kY"|!,Ӓ]V X=!" ]Wy54Y >Vc=}tΩsw$[ǒu,+(MEW0(VTd#IZoV=,/DXIj ˚`e`e\QV5n4 Xcb?>x<kcXl 5Ь1`eE}<:-CqT’MdbaVqKiGn&] U %I2fYİَK+5XVo3CedUhlͥ%H!Ke`5U$yX+(mۨŠ:ukʚgV[AkrjRQ!fKֻħڗWWdۂ尯.4#m06|fa!\޹TpK#Y6jUi9Rb-`%WX`e ݄t6ׯ]FG9i7mɈDXru#anR fVAXB9GRð"VyIA.D{c!LK4X`opuwDOT#",# r&a  +G ,=~y8*I}xu9, vv4(Xj)GK*J.U0ZI`XL憜&bkhWO>XbXKcXl%j]kD_e<}uWEt`e<(fpzx* 6:RD\z28a,++AX!s~ wnysXI*FYfYߛkd8XE^?W+(ꤓ^]qDyۈetk.=,Vɤ5%KfL5X͚͕{XVo ΌuhٶpX Cb7gk&"Bj`ize D14aT{BEX(δ$umx1bPB Z_L*M-6cUhe" J,5rokh(Bv^7yc!M‚cX|O{ZcbZ|if6bJ;k|ݯՆTwo~GNjHTiTT5`=gXX1=+*RXy֖B C-0,xZ?phmղ},ʒq=.MCЉXV&j l3hg`V5 'ԅϟ''a|XYyYųr!+1Xq,zH0" 2?qJ:} <CX±w]`EUhZ1x~}q ILkr'_?l,̱z+a}q,<-G8,I0,荡ۥ@zǨY]ue,9n !XXtl {;k9%EVQSXfThVf6TjI!Qc@+h`]f߆)xi&y5,PVpph]PdF@\K s7VkALlBlfY%h%1# @Ȕ1/!SiL?|箽kuWf}.cVͱ$l$rX2edX܊JSe=CCC7>3 V,NűhQJQ1%E AeM,C @ӔJrFLeZ Kd/4pW> +z~K^ql}5_64h KœZ, Zw%Ѡվ KT]؟\ޤi2A(au =9nUE/.TV=>XGC`D4,CBTe!" - s,8UDR$l4Rq֊#YkeRR +;\QXQ㖗9<^OmHXFUa0gCCK ў J vՀߍʲcXV9 X.3íHD!*[|ůْUV1K4_H ,ZzgZ ,{iɲj'*TEn:'VX568>kYaA#۫ S0ycHJ-??+V,0XxXjS]H3VY>)-evkJX dG2WL5udSx@5(3@[۾tO5c,QgXNXш լ 9&GpjvOqʔ!V(/}X1k})-{+V|?+`Șw8Ђ|z_co1XJ+!CֽW8֝XlJ)θ(Je M^|".Rz" KV:ufuO‚B˽4񪸱!E@M(,Qۛ|ompWn_7ڍ]:іY=ԗ`ES]":+FG=TBTE$==\( pC +kZaS[؞j}XY7ZX~𲺹eȬ]殃tn\/:wxpގG%74xlK;3QYyDn" ERZcX}l B5َu4MK8,ڎYɲgw=`o"0-OcH58+d+jɇYGF„SemXu5+jƃSSئ¡("{@U"kUWYC:+Y^+e,-((+D(YeQ_OZ1P(lx)ccD ʱ˗O>ۄ] .AbX/ffM(zdK6^h$0-zρ&rVST9o%:7@RY2Tf,aE=]MDDe`B `LV9ۻ|N.4E2#f<6sҙb& aWﱃ<K!\p R7:[~6dMX,$gm6, hǢ "j)C|  KЬ\vugUVaIV,c>rde$S$pb#jjc:0sQsYoVd`kk_'`+X NJ]a/8Ё=h+4hbSM؃ҝt# ׊TJkֹBWXL$,h)3y J(6:by-jCO}o_{D+ - z?;wlŹ\-Λ54yHsR,XП;*И_ \mԊ D]b`aOPEXu&l/RE(,/ȉ+cCRfQe]piHqbE66zvhj_OlU!}G=,EU>}'+L)KbX1-@ZTXعo$n V:(Ph\$;XES<倁UGTHsS:Tkߜ;s&V{6Jٱ$?)n/~gwVY ͟o61BlE v Qp!` * X+8ZA jtbrs׏y~E&+姗 VǏ77–W ,h,]c u(DQr/\~p!8q1\ӅluZu|^q?ж01&FW7jniX&nuVvV6E Q:dc2DfpN7c4R)35S1~H"uIP ~'?}MM.cxΓs=[cx<MGKh4@"Q CHf^L:R).E8#c鼎}!,7N? S9yefɃL<0719rŦKҧZM>Ng <^fum, tMc ]k-o^ty(ebdBLy1>GH8*KOhuT5;OexdىvX5,lz?` u xiga Dp*ffSOL* ZiѰءVXƚ!+IZǨUg^c,BH,~{?BpyrYt6)vgUJC)X.xzSò&t`y EXd}z'V%68M iV,sK,>,hװX)T]. k> !tdz>gwMwM9hhLHN6Ka:U(Ŵ. >ԱPY)Xvٗl< N)&AcNkeR:XvB.iX2fY6ͻ(!|&c2\(j iT WGW~:CTU \X>'ux` B`Ń }!,",q Y6b=9:zKXѴ\11j\d0'2V^Ldn=g%cui: CDg *XkY)|TΈ38޳#MV> [A'l%-MX)lAaEXᇋ/ɭ:''XW7kupkX (r$)28en"0(4a&,?nzi#~/(ޅ-pjE10Yд\iVojJCt,jf{#u?5`ms ΎnX"bVvPܮN0 OrR |&  jHұ>"19;BxR_Y`9!k9]ҵ=Ɩ&'--V6aV'a^Bk@7@VdrgeuL\[fGeuoVNkXJ4,!_&./ 9`jTڪTꨭhK'E ܪ֫,a9fjUW3,X^~eNB:#ѫ5}qZyQ=(2*0x,=][u2qV|^?]t\lqҼ]oշ+f8ZaesI?YK[dUk]Y~?aNXyxWbXMx_6}4VM,;gQFt8G9c 5 -ӫzׅfX8ò]_.ͫ˹ji=X*]Wd,si+N儕F^mrZ숴XVXpDrolW&X2xE/iیth35%)躪^t2-. NhD׎5s/m9튝)ut.uPV+#셌p$%]{+cCzN`瞻{ߺi*.Z^<ci!R)2ɐű~@"%q9Fu2D!0^ WIed_(Ae'R1\(4Jk#m|3c tdKlX`ٲYJa|AdvBu_1[ckw"ʗK!Sa.X"8"f*EZo=!bcHLɆ kV;Z yXmVjq7 MlR>KCv :+<؊cʊ,`x.XL1nz⮫͕g)M=]8569S lBXkV~#OEr|,m6bVY,Vٶ㋙3#Vh9 g0.M-:H'X#V|iLL}Q+]HLc+k&'rCmOa&2a^Qa*XqYUBKxBoEĦ_vZMIJEP'٤zthnK`Q:qxp"n4Xޏc0\b&<+=s/lFuRdB&k7lCN4=ˤ㫭p狳{,[g0zeGǰcFm}Vv}@$:%B Vc7u6wdLc!-U'9`hKύ ]K-rȇȁM8άZј=2vԬ쁆!nϼ޳?a3^Q.L \eXJ4 {%(Zt)tNgi ",U&`I:YO(p9«]50{PAcZFA,#Z9;c+҉ >폖0z5C{ˢ,kД.XF~ۜ>إ" BHrs hI#䱆~v]~K?m i{N)^eff r7u`~)m(q>7H2X rMIE )=<ֳ2몸 .mpW]/bnkzm`]d0ԿcEޢ"}8XCP8DL8zjSE6:N V>s7M/((r f2(bE,bV>|),ܥRef/}}< M6*LyFƻyVu! `1'X#Ox3Df? x++?5pujǷ{ 1Y3CVkArn!ju"VY#3H`E_ęxD EèGoݜyͣ7o L&BhO}0bUyDb \h.χ\uXX'c6W%k'`C" Jjig˜8>`eZ!`9/^,6aD06РڍC/U^f(vj0⻬XFV0GE讚߬D&_;G<,e&Xr8Neio;msY,@sƪdW"́葭'NXHe/+q[7Ϊ ~WO|EӺ"-=cxNXSǎm}~,*@+Z X6ChŨ;`Qg`ԮP,Ƙ^GoHhS4%I#\>C[p/XKYո/F2e , *+fwz! yk-}U$u?%J HL֪a :,ۧokJk蔰~& (woT"paV 8Nv$5eD=O< B#;c\_;el}~ʖ0KSgt+>[V?C!(hV$: H<۠Yʪ7ge sȺEIX߸ܸ;髰0^1=dl2)*ZVt/$+WCp1Xvhd쮯B, 8No@nh'f;jŭ'Z{c䰘>kU)ڂ[p Ln BebѴF+V)r}giiȔ%7#%d{/7tdjVg-*Ee-\-v6+U,)I:X`p١WyL$:%`asE?fm`6K,`jdMwA?zw:,BKڡذe1ޙ՘VW֮< \RU*X?j\jNM?P#޳:ȑW>=p=|-xԉ"yISڋ[qhY)Q|3bL"yw'`u|TYȨu ig,O.ٛTcۥrY$YW LX.#Y+XEJ0%Xk'''Cщ3''g7MMRG OM_=m:~쥓'^|y1Md5w^c|pXjݦ0Q ˆ ӖvXA tv+4D֊V _4: [^H%IFPZT@ZQ"D74sp8=r썗~ `, l'aVn*}z3lozdU C~L}8;s${F},۹ Rat,YUZkS/%5b[3" UyNCk&W{h⎱%/Ҥ?=??.dso^ZZ~ifS_h !mX%7#CXHl`Ґ:i}'bw"|sd3 Oxk"Xgm#KQ'*EVZWYNjiZ;vx.;q|οޣ3 q;tO-o<]z`YW֦M .uSX'X#f[\;ZTS܃b@ 5DA r8/ŸkʅtG",J,Vd&谣>&VjPV֜8@k AE0]6-Ũ}m;Vˑ0,teN.J0>dEq8":o"։E>D*,qFi E爨Rh?3gZb=!Kvo$e}v_QfuZܱ ( NtI]?1*u5H4lW[l'V͗V=~wDGFVUƱ9Jeunzj/ avc+;G(,NV!Kg!.$B/S6N֭DRwGeі@k,9|-&4Hd0o/iaC> Z,_'2Т~@h\B\,+ڀ!jy 2`]ZUTG}FP].s%"Z4 a蕾FT%Q?(t'nF)kS,H%1Ӥ$#vOGF&C>#Vѹ x,>CI$(hm,nH!h\mNR`IKui kTaZt} &KBo,"6h\LE b{O ZZd|}|hB" ੯z,։*,UUU Z:M+K*Sa.IYx=*x-X ؚ܇ hs;QD{p}j\Yť+{<%+&l xg<ŝuǠe9λlH>dmpϸ>ˋ>_5P%mӃV֖TXSdkҟ(UD`S yxJC9i*cGu$>p?,dG̝g[Nm$;s}zIܺFM.T1/[:s4LCLu2m>Ja QQi$S1T +qUul.&G .tX5Q )r4E9CKwό͌NΆZbL Xmr E,E`եRp8,TUzڏ?~O?!e;dÖ~|Zؼ)5aퟚ O==7,LMy+|B7(X> -Mu_IКDuj%X&`rDtڒleܐeX*- V'w+ PdVPj#Hj[  V'O }y7_-kGj`mNYʰKk1yځ\DSZ(TZ䡠eg 6[=$vM<Jd# k*ꬪR2:.耸JwD:SAi,ͭnP%'ЏbFa_ْ W`ZHwR^YT}jM8_bU jF[_bҖv#`iK~dƟMf>"}@e08en 'a K1VMk#fczN%XeaX^XGX_4oOT"RՕiGR`!˯ã/!"'~]Ifw~Y%>V0|Ks<#Ld6}=u$EjLfκ")IX5nO`A*OV ,Rx+Ҫc%,≘LHRBo&e~' F@WMhYNK۔4AVuNa{,ߞVЧ/)ƕΓHA0SFdȲ1 `1$PY˖un& ɓnV(wܓNNhf3qEXhܽlɳޕ`v ,Y|X5Ԋbdd`*,:C\#tV??'} lY@au=@U^H1)/t/ɰ.9eIԤϯ]-&9 ܬOhdX99'a +XB]pBK-wn5)B C㖚tV1$_cAէ]LsLD` V`7oe2UgW`UB$qL]eCK?k]tFh"F{ӳorm(sep;} MkXpxVP*K Xλn*pka1])%m+dbe+'~++ oJB , eIdTWZ,.3&ǿ96-*,վLm:vJ|T>f~"{MEE{m"#8$"αSEښnQyBIeKQz`u1k(3]-EX03|_WaYrh% MlV%ҵcSӳ--GL'/L$ kW 춋:̂0 qIA+Iz* $ú*)-$W`ԢԶJK{D=i C۠<&N~=Ў}c0?V[W.ϔc,gz6m~IAEYxd_/y(Ա7Ǧ?K"~2 q#Z*uKIÝ;"Pe՗\ Tö<X!C&c;c&[3CO; n+b櫨7KgeӤP d03>QE:֧8A9;Y:V,BLԑH_k ',ƖGtke0 bd2" `뢋Nm$.54^UgU[7>ChV_ =%n|2hx6_, PVZ5d2$5uD)sپ߾=ʄ@B e#6?x%u~M]Щk]m&||öV73->w}kd!mwu84.Wah `mY᰺TXPiU[ ؽ]ih_k|!SwߡŇVUeNt0Bt^@==iU<5P .i9y2] UQ1yY0L~Ei$y.D)y'>L~:ZQzxg#M8{/"h6vИ1z։IX=ɚSq`13{{#1Gx9jf# "60(:tX1P'aeߊ/`((O01BaÃqzRPՌ*E^bJ=}F*Xׂfr!( a+x^)QB+#+ɪ'1;ړj0yɴfftV<0Pj ~ٚ| ?C# &sDX9">eu5L:^N5<,oӶ)K^68͗f7.m*_QLIZ׮>ϱ>#5~T'$a`.j,CKaE3o0,0 ]ǦNcttaV < P:,'Ĭ,k 5|nݣ&9jB~3ċRa83ےR,JrU$/[1`d|H8A'"+uC!iϩ JQqѹIeX8: X{0̙G6V233L, ˘ U]Deo iƅU|^tveh QMm!fIS,.Xd苢ΊF P(S?87㱚pMMG0-ې 2.m Kd) I s 1ԉƇ/qiG}11X+Ar(+H.2}kn9f& \ja,SlHª;RӢVN ݷ3lZjm4u팋0~G0M[NvA!1sW&0U%càB[TtXFsS{c=L5`+w&Yu 2ʙRiX0eXTXXHR*,+'VX{%hbҲcNGG-K[[(~>4ʚ{bn8g K5]Π7saVր=`9wYNn ۮ%<.n>5[yxf|:o* [RVQMRᜋōȴv!M[0$Afx薇ĺxxx }32 G ]jJu ٌ{M|8bsv7b]Nhr7J\mހeu؄;9%)E4X-8XHPk@v X$+&G<2ϊA[OnVP<9z uG f)+?Κcf♈1"ڇVa5|Fs٫ Fw'ƳX%o3:?u>ц`w9X%8s{#9;X2+ųJXyhGK#j2,:jZbH 4V?m{paY`y+:srx%:_e³βR5[;vgwF$ m.~ئծ<7f1ϫ( V%h,j+LkCQ3E_Hp>]EXs\aEd=?~t!5#ZnTJA=4I?* GkFUr  e X9&cf ԐJ` LU$=մ j%T O%:bk~ÑEg™f= ڟXYYlVYK2>j׸ަ4s.bԶzVF3rx[V0t8l>RzJX%BƂvV+$Ih&*үrˊ\LՅ $RXmii8DwApbn]FD0p;BŲVúp;H&a0Cfz1t.dX<޹޶[*xz5(3}ñfuYHZ-Q_Hkcimx*v!-BA+Lޞ apك @X^ؘBMPTm(JQi.Jp!H PAk0\Ylq%ܥ+IC!\s\]MYLdRDL-MLߟaozw&sQ̌T4 Z)oebg5%#eKqֳ2ie WSح FZR^&: /,2"X~ ^ bW%`,.UdEkSg^%ps0g_zgZFI/ÿaX=HZx@t.XMIp[3X2kaZY6YEWUУI;v]ňeJ_=˥@4+o[Ԑ6thM|JRJo^w`inMcс7\"1,%J;N$3D%=c ʅ>_0P9p]wv?c?/_gꕛo];gka\2―d0J Y+h+!u Gip02^M4pa="Qru.aL<X{CiK(9t&WX,:s{MYgxjf[3xX?Gn~q4<hjz0, `mހlBIm%+JʶCCa a U*4 (Jᱦ-g:DLx446{z1FZ EN6I Xhm9ʻr`+8m\_۟_?ruo|mUVeU<į$YǪŔUq[m[,%E;)2g&)Љ~3Μ`0(29_9.R:yrim}" 9MY+m-pol\X늠(Ws 7.o}s˛lx /%fGYRN`itJqXʃSZτEbazsxYNL8RV?Vf Nt7>X׏P_ħxN{|˖!^`\Wݔu*j<>Fr5+ix7EBDzp`*Q |>n]FEyՈDm|-I>v-}["4=.d,CAjbvFђuYQ (ɞN+&,Mt'Z`XσZ|8˅EVcIlj8=bÍglݍ7h _yzssU_2^_ ˅ҵBU2v/3blS*kUe V/u!V ci!x8H$c uх'0$904VpC[lD4ώM+L^{(>ީ_6<~yAHXm ,l鸁P++xUxm2,_/sҔNo4ʂ6A6?v(T !+2$a*8{Y mӏ>qET&ױ^^9{fdಂ++,h]+Eagiu+NgjbKz%f3hk{](\)zLTT1]8Y Zs`Zċ]Ik` xl(\k9k(i\Zo{1\ h\Sن=iqKo#oZ:!ZHS B}IW4%ZZN˖ :rsUEY1WmSLBτZj"+ VTobY2` `9h^*.' &0 d.?N!ͭb1Wpۣj)}d/q`*-l!T 6 FhїS*W3PUh}pVE"83y +B93$.>3LB~<;'kT!t&-puALP=FBcO]_chAH<'6mݍ7l5[o43Kݽs~|Ҭ1ߛd/: O@%$`]YILh0)xaK Xh#XW%,p`mȺ?-S ĩb *5:nUBIZȹMj*YCr|Lvkk|$p'i֙ވ(갑`UXXX\rb| Ée2߁35+V%<˟ cZ/` c K VSuZ,&`a˚[E bs#3+%U`0/ XkcWv hBk*M fx~zլ>N'iյˋ{ a)?gAk4hXGB s&Ҫ*Ię}I.֌]hʟ4}j5CI&O+B 4}oh8AߠEtwvh$z2Yypzwax|X[  `Nhao8I-2*j3 sE5OѠXkqܜij22+*HK[*TPߑQHgggޥ?PL |Vt]#II91s_Ű'WA8X>Gk\r zdžBΪUVt8D]KU_5n{ AEW)se׬Z6a+TճIU r>f?BߞAXu<k1)z}pVX7މPnn{;fu0 Xd"j(N֠s*T+*}UPRWP?a 3#baK閙kjP7jҔ?U = pwkkbe[ši'>OKXL}u.asٞ.VPJoY[_1 E %RMZ'q1A fqd0, '+TqsT!X!ҜR*4+zPSr4Ⴈ[FJY~:Miͷ?@0=LfH}aH'׶X޺}HY,I+1#Z>]X ܕ3\u|tRG!ip.f@βa"n6-ݦ0f+ns8ol9d"[06 9Rg?x+K?=g{ހ.->X/Mo# X( ~[cYkq yK hubS))v,y  xk0ն M$)BQsY2 {?gE0<XXZIguuzܘmM heL6V,XҳskGWV&%G1-cBO*o) qR8CP;Wp *FF^*] aX|^.m}4=-y{ohb!%Q/#L`RO}cdzVWGwnNj/.36ɄᔕGXG}j[@0jUPOl+-Hfnj,ڄV῜.:;'[%1j4z}- ]JVqƬI Bqg賉F K RNNY8ˡEJpݶ@m|mƍr(1@XJιYt\x `u slC X$ðargX#w<sy&gO=Xu8 $-;T,Ij0<&$: @ؼP1o?aE r2mX|#7n Z0XuduZΪY"YA+ӄAj[eo-?i ews&!pXV`ќ֯lϿG%vi9ӵ.._ĝ;h ò3 SK!|lαt:}Κ)\s/]/NŖ  ! =yP° L΢A|W;vz)F_|.YKCPp;)c7ʫ"9@n,7Qr"IENDB`includes/wp-booster/wp-admin/images/plugins/Newsmag.png000064400000047313150211537140017233 0ustar00PNG  IHDȒqPLTE012,-/'()+,+#$&  ļ`aaMOPDCB==Vh9C)ϱűhe6GР+6 1ޚ൪ҟTO0xM]$-_sģYu0]Lα¢g?]/'?cwmPSO#rNmZ@5ٓuii-WR_SʪmEMs,!ADsqg12cl`qo.s al4]y0o^aBXܳf~[LvxM|Y*@ܻNjJJqhiNѫM@r-ǛK;|՚xh['syS|D_ن{s{TӣG3٦9h'憂YHhif]}j ePqD?ME KIDATxou(?v-8B0kJ 5p0Vj-yiJ1* 䰏xGbd4Y,&NͩOM쁉Oֶ4oݵܽ|ԱucXKwH-ϨSp8 G!|A*h2>=@h4`FCa? {C$,, Ks \..bf/y\D |jjg5΅i[0 ,q"-X\D*UJ#IRb\29lrp!3j< 99ʹ4kF 0R$BAXTj6!$JLM􍏛9g>=>|,d&Ҙ|Z8.sT,'%.s11=Nć18 È6zJZm-jARD)*D~vb,,ހ;'=.|>gMRFQ(^XłBFT6#ɥH`>ko #n5z vYJzKlbѐ< 1̟"|.#7X§g\i|8 x^ > ZUꥒ,WZ(dQKXJ%cv_ =jHzv3j|7v|I tKRW&+UUo%Į%*NcTl~b܌:H:~k{8νK8v[hDza~1N{hG/ RȤ#VYi*Fi]nrbiX~2D~|Đx>H0PEÿSBшBxXB@4Fq?CN'7|&ul1qC~[(ჴ׵g^YWXmJTJN\cF,.1@3i|Euab\.a:B"\Lrр&v&1&:yҢwX>5zNl'[UMP%T%aX"ʓN{fGw)'_tPToQ=O?,{_0&\>!ngB^"?Kr)-UR)n0Wd1k-0Aprb@밨ϋͥ[\iĐF`s#f,e2 3 fI%1'0t"Zk}[0 ;u `>vf.o1zK!OQdY DR\*d,#PAq2><<< :G uGA6|pi822p`owƇ$>啒W$J)SZY[0`)3H^2:C~ /bYa JW |~TVVVu$3W*+Tj4KtNr 1R|vvOMPX`'~??2?9][:i>;qo0yAC݃|9cM[')FcY8A<~QwwL;Y!ج4fZ%Z)\N%?xqݢ(?ʆBFlV<ʃX9r99㰬Ӝa4/q@Xcxws=eqQ!+^0#"m9?H֝8W.kNMgX.;J&lҩS?eu /_šzn=>}B+ ȳfE?6=YY9\Ơy7V2f)cBnהRb\ïPK%&>N5Y3=B<ڽ߉NtuzNtzLg,]vX h[u°nˤ*vP$* crP/ĩgg3fguU;:hIz\ד,s;V7WWWv{ܬVB_AR_V&ƒӏN"xIweyUquY$h@eW׾Ftk67Ѿ脁7|(^Dj{Uś/*Ղ>A_k|n}ܧyXy =?37:m_gD?@ ӴqoP'}`zU ;9_Ȁo|1hk/7 oֶ¶vwmC=|4T{߾󯼜 rQ([rշr͛7B0Z"sVRom|lRx…WϞ0G|/p!_,ԑ |[(z*ׯ#+Pl =A?h58O鴺zضzvZjڪZq'Ҹo!uq4)J 8h8zd)4jKDC8q'Ho%z~oI?o~=a=* 5 ^|mx穋bKkQ&.z mz*~&+ѽ_}Kf$2 vE@8tMRAQfsJPi4mqC,0Q65};LE7Vh \ ;L1\ΟH$I;x0{ԃSk-㣛Nן//*oB3R(ƯܥQRU5s.RZ#婸j#i)"Vͥ;yMyqPH$q)ne`~<~x>GF׀w5G(;.L3b\~ƃ/xһsrnȀhӴht}@B3lVU6``6_m4lq*UEٷ2:ڴZȤj/e*tEN2 1hc6OIAA1;DP`[ a3d|hҔi(.]`˦i&ġ|B f̘!F-&"/Aw3+})*,23-MY&a1xhJƖ)e p(l G"!C!=$ڑjI1TvRIgwQ}IJP%C 5O LF˔ ' jU5t?E72lh"q0ژ` g/zK0a}!·- 7o&|m:sumsm6*\3h}IWiu2V2=T#us|4LVpu3 | C{ RrmD}IOVn=>(-dz9};[mr@Z-nǡ\J*]I&r cj1'(]7.|1Xr)&3 œE oٛ?EeuVj\QYKUOFOV^nq;-]G)Z|-IaNYU-]ǓiPb@1dr{> m |HfT1JR*]E!́ % %"[4rO 1N%%NrzPEH3X:4Kߟ7KᩬEOF!l,_h7HnPa(W|<E;I 8byY%xqcrpWҕQ "°f^l|4d|"ޓ[~"TxC迋P<ϧ<%L xD}-ლW-D<=Oძ]3vmQeJwN?g$=I`!/bXՌ?>ĺh]v\Yn[Nٺ)qغ 3ֺw4b.1&Zg^i#0b |˟CQ;* B!_^Mj ~bOWWV**Τ%-Zw/}!-?a ~E |n e5C,T+\s%0JЄ!RgP '|YݺÜKqƹ_%5X3Y}@I%.5j8"#y25L_m R  nb%P /Wt*Uhp{ܑs޽{ܹ"ݥW%ד'd%n L:ԩ3A mxhÛ71qK!fO_n?(#W!Lӑ(RHJJ1DO+c9H>Rd2x x{޻}7n{/XtW/g_[VY"W)~nl/}~DG;S'"g~zI2Lbݵ$1ͥNLJ#;D4 JS*(^U[tϖ]Zߞx.@3"q땋L6O6F\mLN2m}/Fdc-BCKKK*J1s}3iddB5GЌf1 5^lbU[۬Vo} dvRC Oҡ+GJ,TH"\---CV23!`9]ϖA{^Nw+) 4Pj-h }Yd6dTa >A&OmB[ǀKxWTY%Vj:&A|V\$TU=Yr[6ߟ3u(;Y?f18Vo 8 ru{;LVen 1n3 {s|m, |/:L/7_nd)ʥhW{L]X⭎+W^:c{2Cڿ\^?P<ǿF14Ei? LGgV۫%:or\ +.Bp~a>5FN+@Ϫ*zx~\#ˮ'b ~꫷t2f=R|_Һlk^:'a Dp8ѡӷuH䐀 DIÛ0T(DbM6 XZ5}uA^+D7mX^丌'5,6M4AolDHd}=z BoS<;yRI~|D'\)+zpxeIYwﯙ7qzZz6+^wXk],X!dN*5&ˇę Kӑ)3/DrhZXҔqpo|yGs1ӪHz~"%?Gz7FL85G"^|pGȻ %xzy|||sb *g%|0Pr3O<1ݶ O"e8)mP8D^_G-n>$m_GgS~o? i/qSQ3y34fd3&^ ?ekX:n;$}/o\ظC“HRL$horRqAmW*/|/Gt|eDș ? F3-w3TGؐZۍ#c(˕3۞{Ǜ`|>Bji<ȫJE"jEQkC1'WU|V]P0˘iZ}s=8Po>Y+s:@l*%cIaqnH4X&he2Hb~LUV5u;DJ(JbeUӜO<$A(3 MHyf]}R_å˃ֈtf`ݳ~z!1)n%5a~}!{26\<~ h0M&Ko`0~mwMu3;L.ܭif}i~wŘZm6obZ&ZZ7LB=`ϰHi !S ~} n4A_vnPٶnXccx#-jasM=S )o&n븸 :jjF mIs9i ,A"Kyrq>P9,5["v7֚!ȾcG-7^࿨VYRG>#pǷac񋃨FqtR$ɤd@L+k 2Tͩt0NSwbΫ꼂QL;L[n; %sVۅ[U#sX܁/MF;2OplǛq~C h0򓕞L˒5@VxׁN9}rށcm;NnvWr:u7 au8;r)a,v޽ˍ1|\-o r-%9g/leV6[j8mtΑ;Ն/Ry(},3)"dU@rBkvXo.<-?541똮 &!^ ɱiYiȫғ9~큛t+WΗ4{D&; sY*4΀+'r]> ~ύL{8X+] d+s dti~yhc&נǯ!Nt_N `) W"] N[-4cQ2?sKKW[9vc`Y?|/Bk78uI, Q,qUUp_Z-̀N+S(TH SA5"{DNgowe[|y08>Z8;Ĺ騩-GE~.-/--]VpRR>/$e0*p:RxUrQaK\9C9|}(\hpgGvFa˵VRYDȅ()Y5/URW%+^`/)`2Y 9}fWuފR_}}lRYOw`U{n[旞:#(M꣌C*?3ci3ބ#-?>RϢ(,!V(B܇DN]py#&R.Y31@ou$Rڣ0<6?_{ہg]^$=zƖ o'#Gp&A nuc(_Ѓ`֦eiQhJznf&ɩ}]L@T"ֿ<@[YGr?&9?В8fq2Kŧq1(J.W8dF[^C/RVGva3;h4J/F!+arGqSi~#H ;#3cYBmID~J2/ t8L;S秎OxV j+txW,Aͼ)xkqgSvۖD&ъj+a";罻/Z8k$~~F*0MYd3 fDavt&;<0Մ֒" $.b#~r)6R2'A&pgK)8D\#3)ҥ?^Qo~ע='rMwĘ_e.9 $$H^LD 'jljdFxRvL5jOŠ5WB@fxuHĴ4ϓ:]8'@DCqȗ\:]㪟ߞnmajfNPFZUI60ou tM#B2W8cO6jBb>VB eJ=oO*ܖ՚yv,wv̤ p.¡`VA4|taLODlkzͻ&-dw_QwapȔ]ω9u@?kJ(3zvveeie,t`?iԇ>&/\Sz#_|e56}W\G8>T;RаJ?Uzv<]'[)kS/nO`o;`mTRTZI d5sF\, fgVfOTAh+_ _\~t5>ڽ*4qgu'L(Zr.O^\#!}ûASϸluN 7_|(OK#rR,,UlviҐir 5UuvW]uskrw^[m=F: 4& KMÓIzFMJz9<ϸLb@['TS>vu&Y9_c' m巔onص}cN Od$5^_CES(3m[@ ^=m ~vae0:V~k26OϤS 1:Ġ0%WC\5)ZʒKdvf4MYNL-mE1~AҫN;kUkK0ILFDz8Pk,3@2%N4>ABemmm-dz,rOqr&w*M9" ҥH *ԣUY=2o"T,};BCxh1?ZgYN5݆p%`Ia3qO"fuo?SXU @K@ +:8鵊\sms߾~Zw`Ytb5[_PIiSq1݈0n9U:5 ?:'a#,&-p~jCH}1)44U Ufp#Y`)PŀΡZӄR>s: _Z^_'rZd>-͚X-u:=.1E7৑LM_R]`VF^8i9<6:*o*[&'p>2µICfSpעyG40z3JBRFaIr!j qg}& 'E Ra- e>2~(0ݺwoߤC*o |F[k줣S b8<֊?[s!wƆּ^\QV&WYO_1QQ!4NN 'jMG6^qsw"f>¢]: ,ZA&)wh!G6 T" z'KȍWP1m,?՟]{PbU (*&7 P,(2e7խܲmj"wQ4eöfeՔMLMSL~Bi-.;||~. SjB |\՞Apw#%@tD/+֩Q6`֢Syxs/0_.}z#B<[:X{7CRեbr\iuym=z4-+ay1tit %kYmM˯"fN<$Dס}'w>`Cmt(1ܹ&GR D^Dl$\'rklvAvp\yRq o\蒭M0+fW" .jEV_y_MQ^~[x~g<5 靼h#Qa< H#gߘ{i'Gl//[L'i<I_\7j!"!߃#vD .:o(eG'2}̡$,.:m6/%9q#Z F'o,0r!`|q~V (!+ok(Q6 }wkD#F!?7E'^&OB%0`ǂNhI:Cn[`Y0aۍ#w%o3_ d "Nc5:>3 P_qZT>O$`@A:Ih:y1qn">e|b@+O*!*AG#.$ ҈A%G?56e|o+2`W!{I}814:4b[,miI%C`:ӅJ;ǟT6GȉoF.w:07wpwpn71'F#afVzE~=L=v':Mf*dhԲ#p2I޷ǫ:LkVk @8dqt{Bar ޑD΋r!uh1ai_XFlƅNFKlM;K7T9}sX J џ $ ;>Y%v)͸c_$IC;Ąff|&a /AUbCh*!Y_b(X-bIhɽO+$r̤|KW|`XB D >9Ėuo&&Tvk ;a* 4?R,tҽI ]e)Ö+}teI 42u߳aR4NegOrŶ; Rsn 0T׋!GDSWiL_æ' ৬VbaGL2Mș֪AF8CÄrVߗ\*ZU#Ħgg3|I&G&P˴KwT'ɤ:^ZzyT<+~%k%|dਧG [}Ksj gOڝ{ F&ieJm v$ZM$SE}iE1=j55l-fcK`> "ȕN,&fgg3NƄnoZ ٙ yy.D1G갛hɕT^@C)޳Sln)yI;N詾{&g}#PkaF}$tIE2 ŕ<ѦY#%xM5O2Zg%Em麵r|˱e`_P" ]C9Mo>:OYzzy0 |4C:+KBF}j4uz=pRA}q΄1ZztDH2Pq7?Ѩ.EBGYh@5ydH+p8RZ~ؘtg2X4N"}bzܖg3˻ ~Ce5:8|܂TrXv ƬX5Z5"N] L*ۓ,--.ׄ F4+z3'# >1JH( NN4VR]|VHT#eZF!՜D *cӤy.: uƣ(*SMWI2nt- NF 7e6O3_ds|:i ncDbFg-hEHN32 aO-MIEJs٬h tRKK,jlo@{n[_zܞ8믇3/yܾL՚zćHIj좥Cڀ[:ݖn oa-oaz |hpq_m T~h1up]mhMf8K!T2sAٱ :S!wLޚ}=O|ŸX|0Ē$_\ZZ5t y?2 *6{,j;J&axMygg|)2Ł-ak`В"L4AԒ~}br}bo`畼ȩx7y9kis$FdLƌ`GsA+"lm{†36 j[C.4zkgRP#EӽLH6(?|종 Yb{ 0 xU9trYq)x-ڈ93HE[4Vwh‚)DS./ B"-fe=l– v-175TuT=*4"7wΐYPP /R9$KK1CKC6^N+wrpm' hx7|T2i -XbNd‰ AA{i!1Ϫމ cn@wāIpmg <-&`|ѳ"k8xsMO?{Vس_mj 7t@[N-n݊84){L=.DHgZ*nLcyͱ|^6&4WJWE T!󣐟3~gW\x%~֏wߓ<|mQX|Ԙmư޳@y8e:q8apcp[G08i+br;tRX+ .JVgb[j;p֓/'&3ʿAapA!6n$߃}hB +}[Ѕ~w= BS)O^>_q >]b҉W.gÆA#ï?kW 65 N֞bB&?9)>%kn7yW|G6\ # :%hםx= DX/:/g]X+ST܄Ÿn{ލ0lMk<WN>V _~Ľ >68룳rvJ#2*q+/ي#n*?:P|v')@j1_|C΅&<}M3%& 9ו|*}j{䮻^BV >[oii6uƩr!Z&g/ tr}NV AR:` #I(͗;oRL"y~ >Z^"׊IORwݙyy|ktwj(:^ )>o׏ $;rG; oAD[4lJiVk»ﶉ<*6nkGu&=3l6ALS`@&v/x#/K|.Q~KoFH׈}H@#j6rvP_͊[pMJTA4'IJO&:9 RuDS l_C8mTK ňy#P^RHfD d@ C 퓍aeDd 33mKJH͚b0 >"ic %(LS#TK*aǾ߰cCfPD?R1ul9X\[\hZ4~+d}l8.|S[bT)xP Clmm&W-fӌMXfD  Ag&C\O ZQ1;7o|߻#^f}A^$iL܄"Kn[Qv%gm"hU|u8\y<^[oP UZ4bئk[R[[jJD"K ߌۻۯ?Dž%\08J/0rDGLѨMU-rքQ*Bh$:X)X+b/ޢ|v"+M[M&>_X1H?WQ*HtB${TԻKj* h1=rX5ى%-`ug<ĻIENDB`includes/wp-booster/wp-admin/images/plugins/tagdiv-jobs.jpg000064400000065300150211537140020033 0ustar00JFIFCC, T ! "1Q2AS#Raq$8TUWbrs B&3%'45C M !"1Q2ARaqB#6STUbr$3%4CD ?qMh]9Oj})')O4D=>Қ"rSDNSڟJh{SM9Oj})')O4D=>Қ"rSDNSڟJh]:׉t+r* YO'|u='Birz1irg{\6dƙ~;u>bRVq|[G=5hEz:.@>ʏt1^Q8!uma_T`DTTQ ċ.矗K5tG)57UUTE1qEx:n:* D lI $~ncZ{9y1-~L=f}'p̵0i2ݦg{w |_vy1-~L=f}'p̵0i2ݦg{ر"QU~3>}w\<'T"EJrD?޽cww詖x']Uݛ|V~tsd>].Y<=/vȞ~tsdO?Oj} ]'>].ڟBnlOWK6Dпۛ"y{S_͑<=/vȞ~tsdO?Oj} ]'>].iX<~EpL>D׃LӌOu#'e'qкEmKq/_f|.>DT3/#.z3 BÒ!T /yjy`.X؋Voj% $7I6Q QUPxyԼR n.\/.h8!Z$/0hH>ys/sƱVz4MX!&Ut=gD 7>i/_ A8DER8__Y=VW*;$^m*bdL|S|SXHHK䊁/HT/5(i>>6/s-( ZT2-P.(^(/ty2^ETAxe^WUADxT(fr(HGlv򝗜a(M<ӂӍ:mۄ &b-,c 8k6Z9M#.BPO8o =/O^<9ս^̗rǴ3lilj?E+Byu&B{]KT_QąВ"6Rdrrv+=eEkм޲"+!{"Dd4Ux[]/K?ڊ1lT'@@MPPSQE8jf^hC'tdEDE;)_G~VKOmі 4)ҍ"O cwww'wwt\ s|ur^x'z]/K?ڋEJ1x/L2rnSRvkג_ۣI#5BoE t~<ݞQ=E<~MN_Η"DhLk B3HnLՅ QQk/<WUQG||Wֺ_Η֠Adkiq]SmБQUSMC)6/!b_HjeeEIB뿏]G,MDK9_|C&y{_?6e56ͩ)k.ֻ؇c3}3 -F]vm6q,B / (7\Q7Ȯ e6߿6e{A͗0fø;uI5Y{a5Ȣ+L`$8ʏ1Vԛ$^>M}8dm{c^2ao?7n ;=vyw:m&k%j'SU[+AnǞ ,^FN'|㋾^ggRP"h&"h&"h&"h&"ݭul?'SR^|2aym}"hL8D=iE]}@7$lxQp DWtk\YHMGlbCәxAr3!7UtEvlῬIФ1LSn*Mp۳N!<2]1bQ EKHq[6N-"f0*Į?@'|cwWUK s:.];];];];];];]Z%]|M!6$aE PU\EDQTT^8]yW?R~кk]F,)ֹo4^|+ǩ\3KS}V: ڋ5;smGe5J6kgw2dKrP C[kEyBO۱1]Ƕ.ݘ#k}FeY=C*t\ %-ȫbJ+_cTQqrWwE. sbQfK3)_I>:UOFGG4,hjxLa2fc ud2$YYz9 q:n[}MLQi nӜ4lbU8c|vT͋ mok&~Z*o²%'naퟔn nc ,Lyrk"ɌZheV37L:p|7kp+ 3oe_udfb}g++AԛWClrv9CZpǨg1AL)n*36 !=op5']>gzzp=-Ac s3 `>?ƇѽW~tm7] A(VSCTMR,2zu'ź_۾>Q٭l /ˮݟ6w,N0 gٯsٓy`uE5P*5J)+$ :v(ح $EsLW&eL<ӆˤ0 ԽM]ua4%(:FRM,ҟ#a>=%k |(&59ݛ}@LjQG;ͣ.ܧieˍ`]~"h&"h&"h&"h&"ԬerY71-9JnlN2O'hjRZcněrS9%VVXϖ]U"”0d$W ZW3r#thZ~"^ȱ~q5\L[jԃà&i1!$$.:TKwzY]ynUiXu54OSnLFtB4e"0^񿊋\uME[PYuu]۱l\tw 5,^waT檈kqlY şk!eM`ww66%/lQ棨rnK"(xsz+"vjWq{ϼ6M`w]G&YcQ:ʘpmPPlDUDAU_T2jlH,Z wv82X8y!(uFU$Tקef CŞ[Vn3eUq Hit*2\l B-Q|(Ȏ>͙kEc+fȱ[AEhDДW_jh1|Z]gR$%|}ۗQU2hҪ'Ɯ  FD(*H#O o?엋7lPlr\BR}PXnR+NЃ]Q'p>J\qxwXz[v3l;̮wrdn~!$Jޓ!) "r^GV2aY߇j;]&u/֚IBOyuE5|'J#.#zLTUe>K7t-59Vdd[-i" Φڮ{N1eY&2On*kmmoW+H]gfU;];ßal>\3T'ֿm fSpbYl|5"[!E/;';.MN=\Z,7v+,+"M-;* ;͠Q5DӿK&"Qh"h&"h&"h&"h&"uL3r>ؠ~_7qPŕ]CeTQVVIGfvb6ox]WUtURR^y^~Y%qᴶ*úʡ@ɱekVEulP~* +\p >Loz}j3NJVEESO}^ u\Dg+#"/>m' xj5{?os-gc* `K5 x')XXx(1~-\QI^yYOK׫$~3?b.[\ۨL7E}b௏?T,ՔQ-v7[NGNAN=\oğcVffD()U؊'Ќ-ma[Q^"6=S m}qYqU xWI=!R_^e:ݱEÖeF;\CDđ |Qr'k99733Y̹{_G@)^Qԟ.7Qk?WSZz}=22r7]/MXVX仛"h&"h&"h&"h&"h&eX962 \ʭ؏*BHfE+Jf$5VĔu$V ڵ )\ Zֹo4^+ǩ\3KS}V>/>R>ݮ];t7ov̽{in{o- V\ex6v ҳkBWvrphpke4y9ǁ6ilhuڳmg~ںk쇔;n[}q;Sf5{COۍҸGU6Xk"ʻjo쵙og˓;vr|X1IY[eiLd0ʠRl;nyuHGp\lf;.ҝL'nݺwwwj,K2ikL3nk(tEʓ*;fyj)ojJ:,/0=Ͱ݊ܐ4mϸ?a8C9+iHQ̀m~Tқڷi0ݜ~vY pm왰m #N/%]'NDWZ gc[om\َ;o)wWn7 !MUMڜ.( fPݶ-%_a@r){GMܞș.) o{Qu쥂vt],ٻi=2 ]|*6!W+T̙`Lnc}mܾƝ{wE]Nvr򌺚o1# {{II&޾Tؓ{ ־epu#nnvٍe~gؿy]紮`S.٦ܖ޿Y]xNc.1asVs͛`,ziwM|81˲7W#2ݪ \Mg{#g*p$ghmy zE@ƈ?`(Co,_&6rn@,sj[ mmY&'üerg1&+d_PDDM4Dݨ8,k%M 1V%hch#I輍H%mfCWcq \Z֦R=r`MKZЙ}hQS",+jvzS63v$fFlQb܁$D>Rݜxz* ؎ B1ѣm@dEs [lvX~*`q*|IMq$K!J?/q\2U%h@fn0sI}=] J|\ͮe}DZ~T`DMuG+-33)-lkYNwcyt\e[5;s4i[K1u˵S#u ]wvIٶLm`+v ʮ(~1=#ɥNݼ"3 WߛyDtz<_־nlm滻[WS;{-8Mi1ϛiρ9aQ`,P-롾T5UZ?67g/d؅e=6Mv.ӔPw3lwh7}w+2 w%bGŤv Lvc%̻E==++skw=ƶg-ܸ`mͶ4曞x ZSK0qX8;;,vXۍڼW5vkdirKؚ۹G'Qi1^I`:"h&"hniSŖ=9.+j6DJp6czKnhMA/ :puTYM uMvݕuY.sIlDl܈*sZ}UU,AXl|m[K0kw~\X>e&Y #i)m [n /xCҽ]\ )k9h ƌi 36|^@}7]L2\+,rY'Q*Y]!,@/eL He Mĉn.N@bغf #G R H\ *}Aސ#ZjwնE+{Tnpk F˪ijLVyr .KY3m]yKWtT݃P~;U6$B h# kFDUTAO!FGPlMğ?e_Q@2(հ\{ " !Su᭲{1Mhn]+_-E.3,-Zeֲ6\~ʘ3v&xH[%GqaI6O@oњcv Dzy+k?u',c[HU1lILѦmIEPOD'qh*-hYf7mD~ 3'{MHz{$bFndd7( Gr3ri (s )| BDOfkmv2.3,ٶ}l&՘!`@^HzTTM|>xG&q;8,MZ*SD^Oԟ.7Qk?WSZz}=22r7]/MXVX]7*ko*I|܇nZ*_2,[i2plUOMx6vɅv\XA"I2bMŮaArd"9XOL$Y*'%4o%*DM4EnmYumd1lnNSu$JaAS&|gCLum AS.Sgr7a [υq_yn΂xn sig?c"h&"g[fSB|9Y= %_d,vdb$2hM@˳ZS@ko>]\L LÅ;iˏʕ$Ŷ"hmٶEfI?a1]pU{_ 5Uo̘̓8 ȸ /(}rh #"]J<=7%T vo)y`0Y q2)E;%ǫ'5Wc{OlW̲kid5i5d[VU{!⠬3;ٶ(^گ)Mcۼ>|,9ROp*yUK9UtE+NEEED>33pdZLJ?xjQk̏gh̏ghjʼ0|OW:"8g8z~zy>y㧞z=|x~-y,cMi mok&~Z*o²%C;df7ہld5_WkCiv1'ɕ܌ T9pFd&mG(4v"q bu*Wn[6+z;,{Q)͖{\w8n6Ǵrd,.;yNCĘ&`144^Ⱦ%oves,,c,Mɱ_lOcu`ZX|0|%? &o ΋L7[cL26ɋ;ok%ǚ`Mf0{fM!_nV;`8%5|[êg%Zَ]tK7'ZŘ_̈v:ݬN f79 kz`1 99Qemc\n m5}ur޵GM]DF.יd"'-lvvYX+?fߝJY;T1B^*h% vv6(-elmy&RHݔѳxw[v[_ѕnSqmWFT%;oE 2,aWu1`ae ]<66>|TeSx-uܯ [;jvs:'pp ƤvLd=9Z#Hn[e\Ex$=.Q0,,=nʚ{ܸ5[YvES[aU~3C]2JC#کQV[1]vԭX%'P ؆{^]@mowgQkLN%Uk]˭g p,Oo.m=^|܉ ƵLFb^y9`3xrÓ.?KvRR􇫘.1q p-Xcw;:[(;ڹb8E(y97Y,-W~͊+Nyոn'34\a ^K 뢋+ r\RٷG.޳{͋]5oΨi!nUX_淙DNnv1jWXv*IMA:J\BHvg 7f;o݈ѓck ˙n]g,FqUo ɦor=ۈN ^8;:'`1#K/ۻlr[첱t½|.WIeMzaW%qŸeY- cA޶愘i0FP͍ɬ \:aǵXr˻w"v7+ ǯBp"Zյ&8$KbMa)IFC86/[gU-/Y#ٝwn7c.)Mz9 kTWͳkk4ة{ *,6OO_;(%匣IJ򲸉1_bPyvSaY(y/aŤaˋ`}}ORBi Xi <}o]G,pooy* bⴹU}ܯ3b~qQ淸mŨZ+D6㼍\eE sµ #}h y (8v;zfѶᶠ5Z]٪"*RR//GO]|kw+)sh>zV_vg宗+,}AY7g0\%,qI']2ޱO[fFGESEA]6dhX8}ȔɯF;\\JnMXdrٻ,%̢/Y 3>j-QrABq )c#;Zw{wob1=Toc-g*\n+R$eۋQm֠VR}1:~[ ۯ 36Ρ$c\4kߏز7˘fd|Ç,) ;LE6K%@#񶄺>+ev+v,ir-)obkcsMZMۺqoRdTlڷ DwD2/2grlLO:H}}u^DȢaރE\%)&W UrI &w䭟,U$n)^F;T;ZZk 6kx$ͯb\ ].[mb`0֜g$ bƑ N|^=5m KnqUKrp꭪2xZJ3LÍ1ّn#*0em.lؿa-`9?mnۇj*OMQiSUI5{W8*>i8!xI!ƷZJrPxd7'jF#Xc,NsX梸Mon!`R7 eȻӓY5n71ګ^k^כXKW2{.nQMauōMe!n 0%?06}ZL}m_.EX6y+hme8)t,9ۇux>XM9 :̏9fy{OW.9eoNwQw/p뚅Ǵ:W2;ʳ;;6ܼY7ۊ"3]_cX7q$>پlM*?_wofR$nSiQ.:Q`ꫲ6d;_:l@6ѲA4\b`Ҏṇ@v'ݟ2h&"۝2o9mXtp %vAly ERPȩ>cIPFݐoN/ >cVDlsfbPEf!VaδFm9aqEEQ].=k-й!NRT9).V9 DLtDTO F!cWk#@ %̌ۢqT zEtE:mi:A[O_?'D[DDM4DDN9^W' > Zֹo4^+ǩ\3KS}V>.f[Q;3)x&DL&bsj|gz)Û}xLN \IUnC~d0;R%ŮpfmFQ&F5Dqf.v4zwc?N=@lPqn#ydvmLڷ6e50"WObdPRuZ=d]q]SIp1#K ؞klWo q*f+mj2\W^mt$eᒦB+}d7Ђ)\>6nL/gˊ-l2NDwr ؜<loeneu}[!\nL#Heq[e_leƾga5lE(Jȯdbخg@-iqe s !p*i6ʦ}]f j50h-V qk OT93Iu/!'wڥ[+mmqcܻ-äuk b܈0gA6B#wѧT,Oc]ݺϳۼk11G,i<C; U9 -$AiE#aR^^ crſ{&mT*4 ]++XLIgڻjJyrWWtuw'ST4[boqTSa[MRL}y&<㲁X4ҫJ-F3(SHOr'wt`k3*͗we@ 7'CO%3d1W]G+}\+c1*J#y@sY+Ҙwݎ/eqqmtY0MQܕg^HwL/ e/,Fad&O~Sهz}RM%շ Ͳ>W W;Lh>ɘlJd2 E((mE$'7hы5KlƤTTXԑj_OcV.I~\KKy >oͿ`Zk eT6+-8.`1B\~ z@NBWMp{/R 7 \Xbfn )&"9ae9KI0_ "%Z(ΕeMqY̿6qFuu w=*Epmɠ S$%LJWԇDkVTѼÕL\d/Ỹ$}ȩň:DRmfg=ݮ9p7[7>)HW+]WE Mu$:]C+4ci_i7+C;΃I笩|7%o.Q$NS"%-mvkJ]](mQRu#3϶ȼbJ"Ϡ%\J5zF#Ҕcf/* |_<Ųk߅`-֛m"w$lπUlxӡѭZ9WCG&o97޷tvbNa;3iO^;HJW(-%I=QS · MCrl^m M! W-b7/s*ÑqXݓJM]bݹ'Ȩf-ݯݨtEIBOyuE5|'J#.#zLTUe>KR*:ͰqyU yA.׊qs/k5Թ q{.:zM~]$LüZ}c5ښmOI]3{>1M~'W't;d$k5|_$E07d;:q ͍-[A.zUPW~MMQNïˆMkggENl\GKWVP#3/ebg{:$k5u}LüOLS_I]3{>(?hoߨ2I=Ιydw[Su}LüZjk&W~'07쎇޿S_ɕߢIt;e&?s]_$E07\;Z6N(7RB!|9%4%YK?k DM4D:HeI=ό}^â*ڇ]Ow:"oO;3~][(???ٟ"w_NߟDNߟDNߟDNߟDNߟDNߟD^Rԟ.7Qk?WSZz}=22r7]/MXVX䝪o,\~owq"O5TީC~0L3dWz3rVSMq)gfp< nfb{knϋ9tfa\O7Τ0H"!l OE0IcY_0IPt@1S=KJaЋmߖ^}gysJ,6Olnb5*Z/L e@ݔd5&D 6wʎ FAFFII# u:8 Z򩚓*= U1ԄOF7H3{$V>|D[xYZZ"*3ZaueKWUUSņkUʑ$we_tH* !zԾ#366XkSgĶ=k7޾6Kwz[, WrY_ Ns&qڟ9t˞uOEig%":7 S3 PEgv1׬iɁYXkz= YGR8zUF5uj8F[e*kdX˳w73V/-6<}u9rjfMp4\H4\YK+RBѐ51ψcڹMY{<79qbIvpnq{9sG^˳-Ⱦ/_j*rQR$b93fce_wGAgHRqi+t0--9TW=a庰( ۳K&ٜ^e噵vj;5y]?fk ]^ɲ[ު:Ai5ɤKSIWMFtl4%vS.{VdYH^Ry\~h@rI Mw* u˘uD iҰJRFY5yQVSCJ&*rb9!IbY d" %V꒾!Mb!#az\SsύZ, ̖\d -V8m!-DNQq։юn]dV۞QJc~lU݄-O Ju:H=>gT2,/ "-@=b x|dB7r7ݢ'r7ݢ'r7ݢ'r7ݢ'r7ݢ'r7ݢ(d \ptRR8 Zֹo4^+ǩ\3KS}V>.g[`ͱSTUCf]GQQUǐMPNzКK钆DUUFA=Q 6A[>N}3^M(/9M:BR԰jB 2<ٝlkK9lxΓkF2A&Y IU$R/)z.IY&@99]ͅ q³z?'Mj ۰ob &tݐ\ͤPǝtjpZ&=hk!<6v<_ +ci{?rWfaXB/EShP\OATTU}iwIb%obO[Y`q*ä(|E'" =3u3F2."䡤o1۩BOBHUɌEGUخ#m<>m[4BDfY'q}h%lJͰg1' r]} a#8Ơ`VLcnv޺lw6ΏJq kB N lY"41X/NO[t ]l.*k% -<53T0=<@s Cg 2^;3m᷆OPM2b\$E^y-8gU ډ*FU18.f/.ϵY 3;8:ceƙ}}*T9 44FV]!)$zYd%6psl.{ n6PYt9t8^$>ES_ Č_=͖UP,U߇;Y\dmAh` 6ZgΑ^p($#܄Un1!DQsYUQ\AMMb@?cWl#tE3 n!:W0LqxOE4E!> rAADɢ-%u2P[Q4s@Z 'ɢ-|?OGpGJGt=kNMz֞6"h&"h/'O]|kŒxЉk\7/COV_/Ӹvg宗+0uY\RlK]b+g{s1jVlZz֭cF݉2-)6DZs5tJ'jV )aU(< @F " 0cWNQuXlTZ| s]ʯq(%u^뵗Mv#51U71[ rRCQ5.tFJ'OQ141iXj6dcΦYj3j}Qes9\)yn}nG nƼ1Ix!RnQ& co񊚺=[EuM]c'ImĔX-4{1lLC:R-4}ufꊶYfQ<8z=݀H߲%[Wܞ{|bMAlhP+tNS~fBX H晎摫cLdV_W.󬩸]n&D yiBl/N->/ gaKlJ2Mi4eK7`ӓZa#h/L1hɠ4u%]uNST5IMC5U$(1㦚Y? $aY(Iu) 0}aݽnJ\IQ7xJoL-Ίd6,|ne7! ٗsIʃߢz)ȈJV(\\4-QՓk  p&n8kپ\q[øW{,vk &cgnN+Q2hkZDlr2 zƶ/N-*bqtlMA.9txYV=D4O,EN2AOSy1d<ݮv;ycwRy4?ᵹcm+ٲ+%̝dpq*X;[ʰ"E&a+}"(Rhr@";tu\Zmԯ>H 7,UZ~&<\.0̆%\4[^ɡRrEH6Jz,}Һ/MD.zi 5548o5T546Lz(ɸof-ڃ=K#KnC1&az"E/LSũw;+_/6 $5wT^.EigX-,JY:3agX*qr*hj5o!L5S4g qg`L_kurn[s%k;>AOK }#rxQ^n]5BdYtuƚ0GAtGqQz}\!_LAFAK>UG59c@8>Lˋf%!Q'>O?''[nv%%<7&?o6;qSQ 3 7u&Bϲ9BގGh47Gip֜  edPq2fU% AhDF-{D/anԒ7ģctuؔ\խI1-}s[˓ Gyɰ+"Kքd5Rr7`h歆h:Hf hLfy Tm`ţL#[̟ěid[fsj~]v u@L2,c-r5.I/%~EL6j op%5,$w-Z#H4Y_KL9)iX 2"jhd-刐ow]ķK.,P&lӃm@Ӕ^$=~(HNI ;W\&N:)B[+Fҿd:Q""/Jbi5ALls?woe e9)b8Ȅ AޣĂu* <2uNW!s;umǹ'$j)1{֋UN:~0g)[>QIl-fĤ;8 >4щnuFl$|KQ9hhG98 ;}2L+"Ni88e:A'E}\4Xv~?Oγ/DEQdۊB~rk|f*jEIm) 1_+q޳vmˬOO =kN,'[Q7QFiSxu8HF:s+n߇rQE15a xqŔxN=Qvm_n/b:>^H<;Q=. jKDNz^_-㽏+M#xdclm!!N^xUu(pVGSr=Efo1. #lUAU[$4<=B E]n57 eh"o^@υGa] iKʠiԑT ǫjQuAPR]kx~?uuU?׭rkuYzm?klUΗ0Ew-_W.|_~ ~5@g<ߥw|_~~N߱~P=Y:'~5@g<ߥw|_~~N߱~P=Y:'~5@g<ߥw|_~~N߱~P=Y:'~5@g<ߥhuU"[Oj})')O4D=>Қ"jT\@I *,Oj|]C?EYXۂ#<8s~MJ)Gԟ_O@}@4D~ɑ=?#ߥ"pҞR C?D~nL ,ܙ?P=OOH@ ߿DOocD^QI9Ek{!GXݨҫy|~?>rUbg଎SyN?5fV\?MK>gO~"|Ξ5/D==j_{?:{Կ ~t'AR?Oߦ~MK>gO~"|Ξ5/D==j_{?:{Կ ~t.v1;Kmq{ɗkzJ ӏɩNf_}~ŃS}rZ̭묭梌JR'I 7$5.tEѾw ^;c2)Y84,ӦmҼ?.s<ֺ.jL1m2z hq Qyp"UT@zy2O bE8mKeyc-oJJ*z" 4֨^Q"ƾk4nSq# :9QVW|moRTs@]K"Q[m\v lB056L2*3Q"s4b$i^jL6@&e+_p!"H͓_GċB+M4<-uO4.422UD%]HԼB->7U mHBAI Bd.p&txE5eyV͕usum PUQx$ETEOZ\"h&"h+pOt*$ϭ Ydx=*/tZwz+nx|k蛞Zwz&;?NǢnx|k蛞Zwz&;?NǢnx|k蛞Zwz&;?NǢnx|k蛞ڞıs׊rϓW=&Ci*Sǎcؽr_BkuK*,!Jc1#Idaɧ.8^lZ"4AWkk5$EXV/dr{1ZNk_e0; qn1:!((ϊ{xq#2~ .yUAGAEUzS_g芹FCEА:}ENE_EP/IUXG֞8ڢ*<#DU6]ɪ "/)Eˢ-8DUTDNWUSּMk&"h&"h/!=gE߮uft_Y}]Y2u_~~nnLgEߥߛ'Y}ewft_Y}]Y2u_~~nnLgEߥߛ'Y}ewft_Y}]Y2u_~~nnLgEߥߛ'Y}ewft_Y}]Y2u_~~nnLgEߥߛ'Y}ewft_Y}]Y2`#](dDx%RNSn3E~^Q&M͓l^K:ڟh&"h&"h&"h&"hincludes/wp-booster/wp-admin/images/plugins/standard-pack.jpg000064400000106320150211537140020334 0ustar00ExifII*Duckydhttp://ns.adobe.com/xap/1.0/ Adobed,     ! 1"UAQq2T5 aBR#3uVw9$6W8brS4%&f7(XCsdt'gHxcEFG) !1AQaq"2RSB3Tt6r#s4bc5C$dD%EU ?ԣ\gCCߦ~8-w韣 DCߦ~8-w韣 DC l ky1TTV/ՊaJaJaJaJaJSu$HX ˓%zO8=M;?~`3@Ӵs yMEuECm="=7nsUWEF)))))))))))))yJ0 x<s<=<{JaJCO;%DRo k=U_~10b>H+aJaJaJaJaJjL ìR؆2`Ẍ́`o[ܩ3 RRRRRNJdA$̈:u ~}0bƨ3I ̽R?L?l\XxؕXey Կ# CeSƓ}}{@"NĿ#pbEyŐ4D~FN+_foK1I#I LLlSlQUqߵ*:҄!Q<ڼ7!2Y-&45~OpVYӜ\hv\gκvL zb ?=E}.?$ v(qL@]IehòBh&r(収^-ċ_Vn¨ 5ʊC׈b3)bb@@y@q)+$evOy^@=&B <@@C0ͨf|"fciΣ;Ob>sEys}VÎ|=CiΣ{sE{lh . GDvaD$gB$6Y }Sm'IOSgy`U A!7\=X'P`4U)6:mҥRg5O}JVݝE2-4ܫːɑ5lf3,J GrJqk_aXQ{W?f]AK߯\a! ?/Æp>CE@O<{<?S_:L?:Cpy=D:>TΓ?Î{0mOQ;ΏM. /~ue! mםn}L>I3&o!FvsySvgR,Q#f[v)">9D^ǽ'{=Λ1|x3$w|ޓs=|zw1|x3$w|ޓs=|z}&/?Fw~{pAѼgϏOߤ?o׏zN:7;tޒ? IF9>=>g~w;Gw^=8~ g3gǧ bgzH7ǽ'{L_:#/|gu^}8~ g3gǯG`3s1|x?7<#>ekoG7g9ceSw}"UtOnOzfz|OýS~T^ L/A9σ)w}#/u/k?]=~%>g9ce?OeSnEx'7k3Ľ> ̧ީy*~Hݯta;>?OѺݮ?312z27]"vޙ^s?STF_?F_ׂv{0K|s~Ht⇡48Liv ꆢZ-e땷Dh~G4td$t5DSXK=+\ 2Hd 7E8ڛQwct K( $X-KP=+כsI)!A90QtQ&vY2)H@Cf -})07'usX( z2xBi^ 4c_s…0gX5&˧1Mg bĮަ}nq"-KnXxUeŚ >1Ic0IVA)0.RXnY),wmDJPT;*mS'wk򪧓Ż_^Jy<[e[Ż_^Jy<[e[Ż_^Jy<[e[Ż_^Jy<[e[Ż_^Jy<[e[Ż_^Jy<[e[Ż_^Jy<[e[Ż_^Jy<[e[Ż_)Re@9q$JXtAEɒ|q*knz8RAßF|u}=X{gP?iu!:y%`jqJ ˘:Kco7z/40 Ӻ7fiM*zQ :֤2CiDԙi5G-P4PHhM QԈH { E'ϗ8Z 7f'uXs 6$$@()n.ۊJ=D] Q8re6S ;t p",N}V*JWPEBidI59Hw%1  CC0cl\9\1#PީgM7I%v`0lL’Ș(PQG#T1[ ]~?03/aJf_•kI2@cs j Z/I=_D4ejNí5fN^qMObfaɰ:y(#SDZ0R&VR7;,hc;.i6ک,6hSEM1ԆUNV<$TfYb<0 \rA6HM\T8%}aSIb"a6 J^?pxJr[Zd%ۅwwl. heG掤< нy,qHqb(pox=3؊͢F'tJ72J8ofԇxGUWh{ƆK@9U#,n痛H ǹ\K\hkE1!U1JjKvhKCui+ (xyR5Td_uOqz%j-ʶ-}'lƸ-TVi?JH~ =2I$!kVZNoAi$`E (Z65D骈̻ƀT1gGEg ;7%L[ɽ?[yBmE,$\'eiΏjS:GKk}'Q"*kYI:H!!j(.bm\: \8EZA+± %j9b9c8^GM6@׸((Fk!ғ|by<(v ky&ȿX2r"EH{I0+Xt18v3Lki^291~ XpIR37eGc3^1ň4(k״tZip rNi&,DYn wS71}{Z r\m ւM3L{^wHQ!MgKD:mі4[A 5!Y!P9%MP8D.}Asnccw+8h= !^Ew/!ZNHk QWfW0$\" ,ǐtp13ܖơe#P$5l$]!t~e4n>t ]?.Bu-@WmrmQ_NLl.#ܑ䌔<{-ŽLp@11J#{XY74MsD59.@ [TFsYi' kz H(6Brp .眼bV㐈jۗ.S3,E.P*

    :?Lf9#<3OSAk 3k0C6;"F3MVEvCfPM fLGl\rb/zv\,|7DTږJ21gp; .Un1+6Rp'>Dr~oޟpخ{gP?iu!:`۔E3J@>7ξ` : DP@/G,y [)iK!BX>tj'ܛ9~W㮩gfN8adţe&٤0*H" ( QBXW5aI Y/&Q}:)&s&;J#Z '1^#-ʰp7Bj]UCcCLG9c)!9䆹#P ;%yO ѱ q=@QnʿQV )-)?smreMNӏ"a~EJxϒg-bL>SczFgo늅vy~uD$Wq:I9jok ЈL怀>SR03715 }] }|7q2#K@ ' wdcyrF5@jBFZPJM0l۩fCsPj1/iBQiS+ygD$1'! QcJff"4F6^% *B=&Q a>0QIMȈG!zr[#)]RR:_ufY ]31J.NQsrـD@3K{EF.e49_ٽmeKWo&˽-s CEDs~B+/> e<;d]zNLtd,d5>={I- *|GHml;^vr춲^<ܫJ{<'?G5Rj&۷]Eu"bDHDr-W\:sw?/xK]mg-t354*jbY!sƔ JSKs[PĚKf$[Sص] :uW4(sA\%b5ZD2k3=Y&@`Yl*u E4t!Ĵ8 o %S\߭MƱB߭Óq?(S|8rn4G s7~WMƜH[ |QUQoWJ0 yr BvǷG=%%MiG f9+6%x,,xT0m(rf@:Ӆ*W]Bu.hP˧3[|#eu 0m e9E(ƤZ 6jPP쳓A&֣Pk*F,'$TMfO,roSM7:G1PZJfX)7w5-;WHk_4$-hyo" ypÒEXQPu`KvM֛z@{Z&[7=7s8N xTB0BUW;WQc vR@T^µI%,EO "nuu\ i[rrɶ#h D#[ZIӬ>bG)9LbM^EzRj.J9D:*D ߶`i򂫖NuS#ÂT袱s; g yTBW1ț9jf'+xӗAvw Ƴ$n9t?5Mʩ%Pc1YN!۵TsZ6~~],$b&.Ri2t\${igi~U샢lsHuU쐦0 |l2R147=54*Es]CY$pls1 h.r#A(*MU1bve13ѭfnαLnC 992`(bU@j+QԬЊ7sua*heLjv7d0gC35M!H9lG1v?8#2NnV$qRm3Rv2TTx{3*%бyĄÇrQshLҴf΢v"Cc糑3-O)( #fj'GNk@d[%8kYv/6j{򲵡nj UqCWƅ"Kt.AP*Ϙ>L(Az9L>TH8 b;yvPe2gs\-k\Zv#ݕ|ftܾe5C.״湱09l -MDf94|r;0 MԭX9S2Y!#AZjЫ &&mwjj#˰Las.;Wj&[^7$X,LEZ, q՚##HʭjcNnȤUA$e dUR6GUhk4pqxL`TU0U̅.؀\eiӂTEC_X.vخ Zz(K۪Yo3j-۬=Җ:LY eWq-sɝ2Aݔ=pVA.6Z-RȈy"3) B!UV_oZ9Y]jp)v . tV PB.(,Z*IS yHDHGoq,zjb;I:D3zS0cET6ܵK<4!E."7JT**ݫvmYfKH'͈I LS("}C28UmCvVWMc4mF9@W5c͈FɣV|"b WS.Dyy1fN2".1-S ȏc`*ZI MSQU Ty?•wO/G߳ƭwW߈W5:OvHz8<}__+ןz lWs Zͣe%޸MC)(P1g }V9m%M,.s'biBl嶺gc1Ha4bCa#n8-1FӧfB˭ѣWCԫXgű3:rG= E'5XL!5kG4J i5et=ͅ# 0ZBڌ`Jh?IJA+e5ѩޝ6ȱQ!}V RbO&7k ̺$z+c$Hdhƻ\CZi% Bp/|7i @Ai.9F׷ RZ+;  vQA\kNat C Г6#mV/ Éؐa54M ٖ\Qpa1Ҏᗽ1݅ʦuExPwDK\P+V ӥکkdPQi)d,7pv˦bcX&ӇP <6=Gah%*]Hi3!#I  ih; RD?d~3=eD ֿ2>b/+_5 Dݘ2!"T‡\sǓwQ?A_&0&r=% _/p|[ S˧-Xׇp#we=GEq ^m_ fQKu%_א\]!6epx?eyx$:h cc@RE~d͆pւp .(J *I:U \ISsGNB"r1Ϟfϭ(g٥lo{ccuÔԗ1#1VyQA}ӻ }!zjicSI5u!%Zb)y`3.TEE0n6tt""1vM13A͑@kh&9Uc11 sIahsmuA]Ͽ n[6@MdBW˨  ˗[ˌJ̨-Bfx5t&nItN=Ԓ84I&%mlyy:M/JU{a+Tfw֧V#IZ06#vʶ_b~wŭ/,K>n>|Z}y~jCi 6>J9drJXJGH 1-/lɗ(M.m*VE3bZ[+VVǰ1N,6CM3vֈj$@>rh֒qHpfV7A4Wrs'/\yeigSzT2Dc-GbUh l%-X{+p%8uRL?vY3ZgLL [L#kCr  yl&z6Mw ZMG5jP+tS Qv :l+H9g=ʿ#'#BMT#f'v69.$wTŬaJ}'Rӟ~u_c_~#g]\?֛_/_`]̋4;rȶff Iι9193@{CH|oH"νݩDZh(z^PMZ-Aiԙ*P7$|:dmyhmUh8c8Jt,: AJkN_7֠JU`)vOVo&v6H+˴ܘX_^ .f7!{.LLJ^V߈ &X^LE9.> Y!# MRSxԐu&2u&(q0lnD;kdR%R=SEd"~_{a'CE(W %*6O/2&qv v qli7R O |HPX_x_֭>.a'J<F hvHBqRbNEY6;Ap$Hsm.~79asZs iBP,I)Fe4ZMpRXH$F P U}h|3}'b#X|'x`_< AvE4Ͳ:D(D1^-'EKmhaMRVl$nܹUyJ""9go1ẽ'y&b'XGN"S]ʛKj0>ʪml]ohKs:-.h&}jy˴1Z1VvtV@ݮnDJQ*,VsKG)@aIeN XLQ4$AȃY-.Ȃ8yGL-U0-ۥgu aUUQLS;Tpd!& <\Ø=_i- [}hr͗p18(&Pn7BsfC3e'!LQ)#9qEM11z?]4-eP<ߩל>XR}8+w^ԕ6n:P0#n|4O&>l`8hmhu=a # ]aNjIei2]LmY}ݼTmV~Zexr:nɭjBVN}|)ZtoiϿg?Z:S3.kctMZrFjw/d`LJ+ * C9.ChѤ-Kԣk90sV4ƿ1=56֪.),hni:ؒm|j>v{dj.I`id;4v"Cbp؄ڀMuvRd#,3Ä&v]I^iZr&bkSp+҃cn0I7L!WGP R"a $֦,c.#~g!#xS{.xs W"M\{?^e9suI(l)m?XX+2An@,PK +Ip ԳђcSs(%z5RY%x~VomK?mOe!+gZ$Zi DӶR6RRCr!(/Pڕp+,#TMB=E_"Y0*.UJXHS9vRf 8#cn+T؈T dF]r UBNE]%*GF9|G/'\-ʥǿP6PQ@P#]dۘӕ7+ݛ ǐ1SC\pJ* 7U/.k `, w.zO;v^z뿇Q+s3dN5& CC @CaVVXr ֱ.sNCUP@.\Db(4vd X\Di:  AT(x`ycB7#/,P!T25]0I>N}|)ZtoiϿg?Z:S3.kctMZPS&s-lvK(XxP:b)6Ch{ybzqb/RFYIKހ&p8k SX׫j4R74Xo6EK=M8bS\s,sQF xhRMe;5deޔ]k6INmkbY[8$鮕i1NKX˔l":ࣣ ؽ].vrnHCͳ hpA6.!@Nm9s-.lM;1$8dr@.sB%(1J X^5ٔtw[p+,$,^sE9YԈT^nwɠ일QjλlR;) `s:Q{\sڭ KҚs9qj2I,`ms8EhǣMChNݥאmDMFjZu/ 93vfufZvzlᑬPֆN F * 6e]vs+I=9EQ Z0P43OP( .]NaDNX]>#8g[:[z*WQ"u@tT8f2%KcTuۗZl\ԙx ss\z.npp@N4>)tkG@So5,RH5pEQcmd2lvCkƊ6:W6&'iVW#XxQIPx0;c:&yxӗ[kle{3I*M)T5-2]ZW=fZj8S밐7c(уiē;\ gPI5O{ pH5FKenh,(G1տՎ+)$x8c|@μD|7R!xT~O[XY]aUjV( A5' \ R,U9W#6aTq Dh&Mev##dx-|Ti2Qc4C[D0r@gTkq: rJ֎8[ۃ$'9"w3\ i}{FE/`e5ôRwgIi] ڕs;_cq*1ߐI(kZAW6 _zjY.sp!^A}zEt.- JԬβӢtZ_ \Ś/K7>e"&b옇1L:ͫ)*Oaso?o?>4r&^L@e.@SW2pGѾO[ϯ5<9xbc$ė$T5\1"6י?5t\Dh\C@kqJX/o^:df3vHI=eKBǹ--+gFȰr)v #aQ{d#mky,.&h6ﮥv>Ƕ qņ{k:% b:$lf5Xm}^͑l͗c_n-@Yݤ`Rehڋ4ٞ@1Z}\v\w&ͪdۗi%.S \{uNh5/g[I;JS jyn_MI$ !,EX}G<+-\6[@ Q;7͗+#2̎?~#!hmTPZꎪP8\5V*w |ʽW;txYNXY$u( C&FnF%{&˘gVI^bs QC/)PVhQaz VM~N5P(pIʲAGlb.?1f׬RRp'>Dv:%<pV`SU&ޙ5J˖\>v71*_-> E꫑^kJ(+g⫬.4sϚc4oߚZ6yп|uBmFWB8`%t׈C.(QN@*4Y*gp*J}\م?{c0WRRRRRRR\Kl) U)@O104fPli620n}gnUmʋ&Lrdll"UX\8\B kSC,DZ-7MO ;":Ii1:\Gz Q:U4PC#F6<o+̛[ d2#t]uIFѹ& vOo9QvF4kg S+HEaMrLA)#d=X vq[-/Fev ͬqp[P1IbD\p X 7 윦0 .aiG (Zp C}ZiT*AE :~"R¸ vK6^x^犵~ώ\h-Ri(t=5m%$.` T1*T#+8ߙ` v7!)E\BY Fn m@l6W\NpRI!Xђ$INa%QvzȚyd,>&1X,֨$HPedG4p'9I-UM*+*1Wfm+0 fQpc j DHzD1m-$ḑjJ#qdcӼb[*º_lfzGBuJB$WziCJpeM5 ,A(It9JA-'GޛqP6%Ds}BS%J "dXZDz@GD b)Fu$ NҖڢ] ૈz:&z3]+K*RU8 5(E`QcvTs/S+uvB}}銉GJM}RY:#|&ɒ$U6H`lk{XU n/r Wbپڊo?ѬS2pp雇'Tc1,PI7 U797 J'`nI*aFU9yA0!Bb~i&P+cJƘi2=SOho]".4X$jH6ECوxC7(笆8.7CW'UT•'9O%k6ӇwKh?͚H/qդf>*q (cDmuE5꽨Tъ"x;*bܠ*glQq4;-8#|4iL-X RͨG#cp boF2ڄd.yUŬO:.貭`L',rYΊńaNzEʃfFrs4cxav'fУЄ5Xҝ?ɴZH[ܡoz}:R M*bɜ&cTO IBNC(@1﫻m]ß(\8#^,PFm^oWu a3W|zn_M^oWu a3W|zzöM ҍ =]?fOXv7}zQ֑_~ ]7/&ZOJ7+:0w`+==a_ߋ^ttqMZ®jc Ii%oqU;FB.-n(sc-6C(F$kYN6Zhs\p 8`z Mg3 7WG4.kCQ؅ }qna?d^ 6 S S S S S S WRLg# WHBvJR"=QG??17)kO/”ܥ># WJRE(: )\JaJ}'RAzÏbwU@}֗3XWw FəGu:K"*! *(DeY͔4M4d[@\vS.2.C9̅KB²L/H7\} ƹ{%IX&B-W",R8˟y4Vn_$uW70^ev\qcbsUAĀ X P{}7534p Db 帻&ңdeAQE1>(@A2mQ10z?hIC/Z]d)@]UV8/z=a:Kț'#!\z:='W2v>Y~&<&p^⧭㯰8|NO`=.kkWc\{ Ꟃ_zi,d`k }ko5Itj23v`kWdIK -08I2\#"ӝ#hFy^X&tfs5H"U%uTC_#\x< S S S S S S T;dRu9<)V bݑkʫ[-Jc5zk(fU"L1M~`fd%$dVpRB$ jpԲ/' w9X"z8)Š (UKAFl1 -ô04-W=Z @9%Ld o>f̼S&/H&]d;TG]/Jz0¾VËZ%t2frEUWj*"#rflU˪JSe:eٗ3=ϑ^P ^!2Nʷ*!hƲ61[TnəP9Q1Lw ɬ[7)![$ds2!L<\^leۊgf f]qBPsOQ&kP\Z~WO-x\~ֆ nٲ_Ta9h/*up &Z^_^`В1(-P[5UvjLb6Z@BHV͕MFQ~qe\aJ:򍚻GrYEf̉|0@n2ssu(W8i$-^{k-Z-KHحiʔcCWjYY[aM8OHAv Afs T7 Js@{41$$kDl/v'<[””””””””•'9O%k6ӇwKh?͚H/qդf>+/H=Bm6[(&t"TJf]7]2 \4)ŋgG9И$Zv'D/umpXfS8}").) aYmJI8 KExԲ>KfMфOA3. 1"J=94鎎fsV2Jp:XkJ1k#bl2]<>eYO^lScߗtn,D ph@\&@mґoZ7S3OJ`Jƍ.[ԆMQDo4Wjgi\e0(א @-kZ%(hpqӉ*celCcclGFkZFF+\[#.rkO[:4izeRj\<>[ΌZ}$j1٤vѐ"d+KxrU#k/ykd]cq0s\Hm ,`WHW \ighpδ +^s&޼S,7 kg0|ɜRhDp-a8s3iϏ ZkP8%Wvt 9C?fcP!9N&k·2 2F Fi6NG-l?dK`y?\8D \i\sBbLՊ:&x>iHSݯʆ2Ғ6Z795|۾=-Wt"Jie-=RNI;yw+q5N:3] $݅-(Ħk?I҆vhāsZ8p pUͩ@͋߼zSǬeJ[-3I;)HΒncN 1aX ]B)l"˚Qw8l5zRRRRRRRRRp'>Dr~oޟpخ{gP?iu!:b"# UI*ENŊi]H@DDy\kVsR?|+3bO5\o1Þ:hQg\AءWd,UuӔ`Aj <9C`>9IG_h(mal  hrV:+0ճfd'ۡfȵv D[":9yzN,/$Վ 8Go]l5ԝ8D83  Lg&L+pI )  r W8MITaETU*]nYFZ$U:4Ȏe\*@vlyf3'q*y͈^ [y*oT) ]Shi2xTSv@{PS`nͲ#l.=fx}Vf#8\iԏZ`>q?y/73q@༶{aL}ډ !瀈! Vn[ qSޮ x /7a#~ջ;Xn[.E>;XAh͸S7(Bi)O(p”i)O(p”i)O(p”i)_&ӔJhIz)È•OxT70q@`&u|v0<|3\nP1ˏQM} ,@9zC\.3ɏiO9ڡ+Ȁ@MnیQM3@%09cG{g S$y\?pDä:m[ |ۘKp,ABBi8MаtPC^bT-` |Cw vK3 F&Qtɺ Jr]ҬJIܵ%cbQ!ʠmYf@E( FBasː$4`es$ZP2Xkl(mVY=t啛 ako!ps \B?P&K9w!yY7|pBۖVPΗK汪T!,hxvkq__xŊ06B,/6$cߍIF7!$~:UZV18k֨ HUę(Tv,]h+v@G< F9GNq8i- H!.&s%Kb=P0(!@6a7kxYgѶf[OFjq ]]uo\yEYGTMVt21MwD7NI P8 Fe`:275c .B V$7X)܂@a+XEƺsLTH|!_0 UR-Z؟jITUO l ^! #ۉ&v^Mx0caɜƣCmm ¸V!1*1lŤ{?rZDle&) B9d8/{#aB $k5{ĠʵA:E -3Rѯk1;cT^$܇k:fc(w8l狘P Oq=jOH+@"i+%j3MUz*(Dw2uRldeE0wǘbj&An67*s?$swzT>% Vjt`bKy/HF,cT PaM@mwxwUqA(FRV]Xu{q*s'5!fb'9T4p~g\.pq~o÷vڨ U]]˳~ʅݴ{[fV ]J[M-T)tyZQle[K]cmA|'M-C0G[I /#.K^A$̤ʪD$w)Nl9q+192 ! b r#;RHzwl;}O<_^<_^q ”~3xRO/x/ S_|e8Jy?g)O'}<)/2g<_^q ”~3xRO/x/ S_|e8Jy?g)O'}<)/2g<_^q •E6-a uov4DJb{^ms ];A pO4]51P+/9o>WGKh?͚H/qդV>+f&!F2Lsb lsyX4IDz]cDmWL^_.Vpڀ!5{I-UT]j֘J9f73Qj7OՠV63G=dBhx(nE^vmfYvFsA*;mp@I#Hr_'`}!A-Q96M#elZ+O-^B O^\QT;A'J^IQ#[krRʧMUrDn8ABVIg}KHQQ 2a|W8½M(²DWIL+E2zVl4 $%:fN,4($sxc1)LLplE_GRyGjCo>}oݏ֯1㪽hVr̄lilixcwm̢/P 5S TZJƽyA;HrzUjp ͖"w&Al>ޭ sA]Kưz]]#Vd) ̫+VnPK]Nf.Yƛx298ƨOm"9]p bOYO[]Q"ZcԢmV[H+֫NJjyg.߮; *uUT5pN܈9 $𱤫6Zm' m$Ik v,@ƙeӸ:rڪ]DZhibȨ"-ׅZL1cނf1F3Ke*Kv"D\!jt;z 8g֢Uh:[ӨV@^8tVNE`nR=N 2Yȝ(đE+ZZA.K.NtXK,Z! }Q~?鶨Ko}/W-wH;R[,sekf{ h 澌q#\.DLhfRu3K}.hzRN [I9WeS?z[0^L<#)WeSJxn8R?z[0^L<#)WeSJxn8R?z[0^L<#)WeSJxn8R?z[0^L<#)WeSJxn8R?z[0^L<#*0cUu&VRZ*ϪTD\JYĹw(a#۳d شDnd RE=)|)OcJ{ SR”>=)|)OcJ{ SR”>=+zO}WaJ{l'{7'(7+Dcvincludes/wp-booster/wp-admin/images/plugins/tagdiv-realestate.jpg000064400000122305150211537140021226 0ustar00JFIFDuckydhttp://ns.adobe.com/xap/1.0/ CC,   V  !"1AQ2Rq#3SUar $5T%Bs6DbuE U "!12ABQRq#Sabr$34TDsCUct%5 ?tkGL !oÆ}!':A\>OZBr| ?HCO'iu-!>|Ť!':A\>OZBr| ?HCO'i;HE}! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !zD6rzHJA&#~C. ""pHa2 ~AS^QODa0/(yh ?4-|0o~7i Z'M!yCDa0/(yh ?4-gpz!qz@}x"胰?x5N|bKN uINn'=RDZWLJxa~S75 ]IcK%0IY Sbt_F"${3]R3TL3sQ)c[JR4yH̓vC33Ty2F\yo pˆQe/ŻmWฎn utr1I')$&dSy*초(sbE9_"+`>=8i^{ĝ &!`tPK<?W2(*ڒ_,}īB +LJ@ UV//GǏնדbUU䪱Lrn" !}׈ [‘-a8(qc}@}~A#F1,PgJAlj!ѪS6{Ld0hA%O?ōSwB_QdxnDDb1qWIe>7\bY@)7m]Mb%Ŀqo ;˒]Q"%GŋM'∋^gxx?pOYw[r삘lD('V]^:RI!LJO<}g bL_L`m,V6^!: |5ZIԃ7!ʸY%P#(Jt/톙#)=GyydH"=]\fi MT0J-ӏw >3SO\tKrMiiiiiii$+ݭZ +$Q.7l؏r-.o-&J34]k <3"(T/ 7k:{̲^F yc 0&fa:T%!/,,5b5,i'Na{ZO,2Ab3owK)0$av̠Wp~ oOqy_G![ujdž%xhU,J2%{.vrAɪl}'G)^e)|m[}_[R[?]*,Бw߫cWȻe9iq.e"=lq3D Lb r1u5,Xy약2$-0QCW:r|rTLfל{x)5g.Y,5\x."D,U c0j嚔´2(VAHZQtPkrzEf_v"K PSG|-E>ϑB?)`7Gxk`Z-mhY!tp-6 d}oPf5+4Ⴘ%x8}q;E|}7}wgۯ=G]7|~4(8vx\XU2<FgOQy ?<|C!L s6) BQCHBc8DV[hTLٷUn"܁@\H$(@Df<% cZ>=*p[Fą/3u۔B7p>f~eEIE:~cRNX',P%q^"x>ӹeyŤ-+zKXfx/>x2m_|cU\8_N1g~ x Q2޿X2@#tc<@98@DL /,Ȓ45.Q3sO!6 LH@B2UD|ռjoߜ8ŵ1V9@I8y&ٹUŰ̎"R&fM:lC-ZW}Nƥ6Q伛&r另8cVvbёeM tW˚P=hM"xlƙW"e'z, @$[sj6x9@$:J8(GPv?LF9KP)ɚ1N}řĊbMK-$lˌWӥ%v'r@qy Y~M4)|xTnkX9 <!^pk&7z8_}}UBy}{c10pZ}PPRQI^3{:Í 880WFx}kRF\o0ښ=BBBBBBB#24 "xG|5 p[w$xd՜{-g8 ҫjxvULMFNCt&{5?YEtKReXli^c.e0+Zr㕼ESR 3b(Xx9eqNk]ގ nVfRU"bBs8%E/M "HlR.$W&T Ȣ`2+'Dg F4L)q)Rۨ5ibVe֓IyC~ͩ8%,bLىkfUDq4TMM5 y)G 3B$&Il\8|%Ŋ 9ijܔx7ˊt"j;:;;o4?eNM̌XaQOW3E`WqLXإK,> P`]|4D^ @yOP=nhSF4},TK%v#!^勩9*f$8!CWc`fHqr *L[ЏZ32QH>MFe]58$HwiYAY)%ۿ#䃌^LaBqHekϛOJ*5 Lnq͘#xlc(&&*4UcV} y>Eʨ %;h(UoK7ӾD_8Ƴ7l6S*]]7xW@@x7BXNw3&,TX=%"\5*.jHt \kvi6IpS&~B%2c j;= >S=3+r܎ZlֳĆ[hNcm^)3py *4U5f0W$C*L^9.%(VAɶy%L<(&o9ƜΛwl9pk\wjs5EB@U,%XuxFJ;ǘ9d' lZ, Ns 1RK=-2匍&AzYq L1W-'7=Jiޛi`^'0Yԁް  8ёww$F2%jQ5}$Bأ)'?%p'* vkzvښu_%5J:`-Lm#3&kmx1J2yHafv !++."cD:9 "*~T sbK1;U+tѪT }-nL;%;eF:Fshg_!.-n*a":tTN-6F֮'AcMgiD:Kht2MÆ;)ǝPNV!Bf ri,mfm2AkW@Aآ倅"(Z(ǑMKĎc|8`@ρ.-PR/V} uOd|-("wOrA20k%pTUKhwHx~pI{~ ЊBBBBBBB!ZSGs_|TIGۿhrҬt [ %>n^PL>r j-4̦Y4HD0.2t~_2v@ccG۪ʽ*\`miq/I1vb]1nϷwCYmkV~1iGCА`PɌ!#)L+ "WUdͮmR t=Y]VsHT^mfDXPrфg[sn~%aN党:Xٰ#@/{:fRnt')uQJi[f:rNt~v]le$]= _dKæ4dVlٳ:^vQ{|{0n)_%DQc‘ݛhIK+c$> R{Arwdӳwwx [cCB[(kʼogO" -]J$ٓQa#Ιi@O_jrMΡRҹ/S.:Ǫ,NRA&cpQ9I+ O.vC;~CگND8k6orh"Qz[WrMYm)7;Rfh&NL9귓2eQWU)%RZ SN.CA}R4W! DͧJ*L"`$+D\x]8GEj>﨔zCg I'"__W{p5nc^x$HU-̑X81, 1ys zFYg˚#.YF=7^l 2ԻŽkѷ ޱ>ZB8## "b``^i5bJ7l]&<$UHrJĕv+XI"q6TCV,WH5| J+ .XTED$@dbywe b=I7x;?:U##SxW>ہ *u6]xicr41,qpcS8Jܜyܫ2rob8Qr(KIC@֫/ev²EeJa3*6)ASb1Ą742 tY"0\pYV<$NZؒSgyI5ӹXLӻ1ڱĽJHDxªnc/]KAc/1Ͷ$^Ô_pkmG%_fU!T- 1@]t{bpnLb)/0oth~RVVa xl&D 'ջF:i^ˌD[פIW4y3 &ʪy=(Zr]Uyʬs*mE06.LM .+2z"QU,="<"9Ii5DrA4y 7EG8pgiZ͸ 5Ȗ̓ngT܍(,6l7m@1QVlNPPS 2 ŬS"=VqDEԖ#IVSn]#TwR9)(,dC:GUj=@9.)$}ux "+ _O i.s^L<ݪٵVm(c4tΘTαqTM -#M@5f]ejV}mfYj;밚~ i6.*jzrnL*H=&I0pE.LTp鈾{{Cv *rn!,c ȯ-`+t[% X1-TFHӉ&)5bksY=֓q3ꗈ(tm[G,_OpQ+}(yYe=SpvS#'W$ۍ34J?'crpod%#Hw,>R5#45V.;!yیkn1"Bľ1#02b7 D XT{D%e~'^Gk[,9JO+$E+R[p]E)iQu^,0띴`*,ɇrR9qVLI"PXTQ%1xV*2*WDuk^DLs^h:\#g~pNZBH4X<.߳,|;$Y16f+3"W@ KQ$]DM5p~䃬ͼ*ĩO42b"M!ӝ 4]12̜F<Գ8B011GFzZSX{=Rd0d C8Ax"aP3"[;v TuZuL*%e00oE/(5E'iA+TAMB`s=us Dɺ~̞M͎2$t/bq ݅մEp^H\VM5x. Li!8b 2i iKQP /9˳~خ<Th_"KK~ݵ R*5F9R35q̣+V(e[Ih]vRN1EZ?y.J\1@*נU\Z8|832I5{d`Cl`cUHsV-Y[$v"H@ P(P@J!耗]k(r eDC<LJkܸ~qM%i)!È8>3E#$MIOTT ĭ.P`jѧVԦ5aڸEf%X,g:"5jUohDJ]m^fFMØl$~3-+&c(N ˙CJ+6Ⱥ Pi- KD(=e.YQu\F!+"Af*]HBXx[0[woQD;2%'/ɲJ$,Z[y1.M0톌^isfBb%}Wyrh<(BbQsW{5r%^cX`{dSs/4AxglmZb!fYLtQ`S2Ov$[C1[ Ss29ݜg@io dQnx%őCT2RC`6-dFK },sz-XfF?d3(5k!4N. UJ CLOf!hɱiV;Yl SQ§}kPHNt[c_iQԪ*m"+tߏT`ࣿI.-9$ ?SbGv@Z0L{٦ȞB}X qkRHBuR"QdgY"!QJ@݆=T$VD»8o8¹$B*7+Q̸lgƐ?ֹFaR@ZܑPqp%jNB@IUc[ rKSj: Iۦ02E4KZV LԦ*$/՜rXY+*ddD8堆D+}1qbߞJ$ _57]5YFM 2d$/0ܥ[ԡrUDTU8bHywe(oU!#[)G׌Sux4Գ#ɱdN%$`tjn &grQ2:SUcu6ܓpPMOOݑYS*OVw T%/&?=M0nGv֚%{#,h688sEt*fPD_4ysk%$ܔܛMro(2ZEuxc+>Kش"NJ"2h(r[f͗{.h &0V%nI麭]5TĽ5ޛy!$Ϩ2j :tBwı](Ŧ9x{XTd[$ؕP1>vUp'"zQ?Y44JOխcl)ʨbbbw1̽ZfLZE啌з"v]4L ҤJ"Hdz8^1{l>tWf)Lw*PQgDfvW!F\ܣnd"V@UBĉF"eږzFCe3Q!zؒ cS0ٱĊSK{l14ѣ#Re[xjPEB,*$2NYg!ŷDL0CɭY4e 6 ʒV2|x[r7\,!a&;ں @pCFZ{hmVʛv9lЎkCeNߠҪL P)x%aD .&H@$Efl*U2Ós9IS3%P DYGz;( qr"z[|ͻye87NG*uV9󄀐Os17=dDSH5hlTs֪35~MP<GSX(p1Oo0ښWHCHCHCHCHCHCHD>{J}.kx~vm[6?X%E}" P(V"22Kz;IYdSBLj*$wS\jPiӭD 7dWTF>rdz a" D.&9ldӀC.E.JX:$G! LW9j߷dqEEXܡ&k-f$-RiCuT#-E/ }R30(@OEhRԝ^!3HA/X͹.Y',WĿ WnY_mpqN(6Cl@e m5XO̢jҶT;xC d66Uʜ:a]N`hyn^ T&"d dՏ$[2z,Թ)&D=HEcgfr._ŷmncړiu-煥1+UGJ tʪ¤yeY`j6+g*=' Ts'I_ Є(_kLzԘ+;6r|@r=vԧ(!xpP[ikэ!È8q(Gx5liQXQzJ9"Hަ0!c6W5vʭ 6BM kFVۮbD|'lقs&h++-9\ ]9x{!@ų?N*5uJ$d$1݈[N K,exjdOpDӻ^O-Ks5fL: ߙ^uufRRfiUYWٹ4袼0f'@kXiHs) 8Кp ".I,VW|m _)ZEGLNWny^B"4Td t|Yb3p9ii uRYLRla3q0pSx"Cjyyj)8n 3xoSIfHWáGܑ|g_Ql,,`_HPUե3y{푚NHf(v׽ Tz?/DO>]ΆQbD*-c).h*x~gO^*B~EM'-+"n9}'R4NRb>@TAo޺]9',%ft1R >A8ӔsYT"a2b\_0m+ }RÈI2+aDMEB9{'hE/e=:y2aʼ Qclh3i7MaA L1Jmbgeb\elm,ՇfN94ȵ/*6Yt. kU9DfCǯ\8nΛf׽i^# 4EF\7YdDYq \Rba( ɕb5,oUUٵpy 'ju?8,&]jT *#0M%q:)#I#ّ"-mÉ=Q"i Yef,]s"{,kV^KrP/k.J?;wq,Ut"(5Rvi/v#PM0G iYa,TiBS4GgY@FYEu @RɈRȱvZQb!_i0SQc,pZqZQԅu8Wa$V}I2r߃viMӊCy68AdEB9'r~&y͛l7RkxO I}˜F{_KRG'mM!!!!!!"=>[P50,y&+da^52(RNUj 5Yy7d[_Fi年*=%.ynNw䂍SXؐ4d:mZepI[Ȁi\Nbmc)Un~8E}T# ud~{évYQjMz0Ñۑr6/P 7Gciz 7hLzzF[ct`BLH'8mf%ipv) .ȘGF uL$Q7ۛ4:n\=f>[o6H}]ǖ 7CJJt,ДRIGk:O#*' <Ua:ìh\ݠ(2%3;1cYiyUcwPxn蓘Yh ˖ (ά={-)VHUh,Vzjrw  {ٝ9 ljg f S[CݧE*M6>KIKL&7]`3 z3{&Om> iڝZY98j WL4YNŏz*y#s-d6ohyl󌽹&f1K4UD@Lݓ.R= tH:uExI6Bw'IWoYl!vzcJGQV~MK`ͩq5U#^sҭ(Ҳ~f3.ҳ,V!m,pu섔YhGZ s%vM=*~/i.3ʭ}ʗ:<:_$EAw(;70ʠtX Ռ,w"& [^whj2UJfLa9/, 7@qSASeeUB~RhVRi"WY6HwH9XE S .in .LH_e&; BF'c+C# RAtQbMC)݊Y$՝UŹ61Ora]zy6FYqcCḫ8r\O+TLt7̥@KFMNCC{ l4*ھ_sc1%# ݋g2OBeLj6E#w$9(pL=1CIyg f\ͺ.3,O9 pgr :gj0:,3ዷ:1oLڶ|Kbf!4VW 17dfb$TEB(TںmT ר* RF2ȉ闰01? ަqj}i%G'"oU!a&2ElYl;]ɐL'^0pMVM|-FEvbQ+ W 7M5ÏpjNa*윐1 ␘02h.(B]Q{cެ/zhHE6`9oF`!g8uPu$q8{~ ЊBBBBBBB!ZSGs_|Ge#|݉;n:ݕn/ jJ㬖˯F`gQv%$o?xm=Bceqo8=XOKI %IVqř1ĔqRHHWP?XwaPh3K5Y@J} ӤP:˦a|5vP=H'/r4p]1q W+kWwc[{:=2fMWG7dvr; FV P$3zB@f(|],M䥕=f <$\teGz{aT+r)rP krm779 wwل]Jn Żc(ƏncTi f y!B U]3N6!d)lH8Y&%Vc)oO}[^_23{UnGwk6F)oۘvV.VJYzZV3 Kfβҭs0n#ed bq${6. +5#sv3%'ɯ;;nEKAĚzEt.YRNa&MD3Emo)[ܰ(@Q%geTAudd%F2/ʶWs^@/1K|yK*鋪/kGˢ^()hœ|@8%(7:x.(_$%B^כglX5uPզfIg3z͸ZTq5o O'u6dCQU6JJVG °bH1@Vސ)+֏,Of6~eG&Dh*}9uYyؚd&hpXX+d=\TRfaċroݗIR5za.jRnJggYcݲjl!w˖MZ <ȶ7/P!A-\i []HTv#xu(뤩ㄉsb|7+1U DNcOrMMTsq5Z˲%ywlΘJzu (T,Ikx-2.7\qqPwwhTz*>!ee}DD/ܑ7@xnrlm z·*\E烈 mצW٭]7Ҫ P/ُm{m|ٿwUzFc*\JF2s1tDpG ܪ\$ك)MӓGAd1Dt:M(hqظ㹫M&N3"\̣x a,E|d -O71ko^v8fe SYp0ܢpUSM5=9BٖHl$$bn)⥒#mGeqH\L b5\2mN\A%x>9g?:U58XD݅=KR*IJZA\UP,9$|@Lc-D|56oY4ĆQJ@ ]$Y֌YQK ї>ﹹpw)PԾGFǯD6y]4HWu(Uw^vw F yM)u-JTԞJrUfE9Oh@|'2^c魷e+K]1r6o'1N6Yj^2!,L_" ݟz_al}-ƾlp]Ĥ$uUe e)CO0D:UŪZ%U8p늪ex~ZnHor/D|]1/)ȴ+W M+$z`(@T9 oO޿RmeFb@'Ifc%!QI@_=C'KOo0ښWHCHCHCHCHCHCHD>{J}.kx~igwU_}[#]Z>>5;l4 H<[hNns#-dTHˢsҭ %{"gԜQܚezCfCiuqBYGHUFCy!TItC.zq +iUiܽK^R1Z,7H(©"1[y0:̭!X)6ܗm8͆f)IgKHG%_4rEl =q @n6htͪN,FR^Zv~TrU^$#RiϹnKC>\o!%ShbϷmcfD*b!5^pEadc&Ϸ+WLە42M<2~[\ n`.Y4-խWLNoI }s\ I{jF~yv(m3)U33i N8u2̶ f S@q"!x,ˊM5dpeSŤM!^CH(+%QJ 8nK1<EEI v9%4QH9y[uDuN8<| ?T)d90KؽUW'.H;L]-e>kiߩʲ`n|X,euFąoxK<8M[2F$VMkUs4i I5C4t- TlZPE\!#k&IJ 'E&S1io;̩@4bjXPg!Yf0X;cJ(3m%SHquK!*. -3M\CL3:hQD9H C/=m9п0ZUS&{6ȄFlegi4dP>C'TO-><2JʳϧUQULZ QlRc7"Dȟ(Nub0,2uFhIvMRѐ/JAœJKʒA#T/AJy$R;i$JX:P]eL8Q)##cWry ̴I%Nz)|@ dE)w̳"yȢurU0L aN><}UStJbOǛ^L8.N+'c\Rc߉x%m $#yd|5cYr 쫪δ븑+FPI/ǁC7.jZ$^M ,nn~S>glu )a4*kfǤ4\x&֐x$B!\x;J\L'_c~*-yVd2g똅brAg+yei0rtwTSe*=o&T|rBK{+~6Zdh{T76{*6ɶJR1[n"֭sm˩X1Ii3Wn.X e"A© &O y.7ĕ@R ؕ:RqP.J"*gH291۱kSV5'wI`8LZɎ1A޳B ,SUx*^ e1mTHrYzqLLbByn\NX*Zʘ+{nok,j9A0B(c, wFuWotlAq^B%|1qEB}s@XUB1ļ0j~{B@{eY&QE? L $+2h{$WQSmZYvT)7M<Ǔ:+4rB$e*Sp#|uu-:؉Qѵ%%5+H&\V&n4ҍlW.(_5&13 aT :Gn\Tn΢EQ:!D? _!v){:D}'4H۽M G:cri"A K6Kz[)LP7Q)| ՘v<Iv²X{pOgq_ Ea^k! */:O<~Dv7PnՖ%8"+261 ` L#lJ4n5Uqz&*#{VqfW$&R2P~&|O'E0$AL<- *UVcS)IP)Dڝ~4Yuq+ID>L̪)c{u;Bp <ȩRxQq VV|MGPtuRv7J)pys~q-l <"=N; 6w%1A DQT뜂Uu]Q^*CCyxT'?dD "RBNmED,"Ikdž}>\v5a`&s=5QE KZ7z*ΩN"C 旇-W5TIC\5eWз'>>qOJ=8ueZ5ȕQrWgBhR@E~sG\C:B"G.U&$=$BB=Q9]5 @<LH:o6RS2KpRc"ѭ.M) XYWvdS}EsL:9ً&}gmj{A"#`Ԕ7{) px=T/U}Mq|#eY384LhL+ɇyANnn?[//]`(t+:pG1OioϴګB)1]yߔx#=|EîI$߈>a4"|֔m@\ѹ;ږJ#*frR!hyPq;1(RnWvT]><.Rx%#1%2%%ET1NavBTU"F^(Ix )* i}'eT\#rWmya~n {s*7fvl#Uvx՚ ux(,k[?5 rM96) {N('k)*%mp$(Itǁӳ\tIlG!pm) ze"2m\2.*a=e{ JMVzu7]B4XĉuQ-tf),sDH6 y7$7‹rP tp),k&_^1fyYMg\3b8v^GכsmɛpY3BIB0R^rUk;nV Vp(9wIKno d#0Clx8*Xsm[VpQq[-13@1%%$Zش=N䙜yKeE9P#~$R|Eγu*MFQ3ة,C&F븡GefB3-"!ஶBphIrE͡O&eWEvȐ$Z.d "/d jF;%W;q<-!ok0Y V=ZsriDR0R&(JinDlACQ-"o$_*/RW(y$6ۙىwWN:j!{uѨ]bYݞ!^H% ÙQTN9r㤂4]<&3.-[̉=mUU'&QK0N㫋!;P.^Jy5wdգc{ZTl01g$ԷWOQ&0KIp\"<kf-IS:@d"j>CxEh$H E^Dy7ōfɹ ڙy,s065;SƲBlhRAmx%Tx@Bjb +Ȳ 0jT:Eb- 6KE<&''}YLMJTP*j .$:I.+W\`FmyD'mcKHG#RJ-Y ɮF4Mq!$!( %|5n0$hc ek^.Ft7NEFY+ QQqU㫈:s{D 6Vi*2UGd9{ Ex4rK0L71 a=5ڄ%\ɶ=,>N)#nHY8HVvgh]z6M;"Ee'hzU 4Ӏ& bD]/ye`+i()641(cnlTrc115*S.I e8#P U/(!*bDZV, QxUNE᥼Kʴi.O!(;tɴ,IRʑQdA\$Lr7D52u* U1I ǀ`gW'뭴N6"!-MSUx 鳢\ 2'QH G2k$c&#R(0p686H--,x/0L \U/I(jHBBBBBB4u?kno{_y]ts{[`u$s{~ ЊBBBBBBB!ZSGs_|F|v-c{5}iRZ]`^n.A@S[b0 k (E9nBo%Iؐ">ݖH(JǖQ*^IJʜQ#Toywtdj~BdkAINnVV~u_ ?{iU<;(h iQ;\P&@XM:M@˿0uLpRDapU|]%s KTÁ6&%7UȉK`^F)WZDݞ^V}­MdmvrHKo)EM+:DA2Lu `(([sTDUԣe5WU+d(*pD7@IQS$[rK$|XqQ%rpw@g;&{w{ʹ{hGʬxkrmU~73㒎 *HSO饬/100I)|7/rn4"k&e`^-m.gLɆ~vR^ ,-8s\]ʌԃvՎmًtܐ =$.6ᘭFʀU jQI&w!yuR푈f` $wXѻxf/rŖ6ri|D[gY y+Y QW)Od`;%J| 0VF w՗^R]&Y]/g-8Pb9ml&&|ׇz_S&s@49E`ZO2򻓗y~EsAs[l1f@TNɓ)'R- 9+1nt%⌆<.쒡.a2gg@JŠnDVMVuDTz4 ;8{6QrXc͢6.)%v5X8!83%S&.i5ps܀ i^~atPq$MB"p\ieVfKwL{@ Kcٔ{',wOqfB6NBV"A7{16!Svm[0;^DV!$sK 7-.Cq.ZX -t![˓VVäIrDHp6?VvcYnM;lulDMJcdw֚)u!:»dmꊄ˒n 9#2sl>dn&GO4ٴ6!pfs5f]%8r68s9Hm[uNVI_s5tyfY9K6Mj^tqp%3FԗPU- y)E6σhL ftBP 25x&1l_߭"XCDi}\kİ*8nkFs$/d_3F;ǰL.]^|)! Ag ܿv~E8/3T +*bs3sSJ>W:k>x=*\fl X?&B(~6f:Fi)tQlb|MW[%1N IX+0ux6J[SrRͷypTaSV4m3QMIfq.w H+oc}OlUgi+U:ԤRze 3ɬóMb<Sڎ|v{RuZT&JR̄Ԥ^aЕS~}d:/Ro^/Ȅ3Mk|WG7M#wdC>-DZ3؍Yəv jVxɓ Slת3HT딹Ff6`fiFaS]1W"8S^8{36{cޒ̷33N&%6ee]MfYdCX.&?&ބ0eض;ak؜wC=m ]-8rɎw _^cghP ^kgS^v}ŬK|9CSu &c> rJTc ٿ)'9SJ_&[zMijM3L:K!7NQ'(4&jg0e%l9uz^\Sr%3.@{0^w"ڲXd>9RovvGN9Ct<"kvU[N'6mK*ʿQ`fH^Ï4*.\2Ϛjmd6')LnJJِ{KW Y&Y Ǯenc7gq\(FC/7c7l> B,y:zGj6}ÒlԞxfʊmz؏͊Mqh=6NNa"/3$bm3v38KR^'L&AMmn~VbdgMvZA6Sty:)YJkoJ2ۏm$),J]I8UZߡE^ if]"EAY;p'"wWjx7$c`7LM932l*2jLnζ(Xo\m['~2RlӤ|3!1K`15$ R``Ҍ!Ko%¡!!#NS!Y|lxuK=N0\g8uRG:'mM!!!!!!"=>[P5ZoaHL,2_IIQ$XQ&",T]!EHRoJy b>_-UWV}Pd0i2G&.[X`ZC]\TMxw $&AЕDT*fB jܮ~?~pt\E?_G:;W|06w5unѪ=#'Qi=buu( ͨ +!_^FWNiS;L2Mȩ+p d@HLjQUE:GROu"\9:y&\9D! WEᷳǪuQ*dc9ːLGYQI$+ʈ}`[@s?Q3 m~ n¢..V6RXʐr{'dX$"IY7DԹ&M<W^C~MK/(<&)0huYR#:$0;~TED[bbD雟imZm, "G "{iهrrjaT /33U"/w#)M +F:hnrutbA:~q>i<@D5,C9lq| tuNa!2x<bi3Hf%:Pp(T'/HoBZu%! b"@"UJD0(HcB=/H1HCmĤT8WR >M擘B/ o)0@DT2f3X9N!E^HGm5** @&V$gDMU!)Q1JNc(EWv:PAKU ȴEE[ĦEAa]OxLzQgn2oT\ۢ3YQtlee(g"+(T|UOǑ4ܢs<)M%0uBCHGHCHFnC³| m-k6뮗{`x~pluOo0ښWHCHCHCHCHCHCHD>{J}.kx~}ɣw8{HCWB??Uq};U{!C!^giw8{HG}q}q`z5{7\MnS18[&< j8gaXOdzČiSn*$9$}lW/v |')RM[l lCPl8pQOAEdDM!H`ڛg[nb-8Xa,i{9@BXULl̬*$3 W<ʹtɐNA.ECpT@H& HTBπ'\u /3-i8!ďtdըˢ23 58UY&''Qbd!NbKo RˊDeD3WYE2]n GH,@U5G/1P=EEU"E{ ! !1ctGٮB,Z9XLɤ݌[.<(eOU*|MPHm l6s5VKIĤ "D>"Lˊdx]׳.f(k;2E2Rws%,%lDDq@uU1-7Tr fFXp1󧗏Zlh^ߟh^Ųkdu[OY=X{JvF-z~ÇN~awON ;5YJɇhV+:hnnnΕ"73Etmc///-v({4)J)-%rހW&1#ge*lmd6vgi}2 &Y!SCl| DLh] a!q-u7oBF苂 (`QyRx"@HA&y⩬G!+HȑMtQrdE {_:-nBq.LCďfSMQbL8~>!!/*?ސX}K~HCʬ>%w!Vg߻oyUD<[zBUa-!*?ސX}K~HCʬ>%w!Vg߻oyUDj] ?"VNo4x'(q۲}9uӌ'/mԑ΢ISB*iiiiiiɷH`}~ڈӍnlDH\^~} ђq\WtL0m!S6Ru~t>/Ծe?h?Kg%?i~)AC_?/ rMJ#X9"l#|_|~|>7PG>H~D ̧u~t>/Ծe?h?Kg%?i~)AC_?})O/O}0xIO|_|~|>7PGZCe[PTdm~tc"9)) ">wd8ϋ/O%LFSPVe[B6~ܫXvRP`X&^q:"3 7}1/Ɯ;L6#rmvJ$7zY=˄N`ia{K5c}erxRc*i&U}t㊞s MA7^ԵJQHFX\MHF8m0g"g2t+ Mo*F7 OV|x*g)"" IXrn\Q Zԙ-Xꁙ')zg"_6nEؼM#3iiiii4S_Zei-lbw5АfIFD"T*2$mbZQޘ3Tvf:/yLlJIj34${RX dWHQƂz{yv;7SCx.9p'H0P&lSjI\}` W ̃'&xDVfZ vV2TeR]o qfnqx%ƦI+,-'(fB?pIUT5 թe>(j N]|Ln 6hk\J1糕@tY9(924஀<Ѩ!^<"fXFJeoJE!u\ppCUFAN|juRX\5)\L] 2h UK`^D+V͛nRf(mw3,.ddpPq[p W5su?ko{_M]tsFxx[`u$s~ ЊBBBBBBB<" }HEHD#/]Gao٦y(c7H/d^)XyW FR$3Ƥ"['ókNz,w:7(hۮ̬-7 2XVݑlPXxJ{[4Bv>vr-~NLe#%]yr~]ԽL9܇SVv©'ggNPV%=E:6= &k霺6H6JmBjW6l˃-XRk.KպN}ZX%䉈XFڽl *wytTB\lŰFc,Q毶,y1nxm5r ȽRBHE̛"! ! ! ! ! !nc8&>hGMa&/8us&xj 䮸Ja1B.!LDbTYh,=/ةo31 U$'ebU+#./ɼ7&Ed6OnѯyRg#]vH#R>-2*NeMȭΉBlK6.Vvь5Cx.0Թ0\&AW.bn\ @c=$A)Qj*b4`=˃ϑ( 4X$e%ۦ1iOxsbx9y/bHT"w-S8" 4R2;mFz`L>sF@bp@E+rAaL'l}n[M)[p$M)y`huۃ ސ[z&w<`{O +'O }@}Z;/w-{"8'&HE} A ث!!!!!!!!!!!!!!!!!#Πq/~7!!PYlܱ-g"P`2 fYp407If1)nP?8(\< Fq|lϫDyBcgڪ>\e[ݾ}%$eL49^ܓN)̢QXg#|v|Կ?bA~R%O/wCS *K1irKiTʿj)??Z|\Z>;U>j_h2ڊO$q֟O'> .sŧ/wCS *K1irKiTʿj)??Z|\Z>;U>j_h2ڊO$q֟O'> .sŧ/wCS *K1irKiTʿj)??Z|\Z>;U>j_ AX{?s^U|[X >;U>j_Gs8S^ߋr8Wn*̱n&h_%I1b]#@ݣft2CT2h"'0c sR(ZNIw2¶%U_k:UڡDqO$O}n>P /=^(*#xyRǰb(HGTD8z?Hlř@J"!}wU"(*#˥~1rM>_OciiiiiiiiiiiiiiiiiiiiÏ/Nip`|!=B ip`|!=B ip`|!=Boޝ!4444includes/wp-booster/wp-admin/images/plugins/label.png000064400000006347150211537140016713 0ustar00PNG  IHDR, =6PLTE`٥w򾑾_إwؤv٤w٥vr\q[򽐹SנpsZD\ۧyrYC]rZDoZأujVhU}L{jT@Ŗ֢t[nYÔ|lXOaM;Ș񹉼YW귉ɞyԱݨy֝k|Jŗ՛h[YQҴŮʙᲉᭀu{eSzGÕӘc}cԶĕ֟nmȡФީ|ϜpoV@̪ã׻ѥlpZXһͫ沅rǔgt^vXfM{aKw\EgQ=̽޲w`Ȭ⺗Χ䰂ګʙmÔkhÏc^ϽμظƑ޳~ÓjWF6-. IDATx1$0 W Q L T bmCkjOSF?1K4fwdyyL2eʔ)~@pxL&#sM_e F6i'BMI̋& va< %pR*5ylx<]F%TodR>MJ ǵyq{8N *))8g\I[h,,%U W2?̸FN^U$3RJ(Ms<9ezgfiU1M2_ NBʪrK N_-Pga ~/~A #G4nnHVRw\ͪRXց;UjT0۲\ UBC 6%LI nTE3{Ct]aV=ZRŰUYU}{~8,O9\hm{R%p#ݬnǩѹ̰ T`f`mmRc9{+e`Yn {G V&fwvݾڡdaezj e-+gUS"Hֲ'k~lVV6y$ͭ~υ2Tsz:XvvⲖ I\v*_]Y^FY}iqCe!2(uW4oK\n xB0V8^oNY,qAϭ uC.:5tӀRLEc؁XR7ټI;Y\e)d\JDGs$ũq \oxkM$MZ(W9=$`}7B1˕* ;3:?u|)p)M"ưPIՍ&tDwp&OE&ƥPo *kJ.gx+FuFl_p#ŽaQVwrĔ|Hƴ?V ^I P$/Ӭk;uF`8Vٱ % PFu#V [`Xq^)'[^S+xkšКr$cqX/۠lX֤H~| 285&aq~V+wn4)3WWkJS9=cר`2;|yFR ̓O6 "7l s&lv;"Y+0!xWr{jtXYYYYYYYYYYYYYYYYYYYYYYYY-M]IENDB`includes/wp-booster/wp-admin/images/font/tagDiv.ttf000064400000030424150211537140016341 0ustar00 0OS/2`cmap(SgaspglyfS,$head&.46hhea .l$hmtxq.|locaLP/ @maxp*[/L nameJ /lpost0 3 @@@ 0  ]%'1715/2 ]%'/705/2CB X797979+V+5!!5T+VVVV&P #"&/#"&'&47>327>32'.#"'7'4&#"32653265>          VU   M 4   +   < + 4ww<xC . Pd%+"'&'&'&'&'3!276751'&10'&'!"327676767676767657!"'&74763!2[ ZJTnw     wnI&%&J&etL LtJX`BW_   _W**!&%m&n} &5=LU74;54;#!732=#"4;+54;+43!#!74;5#732=#"4;5#43!#!5732=#" d pDE e e f e '  pE D & oE D} U} GG8} G2U2} G#"3###535476; <<[i;ŗXaBC)W ?35#5##3327>7654&'!3#"'.'&547>76327.#"3gg_JIf|zO3-,BB,-3.N!w7QVLKq !! qKLVee oJJT(LSA,,22,,Au27 oJJTTJJo %24762+"'&3#!347676234'&"#75#$$98#$#$:8## b+sHGvJE3""!"61!"""T~$#OOra!J&'&7676767&76767676'&'&'&&767676'&'&'&'&'H! B -,9) 5F66 -@[[LK/0hg^^  SS1L//BA))<=)5BA++,,5554(( 55QQVV-B((PP^3#ɍbcLM ^k47632363732'6767632"'&5'&'#263276767632#"'&'&'&'#&/&'&56767&#"32767#67654'&'&'&'&#"7476#"'&'327673#"'&%47632#"'&'327654'&#"654'&#"33@?,G #12##!!4;abINN7 F11-*!<="{rHa:;" #:,,<&.2&&h 22675MH~qqL --115WcKOOKK//%%&&%-989<55!*EFLIGG?'""&$%##8))<$$;.&@--%T%!!!33##((;44<;'11G0((o $%4CB]!  D/=::-))4733$$ ((V' *822$$ %%@ASK&(%%.-?##$$'##%$$##%:9B,7;++)#"&5!#"&=4&#"#"&541"1;,+;=),=;+%8<*+;=*(;y+9;));;)4+9.",9;**;7'w$567676733#327#"'&'&'&5#=** #+OLA65>E88#%r$"64NX2  &#If@ 3 ! # !3#ǮTf`hNf05Z&676;2327632767654'&'&'&'676;132167676767676?17676;2327676#"'&#"#&'&'&'&'&#"'&'&'&'&'&'&'&'&'&5   !   '9 %%=6   01  !  $  H*)4DK   D&PA@'',k_ TS sL   !+ -  ?h ;$$   B65" U #"! %%:  dT, '%%f,*&[j cH&'.'&#&0#"&'&'.'&#"&'&67>7.1."02126?.'.7>327>7656302167>767>54'.'&'"&546323"&54632j '(D +e0 ),,M M,,)0e+ E''!+)(U$$ 'PSK88KK88LSP' $$U()+-- -- -- --    32SSP* 77 ! ! 77 *PSS33]3$$33$$33$$33$$3 I? X5.'.'1.#1<'.'</041049<50&9<54&50454"5<5<#1<50&9<'54&=4&5<1'04'041&41'<94&=&4'50&=&45&414&5<1/4&581409&4'5&45'4&1'<'5'4&14&540'14&5/40/<1'&410&1&41'401/5"4#5"4'5'81.5/5/0&50"5'5/ 5/#/#/#/#/#'#/#'#'#'#'#'#'+/#54654&'.#0"1"1113""1"1#1+*9###"#101"10#0901891911533029023267#>7>7>76?>7>7>75>7467>7>7>570238981:71>71>75>54&51818906981890"9.7>3181898183189858989.7>30292'+'+1'+1+1#11##"#>3>7>70292011#&'&67%71#0"#"&'3.'.'.'.5>;267>756&'.'1>7>7>?>73>310212'#71511"1#1#>567465467465465465<5<754&5<5<'4&51021"&'1'&'+07676&1&10"#781"&'.51.'+03276&'&63410"#>54&#"93:317>54&#"13267#'""#1"1101913898126717>54&51.#1        !   E+!& )=    -    6)C&%2 6  %  '"'    "%0 A 5#=.    3  45j   +''''s2               5>     $      1'/ G  ) )   ( "R Hk$ #wS #L&  $    7(6$  6 F ( ESf2+32+"&=46;2+"#"&/#"&=467623254632##"&=4632#"&=463232%4'.'&#"767>767>5:  KK  f  e  KY  h   i   if  K ()]]jj]])( !rNO\ *32y<<(76 0   0 }  ~       VLLp!!!!pLLVMEEm%$   + # T11/<~D<sZ&'.'�'&1067>77>76767>7676'.'&''0#.57"21&'.5&7>767>12201006?>11#"'"&'1.'.'./.'.'.'#.7&65>71>7>317;;3132;3;3:33 3030"#*+*'"&5.'4&=.'4&54&/.'././#'./1/"&#/#'8#'5#/#/#'1#/#/"&1#&"'+/#0"1#'#'#*1'#&"#'#/#'+'+'#"&#./&4'4&5465>746362;3021:33;330203033323 201211101#"#"#"�&#.'.=4&'4&'./5/5/.'4&1/5/1/50"1/0"1'5'5/#./#'#'#/1/#&"'+/+'#'+.'4&'4&=46524746706362;02302;333022 11"#"&#'.'4&'5'5'54&5./4"/#/+'+'#5#"&1.'.54&5<746?26373x W??U-,~EE1,00Z$ ! >56P $%R$$   C h- M'(!%/*:;k%&    Ed  "     5*/            \  -!"O--22CC67h,&%  :76^`ON{-,&N,-.5  ./o89*S/& @''jDCPj!            /*6           E       H'3;Cbq67.7>7>726735#35#535#%33535+3353>'.'*#:3<5:3:3.''*#<5:3%7<5:3'.'.5467>76.v     %3  __SSG696'9(%;  !  /    $3! "3 _    !   +.(+R+++Y ,5i5##'" 9   1 $$  h(W>"'.'5.546321326?>54&#"1#"&546?>32#181"'.'&546?>32#"&'1.#"326717>32#89K2T >$6oW=7@ @P..)(=#pQ..))<#pQ.7] >%6oW=8?@Q.+/%  p7>W? @"=().-Qo#<)(/.Qo#1(  o7>W? @#&V([qt2#81"&'&?&'.'&547>7637>54&#"154&#"11326515732654&'1'#54&#"1;2654%754&'1'.'181"1326757332654&'1''814&+"3133265153265bWV%%%%VWb( (1((8%%VWb B W  @  DB W 6/ K  ^    4  3 VdCDLMCCe "!P--1LDCdA TF tA >[ aV 1MM~   $$ * z.#"3#"&5<51854&'1.+"1#"&5463126515410531>71>54&'.589467332651331267##"&'.#"189#"&'.#"1383127>7675<5<513267>504550414&'1   0D 1""11":43M  hN2BW>>WE fC   <  ;''-+ 7712K2+ C0  "11"#0M33;.T# @#Qx C Q5>XW=BXA ,(':   F0/6   !,T%33ЯXQ,< !!###!<xӵx wC7!5!!5#"&=!4&#"3267+#!"&=#"&=46;463!232[ I !  A-$ 7W$-ARn!\% [ [ -A7 W7A-nz5Ts2#"'&'&'&=6763223232763276767654'&'&'&#"732#"'7&547676763310   L8)*+))  & 7 tHCC0000CCHIBC00E.ZkWPP9:"##":9PPWpaN>"#9:POX$)*@=24'  '' *$00BCHICB0000BCIt^,;""::OPXWPO::""5LfxXPO::""3%6&%626?67%#"'.'&547>7632T~%  >Y((^]jj]^((((^]jj]^(( 'ւ<_ j]^((((^]jj]^((((^]bm_< }&%w@d h&!<n 2J<J$ ( Y `6u K   g = |   R 4icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.includes/wp-booster/wp-admin/images/font/tagDiv.eot000064400000030670150211537140016336 0ustar0011LPmbicomoonRegularVersion 1.0icomoon 0OS/2`cmap(SgaspglyfS,$head&.46hhea .l$hmtxq.|locaLP/ @maxp*[/L nameJ /lpost0 3 @@@ 0  ]%'1715/2 ]%'/705/2CB X797979+V+5!!5T+VVVV&P #"&/#"&'&47>327>32'.#"'7'4&#"32653265>          VU   M 4   +   < + 4ww<xC . Pd%+"'&'&'&'&'3!276751'&10'&'!"327676767676767657!"'&74763!2[ ZJTnw     wnI&%&J&etL LtJX`BW_   _W**!&%m&n} &5=LU74;54;#!732=#"4;+54;+43!#!74;5#732=#"4;5#43!#!5732=#" d pDE e e f e '  pE D & oE D} U} GG8} G2U2} G#"3###535476; <<[i;ŗXaBC)W ?35#5##3327>7654&'!3#"'.'&547>76327.#"3gg_JIf|zO3-,BB,-3.N!w7QVLKq !! qKLVee oJJT(LSA,,22,,Au27 oJJTTJJo %24762+"'&3#!347676234'&"#75#$$98#$#$:8## b+sHGvJE3""!"61!"""T~$#OOra!J&'&7676767&76767676'&'&'&&767676'&'&'&'&'H! B -,9) 5F66 -@[[LK/0hg^^  SS1L//BA))<=)5BA++,,5554(( 55QQVV-B((PP^3#ɍbcLM ^k47632363732'6767632"'&5'&'#263276767632#"'&'&'&'#&/&'&56767&#"32767#67654'&'&'&'&#"7476#"'&'327673#"'&%47632#"'&'327654'&#"654'&#"33@?,G #12##!!4;abINN7 F11-*!<="{rHa:;" #:,,<&.2&&h 22675MH~qqL --115WcKOOKK//%%&&%-989<55!*EFLIGG?'""&$%##8))<$$;.&@--%T%!!!33##((;44<;'11G0((o $%4CB]!  D/=::-))4733$$ ((V' *822$$ %%@ASK&(%%.-?##$$'##%$$##%:9B,7;++)#"&5!#"&=4&#"#"&541"1;,+;=),=;+%8<*+;=*(;y+9;));;)4+9.",9;**;7'w$567676733#327#"'&'&'&5#=** #+OLA65>E88#%r$"64NX2  &#If@ 3 ! # !3#ǮTf`hNf05Z&676;2327632767654'&'&'&'676;132167676767676?17676;2327676#"'&#"#&'&'&'&'&#"'&'&'&'&'&'&'&'&'&5   !   '9 %%=6   01  !  $  H*)4DK   D&PA@'',k_ TS sL   !+ -  ?h ;$$   B65" U #"! %%:  dT, '%%f,*&[j cH&'.'&#&0#"&'&'.'&#"&'&67>7.1."02126?.'.7>327>7656302167>767>54'.'&'"&546323"&54632j '(D +e0 ),,M M,,)0e+ E''!+)(U$$ 'PSK88KK88LSP' $$U()+-- -- -- --    32SSP* 77 ! ! 77 *PSS33]3$$33$$33$$33$$3 I? X5.'.'1.#1<'.'</041049<50&9<54&50454"5<5<#1<50&9<'54&=4&5<1'04'041&41'<94&=&4'50&=&45&414&5<1/4&581409&4'5&45'4&1'<'5'4&14&540'14&5/40/<1'&410&1&41'401/5"4#5"4'5'81.5/5/0&50"5'5/ 5/#/#/#/#/#'#/#'#'#'#'#'#'+/#54654&'.#0"1"1113""1"1#1+*9###"#101"10#0901891911533029023267#>7>7>76?>7>7>75>7467>7>7>570238981:71>71>75>54&51818906981890"9.7>3181898183189858989.7>30292'+'+1'+1+1#11##"#>3>7>70292011#&'&67%71#0"#"&'3.'.'.'.5>;267>756&'.'1>7>7>?>73>310212'#71511"1#1#>567465467465465465<5<754&5<5<'4&51021"&'1'&'+07676&1&10"#781"&'.51.'+03276&'&63410"#>54&#"93:317>54&#"13267#'""#1"1101913898126717>54&51.#1        !   E+!& )=    -    6)C&%2 6  %  '"'    "%0 A 5#=.    3  45j   +''''s2               5>     $      1'/ G  ) )   ( "R Hk$ #wS #L&  $    7(6$  6 F ( ESf2+32+"&=46;2+"#"&/#"&=467623254632##"&=4632#"&=463232%4'.'&#"767>767>5:  KK  f  e  KY  h   i   if  K ()]]jj]])( !rNO\ *32y<<(76 0   0 }  ~       VLLp!!!!pLLVMEEm%$   + # T11/<~D<sZ&'.'�'&1067>77>76767>7676'.'&''0#.57"21&'.5&7>767>12201006?>11#"'"&'1.'.'./.'.'.'#.7&65>71>7>317;;3132;3;3:33 3030"#*+*'"&5.'4&=.'4&54&/.'././#'./1/"&#/#'8#'5#/#/#'1#/#/"&1#&"'+/#0"1#'#'#*1'#&"#'#/#'+'+'#"&#./&4'4&5465>746362;3021:33;330203033323 201211101#"#"#"�&#.'.=4&'4&'./5/5/.'4&1/5/1/50"1/0"1'5'5/#./#'#'#/1/#&"'+/+'#'+.'4&'4&=46524746706362;02302;333022 11"#"&#'.'4&'5'5'54&5./4"/#/+'+'#5#"&1.'.54&5<746?26373x W??U-,~EE1,00Z$ ! >56P $%R$$   C h- M'(!%/*:;k%&    Ed  "     5*/            \  -!"O--22CC67h,&%  :76^`ON{-,&N,-.5  ./o89*S/& @''jDCPj!            /*6           E       H'3;Cbq67.7>7>726735#35#535#%33535+3353>'.'*#:3<5:3:3.''*#<5:3%7<5:3'.'.5467>76.v     %3  __SSG696'9(%;  !  /    $3! "3 _    !   +.(+R+++Y ,5i5##'" 9   1 $$  h(W>"'.'5.546321326?>54&#"1#"&546?>32#181"'.'&546?>32#"&'1.#"326717>32#89K2T >$6oW=7@ @P..)(=#pQ..))<#pQ.7] >%6oW=8?@Q.+/%  p7>W? @"=().-Qo#<)(/.Qo#1(  o7>W? @#&V([qt2#81"&'&?&'.'&547>7637>54&#"154&#"11326515732654&'1'#54&#"1;2654%754&'1'.'181"1326757332654&'1''814&+"3133265153265bWV%%%%VWb( (1((8%%VWb B W  @  DB W 6/ K  ^    4  3 VdCDLMCCe "!P--1LDCdA TF tA >[ aV 1MM~   $$ * z.#"3#"&5<51854&'1.+"1#"&5463126515410531>71>54&'.589467332651331267##"&'.#"189#"&'.#"1383127>7675<5<513267>504550414&'1   0D 1""11":43M  hN2BW>>WE fC   <  ;''-+ 7712K2+ C0  "11"#0M33;.T# @#Qx C Q5>XW=BXA ,(':   F0/6   !,T%33ЯXQ,< !!###!<xӵx wC7!5!!5#"&=!4&#"3267+#!"&=#"&=46;463!232[ I !  A-$ 7W$-ARn!\% [ [ -A7 W7A-nz5Ts2#"'&'&'&=6763223232763276767654'&'&'&#"732#"'7&547676763310   L8)*+))  & 7 tHCC0000CCHIBC00E.ZkWPP9:"##":9PPWpaN>"#9:POX$)*@=24'  '' *$00BCHICB0000BCIt^,;""::OPXWPO::""5LfxXPO::""3%6&%626?67%#"'.'&547>7632T~%  >Y((^]jj]^((((^]jj]^(( 'ւ<_ j]^((((^]jj]^((((^]bm_< }&%w@d h&!<n 2J<J$ ( Y `6u K   g = |   R 4icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.includes/wp-booster/wp-admin/images/font/tagDiv.svg000064400000133553150211537140016352 0ustar00 Generated by IcoMoon includes/wp-booster/wp-admin/images/font/tagDiv.woff000064400000030540150211537140016504 0ustar00wOFF1` 1OS/2``cmaph(SgaspTglyf\,$,$Shead.66&hhea.$$ hmtx.||qloca/X@@LPmaxp/ *[name/J post1@ 3 @@@ 0  ]%'1715/2 ]%'/705/2CB X797979+V+5!!5T+VVVV&P #"&/#"&'&47>327>32'.#"'7'4&#"32653265>          VU   M 4   +   < + 4ww<xC . Pd%+"'&'&'&'&'3!276751'&10'&'!"327676767676767657!"'&74763!2[ ZJTnw     wnI&%&J&etL LtJX`BW_   _W**!&%m&n} &5=LU74;54;#!732=#"4;+54;+43!#!74;5#732=#"4;5#43!#!5732=#" d pDE e e f e '  pE D & oE D} U} GG8} G2U2} G#"3###535476; <<[i;ŗXaBC)W ?35#5##3327>7654&'!3#"'.'&547>76327.#"3gg_JIf|zO3-,BB,-3.N!w7QVLKq !! qKLVee oJJT(LSA,,22,,Au27 oJJTTJJo %24762+"'&3#!347676234'&"#75#$$98#$#$:8## b+sHGvJE3""!"61!"""T~$#OOra!J&'&7676767&76767676'&'&'&&767676'&'&'&'&'H! B -,9) 5F66 -@[[LK/0hg^^  SS1L//BA))<=)5BA++,,5554(( 55QQVV-B((PP^3#ɍbcLM ^k47632363732'6767632"'&5'&'#263276767632#"'&'&'&'#&/&'&56767&#"32767#67654'&'&'&'&#"7476#"'&'327673#"'&%47632#"'&'327654'&#"654'&#"33@?,G #12##!!4;abINN7 F11-*!<="{rHa:;" #:,,<&.2&&h 22675MH~qqL --115WcKOOKK//%%&&%-989<55!*EFLIGG?'""&$%##8))<$$;.&@--%T%!!!33##((;44<;'11G0((o $%4CB]!  D/=::-))4733$$ ((V' *822$$ %%@ASK&(%%.-?##$$'##%$$##%:9B,7;++)#"&5!#"&=4&#"#"&541"1;,+;=),=;+%8<*+;=*(;y+9;));;)4+9.",9;**;7'w$567676733#327#"'&'&'&5#=** #+OLA65>E88#%r$"64NX2  &#If@ 3 ! # !3#ǮTf`hNf05Z&676;2327632767654'&'&'&'676;132167676767676?17676;2327676#"'&#"#&'&'&'&'&#"'&'&'&'&'&'&'&'&'&5   !   '9 %%=6   01  !  $  H*)4DK   D&PA@'',k_ TS sL   !+ -  ?h ;$$   B65" U #"! %%:  dT, '%%f,*&[j cH&'.'&#&0#"&'&'.'&#"&'&67>7.1."02126?.'.7>327>7656302167>767>54'.'&'"&546323"&54632j '(D +e0 ),,M M,,)0e+ E''!+)(U$$ 'PSK88KK88LSP' $$U()+-- -- -- --    32SSP* 77 ! ! 77 *PSS33]3$$33$$33$$33$$3 I? X5.'.'1.#1<'.'</041049<50&9<54&50454"5<5<#1<50&9<'54&=4&5<1'04'041&41'<94&=&4'50&=&45&414&5<1/4&581409&4'5&45'4&1'<'5'4&14&540'14&5/40/<1'&410&1&41'401/5"4#5"4'5'81.5/5/0&50"5'5/ 5/#/#/#/#/#'#/#'#'#'#'#'#'+/#54654&'.#0"1"1113""1"1#1+*9###"#101"10#0901891911533029023267#>7>7>76?>7>7>75>7467>7>7>570238981:71>71>75>54&51818906981890"9.7>3181898183189858989.7>30292'+'+1'+1+1#11##"#>3>7>70292011#&'&67%71#0"#"&'3.'.'.'.5>;267>756&'.'1>7>7>?>73>310212'#71511"1#1#>567465467465465465<5<754&5<5<'4&51021"&'1'&'+07676&1&10"#781"&'.51.'+03276&'&63410"#>54&#"93:317>54&#"13267#'""#1"1101913898126717>54&51.#1        !   E+!& )=    -    6)C&%2 6  %  '"'    "%0 A 5#=.    3  45j   +''''s2               5>     $      1'/ G  ) )   ( "R Hk$ #wS #L&  $    7(6$  6 F ( ESf2+32+"&=46;2+"#"&/#"&=467623254632##"&=4632#"&=463232%4'.'&#"767>767>5:  KK  f  e  KY  h   i   if  K ()]]jj]])( !rNO\ *32y<<(76 0   0 }  ~       VLLp!!!!pLLVMEEm%$   + # T11/<~D<sZ&'.'�'&1067>77>76767>7676'.'&''0#.57"21&'.5&7>767>12201006?>11#"'"&'1.'.'./.'.'.'#.7&65>71>7>317;;3132;3;3:33 3030"#*+*'"&5.'4&=.'4&54&/.'././#'./1/"&#/#'8#'5#/#/#'1#/#/"&1#&"'+/#0"1#'#'#*1'#&"#'#/#'+'+'#"&#./&4'4&5465>746362;3021:33;330203033323 201211101#"#"#"�&#.'.=4&'4&'./5/5/.'4&1/5/1/50"1/0"1'5'5/#./#'#'#/1/#&"'+/+'#'+.'4&'4&=46524746706362;02302;333022 11"#"&#'.'4&'5'5'54&5./4"/#/+'+'#5#"&1.'.54&5<746?26373x W??U-,~EE1,00Z$ ! >56P $%R$$   C h- M'(!%/*:;k%&    Ed  "     5*/            \  -!"O--22CC67h,&%  :76^`ON{-,&N,-.5  ./o89*S/& @''jDCPj!            /*6           E       H'3;Cbq67.7>7>726735#35#535#%33535+3353>'.'*#:3<5:3:3.''*#<5:3%7<5:3'.'.5467>76.v     %3  __SSG696'9(%;  !  /    $3! "3 _    !   +.(+R+++Y ,5i5##'" 9   1 $$  h(W>"'.'5.546321326?>54&#"1#"&546?>32#181"'.'&546?>32#"&'1.#"326717>32#89K2T >$6oW=7@ @P..)(=#pQ..))<#pQ.7] >%6oW=8?@Q.+/%  p7>W? @"=().-Qo#<)(/.Qo#1(  o7>W? @#&V([qt2#81"&'&?&'.'&547>7637>54&#"154&#"11326515732654&'1'#54&#"1;2654%754&'1'.'181"1326757332654&'1''814&+"3133265153265bWV%%%%VWb( (1((8%%VWb B W  @  DB W 6/ K  ^    4  3 VdCDLMCCe "!P--1LDCdA TF tA >[ aV 1MM~   $$ * z.#"3#"&5<51854&'1.+"1#"&5463126515410531>71>54&'.589467332651331267##"&'.#"189#"&'.#"1383127>7675<5<513267>504550414&'1   0D 1""11":43M  hN2BW>>WE fC   <  ;''-+ 7712K2+ C0  "11"#0M33;.T# @#Qx C Q5>XW=BXA ,(':   F0/6   !,T%33ЯXQ,< !!###!<xӵx wC7!5!!5#"&=!4&#"3267+#!"&=#"&=46;463!232[ I !  A-$ 7W$-ARn!\% [ [ -A7 W7A-nz5Ts2#"'&'&'&=6763223232763276767654'&'&'&#"732#"'7&547676763310   L8)*+))  & 7 tHCC0000CCHIBC00E.ZkWPP9:"##":9PPWpaN>"#9:POX$)*@=24'  '' *$00BCHICB0000BCIt^,;""::OPXWPO::""5LfxXPO::""3%6&%626?67%#"'.'&547>7632T~%  >Y((^]jj]^((((^]jj]^(( 'ւ<_ j]^((((^]jj]^((((^]bm_< }&%w@d h&!<n 2J<J$ ( Y `6u K   g = |   R 4icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.includes/wp-booster/wp-admin/tagdiv-view-theme-plugins.php000064400000051340150211537140017707 0ustar00plugins; foreach ( $plugins as $plugin ) { if ( $plugin['slug'] == $td_deactivate_plugin_slug ) { deactivate_plugins($plugin['file_path']); ?> plugins; foreach ( $plugins as $plugin ) { if ( $plugin['slug'] == $td_activate_plugin_slug ) { activate_plugins($plugin['file_path']); ?>

    Install premium plugins

    Install the included plugins with ease. All the plugins are well-tested to work with the theme and we keep them up to date. The theme comes packed with the following premium plugins:

    $value ) { if ( $index == "response" ) { if( isset( $value["amp/amp.php"] ) ) { $td_amp_new_ver = $value["amp/amp.php"]->new_version; } } } foreach ( tagdiv_global::get_td_plugins() as $constant => $settings ) { $plugin_name = strtolower( str_replace('_', '-', $constant ) ); $plugin = $plugin_name . '/' . $plugin_name . '.php'; //Add AMP plugin to the update plugins list if ( $plugin == 'amp/amp.php' ) { if ( isset( $td_amp_new_ver ) ) { $td_plugins_update_list[] = $plugin; continue; } } if ( $plugin === 'td-subscription/td-subscription.php') { if ( !empty($plugin_updates->response['td-subscription/td-subscription.php'])) { $td_plugins_update_list[] = $plugin; } } //plugin exists and it's inactive if ( !class_exists( $settings['class'], false ) && isset( $wp_plugin_list[$plugin] ) ) { //add AMP plugin to the update plugins list if it is inactive if ( $plugin == 'amp/amp.php' ) { if( isset( $td_amp_new_ver ) ) { $td_plugins_update_list[] = $plugin; } continue; } //read plugin file global $wp_filesystem; //there are issues with ABSPATH on wp.com servers, so we use WP_PLUGIN_DIR $file_data = $wp_filesystem->get_contents( WP_PLUGIN_DIR . '/' . $plugin ); preg_match('/define\s*\(\s*\'' . $constant . '\',\s*\'(.*)\'\s*\)/', $file_data, $matches); if ( !isset($matches[1] ) || $matches[1] !== $settings['version'] ) { $td_plugins_update_list[] = $plugin; } } } //asort($theme_plugins); $td_tgm_theme_plugins = TGM_Plugin_Activation::$instance->plugins; $sorted_plugins = array(); $demo_plugins = array(); // sort theme plugins based on the config array foreach ( tagdiv_global::$theme_plugins_list as $td_global_plugin ) { // don't add plugins that supposed to appear in theme's plugins list if ( !$td_global_plugin['td_show_in_theme_plugins']) { if ( !$td_global_plugin['td_demo_plugin'] ) { continue; } } foreach ( $td_tgm_theme_plugins as $td_tgm_theme_plugin ) { if ( $td_global_plugin['name'] == $td_tgm_theme_plugin['name'] && $td_tgm_theme_plugin['td_demo_plugin'] ) { $demo_plugins[] = $td_tgm_theme_plugin; } if ( $td_global_plugin['name'] == $td_tgm_theme_plugin['name'] && !$td_tgm_theme_plugin['td_demo_plugin'] ) { $sorted_plugins[] = $td_tgm_theme_plugin; } } } //echo '
    ';
            //var_dump($td_plugins_update_list);
            //echo '
    '; $td_tgm_theme_plugins = array_merge( $sorted_plugins, tagdiv_global::$theme_plugins_for_info_list ); foreach ( $td_tgm_theme_plugins as $td_tgm_theme_plugin ) { $tmp_class = 'td-plugin-not-installed'; $required_label = $td_tgm_theme_plugin['required_label']; $plugin_msg = ''; if ( isset( $td_tgm_theme_plugin['file_path'] ) ) { // file_path key is missing from elements that come from td_global::$theme_plugins_for_info_list if ( tagdiv_util::is_active( $td_tgm_theme_plugin ) ) { //show update button for AMP even if it is active if ( $td_tgm_theme_plugin['file_path'] == 'amp/amp.php' && in_array ( $td_tgm_theme_plugin['file_path'], $td_plugins_update_list ) ) { $tmp_class = 'td-plugin-update'; } else { $tmp_class = 'td-plugin-active'; $required_label = 'active'; } if ( $td_tgm_theme_plugin['file_path'] == 'td-subscription/td-subscription.php' && in_array ( $td_tgm_theme_plugin['file_path'], $td_plugins_update_list ) ) { $tmp_class .= ' td-plugin-update'; } } else if ( in_array ( $td_tgm_theme_plugin['file_path'], $td_plugins_update_list) ) { $tmp_class = 'td-plugin-update'; } else if ( isset( $wp_plugin_list[$td_tgm_theme_plugin['file_path']] ) ) { $tmp_class = 'td-plugin-inactive'; } } else { $tmp_class = 'td-plugin-no-install'; } ?>
    V

    ' . $td_tgm_theme_plugin['text'] . '

    '; } else { echo '

    ' . $plugin_msg . '

    Go to plugins'; } // for plugins like rev slider/tagdiv mobile theme or visual composer the source is not set $td_tgm_theme_plugin_source = ''; if( isset( $td_tgm_theme_plugin['source'] ) ) { $td_tgm_theme_plugin_source = $td_tgm_theme_plugin['name']; } ?>

    Dedicated Plugins for Prebuilt Websites

    Some prebuilt website designs require a specific plugin to bring beautiful layouts and slick functionality. In this section, you will find the free dedicated plugins. For your convenience, the plugins have the same name as the prebuilt website design. So have fun and build an awesome website!

    ' . $demo_plugin['text'] . '

    '; } else { echo '

    ' . $plugin_msg . '

    Go to plugins'; } // for plugins like rev slider/tagdiv mobile theme or visual composer the source is not set $td_tgm_theme_plugin_source = ''; if( isset( $demo_plugin['source'] ) ) { $td_tgm_theme_plugin_source = $demo_plugin['name']; } ?>


    Tested Plugins

    With each theme release we provide a list of fully suported plugins. In order to make the plugins look and work better, the theme may add custom stylesheets and hook custom code to them. We manually inspect each plugin periodically. If we missed something, feel free to contact us!

    WP Super Cache

    - caching plugin

    Contact form 7

    - used to make contact forms

    bbPress

    - forum plugin

    BuddyPress

    - social network plugin

    WPML

    - The WordPress Multilingual Plugin

    Jetpack

    - plugin with lots of features *it may slow down your site

    WooCommerce

    - eCommerce solution

    WordPress (Yoast) SEO

    - SEO plugin

    Simple Local Avatar

    - Change users avatars

    GDPR Cookie Consent

    - GDPR compliance plugin

    HubSpot All-In-One Marketing

    - Grow your email list, generate leads, and manage contacts
    includes/wp-booster/wp-admin/tagdiv-view-header.php000064400000006032150211537140016354 0ustar00

    Welcome to !

    Version: 0) { ?> REGISTERED UNREGISTERED Activate now
    includes/wp-booster/wp-admin/plugins/class-tagdiv-old-plugins-deactivation.php000064400000007452150211537140023654 0ustar00 $settings ) { $plugin_slug = strtolower( str_replace('_', '-', $constant ) ); $plugin = $plugin_slug . '/' . $plugin_slug . '.php'; //except AMP which is an external plugin if( $plugin == 'amp/amp.php' ) { continue; } // get the td_config plugin data array $config_plugin_data_array = array(); foreach ( tagdiv_global::$theme_plugins_list as $theme_plugin ) { if ( $theme_plugin['td_class'] === $settings['class'] ) { $config_plugin_data_array = $theme_plugin; } } if ( ! empty( $config_plugin_data_array ) && tagdiv_util::is_active( $config_plugin_data_array ) ) { $plugin_version = null; if ( defined( $constant ) ) { $plugin_version = constant( $constant ); } if ( $plugin_version === null || $plugin_version !== $settings[ 'version' ] ) { $plugins_to_deactivate[] = $plugin; self::$td_plugins_deactivated[$plugin_slug] = $plugin; $td_db_store_deactivated_plugins[$plugin_slug] = $settings['version']; } } } // store a list of plugins deactivated by theme if ( !empty( $td_db_store_deactivated_plugins ) ) { $theme_deactivated_plugins_array = tagdiv_options::get_array( 'td_theme_deactivated_plugins' ); if ( empty( $theme_deactivated_plugins_array ) ) { tagdiv_options::update_array('td_theme_deactivated_plugins', $td_db_store_deactivated_plugins ); } else { tagdiv_options::update_array('td_theme_deactivated_plugins', array_merge( $theme_deactivated_plugins_array, $td_db_store_deactivated_plugins ) ); } } if ( !empty( $plugins_to_deactivate ) ) { if ( in_array('td-composer/td-composer.php', $plugins_to_deactivate ) ) { if ( class_exists( 'td_panel', false ) ) { remove_action( 'admin_menu', array( td_panel::get_instance(), 'register_theme_panel' ), 11 ); } if ( class_exists( 'td_js', false ) ) { remove_action( 'admin_menu', array( td_js::get_instance(), 'td_js_register_panel' ), 12 ); } } deactivate_plugins( $plugins_to_deactivate ); } } function td_deactivate_message() { //don't display this notification on Welcome and Plugins page if ( isset( $_GET['page'] ) && ( $_GET['page'] === 'td_theme_welcome' || $_GET['page'] === 'td_theme_plugins' ) ) { return; } if ( !empty( self::$td_plugins_deactivated ) ) { $message = '

    Plugins disabled automatically

    The following plugins were disabled because they are incompatible with this version of ' . TD_THEME_NAME . ':

    '; foreach ( self::$td_plugins_deactivated as $plugin_slug => $plugin ) { $plugin_data = get_plugin_data( ABSPATH . 'wp-content/plugins/' . $plugin ); $message .= '
  • ' . $plugin_data['Name'] . '
  • '; } $message .= '

    For update please check the plugins section

    '; new tagdiv_admin_notices($message, array('notice-error', 'is-dismissible', 'td-plugins-deactivated-notice')); } } } new tagdiv_old_plugins_deactivate(); includes/wp-booster/wp-admin/plugins/class-tgm-plugin-activation.php000064400000400670150211537140021714 0ustar00wp_version = $GLOBALS['wp_version']; // Announce that the class is ready, and pass the object (for advanced use). do_action_ref_array( 'tgmpa_init', array( $this ) ); /* * Load our text domain and allow for overloading the fall-back file. * * {@internal IMPORTANT! If this code changes, review the regex in the custom TGMPA * generator on the website.}} */ add_action( 'init', array( $this, 'load_textdomain' ), 5 ); add_filter( 'load_textdomain_mofile', array( $this, 'overload_textdomain_mofile' ), 10, 2 ); // When the rest of WP has loaded, kick-start the rest of the class. add_action( 'init', array( $this, 'init' ) ); } /** * Magic method to (not) set protected properties from outside of this class. * * {@internal hackedihack... There is a serious bug in v2.3.2 - 2.3.6 where the `menu` property * is being assigned rather than tested in a conditional, effectively rendering it useless. * This 'hack' prevents this from happening.}} * * @see https://github.com/TGMPA/TGM-Plugin-Activation/blob/2.3.6/tgm-plugin-activation/class-tgm-plugin-activation.php#L1593 * * @since 2.5.2 * * @param string $name Name of an inaccessible property. * @param mixed $value Value to assign to the property. * @return void Silently fail to set the property when this is tried from outside of this class context. * (Inside this class context, the __set() method if not used as there is direct access.) */ public function __set( $name, $value ) { return; } /** * Magic method to get the value of a protected property outside of this class context. * * @since 2.5.2 * * @param string $name Name of an inaccessible property. * @return mixed The property value. */ public function __get( $name ) { return $this->{$name}; } /** * Initialise the interactions between this class and WordPress. * * Hooks in three new methods for the class: admin_menu, notices and styles. * * @since 2.0.0 * * @see TGM_Plugin_Activation::admin_menu() * @see TGM_Plugin_Activation::notices() * @see TGM_Plugin_Activation::styles() */ public function init() { /** * By default TGMPA only loads on the WP back-end and not in an Ajax call. Using this filter * you can overrule that behaviour. * * @since 2.5.0 * * @param bool $load Whether or not TGMPA should load. * Defaults to the return of `is_admin() && ! defined( 'DOING_AJAX' )`. */ if ( true !== apply_filters( 'tgmpa_load', ( is_admin() && ! defined( 'DOING_AJAX' ) ) ) ) { return; } // Load class strings. $this->strings = array( 'page_title' => __( 'Install Required Plugins', 'tgmpa' ), 'menu_title' => __( 'Install Plugins', 'tgmpa' ), /* translators: %s: plugin name. */ 'installing' => __( 'Installing Plugin: %s', 'tgmpa' ), /* translators: %s: plugin name. */ 'updating' => __( 'Updating Plugin: %s', 'tgmpa' ), 'oops' => __( 'Something went wrong with the plugin API.', 'tgmpa' ), /* translators: 1: plugin name(s). */ 'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'tgmpa' ), /* translators: 1: plugin name(s). */ 'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'tgmpa' ), /* translators: 1: plugin name(s). */ 'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'tgmpa' ), /* translators: 1: plugin name(s). */ 'notice_ask_to_update_maybe' => _n_noop( 'There is an update available for: %1$s.', 'There are updates available for the following plugins: %1$s.', 'tgmpa' ), /* translators: 1: plugin name(s). */ 'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'tgmpa' ), /* translators: 1: plugin name(s). */ 'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'tgmpa' ), 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'tgmpa' ), 'update_link' => _n_noop( 'Begin updating plugin', 'Begin updating plugins', 'tgmpa' ), 'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'tgmpa' ), 'return' => __( 'Return to Required Plugins Installer', 'tgmpa' ), 'dashboard' => __( 'Return to the Dashboard', 'tgmpa' ), 'plugin_activated' => __( 'Plugin activated successfully.', 'tgmpa' ), 'activated_successfully' => __( 'The following plugin was activated successfully:', 'tgmpa' ), /* translators: 1: plugin name. */ 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'tgmpa' ), /* translators: 1: plugin name. */ 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'tgmpa' ), /* translators: 1: dashboard link. */ 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'tgmpa' ), 'dismiss' => __( 'Dismiss this notice', 'tgmpa' ), 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'tgmpa' ), 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'tgmpa' ), ); do_action( 'tgmpa_register' ); /* After this point, the plugins should be registered and the configuration set. */ // Proceed only if we have plugins to handle. if ( empty( $this->plugins ) || ! is_array( $this->plugins ) ) { return; } // Set up the menu and notices if we still have outstanding actions. if ( true !== $this->is_tgmpa_complete() ) { // Sort the plugins. /** * commented plugins sorting to preserve theme config plugins order for welcome panel theme plugins setup * @since theme 17.04.2019 > theme refactor */ //array_multisort( $this->sort_order, SORT_ASC, $this->plugins ); add_action( 'admin_menu', array( $this, 'admin_menu' ) ); add_action( 'admin_head', array( $this, 'dismiss' ) ); // Prevent the normal links from showing underneath a single install/update page. add_filter( 'install_plugin_complete_actions', array( $this, 'actions' ) ); add_filter( 'update_plugin_complete_actions', array( $this, 'actions' ) ); if ( $this->has_notices ) { add_action( 'admin_notices', array( $this, 'notices' ) ); add_action( 'admin_init', array( $this, 'admin_init' ), 1 ); add_action( 'admin_enqueue_scripts', array( $this, 'thickbox' ) ); } } // If needed, filter plugin action links. add_action( 'load-plugins.php', array( $this, 'add_plugin_action_link_filters' ), 1 ); // Make sure things get reset on switch theme. add_action( 'switch_theme', array( $this, 'flush_plugins_cache' ) ); if ( $this->has_notices ) { add_action( 'switch_theme', array( $this, 'update_dismiss' ) ); } // Setup the force activation hook. if ( true === $this->has_forced_activation ) { add_action( 'admin_init', array( $this, 'force_activation' ) ); } // Setup the force deactivation hook. if ( true === $this->has_forced_deactivation ) { add_action( 'switch_theme', array( $this, 'force_deactivation' ) ); } } /** * Load translations. * * @since 2.6.0 * * (@internal Uses `load_theme_textdomain()` rather than `load_plugin_textdomain()` to * get round the different ways of handling the path and deprecated notices being thrown * and such. For plugins, the actual file name will be corrected by a filter.}} * * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA * generator on the website.}} */ public function load_textdomain() { if ( is_textdomain_loaded( 'tgmpa' ) ) { return; } if ( false !== strpos( __FILE__, WP_PLUGIN_DIR ) || false !== strpos( __FILE__, WPMU_PLUGIN_DIR ) ) { // Plugin, we'll need to adjust the file name. add_action( 'load_textdomain_mofile', array( $this, 'correct_plugin_mofile' ), 10, 2 ); load_theme_textdomain( 'tgmpa', dirname( __FILE__ ) . '/languages' ); remove_action( 'load_textdomain_mofile', array( $this, 'correct_plugin_mofile' ), 10 ); } else { load_theme_textdomain( 'tgmpa', dirname( __FILE__ ) . '/languages' ); } } /** * Correct the .mo file name for (must-use) plugins. * * Themese use `/path/{locale}.mo` while plugins use `/path/{text-domain}-{locale}.mo`. * * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA * generator on the website.}} * * @since 2.6.0 * * @param string $mofile Full path to the target mofile. * @param string $domain The domain for which a language file is being loaded. * @return string $mofile */ public function correct_plugin_mofile( $mofile, $domain ) { // Exit early if not our domain (just in case). if ( 'tgmpa' !== $domain ) { return $mofile; } return preg_replace( '`/([a-z]{2}_[A-Z]{2}.mo)$`', '/tgmpa-$1', $mofile ); } /** * Potentially overload the fall-back translation file for the current language. * * WP, by default since WP 3.7, will load a local translation first and if none * can be found, will try and find a translation in the /wp-content/languages/ directory. * As this library is theme/plugin agnostic, translation files for TGMPA can exist both * in the WP_LANG_DIR /plugins/ subdirectory as well as in the /themes/ subdirectory. * * This method makes sure both directories are checked. * * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA * generator on the website.}} * * @since 2.6.0 * * @param string $mofile Full path to the target mofile. * @param string $domain The domain for which a language file is being loaded. * @return string $mofile */ public function overload_textdomain_mofile( $mofile, $domain ) { // Exit early if not our domain, not a WP_LANG_DIR load or if the file exists and is readable. if ( 'tgmpa' !== $domain || false === strpos( $mofile, WP_LANG_DIR ) || @is_readable( $mofile ) ) { return $mofile; } // Current fallback file is not valid, let's try the alternative option. if ( false !== strpos( $mofile, '/themes/' ) ) { return str_replace( '/themes/', '/plugins/', $mofile ); } elseif ( false !== strpos( $mofile, '/plugins/' ) ) { return str_replace( '/plugins/', '/themes/', $mofile ); } else { return $mofile; } } /** * Hook in plugin action link filters for the WP native plugins page. * * - Prevent activation of plugins which don't meet the minimum version requirements. * - Prevent deactivation of force-activated plugins. * - Add update notice if update available. * * @since 2.5.0 */ public function add_plugin_action_link_filters() { foreach ( $this->plugins as $slug => $plugin ) { if ( false === $this->can_plugin_activate( $slug ) ) { add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_activate' ), 20 ); } if ( true === $plugin['force_activation'] ) { add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_deactivate' ), 20 ); } if ( false !== $this->does_plugin_require_update( $slug ) ) { add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_update' ), 20 ); } } } /** * Remove the 'Activate' link on the WP native plugins page if the plugin does not meet the * minimum version requirements. * * @since 2.5.0 * * @param array $actions Action links. * @return array */ public function filter_plugin_action_links_activate( $actions ) { unset( $actions['activate'] ); return $actions; } /** * Remove the 'Deactivate' link on the WP native plugins page if the plugin has been set to force activate. * * @since 2.5.0 * * @param array $actions Action links. * @return array */ public function filter_plugin_action_links_deactivate( $actions ) { unset( $actions['deactivate'] ); return $actions; } /** * Add a 'Requires update' link on the WP native plugins page if the plugin does not meet the * minimum version requirements. * * @since 2.5.0 * * @param array $actions Action links. * @return array */ public function filter_plugin_action_links_update( $actions ) { $actions['update'] = sprintf( '%3$s', esc_url( $this->get_tgmpa_status_url( 'update' ) ), esc_attr__( 'This plugin needs to be updated to be compatible with your theme.', 'tgmpa' ), esc_html__( 'Update Required', 'tgmpa' ) ); return $actions; } /** * Handles calls to show plugin information via links in the notices. * * We get the links in the admin notices to point to the TGMPA page, rather * than the typical plugin-install.php file, so we can prepare everything * beforehand. * * WP does not make it easy to show the plugin information in the thickbox - * here we have to require a file that includes a function that does the * main work of displaying it, enqueue some styles, set up some globals and * finally call that function before exiting. * * Down right easy once you know how... * * Returns early if not the TGMPA page. * * @since 2.1.0 * * @global string $tab Used as iframe div class names, helps with styling * @global string $body_id Used as the iframe body ID, helps with styling * * @return null Returns early if not the TGMPA page. */ public function admin_init() { if ( ! $this->is_tgmpa_page() ) { return; } if ( isset( $_REQUEST['tab'] ) && 'plugin-information' === $_REQUEST['tab'] ) { // Needed for install_plugin_information(). require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; wp_enqueue_style( 'plugin-install' ); global $tab, $body_id; $body_id = 'plugin-information'; // WPCS: override ok, prefix ok. $tab = 'plugin-information'; // WPCS: override ok. install_plugin_information(); exit; } } /** * Enqueue thickbox scripts/styles for plugin info. * * Thickbox is not automatically included on all admin pages, so we must * manually enqueue it for those pages. * * Thickbox is only loaded if the user has not dismissed the admin * notice or if there are any plugins left to install and activate. * * @since 2.1.0 */ public function thickbox() { if ( ! get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) ) { add_thickbox(); } } /** * Adds submenu page if there are plugin actions to take. * * This method adds the submenu page letting users know that a required * plugin needs to be installed. * * This page disappears once the plugin has been installed and activated. * * @since 1.0.0 * * @see TGM_Plugin_Activation::init() * @see TGM_Plugin_Activation::install_plugins_page() * * @return null Return early if user lacks capability to install a plugin. */ public function admin_menu() { // Make sure privileges are correct to see the page. if ( ! current_user_can( 'install_plugins' ) ) { return; } $args = apply_filters( 'tgmpa_admin_menu_args', array( 'parent_slug' => $this->parent_slug, // Parent Menu slug. 'page_title' => $this->strings['page_title'], // Page title. 'menu_title' => $this->strings['menu_title'], // Menu title. 'capability' => $this->capability, // Capability. 'menu_slug' => $this->menu, // Menu slug. 'function' => array( $this, 'install_plugins_page' ), // Callback. ) ); $this->add_admin_menu( $args ); } /** * Add the menu item. * * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA * generator on the website.}} * * @since 2.5.0 * * @param array $args Menu item configuration. */ protected function add_admin_menu( array $args ) { if ( has_filter( 'tgmpa_admin_menu_use_add_theme_page' ) ) { _deprecated_function( 'The "tgmpa_admin_menu_use_add_theme_page" filter', '2.5.0', esc_html__( 'Set the parent_slug config variable instead.', 'tgmpa' ) ); } if ( 'themes.php' === $this->parent_slug ) { $this->page_hook = call_user_func( 'add_theme_page', $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] ); } else { $this->page_hook = call_user_func( 'add_submenu_page', $args['parent_slug'], $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] ); } } /** * Echoes plugin installation form. * * This method is the callback for the admin_menu method function. * This displays the admin page and form area where the user can select to install and activate the plugin. * Aborts early if we're processing a plugin installation action. * * @since 1.0.0 * * @return null Aborts early if we're processing a plugin installation action. */ public function install_plugins_page() { // Store new instance of plugin table in object. $plugin_table = new TGMPA_List_Table(); // Return early if processing a plugin installation action. if ( ( ( 'tgmpa-bulk-install' === $plugin_table->current_action() || 'tgmpa-bulk-update' === $plugin_table->current_action() ) && $plugin_table->process_bulk_actions() ) || $this->do_plugin_install() ) { return; } // Force refresh of available plugin information so we'll know about manual updates/deletes. wp_clean_plugins_cache( false ); ?>

    prepare_items(); ?> message ) && is_string( $this->message ) ) { echo wp_kses_post( $this->message ); } ?> views(); ?>
    display(); ?>
    sanitize_key( urldecode( $_GET['plugin'] ) ); if ( ! isset( $this->plugins[ $slug ] ) ) { return false; } // Was an install or upgrade action link clicked? if ( ( isset( $_GET['tgmpa-install'] ) && 'install-plugin' === $_GET['tgmpa-install'] ) || ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) ) { $install_type = 'install'; if ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) { $install_type = 'update'; } check_admin_referer( 'tgmpa-' . $install_type, 'tgmpa-nonce' ); // Pass necessary information via URL if WP_Filesystem is needed. $url = wp_nonce_url( add_query_arg( array( 'plugin' => urlencode( $slug ), 'tgmpa-' . $install_type => $install_type . '-plugin', ), $this->get_tgmpa_url() ), 'tgmpa-' . $install_type, 'tgmpa-nonce' ); $method = ''; // Leave blank so WP_Filesystem can populate it as necessary. $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, array() ); if ( false === $creds ) { return true; } if ( ! WP_Filesystem( $creds ) ) { request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, array() ); // Setup WP_Filesystem. return true; } /* If we arrive here, we have the filesystem. */ // Prep variables for Plugin_Installer_Skin class. $extra = array(); $extra['slug'] = $slug; // Needed for potentially renaming of directory name. $source = $this->get_download_url( $slug ); $api = ( 'repo' === $this->plugins[ $slug ]['source_type'] ) ? $this->get_plugins_api( $slug ) : null; $api = ( false !== $api ) ? $api : null; $url = add_query_arg( array( 'action' => $install_type . '-plugin', 'plugin' => urlencode( $slug ), ), 'update.php' ); if ( ! class_exists( 'Plugin_Upgrader', false ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; } $title = ( 'update' === $install_type ) ? $this->strings['updating'] : $this->strings['installing']; $skin_args = array( 'type' => ( 'bundled' !== $this->plugins[ $slug ]['source_type'] ) ? 'web' : 'upload', 'title' => sprintf( $title, $this->plugins[ $slug ]['name'] ), 'url' => esc_url_raw( $url ), 'nonce' => $install_type . '-plugin_' . $slug, 'plugin' => '', 'api' => $api, 'extra' => $extra, ); unset( $title ); if ( 'update' === $install_type ) { $skin_args['plugin'] = $this->plugins[ $slug ]['file_path']; $skin = new Plugin_Upgrader_Skin( $skin_args ); } else { $skin = new Plugin_Installer_Skin( $skin_args ); } // Create a new instance of Plugin_Upgrader. $upgrader = new Plugin_Upgrader( $skin ); // Perform the action and install the plugin from the $source urldecode(). add_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1, 3 ); if ( 'update' === $install_type ) { // Inject our info into the update transient. $to_inject = array( $slug => $this->plugins[ $slug ], ); $to_inject[ $slug ]['source'] = $source; $this->inject_update_info( $to_inject ); $upgrader->upgrade( $this->plugins[ $slug ]['file_path'] ); } else { $upgrader->install( $source ); } remove_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1 ); // Make sure we have the correct file path now the plugin is installed/updated. $this->populate_file_path( $slug ); // Only activate plugins if the config option is set to true and the plugin isn't // already active (upgrade). if ( $this->is_automatic && ! $this->is_plugin_active( $slug ) ) { $plugin_activate = $upgrader->plugin_info(); // Grab the plugin info from the Plugin_Upgrader method. if ( false === $this->activate_single_plugin( $plugin_activate, $slug, true ) ) { return true; // Finish execution of the function early as we encountered an error. } } $this->show_tgmpa_version(); // Display message based on if all plugins are now active or not. if ( $this->is_tgmpa_complete() ) { echo '

    ', sprintf( esc_html( $this->strings['complete'] ), '' . esc_html( $this->strings['return'] ) . '' ), '

    '; echo ''; } else { echo '

    ', esc_html( $this->strings['return'] ), '

    '; } return true; } elseif ( isset( $this->plugins[ $slug ]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) { // Activate action link was clicked. check_admin_referer( 'tgmpa-activate', 'tgmpa-nonce' ); if ( false === $this->activate_single_plugin( $this->plugins[ $slug ]['file_path'], $slug ) ) { return true; // Finish execution of the function early as we encountered an error. } } return false; } /** * Inject information into the 'update_plugins' site transient as WP checks that before running an update. * * @since 2.5.0 * * @param array $plugins The plugin information for the plugins which are to be updated. */ public function inject_update_info( $plugins ) { $repo_updates = get_site_transient( 'update_plugins' ); if ( ! is_object( $repo_updates ) ) { $repo_updates = new stdClass(); } foreach ( $plugins as $slug => $plugin ) { $file_path = $plugin['file_path']; if ( empty( $repo_updates->response[ $file_path ] ) ) { $repo_updates->response[ $file_path ] = new stdClass(); } // We only really need to set package, but let's do all we can in case WP changes something. $repo_updates->response[ $file_path ]->slug = $slug; $repo_updates->response[ $file_path ]->plugin = $file_path; $repo_updates->response[ $file_path ]->new_version = $plugin['version']; $repo_updates->response[ $file_path ]->package = $plugin['source']; if ( empty( $repo_updates->response[ $file_path ]->url ) && ! empty( $plugin['external_url'] ) ) { $repo_updates->response[ $file_path ]->url = $plugin['external_url']; } } set_site_transient( 'update_plugins', $repo_updates ); } /** * Adjust the plugin directory name if necessary. * * The final destination directory of a plugin is based on the subdirectory name found in the * (un)zipped source. In some cases - most notably GitHub repository plugin downloads -, this * subdirectory name is not the same as the expected slug and the plugin will not be recognized * as installed. This is fixed by adjusting the temporary unzipped source subdirectory name to * the expected plugin slug. * * @since 2.5.0 * * @param string $source Path to upgrade/zip-file-name.tmp/subdirectory/. * @param string $remote_source Path to upgrade/zip-file-name.tmp. * @param \WP_Upgrader $upgrader Instance of the upgrader which installs the plugin. * @return string $source */ public function maybe_adjust_source_dir( $source, $remote_source, $upgrader ) { if ( ! $this->is_tgmpa_page() || ! is_object( $GLOBALS['wp_filesystem'] ) ) { return $source; } // Check for single file plugins. $source_files = array_keys( $GLOBALS['wp_filesystem']->dirlist( $remote_source ) ); if ( 1 === count( $source_files ) && false === $GLOBALS['wp_filesystem']->is_dir( $source ) ) { return $source; } // Multi-file plugin, let's see if the directory is correctly named. $desired_slug = ''; // Figure out what the slug is supposed to be. if ( false === $upgrader->bulk && ! empty( $upgrader->skin->options['extra']['slug'] ) ) { $desired_slug = $upgrader->skin->options['extra']['slug']; } else { // Bulk installer contains less info, so fall back on the info registered here. foreach ( $this->plugins as $slug => $plugin ) { if ( ! empty( $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) && $plugin['name'] === $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) { $desired_slug = $slug; break; } } unset( $slug, $plugin ); } if ( ! empty( $desired_slug ) ) { $subdir_name = untrailingslashit( str_replace( trailingslashit( $remote_source ), '', $source ) ); if ( ! empty( $subdir_name ) && $subdir_name !== $desired_slug ) { $from_path = untrailingslashit( $source ); $to_path = trailingslashit( $remote_source ) . $desired_slug; if ( true === $GLOBALS['wp_filesystem']->move( $from_path, $to_path ) ) { return trailingslashit( $to_path ); } else { return new WP_Error( 'rename_failed', esc_html__( 'The remote plugin package does not contain a folder with the desired slug and renaming did not work.', 'tgmpa' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'tgmpa' ), array( 'found' => $subdir_name, 'expected' => $desired_slug, ) ); } } elseif ( empty( $subdir_name ) ) { return new WP_Error( 'packaged_wrong', esc_html__( 'The remote plugin package consists of more than one file, but the files are not packaged in a folder.', 'tgmpa' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'tgmpa' ), array( 'found' => $subdir_name, 'expected' => $desired_slug, ) ); } } return $source; } /** * Activate a single plugin and send feedback about the result to the screen. * * @since 2.5.0 * * @param string $file_path Path within wp-plugins/ to main plugin file. * @param string $slug Plugin slug. * @param bool $automatic Whether this is an automatic activation after an install. Defaults to false. * This determines the styling of the output messages. * @return bool False if an error was encountered, true otherwise. */ protected function activate_single_plugin( $file_path, $slug, $automatic = false ) { if ( $this->can_plugin_activate( $slug ) ) { $activate = activate_plugin( $file_path ); if ( is_wp_error( $activate ) ) { echo '

    ', wp_kses_post( $activate->get_error_message() ), '

    ', '

    ', esc_html( $this->strings['return'] ), '

    '; return false; // End it here if there is an error with activation. } else { if ( ! $automatic ) { // Make sure message doesn't display again if bulk activation is performed // immediately after a single activation. if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK. echo '

    ', esc_html( $this->strings['activated_successfully'] ), ' ', esc_html( $this->plugins[ $slug ]['name'] ), '.

    '; } } else { // Simpler message layout for use on the plugin install page. echo '

    ', esc_html( $this->strings['plugin_activated'] ), '

    '; } } } elseif ( $this->is_plugin_active( $slug ) ) { // No simpler message format provided as this message should never be encountered // on the plugin install page. echo '

    ', sprintf( esc_html( $this->strings['plugin_already_active'] ), '' . esc_html( $this->plugins[ $slug ]['name'] ) . '' ), '

    '; } elseif ( $this->does_plugin_require_update( $slug ) ) { if ( ! $automatic ) { // Make sure message doesn't display again if bulk activation is performed // immediately after a single activation. if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK. echo '

    ', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), '' . esc_html( $this->plugins[ $slug ]['name'] ) . '' ), '

    '; } } else { // Simpler message layout for use on the plugin install page. echo '

    ', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), esc_html( $this->plugins[ $slug ]['name'] ) ), '

    '; } } return true; } /** * Echoes required plugin notice. * * Outputs a message telling users that a specific plugin is required for * their theme. If appropriate, it includes a link to the form page where * users can install and activate the plugin. * * Returns early if we're on the Install page. * * @since 1.0.0 * * @global object $current_screen * * @return null Returns early if we're on the Install page. */ public function notices() { // Remove nag on the install page / Return early if the nag message has been dismissed or user < author. if ( ( $this->is_tgmpa_page() || $this->is_core_update_page() ) || get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) || ! current_user_can( apply_filters( 'tgmpa_show_admin_notice_capability', 'publish_posts' ) ) ) { return; } // Store for the plugin slugs by message type. $message = array(); // Initialize counters used to determine plurality of action link texts. $install_link_count = 0; $update_link_count = 0; $activate_link_count = 0; $total_required_action_count = 0; foreach ( $this->plugins as $slug => $plugin ) { if ( $this->is_plugin_active( $slug ) && false === $this->does_plugin_have_update( $slug ) ) { continue; } if ( ! $this->is_plugin_installed( $slug ) ) { if ( current_user_can( 'install_plugins' ) ) { $install_link_count++; if ( true === $plugin['required'] ) { $message['notice_can_install_required'][] = $slug; } else { $message['notice_can_install_recommended'][] = $slug; } } if ( true === $plugin['required'] ) { $total_required_action_count++; } } else { if ( ! $this->is_plugin_active( $slug ) && $this->can_plugin_activate( $slug ) ) { if ( current_user_can( 'activate_plugins' ) ) { $activate_link_count++; if ( true === $plugin['required'] ) { $message['notice_can_activate_required'][] = $slug; } else { $message['notice_can_activate_recommended'][] = $slug; } } if ( true === $plugin['required'] ) { $total_required_action_count++; } } if ( $this->does_plugin_require_update( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) { if ( current_user_can( 'update_plugins' ) ) { $update_link_count++; if ( $this->does_plugin_require_update( $slug ) ) { $message['notice_ask_to_update'][] = $slug; } elseif ( false !== $this->does_plugin_have_update( $slug ) ) { $message['notice_ask_to_update_maybe'][] = $slug; } } if ( true === $plugin['required'] ) { $total_required_action_count++; } } } } unset( $slug, $plugin ); // If we have notices to display, we move forward. if ( ! empty( $message ) || $total_required_action_count > 0 ) { krsort( $message ); // Sort messages. $rendered = ''; // As add_settings_error() wraps the final message in a

    and as the final message can't be // filtered, using

    's in our html would render invalid html output. $line_template = '%s' . "\n"; if ( ! current_user_can( 'activate_plugins' ) && ! current_user_can( 'install_plugins' ) && ! current_user_can( 'update_plugins' ) ) { $rendered = esc_html( $this->strings['notice_cannot_install_activate'] ) . ' ' . esc_html( $this->strings['contact_admin'] ); $rendered .= $this->create_user_action_links_for_notice( 0, 0, 0, $line_template ); } else { // If dismissable is false and a message is set, output it now. if ( ! $this->dismissable && ! empty( $this->dismiss_msg ) ) { $rendered .= sprintf( $line_template, wp_kses_post( $this->dismiss_msg ) ); } // Render the individual message lines for the notice. foreach ( $message as $type => $plugin_group ) { $linked_plugins = array(); // Get the external info link for a plugin if one is available. foreach ( $plugin_group as $plugin_slug ) { $linked_plugins[] = $this->get_info_link( $plugin_slug ); } unset( $plugin_slug ); $count = count( $plugin_group ); $linked_plugins = array_map( array( 'TGMPA_Utils', 'wrap_in_em' ), $linked_plugins ); $last_plugin = array_pop( $linked_plugins ); // Pop off last name to prep for readability. $imploded = empty( $linked_plugins ) ? $last_plugin : ( implode( ', ', $linked_plugins ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'tgmpa' ) . ' ' . $last_plugin ); $rendered .= sprintf( $line_template, sprintf( translate_nooped_plural( $this->strings[ $type ], $count, 'tgmpa' ), $imploded, $count ) ); } unset( $type, $plugin_group, $linked_plugins, $count, $last_plugin, $imploded ); $rendered .= $this->create_user_action_links_for_notice( $install_link_count, $update_link_count, $activate_link_count, $line_template ); } // Register the nag messages and prepare them to be processed. add_settings_error( 'tgmpa', 'tgmpa', $rendered, $this->get_admin_notice_class() ); } // Admin options pages already output settings_errors, so this is to avoid duplication. if ( 'options-general' !== $GLOBALS['current_screen']->parent_base ) { $this->display_settings_errors(); } } /** * Generate the user action links for the admin notice. * * @since 2.6.0 * * @param int $install_count Number of plugins to install. * @param int $update_count Number of plugins to update. * @param int $activate_count Number of plugins to activate. * @param int $line_template Template for the HTML tag to output a line. * @return string Action links. */ protected function create_user_action_links_for_notice( $install_count, $update_count, $activate_count, $line_template ) { // Setup action links. $action_links = array( 'install' => '', 'update' => '', 'activate' => '', 'dismiss' => $this->dismissable ? '' . esc_html( $this->strings['dismiss'] ) . '' : '', ); $link_template = '%1$s'; if ( current_user_can( 'install_plugins' ) ) { if ( $install_count > 0 ) { $action_links['install'] = sprintf( $link_template, translate_nooped_plural( $this->strings['install_link'], $install_count, 'tgmpa' ), esc_url( $this->get_tgmpa_status_url( 'install' ) ) ); } if ( $update_count > 0 ) { $action_links['update'] = sprintf( $link_template, translate_nooped_plural( $this->strings['update_link'], $update_count, 'tgmpa' ), esc_url( $this->get_tgmpa_status_url( 'update' ) ) ); } } if ( current_user_can( 'activate_plugins' ) && $activate_count > 0 ) { $action_links['activate'] = sprintf( $link_template, translate_nooped_plural( $this->strings['activate_link'], $activate_count, 'tgmpa' ), esc_url( $this->get_tgmpa_status_url( 'activate' ) ) ); } $action_links = apply_filters( 'tgmpa_notice_action_links', $action_links ); $action_links = array_filter( (array) $action_links ); // Remove any empty array items. if ( ! empty( $action_links ) ) { $action_links = sprintf( $line_template, implode( ' | ', $action_links ) ); return apply_filters( 'tgmpa_notice_rendered_action_links', $action_links ); } else { return ''; } } /** * Get admin notice class. * * Work around all the changes to the various admin notice classes between WP 4.4 and 3.7 * (lowest supported version by TGMPA). * * @since 2.6.0 * * @return string */ protected function get_admin_notice_class() { if ( ! empty( $this->strings['nag_type'] ) ) { return sanitize_html_class( strtolower( $this->strings['nag_type'] ) ); } else { if ( version_compare( $this->wp_version, '4.2', '>=' ) ) { return 'notice-warning'; } elseif ( version_compare( $this->wp_version, '4.1', '>=' ) ) { return 'notice'; } else { return 'updated'; } } } /** * Display settings errors and remove those which have been displayed to avoid duplicate messages showing * * @since 2.5.0 */ protected function display_settings_errors() { global $wp_settings_errors; settings_errors( 'tgmpa' ); foreach ( (array) $wp_settings_errors as $key => $details ) { if ( 'tgmpa' === $details['setting'] ) { unset( $wp_settings_errors[ $key ] ); break; } } } /** * Register dismissal of admin notices. * * Acts on the dismiss link in the admin nag messages. * If clicked, the admin notice disappears and will no longer be visible to this user. * * @since 2.1.0 */ public function dismiss() { if ( isset( $_GET['tgmpa-dismiss'] ) && check_admin_referer( 'tgmpa-dismiss-' . get_current_user_id() ) ) { update_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, 1 ); } } /** * Add individual plugin to our collection of plugins. * * If the required keys are not set or the plugin has already * been registered, the plugin is not added. * * @since 2.0.0 * * @param array|null $plugin Array of plugin arguments or null if invalid argument. * @return null Return early if incorrect argument. */ public function register( $plugin ) { if ( empty( $plugin['slug'] ) || empty( $plugin['name'] ) ) { return; } if ( empty( $plugin['slug'] ) || ! is_string( $plugin['slug'] ) || isset( $this->plugins[ $plugin['slug'] ] ) ) { return; } $defaults = array( 'name' => '', // String. 'slug' => '', // String. 'source' => 'repo', // String. 'required' => false, // Boolean. 'version' => '', // String. 'force_activation' => false, // Boolean. 'force_deactivation' => false, // Boolean. 'external_url' => '', // String. 'is_callable' => '', // String|Array. ); // Prepare the received data. $plugin = wp_parse_args( $plugin, $defaults ); // Standardize the received slug. $plugin['slug'] = $this->sanitize_key( $plugin['slug'] ); // Forgive users for using string versions of booleans or floats for version number. $plugin['version'] = (string) $plugin['version']; $plugin['source'] = empty( $plugin['source'] ) ? 'repo' : $plugin['source']; $plugin['required'] = TGMPA_Utils::validate_bool( $plugin['required'] ); $plugin['force_activation'] = TGMPA_Utils::validate_bool( $plugin['force_activation'] ); $plugin['force_deactivation'] = TGMPA_Utils::validate_bool( $plugin['force_deactivation'] ); // Enrich the received data. $plugin['file_path'] = $this->_get_plugin_basename_from_slug( $plugin['slug'] ); $plugin['source_type'] = $this->get_plugin_source_type( $plugin['source'] ); // Set the class properties. $this->plugins[ $plugin['slug'] ] = $plugin; $this->sort_order[ $plugin['slug'] ] = $plugin['name']; // Should we add the force activation hook ? if ( true === $plugin['force_activation'] ) { $this->has_forced_activation = true; } // Should we add the force deactivation hook ? if ( true === $plugin['force_deactivation'] ) { $this->has_forced_deactivation = true; } } /** * Determine what type of source the plugin comes from. * * @since 2.5.0 * * @param string $source The source of the plugin as provided, either empty (= WP repo), a file path * (= bundled) or an external URL. * @return string 'repo', 'external', or 'bundled' */ protected function get_plugin_source_type( $source ) { if ( 'repo' === $source || preg_match( self::WP_REPO_REGEX, $source ) ) { return 'repo'; } elseif ( preg_match( self::IS_URL_REGEX, $source ) ) { return 'external'; } else { return 'bundled'; } } /** * Sanitizes a string key. * * Near duplicate of WP Core `sanitize_key()`. The difference is that uppercase characters *are* * allowed, so as not to break upgrade paths from non-standard bundled plugins using uppercase * characters in the plugin directory path/slug. Silly them. * * @see https://developer.wordpress.org/reference/hooks/sanitize_key/ * * @since 2.5.0 * * @param string $key String key. * @return string Sanitized key */ public function sanitize_key( $key ) { $raw_key = $key; $key = preg_replace( '`[^A-Za-z0-9_-]`', '', $key ); /** * Filter a sanitized key string. * * @since 2.5.0 * * @param string $key Sanitized key. * @param string $raw_key The key prior to sanitization. */ return apply_filters( 'tgmpa_sanitize_key', $key, $raw_key ); } /** * Amend default configuration settings. * * @since 2.0.0 * * @param array $config Array of config options to pass as class properties. */ public function config( $config ) { $keys = array( 'id', 'default_path', 'has_notices', 'dismissable', 'dismiss_msg', 'menu', 'parent_slug', 'capability', 'is_automatic', 'message', 'strings', ); foreach ( $keys as $key ) { if ( isset( $config[ $key ] ) ) { if ( is_array( $config[ $key ] ) ) { $this->$key = array_merge( $this->$key, $config[ $key ] ); } else { $this->$key = $config[ $key ]; } } } } /** * Amend action link after plugin installation. * * @since 2.0.0 * * @param array $install_actions Existing array of actions. * @return false|array Amended array of actions. */ public function actions( $install_actions ) { // Remove action links on the TGMPA install page. if ( $this->is_tgmpa_page() ) { return false; } return $install_actions; } /** * Flushes the plugins cache on theme switch to prevent stale entries * from remaining in the plugin table. * * @since 2.4.0 * * @param bool $clear_update_cache Optional. Whether to clear the Plugin updates cache. * Parameter added in v2.5.0. */ public function flush_plugins_cache( $clear_update_cache = true ) { wp_clean_plugins_cache( $clear_update_cache ); } /** * Set file_path key for each installed plugin. * * @since 2.1.0 * * @param string $plugin_slug Optional. If set, only (re-)populates the file path for that specific plugin. * Parameter added in v2.5.0. */ public function populate_file_path( $plugin_slug = '' ) { if ( ! empty( $plugin_slug ) && is_string( $plugin_slug ) && isset( $this->plugins[ $plugin_slug ] ) ) { $this->plugins[ $plugin_slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $plugin_slug ); } else { // Add file_path key for all plugins. foreach ( $this->plugins as $slug => $values ) { $this->plugins[ $slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $slug ); } } } /** * Helper function to extract the file path of the plugin file from the * plugin slug, if the plugin is installed. * * @since 2.0.0 * * @param string $slug Plugin slug (typically folder name) as provided by the developer. * @return string Either file path for plugin if installed, or just the plugin slug. */ protected function _get_plugin_basename_from_slug( $slug ) { $keys = array_keys( $this->get_plugins() ); foreach ( $keys as $key ) { if ( preg_match( '|^' . $slug . '/|', $key ) ) { return $key; } } return $slug; } /** * Retrieve plugin data, given the plugin name. * * Loops through the registered plugins looking for $name. If it finds it, * it returns the $data from that plugin. Otherwise, returns false. * * @since 2.1.0 * * @param string $name Name of the plugin, as it was registered. * @param string $data Optional. Array key of plugin data to return. Default is slug. * @return string|boolean Plugin slug if found, false otherwise. */ public function _get_plugin_data_from_name( $name, $data = 'slug' ) { foreach ( $this->plugins as $values ) { if ( $name === $values['name'] && isset( $values[ $data ] ) ) { return $values[ $data ]; } } return false; } /** * Retrieve the download URL for a package. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return string Plugin download URL or path to local file or empty string if undetermined. */ public function get_download_url( $slug ) { $dl_source = ''; switch ( $this->plugins[ $slug ]['source_type'] ) { case 'repo': return $this->get_wp_repo_download_url( $slug ); case 'external': return $this->plugins[ $slug ]['source']; case 'bundled': return $this->default_path . $this->plugins[ $slug ]['source']; } return $dl_source; // Should never happen. } /** * Retrieve the download URL for a WP repo package. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return string Plugin download URL. */ protected function get_wp_repo_download_url( $slug ) { $source = ''; $api = $this->get_plugins_api( $slug ); if ( false !== $api && isset( $api->download_link ) ) { $source = $api->download_link; } return $source; } /** * Try to grab information from WordPress API. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return object Plugins_api response object on success, WP_Error on failure. */ protected function get_plugins_api( $slug ) { static $api = array(); // Cache received responses. if ( ! isset( $api[ $slug ] ) ) { if ( ! function_exists( 'plugins_api' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; } $response = plugins_api( 'plugin_information', array( 'slug' => $slug, 'fields' => array( 'sections' => false, ), ) ); $api[ $slug ] = false; if ( is_wp_error( $response ) ) { wp_die( esc_html( $this->strings['oops'] ) ); } else { $api[ $slug ] = $response; } } return $api[ $slug ]; } /** * Retrieve a link to a plugin information page. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return string Fully formed html link to a plugin information page if available * or the plugin name if not. */ public function get_info_link( $slug ) { if ( ! empty( $this->plugins[ $slug ]['external_url'] ) && preg_match( self::IS_URL_REGEX, $this->plugins[ $slug ]['external_url'] ) ) { $link = sprintf( '%2$s', esc_url( $this->plugins[ $slug ]['external_url'] ), esc_html( $this->plugins[ $slug ]['name'] ) ); } elseif ( 'repo' === $this->plugins[ $slug ]['source_type'] ) { $url = add_query_arg( array( 'tab' => 'plugin-information', 'plugin' => urlencode( $slug ), 'TB_iframe' => 'true', 'width' => '640', 'height' => '500', ), self_admin_url( 'plugin-install.php' ) ); $link = sprintf( '%2$s', esc_url( $url ), esc_html( $this->plugins[ $slug ]['name'] ) ); } else { $link = esc_html( $this->plugins[ $slug ]['name'] ); // No hyperlink. } return $link; } /** * Determine if we're on the TGMPA Install page. * * @since 2.1.0 * * @return boolean True when on the TGMPA page, false otherwise. */ protected function is_tgmpa_page() { return isset( $_GET['page'] ) && $this->menu === $_GET['page']; } /** * Determine if we're on a WP Core installation/upgrade page. * * @since 2.6.0 * * @return boolean True when on a WP Core installation/upgrade page, false otherwise. */ protected function is_core_update_page() { // Current screen is not always available, most notably on the customizer screen. if ( ! function_exists( 'get_current_screen' ) ) { return false; } $screen = get_current_screen(); if ( 'update-core' === $screen->base ) { // Core update screen. return true; } elseif ( 'plugins' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok. // Plugins bulk update screen. return true; } elseif ( 'update' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok. // Individual updates (ajax call). return true; } return false; } /** * Retrieve the URL to the TGMPA Install page. * * I.e. depending on the config settings passed something along the lines of: * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins * * @since 2.5.0 * * @return string Properly encoded URL (not escaped). */ public function get_tgmpa_url() { static $url; if ( ! isset( $url ) ) { $parent = $this->parent_slug; if ( false === strpos( $parent, '.php' ) ) { $parent = 'admin.php'; } $url = add_query_arg( array( 'page' => urlencode( $this->menu ), ), self_admin_url( $parent ) ); } return $url; } /** * Retrieve the URL to the TGMPA Install page for a specific plugin status (view). * * I.e. depending on the config settings passed something along the lines of: * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=install * * @since 2.5.0 * * @param string $status Plugin status - either 'install', 'update' or 'activate'. * @return string Properly encoded URL (not escaped). */ public function get_tgmpa_status_url( $status ) { return add_query_arg( array( 'plugin_status' => urlencode( $status ), ), $this->get_tgmpa_url() ); } /** * Determine whether there are open actions for plugins registered with TGMPA. * * @since 2.5.0 * * @return bool True if complete, i.e. no outstanding actions. False otherwise. */ public function is_tgmpa_complete() { $complete = true; foreach ( $this->plugins as $slug => $plugin ) { if ( ! $this->is_plugin_active( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) { $complete = false; break; } } return $complete; } /** * Check if a plugin is installed. Does not take must-use plugins into account. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return bool True if installed, false otherwise. */ public function is_plugin_installed( $slug ) { $installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached). return ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ] ) ); } /** * Check if a plugin is active. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return bool True if active, false otherwise. */ public function is_plugin_active( $slug ) { return ( ( ! empty( $this->plugins[ $slug ]['is_callable'] ) && is_callable( $this->plugins[ $slug ]['is_callable'] ) ) || is_plugin_active( $this->plugins[ $slug ]['file_path'] ) ); } /** * Check if a plugin can be updated, i.e. if we have information on the minimum WP version required * available, check whether the current install meets them. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return bool True if OK to update, false otherwise. */ public function can_plugin_update( $slug ) { // We currently can't get reliable info on non-WP-repo plugins - issue #380. if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) { return true; } $api = $this->get_plugins_api( $slug ); if ( false !== $api && isset( $api->requires ) ) { return version_compare( $this->wp_version, $api->requires, '>=' ); } // No usable info received from the plugins API, presume we can update. return true; } /** * Check to see if the plugin is 'updatetable', i.e. installed, with an update available * and no WP version requirements blocking it. * * @since 2.6.0 * * @param string $slug Plugin slug. * @return bool True if OK to proceed with update, false otherwise. */ public function is_plugin_updatetable( $slug ) { if ( ! $this->is_plugin_installed( $slug ) ) { return false; } else { return ( false !== $this->does_plugin_have_update( $slug ) && $this->can_plugin_update( $slug ) ); } } /** * Check if a plugin can be activated, i.e. is not currently active and meets the minimum * plugin version requirements set in TGMPA (if any). * * @since 2.5.0 * * @param string $slug Plugin slug. * @return bool True if OK to activate, false otherwise. */ public function can_plugin_activate( $slug ) { return ( ! $this->is_plugin_active( $slug ) && ! $this->does_plugin_require_update( $slug ) ); } /** * Retrieve the version number of an installed plugin. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return string Version number as string or an empty string if the plugin is not installed * or version unknown (plugins which don't comply with the plugin header standard). */ public function get_installed_version( $slug ) { $installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached). if ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'] ) ) { return $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version']; } return ''; } /** * Check whether a plugin complies with the minimum version requirements. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return bool True when a plugin needs to be updated, otherwise false. */ public function does_plugin_require_update( $slug ) { $installed_version = $this->get_installed_version( $slug ); $minimum_version = $this->plugins[ $slug ]['version']; return version_compare( $minimum_version, $installed_version, '>' ); } /** * Check whether there is an update available for a plugin. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return false|string Version number string of the available update or false if no update available. */ public function does_plugin_have_update( $slug ) { // Presume bundled and external plugins will point to a package which meets the minimum required version. if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) { /** * this adds compatibility with themes plugins check for outdated plugins */ if ( class_exists( 'tagdiv_theme_plugins_setup', false ) ) { $instance = tagdiv_theme_plugins_setup::get_instance(); if ( $instance->theme_plugin_has_update($slug) ) { return true; } } if ( $this->does_plugin_require_update( $slug ) ) { return $this->plugins[ $slug ]['version']; } return false; } $repo_updates = get_site_transient( 'update_plugins' ); if ( isset( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version ) ) { return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version; } return false; } /** * Retrieve potential upgrade notice for a plugin. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return string The upgrade notice or an empty string if no message was available or provided. */ public function get_upgrade_notice( $slug ) { // We currently can't get reliable info on non-WP-repo plugins - issue #380. if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) { return ''; } $repo_updates = get_site_transient( 'update_plugins' ); if ( ! empty( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice ) ) { return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice; } return ''; } /** * Wrapper around the core WP get_plugins function, making sure it's actually available. * * @since 2.5.0 * * @param string $plugin_folder Optional. Relative path to single plugin folder. * @return array Array of installed plugins with plugin information. */ public function get_plugins( $plugin_folder = '' ) { if ( ! function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } return get_plugins( $plugin_folder ); } /** * Delete dismissable nag option when theme is switched. * * This ensures that the user(s) is/are again reminded via nag of required * and/or recommended plugins if they re-activate the theme. * * @since 2.1.1 */ public function update_dismiss() { delete_metadata( 'user', null, 'tgmpa_dismissed_notice_' . $this->id, null, true ); } /** * Forces plugin activation if the parameter 'force_activation' is * set to true. * * This allows theme authors to specify certain plugins that must be * active at all times while using the current theme. * * Please take special care when using this parameter as it has the * potential to be harmful if not used correctly. Setting this parameter * to true will not allow the specified plugin to be deactivated unless * the user switches themes. * * @since 2.2.0 */ public function force_activation() { foreach ( $this->plugins as $slug => $plugin ) { if ( true === $plugin['force_activation'] ) { if ( ! $this->is_plugin_installed( $slug ) ) { // Oops, plugin isn't there so iterate to next condition. continue; } elseif ( $this->can_plugin_activate( $slug ) ) { // There we go, activate the plugin. activate_plugin( $plugin['file_path'] ); } } } } /** * Forces plugin deactivation if the parameter 'force_deactivation' * is set to true and adds the plugin to the 'recently active' plugins list. * * This allows theme authors to specify certain plugins that must be * deactivated upon switching from the current theme to another. * * Please take special care when using this parameter as it has the * potential to be harmful if not used correctly. * * @since 2.2.0 */ public function force_deactivation() { $deactivated = array(); foreach ( $this->plugins as $slug => $plugin ) { /* * Only proceed forward if the parameter is set to true and plugin is active * as a 'normal' (not must-use) plugin. */ if ( true === $plugin['force_deactivation'] && is_plugin_active( $plugin['file_path'] ) ) { deactivate_plugins( $plugin['file_path'] ); $deactivated[ $plugin['file_path'] ] = time(); } } if ( ! empty( $deactivated ) ) { update_option( 'recently_activated', $deactivated + (array) get_option( 'recently_activated' ) ); } } /** * Echo the current TGMPA version number to the page. * * @since 2.5.0 */ public function show_tgmpa_version() { echo '

    ', esc_html( sprintf( /* translators: %s: version number */ __( 'TGMPA v%s', 'tgmpa' ), self::TGMPA_VERSION ) ), '

    '; } /** * Returns the singleton instance of the class. * * @since 2.4.0 * * @return \TGM_Plugin_Activation The TGM_Plugin_Activation object. */ public static function get_instance() { if ( ! isset( self::$instance ) && ! ( self::$instance instanceof self ) ) { self::$instance = new self(); } return self::$instance; } } if ( ! function_exists( 'load_tgm_plugin_activation' ) ) { /** * Ensure only one instance of the class is ever invoked. * * @since 2.5.0 */ function load_tgm_plugin_activation() { $GLOBALS['tgmpa'] = TGM_Plugin_Activation::get_instance(); } } if ( did_action( 'plugins_loaded' ) ) { load_tgm_plugin_activation(); } else { add_action( 'plugins_loaded', 'load_tgm_plugin_activation' ); } } if ( ! function_exists( 'tgmpa' ) ) { /** * Helper function to register a collection of required plugins. * * @since 2.0.0 * @api * * @param array $plugins An array of plugin arrays. * @param array $config Optional. An array of configuration values. */ function tgmpa( $plugins, $config = array() ) { $instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); foreach ( $plugins as $plugin ) { call_user_func( array( $instance, 'register' ), $plugin ); } if ( ! empty( $config ) && is_array( $config ) ) { // Send out notices for deprecated arguments passed. if ( isset( $config['notices'] ) ) { _deprecated_argument( __FUNCTION__, '2.2.0', 'The `notices` config parameter was renamed to `has_notices` in TGMPA 2.2.0. Please adjust your configuration.' ); if ( ! isset( $config['has_notices'] ) ) { $config['has_notices'] = $config['notices']; } } if ( isset( $config['parent_menu_slug'] ) ) { _deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_menu_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' ); } if ( isset( $config['parent_url_slug'] ) ) { _deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_url_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' ); } call_user_func( array( $instance, 'config' ), $config ); } } } /** * WP_List_Table isn't always available. If it isn't available, * we load it here. * * @since 2.2.0 */ if ( ! class_exists( 'WP_List_Table' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; } if ( ! class_exists( 'TGMPA_List_Table' ) ) { /** * List table class for handling plugins. * * Extends the WP_List_Table class to provide a future-compatible * way of listing out all required/recommended plugins. * * Gives users an interface similar to the Plugin Administration * area with similar (albeit stripped down) capabilities. * * This class also allows for the bulk install of plugins. * * @since 2.2.0 * * @package TGM-Plugin-Activation * @author Thomas Griffin * @author Gary Jones */ class TGMPA_List_Table extends WP_List_Table { /** * TGMPA instance. * * @since 2.5.0 * * @var object */ protected $tgmpa; /** * The currently chosen view. * * @since 2.5.0 * * @var string One of: 'all', 'install', 'update', 'activate' */ public $view_context = 'all'; /** * The plugin counts for the various views. * * @since 2.5.0 * * @var array */ protected $view_totals = array( 'all' => 0, 'install' => 0, 'update' => 0, 'activate' => 0, ); /** * References parent constructor and sets defaults for class. * * @since 2.2.0 */ public function __construct() { $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); parent::__construct( array( 'singular' => 'plugin', 'plural' => 'plugins', 'ajax' => false, ) ); if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'install', 'update', 'activate' ), true ) ) { $this->view_context = sanitize_key( $_REQUEST['plugin_status'] ); } add_filter( 'tgmpa_table_data_items', array( $this, 'sort_table_items' ) ); } /** * Get a list of CSS classes for the tag. * * Overruled to prevent the 'plural' argument from being added. * * @since 2.5.0 * * @return array CSS classnames. */ public function get_table_classes() { return array( 'widefat', 'fixed' ); } /** * Gathers and renames all of our plugin information to be used by WP_List_Table to create our table. * * @since 2.2.0 * * @return array $table_data Information for use in table. */ protected function _gather_plugin_data() { // Load thickbox for plugin links. $this->tgmpa->admin_init(); $this->tgmpa->thickbox(); // Categorize the plugins which have open actions. $plugins = $this->categorize_plugins_to_views(); // Set the counts for the view links. $this->set_view_totals( $plugins ); // Prep variables for use and grab list of all installed plugins. $table_data = array(); $i = 0; // Redirect to the 'all' view if no plugins were found for the selected view context. if ( empty( $plugins[ $this->view_context ] ) ) { $this->view_context = 'all'; } foreach ( $plugins[ $this->view_context ] as $slug => $plugin ) { $table_data[ $i ]['sanitized_plugin'] = $plugin['name']; $table_data[ $i ]['slug'] = $slug; $table_data[ $i ]['plugin'] = '' . $this->tgmpa->get_info_link( $slug ) . ''; $table_data[ $i ]['source'] = $this->get_plugin_source_type_text( $plugin['source_type'] ); $table_data[ $i ]['type'] = $this->get_plugin_advise_type_text( $plugin['required'] ); $table_data[ $i ]['status'] = $this->get_plugin_status_text( $slug ); $table_data[ $i ]['installed_version'] = $this->tgmpa->get_installed_version( $slug ); $table_data[ $i ]['minimum_version'] = $plugin['version']; $table_data[ $i ]['available_version'] = $this->tgmpa->does_plugin_have_update( $slug ); // Prep the upgrade notice info. $upgrade_notice = $this->tgmpa->get_upgrade_notice( $slug ); if ( ! empty( $upgrade_notice ) ) { $table_data[ $i ]['upgrade_notice'] = $upgrade_notice; add_action( "tgmpa_after_plugin_row_{$slug}", array( $this, 'wp_plugin_update_row' ), 10, 2 ); } $table_data[ $i ] = apply_filters( 'tgmpa_table_data_item', $table_data[ $i ], $plugin ); $i++; } return $table_data; } /** * Categorize the plugins which have open actions into views for the TGMPA page. * * @since 2.5.0 */ protected function categorize_plugins_to_views() { $plugins = array( 'all' => array(), // Meaning: all plugins which still have open actions. 'install' => array(), 'update' => array(), 'activate' => array(), ); foreach ( $this->tgmpa->plugins as $slug => $plugin ) { if ( $this->tgmpa->is_plugin_active( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) { // No need to display plugins if they are installed, up-to-date and active. continue; } else { $plugins['all'][ $slug ] = $plugin; if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) { $plugins['install'][ $slug ] = $plugin; } else { if ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) { $plugins['update'][ $slug ] = $plugin; } if ( $this->tgmpa->can_plugin_activate( $slug ) ) { $plugins['activate'][ $slug ] = $plugin; } } } } return $plugins; } /** * Set the counts for the view links. * * @since 2.5.0 * * @param array $plugins Plugins order by view. */ protected function set_view_totals( $plugins ) { foreach ( $plugins as $type => $list ) { $this->view_totals[ $type ] = count( $list ); } } /** * Get the plugin required/recommended text string. * * @since 2.5.0 * * @param string $required Plugin required setting. * @return string */ protected function get_plugin_advise_type_text( $required ) { if ( true === $required ) { return __( 'Required', 'tgmpa' ); } return __( 'Recommended', 'tgmpa' ); } /** * Get the plugin source type text string. * * @since 2.5.0 * * @param string $type Plugin type. * @return string */ protected function get_plugin_source_type_text( $type ) { $string = ''; switch ( $type ) { case 'repo': $string = __( 'WordPress Repository', 'tgmpa' ); break; case 'external': $string = __( 'External Source', 'tgmpa' ); break; case 'bundled': $string = __( 'Pre-Packaged', 'tgmpa' ); break; } return $string; } /** * Determine the plugin status message. * * @since 2.5.0 * * @param string $slug Plugin slug. * @return string */ protected function get_plugin_status_text( $slug ) { if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) { return __( 'Not Installed', 'tgmpa' ); } if ( ! $this->tgmpa->is_plugin_active( $slug ) ) { $install_status = __( 'Installed But Not Activated', 'tgmpa' ); } else { $install_status = __( 'Active', 'tgmpa' ); } $update_status = ''; if ( $this->tgmpa->does_plugin_require_update( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) { $update_status = __( 'Required Update not Available', 'tgmpa' ); } elseif ( $this->tgmpa->does_plugin_require_update( $slug ) ) { $update_status = __( 'Requires Update', 'tgmpa' ); } elseif ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) { $update_status = __( 'Update recommended', 'tgmpa' ); } if ( '' === $update_status ) { return $install_status; } return sprintf( /* translators: 1: install status, 2: update status */ _x( '%1$s, %2$s', 'Install/Update Status', 'tgmpa' ), $install_status, $update_status ); } /** * Sort plugins by Required/Recommended type and by alphabetical plugin name within each type. * * @since 2.5.0 * * @param array $items Prepared table items. * @return array Sorted table items. */ public function sort_table_items( $items ) { $type = array(); $name = array(); foreach ( $items as $i => $plugin ) { $type[ $i ] = $plugin['type']; // Required / recommended. $name[ $i ] = $plugin['sanitized_plugin']; } array_multisort( $type, SORT_DESC, $name, SORT_ASC, $items ); return $items; } /** * Get an associative array ( id => link ) of the views available on this table. * * @since 2.5.0 * * @return array */ public function get_views() { $status_links = array(); foreach ( $this->view_totals as $type => $count ) { if ( $count < 1 ) { continue; } switch ( $type ) { case 'all': /* translators: 1: number of plugins. */ $text = _nx( 'All (%s)', 'All (%s)', $count, 'plugins', 'tgmpa' ); break; case 'install': /* translators: 1: number of plugins. */ $text = _n( 'To Install (%s)', 'To Install (%s)', $count, 'tgmpa' ); break; case 'update': /* translators: 1: number of plugins. */ $text = _n( 'Update Available (%s)', 'Update Available (%s)', $count, 'tgmpa' ); break; case 'activate': /* translators: 1: number of plugins. */ $text = _n( 'To Activate (%s)', 'To Activate (%s)', $count, 'tgmpa' ); break; default: $text = ''; break; } if ( ! empty( $text ) ) { $status_links[ $type ] = sprintf( '%s', esc_url( $this->tgmpa->get_tgmpa_status_url( $type ) ), ( $type === $this->view_context ) ? ' class="current"' : '', sprintf( $text, number_format_i18n( $count ) ) ); } } return $status_links; } /** * Create default columns to display important plugin information * like type, action and status. * * @since 2.2.0 * * @param array $item Array of item data. * @param string $column_name The name of the column. * @return string */ public function column_default( $item, $column_name ) { return $item[ $column_name ]; } /** * Required for bulk installing. * * Adds a checkbox for each plugin. * * @since 2.2.0 * * @param array $item Array of item data. * @return string The input checkbox with all necessary info. */ public function column_cb( $item ) { return sprintf( '', esc_attr( $this->_args['singular'] ), esc_attr( $item['slug'] ), esc_attr( $item['sanitized_plugin'] ) ); } /** * Create default title column along with the action links. * * @since 2.2.0 * * @param array $item Array of item data. * @return string The plugin name and action links. */ public function column_plugin( $item ) { return sprintf( '%1$s %2$s', $item['plugin'], $this->row_actions( $this->get_row_actions( $item ), true ) ); } /** * Create version information column. * * @since 2.5.0 * * @param array $item Array of item data. * @return string HTML-formatted version information. */ public function column_version( $item ) { $output = array(); if ( $this->tgmpa->is_plugin_installed( $item['slug'] ) ) { $installed = ! empty( $item['installed_version'] ) ? $item['installed_version'] : _x( 'unknown', 'as in: "version nr unknown"', 'tgmpa' ); $color = ''; if ( ! empty( $item['minimum_version'] ) && $this->tgmpa->does_plugin_require_update( $item['slug'] ) ) { $color = ' color: #ff0000; font-weight: bold;'; } $output[] = sprintf( '

    %2$s' . __( 'Installed version:', 'tgmpa' ) . '

    ', $color, $installed ); } if ( ! empty( $item['minimum_version'] ) ) { $output[] = sprintf( '

    %1$s' . __( 'Minimum required version:', 'tgmpa' ) . '

    ', $item['minimum_version'] ); } if ( ! empty( $item['available_version'] ) ) { $color = ''; if ( ! empty( $item['minimum_version'] ) && version_compare( $item['available_version'], $item['minimum_version'], '>=' ) ) { $color = ' color: #71C671; font-weight: bold;'; } $output[] = sprintf( '

    %2$s' . __( 'Available version:', 'tgmpa' ) . '

    ', $color, $item['available_version'] ); } if ( empty( $output ) ) { return ' '; // Let's not break the table layout. } else { return implode( "\n", $output ); } } /** * Sets default message within the plugins table if no plugins * are left for interaction. * * Hides the menu item to prevent the user from clicking and * getting a permissions error. * * @since 2.2.0 */ public function no_items() { echo esc_html__( 'No plugins to install, update or activate.', 'tgmpa' ) . ' ' . esc_html( $this->tgmpa->strings['return'] ) . ''; echo ''; } /** * Output all the column information within the table. * * @since 2.2.0 * * @return array $columns The column names. */ public function get_columns() { $columns = array( 'cb' => '', 'plugin' => __( 'Plugin', 'tgmpa' ), 'source' => __( 'Source', 'tgmpa' ), 'type' => __( 'Type', 'tgmpa' ), ); if ( 'all' === $this->view_context || 'update' === $this->view_context ) { $columns['version'] = __( 'Version', 'tgmpa' ); $columns['status'] = __( 'Status', 'tgmpa' ); } return apply_filters( 'tgmpa_table_columns', $columns ); } /** * Get name of default primary column * * @since 2.5.0 / WP 4.3+ compatibility * @access protected * * @return string */ protected function get_default_primary_column_name() { return 'plugin'; } /** * Get the name of the primary column. * * @since 2.5.0 / WP 4.3+ compatibility * @access protected * * @return string The name of the primary column. */ protected function get_primary_column_name() { if ( method_exists( 'WP_List_Table', 'get_primary_column_name' ) ) { return parent::get_primary_column_name(); } else { return $this->get_default_primary_column_name(); } } /** * Get the actions which are relevant for a specific plugin row. * * @since 2.5.0 * * @param array $item Array of item data. * @return array Array with relevant action links. */ protected function get_row_actions( $item ) { $actions = array(); $action_links = array(); // Display the 'Install' action link if the plugin is not yet available. if ( ! $this->tgmpa->is_plugin_installed( $item['slug'] ) ) { /* translators: %2$s: plugin name in screen reader markup */ $actions['install'] = __( 'Install %2$s', 'tgmpa' ); } else { // Display the 'Update' action link if an update is available and WP complies with plugin minimum. if ( false !== $this->tgmpa->does_plugin_have_update( $item['slug'] ) && $this->tgmpa->can_plugin_update( $item['slug'] ) ) { /* translators: %2$s: plugin name in screen reader markup */ $actions['update'] = __( 'Update %2$s', 'tgmpa' ); } // Display the 'Activate' action link, but only if the plugin meets the minimum version. if ( $this->tgmpa->can_plugin_activate( $item['slug'] ) ) { /* translators: %2$s: plugin name in screen reader markup */ $actions['activate'] = __( 'Activate %2$s', 'tgmpa' ); } } // Create the actual links. foreach ( $actions as $action => $text ) { $nonce_url = wp_nonce_url( add_query_arg( array( 'plugin' => urlencode( $item['slug'] ), 'tgmpa-' . $action => $action . '-plugin', ), $this->tgmpa->get_tgmpa_url() ), 'tgmpa-' . $action, 'tgmpa-nonce' ); $action_links[ $action ] = sprintf( '' . esc_html( $text ) . '', // $text contains the second placeholder. esc_url( $nonce_url ), '' . esc_html( $item['sanitized_plugin'] ) . '' ); } $prefix = ( defined( 'WP_NETWORK_ADMIN' ) && WP_NETWORK_ADMIN ) ? 'network_admin_' : ''; return apply_filters( "tgmpa_{$prefix}plugin_action_links", array_filter( $action_links ), $item['slug'], $item, $this->view_context ); } /** * Generates content for a single row of the table. * * @since 2.5.0 * * @param object $item The current item. */ public function single_row( $item ) { echo ''; $this->single_row_columns( $item ); echo ''; /** * Fires after each specific row in the TGMPA Plugins list table. * * The dynamic portion of the hook name, `$item['slug']`, refers to the slug * for the plugin. * * @since 2.5.0 */ do_action( "tgmpa_after_plugin_row_{$item['slug']}", $item['slug'], $item, $this->view_context ); } /** * Show the upgrade notice below a plugin row if there is one. * * @since 2.5.0 * * @see /wp-admin/includes/update.php * * @param string $slug Plugin slug. * @param array $item The information available in this table row. * @return null Return early if upgrade notice is empty. */ public function wp_plugin_update_row( $slug, $item ) { if ( empty( $item['upgrade_notice'] ) ) { return; } echo ' '; } /** * Extra controls to be displayed between bulk actions and pagination. * * @since 2.5.0 * * @param string $which Either 'top' or 'bottom' table navigation. */ public function extra_tablenav( $which ) { if ( 'bottom' === $which ) { $this->tgmpa->show_tgmpa_version(); } } /** * Defines the bulk actions for handling registered plugins. * * @since 2.2.0 * * @return array $actions The bulk actions for the plugin install table. */ public function get_bulk_actions() { $actions = array(); if ( 'update' !== $this->view_context && 'activate' !== $this->view_context ) { if ( current_user_can( 'install_plugins' ) ) { $actions['tgmpa-bulk-install'] = __( 'Install', 'tgmpa' ); } } if ( 'install' !== $this->view_context ) { if ( current_user_can( 'update_plugins' ) ) { $actions['tgmpa-bulk-update'] = __( 'Update', 'tgmpa' ); } if ( current_user_can( 'activate_plugins' ) ) { $actions['tgmpa-bulk-activate'] = __( 'Activate', 'tgmpa' ); } } return $actions; } /** * Processes bulk installation and activation actions. * * The bulk installation process looks for the $_POST information and passes that * through if a user has to use WP_Filesystem to enter their credentials. * * @since 2.2.0 */ public function process_bulk_actions() { // Bulk installation process. if ( 'tgmpa-bulk-install' === $this->current_action() || 'tgmpa-bulk-update' === $this->current_action() ) { check_admin_referer( 'bulk-' . $this->_args['plural'] ); $install_type = 'install'; if ( 'tgmpa-bulk-update' === $this->current_action() ) { $install_type = 'update'; } $plugins_to_install = array(); // Did user actually select any plugins to install/update ? if ( empty( $_POST['plugin'] ) ) { if ( 'install' === $install_type ) { $message = __( 'No plugins were selected to be installed. No action taken.', 'tgmpa' ); } else { $message = __( 'No plugins were selected to be updated. No action taken.', 'tgmpa' ); } echo '

    ', esc_html( $message ), '

    '; return false; } if ( is_array( $_POST['plugin'] ) ) { $plugins_to_install = (array) $_POST['plugin']; } elseif ( is_string( $_POST['plugin'] ) ) { // Received via Filesystem page - un-flatten array (WP bug #19643). $plugins_to_install = explode( ',', $_POST['plugin'] ); } // Sanitize the received input. $plugins_to_install = array_map( 'urldecode', $plugins_to_install ); $plugins_to_install = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins_to_install ); // Validate the received input. foreach ( $plugins_to_install as $key => $slug ) { // Check if the plugin was registered with TGMPA and remove if not. if ( ! isset( $this->tgmpa->plugins[ $slug ] ) ) { unset( $plugins_to_install[ $key ] ); continue; } // For install: make sure this is a plugin we *can* install and not one already installed. if ( 'install' === $install_type && true === $this->tgmpa->is_plugin_installed( $slug ) ) { unset( $plugins_to_install[ $key ] ); } // For updates: make sure this is a plugin we *can* update (update available and WP version ok). if ( 'update' === $install_type && false === $this->tgmpa->is_plugin_updatetable( $slug ) ) { unset( $plugins_to_install[ $key ] ); } } // No need to proceed further if we have no plugins to handle. if ( empty( $plugins_to_install ) ) { if ( 'install' === $install_type ) { $message = __( 'No plugins are available to be installed at this time.', 'tgmpa' ); } else { $message = __( 'No plugins are available to be updated at this time.', 'tgmpa' ); } echo '

    ', esc_html( $message ), '

    '; return false; } // Pass all necessary information if WP_Filesystem is needed. $url = wp_nonce_url( $this->tgmpa->get_tgmpa_url(), 'bulk-' . $this->_args['plural'] ); // Give validated data back to $_POST which is the only place the filesystem looks for extra fields. $_POST['plugin'] = implode( ',', $plugins_to_install ); // Work around for WP bug #19643. $method = ''; // Leave blank so WP_Filesystem can populate it as necessary. $fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem. $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ); if ( false === $creds ) { return true; // Stop the normal page form from displaying, credential request form will be shown. } // Now we have some credentials, setup WP_Filesystem. if ( ! WP_Filesystem( $creds ) ) { // Our credentials were no good, ask the user for them again. request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields ); return true; } /* If we arrive here, we have the filesystem */ // Store all information in arrays since we are processing a bulk installation. $names = array(); $sources = array(); // Needed for installs. $file_paths = array(); // Needed for upgrades. $to_inject = array(); // Information to inject into the update_plugins transient. // Prepare the data for validated plugins for the install/upgrade. foreach ( $plugins_to_install as $slug ) { $name = $this->tgmpa->plugins[ $slug ]['name']; $source = $this->tgmpa->get_download_url( $slug ); if ( ! empty( $name ) && ! empty( $source ) ) { $names[] = $name; switch ( $install_type ) { case 'install': $sources[] = $source; break; case 'update': $file_paths[] = $this->tgmpa->plugins[ $slug ]['file_path']; $to_inject[ $slug ] = $this->tgmpa->plugins[ $slug ]; $to_inject[ $slug ]['source'] = $source; break; } } } unset( $slug, $name, $source ); // Create a new instance of TGMPA_Bulk_Installer. $installer = new TGMPA_Bulk_Installer( new TGMPA_Bulk_Installer_Skin( array( 'url' => esc_url_raw( $this->tgmpa->get_tgmpa_url() ), 'nonce' => 'bulk-' . $this->_args['plural'], 'names' => $names, 'install_type' => $install_type, ) ) ); // Wrap the install process with the appropriate HTML. echo '
    ', '

    ', esc_html( get_admin_page_title() ), '

    '; // Process the bulk installation submissions. add_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1, 3 ); if ( 'tgmpa-bulk-update' === $this->current_action() ) { // Inject our info into the update transient. $this->tgmpa->inject_update_info( $to_inject ); $installer->bulk_upgrade( $file_paths ); } else { $installer->bulk_install( $sources ); } remove_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1 ); echo '
    '; return true; } // Bulk activation process. if ( 'tgmpa-bulk-activate' === $this->current_action() ) { check_admin_referer( 'bulk-' . $this->_args['plural'] ); // Did user actually select any plugins to activate ? if ( empty( $_POST['plugin'] ) ) { echo '

    ', esc_html__( 'No plugins were selected to be activated. No action taken.', 'tgmpa' ), '

    '; return false; } // Grab plugin data from $_POST. $plugins = array(); if ( isset( $_POST['plugin'] ) ) { $plugins = array_map( 'urldecode', (array) $_POST['plugin'] ); $plugins = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins ); } $plugins_to_activate = array(); $plugin_names = array(); // Grab the file paths for the selected & inactive plugins from the registration array. foreach ( $plugins as $slug ) { if ( $this->tgmpa->can_plugin_activate( $slug ) ) { $plugins_to_activate[] = $this->tgmpa->plugins[ $slug ]['file_path']; $plugin_names[] = $this->tgmpa->plugins[ $slug ]['name']; } } unset( $slug ); // Return early if there are no plugins to activate. if ( empty( $plugins_to_activate ) ) { echo '

    ', esc_html__( 'No plugins are available to be activated at this time.', 'tgmpa' ), '

    '; return false; } // Now we are good to go - let's start activating plugins. $activate = activate_plugins( $plugins_to_activate ); if ( is_wp_error( $activate ) ) { echo '

    ', wp_kses_post( $activate->get_error_message() ), '

    '; } else { $count = count( $plugin_names ); // Count so we can use _n function. $plugin_names = array_map( array( 'TGMPA_Utils', 'wrap_in_strong' ), $plugin_names ); $last_plugin = array_pop( $plugin_names ); // Pop off last name to prep for readability. $imploded = empty( $plugin_names ) ? $last_plugin : ( implode( ', ', $plugin_names ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'tgmpa' ) . ' ' . $last_plugin ); printf( // WPCS: xss ok. '

    %1$s %2$s.

    ', esc_html( _n( 'The following plugin was activated successfully:', 'The following plugins were activated successfully:', $count, 'tgmpa' ) ), $imploded ); // Update recently activated plugins option. $recent = (array) get_option( 'recently_activated' ); foreach ( $plugins_to_activate as $plugin => $time ) { if ( isset( $recent[ $plugin ] ) ) { unset( $recent[ $plugin ] ); } } update_option( 'recently_activated', $recent ); } unset( $_POST ); // Reset the $_POST variable in case user wants to perform one action after another. return true; } return false; } /** * Prepares all of our information to be outputted into a usable table. * * @since 2.2.0 */ public function prepare_items() { $columns = $this->get_columns(); // Get all necessary column information. $hidden = array(); // No columns to hide, but we must set as an array. $sortable = array(); // No reason to make sortable columns. $primary = $this->get_primary_column_name(); // Column which has the row actions. $this->_column_headers = array( $columns, $hidden, $sortable, $primary ); // Get all necessary column headers. // Process our bulk activations here. if ( 'tgmpa-bulk-activate' === $this->current_action() ) { $this->process_bulk_actions(); } // Store all of our plugin data into $items array so WP_List_Table can use it. $this->items = apply_filters( 'tgmpa_table_data_items', $this->_gather_plugin_data() ); } /* *********** DEPRECATED METHODS *********** */ /** * Retrieve plugin data, given the plugin name. * * @since 2.2.0 * @deprecated 2.5.0 use {@see TGM_Plugin_Activation::_get_plugin_data_from_name()} instead. * @see TGM_Plugin_Activation::_get_plugin_data_from_name() * * @param string $name Name of the plugin, as it was registered. * @param string $data Optional. Array key of plugin data to return. Default is slug. * @return string|boolean Plugin slug if found, false otherwise. */ protected function _get_plugin_data_from_name( $name, $data = 'slug' ) { _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'TGM_Plugin_Activation::_get_plugin_data_from_name()' ); return $this->tgmpa->_get_plugin_data_from_name( $name, $data ); } } } if ( ! class_exists( 'TGM_Bulk_Installer' ) ) { /** * Hack: Prevent TGMPA v2.4.1- bulk installer class from being loaded if 2.4.1- is loaded after 2.5+. * * @since 2.5.2 * * {@internal The TGMPA_Bulk_Installer class was originally called TGM_Bulk_Installer. * For more information, see that class.}} */ class TGM_Bulk_Installer { } } if ( ! class_exists( 'TGM_Bulk_Installer_Skin' ) ) { /** * Hack: Prevent TGMPA v2.4.1- bulk installer skin class from being loaded if 2.4.1- is loaded after 2.5+. * * @since 2.5.2 * * {@internal The TGMPA_Bulk_Installer_Skin class was originally called TGM_Bulk_Installer_Skin. * For more information, see that class.}} */ class TGM_Bulk_Installer_Skin { } } /** * The WP_Upgrader file isn't always available. If it isn't available, * we load it here. * * We check to make sure no action or activation keys are set so that WordPress * does not try to re-include the class when processing upgrades or installs outside * of the class. * * @since 2.2.0 */ add_action( 'admin_init', 'tgmpa_load_bulk_installer' ); if ( ! function_exists( 'tgmpa_load_bulk_installer' ) ) { /** * Load bulk installer */ function tgmpa_load_bulk_installer() { // Silently fail if 2.5+ is loaded *after* an older version. if ( ! isset( $GLOBALS['tgmpa'] ) ) { return; } // Get TGMPA class instance. $tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); if ( isset( $_GET['page'] ) && $tgmpa_instance->menu === $_GET['page'] ) { if ( ! class_exists( 'Plugin_Upgrader', false ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; } if ( ! class_exists( 'TGMPA_Bulk_Installer' ) ) { /** * Installer class to handle bulk plugin installations. * * Extends WP_Upgrader and customizes to suit the installation of multiple * plugins. * * @since 2.2.0 * * {@internal Since 2.5.0 the class is an extension of Plugin_Upgrader rather than WP_Upgrader.}} * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer to TGMPA_Bulk_Installer. * This was done to prevent backward compatibility issues with v2.3.6.}} * * @package TGM-Plugin-Activation * @author Thomas Griffin * @author Gary Jones */ class TGMPA_Bulk_Installer extends Plugin_Upgrader { /** * Holds result of bulk plugin installation. * * @since 2.2.0 * * @var string */ public $result; /** * Flag to check if bulk installation is occurring or not. * * @since 2.2.0 * * @var boolean */ public $bulk = false; /** * TGMPA instance * * @since 2.5.0 * * @var object */ protected $tgmpa; /** * Whether or not the destination directory needs to be cleared ( = on update). * * @since 2.5.0 * * @var bool */ protected $clear_destination = false; /** * References parent constructor and sets defaults for class. * * @since 2.2.0 * * @param \Bulk_Upgrader_Skin|null $skin Installer skin. */ public function __construct( $skin = null ) { // Get TGMPA class instance. $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); parent::__construct( $skin ); if ( isset( $this->skin->options['install_type'] ) && 'update' === $this->skin->options['install_type'] ) { $this->clear_destination = true; } if ( $this->tgmpa->is_automatic ) { $this->activate_strings(); } add_action( 'upgrader_process_complete', array( $this->tgmpa, 'populate_file_path' ) ); } /** * Sets the correct activation strings for the installer skin to use. * * @since 2.2.0 */ public function activate_strings() { $this->strings['activation_failed'] = __( 'Plugin activation failed.', 'tgmpa' ); $this->strings['activation_success'] = __( 'Plugin activated successfully.', 'tgmpa' ); } /** * Performs the actual installation of each plugin. * * @since 2.2.0 * * @see WP_Upgrader::run() * * @param array $options The installation config options. * @return null|array Return early if error, array of installation data on success. */ public function run( $options ) { $result = parent::run( $options ); // Reset the strings in case we changed one during automatic activation. if ( $this->tgmpa->is_automatic ) { if ( 'update' === $this->skin->options['install_type'] ) { $this->upgrade_strings(); } else { $this->install_strings(); } } return $result; } /** * Processes the bulk installation of plugins. * * @since 2.2.0 * * {@internal This is basically a near identical copy of the WP Core * Plugin_Upgrader::bulk_upgrade() method, with minor adjustments to deal with * new installs instead of upgrades. * For ease of future synchronizations, the adjustments are clearly commented, but no other * comments are added. Code style has been made to comply.}} * * @see Plugin_Upgrader::bulk_upgrade() * @see https://core.trac.wordpress.org/browser/tags/4.2.1/src/wp-admin/includes/class-wp-upgrader.php#L838 * (@internal Last synced: Dec 31st 2015 against https://core.trac.wordpress.org/browser/trunk?rev=36134}} * * @param array $plugins The plugin sources needed for installation. * @param array $args Arbitrary passed extra arguments. * @return array|false Install confirmation messages on success, false on failure. */ public function bulk_install( $plugins, $args = array() ) { // [TGMPA + ] Hook auto-activation in. add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); $defaults = array( 'clear_update_cache' => true, ); $parsed_args = wp_parse_args( $args, $defaults ); $this->init(); $this->bulk = true; $this->install_strings(); // [TGMPA + ] adjusted. /* [TGMPA - ] $current = get_site_transient( 'update_plugins' ); */ /* [TGMPA - ] add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); */ $this->skin->header(); // Connect to the Filesystem first. $res = $this->fs_connect( array( WP_CONTENT_DIR, WP_PLUGIN_DIR ) ); if ( ! $res ) { $this->skin->footer(); return false; } $this->skin->bulk_header(); /* * Only start maintenance mode if: * - running Multisite and there are one or more plugins specified, OR * - a plugin with an update available is currently active. * !!!!: For multisite, maintenance mode should only kick in for individual sites if at all possible. */ $maintenance = ( is_multisite() && ! empty( $plugins ) ); /* [TGMPA - ] foreach ( $plugins as $plugin ) $maintenance = $maintenance || ( is_plugin_active( $plugin ) && isset( $current->response[ $plugin] ) ); */ if ( $maintenance ) { $this->maintenance_mode( true ); } $results = array(); $this->update_count = count( $plugins ); $this->update_current = 0; foreach ( $plugins as $plugin ) { $this->update_current++; /* [TGMPA - ] $this->skin->plugin_info = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin, false, true); if ( !isset( $current->response[ $plugin ] ) ) { $this->skin->set_result('up_to_date'); $this->skin->before(); $this->skin->feedback('up_to_date'); $this->skin->after(); $results[$plugin] = true; continue; } // Get the URL to the zip file. $r = $current->response[ $plugin ]; $this->skin->plugin_active = is_plugin_active($plugin); */ $result = $this->run( array( 'package' => $plugin, // [TGMPA + ] adjusted. 'destination' => WP_PLUGIN_DIR, 'clear_destination' => false, // [TGMPA + ] adjusted. 'clear_working' => true, 'is_multi' => true, 'hook_extra' => array( 'plugin' => $plugin, ), ) ); $results[ $plugin ] = $this->result; // Prevent credentials auth screen from displaying multiple times. if ( false === $result ) { break; } } $this->maintenance_mode( false ); /** * Fires when the bulk upgrader process is complete. * * @since WP 3.6.0 / TGMPA 2.5.0 * * @param Plugin_Upgrader $this Plugin_Upgrader instance. In other contexts, $this, might * be a Theme_Upgrader or Core_Upgrade instance. * @param array $data { * Array of bulk item update data. * * @type string $action Type of action. Default 'update'. * @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'. * @type bool $bulk Whether the update process is a bulk update. Default true. * @type array $packages Array of plugin, theme, or core packages to update. * } */ do_action( // WPCS: prefix OK. 'upgrader_process_complete', $this, array( 'action' => 'install', // [TGMPA + ] adjusted. 'type' => 'plugin', 'bulk' => true, 'plugins' => $plugins, ) ); $this->skin->bulk_footer(); $this->skin->footer(); // Cleanup our hooks, in case something else does a upgrade on this connection. /* [TGMPA - ] remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); */ // [TGMPA + ] Remove our auto-activation hook. remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); // Force refresh of plugin update information. wp_clean_plugins_cache( $parsed_args['clear_update_cache'] ); return $results; } /** * Handle a bulk upgrade request. * * @since 2.5.0 * * @see Plugin_Upgrader::bulk_upgrade() * * @param array $plugins The local WP file_path's of the plugins which should be upgraded. * @param array $args Arbitrary passed extra arguments. * @return string|bool Install confirmation messages on success, false on failure. */ public function bulk_upgrade( $plugins, $args = array() ) { add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); $result = parent::bulk_upgrade( $plugins, $args ); remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); return $result; } /** * Abuse a filter to auto-activate plugins after installation. * * Hooked into the 'upgrader_post_install' filter hook. * * @since 2.5.0 * * @param bool $bool The value we need to give back (true). * @return bool */ public function auto_activate( $bool ) { // Only process the activation of installed plugins if the automatic flag is set to true. if ( $this->tgmpa->is_automatic ) { // Flush plugins cache so the headers of the newly installed plugins will be read correctly. wp_clean_plugins_cache(); // Get the installed plugin file. $plugin_info = $this->plugin_info(); // Don't try to activate on upgrade of active plugin as WP will do this already. if ( ! is_plugin_active( $plugin_info ) ) { $activate = activate_plugin( $plugin_info ); // Adjust the success string based on the activation result. $this->strings['process_success'] = $this->strings['process_success'] . "
    \n"; if ( is_wp_error( $activate ) ) { $this->skin->error( $activate ); $this->strings['process_success'] .= $this->strings['activation_failed']; } else { $this->strings['process_success'] .= $this->strings['activation_success']; } } } return $bool; } } } if ( ! class_exists( 'TGMPA_Bulk_Installer_Skin' ) ) { /** * Installer skin to set strings for the bulk plugin installations.. * * Extends Bulk_Upgrader_Skin and customizes to suit the installation of multiple * plugins. * * @since 2.2.0 * * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer_Skin to * TGMPA_Bulk_Installer_Skin. * This was done to prevent backward compatibility issues with v2.3.6.}} * * @see https://core.trac.wordpress.org/browser/trunk/src/wp-admin/includes/class-wp-upgrader-skins.php * * @package TGM-Plugin-Activation * @author Thomas Griffin * @author Gary Jones */ class TGMPA_Bulk_Installer_Skin extends Bulk_Upgrader_Skin { /** * Holds plugin info for each individual plugin installation. * * @since 2.2.0 * * @var array */ public $plugin_info = array(); /** * Holds names of plugins that are undergoing bulk installations. * * @since 2.2.0 * * @var array */ public $plugin_names = array(); /** * Integer to use for iteration through each plugin installation. * * @since 2.2.0 * * @var integer */ public $i = 0; /** * TGMPA instance * * @since 2.5.0 * * @var object */ protected $tgmpa; /** * Constructor. Parses default args with new ones and extracts them for use. * * @since 2.2.0 * * @param array $args Arguments to pass for use within the class. */ public function __construct( $args = array() ) { // Get TGMPA class instance. $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); // Parse default and new args. $defaults = array( 'url' => '', 'nonce' => '', 'names' => array(), 'install_type' => 'install', ); $args = wp_parse_args( $args, $defaults ); // Set plugin names to $this->plugin_names property. $this->plugin_names = $args['names']; // Extract the new args. parent::__construct( $args ); } /** * Sets install skin strings for each individual plugin. * * Checks to see if the automatic activation flag is set and uses the * the proper strings accordingly. * * @since 2.2.0 */ public function add_strings() { if ( 'update' === $this->options['install_type'] ) { parent::add_strings(); /* translators: 1: plugin name, 2: action number 3: total number of actions. */ $this->upgrader->strings['skin_before_update_header'] = __( 'Updating Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); } else { /* translators: 1: plugin name, 2: error message. */ $this->upgrader->strings['skin_update_failed_error'] = __( 'An error occurred while installing %1$s: %2$s.', 'tgmpa' ); /* translators: 1: plugin name. */ $this->upgrader->strings['skin_update_failed'] = __( 'The installation of %1$s failed.', 'tgmpa' ); if ( $this->tgmpa->is_automatic ) { // Automatic activation strings. $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation and activation process is starting. This process may take a while on some hosts, so please be patient.', 'tgmpa' ); /* translators: 1: plugin name. */ $this->upgrader->strings['skin_update_successful'] = __( '%1$s installed and activated successfully.', 'tgmpa' ); $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations and activations have been completed.', 'tgmpa' ); /* translators: 1: plugin name, 2: action number 3: total number of actions. */ $this->upgrader->strings['skin_before_update_header'] = __( 'Installing and Activating Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); } else { // Default installation strings. $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation process is starting. This process may take a while on some hosts, so please be patient.', 'tgmpa' ); /* translators: 1: plugin name. */ $this->upgrader->strings['skin_update_successful'] = __( '%1$s installed successfully.', 'tgmpa' ); $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations have been completed.', 'tgmpa' ); /* translators: 1: plugin name, 2: action number 3: total number of actions. */ $this->upgrader->strings['skin_before_update_header'] = __( 'Installing Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); } // Add "read more" link only for WP < 4.8. if ( version_compare( $this->tgmpa->wp_version, '4.8', '<' ) ) { $this->upgrader->strings['skin_update_successful'] .= ' ' . esc_html__( 'Show Details', 'tgmpa' ) . '.'; } } } /** * Outputs the header strings and necessary JS before each plugin installation. * * @since 2.2.0 * * @param string $title Unused in this implementation. */ public function before( $title = '' ) { if ( empty( $title ) ) { $title = esc_html( $this->plugin_names[ $this->i ] ); } parent::before( $title ); } /** * Outputs the footer strings and necessary JS after each plugin installation. * * Checks for any errors and outputs them if they exist, else output * success strings. * * @since 2.2.0 * * @param string $title Unused in this implementation. */ public function after( $title = '' ) { if ( empty( $title ) ) { $title = esc_html( $this->plugin_names[ $this->i ] ); } parent::after( $title ); $this->i++; } /** * Outputs links after bulk plugin installation is complete. * * @since 2.2.0 */ public function bulk_footer() { // Serve up the string to say installations (and possibly activations) are complete. parent::bulk_footer(); // Flush plugins cache so we can make sure that the installed plugins list is always up to date. wp_clean_plugins_cache(); $this->tgmpa->show_tgmpa_version(); // Display message based on if all plugins are now active or not. $update_actions = array(); if ( $this->tgmpa->is_tgmpa_complete() ) { // All plugins are active, so we display the complete string and hide the menu to protect users. echo ''; $update_actions['dashboard'] = sprintf( esc_html( $this->tgmpa->strings['complete'] ), '' . esc_html( $this->tgmpa->strings['return'] ) . '' ); } else { $update_actions['tgmpa_page'] = '' . esc_html( $this->tgmpa->strings['return'] ) . ''; } /** * Filter the list of action links available following bulk plugin installs/updates. * * @since 2.5.0 * * @param array $update_actions Array of plugin action links. * @param array $plugin_info Array of information for the last-handled plugin. */ $update_actions = apply_filters( 'tgmpa_update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info ); if ( ! empty( $update_actions ) ) { $this->feedback( implode( ' | ', (array) $update_actions ) ); } } /* *********** DEPRECATED METHODS *********** */ /** * Flush header output buffer. * * @since 2.2.0 * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead * @see Bulk_Upgrader_Skin::flush_output() */ public function before_flush_output() { _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' ); $this->flush_output(); } /** * Flush footer output buffer and iterate $this->i to make sure the * installation strings reference the correct plugin. * * @since 2.2.0 * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead * @see Bulk_Upgrader_Skin::flush_output() */ public function after_flush_output() { _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' ); $this->flush_output(); $this->i++; } } } } } } if ( ! class_exists( 'TGMPA_Utils' ) ) { /** * Generic utilities for TGMPA. * * All methods are static, poor-dev name-spacing class wrapper. * * Class was called TGM_Utils in 2.5.0 but renamed TGMPA_Utils in 2.5.1 as this was conflicting with Soliloquy. * * @since 2.5.0 * * @package TGM-Plugin-Activation * @author Juliette Reinders Folmer */ class TGMPA_Utils { /** * Whether the PHP filter extension is enabled. * * @see http://php.net/book.filter * * @since 2.5.0 * * @static * * @var bool $has_filters True is the extension is enabled. */ public static $has_filters; /** * Wrap an arbitrary string in tags. Meant to be used in combination with array_map(). * * @since 2.5.0 * * @static * * @param string $string Text to be wrapped. * @return string */ public static function wrap_in_em( $string ) { return '' . wp_kses_post( $string ) . ''; } /** * Wrap an arbitrary string in tags. Meant to be used in combination with array_map(). * * @since 2.5.0 * * @static * * @param string $string Text to be wrapped. * @return string */ public static function wrap_in_strong( $string ) { return '' . wp_kses_post( $string ) . ''; } /** * Helper function: Validate a value as boolean * * @since 2.5.0 * * @static * * @param mixed $value Arbitrary value. * @return bool */ public static function validate_bool( $value ) { if ( ! isset( self::$has_filters ) ) { self::$has_filters = extension_loaded( 'filter' ); } if ( self::$has_filters ) { return filter_var( $value, FILTER_VALIDATE_BOOLEAN ); } else { return self::emulate_filter_bool( $value ); } } /** * Helper function: Cast a value to bool * * @since 2.5.0 * * @static * * @param mixed $value Value to cast. * @return bool */ protected static function emulate_filter_bool( $value ) { // @codingStandardsIgnoreStart static $true = array( '1', 'true', 'True', 'TRUE', 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON', ); static $false = array( '0', 'false', 'False', 'FALSE', 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF', ); // @codingStandardsIgnoreEnd if ( is_bool( $value ) ) { return $value; } elseif ( is_int( $value ) && ( 0 === $value || 1 === $value ) ) { return (bool) $value; } elseif ( ( is_float( $value ) && ! is_nan( $value ) ) && ( (float) 0 === $value || (float) 1 === $value ) ) { return (bool) $value; } elseif ( is_string( $value ) ) { $value = trim( $value ); if ( in_array( $value, $true, true ) ) { return true; } elseif ( in_array( $value, $false, true ) ) { return false; } else { return false; } } return false; } } // End of class TGMPA_Utils } includes/wp-booster/wp-admin/plugins/class-tagdiv-theme-plugins-setup.php000064400000033701150211537140022662 0ustar00init_globals(); $this->init_actions(); } public function init_globals() { $this->page_slug = 'theme-plugins-setup'; $this->page_url = 'admin.php?page='.$this->page_slug; //set relative plugin path url $this->plugin_path = trailingslashit( $this->cleanFilePath( dirname( __FILE__ ) ) ); $relative_url = str_replace( $this->cleanFilePath( TAGDIV_ROOT_DIR ), '', $this->plugin_path ); $this->plugin_url = trailingslashit( get_template_directory_uri() . $relative_url ); } public function init_actions() { if( class_exists( 'TGM_Plugin_Activation' ) && isset( $GLOBALS['tgmpa'] ) ) { add_action( 'init', function (){ $this->tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); }, 30 ); add_action( 'init', function(){ $this->tgmpa_menu_slug = ( property_exists($this->tgmpa_instance, 'menu' ) ) ? $this->tgmpa_instance->menu : $this->tgmpa_menu_slug; $tgmpa_parent_slug = ( property_exists($this->tgmpa_instance, 'parent_slug' ) && $this->tgmpa_instance->parent_slug !== 'themes.php' ) ? 'admin.php' : 'themes.php'; $this->tgmpa_url = $tgmpa_parent_slug.'?page='.$this->tgmpa_menu_slug; }, 40 ); } add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); add_filter( 'tgmpa_load', function (){ return is_admin() || current_user_can( 'install_themes' ); }); add_action( 'wp_ajax_theme_plugins_setup', array( $this, 'ajax_plugins' ) ); } public static function cleanFilePath( $path ) { $path = str_replace( '', '', str_replace( array( "\\", "\\\\" ), '/', $path ) ); if ( $path[ strlen( $path ) - 1 ] === '/' ) { $path = rtrim( $path, '/' ); } return $path; } public function enqueue_scripts() { wp_enqueue_script( 'theme-plugins-setup', TAGDIV_ROOT . '/includes/wp-booster/wp-admin/js/tagdiv-theme-plugins-setup.js', array( 'jquery' ), wp_get_theme()->get('Version') ); wp_localize_script( 'theme-plugins-setup', 'theme_plugins_setup_params', array( 'tgm_plugin_nonce' => array( 'update' => wp_create_nonce( 'tgmpa-update' ), 'install' => wp_create_nonce( 'tgmpa-install' ), ), 'tgm_bulk_url' => admin_url( $this->tgmpa_url ), 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'wpnonce' => wp_create_nonce( 'theme_plugins_setup_nonce' ), 'verify_text' => 'Verifying...', ) ); } private function _get_plugins( $all_plugins = true ) { $instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); $plugins = array( 'all' => array(), // Meaning: all plugins which still have open actions. 'install' => array(), 'update' => array(), 'activate' => array(), ); $theme_plugins = array(); // get all theme plugins slugs foreach( tagdiv_global::$theme_plugins_list as $plugin ) { if( isset( $plugin['slug'] ) ) { $theme_plugins[] = $plugin['slug']; } } foreach ( $instance->plugins as $slug => $plugin ) { // go to the next if it's not a theme plugin if ( ! in_array( $slug, $theme_plugins ) ) { continue; } // go further only for plugins set from config to be installed from the welcome panel and if plugin was not deactivated by the theme if ( ! $all_plugins && false === $this->theme_deactivated_plugin( $plugin ) && false === $plugin['td_install_in_welcome'] ) { continue; } // skip to the next if this plugin is active and is not outdated if ( tagdiv_util::is_active( $plugin ) && false === $instance->does_plugin_have_update( $slug ) && false === $this->theme_plugin_has_update( $slug ) ) { continue; } else { $plugins['all'][ $slug ] = $plugin; if ( ! $instance->is_plugin_installed( $slug ) ) { $plugins['install'][ $slug ] = $plugin; } else { if ( false !== $instance->does_plugin_have_update( $slug ) || false !== $this->theme_plugin_has_update( $slug ) ) { $plugins['update'][ $slug ] = $plugin; } if ( $instance->can_plugin_activate( $slug ) ) { $plugins['activate'][ $slug ] = $plugin; } } } } return $plugins; } public function theme_plugins( $plugins_for_update = null ) { tgmpa_load_bulk_installer(); // install plugins with TGM. if ( ! class_exists( 'TGM_Plugin_Activation' ) || ! isset( $GLOBALS['tgmpa'] ) ) { die( 'Failed to find TGM' ); } $url = wp_nonce_url( add_query_arg( array( 'plugins' => 'go' ) ), 'theme-plugins-setup' ); // copied from TGM $method = ''; // Leave blank so WP_Filesystem can populate it as necessary. $fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem. if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) { return true; // Stop the normal page form from displaying, credential request form will be shown. } // Now we have some credentials, setup WP_Filesystem. if ( ! WP_Filesystem( $creds ) ) { // Our credentials were no good, ask the user for them again. request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields ); return true; } /* If we arrive here, we have the filesystem */ $all_plugins = true; if ( ! is_array( $plugins_for_update ) ) { $all_plugins = false; } $plugins = $this->_get_plugins($all_plugins); $td_theme = ( defined('TD_COMPOSER') && td_util::get_option('tds_white_label') !== '' ) ? td_util::get_wl_val('tds_wl_theme_name', TD_THEME_NAME) : TD_THEME_NAME; $td_brand = ( defined('TD_COMPOSER') && td_util::get_option('tds_white_label') !== '' ) ? td_util::get_wl_val('tds_wl_brand', 'tagDiv') : 'tagDiv'; if ( count( $plugins['all'] ) ) { ?>

    1. Install or Update the required plugins

    Easily Install and Activate the following plugins

    Updating all tagDiv plugins...

      $plugin ) { if ( is_array( $plugins_for_update ) && ! in_array( $slug, $plugins_for_update )) { continue; } ?>
    • / '; } else { echo 'Outdated'; } } if ( isset( $plugins['activate'][ $slug ] ) ) { echo 'Inactive'; } ?>
    >

    1. Plugins are now Successfully Installed

    Done! You have Installed all the Required Plugins

    1, 'message' => 'No Slug Found' ) ); } $json = array(); // send back some json we use to hit up TGM $plugins = $this->_get_plugins(); $post_slug = sanitize_text_field( $_POST['slug'] ); // what are we doing with this plugin? foreach ( $plugins['activate'] as $slug => $plugin ) { if ( $post_slug == $slug ) { $json = array( 'url' => admin_url( $this->tgmpa_url ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-activate', 'action2' => -1, 'message' => 'Activating Plugin', ); break; } } foreach ( $plugins['update'] as $slug => $plugin ) { if ( $post_slug == $slug ) { $json = array( 'url' => admin_url( $this->tgmpa_url ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-update', 'action2' => -1, 'message' => 'Updating Plugin', ); break; } } foreach ( $plugins['install'] as $slug => $plugin ) { if ( $post_slug == $slug ) { $json = array( 'url' => admin_url( $this->tgmpa_url ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-install', 'action2' => -1, 'message' => 'Installing Plugin', ); break; } } if ( $json ) { $json['hash'] = md5( serialize( $json ) ); // used for checking if duplicates happen, move to next plugin wp_send_json($json); } else { wp_send_json( array( //'$plugins' => $plugins, //'$post_slug' => $post_slug, 'done' => 1, 'message' => 'Success' ) ); } exit; } public function theme_plugin_has_update( $slug ) { //there are issues with ABSPATH on wp.com servers, so we use WP_PLUGIN_DIR check $file_data bellow // $plugins_path = ABSPATH . 'wp-content/plugins'; $plugin = $slug . '/' . $slug . '.php'; $has_update = false; foreach ( tagdiv_global::get_td_plugins() as $constant => $settings ) { $plugin_name = strtolower( str_replace('_', '-', $constant) ); if ( $plugin_name !== $slug ) { continue; } //read plugin file global $wp_filesystem; //there are issues with ABSPATH on wp.com servers, so we use WP_PLUGIN_DIR $file_data = $wp_filesystem->get_contents( WP_PLUGIN_DIR . '/' . $plugin ); preg_match('/define\s*\(\s*\'' . $constant . '\'\s*\,\s*\'(.*)\'\s*\)/', $file_data, $matches); if ( ! isset( $matches[1] ) || $matches[1] !== $settings['version'] ) { $has_update = true; } } return $has_update; } public function theme_deactivated_plugin( $plugin ) { $theme_deactivated_plugin_array = tagdiv_options::get_array( 'td_theme_deactivated_plugins' ); // if the plugin is set in the deactivated plugins list if ( isset( $theme_deactivated_plugin_array[$plugin['slug']] ) ) { // if the plugin has been updated remove it from theme deactivated plugins list if ( false === $this->theme_plugin_has_update( $plugin['slug'] ) && tagdiv_util::is_active( $plugin ) ) { unset( $theme_deactivated_plugin_array[$plugin['slug']] ); tagdiv_options::update_array('td_theme_deactivated_plugins', $theme_deactivated_plugin_array ); } else { return true; } } return false; } } includes/wp-booster/wp-admin/plugins/class-tagdiv-current-plugins-deactivation.php000064400000007077150211537140024563 0ustar00 $settings ) { $plugin_slug = strtolower( str_replace('_', '-', $constant ) ); $plugin = $plugin_slug . '/' . $plugin_slug . '.php'; //except AMP which is an external plugin if( $plugin == 'amp/amp.php' ) { continue; } // get the td_config plugin data array $config_plugin_data_array = array(); foreach ( tagdiv_global::$theme_plugins_list as $theme_plugin ) { if ( $theme_plugin['td_class'] === $settings['class'] ) { $config_plugin_data_array = $theme_plugin; } } if ( ! empty( $config_plugin_data_array ) && tagdiv_util::is_active( $config_plugin_data_array ) ) { $plugins_to_deactivate[] = $plugin; self::$td_plugins_deactivated[$plugin_slug] = $plugin; $td_db_store_deactivated_plugins[$plugin_slug] = $settings['version']; } } // store a list of plugins deactivated by theme if ( !empty( $td_db_store_deactivated_plugins ) ) { $theme_deactivated_plugins_array = tagdiv_options::get_array( 'td_theme_deactivated_current_plugins' ); if ( empty( $theme_deactivated_plugins_array ) ) { tagdiv_options::update_array('td_theme_deactivated_current_plugins', $td_db_store_deactivated_plugins ); } else { tagdiv_options::update_array('td_theme_deactivated_current_plugins', array_merge( $theme_deactivated_plugins_array, $td_db_store_deactivated_plugins ) ); } } if ( !empty( $plugins_to_deactivate ) ) { if ( in_array('td-composer/td-composer.php', $plugins_to_deactivate ) ) { if ( class_exists( 'td_panel', false ) ) { remove_action( 'admin_menu', array( td_panel::get_instance(), 'register_theme_panel' ), 11 ); } if ( class_exists( 'td_js', false ) ) { remove_action( 'admin_menu', array( td_js::get_instance(), 'td_js_register_panel' ), 12 ); } } deactivate_plugins( $plugins_to_deactivate ); if ( $delete_plugins ) { delete_plugins( $plugins_to_deactivate ); } } } function td_deactivate_message() { //don't display this notification on Welcome and Plugins page if ( isset( $_GET['page'] ) && ( $_GET['page'] === 'td_theme_welcome' || $_GET['page'] === 'td_theme_plugins' ) ) { return; } if ( !empty( self::$td_plugins_deactivated ) ) { $message = '

    Plugins disabled automatically

    The following plugins were disabled because they are incompatible with this version of ' . TD_THEME_NAME . ':

    '; foreach ( self::$td_plugins_deactivated as $plugin_slug => $plugin ) { $plugin_data = get_plugin_data( ABSPATH . 'wp-content/plugins/' . $plugin ); $message .= '
  • ' . $plugin_data['Name'] . '
  • '; } $message .= '

    For update please check the plugins section

    '; new tagdiv_admin_notices($message, array('notice-error', 'is-dismissible', 'td-plugins-deactivated-notice')); } } } includes/wp-booster/wp-admin/js/tagdiv-theme-plugins-setup.js000064400000041646150211537140020346 0ustar00 var ThemePluginsSetup = (function($){ 'use strict'; var t; // callbacks from form button clicks. var callbacks = { install_plugins: function(btn){ var plugins = new PluginManager(); plugins.init(btn); } }; function window_loaded(){ // init button clicks: $('.td-button-install-plugins').on( 'click', function(e) { if( $(this).data('callback') && typeof callbacks[$(this).data('callback')] !== 'undefined' ){ // we have to process a callback before continue with form submission callbacks[$(this).data('callback')](this); return false; } else { return true; } }); } function PluginManager(){ var complete; var items_completed = 0; var current_item = ''; var $current_node; var current_item_hash = ''; function ajax_callback(response){ if( typeof response === 'object' && typeof response.message !== 'undefined' ) { $current_node.find('.themes-plugin-status-txt').text( response.message ); if( typeof response.url !== 'undefined' ) { // we have an ajax url action to perform. if( response.hash === current_item_hash ) { $current_node.find('.themes-plugin-status-txt').text("Failed"); $current_node.data('status','failed'); find_next(); } else { current_item_hash = response.hash; jQuery.post( response.url, response, function(response2) { process_current(); $current_node.find('.themes-plugin-status-txt').text( theme_plugins_setup_params.verify_text ); }).fail(ajax_callback); } } else if( typeof response.done !== 'undefined' ) { // finished processing this plugin, move onto next find_next(); } else { // error processing this plugin find_next(); } } else { // error - try again with next plugin $current_node.find('.themes-plugin-status-txt').text("Ajax error"); $current_node.data('status','failed'); find_next(); } } function process_current(){ if( current_item ){ // query our ajax handler to get the ajax to send to TGM // if we don't get a reply we can assume everything worked and continue onto the next one. jQuery.post( theme_plugins_setup_params.ajaxurl, { action: 'theme_plugins_setup', wpnonce: theme_plugins_setup_params.wpnonce, slug: current_item }, ajax_callback ).fail(ajax_callback); } } function find_next(){ var do_next = false; if( $current_node ){ if( ! $current_node.data( 'done_item' ) ){ items_completed++; $current_node.data( 'done_item', 1 ); } $current_node.find( '.spinner' ).css( 'visibility','hidden' ); } var $li = $('.theme-plugins-setup li'); $li.each( function(){ if( current_item === '' || do_next ){ current_item = $(this).data('slug'); $current_node = $(this); $current_node.find( '.spinner' ).css( 'visibility','visible' ); process_current(); do_next = false; } else if ( $(this).data('slug') === current_item ){ do_next = true; } }); if( items_completed >= $li.length ){ // finished all plugins! complete(); } } return { init: function(btn){ var pluginsWrap = $('.td-admin-setup-plugins'), pluginsInstalled = $('.theme-plugins-installed'), $widgetCloudLibrary = $('.td-cloud-library-widget'); pluginsWrap.addClass('td-installing-plugins'); jQuery(btn).attr( 'disabled', true ); complete = function() { setTimeout( function () { var failedPlugins = []; var instaledPlugins = []; $('.theme-plugins-setup li').each( function () { var $this = $(this); if ( $this.data('status') === 'failed' ) { failedPlugins.push( $this.data('slug') ); } else { instaledPlugins.push( $this.data('slug') ); } }); if ( ! failedPlugins.includes( 'td-composer' ) && instaledPlugins.includes( 'td-composer' ) ) { // this checks the theme activation status via ajax and adds the activation tab accordingly jQuery.get( theme_plugins_setup_params.ajaxurl, { action: 'td_ajax_theme_status_check', wpnonce: theme_plugins_setup_params.wpnonce }, function (response) { if( response.status === false ) { $('.nav-tab-wrapper').append( 'Activate theme' ); $('#toplevel_page_td_theme_welcome').find('.wp-submenu').append( '
  • Activate theme
  • ' ); } }, 'json' ).fail(function(MLHttpRequest, textStatus, errorThrown){ console.log(errorThrown); }); $('.nav-tab-wrapper').find('a[href$="td_theme_plugins"]').after( 'Prebuilt Websites\n' + 'System status\n' + 'Updates' + 'Theme panel' ); $('#toplevel_page_td_theme_welcome').find('.wp-submenu').find('li:nth-child(3)').after( '
  • Prebuilt Websites
  • ' + '
  • System status' + '
  • Updates' + '
  • Theme panel
  • ' ); } if ( failedPlugins.length === 0 ) { pluginsInstalled.show(); pluginsWrap.hide(); $widgetCloudLibrary.show(); // we need refresh to load js from plugins if ( window.self === window.top ){ window.location.href = pluginsWrap.find('#td_theme_welcome_link').val(); } else { window.top.location.href = pluginsWrap.find('#td_theme_welcome_link').val(); } } else { $('.theme-plugins-setup').after( '

    ' + 'An error occurred and we could not finish the process.
    Please manually update the plugins.' + '

    ' ); } pluginsWrap.removeClass('td-installing-plugins'); }, 700); }; // pluginsInstalledImg.on('load', function () { // pluginsWrap.removeClass('td-installing-plugins'); // pluginsWrap.addClass('td-installed-plugins'); // }); find_next(); } } } return { init: function(){ t = this; $(window_loaded); } } })(jQuery); ThemePluginsSetup.init(); // jQuery(window).on( "YoastSEO:ready", function() { // // if ( typeof YoastSEO !== 'undefined' && typeof YoastSEO.app !== "undefined" ) { // // YoastSEO.app.registerPlugin( 'tdYoastSEOPlugin', { status: 'loading' } ); // // window.tdYoastSEOUpdateContent = function() { // // //console.log( 'tdYoastSEOUpdateContent' ); // // if ( 'undefined' !== typeof window.tdYoastSEOUpdateContentFlag ) { // return; // } // // window.tdYoastSEOUpdateContentFlag = setTimeout(function() { // window.tdYoastSEOUpdateContentFlag = undefined; // }, 1500 ); // // var content = wp.data.select('core/editor').getEditedPostContent(); // // jQuery.ajax({ // timeout: 10000, // type: 'POST', // url: td_ajax_url, // beforeSend: function ( xhr ) { // xhr.setRequestHeader( 'X-WP-Nonce', window.tdwGlobal.wpRestNonce ); // }, // dataType: 'json', // data: { // action: 'td_render_content', // content: content // } // }).done( function( data, textStatus, jqXHR ) { // // if ( 'success' === textStatus && 'undefined' !== typeof data.content ) { // // YoastSEO.app.registerModification( 'content', function() { return data.content; }, 'tdYoastSEOPlugin', 5 ); // // wp.data.dispatch( 'core/notices' ).createNotice( 'info', 'Yoast SEO Analysis has been updated!', { id: 'td_yoast_info'} ); // // setTimeout( function() { // wp.data.dispatch( 'core/notices' ).removeNotice('td_yoast_info'); // }, 1200 ); // } // }).fail(function( jqXHR, textStatus, errorThrown ) { // console.log(errorThrown); // }); // }; // // tdYoastSEOUpdateContent(); // // YoastSEO.app.pluginReady( 'tdYoastSEOPlugin' ); // } // }); jQuery(window).on('load', function () { var $body = jQuery('body'); $body.on( 'mousedown', '.theme.active .update-message, .td-welcome-update-theme, #update-theme', function (event) { event.preventDefault(); event.stopPropagation(); if ( 'undefined' !== typeof window.tdData ) { var $checkedLicence = window.tdData.checkedLicence, $htmlInfoContent = 'VERY IMPORTANT! Before updating to ' + Object.keys(window.tdData.version)[0] + ' version, please ensure the theme has full access permissions to the WordPress folders (or temporarily deactivate any security plugin). We also recommend you make a complete website and database backup. Read more


    Continue to update?', $hideNoButton = false, $textYes = 'Update', $url = window.tdData.adminUrl + 'update-core.php?action=do-theme-upgrade&update_theme=' + window.tdData.themeName; if ( $checkedLicence !== 'SUCCESS' ) { $htmlInfoContent = 'You are about to start updating to the new theme version available ' + Object.keys(window.tdData.version)[0] + '. Continue to the update page?'; $hideNoButton = true; $textYes = 'Ok'; $url = window.tdData.adminUrl + 'admin.php?page=td_theme_updates'; } tdConfirm.modal({ caption: 'Update Theme & Plugins', //htmlInfoContent: 'The theme version will change to ' + Object.keys(window.tdData.version)[0] + '. The activated plugins should be automatically updated and reactivated!', url: '#TB_inline?inlineId=td-confirm&width=780', htmlInfoContent: $htmlInfoContent, switchButtons: false, textYes: $textYes, hideNoButton: $hideNoButton, callbackYes: function () { jQuery.ajax({ type: 'POST', url: td_ajax_url, data: { action: 'td_ajax_change_theme_version', version: Object.keys(window.tdData.version)[0], url: Object.values(window.tdData.version)[0], }, success: function (data, textStatus, XMLHttpRequest) { console.log('success'); console.log(textStatus); console.log(data); window.location.replace( $url ); }, error: function (MLHttpRequest, textStatus, errorThrown) { //console.log(errorThrown); } }); tb_remove(); }, }); } return false; }).on( 'click', '.td-admin-accordion-title', function (event) { event.preventDefault(); let $this = jQuery(this), $accordionItem = $this.closest('.td-admin-accordion-item'), $accordionItemContent = $accordionItem.find('.td-admin-accordion-content'); $accordionItemContent.slideToggle(); if( $accordionItem.hasClass('td-admin-accordion-item-open') ) { $accordionItem.removeClass('td-admin-accordion-item-open') } else { $accordionItem.addClass('td-admin-accordion-item-open') } }); }); var tdReports = { initialized: false, _error: undefined, _themeName: undefined, _themeVersion: undefined, $_iframe: undefined, _buffer: [], init: function () { if (tdReports.initialized) { return; } jQuery('#iframe-reports').on('load', function () { tdReports.$_iframe = jQuery(this); if ( tdReports._buffer.length ) { tdReports._buffer.forEach(function(msg) { tdReports.$_iframe[0].contentWindow.postMessage(msg, '*'); }); tdReports._buffer = []; } }); tdReports.initialized = true; }, report: function(serverName, httpHost, httpReferer, httpUserAgent, themeName, themeVersion, plugins, errNo, errStr, errFile, errLine ) { jQuery(document).ready(function () { tdReports.init(); }); var msg = JSON.stringify({ serverName: serverName, httpHost: httpHost, httpReferer: httpReferer, httpUserAgent: httpUserAgent, themeName: themeName, themeVersion: themeVersion, plugins: plugins, errNo: errNo, errStr: errStr, errFile: errFile, errLine: errLine }); if ( 'undefined' === typeof tdReports.$_iframe ) { tdReports._buffer.push(msg); } else { tdReports.$_iframe[0].contentWindow.postMessage(msg, '*'); } } }; jQuery(document).ready(function () { tdReports.init(); }); includes/wp-booster/wp-admin/tagdiv-view-support.php000064400000001355150211537140016643 0ustar00

    support

    We know what it’s like to need support. This is the reason why our customers are the top priority and we treat every issue with the utmost seriousness. The team is working hard to help every customer, to keep the theme’s documentation up to date, to produce video tutorials and to develop new ways to make everything easier.

    You can count on us, we are here for you!


    includes/wp-booster/tagdiv-log.php000064400000005002150211537140013215 0ustar00 TD Log section if ( $td_log_status === 'off' ) { return; } // read the cache from db if needed if (empty(self::$log_cache)) { self::$log_cache = get_option(TD_THEME_OPTIONS_NAME . '_log'); } // limit the log size if ( is_array(self::$log_cache) or is_object(self::$log_cache) ) { if (count(self::$log_cache) > 20) { array_shift(self::$log_cache); //remove first element } } if ( self::$log_cache === false ) { self::$log_cache = array(); } self::$log_cache []= array( 'file' => $file, 'function' => $function, 'msg' => $msg, 'more_data' => $more_data, 'timestamp' => time() //date('j/n/Y G:i:s') ); // make sure that we hook only once if (self::$is_shutdown_hooked === false) { add_action('shutdown', array(__CLASS__, 'on_shutdown_save_log'), 11); // we sometimes have to log from the shutdown hook with 10 priority self::$is_shutdown_hooked = true; } } /** * Logs a message ONLY if @see td_log::$log_info is TRUE. Used to log mossage that are not always requiered, only on debug. * @param $file * @param $function * @param $msg * @param string $more_data */ static function log_info($file, $function, $msg, $more_data = '') { if (self::$log_info === true) { self::log($file, $function, $msg, $more_data); } } // save the log if needed static function on_shutdown_save_log() { update_option(TD_THEME_OPTIONS_NAME . '_log', self::$log_cache); } } includes/wp-booster/tagdiv-util.php000064400000013441150211537140013417 0ustar00theme) && ( 'Newspaper' === $item->theme || 'Newsmag' === $item->theme)) { return false; } return $update; }, 999, 2); /** * Admin notices */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/tagdiv-admin-notices.php' ); /** * The global state of the theme. All globals are here */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/tagdiv-global.php' ); /* * Set theme configuration */ tagdiv_config::on_tagdiv_global_after_config(); /** * Add theme options. */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/tagdiv-options.php' ); /** * Add theme utility. */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/tagdiv-util.php' ); /** * Add theme http request ability. */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/tagdiv-log.php' ); /** * Add theme http request ability. */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/tagdiv-remote-http.php' ); /** * ---------------------------------------------------------------------------- * Redirect to Welcome page on theme activation */ if( !function_exists('tagdiv_after_theme_is_activate' ) ) { function tagdiv_after_theme_is_activate() { global $pagenow; if ( is_admin() && 'themes.php' == $pagenow && isset( $_GET['activated'] ) ) { wp_redirect( admin_url( 'admin.php?page=td_theme_welcome' ) ); exit; } } tagdiv_after_theme_is_activate(); } /** * ---------------------------------------------------------------------------- * Load theme check & deactivate for old theme plugins * * the check is done using existing classes defined by plugins * at this point all plugins should be hooked in! */ require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/plugins/class-tagdiv-old-plugins-deactivation.php' ); require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/plugins/class-tagdiv-current-plugins-deactivation.php' ); /** * ---------------------------------------------------------------------------- * Theme Resources */ /** * Enqueue front styles. */ function tagdiv_theme_css() { if ( TD_DEBUG_USE_LESS ) { wp_enqueue_style( 'td-theme', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=style.css_v2', '', TD_THEME_VERSION, 'all' ); // bbPress style if ( class_exists( 'bbPress', false ) ) { wp_enqueue_style( 'td-theme-bbpress', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=bbpress', array(), wp_get_theme()->get( 'Version' ) ); } // WooCommerce style if( TD_THEME_NAME == 'Newsmag' || ( TD_THEME_NAME == 'Newspaper' && !defined( 'TD_WOO' ) ) ) { if ( class_exists( 'WooCommerce', false ) ) { wp_enqueue_style( 'td-theme-woo', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=woocommerce', array(), wp_get_theme()->get( 'Version' ) ); } } // Buddypress if ( class_exists( 'Buddypress', false ) ) { wp_enqueue_style( 'td-theme-buddypress', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=buddypress', array(), wp_get_theme()->get( 'Version' ) ); } } else { wp_enqueue_style( 'td-theme', get_stylesheet_uri(), array(), wp_get_theme()->get( 'Version' ) ); // bbPress style if ( class_exists( 'bbPress', false ) ) { wp_enqueue_style( 'td-theme-bbpress', TAGDIV_ROOT . '/style-bbpress.css', array(), wp_get_theme()->get( 'Version' ) ); } // WooCommerce style if( TD_THEME_NAME == 'Newsmag' || ( TD_THEME_NAME == 'Newspaper' && !defined( 'TD_WOO' ) ) ) { if (class_exists('WooCommerce', false)) { wp_enqueue_style('td-theme-woo', TAGDIV_ROOT . '/style-woocommerce.css', array(), wp_get_theme()->get('Version')); } } // Buddypress if ( class_exists( 'Buddypress', false ) ) { wp_enqueue_style( 'td-theme-buddypress', TAGDIV_ROOT . '/style-buddypress.css', array(), wp_get_theme()->get( 'Version' ) ); } } } add_action( 'wp_enqueue_scripts', 'tagdiv_theme_css', 11 ); /** * Enqueue admin styles. */ function tagdiv_theme_admin_css() { if ( TD_DEPLOY_MODE == 'dev' ) { wp_enqueue_style('td-theme-admin', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=wp-admin.css', false, TD_THEME_VERSION, 'all' ); if ('Newspaper' == TD_THEME_NAME) { wp_enqueue_style( 'font-newspaper', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=font-newspaper', false, TD_THEME_VERSION, 'all' ); } } else { wp_enqueue_style('td-theme-admin', TAGDIV_ROOT . '/includes/wp-booster/wp-admin/css/wp-admin.css', false, TD_THEME_VERSION, 'all' ); if ('Newspaper' == TD_THEME_NAME) { wp_enqueue_style('font-newspaper', TAGDIV_ROOT . '/font-newspaper.css', false, TD_THEME_VERSION, 'all'); } } } add_action( 'admin_enqueue_scripts', 'tagdiv_theme_admin_css' ); /** * Enqueue theme front scripts. */ if( !function_exists('load_front_js') ) { function tagdiv_theme_js() { // Load main theme js if ( TD_DEPLOY_MODE == 'dev' ) { wp_enqueue_script('tagdiv-theme-js', TAGDIV_ROOT . '/includes/js/tagdiv-theme.js', array('jquery'), TD_THEME_VERSION, true); } else { wp_enqueue_script('tagdiv-theme-js', TAGDIV_ROOT . '/includes/js/tagdiv-theme.min.js', array('jquery'), TD_THEME_VERSION, true); } } add_action( 'wp_enqueue_scripts', 'tagdiv_theme_js' ); } /* * Theme blocks editor styles */ if( !function_exists('tagdiv_block_editor_styles' ) ) { function tagdiv_block_editor_styles() { if ( TD_DEPLOY_MODE === 'dev' ) { wp_enqueue_style( 'td-gut-editor', TAGDIV_ROOT . '/tagdiv-less-style.css.php?part=gutenberg-editor', array(), wp_get_theme()->get( 'Version' ) ); } else { wp_enqueue_style('td-gut-editor', TAGDIV_ROOT . '/gutenberg-editor.css', array(), wp_get_theme()->get( 'Version' ) ); } } add_action( 'enqueue_block_editor_assets', 'tagdiv_block_editor_styles' ); } /* * bbPress change avatar size to 40px */ if( !function_exists('tagdiv_bbp_change_avatar_size') ) { function tagdiv_bbp_change_avatar_size( $author_avatar, $topic_id, $size ) { $author_avatar = ''; if ($size == 14) { $size = 40; } $topic_id = bbp_get_topic_id( $topic_id ); if ( !empty( $topic_id ) ) { if ( !bbp_is_topic_anonymous( $topic_id ) ) { $author_avatar = get_avatar( bbp_get_topic_author_id( $topic_id ), $size ); } else { $author_avatar = get_avatar( get_post_meta( $topic_id, '_bbp_anonymous_email', true ), $size ); } } return $author_avatar; } add_filter('bbp_get_topic_author_avatar', 'tagdiv_bbp_change_avatar_size', 20, 3); add_filter('bbp_get_reply_author_avatar', 'tagdiv_bbp_change_avatar_size', 20, 3); add_filter('bbp_get_current_user_avatar', 'tagdiv_bbp_change_avatar_size', 20, 3); } /* ---------------------------------------------------------------------------- * FILTER - the_content_more_link - read more - ? */ if ( ! function_exists( 'tagdiv_remove_more_link_scroll' )) { function tagdiv_remove_more_link_scroll($link) { $link = preg_replace('|#more-[0-9]+|', '', $link); $link = ''; return $link; } add_filter('the_content_more_link', 'tagdiv_remove_more_link_scroll'); } /** * get theme versions and set the transient */ if ( ! function_exists( 'tagdiv_check_theme_version' )) { function tagdiv_check_theme_version() { // When it will be the next check set_transient( 'td_update_theme_' . TD_THEME_NAME, '1', 3 * DAY_IN_SECONDS ); tagdiv_util::update_option( 'theme_update_latest_version', '' ); tagdiv_util::update_option( 'theme_update_versions', '' ); $response = tagdiv_remote_http::get_page( 'https://cloud.tagdiv.com/wp-json/wp/v2/media?search=.zip' ); if ( false !== $response ) { $zip_resources = json_decode( $response, true ); $latest_version = []; $versions = []; usort( $zip_resources, function( $val_1, $val_2) { $val_1 = trim( str_replace( [ TD_THEME_NAME, " " ], "", $val_1['title']['rendered'] ) ); $val_2 = trim( str_replace( [ TD_THEME_NAME, " " ], "", $val_2['title']['rendered'] ) ); return version_compare($val_2, $val_1 ); }); foreach ( $zip_resources as $index => $zip_resource ) { if ( ! empty( $zip_resource['title']['rendered'] ) && ! empty( $zip_resource['source_url'] ) && false !== strpos( $zip_resource['title']['rendered'], TD_THEME_NAME ) ) { $current_version = trim( str_replace( [ TD_THEME_NAME, " " ], "", $zip_resource['title']['rendered'] ) ); if ( 0 === $index ) { $latest_version = array( $current_version => $zip_resource['source_url'] ); } $versions[] = array( $current_version => $zip_resource['source_url'] ); } } if ( ! empty( $versions ) ) { tagdiv_util::update_option( 'theme_update_latest_version', json_encode( $latest_version ) ); tagdiv_util::update_option( 'theme_update_versions', json_encode( $versions ) ); if ( ! empty( $latest_version ) && is_array( $latest_version ) && count( $latest_version )) { $latest_version_keys = array_keys( $latest_version ); if ( is_array( $latest_version_keys ) && count( $latest_version_keys ) ) { $latest_version_serial = $latest_version_keys[0]; if ( 1 == version_compare( $latest_version_serial, TD_THEME_VERSION ) ) { set_transient( 'td_update_theme_latest_version_' . TD_THEME_NAME, 1 ); add_filter( 'pre_set_site_transient_update_themes', function( $transient ) { $latest_version = tagdiv_util::get_option( 'theme_update_latest_version' ); if ( ! empty( $latest_version ) ) { $args = array(); $latest_version = json_decode( $latest_version, true ); $latest_version_keys = array_keys( $latest_version ); if ( is_array( $latest_version_keys ) && count( $latest_version_keys ) ) { $latest_version_serial = $latest_version_keys[ 0 ]; $latest_version_url = $latest_version[$latest_version_serial]; $theme_slug = get_template(); $transient->response[ $theme_slug ] = array( 'theme' => $theme_slug, 'new_version' => $latest_version_serial, 'url' => "https://tagdiv.com/" . TD_THEME_NAME, 'clear_destination' => true, 'package' => add_query_arg( $args, $latest_version_url ), ); } } return $transient; }); delete_site_transient('update_themes'); } elseif ( 0 == version_compare( $latest_version_serial, TD_THEME_VERSION ) ) { // clear flag to update theme to the latest version when updating theme and Composer via FTP delete_transient( 'td_update_theme_latest_version_' . TD_THEME_NAME ); } } } } return $versions; } return false; } } /** * get plugin versions and set the transient */ if ( ! function_exists( 'tagdiv_check_plugin_subscription_version' )) { function tagdiv_check_plugin_subscription_version() { if ( is_plugin_active('td-subscription/td-subscription.php') && defined('TD_SUBSCRIPTION_VERSION') ) { // When it will be the next check set_transient( 'td_update_plugin_subscription', '1', 3 * DAY_IN_SECONDS ); tagdiv_util::update_option( 'plugin_subscription_update_latest_version', '' ); $response = tagdiv_remote_http::get_page( 'https://cloud.tagdiv.com/wp-json/wp/v2/media?search=.zip' ); if ( false !== $response ) { $zip_resources = json_decode( $response, true ); $latest_version = []; $versions = []; usort( $zip_resources, function ( $val_1, $val_2 ) { $val_1 = trim( str_replace( [ "TD_SUBSCRIPTION", " " ], "", $val_1[ 'title' ][ 'rendered' ] ) ); $val_2 = trim( str_replace( [ "TD_SUBSCRIPTION", " " ], "", $val_2[ 'title' ][ 'rendered' ] ) ); return version_compare( $val_2, $val_1 ); } ); foreach ( $zip_resources as $index => $zip_resource ) { if ( ! empty( $zip_resource[ 'title' ][ 'rendered' ] ) && ! empty( $zip_resource[ 'source_url' ] ) && false !== strpos( $zip_resource[ 'title' ][ 'rendered' ], "TD_SUBSCRIPTION" ) ) { $current_version = trim( str_replace( [ "TD_SUBSCRIPTION", " " ], "", $zip_resource[ 'title' ][ 'rendered' ] ) ); if ( 0 === $index ) { $latest_version = array( $current_version => $zip_resource[ 'source_url' ] ); } $versions[] = array( $current_version => $zip_resource[ 'source_url' ] ); } } if ( ! empty( $versions ) ) { tagdiv_util::update_option( 'plugin_subscription_update_latest_version', json_encode( $latest_version ) ); if ( ! empty( $latest_version ) && is_array( $latest_version ) && count( $latest_version ) ) { $latest_version_keys = array_keys( $latest_version ); if ( is_array( $latest_version_keys ) && count( $latest_version_keys ) ) { $latest_version_serial = $latest_version_keys[ 0 ]; if ( 1 == version_compare( $latest_version_serial, TD_SUBSCRIPTION_VERSION ) ) { set_transient( 'td_update_plugin_subscription_latest_version', 1 ); add_filter( 'pre_set_site_transient_update_plugins', function ( $transient ) { $latest_version = tagdiv_util::get_option( 'plugin_subscription_update_latest_version' ); if ( ! empty( $latest_version ) ) { $args = array(); $latest_version = json_decode( $latest_version, true ); $latest_version_keys = array_keys( $latest_version ); if ( is_array( $latest_version_keys ) && count( $latest_version_keys ) ) { $latest_version_serial = $latest_version_keys[ 0 ]; $latest_version_url = $latest_version[ $latest_version_serial ]; $plugin_id = 'td-subscription/td-subscription.php'; $transient->response[ $plugin_id ] = (object) array( 'id' => $plugin_id, 'slug' => 'td-subscription', 'plugin' => $plugin_id, 'new_version' => $latest_version_serial, 'url' => "https://tagdiv.com/td_subscription", 'package' => add_query_arg( $args, $latest_version_url ), ); } } return $transient; } ); delete_site_transient( 'update_plugins' ); } elseif ( 0 == version_compare( $latest_version_serial, TD_SUBSCRIPTION_VERSION ) ) { // clear flag to update theme to the latest version when updating theme and Composer via FTP delete_transient( 'td_update_plugin_subscription_latest_version' ); } } } } return $versions; } } return false; } } /* ---------------------------------------------------------------------------- * Admin */ if ( is_admin() ) { /** * Theme plugins. */ require_once TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/plugins/class-tgm-plugin-activation.php'; add_action('tgmpa_register', 'tagdiv_required_plugins'); if( !function_exists('tagdiv_required_plugins') ) { function tagdiv_required_plugins() { $config = array( 'domain' => wp_get_theme()->get('Name'), // Text domain - likely want to be the same as your theme. 'default_path' => '', // Default absolute path to pre-packaged plugins //'parent_menu_slug' => 'themes.php', // DEPRECATED from v2.4.0 - Default parent menu slug //'parent_url_slug' => 'themes.php', // DEPRECATED from v2.4.0 - Default parent URL slug 'parent_slug' => 'themes.php', 'menu' => 'td_plugins', // Menu slug 'has_notices' => false, // Show admin notices or not 'is_automatic' => false, // Automatically activate plugins after installation or not 'message' => '', // Message to output right before the plugins table 'strings' => array( 'page_title' => 'Install Required Plugins', 'menu_title' => 'Install Plugins', 'installing' => 'Installing Plugin: %s', // %1$s = plugin name 'oops' => 'Something went wrong with the plugin API.', 'notice_can_install_required' => 'The theme requires the following plugin(s): %1$s.', 'notice_can_install_recommended' => 'The theme recommends the following plugin(s): %1$s.', 'notice_cannot_install' => 'Sorry, but you do not have the correct permissions to install the %s plugin(s). Contact the administrator of this site for help on getting the plugin installed.', 'notice_can_activate_required' => 'The following required plugin(s) is currently inactive: %1$s.', 'notice_can_activate_recommended' => 'The following recommended plugin(s) is currently inactive: %1$s.', 'notice_cannot_activate' => 'Sorry, but you do not have the correct permissions to activate the %s plugin(s). Contact the administrator of this site for help on getting the plugin activated.', 'notice_ask_to_update' => 'The following plugin(s) needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'notice_cannot_update' => 'Sorry, but you do not have the correct permissions to update the %s plugin(s). Contact the administrator of this site for help on getting the plugin updated.', 'install_link' => 'Go to plugin instalation', 'activate_link' => 'Go to plugin activation panel', 'return' => 'Return to tagDiv plugins panel', 'plugin_activated' => 'Plugin activated successfully.', 'complete' => 'All plugins installed and activated successfully. %s', // %1$s = dashboard link 'nag_type' => 'updated' // Determines admin notice type - can only be 'updated' or 'error' ) ); tgmpa( tagdiv_global::$theme_plugins_list, $config ); } } if ( current_user_can( 'switch_themes' ) ) { // add panel to the wp-admin menu on the left add_action( 'admin_menu', function() { $td_theme = ( defined('TD_WL_PLUGIN_DIR') && td_util::get_option('tds_white_label') !== '' ) ? td_util::get_wl_val('tds_wl_theme_name', TD_THEME_NAME) : TD_THEME_NAME; /* wp doc: add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position ); */ add_menu_page('Theme panel', $td_theme, "edit_posts", "td_theme_welcome", function (){ require_once TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/tagdiv-view-welcome.php'; }, null, 3); if ( current_user_can( 'activate_plugins' ) ) { add_submenu_page("td_theme_welcome", 'Plugins', 'Plugins', 'edit_posts', 'td_theme_plugins', function (){ require_once TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/tagdiv-view-theme-plugins.php'; } ); } $is_white_label = defined('TD_WL_PLUGIN_DIR') ? td_util::get_option('tds_white_label') : 'no'; if ('enabled' !== $is_white_label) { add_submenu_page("td_theme_welcome", 'Support', 'Support', 'edit_posts', 'td_theme_support', function () { require_once TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/tagdiv-view-support.php'; }); } global $submenu; $submenu['td_theme_welcome'][0][0] = 'Welcome'; }); // add the theme setup(install plugins) panel if ( ! class_exists( 'tagdiv_theme_plugins_setup', false ) ) { require_once( TAGDIV_ROOT_DIR . '/includes/wp-booster/wp-admin/plugins/class-tagdiv-theme-plugins-setup.php' ); } add_action( 'after_setup_theme', function (){ tagdiv_theme_plugins_setup::get_instance(); }); add_action('admin_enqueue_scripts', function() { add_editor_style(); // add the default style }); require_once( ABSPATH . 'wp-admin/includes/file.php' ); WP_Filesystem(); } } includes/tagdiv-panel-docs.php000064400000002437150211537140012371 0ustar00

    Support forum

    We offer outstanding support through our forum. To get support first you need to register (create an account) and open a thread in the Section.

    Open forum

    Docs and learning

    Our online documentation will give you important information about the theme. This is a exceptional resource to start discovering the theme’s true potential.

    Open documentation

    Video tutorials

    We believe that the easiest way to learn is watching a video tutorial. We have a growing library of narrated video tutorials to help you do just that.

    View tutorials
    includes/js/tagdiv-theme.js000064400000010004150211537140011674 0ustar00/* global jQuery:{} */ /** * tagdiv-theme.js - the main theme js */ /** * tagdivSearch.js - handles the search events */ ;var tagdivSearch = {}; ( function() { 'use strict'; tagdivSearch = { _is_search_open: false, _$body: undefined, _$dropDownSearch: undefined, init: function() { tagdivSearch._$body = jQuery('body'); tagdivSearch._$dropDownSearch = jQuery('.td-drop-down-search'); // hide the drop down if we click outside of it jQuery(document).on('click', function(event) { if ( tagdivSearch._is_search_open && 'td-icon-search' !== event.target.className && 'td-header-search' !== event.target.id && 'td-header-search-top' !== event.target.id ) { tagdivSearch._$dropDownSearch.removeClass( 'td-drop-down-search-open' ); tagdivSearch._$body.removeClass( 'td-search-opened' ); tagdivSearch._is_search_open = false; } } ); // show and hide the drop down on the search icon jQuery('#td-header-search-button').on('click', function(event) { event.preventDefault(); if ( tagdivSearch._is_search_open ) { tagdivSearch._$dropDownSearch.removeClass( 'td-drop-down-search-open' ); } else { tagdivSearch._$dropDownSearch.addClass( 'td-drop-down-search-open' ); } tagdivSearch._is_search_open = !tagdivSearch._is_search_open; }); // show and hide the drop down on the search icon for mobile jQuery('#td-header-search-button-mob, #tdb-header-search-button-mob').on('click', function(){ tagdivSearch._$body.addClass('td-search-opened'); var search_input = jQuery('#td-header-search-mob'); /** * search input autofocus * @note: the autofocus does not work for iOS and windows phone devices ..as it's considered bad user experience */ setTimeout( function(){ search_input.focus(); }, 1300); }); //close the search jQuery( '.td-search-close a' ).on( 'click', function(){ tagdivSearch._$body.removeClass( 'td-search-opened' ); }); } }; } )(); jQuery(document).ready(function () { 'use strict'; var $body = jQuery('body'); // handle open/close mobile menu jQuery('#td-top-mobile-toggle a, .td-mobile-close a').on('click', function(){ $body.toggleClass('td-menu-mob-open-menu'); }); // move trough all the menu and find the item with sub-menues to atach a custom class to them jQuery(document).find('#td-mobile-nav .menu-item-has-children').each( function(i) { var $this = jQuery(this); $this.addClass('td_mobile_submenu td_mobile_elem_with_submenu_' + i); // click on link elements with # $this.children('a').addClass('td-link-element-after'); $this.on('click',function(event) { /** * currentTarget - the li element * target - the element clicked inside of the currentTarget */ var $eventTarget = jQuery( event.target ); // html i element if ( $eventTarget.length && ( ( $eventTarget.hasClass('td-element-after') || $eventTarget.hasClass('td-link-element-after') ) && ( '#' === $eventTarget.attr('href') || undefined === $eventTarget.attr('href') ) ) ) { event.preventDefault(); event.stopPropagation(); jQuery(this).toggleClass('td-sub-menu-open'); } }); }); tagdivSearch.init(); }); includes/js/tagdiv-theme.min.js000064400000003515150211537140012467 0ustar00var tagdivSearch={}; (function(){tagdivSearch={_is_search_open:!1,_$body:void 0,_$dropDownSearch:void 0,init:function(){tagdivSearch._$body=jQuery("body");tagdivSearch._$dropDownSearch=jQuery(".td-drop-down-search");jQuery(document).on("click",function(a){tagdivSearch._is_search_open&&"td-icon-search"!==a.target.className&&"td-header-search"!==a.target.id&&"td-header-search-top"!==a.target.id&&(tagdivSearch._$dropDownSearch.removeClass("td-drop-down-search-open"),tagdivSearch._$body.removeClass("td-search-opened"),tagdivSearch._is_search_open= !1)});jQuery("#td-header-search-button").on("click",function(a){a.preventDefault();tagdivSearch._is_search_open?tagdivSearch._$dropDownSearch.removeClass("td-drop-down-search-open"):tagdivSearch._$dropDownSearch.addClass("td-drop-down-search-open");tagdivSearch._is_search_open=!tagdivSearch._is_search_open});jQuery("#td-header-search-button-mob, #tdb-header-search-button-mob").on("click",function(){tagdivSearch._$body.addClass("td-search-opened");var a=jQuery("#td-header-search-mob");setTimeout(function(){a.focus()}, 1300)});jQuery(".td-search-close a").on("click",function(){tagdivSearch._$body.removeClass("td-search-opened")})}}})(); jQuery(document).ready(function(){var a=jQuery("body");jQuery("#td-top-mobile-toggle a, .td-mobile-close a").on("click",function(){a.toggleClass("td-menu-mob-open-menu")});jQuery(document).find("#td-mobile-nav .menu-item-has-children").each(function(a){var c=jQuery(this);c.addClass("td_mobile_submenu td_mobile_elem_with_submenu_"+a);c.children("a").addClass("td-link-element-after");c.on("click",function(a){var b=jQuery(a.target);!b.length||!b.hasClass("td-element-after")&&!b.hasClass("td-link-element-after")|| "#"!==b.attr("href")&&void 0!==b.attr("href")||(a.preventDefault(),a.stopPropagation(),jQuery(this).toggleClass("td-sub-menu-open"))})});tagdivSearch.init()}); tag.php000064400000002416150211537140006032 0ustar00
    'tag', 'tag_name' => single_tag_title( '', false ), )); ?>

    Tag:

    attachment.php000064400000005707150211537140007415 0ustar00
    'attachment', 'parent_id' => get_the_ID(), 'attachment_title' => $post->post_title, )); ?>

    <?php echo esc_attr($td_att_alt); ?>

    404.php000064400000003701150211537140005564 0ustar00
    404 Not Found

    loop.php000064400000006364150211537140006236 0ustar00
    >

      cat_ID); $cat_name = $category->name; ?>

    'author', 'author' => $part_cur_auth_obj, )); ?>

    user_email, '96'); ?>
    ID). ' ' . esc_html__('POSTS', 'newspaper');?> get_var($wpdb->prepare("SELECT COUNT(*) AS total FROM $wpdb->comments WHERE comment_approved = 1 AND user_id = %d", $part_cur_auth_obj->ID)); echo esc_html( $comment_count ) . ' ' . esc_html__('COMMENTS', 'newspaper'); ?>
    user_url)) { echo ''; } echo get_the_author_meta('description', $part_cur_auth_obj->ID); ?>
    sidebar.php000064400000000175150211537140006670 0ustar00
    'single', 'title' => get_the_title(), )); ?>
    editor-style.css000064400000123524150211537140007710 0ustar00/* ---------------------------------------------------------------------------- This editor style is also loaded in the backend to style the posts WARNING: this file is not loaded in the front end */ :root { --td_theme_color: #4db2ec; --td_grid_border_color: #ededed; --td_black: #222; --td_text_color: #111; --td_default_google_font_1: 'Open Sans', 'Open Sans Regular', sans-serif; --td_default_google_font_2: 'Roboto', sans-serif; } /* ---------------------------------------------------------------------------- responsive settings */ /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ /* ---------------------------------------------------------------------------- Site wide > typography style ---------------------------------------------------------------------------- */ body { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 14px; line-height: 21px; } p { margin-top: 0; margin-bottom: 21px; } a:active, a:focus { outline: none; } a { color: var(--td_theme_color, #4db2ec); text-decoration: none; } ins { background: #fff; text-decoration: none; } code { position: relative; top: -1px; border: none; background-color: #F1F1F1; padding: 2px 6px; } pre { background-color: #f1f1f1; padding: 4px 10px; border: none; border-radius: 0; margin-top: 24px; overflow: auto; } cite { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; font-style: italic; font-weight: normal; text-transform: none; color: #000; } cite a { color: #000; } cite a:hover { color: var(--td_theme_color, #4db2ec); } q { font-style: italic; } ul, ol { padding: 0; } ul li, ol li { line-height: 24px; margin-left: 21px; } .wp-block-navigation li { line-height: 1.2; margin-left: 0; } .dl-horizontal a { font-weight: 500 !important; } .dl-horizontal dt { width: 70px; font-weight: 400; line-height: 24px; font-size: 15px; } .dl-horizontal dd { margin-left: 90px; line-height: 24px; font-size: 14px; } address { font-size: inherit !important; line-height: inherit !important; margin-bottom: 21px; } big { text-transform: uppercase; } embed { width: 100%; } /* ---------------------------------------------------------------------------- table */ table { width: 100%; } table th { text-align: left; border: 1px solid var(--td_grid_border_color, #ededed); padding: 2px 8px; } table td { border: 1px solid var(--td_grid_border_color, #ededed); padding: 2px 8px; } table .odd td { background-color: #fcfcfc; } /* ---------------------------------------------------------------------------- h */ h1, h2, h3, h4, h5, h6 { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); font-weight: 400; margin: 6px 0; } h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a { color: var(--td_text_color, #111111); } div.td-block-title { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); } p.td-module-title, p.tdb-subcategory-name { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); color: var(--td_text_color, #111111); } p.td-module-title > a, p.tdb-subcategory-name > a { color: var(--td_text_color, #111111); } h1 { font-size: 32px; line-height: 40px; margin-top: 33px; margin-bottom: 23px; } h2 { font-size: 27px; line-height: 38px; margin-top: 30px; margin-bottom: 20px; } h3 { font-size: 22px; line-height: 30px; margin-top: 27px; margin-bottom: 17px; } h4 { font-size: 19px; line-height: 29px; margin-top: 24px; margin-bottom: 14px; } h5 { font-size: 17px; line-height: 25px; margin-top: 21px; margin-bottom: 11px; } h6 { font-size: 16px; line-height: 24px; margin-top: 21px; margin-bottom: 11px; } .videopress-placeholder { width: 100% !important; } .videopress-poster { height: auto !important; width: 100% !important; } .video-player { width: 100% !important; } /* ---------------------------------------------------------------------------- Site wide > Forms ---------------------------------------------------------------------------- */ textarea { font-size: 12px; line-height: 21px; color: #444; border: 1px solid #e1e1e1; width: 100%; max-width: 100%; height: 168px; min-height: 168px; padding: 6px 9px; /* responsive portrait phone */ } @media (max-width: 767px) { textarea { font-size: 16px; } } textarea:active, textarea:focus { border-color: #b0b0b0 !important; } textarea:focus, input:focus, input[type]:focus { outline: 0 none; } /* Input buttons */ input[type=submit] { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; background-color: var(--td_black, #222222); border-radius: 0; color: #fff; border: none; padding: 8px 15px; font-weight: 500; -webkit-transition: background-color 0.4s; transition: background-color 0.4s; } input[type=submit]:hover { background-color: var(--td_theme_color, #4db2ec); } input[type=text], input[type=url], input[type=tel], input[type=email] { font-size: 12px; line-height: 21px; color: #444; border: 1px solid #e1e1e1; width: 100%; max-width: 100%; height: 34px; padding: 3px 9px; /* responsive portrait phone */ } @media (max-width: 767px) { input[type=text], input[type=url], input[type=tel], input[type=email] { font-size: 16px; } } input[type=text]:active, input[type=url]:active, input[type=tel]:active, input[type=email]:active, input[type=text]:focus, input[type=url]:focus, input[type=tel]:focus, input[type=email]:focus { border-color: #b0b0b0 !important; } input[type=password] { width: 100%; position: relative; top: 0; display: inline-table; vertical-align: middle; font-size: 12px; line-height: 21px; color: #444; border: 1px solid #ccc; max-width: 100%; height: 34px; padding: 3px 9px; margin-bottom: 10px; /* responsive portrait phone */ } @media (max-width: 767px) { input[type=password] { font-size: 16px; } } /* ---------------------------------------------------------------------------- Site wide > WordPress Text, Images & Captions ---------------------------------------------------------------------------- */ .tagdiv-type { /* ---------------------------------------------------------------------------- text and Images align */ font-size: 15px; line-height: 1.74; color: #222; /* ---------------------------------------------------------------------------- quote :not(.wp-block-quote) */ } .tagdiv-type img { margin-bottom: 21px; } .tagdiv-type .wp-block-embed { margin-bottom: 26px; } .tagdiv-type figure img { margin-bottom: 0; } .tagdiv-type .alignnone { display: inline-block; margin: 0 5px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .alignnone { margin: 0 10px 0 0; } } .tagdiv-type a:hover { text-decoration: underline; } .tagdiv-type ul, .tagdiv-type ol { margin-bottom: 26px; } .tagdiv-type ul li:not(.blocks-gallery-item):not(.wp-block-navigation-item), .tagdiv-type ol li:not(.blocks-gallery-item):not(.wp-block-navigation-item) { line-height: inherit; margin-bottom: 10px; } .tagdiv-type ul li:not(.blocks-gallery-item):not(.wp-block-navigation-item):last-child, .tagdiv-type ol li:not(.blocks-gallery-item):not(.wp-block-navigation-item):last-child { margin-bottom: 0; } .tagdiv-type li ul, .tagdiv-type li ol { margin-bottom: 0; } .tagdiv-type li[style="text-align: center;"], .tagdiv-type li[style="text-align: right;"] { list-style-position: inside; margin-left: -21px; } .tagdiv-type p { margin-bottom: 26px; } .tagdiv-type .td-arrow-list { list-style: none; margin-left: 16px; } .tagdiv-type .td-arrow-list li:before { font-family: 'newspaper', sans-serif; content: '\e803'; float: left; margin-left: -16px; line-height: 26px; font-size: 14px; } .tagdiv-type embed, .tagdiv-type iframe, .tagdiv-type object { max-width: 100% !important; } .tagdiv-type iframe.instagram-media { margin: 1px 0 12px !important; } .tagdiv-type blockquote { padding: 0; position: relative; border-left: none; margin: 40px 5% 38px; font-style: italic; text-align: center; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type blockquote { margin: 20px 3% 18px; } } .tagdiv-type blockquote p { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 32px; line-height: 40px; font-weight: 400; text-transform: uppercase; color: var(--td_theme_color, #4db2ec); word-wrap: break-word; /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .tagdiv-type blockquote p { font-size: 24px; line-height: 32px; } } @media (max-width: 767px) { .tagdiv-type blockquote p { font-size: 22px; line-height: 30px; } } .tagdiv-type blockquote cite { display: block; } .tagdiv-type .td_quote_right { float: right; width: 50%; margin: 21px 0 21px 21px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_quote_right { float: none; width: auto; margin-right: 5%; margin-left: 5%; } } .tagdiv-type .td_quote_left { float: left; width: 50%; margin: 18px 18px 18px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_quote_left { float: none; width: auto; margin-right: 5%; margin-left: 5%; } } .tagdiv-type .td_quote_left p, .tagdiv-type .td_quote_left cite { text-align: left; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_quote_left p, .tagdiv-type .td_quote_left cite { text-align: center; } } .tagdiv-type .td_quote_box { margin: 0; background-color: var(--td_container_transparent, #fcfcfc); border-left: 2px solid var(--td_theme_color, #4db2ec); padding: 15px 23px 16px 23px; position: relative; top: 6px; clear: both; } .tagdiv-type .td_quote_box p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); color: #777; font-size: 13px; line-height: 21px; margin: 0; text-transform: none; } .tagdiv-type .td_quote_box cite { margin-top: 20px; font-size: 11px; } .tagdiv-type .td_box_left { width: 40%; float: left; margin: 0 34px 20px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_box_left { float: none; margin: 0 0 36px 0; width: auto; } } .tagdiv-type .td_box_left p, .tagdiv-type .td_box_left cite { text-align: left; } .tagdiv-type .td_box_right { width: 30%; float: right; margin: 0 0 20px 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_box_right { float: none; margin: 0 0 36px 0; width: auto; } } .tagdiv-type .td_box_right p, .tagdiv-type .td_box_right cite { text-align: left; } .tagdiv-type .td_box_center { margin: 0 0 29px 0; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .td_box_center { margin-bottom: 36px; } } .tagdiv-type .wp-block-pullquote blockquote, .tagdiv-type .td_pull_quote { padding: 18px 25px; margin: 0; clear: both; } .tagdiv-type .wp-block-pullquote blockquote p, .tagdiv-type .td_pull_quote p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); text-transform: none; text-align: center; } .tagdiv-type .wp-block-pullquote blockquote p:first-child:before, .tagdiv-type .td_pull_quote p:first-child:before { position: absolute; left: 0; display: block; content: ''; width: 15px; height: 15px; box-sizing: border-box; -webkit-box-sizing: border-box; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALBAMAAABSacpvAAAALVBMVEUAAAC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLRK0HxpAAAADnRSTlMAd+67mWZR3SKqMxGIzB8/1rAAAABlSURBVAjXFcexDQEBAAXQd+KCRm4CDZURFGICMYFadTHBxQQmEDHCzWAI9XGJ8s/ANS95FBvccKwYr5kuUQ/5omm5dpQ9Fu+H2efEPX07Sg62f+bJ2T6pJkmnTi5FslM2L56r9geMACBhjTsodgAAAABJRU5ErkJggg==') no-repeat; } .tagdiv-type .wp-block-pullquote blockquote p:after, .tagdiv-type .td_pull_quote p:after { position: absolute; bottom: 10px; right: 0; display: block; content: ''; width: 15px; height: 15px; box-sizing: border-box; -webkit-box-sizing: border-box; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALBAMAAABSacpvAAAALVBMVEUAAAC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLRK0HxpAAAADnRSTlMA3ZnuqndmIhG7VYhEMzOiL2oAAABkSURBVAjXY+D1E2PgULZuYGB89+4A07t3AQzn3r1T4Hv3ToCh7t27CUDRBwxAYQe2d+8MGBiuAuWr5BwYGBjeFTAwzEtgYOB6xMDA8RAowGnOwMD6CsjIA4oWKwBFXYGcLQ0MAFHHH+tW1OhlAAAAAElFTkSuQmCC') no-repeat; } .tagdiv-type .wp-block-pullquote blockquote cite, .tagdiv-type .td_pull_quote cite { margin-top: -10px; font-size: 11px; } .tagdiv-type .td_pull_quote p { font-size: 14px; line-height: 26px; font-weight: 600; } .tagdiv-type .wp-block-pullquote blockquote, .tagdiv-type .td_pull_center { margin: 17px 0; padding: 15px 50px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote blockquote, .tagdiv-type .td_pull_center { padding: 15px 20px; } } .tagdiv-type .wp-block-pullquote { padding: 0; color: var(--td_theme_color, #4db2ec); } .tagdiv-type .wp-block-pullquote.has-text-color p, .tagdiv-type .wp-block-pullquote.has-text-color cite { color: inherit; } .tagdiv-type .wp-block-pullquote cite { color: #6c7781; } .tagdiv-type .wp-block-pullquote.alignfull blockquote { margin-left: 30px; margin-right: 30px; } .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .td_pull_left { width: 40%; margin-right: 34px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .td_pull_left { float: none; margin: 0 0 30px 0; width: auto; } } .tagdiv-type .td_pull_left { float: left; } .tagdiv-type .wp-block-pullquote.alignright, .tagdiv-type .td_pull_right { width: 30%; margin-left: 24px; /* responsive portrait phone */ } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote.alignright, .tagdiv-type .td_pull_right { float: none; margin: 0 0 30px 0; width: auto; } } .tagdiv-type .td_pull_right { float: right; } .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .wp-block-pullquote.alignright { margin-top: 0; margin-bottom: 0 !important; /* responsive portrait phone */ } .tagdiv-type .wp-block-pullquote.alignleft blockquote, .tagdiv-type .wp-block-pullquote.alignright blockquote { margin-top: 0; margin-bottom: 0; padding: 0; } @media (max-width: 767px) { .tagdiv-type .wp-block-pullquote.alignleft, .tagdiv-type .wp-block-pullquote.alignright { max-width: 100%; } } .tagdiv-type .wp-block-pullquote.is-style-solid-color blockquote { max-width: 100%; } @media (max-width: 767px) { .td-md-is-ios .tagdiv-type figure { width: auto; } } img.wp-smiley { width: auto; } .wp-caption-text, .wp-caption-dd { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-align: left; margin: 6px 0 26px 0; font-size: 11px; font-style: italic; font-weight: normal; line-height: 17px; color: #444; } .wp-caption { text-align: center; max-width: 100%; } .wp-caption img { max-width: 100% !important; } .alignnone { margin-top: 0; } .aligncenter { text-align: center; clear: both; display: block; margin: 6px auto; } img.td-center { position: relative; left: 50%; transform: translateX(-50%); max-width: 100vw !important; width: auto !important; margin-left: 0 !important; margin-right: 0 !important; } figure.alignright, figure.alignleft, figure.aligncenter { margin-bottom: 0; } /* responsive portrait phone */ @media (max-width: 767px) { .alignleft, .alignright { float: none !important; } } /* ---------------------------------------------------------------------------- align left -> on desktop - the tinyMCE size is used -> on tablet(s) - apply the max-width to make it look nice -> on phones - center, max width 100% + fix for tinyMCE padding -> on full width td-pb-span12 */ .alignleft { float: left; margin-top: 6px; margin-right: 24px !important; margin-bottom: 6px !important; /* hack for tinyMCE / post content diffs*/ margin-left: 0; /* responsive landscape tablet */ /* responsive portrait tablet + phone */ /* responsive phone CUSTOM - align the image on center */ } @media (min-width: 1019px) and (max-width: 1140px) { .alignleft { max-width: 312px; margin-right: 21px; } } @media (min-width: 768px) and (max-width: 1018px) { .alignleft { max-width: 220px; margin-right: 21px; } } @media (max-width: 767px) { .alignleft { text-align: center; margin-left: auto !important; margin-right: auto !important; max-width: 100%; margin-bottom: 21px; } .alignleft img { text-align: center; margin-left: auto; margin-right: auto; } .alignleft figcaption { text-align: center; } } .mce-content-body .alignleft { margin: 6px 24px 6px 0; } .td-pb-span12 .alignleft, .mceContentBody-max-width-big .alignleft { /* responsive landscape tablet */ /* responsive portrait tablet */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-pb-span12 .alignleft, .mceContentBody-max-width-big .alignleft { max-width: 550px !important; } } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span12 .alignleft, .mceContentBody-max-width-big .alignleft { max-width: 400px !important; } } /* ---------------------------------------------------------------------------- Screen reader text */ .screen-reader-text { clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px; } /* ---------------------------------------------------------------------------- align right -> on desktop - the tinyMCE size is used -> on tablets - apply the max-width to make it look nice -> on phones - center, max width 100% + fix for tinyMCE padding -> on full width td-pb-span12 */ .alignright { float: right; margin-top: 6px; margin-right: 0; margin-bottom: 6px !important; /* hack for tinyMCE / post content diffs*/ margin-left: 24px !important; /* responsive landscape tablet */ /* responsive portrait tablet + phone */ /* responsive phone CUSTOM - align the image on center */ } @media (min-width: 1019px) and (max-width: 1140px) { .alignright { max-width: 312px; margin-left: 21px; } } @media (min-width: 768px) and (max-width: 1018px) { .alignright { max-width: 220px; margin-left: 21px; } } @media (max-width: 767px) { .alignright { text-align: center; margin-left: auto !important; margin-right: auto !important; max-width: 100%; margin-bottom: 21px; } .alignright img { text-align: center; margin-left: auto; margin-right: auto; } .alignright figcaption { text-align: center; } } .mce-content-body .alignright { margin: 6px 0 6px 24px; } .td-pb-span12 .alignright, .mceContentBody-max-width-big .alignright { /* responsive landscape tablet */ /* responsive portrait tablet */ } @media (min-width: 1019px) and (max-width: 1140px) { .td-pb-span12 .alignright, .mceContentBody-max-width-big .alignright { max-width: 550px !important; } } @media (min-width: 768px) and (max-width: 1018px) { .td-pb-span12 .alignright, .mceContentBody-max-width-big .alignright { max-width: 400px !important; } } .entry-title a:hover, .td-post-category:hover, .widget a:hover, .td_block_wrap a:hover { text-decoration: none !important; } .wp-block-quote.is-large:not(.td_quote_box), .wp-block-quote.is-style-large:not(.td_quote_box) { padding: 0; } .wp-block-quote.is-large cite, .wp-block-quote.is-style-large cite { font-size: 13px; } .wp-block-quote.is-large:not(.td_quote_left) cite, .wp-block-quote.is-style-large:not(.td_quote_left) cite { text-align: center; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots) { max-width: 100px; } .twitter-tweet p { font-family: initial; font-size: initial; line-height: initial; font-style: initial; text-align: initial; text-transform: initial; color: initial; font-weight: initial; } blockquote small { margin-top: 5px; display: block; font-size: 13px; font-style: italic; font-weight: normal; text-transform: none; color: #444; } blockquote.pull-right { padding-left: 20px; border-right: none; } blockquote.pull-right:after { border-right: 2px solid #FB5502; width: 40px; right: -40px; } /* ---------------------------------------------------------------------------- dropcaps */ .dropcap { float: left; display: block; font-size: 50px; line-height: 56px; background-color: var(--td_theme_color, #4db2ec); color: #fff; text-align: center; margin: 9px 13px 0 0; padding: 2px 10px 4px; font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; text-transform: uppercase; min-width: 62px; min-height: 62px; } .dropcap1 { border-radius: 70px; font-size: 40px; padding: 2px 14px 4px; } .dropcap2 { background-color: transparent !important; color: #4B4B4B; font-size: 79px; line-height: 69px; margin: 0 9px 0 0; padding: 0 13px 0 0; } .dropcap3 { background-color: transparent !important; color: #4B4B4B; font-weight: bold; font-size: 79px; line-height: 69px; margin: 0 9px 0 0; padding: 0 13px 0 0; } /* ---------------------------------------------------------------------------- text columns */ .td_text_columns_two_cols { -webkit-column-count: 2; -moz-column-count: 2; column-count: 2; -webkit-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; -webkit-column-rule-style: solid; -moz-column-rule-style: solid; column-rule-style: solid; -webkit-column-rule-width: 1px; -moz-column-rule-width: 1px; column-rule-width: 1px; -webkit-column-rule-color: #e9e9e9; -moz-column-rule-color: #e9e9e9; column-rule-color: #e9e9e9; margin-bottom: 26px; } /* ---------------------------------------------------------------------------- button */ .td_btn { cursor: pointer; display: inline-block; position: relative; color: white; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 600; } .td_btn_sm { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .td_btn_sm.td_round_btn { border-radius: 3px; } .td_btn_md { padding: 9px 12px; font-size: 16px; line-height: 20px; } .td_btn_md.td_round_btn { border-radius: 4px; } .td_btn_lg { padding: 10px 16px; font-size: 18px; line-height: 1.33; } .td_btn_lg.td_round_btn { border-radius: 6px; } .td_default_btn, .td_round_btn { transition: background-color 0.1s ease; -webkit-transition: background-color 0.1s ease; background-color: var(--td_theme_color, #4db2ec); } .td_default_btn:hover, .td_round_btn:hover { background-color: #444; } .td_default_btn:active, .td_round_btn:active { background-color: #000; } .td_outlined_btn { border-radius: 4px; border: 2px solid var(--td_theme_color, #4db2ec); color: var(--td_theme_color, #4db2ec); background-color: transparent; transition: all 0.1s ease ; -webkit-transition: all 0.1s ease; } .td_outlined_btn:hover { background-color: var(--td_theme_color, #4db2ec); color: #fff; } .td_outlined_btn:active { background-color: #444; border-color: #444; } .td_shadow_btn { background-color: var(--td_theme_color, #4db2ec); top: 0; -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25); transition: top 0.1s ease; -webkit-transition: top 0.1s ease; } .td_shadow_btn:hover { top: -3px; -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25); } .td_shadow_btn:active { background-color: #444 !important; } .td_3D_btn { background-color: var(--td_theme_color, #4db2ec); top: 0; transition: top 0.1s ease; -webkit-transition: top 0.1s ease; } .td_3D_btn:after { content: ""; position: absolute; display: block; left: 0; top: 100%; width: 100%; height: 5px; background-color: rgba(0, 0, 0, 0.25); z-index: 0; transition: height 0.1s ease; -webkit-transition: height 0.1s ease; } .td_3D_btn:hover { top: 5px; } .td_3D_btn:hover:before { height: 0; } .td_3D_btn:hover:after { height: 0; } .td_3D_btn:active { background-color: #444 !important; } /* ---------------------------------------------------------------------------- text highlighting */ .td_text_highlight_0 { background-color: rgba(0, 0, 0, 0.77); padding: 5px 0 6px 0; margin: 0 8px 0 8px; box-shadow: 8px 0 0 rgba(0, 0, 0, 0.77), -8px 0 0 rgba(0, 0, 0, 0.77); color: #2a2a2a; -webkit-transition: color 400ms; transition: color 400ms; } .td_text_highlight_0:hover { color: #F9F9F9; cursor: default; } .td_text_highlight_marker { padding: 5px 0 6px 0; margin: 0 8px 0 8px; color: white; -webkit-transition: color 400ms; transition: color 400ms; } .td_text_highlight_marker:hover { color: #F9F9F9; } .td_text_highlight_marker_red { background-color: rgba(255, 28, 26, 0.62); box-shadow: 8px 0 0 rgba(255, 28, 26, 0.62), -8px 0 0 rgba(255, 28, 26, 0.62); } .td_text_highlight_marker_blue { background-color: rgba(57, 213, 255, 0.75); box-shadow: 8px 0 0 rgba(57, 213, 255, 0.75), -8px 0 0 rgba(57, 213, 255, 0.75); } .td_text_highlight_marker_green { background-color: rgba(77, 216, 69, 0.65); box-shadow: 8px 0 0 rgba(77, 216, 69, 0.65), -8px 0 0 rgba(77, 216, 69, 0.65); } .td_text_highlight_marker_yellow { background-color: rgba(255, 203, 0, 0.75); box-shadow: 8px 0 0 rgba(255, 203, 0, 0.75), -8px 0 0 rgba(255, 203, 0, 0.75); } .td_text_highlight_marker_pink { background-color: rgba(255, 101, 243, 0.75); box-shadow: 8px 0 0 rgba(255, 101, 243, 0.75), -8px 0 0 rgba(255, 101, 243, 0.75); } /* ---------------------------------------------------------------------------- custom post padding */ .td-paragraph-padding-0 { display: block; padding-left: 0; padding-right: 6%; } .td-paragraph-padding-1 { display: block; padding-left: 6%; padding-right: 6%; } .td-paragraph-padding-2 { display: block; padding-left: 12%; padding-right: 12%; } .td-paragraph-padding-3 { display: block; padding-left: 6%; padding-right: 12%; } .td-paragraph-padding-4 { display: block; padding-left: 6%; padding-right: 0; } .td-paragraph-padding-5 { display: block; padding-left: 18%; padding-right: 18%; } .td-paragraph-padding-6 { display: block; padding-left: 12%; padding-right: 6%; } .td-pb-span8 .td-paragraph-padding-0, .mceContentBody-max-width-small .td-paragraph-padding-0 { padding-right: 4%; } .td-pb-span8 .td-paragraph-padding-1, .mceContentBody-max-width-small .td-paragraph-padding-1 { padding-left: 4%; padding-right: 4%; } .td-pb-span8 .td-paragraph-padding-2, .mceContentBody-max-width-small .td-paragraph-padding-2 { padding-left: 8%; padding-right: 8%; } .td-pb-span8 .td-paragraph-padding-3, .mceContentBody-max-width-small .td-paragraph-padding-3 { padding-left: 4%; padding-right: 8%; } .td-pb-span8 .td-paragraph-padding-4, .mceContentBody-max-width-small .td-paragraph-padding-4 { padding-left: 4%; } .td-pb-span8 .td-paragraph-padding-5, .mceContentBody-max-width-small .td-paragraph-padding-5 { padding-left: 12%; padding-right: 12%; } .td-pb-span8 .td-paragraph-padding-6, .mceContentBody-max-width-small .td-paragraph-padding-6 { padding-left: 8%; padding-right: 4%; } /* responsive phone */ @media (max-width: 500px) { .td-paragraph-padding-0, .td-paragraph-padding-1, .td-paragraph-padding-2, .td-paragraph-padding-3, .td-paragraph-padding-4, .td-paragraph-padding-5, .td-paragraph-padding-6 { padding-left: 10px !important; padding-right: 10px !important; } } @font-face { font-family: 'newspaper'; src: url('images/icons/newspaper.eot?24'); src: url('images/icons/newspaper.eot?24#iefix') format('embedded-opentype'), url('images/icons/newspaper.woff?24') format('woff'), url('images/icons/newspaper.ttf?24') format('truetype'), url('images/icons/newspaper.svg?24#newspaper') format('svg'); font-weight: normal; font-style: normal; font-display: swap; } [class^="td-icon-"]:before, [class*=" td-icon-"]:before { font-family: 'newspaper'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; text-align: center; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [class*="td-icon-"] { line-height: 1; text-align: center; display: inline-block; } .td-icon-logout:before { content: '\e800'; } .td-icon-down:before { content: '\e801'; } .td-icon-left:before { content: '\e802'; } .td-icon-right:before { content: '\e803'; } .td-icon-up:before { content: '\e804'; } .td-icon-views:before { content: '\e805'; } .td-icon-menu-down:before { content: '\e806'; } .td-icon-left-arrow:before { content: '\e807'; } .td-icon-right-arrow:before { content: '\e808'; } .td-icon-menu-up:before { content: '\e809'; } .td-icon-search:before { content: '\e80a'; } .td-icon-user:before { content: '\e80b'; } .td-icon-menu-left:before { content: '\e80c'; } .td-icon-menu-right:before { content: '\e80d'; } .rtl .td-next-prev-wrap .td-icon-menu-left:before { content: '\e80d'; } .rtl .td-next-prev-wrap .td-icon-menu-right:before { content: '\e80c'; } .td-icon-star:before { content: '\e80f'; } .td-icon-mail:before { content: '\e810'; } .td-icon-behance:before { content: '\e811'; } .td-icon-blogger:before { content: '\e812'; } .td-icon-delicious:before { content: '\e813'; } .td-icon-deviantart:before { content: '\e814'; } .td-icon-digg:before { content: '\e815'; } .td-icon-dribbble:before { content: '\e816'; } .td-icon-evernote:before { content: '\e817'; } .td-icon-facebook:before { content: '\e818'; } .td-icon-flickr:before { content: '\e819'; } .td-icon-forrst:before { content: '\e81a'; } .td-icon-googleplus:before { content: '\e81b'; } .td-icon-instagram:before { content: '\e81d'; } .td-icon-lastfm:before { content: '\e81e'; } .td-icon-linkedin:before { content: '\e81f'; } .td-icon-mail-1:before { content: '\e820'; } .td-icon-myspace:before { content: '\e821'; } .td-icon-path:before { content: '\e822'; } .td-icon-paypal:before { content: '\e823'; } .td-icon-pinterest:before { content: '\e825'; } .td-icon-reddit:before { content: '\e827'; } .td-icon-rss:before { content: '\e828'; } .td-icon-share:before { content: '\e829'; } .td-icon-skype:before { content: '\e82a'; } .td-icon-soundcloud:before { content: '\e82b'; } .td-icon-spotify:before { content: '\e82c'; } .td-icon-stackoverflow:before { content: '\e82d'; } .td-icon-steam:before { content: '\e82e'; } .td-icon-stumbleupon:before { content: '\e82f'; } .td-icon-tumblr:before { content: '\e830'; } .td-icon-twitter:before { content: '\e831'; } .td-icon-vimeo:before { content: '\e832'; } .td-icon-windows:before { content: '\e833'; } .td-icon-wordpress:before { content: '\e834'; } .td-icon-yahoo:before { content: '\e835'; } .td-icon-youtube:before { content: '\e836'; } .td-icon-vk:before { content: '\e837'; } .td-icon-grooveshark:before { content: '\e838'; } .td-icon-star-empty:before { content: '\e839'; } .td-icon-star-half:before { content: '\e83a'; } .td-icon-close:before { content: '\e83c'; } .td-icon-read-down:before { content: '\e83d'; } .td-icon-comments:before { content: "\e83b"; } .td-icon-mobile:before { content: '\e83e'; } .td-icon-whatsapp:before { content: '\f232'; } .td-icon-website:before { content: '\f232'; } .td-icon-commenting:before { content: '\f27a'; } .td-icon-close-mobile:before { content: '\e900'; } .td-icon-modal-back:before { content: '\e901'; } .td-icon-modal-close:before { content: '\e902'; } .td-icon-category:before { content: '\e903'; } .td-icon-block-header:before { content: '\e904'; } .td-icon-home:before { content: '\e905'; } .td-icon-print:before { content: '\f02f'; } .td-icon-telegram:before { content: '\f2c6'; } .td-icon-line:before { content: '\e906'; } .td-icon-viber:before { content: '\e907'; } .td-icon-plus:before { content: '\ea0a'; } .td-icon-minus:before { content: '\ea0b'; } .td-icon-dailymotion:before { content: '\e908'; } .td-icon-twitch:before { content: '\e909'; } .td-icon-xing:before { content: '\e90a'; } .td-icon-ebay:before { content: '\e90b'; } .td-icon-acolade:before { content: "\e90c"; } .td-icon-backslash:before { content: "\e90d"; } .td-icon-bracket-square:before { content: "\e90e"; } .td-icon-circle:before { content: "\e90f"; } .td-icon-circle-full:before { content: "\e910"; } .td-icon-circle-line:before { content: "\e911"; } .td-icon-circless:before { content: "\e912"; } .td-icon-comma-round:before { content: "\e913"; } .td-icon-comma-square:before { content: "\e914"; } .td-icon-hash:before { content: "\e915"; } .td-icon-linee:before { content: "\e916"; } .td-icon-pluss:before { content: "\e917"; } .td-icon-point-comma-round:before { content: "\e918"; } .td-icon-point-comma-square:before { content: "\e919"; } .td-icon-point-round:before { content: "\e91a"; } .td-icon-point-square:before { content: "\e91b"; } .td-icon-quote-round:before { content: "\e91c"; } .td-icon-quote-square:before { content: "\e91d"; } .td-icon-romb-full:before { content: "\e91e"; } .td-icon-romb-line:before { content: "\e91f"; } .td-icon-romb-round-full:before { content: "\e920"; } .td-icon-romb-round-line:before { content: "\e921"; } .td-icon-rombs:before { content: "\e922"; } .td-icon-slashh:before { content: "\e923"; } .td-icon-star-full:before { content: "\e924"; } .td-icon-star-line:before { content: "\e925"; } .td-icon-translingual:before { content: "\e926"; } .td-icon-upp:before { content: "\e927"; } .td-icon-vertical-line:before { content: "\e928"; } .td-icon-naver:before { content: "\e9d3"; } .td-icon-video-thumb-play:before { content: "\e9d4"; } .td-icon-audio-thumb-play:before { content: "\e9d5"; } .td-icon-cart:before { content: "\f07a"; } .td-icon-tiktok:before { content: "\e9d6"; } .td-icon-yandex:before { content: "\e9d7"; } .td-icon-flipboard:before { content: "\e9d9"; } .td-icon-insta-carousel:before { content: "\e9da"; } .td-icon-check:before { content: "\e9db"; } .td-icon-cart-empty:before { content: "\e9dc"; } .td-icon-profile:before { content: "\e9dd"; } .td-icon-log-out:before { content: "\e9de"; } .td-icon-discord:before { content: "\e9df"; } .td-icon-audio-pause:before { content: "\e9ce"; } .td-icon-audio-play:before { content: "\e9cf"; } .td-icon-audio-speaker:before { content: "\e9d0"; } .td-icon-audio-speaker-mute:before { content: "\e9d1"; } .td-icon-audio-refresh:before { content: "\e9d2"; } .td-icon-medium:before { content: "\e929"; } .td-icon-github:before { content: "\e92a"; } .td-icon-patreon:before { content: "\e92b"; } .td-icon-rumble:before { content: "\e92c"; } .td-icon-clouthub:before { content: "\e92d"; } .td-icon-gab:before { content: "\e92e"; } .td-icon-parler:before { content: "\e92f"; } .td-icon-gettr:before { content: "\e930"; } .td-icon-koo:before { content: "\e937"; } .td-icon-copy_url:before { content: "\e931"; } .td-icon-user-rev-star-empty:before { content: "\e932"; } .td-icon-user-rev-star-half:before { content: "\e933"; } .td-icon-user-rev-star-full:before { content: "\e934"; } .td-icon-kakao:before { content: "\e935"; } .td-icon-strava:before { content: "\e936"; } .td-icon-website:before { content: "\e938"; } .td-icon-bluesky:before { content: "\e93a"; } .td-icon-mastodon:before { content: "\e93b"; } .td-icon-threads:before { content: "\e93c"; } .td-social-icon-wrap:hover .td-icon-font { -webkit-transition: color 0.3s; transition: color 0.3s; color: #fff; } .td-social-icon-wrap:hover i.td-icon-behance { color: #000000; } .td-social-icon-wrap:hover i.td-icon-blogger { color: #ffa900; } .td-social-icon-wrap:hover i.td-icon-delicious { color: #3399ff; } .td-social-icon-wrap:hover i.td-icon-deviantart { color: #4e6252; } .td-social-icon-wrap:hover i.td-icon-digg { color: #000000; } .td-social-icon-wrap:hover i.td-icon-dribbble { color: #ea4c89; } .td-social-icon-wrap:hover i.td-icon-evernote { color: #07c257; } .td-social-icon-wrap:hover i.td-icon-facebook { color: #3B5998; } .td-social-icon-wrap:hover i.td-icon-flickr { color: #ff0084; } .td-social-icon-wrap:hover i.td-icon-forrst { color: #3b7140; } .td-social-icon-wrap:hover i.td-icon-googleplus { color: #dd4b39; } .td-social-icon-wrap:hover i.td-icon-grooveshark { color: #f77f00; } .td-social-icon-wrap:hover i.td-icon-instagram { color: #3f729b; } .td-social-icon-wrap:hover i.td-icon-lastfm { color: #ce2127; } .td-social-icon-wrap:hover i.td-icon-linkedin { color: #007bb6; } .td-social-icon-wrap:hover i.td-icon-mail { color: #000000; } .td-social-icon-wrap:hover i.td-icon-myspace { color: #000000; } .td-social-icon-wrap:hover i.td-icon-path { color: #e62f17; } .td-social-icon-wrap:hover i.td-icon-paypal { color: #009cde; } .td-social-icon-wrap:hover i.td-icon-pinterest { color: #cb2027; } .td-social-icon-wrap:hover i.td-icon-reddit { color: #ff4100; } .td-social-icon-wrap:hover i.td-icon-rss { color: #f36f24; } .td-social-icon-wrap:hover i.td-icon-share { color: #000000; } .td-social-icon-wrap:hover i.td-icon-skype { color: #01aef2; } .td-social-icon-wrap:hover i.td-icon-soundcloud { color: #ff5500; } .td-social-icon-wrap:hover i.td-icon-spotify { color: #81b900; } .td-social-icon-wrap:hover i.td-icon-stackoverflow { color: #000000; } .td-social-icon-wrap:hover i.td-icon-steam { color: #000000; } .td-social-icon-wrap:hover i.td-icon-stumbleupon { color: #eb4923; } .td-social-icon-wrap:hover i.td-icon-tumblr { color: #32506d; } .td-social-icon-wrap:hover i.td-icon-twitter { color: #00aced; } .td-social-icon-wrap:hover i.td-icon-vimeo { color: #5289cc; } .td-social-icon-wrap:hover i.td-icon-vk { color: #45668e; } .td-social-icon-wrap:hover i.td-icon-windows { color: #319de5; } .td-social-icon-wrap:hover i.td-icon-wordpress { color: #222222; } .td-social-icon-wrap:hover i.td-icon-yahoo { color: #720e9e; } .td-social-icon-wrap:hover i.td-icon-youtube { color: #bb0000; } .td-social-icon-wrap:hover i.td-icon-dailymotion { color: #41bafc; } .td-social-icon-wrap:hover i.td-icon-twitch { color: #4a377d; } .td-social-icon-wrap:hover i.td-icon-xing { color: #1e6567; } .td-social-icon-wrap:hover i.td-icon-ebay { color: #db2e32; } .td-social-icon-wrap:hover i.td-icon-telegram { color: #3b9de1; } .td-social-icon-wrap:hover i.td-icon-naver { color: #3ec729; } .td-social-icon-wrap:hover i.td-icon-tiktok { color: #009191; } .td-social-icon-wrap:hover i.td-icon-yandex { color: #ff0000; } .td-social-icon-wrap:hover i.td-icon-flipboard { color: #f52828; } .td-social-icon-wrap:hover i.td-icon-discord { color: #7289DA; } .td-social-icon-wrap:hover i.td-icon-whatsapp { color: #7bbf6a; } .td-social-icon-wrap:hover i.td-icon-website { color: #000000; } .td-social-icon-wrap:hover i.td-icon-bluesky { color: #08f; } .td-social-icon-wrap:hover i.td-icon-mastodon { color: #6161ff; } .td-social-icon-wrap:hover i.td-icon-threads { color: #000000; } .mx_image_background { background-color: #f2f2f2; } .td-visibility-hidden { visibility: hidden; } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } /* usage: .td-block-row { .mx-row(td-block-span); } @all_span_selector - is the begining of the span selector */ /* ---------------------------------------------------------------------------- editor style */ /* max width - content + sidebar */ html .mceContentBody { max-width: 696px; margin-left: 24px; margin-right: 24px; background: #ffffff url('images/editor-style/grid-sidebar-desktop.gif') repeat-y left top; font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; position: relative; /* responsive Landscape tablet */ } html .mceContentBody:after { content: 'SIDEBAR'; color: #ccc; position: absolute; right: -50px; top: 0; display: block; width: 10px; word-break: break-all; } html .mceContentBody .td-scroll-effect { background-color: rgba(255, 247, 112, 0.29); } @media (max-width: 743px) { html .mceContentBody { background: none; } html .mceContentBody:after { content: ''; } } /* max width - full content */ html .mceContentBody-max-width-big { max-width: 1068px; background: #ffffff url('images/editor-style/grid-no-sidebar-desktop.gif') repeat-y left top; /* responsive Landscape tablet */ } html .mceContentBody-max-width-big:after { content: ''; } html .mceContentBody-max-width-big .td-center { max-width: 1116px !important; } @media (max-width: 1115px) { html .mceContentBody-max-width-big { background: none; } } .mce-content-body img { height: auto; max-width: 100% !important; display: block; } .mce-content-body .td-center { max-width: 744px !important; } .mce-content-body .td-center.alignright { float: none; } .mce-content-body .gallery { margin: 0; padding: 0; } .mce-content-body .gallery img { display: inline-block; margin-bottom: 0; } .mce-content-body .gallery-item { display: inline-block; text-align: center; padding: 0; margin-bottom: 20px; } .mce-content-body .gallery-item .wp-caption-text { text-align: center; margin: 0; } .mce-content-body .gallery-columns-1 img { width: 100%; } .mce-content-body .td_btn { pointer-events: none; } .wp-caption-dd { padding: 0 !important; } .wp-caption-dt a { display: inline-block; } .wp-caption-dt img { margin-bottom: 0; } searchform.php000064400000000612150211537140007404 0ustar00
    loop-single.php000064400000017412150211537140007511 0ustar00
      cat_ID); $cat_name = $category->name; ?>

    <?php the_title() ?>
    <?php the_title() ?>
    '
    ', 'after' => '
    ', 'link_before' => '
    ', 'link_after' => '
    ', 'nextpagelink' => '', 'previouspagelink' => '', )); // tags $td_post_tags = get_the_tags(); if( !empty($td_post_tags) ) { ?>
    ID)) ?>
    ID)) ?>
    style-bbpress.css000064400000074043150211537140010063 0ustar00:root { --td_theme_color: #4db2ec; --td_grid_border_color: #ededed; --td_black: #222; --td_text_color: #111; --td_default_google_font_1: 'Open Sans', 'Open Sans Regular', sans-serif; --td_default_google_font_2: 'Roboto', sans-serif; } /* ---------------------------------------------------------------------------- responsive settings */ /* responsive landscape tablet */ /* responsive portrait tablet */ /* responsive portrait phone */ /* ---------------------------------------------------------------------------- bbPress plugin */ .bbpress .td-page-title { margin-bottom: 1px; } .bbpress .td-page-title a { color: #222; } .bbpress .bbp-admin-links a:hover { color: #222; } .bbpress .td-main-page-wrap { /* responsive portrait tablet */ /* responsive portrait phone */ } @media (min-width: 768px) and (max-width: 1018px) { .bbpress .td-main-page-wrap { padding-top: 30px; } } @media (max-width: 767px) { .bbpress .td-main-page-wrap { padding-top: 16px; } } #bbpress-forums { position: relative; padding-top: 4px; } #bbpress-forums .bbp-breadcrumb p { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); color: #c3c3c3; line-height: 14px; margin-bottom: 0; margin-top: 0; margin-left: 2px; } #bbpress-forums .bbp-breadcrumb a, #bbpress-forums .bbp-breadcrumb .bbp-breadcrumb-current { font-size: 12px; color: #c3c3c3; } #bbpress-forums .bbp-breadcrumb a:hover, #bbpress-forums .bbp-breadcrumb .bbp-breadcrumb-current:hover { color: #777; } #bbpress-forums .bbp-breadcrumb .bbp-breadcrumb-sep { font-size: 12px; margin: 0 5px 0 5px; } #bbpress-forums .bbp-search-form { width: 100%; padding: 21px 0; } #bbpress-forums div.bbp-search-form input, #bbpress-forums div.bbp-search-form button { font-size: 12px; line-height: 16px; } #bbpress-forums #bbp-search-form { position: relative; float: none; } #bbpress-forums #bbp-search-form #bbp_search { width: 95%; height: 32px; } #bbpress-forums #bbp-search-form .button { position: absolute; top: 0; right: 0; } #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results { border: none; margin-bottom: 0; } #bbpress-forums ul.bbp-replies .bbp-reply-header, #bbpress-forums ul.bbp-search-results .bbp-reply-header, #bbpress-forums ul.bbp-replies .bbp-topic-header, #bbpress-forums ul.bbp-search-results .bbp-topic-header { /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums ul.bbp-replies .bbp-reply-header, #bbpress-forums ul.bbp-search-results .bbp-reply-header, #bbpress-forums ul.bbp-replies .bbp-topic-header, #bbpress-forums ul.bbp-search-results .bbp-topic-header { border-bottom: 1px dashed #e8e8e8; } } #bbpress-forums li.bbp-header { padding-left: 16px; background: none #222222; color: #ffffff; } #bbpress-forums li.bbp-header li.bbp-forum-freshness, #bbpress-forums li.bbp-header li.bbp-topic-freshness { padding-right: 10px; } #bbpress-forums li.bbp-header .bbp-reply-content span a { color: #fff; } #bbpress-forums li.bbp-header .bbp-reply-content span a:hover { color: var(--td_theme_color, #4db2ec); } #bbpress-forums li.bbp-footer { background: none transparent; } #bbpress-forums .bbp-forum-freshness, #bbpress-forums .bbp-forum-topic-count, #bbpress-forums .bbp-forum-reply-count, #bbpress-forums .bbp-topic-freshness, #bbpress-forums .bbp-topic-voice-count, #bbpress-forums .bbp-topic-reply-count { text-align: right; } #bbpress-forums .bbp-forum-freshness, #bbpress-forums .bbp-topic-freshness { width: 33%; padding-right: 50px; padding-left: 10px; /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums .bbp-forum-freshness, #bbpress-forums .bbp-topic-freshness { padding-right: 0; } } #bbpress-forums .bbp-forum-freshness a, #bbpress-forums .bbp-topic-freshness a { color: #222222; font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 12px; font-weight: 600; } #bbpress-forums .bbp-forum-freshness a:hover, #bbpress-forums .bbp-topic-freshness a:hover { color: var(--td_theme_color, #4db2ec); } #bbpress-forums div.odd, #bbpress-forums ul.odd { background-color: transparent; margin-top: 10px; } #bbpress-forums li.bbp-body { margin-top: 20px; } #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic { padding-top: 10px; padding-right: 0; } #bbpress-forums li.bbp-body .bbp-forum-freshness, #bbpress-forums li.bbp-body .bbp-forum-topic-count, #bbpress-forums li.bbp-body .bbp-forum-reply-count, #bbpress-forums li.bbp-body .bbp-topic-freshness, #bbpress-forums li.bbp-body .bbp-topic-voice-count, #bbpress-forums li.bbp-body .bbp-topic-reply-count { font-size: 11px; } #bbpress-forums li.bbp-body .bbp-forum-freshness > a, #bbpress-forums li.bbp-body .bbp-topic-freshness > a { font-size: 10px; color: #c3c3c3; font-weight: normal; line-height: 12px; display: inline-block; } #bbpress-forums li.bbp-body .bbp-forum-freshness { margin-bottom: 7px; } #bbpress-forums li.bbp-forum-info, #bbpress-forums li.bbp-topic-title { position: relative; width: 49%; } #bbpress-forums .bbp-forum-content { font-style: italic; color: #c3c3c3; line-height: 17px; } #bbpress-forums li.bbp-forum-topic-count, #bbpress-forums li.bbp-forum-reply-count, #bbpress-forums li.bbp-topic-voice-count, #bbpress-forums li.bbp-topic-reply-count { width: 9%; } #bbpress-forums .bbp-body .bbp-forum-freshness, #bbpress-forums .bbp-body .bbp-topic-freshness { position: relative; } #bbpress-forums .bbp-body .bbp-forum-freshness img, #bbpress-forums .bbp-body .bbp-topic-freshness img { position: absolute; right: 0; top: 3px; margin: 0; /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums .bbp-body .bbp-forum-freshness img, #bbpress-forums .bbp-body .bbp-topic-freshness img { display: none; } } #bbpress-forums .bbp-body .bbp-forum-freshness p, #bbpress-forums .bbp-body .bbp-topic-freshness p { margin: 0; line-height: 17px; } #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums .widget_display_replies img.avatar { border: none; width: 40px; } #bbpress-forums .bbp-forums-list li { color: #fff; display: block; } #bbpress-forums .bbp-forums-list li a { color: #444; } #bbpress-forums .bbp-forums-list li a:hover { color: var(--td_theme_color, #4db2ec); } #bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 14px; font-weight: 600; color: #111; } #bbpress-forums .bbp-forum-title:hover, #bbpress-forums .bbp-topic-permalink:hover { color: var(--td_theme_color, #4db2ec); } #bbpress-forums .bbp-topic-started-by, #bbpress-forums .bbp-topic-started-in { color: #c3c3c3; font-size: 10px; } #bbpress-forums .bbp-topic-started-by a, #bbpress-forums .bbp-topic-started-in a { color: #666666; } #bbpress-forums .bbp-topic-started-by a:hover, #bbpress-forums .bbp-topic-started-in a:hover { color: var(--td_theme_color, #4db2ec); } #bbpress-forums .bbp-topic-started-by img, #bbpress-forums .bbp-topic-started-in img { position: absolute; top: 2px; left: 0; margin: 0; } #bbpress-forums .bbp-topics li.bbp-header { margin-top: 0; } #bbpress-forums p.bbp-topic-meta span { white-space: initial; } #bbpress-forums li.bbp-body ul.topic { padding-left: 0; padding-bottom: 19px; padding-top: 14px; } #bbpress-forums li.bbp-body li.bbp-topic-title { line-height: 15px; position: relative; top: 1px; } #bbpress-forums li.bbp-body li.bbp-topic-title .bbp-topic-meta { margin: 0 0 0 50px; display: inline-block; line-height: 15px; } #bbpress-forums li.bbp-body li.bbp-topic-title .bbp-topic-permalink { margin: 0 0 4px 50px; display: block; line-height: 20px; } #bbpress-forums .bbp-body .super-sticky, #bbpress-forums .bbp-body .sticky { background-color: #fcfcfc !important; } #bbpress-forums .bbp-body .super-sticky li.bbp-topic-title, #bbpress-forums .bbp-body .sticky li.bbp-topic-title { top: 1px; } #bbpress-forums .bbp-body .super-sticky .bbp-topic-started-by img, #bbpress-forums .bbp-body .sticky .bbp-topic-started-by img { top: 2px; } #bbpress-forums .bbp-body .super-sticky li.bbp-topic-title .bbp-topic-permalink, #bbpress-forums .bbp-body .sticky li.bbp-topic-title .bbp-topic-permalink { margin-bottom: 3px; color: var(--td_theme_color, #4db2ec); } #bbpress-forums li.bbp-topic-freshness { width: 27%; } #bbpress-forums li.bbp-topic-title { width: 55%; } #bbpress-forums div.bbp-template-notice, #bbpress-forums div.indicator-hint { border-radius: 0; } #bbpress-forums div.bbp-template-notice p { margin: 9px 0 9px 9px !important; position: relative; font-size: 11px; line-height: 20px; } #bbpress-forums div.bbp-template-notice img { width: 20px !important; display: inline; vertical-align: middle; margin-bottom: 0 !important; margin-left: 5px; margin-right: 5px; } #bbpress-forums .wp-editor-area { border: 1px solid #e6e6e6; } #bbpress-forums button { border: none; box-shadow: none; color: #fff; background: none #222; font-size: 11px; padding: 10px; text-shadow: none; line-height: 1; margin-bottom: 10px; } #bbpress-forums button:hover { background-color: var(--td_theme_color, #4db2ec); } #bbpress-forums .bbp-replies .bbp-header { margin-top: 0; } #bbpress-forums .bbp-body .hentry { padding: 0; } #bbpress-forums ul.bbp-replies .bbp-body .hentry, #bbpress-forums ul.bbp-search-results .bbp-body .hentry { margin-bottom: 40px; /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums ul.bbp-replies .bbp-body .hentry, #bbpress-forums ul.bbp-search-results .bbp-body .hentry { margin: 0; } } #bbpress-forums .bbp-reply-post-date, #bbpress-forums .bbp-topic-post-date { font-size: 11px; } #bbpress-forums div.bbp-forum-header, #bbpress-forums div.bbp-topic-header, #bbpress-forums div.bbp-reply-header { padding: 4px 8px 5px 8px; background-color: #fcfcfc; border-bottom: 1px solid var(--td_grid_border_color, #ededed); border-top: 1px solid var(--td_grid_border_color, #ededed); /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums div.bbp-forum-header, #bbpress-forums div.bbp-topic-header, #bbpress-forums div.bbp-reply-header { padding: 4px 0 5px 0; } } #bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author, #bbpress-forums div.bbp-search-author { width: 80px !important; } #bbpress-forums div.bbp-forum-author a.bbp-author-name, #bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name, #bbpress-forums div.bbp-search-author a.bbp-author-name { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-weight: 600; line-height: 16px; margin: 0; width: 80px; word-wrap: break-word; } #bbpress-forums div.bbp-forum-author br, #bbpress-forums div.bbp-topic-author br, #bbpress-forums div.bbp-reply-author br, #bbpress-forums div.bbp-search-author br { display: none; } #bbpress-forums div.bbp-forum-author img, #bbpress-forums div.bbp-topic-author img, #bbpress-forums div.bbp-reply-author img, #bbpress-forums div.bbp-search-author img { display: inline-block; margin-bottom: 2px; } #bbpress-forums div.bbp-forum-author .bbp-author-role, #bbpress-forums div.bbp-topic-author .bbp-author-role, #bbpress-forums div.bbp-reply-author .bbp-author-role, #bbpress-forums div.bbp-search-author .bbp-author-role { color: #c3c3c3; font-size: 10px; font-style: normal; line-height: 20px; } #bbpress-forums li.bbp-header .bbp-search-author, #bbpress-forums li.bbp-header .bbp-forum-author, #bbpress-forums li.bbp-header .bbp-topic-author, #bbpress-forums li.bbp-header .bbp-reply-author { text-align: left; } #bbpress-forums li.bbp-header div.bbp-forum-content, #bbpress-forums li.bbp-header div.bbp-topic-content, #bbpress-forums li.bbp-header div.bbp-reply-content { margin-left: 85px; } #bbpress-forums li.bbp-footer div { display: none; } #bbpress-forums .bbp-forum-header a.bbp-forum-permalink, #bbpress-forums .bbp-topic-header a.bbp-topic-permalink, #bbpress-forums .bbp-reply-header a.bbp-reply-permalink { font-size: 10px; color: #555; position: relative; top: 1px; margin-left: 20px; } #bbpress-forums .bbp-forum-header a.bbp-forum-permalink:hover, #bbpress-forums .bbp-topic-header a.bbp-topic-permalink:hover, #bbpress-forums .bbp-reply-header a.bbp-reply-permalink:hover { color: #000; } #bbpress-forums .bbp-body div.bbp-forum-content, #bbpress-forums .bbp-body div.bbp-topic-content, #bbpress-forums .bbp-body div.bbp-reply-content { margin-left: 100px !important; } #bbpress-forums .bbp-forums .bbp-body div.bbp-forum-content { margin-left: 0 !important; } #bbpress-forums fieldset.bbp-form { margin-bottom: 0; } #bbpress-forums fieldset.bbp-form label { font-size: 12px; } #bbpress-forums .bbp-reply-form { margin-top: 20px; } #bbpress-forums div.bbp-forum-title, #bbpress-forums div.bbp-topic-title, #bbpress-forums div.bbp-reply-title { clear: both; } #bbpress-forums div.bbp-forum-title h3, #bbpress-forums div.bbp-topic-title h3, #bbpress-forums div.bbp-reply-title h3 { font-size: 12px; color: #c3c3c3; margin: 3px 0 3px 0; } #bbpress-forums div.bbp-forum-title h3 a, #bbpress-forums div.bbp-topic-title h3 a, #bbpress-forums div.bbp-reply-title h3 a { font-size: 12px; font-weight: 600; margin-left: 10px; } #bbpress-forums div.bbp-forum-title .bbp-topic-title-meta, #bbpress-forums div.bbp-topic-title .bbp-topic-title-meta, #bbpress-forums div.bbp-reply-title .bbp-topic-title-meta { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 12px; color: #c3c3c3; } #bbpress-forums div.bbp-forum-title .bbp-topic-title-meta a, #bbpress-forums div.bbp-topic-title .bbp-topic-title-meta a, #bbpress-forums div.bbp-reply-title .bbp-topic-title-meta a { font-size: 12px; font-weight: 600; margin-left: 10px; } #bbpress-forums .bbp-topic-header .bbp-meta .bbp-topic-permalink { font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; } #bbpress-forums #subscription-toggle { color: #575757; font-weight: normal; margin-right: 1px; float: right; vertical-align: bottom; } #bbpress-forums .bbp-pagination .current { background-color: var(--td_theme_color, #4db2ec); border-color: var(--td_theme_color, #4db2ec); color: #fff; } #bbpress-forums .bbp-pagination a, #bbpress-forums .bbp-pagination span { border: 1px solid #e6e6e6; color: #444; display: inline-block; float: left; line-height: 21px; margin-left: 5px; min-width: 28px; padding: 2px 5px 3px; text-align: center; } #bbpress-forums .bbp-pagination a:hover { background-color: #444; border-color: #444; color: #fff; } #bbpress-forums .bbp-pagination .bbp-pagination-links a:hover, #bbpress-forums .bbp-pagination .bbp-pagination-links span.current { opacity: 1; } #bbpress-forums .bbp-pagination-count { margin-top: 2px; } #bbpress-forums .bbp-topic-tags p { font-size: 10px; color: #c3c3c3; } .single-forum #subscription-toggle { margin-top: -4px; margin-bottom: 12px; } #bbpress-forums li.bbp-header { border-top: 0; } #bbp-user-replies-created .bbp-reply-post-date, #bbp-user-replies-created .bbp-header { color: #999; font-size: 11px; } #bbp-user-replies-created .bbp-topic-permalink { display: block; } .bbp-user-page .bbp-user-section p { margin-bottom: 10px; } .bbp-user-page .bbp-user-section p.bbp-user-description { margin-bottom: 21px; } .bbp-user-page .bbp-user-section { margin-bottom: 21px; } .bbp-user-page .td-page-title { /* responsive portrait phone */ } @media (max-width: 480px) { .bbp-user-page .td-page-title { text-align: center; } } #bbp-user-navigation li a { font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 13px; } #bbp-user-navigation li a:hover { color: #222; } .bbp-user-page #bbpress-forums { padding-top: 16px; } #bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar { width: 100px; height: 100px; margin: 0 0 15px; } #bbp-user-body ul.bbp-topics, #bbp-user-body ul.bbp-replies { clear: both !important; } .bbp-user-edit #bbp-your-profile .entry-title { margin-bottom: 0 !important; } #bbp-your-profile fieldset { border: 0; margin: 0; } #bbpress-forums #bbp-single-user-details #bbp-user-navigation { display: inline-block; margin: 0 0 20px; } #bbpress-forums #bbp-single-user-details { width: 100%; float: none; } #bbpress-forums #bbp-user-body { margin-left: 0; } #bbpress-forums #bbp-single-user-details #bbp-user-navigation li { display: inline-block; } .bbp-row-actions #favorite-toggle a, .bbp-row-actions #subscription-toggle a { position: absolute; top: 2px; left: 0; z-index: 1; font-size: 9px; line-height: 12px; } .bbp-user-page #bbpress-forums #subscription-toggle { margin-right: 0; } #bbpress-forums #bbp-single-user-details #bbp-user-navigation a { padding: 3px 12px; } #bbpress-forums #bbp-single-user-details { /* responsive portrait phone */ } @media (max-width: 480px) { #bbpress-forums #bbp-single-user-details { text-align: center; width: 100%; } } #bbpress-forums #bbp-single-user-details #bbp-user-avatar { /* responsive portrait phone */ } @media (max-width: 480px) { #bbpress-forums #bbp-single-user-details #bbp-user-avatar { text-align: center; width: 100%; } } #bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a { color: #fff; background-color: var(--td_theme_color, #4db2ec); } #bbpress-forums #bbp-your-profile fieldset input, #bbpress-forums #bbp-your-profile fieldset textarea { width: 80%; background: transparent; } #bbpress-forums #bbp-your-profile fieldset fieldset.password { width: 80%; } #bbpress-forums #bbp-user-wrapper h2.entry-title { display: inline-block; padding: 6px 12px 6px; margin-bottom: 10px; background-color: #222; color: #FFF; font-family: var(--td_default_google_font_2, 'Roboto', sans-serif); font-size: 14px; line-height: 17px; } #bbpress-forums #bbp-your-profile fieldset { margin-bottom: 48px; border-top: 2px solid #222; } #bbpress-forums #bbp-your-profile fieldset.submit { border-top: 0; padding: 0; } #bbpress-forums li.bbp-header li.bbp-forum-info, #bbpress-forums li.bbp-body li.bbp-forum-info, #bbpress-forums li.bbp-header li.bbp-topic-title, #bbpress-forums li.bbp-body li.bbp-topic-title { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums li.bbp-header li.bbp-forum-info, #bbpress-forums li.bbp-body li.bbp-forum-info, #bbpress-forums li.bbp-header li.bbp-topic-title, #bbpress-forums li.bbp-body li.bbp-topic-title { width: 100%; } } #bbpress-forums li.bbp-header li.bbp-forum-topic-count, #bbpress-forums li.bbp-header li.bbp-forum-reply-count, #bbpress-forums li.bbp-body li.bbp-forum-topic-count, #bbpress-forums li.bbp-body li.bbp-forum-reply-count, #bbpress-forums li.bbp-header li.bbp-topic-voice-count, #bbpress-forums li.bbp-header li.bbp-topic-reply-count, #bbpress-forums li.bbp-body li.bbp-topic-voice-count, #bbpress-forums li.bbp-body li.bbp-topic-reply-count { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums li.bbp-header li.bbp-forum-topic-count, #bbpress-forums li.bbp-header li.bbp-forum-reply-count, #bbpress-forums li.bbp-body li.bbp-forum-topic-count, #bbpress-forums li.bbp-body li.bbp-forum-reply-count, #bbpress-forums li.bbp-header li.bbp-topic-voice-count, #bbpress-forums li.bbp-header li.bbp-topic-reply-count, #bbpress-forums li.bbp-body li.bbp-topic-voice-count, #bbpress-forums li.bbp-body li.bbp-topic-reply-count { width: 20%; } } #bbpress-forums li.bbp-header li.bbp-forum-freshness, #bbpress-forums li.bbp-body li.bbp-forum-freshness, #bbpress-forums li.bbp-header li.bbp-topic-freshness, #bbpress-forums li.bbp-body li.bbp-topic-freshness { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums li.bbp-header li.bbp-forum-freshness, #bbpress-forums li.bbp-body li.bbp-forum-freshness, #bbpress-forums li.bbp-header li.bbp-topic-freshness, #bbpress-forums li.bbp-body li.bbp-topic-freshness { width: 58%; } } #bbpress-forums li.bbp-header .bbp-forum-topic-count, #bbpress-forums li.bbp-header .bbp-forum-reply-count, #bbpress-forums li.bbp-header .bbp-forum-freshness, #bbpress-forums li.bbp-footer { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums li.bbp-header .bbp-forum-topic-count, #bbpress-forums li.bbp-header .bbp-forum-reply-count, #bbpress-forums li.bbp-header .bbp-forum-freshness, #bbpress-forums li.bbp-footer { font-size: 10px !important; } } #bbpress-forums li.bbp-header li.bbp-forum-info, #bbpress-forums li.bbp-header li.bbp-topic-title { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums li.bbp-header li.bbp-forum-info, #bbpress-forums li.bbp-header li.bbp-topic-title { text-align: center; text-transform: uppercase; font-size: 15px !important; font-weight: 600; } } div.bbp-search-form input, div.bbp-search-form button { /* responsive portrait phone */ } @media (max-width: 510px) { div.bbp-search-form input, div.bbp-search-form button { padding: 8px 15px; } } #bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink { font-size: 15px; line-height: 21px; } } #bbpress-forums .bbp-body ul { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums .bbp-body ul { padding-bottom: 5px !important; } } #bbpress-forums .bbp-body div.bbp-reply-author { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums .bbp-body div.bbp-reply-author { margin: 0; min-height: inherit; } } #bbpress-forums .bbp-topic-tags p { /* responsive portrait phone */ } @media (max-width: 510px) { #bbpress-forums .bbp-topic-tags p { margin-top: 10px; margin-bottom: 20px !important; } } #bbpress-forums div.bbp-reply-author img.avatar, #bbpress-forums div.bbp-topic-author img.avatar { /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums div.bbp-reply-author img.avatar, #bbpress-forums div.bbp-topic-author img.avatar { width: 20px; margin: 0 10px 0 0 !important; vertical-align: top; position: relative; top: 0; } } #bbpress-forums .reply .bbp-reply-author, #bbpress-forums .topic .bbp-topic-author, #bbpress-forums .topic .bbp-reply-author { /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums .reply .bbp-reply-author, #bbpress-forums .topic .bbp-topic-author, #bbpress-forums .topic .bbp-reply-author { width: 100% !important; text-align: left; color: #c3c3c3; font-size: 10px; padding: 6px 0 2px 0 !important; margin-bottom: 6px !important; background-color: #fcfcfc; border-bottom: 1px solid var(--td_grid_border_color, #ededed); } } @media (max-width: 767px) { #bbpress-forums .reply .bbp-reply-author .bbp-author-name, #bbpress-forums .topic .bbp-topic-author .bbp-author-name, #bbpress-forums .topic .bbp-reply-author .bbp-author-name { font-size: 12px; } } #bbpress-forums .reply .bbp-reply-author .bbp-author-name, #bbpress-forums .topic .bbp-topic-author .bbp-author-name, #bbpress-forums .topic .bbp-reply-author .bbp-author-name, #bbpress-forums .reply .bbp-reply-author .bbp-author-role, #bbpress-forums .topic .bbp-topic-author .bbp-author-role, #bbpress-forums .topic .bbp-reply-author .bbp-author-role, #bbpress-forums .reply .bbp-reply-author .bbp-reply-ip, #bbpress-forums .topic .bbp-topic-author .bbp-reply-ip, #bbpress-forums .topic .bbp-reply-author .bbp-reply-ip { /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums .reply .bbp-reply-author .bbp-author-name, #bbpress-forums .topic .bbp-topic-author .bbp-author-name, #bbpress-forums .topic .bbp-reply-author .bbp-author-name, #bbpress-forums .reply .bbp-reply-author .bbp-author-role, #bbpress-forums .topic .bbp-topic-author .bbp-author-role, #bbpress-forums .topic .bbp-reply-author .bbp-author-role, #bbpress-forums .reply .bbp-reply-author .bbp-reply-ip, #bbpress-forums .topic .bbp-topic-author .bbp-reply-ip, #bbpress-forums .topic .bbp-reply-author .bbp-reply-ip { display: inline-block; margin-right: 10px; text-align: left; width: auto; } } #bbpress-forums .bbp-body .reply .bbp-reply-content, #bbpress-forums .bbp-body .topic .bbp-reply-content, #bbpress-forums .bbp-body .topic .bbp-topic-content { /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums .bbp-body .reply .bbp-reply-content, #bbpress-forums .bbp-body .topic .bbp-reply-content, #bbpress-forums .bbp-body .topic .bbp-topic-content { margin: 0 !important; padding: 0 8px 12px 30px; } } #bbpress-forums .bbp-body .reply .bbp-reply-content p, #bbpress-forums .bbp-body .topic .bbp-reply-content p, #bbpress-forums .bbp-body .topic .bbp-topic-content p { /* responsive portrait phone */ } @media (max-width: 767px) { #bbpress-forums .bbp-body .reply .bbp-reply-content p, #bbpress-forums .bbp-body .topic .bbp-reply-content p, #bbpress-forums .bbp-body .topic .bbp-topic-content p { margin-bottom: 21px; } } #bbpress-forums li.bbp-header li { font-size: 12px; } /* widgets */ .widget_display_search { margin-bottom: 20px; } .widget_display_search form { position: relative; margin-top: 21px; } .widget_display_search .block-title { margin-bottom: 0; } .widget_display_search label { display: none; } .widget_display_search #bbp_search { height: 32px; width: 95%; } .widget_display_search #bbp_search_submit { position: absolute; top: 0; right: 0; } .bbp_widget_login { margin-bottom: 20px; } .bbp_widget_login .block-title { margin-bottom: 0; display: block; } .bbp_widget_login fieldset { border: none; margin: 0; padding: 0; } .bbp_widget_login fieldset #user_pass { border: 1px solid #e6e6e6; color: #444444; font-size: 12px; height: 34px; line-height: 21px; max-width: 100%; padding: 3px 9px; width: 100%; } .bbp_widget_login fieldset #user_pass:focus { border-color: #cccccc; } .bbp_widget_login .button { border: none; box-shadow: none; color: #fff; background: none #222; font-size: 11px; padding: 8px 14px; text-shadow: none; line-height: 1; margin-bottom: 10px; } .bbp_widget_login .button:hover { background-color: var(--td_theme_color, #4db2ec); color: #ffffff; } .bbp_widget_login h4 { margin: 6px 10px 0 0; font-size: 14px; display: inline-block; } .bbp_widget_login .bbp-logged-in { margin-top: 20px; display: inline-block; } .widget_display_replies, .widget_display_topics { margin-bottom: 20px; display: inline-block; } .widget_display_replies .block-title, .widget_display_topics .block-title { margin-bottom: 0; display: block; } .widget_display_replies li, .widget_display_topics li { line-height: 20px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed var(--td_grid_border_color, #ededed); font-size: 13px; } .widget_display_replies ul, .widget_display_topics ul { margin-top: 20px; } .widget_display_replies .bbp-author-name, .widget_display_topics .bbp-author-name { font-family: var(--td_default_google_font_1, 'Open Sans', 'Open Sans Regular', sans-serif); font-size: 12px; font-weight: 600; color: var(--td_theme_color, #4db2ec); left: -2px; position: relative; } .widget_display_replies li div, .widget_display_topics li div { display: block; font-size: 11px; color: #c3c3c3; } .widget_display_replies .bbp-reply-topic-title, .widget_display_topics .bbp-reply-topic-title { left: 3px; position: relative; } .widget_display_replies img, .widget_display_topics img { width: 20px; margin-right: 6px; vertical-align: middle; } .widget_display_forums { margin-bottom: 16px; } .widget_display_stats .block-title { margin-bottom: 0; } .widget_display_stats dl { margin-top: 20px; } .widget_display_stats dd { display: inline-block; margin: 0 0 10px 0; text-align: right; width: 30%; padding-bottom: 10px; border-bottom: 1px dashed var(--td_grid_border_color, #ededed); } .widget_display_stats dt { display: inline-block; float: left; width: 70%; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed var(--td_grid_border_color, #ededed); } .td-footer-container .button { background-color: #000; } .td-footer-container .widget_display_stats dt, .td-footer-container .widget_display_stats dd, .td-footer-container .widget_display_replies li, .td-footer-container .widget_display_topics li { border-bottom: 1px dashed rgba(255, 255, 255, 0.15); } .widget_display_replies, .widget_display_topics { width: 100%; } @media (max-width: 480px) { .bbp-search-results .bbp-topic-author { position: relative; padding-left: 80px; } .bbp-search-results .bbp-topic-author img.avatar { position: absolute; left: 0; max-width: 60px !important; margin: 0 !important; } .bbp-search-results .bbp-topic-author a.bbp-author-name { display: inline-block !important; text-align: left; } } #bbpress-forums div.bbp-reply-content p, #bbpress-forums div.bbp-reply-content li { font-size: 15px; line-height: 26px; } #bbpress-forums div.bbp-reply-content ul { margin-bottom: 21px; margin-left: 40px; } #bbpress-forums ul.bbp-topic-revision-log img.avatar { width: 24px; } #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li, #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li, #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li { font-size: 11px; } #bbpress-forums div.even { margin-top: 10px; } #bbpress-forums li.bbp-body li.bbp-topic-title .bbp-topic-pagination { margin-left: 50px; }
    ', esc_html__( 'Upgrade message from the plugin author:', 'tgmpa' ), ' ', wp_kses_data( $item['upgrade_notice'] ), '