You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2016/07/13 13:14:04 UTC

svn commit: r14393 [4/5] - /dev/directory/apacheds/2.0.0-M23/

Added: dev/directory/apacheds/2.0.0-M23/apacheds-2.0.0-M23-SNAPSHOT-64bit.bin
==============================================================================
--- dev/directory/apacheds/2.0.0-M23/apacheds-2.0.0-M23-SNAPSHOT-64bit.bin (added)
+++ dev/directory/apacheds/2.0.0-M23/apacheds-2.0.0-M23-SNAPSHOT-64bit.bin Wed Jul 13 13:14:04 2016
@@ -0,0 +1,65435 @@
+#!/bin/sh
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+# 
+#   http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License. 
+
+
+#------------------------------------------------------------------------------
+# Verifies the exit code of the last command used. If the exit code is 0, the
+# execution continues, if not the execution is halted and we exit the program
+# with a 1 value.
+#------------------------------------------------------------------------------
+verifyExitCode()
+{
+    if [ $? -ne 0 ]
+    then
+               echo "An error occurred when installing ApacheDS."
+               echo "ApacheDS installation failed."
+               exit 1
+    fi
+}
+
+# Variables
+export APACHEDS_VERSION=2.0.0-M23-SNAPSHOT
+
+# Displaying welcome message and license terms
+more <<"EOF"
+                   WELCOME TO THE APACHEDS INSTALLER PROGRAM
+                    _                     _          ____  ____ 
+                   / \   _ __   __ _  ___| |__   ___|  _ \/ ___|
+                  / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \ 
+                 / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) |
+                /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/ 
+                        |_|
+
+    ApacheDS is distributed under the Apache Software License Version 2.0.
+            
+            Please, take some time to read the license terms below.
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+EOF
+
+# Asking for license agreement
+echo ""
+echo "Do you agree to the above license terms? [yes or no]"
+
+# Reading userInput
+while [ "true" ];
+do
+    read userInput leftover
+    case $userInput in
+        [yY] | [yY][eE][sS])
+            break;;
+        [nN] | [nN][oO])
+            echo "If you don't agree to the license this software cannot be installed."
+            exit 1
+    esac
+done
+
+# This is the name of the contained archive
+archiveName=__tmp.tar.gz
+
+# Unpacking the installer
+echo "Unpacking the installer..."
+trap 'rm -f $archiveName; exit 1' HUP INT QUIT TERM
+tail -n +282 $0 > $archiveName
+verifyExitCode
+
+# Extracting the installer
+echo "Extracting the installer..."
+tar xzf $archiveName
+verifyExitCode
+
+# Launching the installer
+cd sh
+verifyExitCode
+. ./install.sh
+verifyExitCode
+
+# Cleaning
+cd ..
+verifyExitCode
+rm -rf sh
+verifyExitCode
+rm -rf instance
+verifyExitCode
+rm -rf server
+verifyExitCode
+rm -f $archiveName
+verifyExitCode
+
+# Finishing
+echo "Done."
+echo "ApacheDS has been installed successfully."
+exit 0
+�,6�W��E�0>		Fp�m��l�����?�dw�����.	&�����6���{��0��c��}�y��w������NE�BB���~��P'D���!�{�UUwu��f�lB�,t��uի�^�z�՟�ֳ��fZc�Ȧ��`:��|����Դ��U��+_A�M-,���hmkQ�[�hmn]����Uij^I��4݄T�+�y EKk�a5�����&�cF�O��-Z�ԍ�R�ٟ���
+�~��T��7j	+�VMs�b97���Y�&�4jz �[~B�&͆����F~,���	-�\��Rj!m��&E�hUS+�z��]@���R�Wɞ�y-��*>h� s,��iy�Hf�tZ��mЈ�i/�8b�=�Ԁ�աX<̟��1�f��X�(�j"�!u�}v�V�HkYu0�%�(��Ϩi�&�ȩ��7+d�A�ږ/hlvH�C�`;(p������yG��ќaVa��lo4
+yP+����s�k����9����j=�u�m���QKΰ��oֳC�z~��(?�3,�>K���������Z86����r�#��2�ٍ!�����R٨�(p�cSI��=i�Z^�t	N���Z ���S�ZЦ2��C�F^�
vWa�[�j"��O����a-k��:��\��*�U��x+�CS�[br�*4�K*#|��ࢵ����u!ҁ^�Q�o�(�+�xt:�QQ-m,�G3�t9Q���������bA`'4�d}��`�4i�nkU��i�8�>M��]v�n�r�N�v"ڧ���0�Y��mU��Ӧ�:m���f�(7LJ[��t�d�]Y.U��I�਽�:��I��9�rt��H:�v�os�K(���.#�����<�RGCC�5	�jUO�Z�Q�Z��5�TYd?��W,XP�J%�>�a��&�1#��(XҀsL>����sw�|�e�ݥgcZv��pG��D�J0���ת�,h�Req����n'�A�L⚼� ���3�%��1�%6_S�1�5&F-�{A`����Hr�=P�A�hP4���]u&��N���t��s9������ldS�䵔����T�T�,:�q��1�W�l�AK���1�����b��z�›���W!����Et:I���%�99ו�}A�^'3zL3Z�-Z��sr�
+|�q	�
�&e��v�Ĕĭ������W��m&��
+�Vo%�L]����N-�o9��E���rY���7k�A-o��������	���EQ�a��N�='W��M��x�+
vWC]�b��Յ����C���,U��Hȁ;�}K�-�\�V��L�;��2-VY��M�#�b0�崒���1u+c�<���?��z\5���ə�$�#�k�O�4�~����q��8��U���JR�\XS�YԲV~�T��q� �I+�i�x9��G�lS���h�|h�|\�F�0��Y1ܫ�gJR����kP�y���ZI����4�F�S\��5��<�*㵒4�%2uif��S_5�kd�XvsNy-�s�ƺ8�]&�ɗ,򖎁�Q.�;�cS��}��ii����T�
+�Hmh�UaUr0�k?ve�R)}������vF��&-_>"��$��MȄA�ش�p?��F`H�U*L>ҩ��6=��F���4
+��e��ڑ��)��u��d6p�(��UE�4�$*v��8�O�
��k(O<�V�,@������\5QP��Š���k��Mho��D핅(�ɔI�TbOV�u�|c�(j?ͅ1�(DQ�i.�7P����$���'U}ڊ�����-;Q�i+8�p�խp�
+��'O�����V\�5�>#}�2
+Naʒ�p���5�L&l��6a�!����Zd6�.U޿�uqtMߍ�k�m�nm������k��\ײ�����أ�JkkV[�5���]�\{crM�y�_Y�}<�<��<��m�z���mw�u-�ÉE]����-��q�4���0�x�
�'��>�=E���ǹ'P~D�(�?���	���P�����_2q�ŖL���ڜl���ل�S����I^��,�8�rB���2�rB��>�rb�v�儈�g���&��T������b�B�1�fp�"��&^�8pLty%�0��+�X�+i�IV}\]̬Z�kX�"WK�7v��d͜���'@D�%*9�ֳ����D.p2�'�4I��������~<���5��$N�����d�Kj
+�O,Qa���£D���t�)�#�4Y����D����(�N�������J����J=y�6HB3E�r$#q�\N�i�M�i���\yfRQM�.�h���״7�7M�k��sq�h�2� �8[[M� ʵ�`(�;�����c�����Sp��i�9R�E�0"#j>����9�n��Ɣa4���$�Q|
+��!>��1*+'F�1���3�l�ūx'#�ۜL�����I%� �ˀ:�Fbs|�6��P�Kj�c���c�B�Z���]Kr�#��Yc!�m4�0�e�&�c�~h�XNCF4����!aAcf�D�9�67,Y\5R35$y����2R�L�M�Ym�Aݒ�eE�2ꨞ)d�ZV#Q���f鸝�v�0�X�~=�Y�bv��ŭ�l�*���@3�>��O���i%UKKV��7�g��X���3K��PWo,���r2�zU��/�OMM�'�Q�:��`��"f�|9�H�|:zˉ��G����򰴩��jX�:�r��wT��2�׏���<UB�tR�6�?�[q�v����H�i��K�$tB�c��5�ߤ�}���0�Gn��d��7�49F�T�t,&#!�MUPl[���
+���͸�kE�X���B(��j� Mf@��m��a�V����^���xZ�r��ʁ$f�0��v��L�6u��v�CI9Gt�K�pH�d��8i�Z��E�K�Z����dH�)1��%9�8p�E�x�b�H����B�����F��=vI-ٓ���dz�{xM�����G2�oOZK��႕4F�����%e�R�ONu8���$y�aN{P`��RM����9
�I.���,+m��B��0�Ž#����F
+ـ8&�7'Y�>u������=V�˄�,䵰���2�mR��PF:H�4.^"�[ؽ^�'_�G��P&�F
+�E�tKx��	/JF]Zb���uodz��Qឱ}����ζ��fB��B��#�]�n],L��P���d"��LՆ��tT`INK!�I��d;�k����H�I}H3-�n'�;��u�5e	������5=����V:�N�\!��,�|���I�`�0���IM�J>�=M�>d�xV��9��!MY������D�o��x�Q��Q�<M�;�q�ͤSA�o���N̟.���Y���d����9k����p�����+�������������A=�h�/�_�(1��YSKB�P�aM	QOU�F�Q��(d�k+����
+$��bd5,m�����!n�@�aTԡ�Fgo�AE�k����v��/�哸]�6�&���<�����J
+P�ɤ��|EϦ��j��/�kCj>�g����X^�c$VdX�A}��J|� �d�E���Q�H\sa�k�G2��`�R�P-Z�`�ΨcJְ��v~L4���:�ֱ�aiΝ]�xGbZ*�W��H���b���N����###Ag��Q0��v��
@2+1���c�[�R�5G_����l=j$j|��'���)@n"G`�<`[�"S�}jCq%�UV���x@Y���+kC}}���h8���)=ݝ��hO7�V+�������΀����*m4���H)�ƻ�.	PSx�9-�����*�C�2d����w(9-��MlV�L�jdt�F���1ƒ�$[U�`7��u
+��)QG!1���K/UV��D��hw��Y�����ؒX�XEl�i��J]�H��)S��k���6�Y���13m�����g���Z�EJ���z�蚔fe1@��F�j�ԘW��PI�	Yyo����N�c.0Y8�<���,H`�r�@΢�6eI��)JN�V��7�`�b�AW�`>n�xh�0\�����i�5G;YIvP4�R׬����G����o�Ş�?���r�����dK��i������eq��o}�����K��y�c�!D��KQB0TS�#�D0D�	����F��G��;�H����	'�X�!:���M04S)�O0lUb��	(")��RLk�c&<oV�jiC��V�8�J�J���@S�2@>��+�A9ˀ_����*�ձ��{U����qY�}���td�_ЮVe_����Y�h,����FR^[?EqW֊fp<W����Z�r��MT�9�ff�«(�ܷ����I�J1��fx��/K��,�d���-�+����%�W��2�e���1c������h��i�>C��hH���bB��0�X��^5��������d�)���i	#��R��M����M���B�o7�z�s��hWx��q����3�q5�:��P�����hg����Y�t]ю��x�Q�
 �]r��#h���0�V;9���UY�?й�S�ώ�G�hR�
�`Gd�SǑ���\��[��[[ߌ�O�ߛ�~o���9�7鬟��,�Y����0A�y=��Ԍ�)�I�Yy
+pp��Sa�k
+�
#�#�zbeZ0j:=F��T��¢�x��&bQ<j�4l����6�]Iy�F�Q��us�љ�	[�4�Z���*��S-� ���S�F&c8RYC��	9��Z���S�&��Q��{��Q�W�����@K�Qݢ��ߊ���e�e4 �A����rL�v)-��������:��\ŕ���A(�Ш]�xkť3���Xwn�2�(/����~��?�܄�81uL��[_���ͭm����OƟ_9ҟ�-N�_r���lA��-\��ܙ������:eW�<�@<P��0���@p�ruF��}�U!�A\���f>���خ�X �*3�`�3�;��a��I���QA^#�,$�0��Q��F_�2��I3����ae	s��9�D���.#_F�'�A����Y�"�W��>��R	2�P�P^�� �]�M�Ui%L�ˈ(d�A��	�"�1@^��`�9�CD#PT/�����"y���9��g��a�;!�B>g`�gK�np�F�K-�b�^��#Z>�0�C1F��0 J�,�z�� ꥹ
l<��,��f�pƄ؇֧zU�-KfDGm,�:Pb���)��@�9����ok�l�d3�DkC3A�$0�A-BH�sa��t���Z���]�v����?�d��, ��"�G�5��Mo�Ez�:5K��š�tA�뽚Q_
+�4��)��f�"�{�!�e�q\,����	)(����v$kR��(I���{lD�а���'r��%�:���^�r����As@ԇ��F���*:�{�,?�*#$͓)���x]�� ��a�:v(�щ�9����<ò�J��&�a}7�%uU�����0.+3
+4XC����9]�Ά���8[�0���4�I�B�ZST���UI�킰n �l�7]R�fŲh�Xo�Z����b�[��#w6����u�#�1�-��1k��uT��cb2��&5@aWLb���=�VaU�\��8�1�X�I@�ym�NM�Z���D�@�F^�of�7qd����n����;i�PL�q0^����Xة�������P���`��$��������PSP.�FF�k0NJ���$�A��\�_ ���R�$����ZFJG3RN�w��T�����J���N�R�D�jE�"%�@6T
+�W#> u
+��M����6�`;��qiQN��@�/+D+����[ȁ
+Ze��}Pa�@Ճ��y{��橖�b��6�Pc}����4�N}��(�(d�����5GP('�t:��L�l�%��;4�E�q5�F�f@vYv(�^6e>���I���9X��cъk�BHfĥ��Qn�&
+&yy�1C����k��9�IBp�*�X1sz�`L�5�M_މ�Dȥ��P�l�3=UE�X�v��UE����.쉯m�E<b�#�c�S�2�jn,HhdɁh����
+�?i�6a����ƀW�~���5Va�6���b���+�Պ����VY/�HRЄ�řb���^N�@2B�����#:�Y#�@-oǘ��=�C8p2�Դ5֐�k��!��b�4d�7��P�mA	�c9��2K��\aʂAQsi݆��՚၅<n��|�S�\VcwN��5�"��zU4��S��A�a�a�	4ـh��c�J��: V�h�	�hm�R���`~ٿ:��ƶ<P�Q!���������������$e�]��DZ�A�,��H���ҵ�fz�i�y�zg*�Ǚ����'w�zs��v&f "��z*�- ��@>����*F�)��*���=2�R�Nۍb�C�uH��d�����qXvl�7L���l$�}
+�ҴN�VĜn!�im�9�� މ	<Vq2G>�n򡶃GZ^l���P�j�6d˭�"d�Q�F-��q�'�*���b�	]QM����|�t�A���֠ҧ�3CA{�Ƕl^+vP���M�Q�`���ȑaD�����f�«X��3"�8���4��)�Zc�]خ���֫�д!��c�
hVXD�%�������Ɯ[FnT�9(��&n�P�Q8~g�:yT!>�Y�6z4�����*�8�	�I�8�qל�j�k��q�4���P�eN�خ�Q��0�;�v�,&5��R0A*j9ݍ�Ʀ *��5���Dn�z
+D\Ҡ���p���z\�r��U���\�F�n>�æ�e+ĵ
+~����A��u`�-�#�.�T�)e����P������E4ƔWc+�����n��2HK݁��UBSY��J�8Қ��tYy��qz+F	|���
+YK���V��ҰL6�.%���{J�S��A�9�x�r�F>P.eU�z�,T�R��S(��Xj,@�O҇	��������r�
+���a6
+C�U.fy+2l(mO����b��&��-�Xc��m��$��q�#k��E��%4��`�7�!d�h<��ɤ�M2"lui�0,l�'��k�H��V����f�pA��|��L0��-*��UP�J��,�L|IM�H82�8%�c��r+D���^�%#�FZ+2R�	8݆��dǪE��9�+>�Z��s([�rya;�f[W���e쑊g$�j�6��6Vu�@3(v�`�i��#E��/a�H���1o)MfI�XU���Hk�N�PoP�}>����LIa
+�&��#+�mXX�^�!�2h�A�E�l�4�!��B�V��H`7���WĢ6A
+R,ۃe�X��aw12��@��Uec��L�@L4�R�4�rZ,�V�P�|A��/bC�༙��{�\�I���0���"�g�j�yJ?�i��ܬI��x�0QRfo�
�8S[6?+z��)c�$uEP��M:�mJY�'�e,8��Y�T|��n0��M��z�'
�CT97N_�wA�w,��|�BN�&.i���A�~��Tg��Q��Ă0����p����^��^�
+w���p_G���Ƣ�ב
+���w��l�@���
�A�
�B}J�@_oO<̼-[-L��П�JuZu��6*t��\���uω�hf!�s,�4_�fM<c��Z7ɲ�FB���̨�uV���Z��L�ڃJ�)��ꠞ���(z^Ÿ,{���P�&;�FiKS-b%Ȓ���PZ�.ث��T�=�sD}�g����A
+舸!����-D��@0L�YO���I�di:Q\�PӪu�=���Ŗgs��s&��(^<�/%`��tqA�#�܀n��γ5s�⶯�Uc�@��Y�mL�A�,oLɮ�3���������v�0�#zZ�;�L���T�%Ę����T=]�3o��S��ܐ���6�.y��5�t�D�aO���-:-����
�\bsG�z���J�O@)ˋ5�G-u�������w�p��6�&�
�͂�L�k���\!nKidO����R1�cӠ�����i�,n-q&ĘXӂv�L�Y(�[��`�˖Z��/�k�r0"����P��SB��G;Z�ii5Ď���M�r0Rnj��8�(�Ewf�$5�s�8f�S�>c�g��d��e��R0\a% 2NV�:W��D"����t�B>ﬖ�c��0*��*�D
����`�ah%����G$m��F����F=��J���y���D�-�&����cJ��v��=O��5�O�@�o�p�&��ڀ^��a�%f5�H>�k餩����Ό� �Rj���믯�
�Lpo7&����F}�H:��w���~��
+�,`��0Մ�"���:��@r���,�s����J�zF�	������ŠS^�7�e��a�s�yp��:�9[Vh�TPbb�Z �&��ע�p�|��/H&(�n��sɉuW{zƙ��s�qŚ)����~��W��@�g��z�n�42�7(��'�1����+S�B�$�Xd:�sV��-ge�qV��
g��77��??"֧�����k���v'��~P�ބEtچ�*�ia��u��a��#�{YP1NG�K���-�i���0�Qy�F��M�`.n�⚹������Kbь[�Kl@���2t�l �Y����� IЅMJp��O9g{�C������ff��m�:m{�ٸ��!�Ǫ1���%<|� �I�ׯL͑��6ȼ�#G?�F��ܡ��ʫ���Ȓ�Hм!�F�;Y�h@�Wd��������`d�o���e��{��F^�B5�J��
+�H��f�!8�…�%����݊���Y��0���(���[Q�š�����8�����h(?���$66�C����Ee�|A�M�f���
+:²�$�����Ea[�8�ӳT�a��L[qK�="��̴��uȹ)��dU��]�Ӣԓ`>.�+��:Wu)��+[��MM���[6N65{xfw>�#v���J}�x��vA���k�m�'[KS�Ό�Bg����+��YK9����g�ɶIZ�t|<Ug��M��9��R���P,��0Z��(i��yρQ�RNōy�Q�S'��)*"�4QZX=�U5Y.��Ҏ�ά\�^.Q���0�~�
+�=ص�Ϲ\��(��E%�el�u���G#����,mX�Xn�L�f`�h\�٨D&:�Eyg���5�W�)k��h��ҦG'g@�e��Z���L$�!*�ǎr[�x���a.����+K	cBFl������S���(��-�t������^�A/�u=��}@?�4<ܠq����ƕx��~����)�|�Ne�u�0�1��\���8��RO_1l�D������޾p<8 ��sI�p�D%���v�	(��t����C����\^#E��(V�\S�&Gd�3�]�NТh7Ԫ��
w�+�H(C4a��3������#s��
+��U�0�
+wF�@6�~���R2c%���Mx]x
+�]�p<|�d��Jg�+�&L�w˧L8�}4_�����G���잞N��K<�w-x��2%�'�ћg���UX@h��W
ģ$�h7��z10_�X"=kAD@lh����؆&���<�d��H�}(\�Z��m��sB� �~�Y�;�&]����D�6��h�DY�kCP������[I�ԶJ��R�4"�
+D����U��͔��^3J��>�����(����\����}x��v����:��w�Ak�
+l��L8����e�Ҷ%K�Zp2Ä��R£9�
+7��@D�-�xk����iCh�zR�Ze��1�C5-���� =I��.��{��X�2�+0�ۓ�%�*��@Ĉ����4e�����v����b�~9��q�����x����|�KgT�DDŝ���#��B�7C�-֙�׎i#��{z܄��gS�f��q�l�����sB�J3����$����ͿU6������)��{JN��G�
+���*���}�J+~�,�e�!��n]я�	����s�;p�%����1M�f��Ȥ�)P�)�m�活�[^�;&�*4�������k"�`�c�arJ~�S"?^Ŷ�Ulu��w��
�p3
��6����������fXPԊ�E��C�i�w�C1��^Ǖ9�_q���f:�z#�+��Mb���7�b���l^�\���܏~�[���+ʔ,�TL"��Q���3��*Ɗ���F��6�Ʊ�ut�Gi��_�>zd%Yf"�����-aI�Jz̤�����*�R�,����T����R���&�f�L�)3�h3�S2�JU��0��2���$�鶜����O�d=m���J���mA�e���[D��)um����L�zl�2]F�_ɪ*�U��Y�Oɮ*���I7o�K�,	��S��[��+��W��4vh
�����T���W��?�A�4��S��0-������'$�;^�u���B��E��?��O�>�w���X'�d���8���)����">��,��*M͖!h�k�N^eqV��=��[�!�_Kg��14&-�9�l�}�AYse4'�jMy>�G��c�Tbd�?6Kţ.��
M�Gg��������Q�8K tm�;)EY*v��0��&[����4`�F�-�H'ʩ[�
h�4�~�dY3gZ�k�j+����1ܟt�/*�����(w_����{1[/�q���l�8¾������c��O�sG8����������'��_�HR�)Z�����[�l`��%zM�~��9E�.�"L��5�-���7���?����G'���mm��?�O�oi[�S�NE��y���_|Fc�똼�]���m��+������w�%ʛ�|�(�7���� ��8g����"�,a��C�b��^7gLJ��[�q���O����s0���~`��V	�;�+	N�{��q>�	����)���G�������ں�Z����'v�.����V�V;ʽ�F/Ϟ�=����Y�* h���~:X�4��A��wcw����`���5���
��������j�6vtu���X&�ɛ��)�ӽZ"Y�.i���
+U݋���DK��i(�B֥
L�k30H�=�t���EM�I�+��Z����c�3A����k�*�{��=}���V %1#ao4�]�z�����~VT�(�3�/d�����V2_E���+�/��y��b������x�KZt��6������W>�_Yd{P��,: �^�v�����S
+#�F�D�t��7��7����&8��H.�	?���߿q����;��P`������Յ۞M|W�޼K�9�C�lև�Eh{�o�< v~��"T!m�#�e5��V��J8��+���b�k-��6�[��F�1*Z>o�YOEc��xX%�B�MM�T��s-B��e%(�FU5��Ev��p��M˚�U��l{���
��7퓆�$*Y
?����o�Mո���8D�F�;�)�����o����Va0N���g����+��v�Nnٱ3�1Þ5�,8��-�	C�z�8��^d�@��%~�Bp�?}�@Sׄ��	�ƅ���xG_��LWS�\���snʍ$75n���@�[l�졍7�W�_�!����q��r|�r,�*��L5���cȦ��"N�(`�¹d�����X��	+�Nk����k���uu^�\������$;��R���q3G��lk��Bd�*56C� ���S�v�G<�:�Y伱���2e��eC�7�D�:LPC��^@~��I�2���D�����!��k�ip����Z�¡Xo�?���v��T�:�h��4l�ے��Q|��d@T��&��]�CP��"b�D����:q�X�Q+��Z<A���*������ʐ��fb��-/�FoV������N�vS�T�I9�Zw�h�Ր�T��pw�2?���JeC}p�u�=�#��P��7�W�T�ږ�,��e(ج��� ��a��ey$9zW-]�[ּ����'ú	�6�b�,���
+��t;�Ǔэ��a�����>����� zn-��Ŋm�ll~N��V]z����@��L{" a?��+s��{�Ȇ�`��n�"
�w��� n#C����[�C��~�Š����1AZ�K⸘��"���_�
Ǐ�����7���D��m�-�!�h���-�df֯�o�^��F����a�ĂnF�M
+�+P ==2��ܡE�q2� :��"x|<$a�_�&��� ���d�h���HO��hVL�Π&Ȃ�Z��=Y����z�?��q5�Om�5����U�L��c����Ʈ�q��.0?g�1��7^�&�:�A%$�K��Q=w+/!r���[���S�dET�B8�'X���ˆ��L�0y��=^���g,��R�
+�\��˜�֔�e�~�����2
&���W�/-`���z�K��f��4$2�V���^��g�u	�T�l�Y���6!��Z�ϏqH\����5F�C�nqk��ù�hyѤ�ѳ��gԄaV(Q���-���#�Z!ˆ�+;:��c&�P_GĖc���{����I!�o�f]*Y^Q�*�ی�%ZM�$A�����ѭ�.j�7����}1�i7m�f1�m_���
��ZxV�$z����3z����'��*��%���"�KT#U@�n��e���\U����� 2�ز�rqzX^z	�����4�:�V�w��c����Ր�Fn��:)J]�ROs��IK��j��G*NI;D�;ƪ��f
�N"�Cu�����D
i�:�>����4]�߮Ȇ��8�`Ne���3hW�/)����޾�^<��,)(���	V#V�bCm��7�z��lng#��Y��7.c���	E�����T)��rJ8!�y�T�gZ�6�h���'�IE8S�س�Y��ؘ����f!�7�Z�,&����S�ۊy)��e�1�(�	x���9`�=a�G����o\�,|�3e�y�g��g���[�g9�BR��N�:��eR8B��'����h�v��Z)�ГNO�#
+�,j.�݋΋��*b��V�8%�U1�_�h�,��)q##WeN�$�I�?O��%��ML*JCAi�nb�A�JMҢ�*�4��=�s�Y�>͢���بJ5MF��*��~?���uv��{�����~��#@�6��=�
+�9�>&��k�F��*N�fӢ3G��%{	��n]F���z��E�B.Ɋ��LלtKŽ�!����������<�}�IL�3;�J7]�I����y__�'��(�k-D3�zڠ��2�2W,�H�-Y.��ɲ4;��ev�!o�L���ݪ�#���7ӱ_`�o�0�R���м��9q��08ڛ��]q�%�ߑ�2aE7�خ��y��-c]ꢷJ�*f����gq�5�	@��i69���{酔���\���Y�cP�ʵ5�J����?��1uf���ېPj78�DjQ��9f#�Y+��'s֍G�!�#��xY�Ʊ��!���?R���'�x�蛻{W_Ҭ����=p¡��U�����a�M~*_��;�~����9*U�g������AJ�;X���ĩh�Y�|y��<�\�&��R�M�[�hLX�N�bǩ��b�|u>v
+����\
�A2Z|v��%���4��9O����D��ՒaT�,��P��dgd����4�p����Q[
+y�wlCt5E��fqQ����*`CW�3��W?A)��f�>m���qT"�K��=G\)2�n]������I-�:8��[j�„<��i���N�`�+
X�!����F�"���Gሏ��\�Z�-� ���J��G���$ql��1��%7ڥ��e��\���-���;�*0Ĵk�Dž؉�@�8eA���l�����-��4�U��'���x���G��`=�=��@�`�RH���;�<6]�s�,�r�����V�����iS!�v�����U�����+����A�J��;��른h���w���U��Z);�>��w\@�Rŝ������נ��J҇l���[h�/w���+����Ѻ�ziG]G_���mh3r
+�E�E-��h|�~1��&+a0r��!�)Z��vS�*/��݉�0֦��zaTU��/p$���3B�0��&*��RQV��t�O�`O���&�^�I�9���&ID}x�<�G�a�G+�qwZId9U�D�le�i�F�T��4���"��Fٞ�Z��\��͍0��ε���R�8U��O�#�a7?o�t\D�I����P6�a��"=&m2���
+uwn�E�q��O�*\�Bq�ӽ �f+l?�Pi3�'��	�y=F�_� f���KwR������	�l��쎭B��Ɍ��)�]v7P��Qu����'��4}\(ʑ�~�т;r���?���
uD�V��:ى��0�����7i4�Vg���
+U�!O�s�Z��1�xm�4�^���v�l^����lhN3EBǩ�[$���*Ҋ_ە�.D�$3y��2��¬u�3!b1_M��n��K�q⪮�L���䛦6�e�k*�*������ϵ:�E��ex�kD���]�&x����>Xa�ƛ�t��{�s�F%��U<�6v��%0j�s�Σ	F�=��bK�}.)T��_JR�i0���y�.
+���'�턠���T�:���I�)M�]��ݿ��N��������SV�����B�����U,<�~Li�ϑ�Q�\I��w��*
iK�m��� �l;'U.W<�%7Q2}X���&����6P���i�$@NK1�\�̴��@��<��I�b&�Q��&�W+2��b��,��戏�7<���<L�����rM��!��6��!�����)E�b,W�T,�"j������u�
�}�ܑkjXļ�[]*��#*
+
v�AQP>S�<:�˗�vfi��՘h�wF������-d��b�ΪU6ᐛ��Չ›pguD����;3X��CI��xX>�Vq����ᔺ�~.��FR6^�k����3gg�&����5�8��|>{ �²���5CZ�kv��ddE���e'{��0R�r|,J?6���I��H�a�����N���㐄eUJ�j%�X���B�d4�����eU-t�{gfo��S��)���m�'��ٻ��mSf�T�ͥj�v��Kȭ��~�����x�8�uLz�ϢEM�/������7�8�VϜ1�N��]���ܦ��^���7:yV��}s�ߋ}���	��R������=�������,V!�x���"�3���.V�~?���_��.���6q��k\������n���L^��������=�=�f��"��E�/���|���zb%�~Õ�+C���8��W��ʝ�����1�.nmL'�z�0�0ھ�aqk�4�-��������3�:�o;\�Ic�	׵p}.�|\@��..
��z��S�.�+ץp���7��	�����b��K4��;����]pE8��ફ,�(\���4�p���yp%�j�k� \��5������mp�ׇ|����U��:)߇�Z]��
pm��n�k\h���;|����Q��X{a[���1
W��g��^
׭pm��v��\o��	�q�>��u��="^��oV��G('��3ɳ?���Q%��)g�߳*�y�t/���_��o-\���e��W��^�VT�-N�Z�/�K$�����p���o>\W��
�yp��s-\��y�ZW3O����5��[<x���mp5�U���3�>)�.�{!\Y~�����y����
���s�R��;��m^F+�==��<߶af��]�`&�]�	\E���u�.���?����-��e�^�}�rӳ�S�c�/\H���ۓr���'�+��:�/<ۓ>���ɿ���`F��;������{�s�������<��1�_��(���۟{�t���<����S����q��{���]<�����(��AN�2��oz���?��<�g���N���*��+^�&�����Wrz�7��#�&��ߴ>��-��Jz�ǟ��s��Y���p9�:���X�v�O�����zKCn</�x�%�����1�g�z�����q��'��K>���3<�,V��\3X8I�V��k����������/q�6�E�圞ճ�����[��<r[XE�_���_��3�����"����9O�AO��9��x���w�G�O���������Ő�6.���z�o���zj�o�'�����/y���'�=��Q�����?�ӎ_e��g��<=���J��9��<��vO��\>�����гѓ_��<|�����Y���R��D�17_�����<������u;���~��׋z�������+)������c�����]���
 ���ק��#����M������7�Ư�f��2ow1�� Ͽ�C��=�?��{�����U��]\n{�u�Kwsz.��~�~�G?�(�|��q�^�g���:E8TE߾쁋x�1.�
���Y����G�ߛ�ā�Q���y���v�p�&���=����^�:��������9��T��gr����q��F������uO��x�M��z����z��C%z>��=��t�����W��g�����x������<z�gV���:��y��ރg;�7y������p�a�����3�ϻ8�{<�s����qO�����T��K�����b�ƫ�l�ӆt���i��e�6n�ٍ4}�q�/��i_��ME�{���CM�7���/�%��y5<7�gj٤OM������5h݇쌦>�Q�;���샄J_�g
+�6��������Nyr���|>klo��R���F���\��9i�i��1�jBe
�I�`a�Z&g����9�`>ߐfi�-� ���H�ų�[
+�����e�"J�X��Kr-����co���Yz� �3�X�#�J�a 2m�ÊP�$���s���$'���R��u���լ�P"�K'���@҄�𿏽��3rp�G�
�S�nF��HQM-��1N�|�iȲB2RIu̇�M�̀c$�G)Xd�UAQ�2T�EG�1
+l��M�J?KU��:��x@�Za�q=̨z��5�AA�a[r�`T=��}|ɥS�T_�ZMB�@A+h]lk��e�b�������m��:@7L����1<c��S,bP����n����zC`U!���>�����7i����#�bY76,�g����6�t$�/����$R�8$�w��QNU�������9�9��*r��H�8t[	E9X��JU��RG)7O�bs��2�0
+YK��G@3j���fS��NwI��.��R=��4Ԅ��*�DH�tk
+�(�I4S4���ǢY���'�Ä�u�0;5d�B�24�� ��:62�f�rɨ�^�5�`BGz1/GeWJ���"±�L�a�N�v��a��9W��?e�I,�P_�o�9�~<�����P��t�'i�)�䘒��)�\�,'��
��ԗ5�Z���<\i���mϩ�EWull	���{�C�<�;~g��J�k&O;Of��3�3�(��Yp�A�38�;��k��L^F�d�Mn*��.��L��N��v��s6�!IJ�����ީ����_��<_U����L�������~Ί~�Lc�g���TY�r�����	.�/�$�������Kp׺ w�W\^s�+�ϓ��$�\���$x��H�7I�wK�v	~�_)�k%xD�_*�{%�|	�N�/���$x@�K�	����KF%����M����]�/��wJ�v	�		.���-��K��I�+%�=�S��'�#|��I�G%x�\��J�'%��~s@����%	.�W�,��/�K��ܗp��K�9�	>W�o���$xR�+\���\޾�$�o���|�_)��<"�3�W�g%�:	.o��$�G$����9	~���[%�6	~��]�P��)��I�OH�I�%�N	�9	>.������I�]|��3	���K�?.��\����h�gJ���	�K:py�z��#��Jpy��<	�	�Hpy
�^����M\�;�.�k$�J	>W�G$�<���K�u\^W�$�/�����<'��%�G%��|���]�+�N	.�����L��-��+�?'��%�=\^��O����{$xP�?*��}n�K�f	��_$�H�V	^��WH�%���~X���2h\��0G��{�J�|�IpE��{�%x�o����
+�%���f�_#�#<*�{%�U|��Z�o��]|X��H��F��Jpy�6	�/�o���N	~���_'���$��$����	�J��$���#��Q	>$�����I	�K�ܐ�%	.�?yY�@���/���%��Hpy_�\	�E�ϓ��SE��$��%�-�I���c�%�v	�R���	�a	�+��T�������M�	>,��<'�?*�G%��|���L����)�#���·�9M����뛸�l��N���ӤIL��e31�C���S�w��P��J�
+����/`]���)�,�q�x�NJ��f�F�'0���Q������&J?�i�����P��JJߋi6Q�����B�OcC��s)�ILc(p�G�aC��/���;0=����m�>����M�~�O�<��N�S�FL�G�Sz����~?�/ �)݇�w���
+��J����?��b���?�[0�.��1}�O�ZL_L�S���~7�O�a�=���1�ǴB�Sz&�/!�)��+ ]K�S�W��������#�)�,�/#�)�L�������O�S����'�)� ������Jߋ�ˉJ��ҟ�t�O�Ob:H�S�c�n$�_���t�O��0�L�S�&L����cz�O�1�J�Sz�m�?�ߏ���?��0}�O�0�N�Sz����^���?�[0�����BL/'�)]���?�߉�+�J�
��#�����+�J��t�����Cz�O�_a�������$�)�,���?�����?��������t���􃘎����W����W���<�c�?�?��.�ҟ�t7�O�a�����?�{�J߆�k�J߄�>�ґ����yCd�����_�����;��ٷ����Ͼ��W�J?����mp�8{|ѹ���=�̉���)�m[�*��
D�b�=Te�̉��n��P87�����'
+�?2�[�����T*u'���l_1���Z�u�����_t�������KU����ā�H��vO3��Y�xAdW�mO���+^�C~ڼ�~�����R�gq�s�ɮ6�)��g�{"�sK���4�2T��^�=��&���r�{J�~�r;�K��bL�j[Y��x���?�+��mx(ug��7�����B
��y�������Ɵ��_C�P]�FƗE~���{�}�����ȂS��9�i�z.P���+�1^l�>1a-(m@���j�/�߈M�79�����[C�S����Ğ� D�.���o)��(�w>a}
��m&v��}F�{q/��4�����|�>���t�K IF����I�G�+����	!�"��.���j��=���7S}�����˱�s��PW����^��'�C����C=��'�s"ņ�x�o�:/R�P�M��NJɺ& ���}�ug�3-�GvYus#����.�����x�7��f�Y���<������)�,��k�s?���`���<HR}�����D�_�ى�<{
+�4!kqk�y�5_�{[*���9���<Y��u�è{C�O�8o~8�n���r����Y<�@
+pf�>�k�f��Y�=������:����������X�g�Q�m7f[
���W���6��Ч��`�mP��?�Fz$��uod��@���w�hC2�M@�Y4D�fףa�v������Ǥ�Q�~K�{K�7���t�t�U��U�/H��^��5�~H�?���	�N�_-�%���NJ���Js�B=����x~ϫ��������>����AȯD���m����^j�~x�Ȼ:�Cu�!Σ��Aş��=�Y��=�_��;���v���=���m��HwYn?�m���p�U���˿�2Q߅��?�Ծ�Z��4w�]������yp?f�=1���w��nT�s�����������_���@�LE1���s�/~
=v/����඿:1>�fGj���Eǿ]��c'�ف�Ԡ�|vṾ�ױ��.��к��?���E��w���{��M��
�Ǥ2�W*F��s�;����'���9�q��m��_�w֝W\R��o�ޝ>"���`���؟���a�@���[|K6��e{���C��25�+{�_� ]�=����ٙ����W�;���W�G�g�Aމ����P�yb����'����}����i���)�w�N�U��~���
������hn�(�[n~�����2"�^fDfKFd�~"`�0Ċ_��վs���Y�}�]P�w/*“�gJ��c�b�W�Uv|]��'jv�I뜻AZ� ��_A	��|�@���%�!S��W����/֟�;����O~��_^���J�~X��0�-�@6~�b��ţP�L�x�x��pq���(�9h�N�}�w��ﻌ�u����9���ѕh��
+����������z}\h|"4���!Bܹ�⌚�{�U�j�	5���f����	���C����3�o�
+5}x&��~�@lI}�m��,ϟMR\����='�w����ug���.�S�K�1>�!2���f�W	|H���ľ�籒���sE���*.+]ʹ��Dd����<���q��������^�-t�[��">5�\V)���?C��_*5���a;V
��񳳉L֊�ߋ%�(~���_�?th����G:f�F����~�������w08�!���������(l����c���z�=�S�Q���w�%�?P�����3��R���������g�m~��n������.\p�k ��5�9�/��ȓ]��;R=��[P�"���9�zċ��-�F��S��?�<���߱��>0��2���K_��U� K�Wd��A�]v5�2��hqV���./��>�:ۚg��}���Eu��s���r��2e�}��/��8����1��:���8�u� ��[��� �n]�k�l����t��w�j}����D���~�Y�Q�J����q,�P��X�U�~
`�HX������wq����RZ�ˮD
+��Q-���(�ݏ�`�K_y���5O�Ɓ��U�B��6\H#�V������	"`7FK�EP����o|;���A3d��7qC�o{�0��6��ߕ��"�rJw߶ub���M�B!�bY�b02�8
el��=0��]ri���}��w�7|���(��-���_‡{?-~���p��g�J�=���������;�{.��p���[�"�?*=�"��3��,��+�}	��w�7w��J�&�B��?!|���CњΧ"Ev�<���ϱ���߈����+�
+�zd֥`i�Ֆ"��^p)�"W��k�EM@��/�.ꏳ�ߜRǪ��pʰt��H㊿�6ʇ�]�M�}oOI�f|]j�	���ܩo��H/�}m�O�c�s<���9xQб�a�1/a���v�e���ݿ���$J^͠�!t��WzL�x�]A����p�$�6�����?EJ{~�ƉT��K�p������Q�7*Ó�����1R
+�Ǫ����I];g�����?+�1w���j���q���Ή��4'����#��s;��@�V)���WnotI��%)<+6ܠ`�����-2>c�M3|ֻ�O̼��Hq��Ю~�50o�:�x����C���,�D�ء����p*`|haWQ�B9��.�mC�Np��������p*clN��E|:&�&�^I�^��{���WɐE��b
��:�ˡк�C/�
+~w�0<�j��[��6�o�S�v���ûn���9������hh��h�{����#��'�SX�*��AE*`P��˶�XJ�^>���f����t���m�3�^Z/�B3��^�wx�1��~�3_�:���/[n c��f���Ȩm����е���1�%���h�ܻϥ�
+������S�?	:��A�
+Ø��$��om�B�K<)��u����?�v��:'6��R������Pi�%��>�1C7��Ȫ⬿�~x�ռ���³P��u��A���R���==�Kr�{�����/:y![�u�_�_3���ô����$�����JZ��&ú�`�h����߯�|�C�{��S�V!���_L>z�6�Ӏ��z���CU���I��ï��������a���E��_�q��,~�)��K:���&�أ�d�ڲ9�b�y#���E>�s����|�X�X��a������K�y03A��	��5������b�_$��=��,�o�$���*R���Ax�d��	��o���/�������	��󿵟�m���gD����Bz�]�n�w�<��0������b�����<r�e��VND{�-����_����m�]�uV,�_���[8����%�n}&�x�Y�{����;CK����|�sތ���.���K<�}+��2�<2�~á#��b��������W������h�G�_C{=@	�<B��m�7�ع��[.����Q���)xV��xl}16��R���M5���K�<�o�}zh�k�����RI�%yf�v�$D�}`�v
 ;�����d� ��lR�gԸ��S�%ſD�k�W��3�
+Zb��{����x<4q 4��~�+~�нP��������;�<��Wp�(8�	H/���Rm����3��/�Md�)��ԕ�4a�ņ�u!Rt=\_��H���%��+L����L��
׹*��<vZ���q룐������N���'d�!�����8���&L��/�d��E��g���~��H�5ã}P�t�"��"���6��g�@�H����F��j?�L�xa��q>cV��l�~� ����<4���W�������~��w.YL�9��5�C��Y���H��G�m,���/�w��ܳ�@3Kݐ�f�Xq�rx�J�ܳ�&~�f!xߦ���y�溽p�6��{"�����M�n�]:z�WЫ<����1��1@���Q��{ǹ�}��
+�2����2��7�������9�A����Ԭ��j>^��������NDƷ֍B�e���M����;(�x
'�w���KJwCiJ�R�qF�#DU�(=�Y쬳��iT"�2ϲ~9
+h%4�c�~�O�d�]!�!
�B~�^�]�?��Y-(VBɏ��K�o?o{��?�b/B�9�%�����84�Q�gA������� ЊD�[�"�]�u�JmW?L}���a�tγ�KuE����_+�
+0Y���Ŷv_͎�S����wi���]D�;��ɚ�H.��-D�3�˞�pr}�P���{����'���M<]Z�Y1nz���	��<��������,&6>Q��z�a���#��o�%����xY�C���������L<�&`_mw8�~�|�r"��-���*��l
� ��X�&��1����[�������\
v>31\Z�h��w����t�_<ؼĖ���Ş���8�l���c���3��񛷐�~�,�_����vB�a쌇����gI��a�|Z��LJp ��g��R])s�������wT~�����s"B5ݏ�f�����!]�_�}Q�Hԙ��a�_�z|�A���b�Ċ����O5F�KK3X]���jb�;ֵO����Xv
��RT����V�P�����ϥ��Md�3�w>I�C���C�v�3r�ɡF�1�5z���2����P�]�����iTC��Dt��������.���C�u?�ٱ���J	,����-碆nZ�m�܉
5;��vT���p^�1��A�И���5W�?|�QW��Ю�3��pM,q��7!ѯ5$�+NW���]l|^j��9��#+����Gf�`��jvt��zw���:{:���S�"�vc����/�����j����;궡�S|���F@�ہ����սh-&,��34��m������ʥ�Y7�f���.����A@[���l�n�ER��i����LC;=l~��K�BUa�ua�E~"�6���8@F
r|�]���ңO!a��D�Ff<c�3bK^޲g;ІD?�J��E/�(�{?�v������/�z�F�ˁˮ%���	A��������/��N4ȱ��5_��b�t�y��{#{#��jW�BA*�����W{��K�[q5�)mx
+�u�:;��Z�ý��e_'�kn�t�ih{�Wߧ�
+6�<_�N\���M�)\JNg��v�>���7�&���Hg�L_tbδ���h=a]�<$�^U�u�k�g#�PyjվY������/�������MU4j�IQ�J%�T�	ojR�����3ChDb�<C���;����JI�[Q[Q�;�^"���s�|��yw_�=���k���O��3�g�o��������֭J�O�S�A���[��nW����
����V�1��������F�cڪȦ��Vi�b?��T)�����(�l/��#y�	w�.����/�A���Yk�؋2�05��{�L�k��p:M�U!(�X�ً�a3�EŝFEF;Cp��
+匎Q��pG�w��j/�׳��Fo�o��G"�uH�[���C��|�a3����#��=6�����Y�!XX����5���jb�����^=�Oɑ������#tM�x�;�x��Z^��@����P�P�^R6ʤ����%k_1�W6?*ftఎ'�I����o�Dnje�����2�-���'{�
+�B�:(�R��'K�J��t����2�\�0u�q��R�;\�E(�I<����C��ou��ä3i���^�s����
��M�������CF�%�-97�ڈ����M���)�:|f�M���
C�p�)O���{��*a�oDir��w+PH��a�R���eb=L7{8��O~���ep���sO��:]�Y�߉��w�2��^�d8L
���`��CMk�[n�z��`�_R�,۽��>/���@��ƺ�hۤ��%��~�P�o��Qb��±�k��/Z^-�E�/כ7�oכ7�5�ĢY�Z4wI������F�F
+�Ci���=ge*u:lvz��j�	�dL˼�\&<��}G�)��
����lPFXir���_BJ�Ũ��;f�����4u��}��2�ܼm�9���7�7/(��<b��F��x���u�Ǽ�>v��$�u:̱;�Q�(K����̟�y�ͭ�p��Џt^��&�+��7	%����/D���7p�a�#�~sCAt9H����#n���j�8�%�P���P.�p��8?5r��B7����
xb�"oti��e�� �];r@'����+9����{I����>D+���O�:�����ܜ;��,�l����|���%��(X�m�2[P��z�
+"�CT�ɬ��x��'f��l$ڜ�u@,�������N�?(�����]�������~�痀��[�'Q�
+���um%&��B���b-`.���^��[���*9[�_4�WuY���b��b���ӑ6�e@~�91����C����R6��(Mܸ�������Ē����
NDlBQ�� �����sN2B^c�t'��sM!��yb���^��	��ڏ
+hk2k��C�W���i��sk8���	���_��^���G��������d>���p����?),���)��|
ض��V4\����&���2��fwq�#��E폂-"�����@)�t�*�"����,)�ށ �9χ���],I�P,'��4��d}�Cl����hˌd��}�9�m&x�����?뚢�icN�g,���2���@)��
+��0����2�k.��)m�;����C,�N�ߞ^��C��)�t
p
+�n��MG��O�_-��%m�j�ϧW��@����(�i�Y�mw�O�h�^_�r�7�ƍ������=F6D] ��|�9�`JN��IH�"�<����Uڈz2�99�ZS�����y�1�ׂ��CY�Н/rU�n(�"��x���r9��uؿm���|�+���&��'�!��YA���C��.�Nl$َ9�s��5<�#.�7�����4X�2���<�ژ����靂4�s(��z�Ͳ�s�l�oe�~�(*�(p���$o��J�
��[hƼ���:�V6藰E�����V��į��)�sr�oU�N�a�P;-Mn 9߀
0��]��G��:}dQax�t�C/8e��Dr/'%b�='l�nn��~,�r����(�ggF���2;�Z���ۡ@]��^xYK<��ܯ��z:O���I����8�ca%����Q�w�$��LZ���i��w�8�Vv��e�������Q�E�
+���}�K|�KG�dw��vY�������?;
+��m�
#ޚ0x”g�7b	6{����,��UQ�a�B`;[ӓp�<#�M~*yn���ęqrU��-N��uZ귤����ŎŸ���_d�t���v	��o���0�9�N�hC�9�آF4���{���;m%��Ɯ��
+h)���i��d������"��.�9p<	�L�
lSn4
�?.����)�:�Zбγ,���.yő�$!כ��:Y�9a�-h�`���8�t�zB2��hܴt��2m��Vq�����.�ٴ�;��oa�%f�	#Jo#�-���u(�;|7�sqme�v�	��Ƌ+/.h'|j��%1~���I^�Ȣ���yV�V|ʣĔi���/�(i�o��t�E#���@*mX�u7�D8�t�IN3�%<��XjJ@��ТB�N>-�ė������Iо��w�4Z��;G^��Œ��@J1c�5�.�N/�!r��Uj�pK�ٷH���j��rƑ>���^T�1�5ʛ��s��1��/�hw1��ҝ�ܺ�]�9E&dEv�V2��ehU���C��v���.K&�ɲdr~d���V�Ŋ#�"���P���j���h^�"i�P����*t���e�|���_X*�9:���S�������������g��y���.����-�j;��P>_����N�����/�R�y=R�EZ���$V�A-��Ǿ���Z��h`�Q3��*��ߓ�	��ǭ'������M�s>��g�yǔ2��l��g9�gO�[��U�B�ց&﯄��^J��4�jF�cW%��4���+yzOǠ�� }�H_���e�%�0�����I��Ȋ���F6�&-��
  �(a/�
+C�?r�s{=w�}�f@_�����!��	�ZF��Q�5���;��	-_��+٩�!�)�6��?�n-A�Ӏ�
+�j8��я�|��c�ʳ��T!��^�,��ã?�����\�YƵxy��,Ȁ��C���_~���~5��.'�E��6-�休��
��`�ֳ��ˠ���?P�������r���MedP��ܷB�.[I�"��EGxW��!R6�g����=���߇���s�{r�9@�;1���=��������4
+�禐�Oe�Ȏ�T�(Z4�e�
+������)�]��-��(��~�R�X2���'�{��i�L%���J�R�2���4��$�5i*O�"U�S�8�'D�"Ov�@>��Ѹ?�����u�w~,��қ�:���[Ev�7������zz{��"�P��q*Qo]ȁ��<�V=�0	��Q�=��X6S��d��&[�������э<� ��v�F5%Q��ޖs��
�㻣�yjՄZ��gCS�P��S��r�c�;��J�\V����un��);�g�cjɖ=���0G�c?�t6����a(��~������-�P�%����%�*�"ݕ��Y��w��s�d��+i���h&�>b
+��Yp�w��� ��v�����{�Q�^Ǻ��Xѝ��c��Q��]{�����m̹�'�Q(ҽoXh�Ɯb��1��h�-;ԗ��$�~�7�
*M2�Z�
+h���h�s�����*q~��%��V����9Y���F���k՜�/�����;1#�1{k4���'x��	��N��Z����h}y��)��~��rk�2;�`Imb4r�ɡ�vf~���/kHl44`\WG�d��+)�v�S�K���
+O_A�
+���;}�۲Gy:��\���I�;ړ��w9����5�f���`fJ��-o��Ew�9�[�73�;�O�~�6y�^��a����aKx���EI`.�Û/��z��E��`�;��`߼n�7��o�A�ˢ����I|�(�e'Gz2��8r�1��ґ�"�4@Am�٬g�xj\\�¶l�HNt�a�ޏ��ny��ڞ�Aa��a#�x���G�T��<k����	k����-s���zz�V��K��M����}���_��ˁb�����ξ���x�g3x�x���,�z|_y���t���z�7;������
+��.�J���N3R�Fm
�����;�\%��ܙ�����c�o������Z.������'�93�R�wS��3�N�C1��{]J���w6�'!
�	ڌ�9�6��&).}y^A-�'��
���ѿ���fai{ap�vyNa-Id����Z6��Y!	{�9	�����X�S붟�%�9�<9K�r�!̸�_B�#�눶�.�Gx��1�hvhg�/5��صt�ޚ��ڎ�8�gk{*XD�WNE�T��%���lޥ���✹�V;f(��v�Ć�q3��*6���G��B����ʂ�x�N��FC�T���֡���,']�s_��H�'�P�yg�:j�e3��,ף��3�@�T(����������C�b"3i �CYĒ��@��N�	�oؐF-������*`�J��@�y#�
]��8^s�f�^����F4�~�fC:�U�6|� őI;��IM;kR� K�`�X�GadžM�y
�K-΢�LV�7
+�g���绪���B̷����GT&�o;ݡ.٢M\�W��b[��X7�7}��͚�l�ՠ�S~�Y�w�y/��?�u���F��h���Ɣk��o<V.��$+�=��Yɱ������UZ�I�MD���[C��?�����u�!1�󊶉>_�&꛴	Ѹҹ_y�x�7���	|t�}q
�Q߬����=�Q��`�*˰�X�
+�J��x��~#��=�CE�֬�"/V�c�!#I��q��'E�0O��T��0y��D�W�:����;ѸFcyޡ+�ܗ���+�X����Lzp�+=N��~D�3L����t�2��ʪ�oE<��#/�j�ٷC�=
�0��ǽ�5��Y�6s~��$Ȝ��D(�8��(�?��'by�Ё�>�*Լ�=
+s�g�bPT����tj<�Q��=ķ�������Y�O�oP�W��oO��r�7|z�.�:���^�t�s��){N1:���3F��_���>�#��:��,%�LEs� �꫼s�=Wƅֶ
B�6�|�5*#Y͉�����lZ�$9ߺF���Ѹ���Z+#�CRa� I�hI(���3Is"ӓ8���B�΁T6�N���e�[	}ʦ�Kf�}ޫN�������F�V�W�IRY'2�����4�����@ ��F_�z����
jj(5����:��ZS���9�:}'e�w
=]��C���~�p��UP�q0�D\Պ4�"�+лO �i,��h�3�>
�g�M��%��� t�aG�$����9~/��S��zx�������֋X/Ь�����鮂�v�1����x��[;�Ϧڏ��
�Y�j?y�n����/�Ie{�� �g�:�I˺^�����7����T�ȟ�\�~
+f�!���fxF��UIk�!��!�ką0�YYNe>�/��ˤ`�/y���e�2M�̇�L�{(��@�Պ�AQ�Ϋ:�p����W�������^��;�ʈ�"5ͷ���ky��C�N�u��oã�=k��)������؉>D�tB950���go�%c�~N$@S������H�!�����Ę�!���I�X*iC�rDP�+ZV���=I6K�WL)�m��(��éX����N�eLBf����¤�R�`L��2�N}I����!�d��_��c��BߧE{)��a��/�\�a���T2Oju��D���[��4즜���,T��U�����]�n�ۆ�b�L��
;ꂾ��F���Kۡ�_�qDJ_gw�-�R����p���L���ߌ�?��f4JFSգ��o;̅w��#�l_�B���ʭ��f�eQ�|+��k(�^���#9��R9G���I$�N�)����M%�ʸe�Fy�JZia�ʈ�?R�
+�F�
++j�\�VE����;��S��t�*�+�*i���K�\�NBw�oxa���f�V����B�1[8n�}�sX�cDQ:��/��ŵ~|?�N��d��b}���b�����Z���K��|򩎷��#:��/��x����ۊ}�-d��%�IJ��o{R�'��;fk��T9�I�$�9�����)��#�5�,dMz��z�q(���*䡻��X�[�&S�3��:t�8�H�Z��Q�,v�'<2�cݛPY��G(����ɹ��Hʪ���۷�D��OGu�n� ��n��wZ��P�(&$�3x���;���sL˫��H9?��S���Q�n������c�-��P�\���]ʙ_�ZL�m���Y\��:��迚6L�'j_��l�>E�r���X���Z�(e;�e&:��Ȉ��	���Ch͇�	o$Ht9}��-��\j��J����f�n��*/(��N��޻,��|������L�uy`��	,�����r����ؖ�H�"8�o��Ւ<�yga.�{�6�R+/��xC�;PI��lM�����Z�(��\2�;��� ы�p����](q�XE-�r��/bp��0��o_�f��3��/�o�	��jM̠E�:M�k���F��QWk[:���"���
 W;��{�=ul;M\���~N�%�?���k�{ ���h�Od�}-�mz�S߄a���?�3G��ʼ��m��m���D��Y�_IC9x�#�T�)�4�8�U>��/�yρsyM����p��p������/���JّiC��8@/&�7+w����l��Fj�`�597���r�L9w&�5�1Ԛ���J�@!a��v5�?țM�!���#�̧ι�a�[m���A��f}>�x`��X�zc��1��]�iV݀�mzm^wյnz��S$�O��J�Fy��T�~�)�Ծ�ð��>�W�c��z�}�Y����Qv���h�CN!
��&��x\�GWqK�0X�!��Ԙ�G�N�������Cɩ����"���M�F>����?a7z1��B�ʪE
j6-�H<�i�h����9��.�w%�m�ilA5�̸vЎ�9��������������̆���w�w^���0�y��yl9��9!���$粤#�
+|�|���HL�@�;7�xR��t~�+\��0^�5��S��[PP<��;���+\ȐȲ�N�sC����a�t��U%/�?���]$�o=\I��0�)T��I�Q�	��Bv�J�J�.�G��&E�,�{�7~���Vqׂ��>4���yk+�����vw<|���vw:��-I^z x�"��|G�u���E8��ɏ��G>¸WJZ�l�/|,�j/b�!pǺ��i�満���7��?Ïv�c^�Я��p1�w��3�_���Ǭޢ 	�%ԃ�^ƍ9���oR���+H�0R�h��(nZN�O0V2~3Ґ�Dk $�;�l��ɢ^�.�%��—)rF�!�%o6�$,����@�+�ZΙ��!Fk��zӢӚ���L�E��$���8���(����J�2�Ӷ&��6N�X�bҖ��=BaF�xy�Ԥ^䌁[�	�h�/"����RL������WoهD���#��)#Wx�X.�wvs��g��W��SI����%D���뺺さe�ՙL?
+��aE��R6C��l����}�5��Yo�S!#q���<��h-{�5SG��J2i=)��C3�7�1Ќ�.��a/����Q�=�x��hR�r�&�ԥ�ӟ��8A[��W��M�:&��h>&m)��X�]a�+�X�P�2����4��,��ã	x����ᜦ��z�.m���?x����ќ$r6��{��^D���f��&��tM��M��!��dz;���B����[���ø۔s���d�S��>�0�~'��փ��m-O��oR�6�/=��7}�/�;O_��/=��;�ӣx�c���Cx��?��J��~����_zO_���H���yV�S�������O��k~藞�ӟ�R+��Ŀ|8O��KO*���=1#�z��l:]�B��o��5B��'1�f� ��R��ÔhҲ�p�%c�7Q�����s�Drc�@mm�ރ�Y�t}�|}��Y�<˶د����^���O�1�ғ��>>\~a�S�Ő�H��[��,g�(1_C5g]����\\F0��!!�S@8��
�)�{�J�,
�~>���^&��Ü/9��=��R���$�>��Cy�<�R_-[���!���	㶾3h��/�ιaHF���rR\����TwS<�(��Ц9���>�����!�K��%��L�>u�_��q����o���L������v�s��2��}���0�e4�x�B���/�2�����iۢ�b���
h`�öp�ג>���Z�L����19����W-#eR/� ���O�He�4�<����d9�ѸX�¨�D�Ň'������E���{Aa�v��8����YdB~aFtG��>�K��"D��Dƌ�+�Bb�8�71J$�剀ʭ��]��>�Z�VټĚ�i*�/� ���H��'S$��Kh�Z�Cs�
p�ૅ����*l����	D�z �5�*R��E�#sJ�+/���<4
�h��J���?�؆��un�=�@�cQ�d�T����K��!�Mf"�TN��\�����<CSܣ>����t7r�`M��J$͓����E�q�|V$�ɭy�	�<R$G���"��H���Dr%[� i�Hz�'u��-"�Q��I�EROz�~IזPң��Z$�X�7�~
}G��~�@�q]����	Y	��ע"����݇B��Fu�	ԯ&H	ʧ�p<���w���7���}N��o���X�����
+@�g�[��>���d�Z"�-���v(�	6�����?p5�e�̋�a�<��,�G��S%�)��懂.dS^���C�9���Zy��K~�m����}Y�k҇|woӸ������H~�o�N����<\K8	�i����L��f�:�ᯠP�&��Bn��{���9Y���C�J��l*5�%��H~��<u�Iz�Y��9����������R"e��!��}� M���itW`�)P�ҤMe�g*��
Z<?���X���*��P�Mފ�8�:��9+�I�D�Kyo���-��n�j����v���f�r=�"��\��-��
TӋr?x�%-�r���&q��r]E�<^��E�7aw�EV���OҺƵ�/�{��v-2e�~�������j�sI�M��u(����b�����e�5�[B��^#�>] H:�U��Ro�(�,���[��u@,�e=�#���mJ��\�[ڿ=_z���D4���k��P[�T�c�.{e����^�NȪ��C���r��	m:j���A�������1i9�.�M	��2�/Z_�@H�JS1�����F#-�i�x�E��!�b{��?��4���]|A`]��P���"��I��ܻ���%U5�f�*kG��T�HQϱF2���F�
	�`��\������w=}���x��1���+���c���q��P�GO��}P�7Z=�c�H�N�	��<ã<*ں�~/3�Yn�~��Ɏz(���m����4�j?{�Z�;6�0*�M��f�]~B�yŹV������!�x���s,���E*���e9z�a��a�>4PO�Y�u��sWH�M>�O�)E�RHl��[��X���P�<�F3D�ɗ����G�Uz��K��}�T�K-���E�8��KW�7����O��FS4��釛�[rn�T�`�N|���>�'~�=o�b-2t;J3n�D!���0���B�:L[�X�4i3�J���{Ȉ��(ڟ���K���6Qx�Z�ӈ�2V[�P��:��i֓�Tou��e!r��DP?���� ��]��ٺ�@y���pP^�}�����q�u*7����]ߠ����0��{�ۑ�G+��3e�-tq�}k]g��g!�7�_����S�;!�5~ԟ�G;��:�'��̟>�o1֦�Za<N��GH�l�1F`<��$=�6|������^��u��;�܄� �v�i�Fm��,w�e%���SͪH���ȟ$<���Ša��Mu޺��j6����AE������S&��k�JF�z���o,��'E��#P��_]�`�8|�
 `;Nr�����[ѡ`���y�S��ޮ�n[��ŧ$���yp�`�G����nβ�T�����6�(�~��&"�K�уubU�q��M�fW�pf�P��f�����ͻ��m0������Ws��C�2�9]������~�wN��o�FP~�+�~�~/�k8�c��ر|}�j6����]z_�j;��	4e��p�Bsh����=��b�����^�E����Wp=�!�=�#�J*��&��ۦb���
+M���Z����	��2��
�+��h����<Ƹl�-�1d�8�;�*�g�}tQ�m��.&ZB�Q�Ϻ��k�����8@.�������`����|�"Ώ���'���y��.��ǧ��co��dp�z�Ï������UU[��޴�u�Id�}@L�Rx��ʽ��g�t��yc/����a��׿X7V�=*���bf_|�W��}t�_(����"��=�A��ϫs�Ns��jO_������o8���2�t����q��|}�{���[m��������;�f���3��������y�<i��y�x�Pt����q�����0�w\M��\�b����2h~���[�7���P�-�)�L��Q�Ŝs�:q�����B̷N�S{��1�,j]{فԒ�aX��V��A4.-�螭���m�^�RPP�p�)�L-�
�?If��y��Rր~��7iM0���>F�3������'�i�������U���w�0J; I�'�?�9QjjۍM6��&=e�w���1p�0M%����`�F�5,���-9��̈���,�E����h�,�1�
Bi2�N�̱
�<�=K!?���^��T�Z�ՠIxf33˦��vi;ڱ�.��3��;=4q3�x��+��6��8Գ�E��0���mp/��3�
�o�y��0o�`��JN1V"
+W&��+\�6����<�3�x�y��S{�&��&�g�;���Y�ao�޽]:��v��UuO��澙#��`5�u�
�Zα��ΜMS�m�YbD�^��Kς����0�R��h�����U=S��)�>��w���S�ӞI�
���bc��;�Sh�;h�w%K��c�w�B��T����Z��"Z���ȫ�(���Ȁ?k��
+�¿"���B�\&Ċy+���W\=��1H���;���/3Q�ӷ���{��iDx}b
+a���P����NE���7��z$���H^Q��=o�z4-�ƍȌ���� �y��S�(�*4=q�NT�r�Z��E(��M�	���{��u��(��Z�f)�FoF+{Z��z�77Һԝ�����\W�Q�q}��S=�A�g� &�����@��X�=0�-|�R�jO��!�H�;Pl�k�����!�����8�s�3.#_������D��Z
�F†���)�[�]���e݊B�E�K[L��19wEtX�o�+�?P|��[�
��x�h�\�@`�Y3�֪WH:���Ʉ�N�GH�jҖ��L~�LZ�l*�a��j�I[Ԇ��C���u��BdBiS�Eu��#��'�|���|��`�n���?$��^��R�v�Y�&�}�3�a0�Q��/�ڹ.�p{�"��G�a�e�ݺ�����@�B*���r�*��>�^�ەo��u�i'L�N�[n�4Z���T�d�+�(�<���:��؀�.F�8�NFO���iA�[N�O�6���٠
+�3�rnY%Χ-��1��ë�n��c�1��`'r%���}���%n]�3���ݺ�Р6?�?�j�^�������}�(5ZV?Ma–�Ǧ�3��G�%x�x�O���8��!sԸ��"<���Ӌ������WӨ���*�M#����PE�S��D������MN��3�L��+�l�J[�����G��\?<��l�*\�x
+m����zީ��W��4��*X�ڈƝ��+�V��Q��k��N�οg���x|u�y����ƥy��������0���߫��̐47_�c��Y�7a���ݹ�;\��Dϓ&h
+�H!�T���綺�}���|�/t��|��ޚ��xm����PH@K
+�
/�q?</᥽�5��]�)�1��dҫ�m�iwwslڑ��ي�T��g�+pq7�ֹV;���ی��Z�������]���f�Q���
|�!�����}����?;C��ۜ?%�滩�3H�Y�g��uF쎑삙�sB�,~'\܅�Q�����L�5�3��������u�+���.��sȹܪ"TzY�[ABa�̶
����|㍎���E��t��_��p~p�o��s=O|Lŏ}w�DL��v������z�[9��
+�>�o���ڒ7�ѫ�p8����
K�A�g0�����L"�G{{�[Ο	8�cCG9�H���]���k�{��=~/����|�{�.���4>�'���lbZ6��ۢ�Gzo��']�n����^�KX3O����������3٭�0�L��лC�fcV�����?��M6(�To�F��۔���<
+�;e�ޙ쪭�P����"�m�,��٘i\�����=]��$��੕�9���. )N6g�4����;;�z�O�[����@�Rt�C>��>L�h/C��m����F�Mp���ۈ����_��� ��YMӟ����_/L��̷孒�uGb������lk|�{��/v�Xt������~5��hz,果[EG�^�����G(@��kAˍ��Ne	�>���,���,d��g1+�w>c2I��2���*��?��x��l!y嶹ڴ�#�ch��=M��(Z�6-��L��3%GBMR�z9�����S��#4L���ӨV�>��Y4���tl��g[��l���S����v��a::@{`�z
+��Ua��G��KR���LK�G��NQ�d��A0�n�[-�1$[@�>�[�*�I���L���7�A�O�6۰O�Ak}�I�>�B-=�I���k�]?�c�W�2EB�������.��zN�R�K�?��[5�{B��
+32
+D��hm%��Kg�Ш��5Ō�"|c�W����	�h�?�"]�@0�_I`H�+8��K��>���
+k����
+�
�N��U�[�L0V��Pj�z�%Zq.?�d���*��C"DD�V2�n���kr����U����1t��
x����?�dLZrK�z��ꨇ��(ŋk)�A�)Ԅ�wH��������e��
��aL��߇ĖX����E�T@\(f��j�3r�����7��NT�!�<�����#ʒ;���4�����,+��%@2~ڢ���<[3���k���l/���}rx�w�������7Y;�2�kZѡ��T�-8�D�CX?�V�k�^�u(��^B��'�~��oε��Nr�7���5ć2Ih��=~<$>�ŏ��t�?�?'Xx_CΕ׫���[� �,����G�)8Ϳ���R�	s���V|�X����x�]��T��xT��\NA��M[p�_~FZjK��m�	�2_�:��u6#���;G[qJ���`d�U���ܚ��~$U=廖�
+ay��ӈ��f��P���Wn��b\?(�Z��e������p��^S���l:������z���>ϒz�k�h�[��$)Zr:b�>��{<܅�����]�h��-�띡;o�H=J���bO<*����F��0mZ:{�J!�]Fo���˕Pc":|�_f^Af�Ϭ@}n�ў1(Dέ�
J�^J(�lr�X�����i�(�Oo+��n����'ܜ�,�f����r�tۅ�L�O�:�w-�BJ���F�
a;��>�����XG{���4�ܯIVѪ�V�]b�&��c�_䃂!��P/*
+��V��#DZἦ��/NL�&��au�@K'r۬�кp�;B��G��a6CL��oZ��Y~�ni��`q�@�E�鮂��D�m�
m���t�hb�<
+�z��&�s��B�ea��=�,
+�f�1��E�=��
+r|&��
+ɨūӀ<�
CY�4HJ!"4,F�bO���	�Y���	�ĭ*�y-�LG>�L'����o�^��G�S6�Fb�U04��;A�e�-o�߼�C<Q��ete�輅M��j�hVg�Y<!��ߢY�߉�Z�k�I���S�
���߷��X=m.���alX��&H&ب���z�6�G�=�|d�ؼ#��O�Y�S|�:�1O�{�
�	���yWhS�����/d�YS)�S���G��B�Z���-Ѯ�L����HG��AV1P$>�R�[Z��c��{��sL:Gr���B+'&ꭴ��RDo�R���vzx�ĉ�태�	�L��˹ؗ�b9~1�}=�[
+C��[В�?`�g_ �	�#�j�Oӽ1T�1(1�W~�Wv���/�h^��V�3_�%
+�H�>G<�q5UݡVu0�bu+�P̅����!�U���Bw-��N-K�Q��O�Q,M(���BT�*z�sh�JaE�ZA30�\�W-�Vb�P*���c@q�J�w�>��{����e�Qx�'�ζq�6\�Y�i�^Ϝh+ȸ8g�����Gπ�wr��s�$
+���:ѭ�diH\�Q=�I�v���Z-�e`�?R��=��^�l6�n��c�C�1��&��p��p���j���(6e�������@[�Nr����ŞiG �%�yN���l
�$\+���|k��_�U�?ؾ�����p3�P_�s5���ǯ;�#���}0���}Iލt*���	�f�_�K��v#ac��/5=��Cv�v�J��}�CU(
+Z�/�${<>Kc�Z|H�A5�Ձ,����@��Qـ�F�Z�_SLLs4�,�&=E���Cq[ʔ7�k�Mr�r�x��i�����Yd�<�B���RSPI�;�W�z�_�sO���I�k�6�]F$yM���a����%�̴W�3��cۆ�#�M֋�?C5sZI
+�`ۨciP���)�5�l{U�m3�+\��Rͫ����}��YQM���P�Ri�T�iA�>�~t�Q�Y1�a�q�lðR�v�AP�Ҡ�b�t�Q��TsqG~4��s—D�
-��k /~M�O��/ĶB$��	���5��'Ug�L��OKБ9��`v��*�xp�J|��8|��!܈OY�d�#t���s�~7%�>������VW�6��R+�P�Zڪ�d�ik`�f�&�Cš�r��ۃ���kc�@0�\�z���F8���w��8��=ϳ&^ϳ��y�z�նWt����7xm��za�|�9��0X����<Eg�7]d���|>E��u��x��v�<S��׼Q�CD8Ë�*��y���%�l�f����5 2W(�6�瘒�i��R
�a��ac�����"��>���h��މ��v�4B����,/��7ʯba,2��^��Q򪼥�<���:��X�H���Ej�"�ǫ�����A�x��_f"���>�8G[�ƕ9���Pԣti�(?����c���n�
V��芫E��硅u�5r�nub���o����gh���	8O���#�Lu�f�a47����c��aRY��P���m���@q��M��%̀b�0���� �;��1�u��|�ux��I��]v.w�3W�x�"Ĺj1��H���[ю�ݔ��&܏.kB	���8U���b�ʏ�DL��.��
�c0�v�%^	 	!����s%-��8����1&Vl�d�.�[����8�r �����!]�< �	L�j_�y	��Ndz[C~6#���и#o-	��	ڍ�	b�x���d����X��M?�Ա���7λ�Ѣ9�52Z }�F-9�����hS��ʌ��u֕a���c�9�<9D_��UyX�?h�WO�D�`O�Q�E���v�7�x[O1�F�~��4��A�����
+�[����Z��wl�s����df��0�on��s1��+��B�֛Z�~��=���,��G�R\\�X����y>�!�D�#��0z?����#��v���^�o��I3��G���ކk�����Z��uۃ�f[$_��8�0�h^�g�<�sߐ$ׇx��$�N�Z{��챘ph�	<�"�@tL���������dkN}��њ?��
�sx��z=�^� ߦ:b�$[mX�iА�W�a�ӆ�[[r���a\%�Fm�Ҁ����A�á����"p\ �������"D\��&x`R�	�SI�0�<�W��6��?zZ�8�5k I˂l���?C��P_I��"Rľ��˿�m�7g�Gk�o4�g��Q_��
+��y��jC})iW��$iYGq@>C��
+/kL�D��p���b�jY��`��j����)j�w�L:����ፅp������ iW��{gI��"���5r�xQ����<�W�i�fes�(��i,j.��ֵ�UD����z���G��_���{4�m4��i8\z?3�#n
+���ۣ�"��qz�|�#��/B�;f�� $��{�ߍ���]�4����n��O��k�7kd�;�L���y�/3��,%B�e]����S���PԔ(�
��������5�x�!��
8�ܛ�*e�BJYr��%�������`vؐ�pM�	�NY/�.�ī��6�w?��v�k�����R�K>�5%4��� ɹg��
�� �k*��
���\poWҎþ|_k�p��ЁnÒ�`�У�_S�)e�9�T�;Vа�
+I	�@��Y<P����P �
�u���K5
r���-���q���֟����)�v ��K8aQoB.�G�^s�q�)�n�CDר�,��Cu��R#���z�s���-�VW�?
+�c�9������[�+���0�'�rj�%挳��G��Ϝ�R2.���^�B#�*Qϭ�\X��$��$�&���ަE>�ӻ�.���hz����4��~������QF�[�����~�]��iQq�VZU���������[�,��=�5u�:ƻ����L�S��MM�ktt�U���̵Ĭ+`GpZt`X>ˆ��DZ֜v8���w߲���S����|����p�y1��!ܿ7#آ�ܐ��+���u7<lx��B�ӊ��h=X�T����Q�E3��ߣ�#�9��t�x�D��	���9
w��	��y�("��=Vԏ�m	~é:2k�Ko��+Z��������3��H�7�}�i��C,~�g�VS���K����ӏ#�� "���(��&0�<1J^P�X[��XI�=�Q�]*�	z�z�����ehr���dyA���
+�d��$\��Xqo��2��J�5��]b�P�R�dG���Оg�0_oF>��A[D� �Ŭ�h-<(��b�	A���n�=��B'4�uݦÿUUq��=�u�)��
+�I:�d�f�-@��%��'��.Ƨ/aSjޥ��L�;�r��=�3ؑ�����Ə�&X~%�ɹ�I<�w^*hF��/J-楬c~�0�?1��c�9���;x�m2-C�������}i.U�,����lE���R��!�cZS��pʹ8�R�����y���&6�"N��n���F�7�\�y��\�Fz�������Vʒ�Q���,��
Qh;��罿�:�!�u�t1w@�'
������h���>��9԰Eue�Fh;���w�kB!�Td^p<�}���-��f}1�,`R�s�������0%v
+�/YP�����0;34���{�.���A��kJ�퉏�i	M|�V��F1�������u{(���:1�j
+u�+����=T
+0�m6
+�#�i��{Ɋ�.�I��	���\䬲�5�>�)I�
���U��R��/�I��(���b��x���-v�5��s����
+Q��JB��>�m\�4�}7�˛pg�eŽ�"Q�5����~'$��H��1���Ue-�g�֞>_��r~=n1ks�NM]��v��F�}�E��������Q:�02�-����8hTw��0%�]�$I�6�U Kק��Tg�^k�y.�cCB���!�#�Ӊ@	R�;�Nm��vSL>��Y[�G��yև�,�h�^_z��Iu�-�+W�L�+�?�y���1���o
R��!����.,Cv��o�9��2B؏�š.F������%��+@Hca}�0�y�W���2xw�7YѦ�`$��r6�5~���T�Q����9���6�㺹�B�����8�A�Ux��
Խ��ѻ@�7�h�B�Ir�_�g^��D-��?ܯ��`��#��cܖ�i\�[��ˤ)��B�I5G��6��x+#��U��w�26����]���:t_�_虩&�]=��x'�����h�Bj��9�<E�T�O	�E�zJQ]��+@
P=̎����1�{�e�51��V!m�['�me��ؓ�H_�_��,�$��"��`��
+yp���b?cj�fMһ��˷ ��1Uta�Y9L�Rʬ6��]�xYM���x�KSpGL�����>�^�)���_�p:ͨ�j��-�ۛ��UхNV�����X�)X�ɱ��$�Ӝ~�]LM8��.�B�~c{)x��-g,���K�8<�z��+�&��@��Y)��3Twm� �A��_E����.2I�g�Ip�גv���G�B�[�\�܋3ä���ϊ-�~���{ᵵ
+�n,����t��VԺ{�s{�n$�
��0tBk@jЇ�"0�*}������p����i�̫d���}Zc�Σ+�Q<�(<�n���o���<�
�7!�ޖ��x�ґ޶v�>D��<���5�W��[x:^�1�H���6�~��0|��=��7�ۇ����w��g�y�(o.��D����$H�Dz2OGY%=c<E�G��cg,��x:n��YHo֎�W�zת!��X�S��%�E��������)H���N>�;xݯx^6��y���Y<o�-�y{E�(����L��&�{�t���qN�~�<})�[pl"���Q�em�sDz]��#&���H�ao7�,G�1����_����V<+Wh�53�:���v*Ѣ�c@(=�d`�^��ΉT҇�T
���p�6J��ގ�x�>@���#si/�`��I��;���3�6���{�u�oC!M�~O�������圉0�}�4�7۫��P�=��̹�]]ed|
z4�Z)�AVxQ� �w[�b>��BSb�ҵ��B���i=�����7�7�+R�\��S�]e�� 9��M�vזU�Jg�d 삚��v�[:�
+�q�`�M��̕��@�p�t,
j�"�og�I�
:%jQV���Zo��ݼJ�b{�Hk��b�m&�o�$��t>���3�B!�U�g��gT_�տ�cg�6I ^{
$MÑFY|1c���_����=��u��k0�3��H܍��~��ۮl�9a�kE0�R��I��‡�Zm���7���"xu�]<���\���u�I0�{�<f��~��>x|�o�f���w��|dW����7�Wo���lou���ٟ�����{���׹�e��%��kq����w������&%l���K(�_)�)o쓪�_K�-׍����R�-F8��%z���?���Cxn�&OK��Ҋ;ʛ����d�h89
+H��o�P����I	���[���ݥ�Kw1�?d���E���j妡N#���`n)�VŜ�� ϐI�?�ui �Bz
+�l�Dv�+�%���D1e�N>�nq�|���niu���3Ҁ���Ŀ�K���w�~���LC|��fD5���y��X����~~c��& ����B`�n�S\�,0*3
+H��@w	��O�F>��)�V�t=���j\�Iv��5�*�P�p^CsȔ��B��e	��!��g��Z�0���_%�� E{��h}�R�n!)Z��H��s�F��N�@)�0L�<�Ve10	��(r�Q�d�:�+���x[����y�{
vcw!t��c]�6\�ǍƷM3�4{�E=���S�B@��Ur.Fşn�te��	�Ǎ:!JQK;�H����8��)�Yz2��^�{��̢-a�J��q��68��Zm`�5԰��?�@���9f��1�(�ŵpΉUāㅿ��`$e��8E
u�B���уG����:;�����'N����T��V���ȼv��c���ԑ����0?Lz��f��G?�:����K
+�C���TG���3W��»��3�\䏡����D�V��Y��rx�O4�.G�1��E�䬜���4�����bb�� �3E����9zI��Iv�L/�fzv�鞄��%�����rGzr?���<	syB?O�4^?�>�)��>�Fķe]����}+�c�q���EX>��7v����7��S�WՄ�%���x��y7Ԣ[3n�T�s�{�xCn֒���}4S/�(Ťjя��a�p�ۀ���
H軾�@�����<�I+=�ϓ�doq|e@b:��Y���7��3��R��}L]�J�B��a
+�W����v��nIf�6��U�ZG���u��
+�V�]�
��#��!��2`X~�[�����hA}�(��{�׉�mnQ�1<w�����S�}B#1km�7wEP�C5�>~�}L���{9\� w���u9��z3�/
+������\��L�%��lUG"{�g��=�߸*8��5�\�rO6}ʹBտT������A�Nd�0�8/ �o��v��� s�=4k��P1�U�/�k=�KTm��W[�P{߾+���l��7�rdPoRΫ�����I;{P?�Ёk�(��I=��
:~Gf����"T(�䠺�u��z��S^{)�i�9:�Q�ߖ��]�̛�t8N��s양l����~�2C���X�d�CC�6*8iywZk�i���'���|�j��ý#����%��p�|�/%�7e
�f��Zf�Gz7,6��O�Kx2ʜ�uUM7I���2�$s)�G�׵�-���Ila�7kۉ�!���+*��nԎn:$�7L��vm��W���T*iwл	8�a����0,�Y`��B&�T~5q�횢^1Â����Aת��"a�&s�RnD�6@؃�)�ϛ��bzՠ�>�&�o��/��}���,M��d����L�W(���k� �W�3�6�T���+,�R�t�p`~���D��J��6r.���\iEj~�‹ ��=��ϯ�Æ�!���=��Y�Z�C��`��8��l�O�2�LZ;%��t|�������ۗI\ܾ��X�0����|Z����<�&	i������L�1q��B�}	�֠Q��f&��h`�MA�?Q��M�S�
1��M�)'ϼ"V|e�
��hc,
���,I�"Y��1L=���RJ]q��[��Ah�2ǎD
+ ��_�jN^
V�D��8��V��}���`��sլE��4�^y,�/�Kd�k�ds.�UT9��(��6U-eW	V�Wf��\�5��+�Vl;�|ˉ?+:�V����S�-�#/�G����+�-��m����$'�
��ؾE�Pe��`T';A�u�߫�j�z�x��x�ি!]!�0D�C�ĵ/�$��F>�L�E��[/��Ɛ~���{���]�QG �Ap���L����L�+.*���sCkp����#^8�n�2��_|��$o��ؙ�"��Ƙ�dr7�	
+��Ƭ�S=��K��g8Y���m
�{�h<�Jp�x��h`>p7ٌr�u����ZZC��0���qn"��u�2��W��
Ο���W��X�>�_����T�"��❽J#��'�S��
�ˆ�4���5�6Ę�g�!�b��T`�z7@�n�-�.�p��
��Z[��_��$|�c�F=�;I;�����"Y�/��bh	#�1������@�E��}���*��UoL�mcv�@��{|�U	�^n�C�<L�s��1�5�2������q�����Q������Q��������CF�.�u��@gC����1��t�{�k+�gj�	dt=�QS�:S�k8I�9, F�����Z���[�ɸ&nj�����A�rL��rL���e�����+�-�G�D0�����=�wX
aF� j�@�D�.L�Zu��p�7j�Ϣ^�K	���(F����I��K��[Nj$�+Ψild�O���H�50$��U��5������T��q�G�S[���%0w;(�#�}ہ�R�4�	�
���_��vDg.����+������JC��3�w�TՍ����HD�.)��{?��8ш ���Ռh��e�CP(������AC��r[`��c�"o�"p�����R/Y��]��-�1�JH�W���EM�鬎ʓ�,ZKC���,�糧�I�5]�^��5�4
+o�P��v�'_�e�K�oaI�!���@p>�����&�_�/"���QX����� �6%���or
+@�����:��P���#�aNb0�2EEAVX���N�
+�<@OA��6ڷq-K��I�r�o`���};�)��"$8�����TE�G��3�+3aO��k��(to�"Y�@��9�����ZX_�hI�q�F�q��4/~]	���f-h�QK�g���M�,z����ݬ�gk�V�][n�SG�\O��>oC��������?��hG�n�x�Fq�<����Qp<$[bN��$O�a���� X\n<P���sWGt����a=�G_7�\�ܽ����^��ˍ���R��OO��X�Co�/�v\aW�{/==V�z�S$9��vBV�-D�Kmb�{�m�������{����a�v���eG��#mhK�j
M�.��%Mn�@��ܤn(����(ZQ�"
+�TE�Y��wf�Lr�M��������D�i�̜9s��Y�N2f�TZVn�:�Vaw8��d�����f�~x�!=c���Q���sr�c��
+�Ǝ?�X�%W��e�y���6�,��&�M����=,}|��f��,���-u9*��谋N��-� KO�B����>rrL���4�fI�I/��d�:bU9Te(tZ�e:Q�9"'7/����O���c7�	�C,��-��*�%;Y�.�d�a��v�].�.��L����KA+�dr[a�����M6�b�!$=���x��6L�?5]�^0���5(����3L>_v�[t8%{�(:M>�,��d����ר�l�%M�H2*C��mqT�9�#��I�8A���1A�TO�#Aڳ�S2��r���L2�u:��5��{I.�H���ngR�~<Hq��iV�Q�2�$��U�L	��fGE��nJ���Z�<.�>�Pq��t��]n�$O'�t���9 ���&����ψ��i���n[��+��˧Ͼz�)���u�J�>ʹ�Ӈɷg_C��\rI
+��Mv�D�E
��$�O�ޱ�Dv���.�]��2�i�����i���JR���鲂��Y�%���j/u�*hK�_��H�r��$C����HQ�UBp��ʞ�0�B�	�$�T!��M�g*�=n���d"���OftLT�ځdl���`�X]2�_�r�tY-�H�d�B%c�Qt.U�`�$�}˃�er�����������Ḿ�ZV�m.�t�aẉ�����zH�Ԅ�뛧�ء"_����2W�����Y��N�-��J����r�+��Bt�kYb<*f��f�`j{p{���;�$bV��#V��qN��ѵI�ʆ��Q�x-�K�N�L�L����x+��0�v�7��'+�
~�ʎ���deRr�Ӭ6�B�*u��`,�7�������U?%,�j@��0Y&/��"���I�c��/�vꃠ�t�U� N�CHN�� �?��"�~tSM�&��b���L6L���9��p�%����:���K@-2������p�_��$�N��d�W�'2W��-���X�]�ԥS'��q���
�#��R��.v��$��a��t�a���lsT��zz,��kz�z5.�{��
�������c�%�+��c'��/c�T�&O�3g������,<ɲ�I�$��#5�[U:�d%U��Duy##�px`}V����b�)�ʏK�p�L���j�����X@��nڹ�Y\8̀���u�	�]�p.�Y�b�!��H�],r�3���a����DhD�tV�����!�*��#����{|���җo]�z�wi(����f-q�\5:�Od%„�5�V��~��US�qz�0JX�`��(d�����������E��V{��#�=�=fb�K=6Ey1�Z�3�%�Y<�b���AJ��
+�p�&'������$�]Ю
+tA}A:��@5�*9�ߴ9���s��0U�棌�7�-B�G������B�Y>Qj}�'��]��d@t� mb��b�~��G��0R0�����P��G��qq
-)R��Ϫ~p%��C*ഀU{�JPXi�Bnb�f�Ra��)�0	S].(�e�n���	�a(����E�)W��QÛ/���|��.?d�y��>;�����ǿ۱r~uJ��+��9�lT�TZ��Rb-R��cs�����GҐ���*>�s#�gzP
6>�<�닥�Z�XL�!g��,��V)��ٴ�4:n	"0�#�">��!�A��X]���^�/��Qy`F�O�D�U�4�Y���#��F^y�Y���B��
�<�$�E��I5 Ա�S�+gas"�LM�4%�4j����}[P"�t����$�3MR�
+�G�2W����?h���84�Ú..'<��7� TI"���'�A�X�ԛnCZ���	0��yz�1=�xxfA~

[... 64982 lines stripped ...]
Propchange: dev/directory/apacheds/2.0.0-M23/apacheds-2.0.0-M23-SNAPSHOT-64bit.bin
------------------------------------------------------------------------------
    svn:executable = *