Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/123click/assets/ |
Upload File : |
PK ! �k: � � admin-pointer.phpnu �[��� <?php
namespace Elementor\Modules\Apps;
use Elementor\Core\Upgrade\Manager as Upgrade_Manager;
use Elementor\User;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Admin_Pointer {
const RELEASE_VERSION = '3.15.0';
const CURRENT_POINTER_SLUG = 'e-apps';
public static function add_hooks() {
add_action( 'admin_print_footer_scripts-index.php', [ __CLASS__, 'admin_print_script' ] );
}
public static function admin_print_script() {
if ( static::is_dismissed() || static::is_new_installation() ) {
return;
}
wp_enqueue_script( 'wp-pointer' );
wp_enqueue_style( 'wp-pointer' );
$pointer_content = '<h3>' . esc_html__( 'New! Popular Apps', 'elementor' ) . '</h3>';
$pointer_content .= '<p>' . esc_html__( 'Discover our collection of plugins and add-ons carefully selected to enhance your Elementor website and unleash your creativity.', 'elementor' ) . '</p>';
$pointer_content .= sprintf(
'<p><a class="button button-primary" href="%s">%s</a></p>',
admin_url( 'admin.php?page=' . Module::PAGE_ID ),
esc_html__( 'Explore Apps', 'elementor' )
)
?>
<script>
jQuery( document ).ready( function( $ ) {
$( '#toplevel_page_elementor' ).pointer( {
content: '<?php echo $pointer_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>',
position: {
edge: <?php echo is_rtl() ? "'right'" : "'left'"; ?>,
align: 'center'
},
close: function() {
elementorCommon.ajax.addRequest( 'introduction_viewed', {
data: {
introductionKey: '<?php echo esc_attr( static::CURRENT_POINTER_SLUG ); ?>',
},
} );
}
} ).pointer( 'open' );
} );
</script>
<?php
}
private static function is_dismissed() {
return User::get_introduction_meta( static::CURRENT_POINTER_SLUG );
}
private static function is_new_installation() {
return Upgrade_Manager::install_compare( static::RELEASE_VERSION, '>=' );
}
}
PK ! $*�{ {
module.phpnu �[��� <?php
namespace Elementor\Modules\Apps;
use Elementor\Core\Admin\Menu\Admin_Menu_Manager;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Settings;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends BaseModule {
const PAGE_ID = 'elementor-apps';
public function get_name() {
return 'apps';
}
public function __construct() {
parent::__construct();
Admin_Pointer::add_hooks();
add_action( 'elementor/admin/menu/register', function( Admin_Menu_Manager $admin_menu ) {
$admin_menu->register( static::PAGE_ID, new Admin_Menu_Apps() );
}, 115 );
add_action( 'elementor/admin/menu/after_register', function ( Admin_Menu_Manager $admin_menu, array $hooks ) {
if ( ! empty( $hooks[ static::PAGE_ID ] ) ) {
add_action( "admin_print_scripts-{$hooks[ static::PAGE_ID ]}", [ $this, 'enqueue_assets' ] );
}
}, 10, 2 );
add_filter( 'elementor/finder/categories', function( array $categories ) {
$categories['site']['items']['apps'] = [
'title' => esc_html__( 'Apps', 'elementor' ),
'url' => admin_url( 'admin.php?page=' . static::PAGE_ID ),
'icon' => 'apps',
'keywords' => [ 'apps', 'addon', 'plugin', 'extension', 'integration' ],
];
return $categories;
} );
}
public function enqueue_assets() {
add_filter( 'admin_body_class', [ $this, 'body_status_classes' ] );
wp_enqueue_style(
'elementor-apps',
$this->get_css_assets_url( 'modules/apps/admin' ),
[],
ELEMENTOR_VERSION
);
}
public function body_status_classes( $admin_body_classes ) {
$admin_body_classes .= ' elementor-apps-page';
return $admin_body_classes;
}
}
PK ! )�l l images/hover.svgnu �[��� <svg width="800px" height="800px" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<circle cx="512" cy="512" r="512" style="fill:#229e87"/>
<path d="M307.87 456.11c-14.54 0-26.48 4.15-32.71 13V412.5h-33.24v151.6h33.75v-56.59c0-13.5 7.79-20.77 21.29-20.77 11.94 0 17.65 6.75 17.65 18.7v58.66h33.23v-60.75c0-30.11-16.61-47.24-39.97-47.24zm109 0c-32.71 0-58.15 22.85-58.15 55.56 0 32.19 25.44 55 58.15 55s58.15-22.84 58.15-55-25.41-55.56-58.12-55.56zm0 82c-15.06 0-23.89-10.91-23.89-26.48 0-16.1 9.35-26.48 23.89-26.48 15.05 0 23.88 10.91 23.88 26.48s-8.75 26.51-23.85 26.51zm189.51-79.44h-28c-11.42 0-25.44 6.75-32.19 23.37l-4.19 7.82c-4.67 10.91-8.31 18.17-8.31 18.17l-1 4.67-1.57-4.7s-3.63-7.78-8.3-18.17l-3.64-8.31c-6.75-16.62-21.29-23.37-32.19-23.37H459s11.42 3.12 23.37 23.37c11.89 19.76 44.63 84.67 44.63 84.67h11.95s32.71-64.9 44.65-84.63c11.42-19.73 22.84-22.84 22.84-22.84zm43.62-2.55c-32.71 0-58.15 22.84-58.15 55 0 32.71 24.41 55.55 62.31 55.55 22.33 0 34.79-6.75 45.17-15.57l-19.21-20.77a46.87 46.87 0 0 1-26.48 8.31c-15.05 0-23.88-6.23-27.52-17.14h80.48c1.56-36.86-18.69-65.42-56.59-65.42zm-23.88 45.17c2.59-12.46 11.42-18.69 24.92-18.69 13 0 20.77 6.75 22.33 18.69zm156.28-45.17c-10.91 0-23.37 3.63-29.6 15.05v-13h-33.72v105.4h33.75v-46.71c0-22.33 8.31-29.6 23.37-29.6a28.14 28.14 0 0 1 13 3.12l10.91-30.63a50 50 0 0 0-17.65-3.63z" style="fill:#fff"/>
</svg>
PK ! C�t t images/profile-builder.svgnu �[��� <svg width="124" height="124" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M49.6 20.321c0 11.223-7.167 16.879-18.606 16.879-11.44 0-18.594-5.656-18.594-16.879C12.4 9.098 19.554 0 30.994 0 42.434 0 49.6 9.098 49.6 20.321zM30.994 31.078c6.055 0 10.964-4.816 10.964-10.757 0-5.94-4.909-10.757-10.964-10.757-6.055 0-10.964 4.816-10.964 10.757 0 5.94 4.909 10.757 10.964 10.757z" fill="url(#b)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M111.6 20.321c0 11.223-7.155 16.879-18.594 16.879-11.44 0-18.606-5.656-18.606-16.879C74.4 9.098 81.566 0 93.006 0 104.445 0 111.6 9.098 111.6 20.321zM93.006 31.078c6.055 0 10.964-4.816 10.964-10.757 0-5.94-4.909-10.757-10.964-10.757-6.055 0-10.964 4.816-10.964 10.757 0 5.94 4.909 10.757 10.964 10.757z" fill="url(#c)"/><path d="M40.532 46.278c-6.194-2.576-12.86-2.58-19.056-.01-6.195 2.568-11.604 7.578-15.458 14.32C2.163 67.328.058 75.458 0 83.824c-.057 8.366 1.938 16.542 5.7 23.368 3.763 6.827 9.102 11.958 15.262 14.665 6.159 2.707 12.825 2.853 19.053.417 6.227-2.436 11.7-7.33 15.641-13.988.125-.211.238-.429.339-.653l.012.01 19.878-39.588-.016-.014.01-.016c2.64-4.624 6.344-8.062 10.59-9.827 4.245-1.765 8.814-1.768 13.06-.007 4.247 1.76 7.954 5.195 10.596 9.815 2.643 4.621 4.085 10.194 4.124 15.927.039 5.734-1.328 11.339-3.907 16.018-2.579 4.679-6.239 8.196-10.46 10.052-4.222 1.855-8.791 1.955-13.06.286-4.269-1.67-8.02-5.025-10.721-9.588-1.63-2.754-4.688-3.288-6.83-1.193-2.143 2.094-2.559 6.025-.929 8.778 3.941 6.658 9.414 11.552 15.641 13.988 6.228 2.436 12.894 2.29 19.053-.417 6.16-2.707 11.499-7.838 15.262-14.665 3.762-6.826 5.757-15.002 5.7-23.368-.057-8.365-2.162-16.495-6.017-23.236-3.854-6.742-9.263-11.752-15.458-14.32-6.195-2.57-12.862-2.566-19.056.01-6.193 2.575-11.599 7.591-15.449 14.336-.12.21-.228.426-.324.647l-19.842 39.515c-2.698 4.525-6.431 7.852-10.676 9.513-4.269 1.669-8.838 1.569-13.06-.286-4.222-1.856-7.881-5.373-10.46-10.052-2.58-4.68-3.946-10.283-3.907-16.017.039-5.734 1.481-11.307 4.123-15.928 2.643-4.62 6.35-8.055 10.596-9.815 4.247-1.76 8.816-1.758 13.062.007 4.245 1.765 7.95 5.203 10.589 9.827 1.592 2.79 4.643 3.392 6.814 1.346 2.17-2.047 2.639-5.967 1.047-8.757-3.85-6.745-9.256-11.761-15.45-14.336z" fill="url(#d)"/></g><defs><linearGradient id="b" x1="0" y1="59.52" x2="124" y2="58.28" gradientUnits="userSpaceOnUse"><stop stop-color="#F7AA0F"/><stop offset=".38" stop-color="#F7AA10"/><stop offset=".646" stop-color="#1116B0"/><stop offset="1" stop-color="#0F15B0"/></linearGradient><linearGradient id="c" x1="0" y1="59.52" x2="124" y2="58.28" gradientUnits="userSpaceOnUse"><stop stop-color="#F7AA0F"/><stop offset=".38" stop-color="#F7AA10"/><stop offset=".646" stop-color="#1116B0"/><stop offset="1" stop-color="#0F15B0"/></linearGradient><linearGradient id="d" x1="0" y1="59.52" x2="124" y2="58.28" gradientUnits="userSpaceOnUse"><stop stop-color="#F7AA0F"/><stop offset=".38" stop-color="#F7AA10"/><stop offset=".646" stop-color="#1116B0"/><stop offset="1" stop-color="#0F15B0"/></linearGradient><filter id="a" x="0" y="0" width="126.2" height="126.2" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="2.2" dy="2.2"/><feGaussianBlur stdDeviation="1.305"/><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="shape" result="effect1_innerShadow_3251_49931"/></filter></defs></svg>PK ! :\z z images/better-docs.svgnu �[��� <svg width="70" height="70" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M50.016 26.355h-16.63a2.946 2.946 0 0 1-2.949-2.948 2.946 2.946 0 0 1 2.948-2.948h16.631a2.946 2.946 0 0 1 2.948 2.948 2.946 2.946 0 0 1-2.948 2.948zM43.313 37.84H26.692a2.946 2.946 0 0 1-2.948-2.948 2.946 2.946 0 0 1 2.948-2.947h16.621a2.946 2.946 0 0 1 2.948 2.947 2.946 2.946 0 0 1-2.948 2.948zM36.534 49.526H19.903a2.946 2.946 0 0 1-2.948-2.947 2.946 2.946 0 0 1 2.948-2.948h16.63a2.946 2.946 0 0 1 2.948 2.948 2.946 2.946 0 0 1-2.947 2.947z" fill="#00B682"/><path d="M62.29 33.034a3.195 3.195 0 0 0-.387-.607l4.438-7.644c2.418-4.157 2.432-9.13.034-13.3-2.403-4.177-6.708-6.67-11.529-6.67h-20.08c-4.706 0-9.111 2.536-11.495 6.621L3.659 45.217c-2.418 4.157-2.432 9.13-.034 13.3 2.403 4.177 6.708 6.67 11.529 6.67h34.408c6.13 0 11.739-3.095 15.002-8.289a17.621 17.621 0 0 0 .97-17.108l-3.244-6.756zM20.228 58.953h-5.08a6.989 6.989 0 0 1-6.12-3.54 6.973 6.973 0 0 1 .02-7.057L28.67 14.568a7.096 7.096 0 0 1 6.105-3.52h20.08a6.989 6.989 0 0 1 6.121 3.54 6.973 6.973 0 0 1-.02 7.056l-19.63 33.792a7.052 7.052 0 0 1-6.087 3.512H20.228v.005z" fill="#00B682"/></svg>PK ! U���� � images/uae.svgnu �[��� <?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 70 70">
<defs>
<style>
.cls-1 {
fill: url(#linear-gradient);
}
</style>
<linearGradient id="linear-gradient" x1="223.17" y1="1111.96" x2="292.15" y2="1111.96" gradientTransform="translate(-222.66 -1076.96)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#681ddd"/>
<stop offset="1" stop-color="#3a1b95"/>
</linearGradient>
</defs>
<path class="cls-1" d="m35,.33C15.95.33.51,15.86.51,35s15.44,34.67,34.49,34.67,34.49-15.52,34.49-34.67S54.05.33,35,.33Zm-.67,41c-.42,1.47-1.05,2.77-1.92,3.89-.84,1.1-1.94,1.98-3.26,2.61-1.33.63-2.9.94-4.73.94s-3.5-.34-4.84-1.01c-1.34-.66-2.41-1.55-3.26-2.68-.82-1.12-1.44-2.41-1.83-3.89-.39-1.49-.58-3.03-.58-4.66v-12.57h5.48v12.57c0,.96.09,1.86.26,2.71.18.87.46,1.62.87,2.29.41.67.91,1.2,1.56,1.59.63.39,1.41.59,2.35.59s1.72-.2,2.37-.6c.65-.4,1.18-.94,1.57-1.6.41-.67.69-1.44.86-2.32.16-.86.25-1.74.25-2.66v-12.56h5.48v12.56h0c0,1.72-.21,3.31-.62,4.79Zm21.75,7.45h-16.59v-5.14h16.59v5.14Zm0-9.83h-16.59v-5.14h16.59v5.14Zm0-9.83h-16.59v-5.14h16.59v5.14Z"/>
</svg>PK ! vv�k� k� images/unlimited-elements.gifnu �[��� GIF89a �� ��V7�D=쭭������Ĉ'���������KL��Z[�U��t���}���
�����t���������=���RS���"�z{�kl��������tu���1����������������������]������M�B����b�����+����ٲ�L�������ee����J;�������������m���Ր��u-�@A�!�wD����5�����c3����������������ݡ������������ab�}*������EF�������g�$���������������]5�����*����nR�O̱�l0��y�]I�ԏ��h1�P9����������
�g=���o/�l?��[���IB�4��'�������ʙ�h�@?�����vf�x6����E������b<�y��\���������������o����؛0Ĭ���?��J����?�������������=���z\�$���������������C����aV���?@�OP���������CD�WX���gg�GH�^_���bc����oo��G����������������*����������������l`��������ܹ���r������_����(�������厃���������6��6����� �>?�!�NETSCAPE2.0 !�XMP DataXMP<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:4045eba7-0b8b-4142-b50e-549a7752a941" xmpMM:DocumentID="xmp.did:489B7A3BE3FD11EBA985D62F8C9CB369" xmpMM:InstanceID="xmp.iid:489B7A3AE3FD11EBA985D62F8C9CB369" xmp:CreatorTool="Adobe Photoshop 21.0 (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:e320efa6-600e-9043-8ecf-2ba0e9c78420" stRef:documentID="adobe:docid:photoshop:9156db9f-ea43-1142-ae3c-7a82fa7369f0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�������������������������������������������������������������������������������������������������������������������������������~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"!
!� � , � � H�����\)�"�
7�I�H��ŋ3j�ȱ�Ǐ C���F^�b�˗0c�̒����8s��ɳ�O�.j��"��Q�Nd��ӧP���p�ѫWcԈ(��ׯ`}N��Y�;t0
˶�۷!��q��?"/����W*�D�
ǃk�È���#��"�(�L�2�'E�Laز�ψ'��\p�ШS�=���T˞���f���[j�v��M��O���l��s�O��]���u��z����\�M�<��E�t6Ͼ���1�0oO����/O���LB0�'`o0�R^&H�.�����]Uᅠ�p��vhl���$*� A�W�zM��?��(#_�
���8�@Y<��_A@�?j i$XjۑLF�@n4)�Sn�#X�$�Yv��B^�9Cb��QCf��Q����E�D��AD'�*ީ�|��矀*蠄j衈&�袌6�裐F*養�1��d����!�"E�a����ꪬ��ꫯ��j����D:t�� ��FO�PC' 1�EQ@��ų+D+��Vk��b��+ ��HT����7�P)[!��?��k����K�Y�@�v�{��&���?dѬ�G,���3�ipE0��@H�@+Pl��(�+�!D���L�5��C_����Wq+����e�@�<'�4�k���t�CZ���Xg]/!;�G��bhm6�#�+n��Y�-��kA).�pB��7�b�-�8pBH��8ʁ�)���O�����V�y�@� ��HX���#����@f�.��@�Pd�l�FW��{�E���0�@E��>{8D��|�B`B!L���kQ�".�w
Z�}��fk���?U��/,R�n�Pf��?�� � H�0?H BЅT��j��p<��l�Zp�2��T�GH���(L!x�B*D�:�|�(�ՠL�lŃ#�@���`"��H<����%:��P"o�7̏Q0�� ��3 ��e�@C�40ŌhL����6��k��"��C�! j�D�\0�+m2��R@���]����?Nf7��¡3��/x�Y7�.n)C��t�r�2s�A#V�!�k��D�fPB��xB#c��ﵠd'cY.w���L �A�(��`���D�^�[��e X4Q��
�А��j�mzf�<�A�"66P��4gb ��-Sb4q���Y������*pS�S'��@u�T�z���to$��cS �Q�z�
�G
�$z���U$)G�Y��b#��;U�_�� 0{Q�@
�P�j��HQ��
�#8 ��E`�7�Q�� H�yj��`j$t�ӣnd.x�"�0��p��\�V��F�Ɔ;���7��"��Ɉ���*oY�P���
<x� ��1��Z�������MmK��2a��\@�����^+0�p��Z$(W���1̏��j��B�'��#��@� ���!CXost)��l�b���#�D�L���v"��KV��*�� ��H�
�*P�l�-�Ngԁ� ��W�N�͎t�C ��0�u#AA�p�%Lx�� t�[8�jhLF��V��<���f$<1 \�0�/-��/ ��yp��6�GH��!��.����#�/1d�K��q6P�_D85.L� ��gC���#$L2��1(�FnP UN,E8��ۏ�ղ�-8B0��H��s[����d��r�5b��a��ZAx�g{���"x�a��Ԫ��B�fT݉59�1A'Vd*t:�TP'�Q��ɓJ��
�4#3�WbЂ�cM�K�Z��ވ xPD��g��m$ 깺���\y����Ӵ��l�T�bM�g��Ђ�.�q�>v��}�rc��莘��Mi B�Lv�>)"d{+�22�:���~��Ҙ���m�+��p�����H ��-m�?{����]}y[��j %�Bw�3y������#��!'��~P�5|���z˅�<�7�/¶��s[A�3#�G}�S�8��k��{�{�����+W ꮖ:�]�n�_���E\ 9�ϭvG�ޑ�ws�]�~o;�,x�l9]�q�C�_����yG�ީ�/�K��4�9F&`�#\A@@8��0�F`�9��/zǓ�_�/��)^��@�'h�����;��Ї~��:�Ϻ�����撧���Ԭ��N]���5�p�������p5������U��~_�gn�wt�g~0�):�5��/��
X���0���}��}pjw/�ox�%�����-��.�0Ȃ0X0G�?��}Uy�7|W|�QDGm�f4%8Hqh �r'�@�u')K�}:�<Xz>���=
oW��r����}~|�6`b�zIg��/�r���Յ!��� �cX�ex��ׄi�����a���8�h��b�x�����dž��(��H�������Ȉ �! �8��X���/yt|X/#؊�8��(�g���w����ȋ&h��b���������������z�����8pp��Hydx���/��vPxXm ���7��X��r�{��Q�\�����=�q�&~�(�v���h��Ǐ����� �\H�$8�x��10� �"9�$)�0��"��B���?���ȑ��S�p�8���:��9��`�\?��������(��6P�)�W�H0�Wi�X��Zi�^�e@�de'�+I�و��%(����;`�PvIx��z��{y�D�C�Y24�fY�h���ƊNؖ兀[Ve�U /K#+� Epp}��ٸ����k��9~29[�#qsC�do!DI/F ��؍�ȘA8���" {Z�l5p#eɐ踆�Ȗ���d(=��5fp��y�)����L�I�J�� p
�xA��ә9��N�l���E��E��{I1P9��:É��f�k��Ǟ���Y�\�s1@�L�����i� �AxW�yDFl�I�!ev&1#�b&���h
�9�"���顟hš�h�CV9!�"�i�1M61>����*rG�^M'8ǟ$J�B�L��/E�_d��BJ~uH�$�8��6��.� �:Z����O`p��/�Uhf<;�� l@��R;)��YC�p���Kr�nC���s;�E�8�j����{����y3��1K z��Ee@
yHԀv*7@�1"#1 j�'�k�5�E0��C{�[ [�4:P��"�`Vs�b�hTP8r3����T�s��f��p�)��Ex-*1x��!4�ntc�33�f��wڥ�I�5P)�H�T ��py�:��(S7����*7i�=��!א���;�o��&e3�:0O�_Zfƃ�\;�f�S - �Jc1'� �3��f��I���J
u��X�X�h�Xҕ!�"@D +J��L��I[��[0; 3��BΓ�o�����6�@��'�'��j��l۶i�0V�9����c-3�z1A'Л�U�hyn`����p���������7! �&S7���<�O���T`�"Q0��;��[���PLRTP'S;��^qL�#��2P�1��+f�X+��Ta�J)O�O@�˕�t�@
�3�LS)�e��kl&�?׀�ͻ�c�3?P z�1�[g3K/ϙm^�u��j� k0�V5��'�i<�_^l�e2�9f@CO3�nʛ/��Q�;'��p��e8�2�#gOQ?����iQ�{(TU�vKPX;�R��)�2���R��j!���ef�����r�Z4 �3@ePO`�#�V3��3b��H
�P@�/�E0�#� {S�o]`a:�(��F�)Pd��{����;����lP 0�Ks:cI0���:�����\���)pC�@��re��1Y�"���2Q?�jP >��A�3@
P@)��Y|/,�o),)l��w�2�IE!p
)Pj�e`,!"�0e<�1��+)3<�<�U�H��,74��%���7b�̭h7�kl%|=��������[���/b�g�vP1��Λ�<�]�_���/�JN�G�D=5��"��5�l|��
=�W ��!4�c��Yp����:�C�ο��SM��P�� ��C�.��7P+�X�J���7]SR�-�<m�E�\��M�C��:k@-��#��Ƶ@C {ǜ5���B
��ս�O�Y���'�ɉCKmք����?0�l����]�J�r�&�<@�Լy}/�W"0v.��;A83 P�����#� D��W/�Ē�Q=eԀ�'�Z�E�U @0ղ>�>��a�T�ħ�u��b�'pC*T�RY1���<P5�.@.i�ڽ����������=��]��}�����&��?��Q�z��K�m1���)��n���+�l�z"��}�9Q%��2OB$.I�=R�O!$6��N�#q��5")2�=�"1"(�'B��8""�8�!b�"1!.��:�/~ ��e �A�Q�.!H��!���2AvR>�a�)��q�q�ڡУ��Q�A��!@ �2>/R�!����~���.z^E0�n����M�y^���-׀��0��=�^l�����!r�G�l��@o�G�����I9�ꮡ�&�Mu�+�� !� � ,p p � � H�B�� E� �B�">#��a�6a"j�X��� 7Rd8PCȐI��v�H�*$��Q�L�Yޔ�R�N��J�P)!M��hʣHGB}�TjՅM��T�3�Q�A�2���Ν)�D��_L�W�U���̴A��K��XP��Z6 !� � ,k f / 4 � � Hp�a��B��#J��@�1���ď
2 �If���
�"(&&c�{F���8�Y�#3�6s�d�S&�7�N�QgIQ��z�T*R�`OM�T)���)6�9͊q�T��A'$�X�f�J�r��mŒ-K���j�����'Ղs����a���1����ǐ�母��zMb�ٟ�τE�μ�gЅW���O�?�e���vj�wc<�xp��12�}�f��0o>0�?8ө��. ;u�`k���ܤ����g<?<{��S���x�z�巿�]?����_k�7 t�f\s�VFߩgۃ��k
Bx\i��fYL�癇�]&[d����a�%�e>E�_� 68FSbVq�$��@Ԋ���HW>�eA�XUdQ=��M5��LG�5�W���W�ڽ�#��T�Qh�W�E&�UR��}$�� !� � ,h \ <