fwknop-gui-1.3-release/000077500000000000000000000000001275215015200150615ustar00rootroot00000000000000fwknop-gui-1.3-release/.gitignore000066400000000000000000000000521275215015200170460ustar00rootroot00000000000000# Ignore build directories build* bin obj fwknop-gui-1.3-release/CMakeLists.txt000066400000000000000000000064401275215015200176250ustar00rootroot00000000000000include(FeatureSummary) cmake_minimum_required(VERSION 2.8) project(fwknop-gui CXX C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/") if(NOT(DEFINED IS_WIN32 OR DEFINED IS_LINUX OR DEFINED IS_APPLE)) if(WIN32) set(IS_WIN32 TRUE) elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") set(IS_APPLE TRUE) set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}) else() set(IS_LINUX TRUE) endif() endif() if (IS_WIN32) set( wxWidgets_USE_STATIC ON) set(CODE_FILES win32/minimal.rc) endif() find_package(wxWidgets 3.0.0 COMPONENTS xml html adv qa richtext net core base REQUIRED) include(${wxWidgets_USE_FILE}) include_directories(${CMAKE_SOURCE_DIR}) find_package(LibFko REQUIRED) find_package(CURL REQUIRED) find_package(LibQrencode REQUIRED) find_package(Gpgme REQUIRED) set(CODE_FILES ${CODE_FILES} configs.cpp fwknop_guiApp.cpp fwknop_guiMain.cpp wizard.cpp general_config.cpp rc_import.cpp rc_export.cpp qr_export.cpp timer.cpp gpgme_wrapper.cpp ) if(IS_APPLE) set_source_files_properties(MacOS/fwknop-gui.icns PROPERTIES MACOSX_PACKAGE_LOCATION "Resources") set(CODE_FILES ${CODE_FILES} MacOS/fwknop-gui.icns ) endif() add_executable(fwknop-gui WIN32 MACOSX_BUNDLE ${CODE_FILES} ) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") SET_TARGET_PROPERTIES(fwknop-gui PROPERTIES POSITION_INDEPENDENT_CODE ON) target_link_libraries(fwknop-gui ${wxWidgets_LIBRARIES} ${LIBFKO_LIBRARIES} ${CURL_LIBRARIES} ${LIBQRENCODE_LIBRARIES} ${GPGME_VANILLA_LIBRARIES}) if(IS_LINUX) find_program(A2X_EXECUTABLE NAMES a2x a2x.py) set(A2X_OPTS -D ${CMAKE_BINARY_DIR} -d manpage -f manpage ) set(MAN_NAMES fwknop-gui.8) set(MAN_FILES) foreach(m IN LISTS MAN_NAMES) set(mf ${CMAKE_BINARY_DIR}/${m}) set(ms ${CMAKE_SOURCE_DIR}/${m}.asciidoc) add_custom_command(OUTPUT ${mf} COMMAND ${A2X_EXECUTABLE} ${A2X_OPTS} ${ms} DEPENDS ${ms} WORKING_DIRECTORY ${CMAKE_BINARY_DIR} COMMENT "Building manpage ${mf}" VERBATIM) list(APPEND MAN_FILES ${mf}) endforeach() add_custom_target(man ALL DEPENDS ${MAN_FILES}) install(FILES help.html DESTINATION share/fwknop-gui) install(TARGETS fwknop-gui DESTINATION bin) install(PROGRAMS fwknop-gui.desktop DESTINATION share/applications) install(FILES fwknop-gui.png DESTINATION share/pixmaps) INSTALL(FILES fwknop-gui.8 DESTINATION share/man/man8) endif() if(IS_WIN32) include_directories( ${LIBQRENCODE_INCLUDE_DIR} ) target_link_libraries(fwknop-gui wsock32 ws2_32 ${wxWidgets_LIBRARIES} ${LIBFKO_LIBRARIES} ${CURL_LIBRARIES} ${GPGME_VANILLA_LIBRARIES}) set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++ -static") include_directories(${LIBQRENCODE_INCLUDE_DIR}) endif() if(IS_APPLE) set(MACOSX_BUNDLE_BUNDLE_NAME fwknop-gui) set(MACOSX_BUNDLE_ICON_FILE fwknop-gui.icns) set_property(TARGET fwknop-gui PROPERTY MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/MacOS/MacOSXBundleInfo.plist.in") INSTALL(CODE " set(BU_CHMOD_BUNDLE_ITEMS ON) include(BundleUtilities) file(MAKE_DIRECTORY ${CMAKE_INSTALL_PREFIX}/fwknop-gui.app/Contents/SharedSupport) file(INSTALL ${CMAKE_SOURCE_DIR}/help.html DESTINATION ${CMAKE_INSTALL_PREFIX}/fwknop-gui.app/Contents/SharedSupport/) fixup_bundle(${CMAKE_INSTALL_PREFIX}/fwknop-gui.app \"\" \"\") ") endif() fwknop-gui-1.3-release/Changes000066400000000000000000000003411275215015200163520ustar00rootroot00000000000000New in V1.3 A countdown timer that keeps track of how long the port will remain open The ability to automatically resend knocks to keep a port open GPG support .fwknoprc import and export An access.conf wizard QR code export fwknop-gui-1.3-release/LICENSE000066400000000000000000001045061275215015200160740ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: {project} Copyright (C) {year} {fullname} This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . fwknop-gui-1.3-release/README.md000066400000000000000000000034161275215015200163440ustar00rootroot00000000000000Fwknop-gui is intended to be a cross platform graphical client for sending SPA knocks to fwknopd. It is based on the interface of Fwknop2 on Android. Binary downloads for Windows and Mac are hosted at http://incomsystems.biz/fwknop-gui Building from source is generally done by creating a build folder in the source directory, and running "cmake .." in that build folder. Then run make and sudo make install. I have run into an issue in Fedora where cmake will try to use wxWidgets 2.8.12 instead of a 3.0 version. The solution seems to be to run cmake ../ -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-3.0' To build on Windows, use the msys2 project from http://msys2.github.io/ Once installed, don't launch the msys2 shell. Instead, use the "MinGW-w64 Win32 Shell" Start by running "update-core", installing those updates, and then closing that shell and reopening it. From there, run: pacman -S mingw-w64-i686-toolchain pacman -S make mingw-w64-i686-make mingw-w64-i686-libtool texinfo autoconf automake tar Download the latest tarball from http://www.cipherdyne.org/fwknop/download/ and use tar -xf fwknop-2.* to unpack. Then run: ./configure --disable-server --disable-client --disable-stack-protector mingw32-make This should just work as of Fwknop 2.6.9. For qrcode support, download the latest realease from https://fukuchi.org/works/qrencode/ ./configure, build, and build install Next, unpack the fwknop-gui source, and create a build directory. Run cmake .. -G"MSYS Makefiles" twice! and then make to build. On Mac, I've had to compile both wxWidgets and libqrencode from source. Macports or Homebrew should suffice to install a usable toolchain to bootstrap compiling. Gpgme must also be installed. I used homebrew for this. To make a portable bundle, use "make install". fwknop-gui-1.3-release/cmake/000077500000000000000000000000001275215015200161415ustar00rootroot00000000000000fwknop-gui-1.3-release/cmake/Modules/000077500000000000000000000000001275215015200175515ustar00rootroot00000000000000fwknop-gui-1.3-release/cmake/Modules/FindGpgme.cmake000066400000000000000000000325641275215015200224250ustar00rootroot00000000000000# - Try to find the gpgme library # # Algorithm: # - Windows: # On Windows, there's three gpgme variants: gpgme{,-glib,-qt}. # - The variant used determines the event loop integration possible: # - gpgme: no event loop integration possible, only synchronous operations supported # - gpgme-glib: glib event loop integration possible, only asynchronous operations supported # - gpgme-qt: qt event loop integration possible, only asynchronous operations supported # - GPGME_{VANILLA,GLIB,QT}_{FOUND,LIBRARIES} will be set for each of the above # - GPGME_INCLUDES is the same for all of the above # - GPGME_FOUND is set if any of the above was found # - *nix: # There's also three variants: gpgme{,-pthread,-pth}. # - The variant used determines the multithreaded use possible: # - gpgme: no multithreading support available # - gpgme-pthread: multithreading available using POSIX threads # - gpgme-pth: multithreading available using GNU PTH (cooperative multithreading) # - GPGME_{VANILLA,PTH,PTHREAD}_{FOUND,LIBRARIES} will be set for each of the above # - GPGME_INCLUDES is the same for all of the above # - GPGME_FOUND is set if any of the above was found # # GPGME_LIBRARY_DIR - the directory where the libraries are located # # THIS IS ALMOST A 1:1 COPY OF FindAssuan.cmake in kdepim. # Any changes here likely apply there, too. # # do away with crappy condition repetition on else/endfoo set( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS_gpgme_saved ${CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS} ) set( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true ) #if this is built-in, please replace, if it isn't, export into a MacroToBool.cmake of it's own macro( macro_bool_to_bool FOUND_VAR ) foreach( _current_VAR ${ARGN} ) if ( ${FOUND_VAR} ) set( ${_current_VAR} TRUE ) else() set( ${_current_VAR} FALSE ) endif() endforeach() endmacro() #HACK: local copy... MACRO(MACRO_BOOL_TO_01 FOUND_VAR ) FOREACH (_current_VAR ${ARGN}) IF(${FOUND_VAR}) SET(${_current_VAR} 1) ELSE(${FOUND_VAR}) SET(${_current_VAR} 0) ENDIF(${FOUND_VAR}) ENDFOREACH(_current_VAR) ENDMACRO(MACRO_BOOL_TO_01) if ( WIN32 ) # On Windows, we don't have a gpgme-config script, so we need to # look for the stuff ourselves: # in cmake, AND and OR have the same precedence, there's no # subexpressions, and expressions are evaluated short-circuit'ed # IOW: CMake if() suxx. # Starting with CMake 2.6.3 you can group if expressions with (), but we # don't require 2.6.3 but 2.6.2, we can't use it. Alex set( _seem_to_have_cached_gpgme false ) if ( GPGME_INCLUDES ) if ( GPGME_VANILLA_LIBRARIES OR GPGME_QT_LIBRARIES OR GPGME_GLIB_LIBRARIES ) set( _seem_to_have_cached_gpgme true ) endif() endif() if ( _seem_to_have_cached_gpgme ) macro_bool_to_bool( GPGME_VANILLA_LIBRARIES GPGME_VANILLA_FOUND ) macro_bool_to_bool( GPGME_GLIB_LIBRARIES GPGME_GLIB_FOUND ) macro_bool_to_bool( GPGME_QT_LIBRARIES GPGME_QT_FOUND ) # this would have been preferred: #set( GPGME_*_FOUND macro_bool_to_bool(GPGME_*_LIBRARIES) ) if ( GPGME_VANILLA_FOUND OR GPGME_GLIB_FOUND OR GPGME_QT_FOUND ) set( GPGME_FOUND true ) else() set( GPGME_FOUND false ) endif() else() set( GPGME_FOUND false ) set( GPGME_VANILLA_FOUND false ) set( GPGME_GLIB_FOUND false ) set( GPGME_QT_FOUND false ) find_path( GPGME_INCLUDES gpgme.h ${CMAKE_INCLUDE_PATH} ${CMAKE_INSTALL_PREFIX}/include ) find_library( _gpgme_vanilla_library NAMES gpgme libgpgme gpgme-11 libgpgme-11 PATHS ${CMAKE_LIBRARY_PATH} ${CMAKE_INSTALL_PREFIX}/lib ) find_library( _gpgme_glib_library NAMES gpgme-glib libgpgme-glib gpgme-glib-11 libgpgme-glib-11 PATHS ${CMAKE_LIBRARY_PATH} ${CMAKE_INSTALL_PREFIX}/lib ) find_library( _gpgme_qt_library NAMES gpgme-qt libgpgme-qt gpgme-qt-11 libgpgme-qt-11 PATHS ${CMAKE_LIBRARY_PATH} ${CMAKE_INSTALL_PREFIX}/lib ) find_library( _gpg_error_library NAMES gpg-error libgpg-error gpg-error-0 libgpg-error-0 PATHS ${CMAKE_LIBRARY_PATH} ${CMAKE_INSTALL_PREFIX}/lib ) set( GPGME_INCLUDES ${GPGME_INCLUDES} ) if ( _gpgme_vanilla_library AND _gpg_error_library ) set( GPGME_VANILLA_LIBRARIES ${_gpgme_vanilla_library} ${_gpg_error_library} ) set( GPGME_VANILLA_FOUND true ) set( GPGME_FOUND true ) endif() if ( _gpgme_glib_library AND _gpg_error_library ) set( GPGME_GLIB_LIBRARIES ${_gpgme_glib_library} ${_gpg_error_library} ) set( GPGME_GLIB_FOUND true ) set( GPGME_FOUND true ) endif() if ( _gpgme_qt_library AND _gpg_error_library ) set( GPGME_QT_LIBRARIES ${_gpgme_qt_library} ${_gpg_error_library} ) set( GPGME_QT_FOUND true ) set( GPGME_FOUND true ) endif() endif() # these are Unix-only: set( GPGME_PTHREAD_FOUND false ) set( GPGME_PTH_FOUND false ) set( HAVE_GPGME_PTHREAD 0 ) set( HAVE_GPGME_PTH 0 ) macro_bool_to_01( GPGME_FOUND HAVE_GPGME ) macro_bool_to_01( GPGME_VANILLA_FOUND HAVE_GPGME_VANILLA ) macro_bool_to_01( GPGME_GLIB_FOUND HAVE_GPGME_GLIB ) macro_bool_to_01( GPGME_QT_FOUND HAVE_GPGME_QT ) else() # not WIN32 # On *nix, we have the gpgme-config script which can tell us all we # need to know: # see WIN32 case for an explanation of what this does: set( _seem_to_have_cached_gpgme false ) if ( GPGME_INCLUDES ) if ( GPGME_VANILLA_LIBRARIES OR GPGME_PTHREAD_LIBRARIES OR GPGME_PTH_LIBRARIES ) set( _seem_to_have_cached_gpgme true ) endif() endif() if ( _seem_to_have_cached_gpgme ) macro_bool_to_bool( GPGME_VANILLA_LIBRARIES GPGME_VANILLA_FOUND ) macro_bool_to_bool( GPGME_PTHREAD_LIBRARIES GPGME_PTHREAD_FOUND ) macro_bool_to_bool( GPGME_PTH_LIBRARIES GPGME_PTH_FOUND ) if ( GPGME_VANILLA_FOUND OR GPGME_PTHREAD_FOUND OR GPGME_PTH_FOUND ) set( GPGME_FOUND true ) else() set( GPGME_FOUND false ) endif() else() set( GPGME_FOUND false ) set( GPGME_VANILLA_FOUND false ) set( GPGME_PTHREAD_FOUND false ) set( GPGME_PTH_FOUND false ) find_program( _GPGMECONFIG_EXECUTABLE NAMES gpgme-config ) # if gpgme-config has been found if ( _GPGMECONFIG_EXECUTABLE ) message( STATUS "Found gpgme-config at ${_GPGMECONFIG_EXECUTABLE}" ) exec_program( ${_GPGMECONFIG_EXECUTABLE} ARGS --version OUTPUT_VARIABLE GPGME_VERSION ) set( _GPGME_MIN_VERSION "1.1.7" ) if ( ${GPGME_VERSION} VERSION_LESS ${_GPGME_MIN_VERSION} ) message( STATUS "The installed version of gpgme is too old: ${GPGME_VERSION} (required: >= ${_GPGME_MIN_VERSION})" ) else() message( STATUS "Found gpgme v${GPGME_VERSION}, checking for flavours..." ) exec_program( ${_GPGMECONFIG_EXECUTABLE} ARGS --libs OUTPUT_VARIABLE _gpgme_config_vanilla_libs RETURN_VALUE _ret ) if ( _ret ) set( _gpgme_config_vanilla_libs ) endif() exec_program( ${_GPGMECONFIG_EXECUTABLE} ARGS --thread=pthread --libs OUTPUT_VARIABLE _gpgme_config_pthread_libs RETURN_VALUE _ret ) if ( _ret ) set( _gpgme_config_pthread_libs ) endif() exec_program( ${_GPGMECONFIG_EXECUTABLE} ARGS --thread=pth --libs OUTPUT_VARIABLE _gpgme_config_pth_libs RETURN_VALUE _ret ) if ( _ret ) set( _gpgme_config_pth_libs ) endif() # append -lgpg-error to the list of libraries, if necessary foreach ( _flavour vanilla pthread pth ) if ( _gpgme_config_${_flavour}_libs AND NOT _gpgme_config_${_flavour}_libs MATCHES "lgpg-error" ) set( _gpgme_config_${_flavour}_libs "${_gpgme_config_${_flavour}_libs} -lgpg-error" ) endif() endforeach() if ( _gpgme_config_vanilla_libs OR _gpgme_config_pthread_libs OR _gpgme_config_pth_libs ) exec_program( ${_GPGMECONFIG_EXECUTABLE} ARGS --cflags OUTPUT_VARIABLE _GPGME_CFLAGS ) if ( _GPGME_CFLAGS ) string( REGEX REPLACE "(\r?\n)+$" " " _GPGME_CFLAGS "${_GPGME_CFLAGS}" ) string( REGEX REPLACE " *-I" ";" GPGME_INCLUDES "${_GPGME_CFLAGS}" ) endif() foreach ( _flavour vanilla pthread pth ) if ( _gpgme_config_${_flavour}_libs ) set( _gpgme_library_dirs ) set( _gpgme_library_names ) string( TOUPPER "${_flavour}" _FLAVOUR ) string( REGEX REPLACE " +" ";" _gpgme_config_${_flavour}_libs "${_gpgme_config_${_flavour}_libs}" ) foreach( _flag ${_gpgme_config_${_flavour}_libs} ) if ( "${_flag}" MATCHES "^-L" ) string( REGEX REPLACE "^-L" "" _dir "${_flag}" ) file( TO_CMAKE_PATH "${_dir}" _dir ) set( _gpgme_library_dirs ${_gpgme_library_dirs} "${_dir}" ) elseif( "${_flag}" MATCHES "^-l" ) string( REGEX REPLACE "^-l" "" _name "${_flag}" ) set( _gpgme_library_names ${_gpgme_library_names} "${_name}" ) endif() endforeach() set( GPGME_${_FLAVOUR}_FOUND true ) foreach( _name ${_gpgme_library_names} ) set( _gpgme_${_name}_lib ) # if -L options were given, look only there if ( _gpgme_library_dirs ) find_library( _gpgme_${_name}_lib NAMES ${_name} PATHS ${_gpgme_library_dirs} NO_DEFAULT_PATH ) endif() # if not found there, look in system directories if ( NOT _gpgme_${_name}_lib ) find_library( _gpgme_${_name}_lib NAMES ${_name} ) endif() # if still not found, then the whole flavour isn't found if ( NOT _gpgme_${_name}_lib ) if ( GPGME_${_FLAVOUR}_FOUND ) set( GPGME_${_FLAVOUR}_FOUND false ) set( _not_found_reason "dependant library ${_name} wasn't found" ) endif() endif() set( GPGME_${_FLAVOUR}_LIBRARIES ${GPGME_${_FLAVOUR}_LIBRARIES} "${_gpgme_${_name}_lib}" ) endforeach() #check_c_library_exists_explicit( gpgme gpgme_check_version "${_GPGME_CFLAGS}" "${GPGME_LIBRARIES}" GPGME_FOUND ) if ( GPGME_${_FLAVOUR}_FOUND ) message( STATUS " Found flavour '${_flavour}', checking whether it's usable...yes" ) else() message( STATUS " Found flavour '${_flavour}', checking whether it's usable...no" ) message( STATUS " (${_not_found_reason})" ) endif() endif() endforeach( _flavour ) # ensure that they are cached # This comment above doesn't make sense, the four following lines seem to do nothing. Alex set( GPGME_INCLUDES ${GPGME_INCLUDES} ) set( GPGME_VANILLA_LIBRARIES ${GPGME_VANILLA_LIBRARIES} ) set( GPGME_PTHREAD_LIBRARIES ${GPGME_PTHREAD_LIBRARIES} ) set( GPGME_PTH_LIBRARIES ${GPGME_PTH_LIBRARIES} ) if ( GPGME_VANILLA_FOUND OR GPGME_PTHREAD_FOUND OR GPGME_PTH_FOUND ) set( GPGME_FOUND true ) else() set( GPGME_FOUND false ) endif() endif() endif() endif() endif() # these are Windows-only: set( GPGME_GLIB_FOUND false ) set( GPGME_QT_FOUND false ) set( HAVE_GPGME_GLIB 0 ) set( HAVE_GPGME_QT 0 ) macro_bool_to_01( GPGME_FOUND HAVE_GPGME ) macro_bool_to_01( GPGME_VANILLA_FOUND HAVE_GPGME_VANILLA ) macro_bool_to_01( GPGME_PTHREAD_FOUND HAVE_GPGME_PTHREAD ) macro_bool_to_01( GPGME_PTH_FOUND HAVE_GPGME_PTH ) endif() # WIN32 | Unix set( _gpgme_flavours "" ) if ( GPGME_VANILLA_FOUND ) set( _gpgme_flavours "${_gpgme_flavours} vanilla" ) endif() if ( GPGME_GLIB_FOUND ) set( _gpgme_flavours "${_gpgme_flavours} Glib" ) endif() if ( GPGME_QT_FOUND ) set( _gpgme_flavours "${_gpgme_flavours} Qt" ) endif() if ( GPGME_PTHREAD_FOUND ) set( _gpgme_flavours "${_gpgme_flavours} pthread" ) endif() if ( GPGME_PTH_FOUND ) set( _gpgme_flavours "${_gpgme_flavours} pth" ) endif() # determine the library in one of the found flavours, can be reused e.g. by FindQgpgme.cmake, Alex foreach(_currentFlavour vanilla glib qt pth pthread) if(NOT GPGME_LIBRARY_DIR) get_filename_component(GPGME_LIBRARY_DIR "${_gpgme_${_currentFlavour}_lib}" PATH) endif() endforeach() if ( NOT Gpgme_FIND_QUIETLY ) if ( GPGME_FOUND ) message( STATUS "Usable gpgme flavours found: ${_gpgme_flavours}" ) else() message( STATUS "No usable gpgme flavours found." ) endif() macro_bool_to_bool( Gpgme_FIND_REQUIRED _req ) if ( WIN32 ) set( _gpgme_homepage "http://www.gpg4win.org" ) else() set( _gpgme_homepage "http://www.gnupg.org/related_software/gpgme" ) endif() set_package_properties(Gpgme PROPERTIES DESCRIPTION "GNU Privacy Guard (GPG/PGP) support" URL ${_gpgme_homepage} PURPOSE "Necessary to compile many PIM applications, including KMail") else() if ( Gpgme_FIND_REQUIRED AND NOT GPGME_FOUND ) message( FATAL_ERROR "Did not find GPGME" ) endif() endif() set( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS_gpgme_saved ) fwknop-gui-1.3-release/cmake/Modules/FindLibFko.cmake000066400000000000000000000006341275215015200225250ustar00rootroot00000000000000# Try to find Libfko find_path(LIBFKO_INCLUDE_DIR fko.h) find_library(LIBFKO_LIBRARY NAMES fko libfko) set(LIBFKO_LIBRARIES ${LIBFKO_LIBRARY} ) set(LIBFKO_INCLUDE_DIRS ${LIBFKO_INCLUDE_DIR} ) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(LibFko DEFAULT_MSG LIBFKO_LIBRARY LIBFKO_INCLUDE_DIR) mark_as_advanced(LIBFKO_INCLUDE_DIR LIBFKO_LIBRARY ) fwknop-gui-1.3-release/cmake/Modules/FindLibQrencode.cmake000066400000000000000000000031051275215015200235420ustar00rootroot00000000000000# - Try to find the LibQrencode QRCode generator library, # written by Jim Evins, LGPLv3+ # Once done this will define # # LIBQRENCODE_FOUND - System has LibQrencode # LIBQRENCODE_INCLUDE_DIR - The LibQrencode include directory # LIBQRENCODE_LIBRARIES - The libraries needed to use LibQrencode # LIBQRENCODE_DEFINITIONS - Compiler switches required for using LibQrencode # LIBQRENCODE_XMLLINT_EXECUTABLE - The XML checking tool xmllint coming with LibQrencode # LIBQRENCODE_VERSION_STRING - the version of LibQrencode found # use pkg-config to get the directories and then use these values with find_path() and find_library() find_package(PkgConfig QUIET) PKG_CHECK_MODULES(PC_LIBQRENCODE QUIET libqrencode) set(LIBQRENCODE_DEFINITIONS ${PC_LIBQRENCODE_CFLAGS_OTHER}) find_path(LIBQRENCODE_INCLUDE_DIR NAMES qrencode.h HINTS ${PC_LIBQRENCODE_INCLUDEDIR} ${PC_LIBQRENCODE_INCLUDE_DIRS} PATH_SUFFIXES libqrencode ) find_library(LIBQRENCODE_LIBRARIES NAMES qrencode libqrencode HINTS ${PC_LIBQRENCODE_LIBDIR} ${PC_LIBQRENCODE_LIBRARY_DIRS} ) if(PC_LIBQRENCODE_VERSION) set(LIBQRENCODE_VERSION_STRING ${PC_LIBQRENCODE_VERSION}) endif() # handle the QUIETLY and REQUIRED arguments and set LIBQRENCODE_FOUND to TRUE if # all listed variables are TRUE include(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibQrencode REQUIRED_VARS LIBQRENCODE_LIBRARIES LIBQRENCODE_INCLUDE_DIR VERSION_VAR LIBQRENCODE_VERSION_STRING) mark_as_advanced(LIBQRENCODE_INCLUDE_DIR LIBQRENCODE_LIBRARIES) fwknop-gui-1.3-release/configs.cpp000066400000000000000000000457101275215015200172240ustar00rootroot00000000000000/* configs.cpp * Copyright (C) 2016 Jonathan Bennett * Defines the central class of fwknop-gui, holds the SPA data * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "configs.h" CURLcode curl_read(const std::string& url, std::ostream& os, long timeout = 30); void Config::getAllConfigs(wxArrayString * configs, wxFileConfig *configFile) { configFile->SetPath(wxT("/")); int numGroups = configFile->GetNumberOfGroups(); wxString tmpGroup; long tmpindex; configs->Empty(); if (numGroups > 0 ) { configFile->GetFirstGroup(tmpGroup, tmpindex); configs->Insert(tmpGroup,0); numGroups--; while(numGroups > 0) { numGroups--; configFile->GetNextGroup(tmpGroup,tmpindex ); configs->Insert(tmpGroup,0); } } configs->Sort(); } wxString Config::validateConfig() { wxRegEx findIP( wxT("^(([0-9]{1}|[0-9]{2}|[0-1][0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]{1}|[0-9]{2}|[0-1][0-9]{2}|2[0-4][0-9]|25[0-5])$")); wxRegEx b64Validate( wxT("^[A-Za-z0-9+/]+={0,3}$")); wxRegEx portStringValidate( wxT("(tcp|udp)/+[0-9]")); if (this->NICK_NAME.CmpNoCase(wxEmptyString) == 0 ) { return wxT("You must choose a Nickname."); } else if (this->SERVER_IP.Find(_(".")) == wxNOT_FOUND) { //check for valid ip or hostname -- Relex this check greatly and throw the error when trying to send. return wxT("You must supply a valid server address."); } else if((wxAtoi(this->SERVER_PORT) < 1 || wxAtoi(this->SERVER_PORT) > 65535) && this->SERVER_PORT.CmpNoCase(wxT("Random")) != 0){ return wxT("Invalid Server Port"); //check server port is valid port or random } else if (this->LEGACY == true && this->HMAC.CmpNoCase(wxEmptyString) != 0) {//check no hmac with legacy return wxT("You cannot use an HMAC in legacy mode."); } else if (this->KEY_BASE64 && wxStrlen(this->KEY) % 4 != 0) { //check base64 must have a multiple of 4 length return wxT("Invalid Base64 Key Length."); } else if (this->KEY_BASE64 && !b64Validate.Matches(this->KEY)) { // looks for disallowed b64 characters return wxT("Invalid Base64 Key."); } else if (this->HMAC_BASE64 && wxStrlen(this->HMAC) % 4 != 0) { //check base64 must have a multiple of 4 length return wxT("Invalid Base64 HMAC Length."); } else if (this->HMAC_BASE64 && !b64Validate.Matches(this->HMAC)) { // looks for disallowed b64 characters return wxT("Invalid Base64 HMAC."); } else if (!(this->MESS_TYPE.CmpNoCase(wxT("Server Command")) == 0 || portStringValidate.Matches(this->PORTS))) { //If not a server command, make sure the port string is valid return wxT("Invalid Port string. Must look like tcp/22."); } else if (!(this->ACCESS_IP.CmpNoCase(wxT("Resolve IP")) == 0 || this->ACCESS_IP.CmpNoCase(wxT("Source IP")) == 0 || this->ACCESS_IP.CmpNoCase(wxT("Prompt IP")) == 0 || findIP.Matches(this->ACCESS_IP) )) { //if specifying ip, make sure is valid return wxT("Invalid IP to allow."); // Have to have a valid ip to allow, if using allow ip } else if (this->MESS_TYPE.CmpNoCase(wxT("Nat Access")) == 0 && !(0 < wxAtoi(NAT_PORT) && wxAtoi(NAT_PORT) < 65536)) { //NAT_IP must be a valid ip, and NAT_PORT must be a valid port return wxT("Invalid NAT port."); } else if (!(this->DIGEST_TYPE.CmpNoCase(wxT("MD5")) == 0 || this->DIGEST_TYPE.CmpNoCase(wxT("SHA1")) == 0 || this->DIGEST_TYPE.CmpNoCase(wxT("SHA256")) == 0 || this->DIGEST_TYPE.CmpNoCase(wxT("SHA384")) == 0 || this->DIGEST_TYPE.CmpNoCase(wxT("SHA512")) == 0)) { return wxT("Invalid SPA digest type."); } else if (!(this->HMAC_TYPE.CmpNoCase(wxT("MD5")) == 0 || this->HMAC_TYPE.CmpNoCase(wxT("SHA1")) == 0 || this->HMAC_TYPE.CmpNoCase(wxT("SHA256")) == 0 || this->HMAC_TYPE.CmpNoCase(wxT("SHA384")) == 0 || this->HMAC_TYPE.CmpNoCase(wxT("SHA512")) == 0)) { return wxT("Invalid HMAC digest type."); } else { //Could check for valid looking gpg keys if enabled return wxT("valid"); } } void Config::saveConfig(wxFileConfig *configFile) { configFile->SetPath(wxT("/") + this->NICK_NAME); configFile->Write(wxT("SERVER_IP"), this->SERVER_IP); configFile->Write(wxT("LEGACY"), this->LEGACY); configFile->Write(wxT("SERVER_PORT"), this->SERVER_PORT); configFile->Write(wxT("PROTOCOL"), this->PROTOCOL); configFile->Write(wxT("KEY"), this->KEY); configFile->Write(wxT("KEY_BASE64"), this->KEY_BASE64); configFile->Write(wxT("HMAC"), this->HMAC); configFile->Write(wxT("HMAC_BASE64"), this->HMAC_BASE64); configFile->Write(wxT("MESS_TYPE"), this->MESS_TYPE); configFile->Write(wxT("ACCESS_IP"), this->ACCESS_IP); configFile->Write(wxT("PORTS"), this->PORTS); configFile->Write(wxT("SERVER_TIMEOUT"), this->SERVER_TIMEOUT); configFile->Write(wxT("NAT_IP"), this->NAT_IP); configFile->Write(wxT("NAT_PORT"), this->NAT_PORT); configFile->Write(wxT("SERVER_CMD"), this->SERVER_CMD); configFile->Write(wxT("DIGEST_TYPE"), this->DIGEST_TYPE); configFile->Write(wxT("HMAC_TYPE"), this->HMAC_TYPE); configFile->Write(wxT("KEEP_OPEN"), this->KEEP_OPEN); configFile->Write(wxT("USE_GPG_CRYPT"), this->USE_GPG_CRYPT); configFile->Write(wxT("GPG_CRYPT_ID"), this->GPG_CRYPT_ID); configFile->Write(wxT("GPG_SIG_ID"), this->GPG_SIG_ID); configFile->Flush(); } void Config::loadConfig(wxString Nick, wxFileConfig *configFile) { configFile->SetPath(wxT("/") + Nick); this->NICK_NAME = Nick; this->SERVER_IP = configFile->Read(wxT("SERVER_IP")); configFile->Read(wxT("LEGACY"), &this->LEGACY, false); this->SERVER_PORT = configFile->Read(wxT("SERVER_PORT")); this->PROTOCOL = configFile->Read(wxT("PROTOCOL")); this->KEY = configFile->Read(wxT("KEY")); configFile->Read(wxT("KEY_BASE64"), &this->KEY_BASE64, false); this->HMAC = configFile->Read(wxT("HMAC")); configFile->Read(wxT("HMAC_BASE64"), &this->HMAC_BASE64, false); this->MESS_TYPE = configFile->Read(wxT("MESS_TYPE")); this->ACCESS_IP = configFile->Read(wxT("ACCESS_IP")); this->PORTS = configFile->Read(wxT("PORTS")); this->SERVER_TIMEOUT = configFile->Read(wxT("SERVER_TIMEOUT")); this->NAT_IP = configFile->Read(wxT("NAT_IP")); this->NAT_PORT = configFile->Read(wxT("NAT_PORT")); this->SERVER_CMD = configFile->Read(wxT("SERVER_CMD")); this->DIGEST_TYPE = configFile->Read(wxT("DIGEST_TYPE"), wxT("SHA256")); this->HMAC_TYPE = configFile->Read(wxT("HMAC_TYPE"), wxT("SHA256")); configFile->Read(wxT("KEEP_OPEN"), &this->KEEP_OPEN, false); configFile->Read(wxT("USE_GPG_CRYPT"), &this->USE_GPG_CRYPT, false); this->GPG_CRYPT_ID = configFile->Read(wxT("GPG_CRYPT_ID"), wxEmptyString); this->GPG_SIG_ID = configFile->Read(wxT("GPG_SIG_ID"), wxEmptyString); } void Config::defaultConfig() { this->NICK_NAME = wxEmptyString; this->SERVER_IP = wxEmptyString; this->LEGACY = false; this->SERVER_PORT = wxT("62201"); this->PROTOCOL = wxT("UDP"); this->KEY = wxEmptyString; this->KEY_BASE64 = false; this->HMAC = wxEmptyString; this->HMAC_BASE64 = false; this->MESS_TYPE = wxT("Open Port"); this->ACCESS_IP = wxT("Resolve IP"); this->PORTS = wxT("tcp/22"); this->SERVER_TIMEOUT = wxT("60"); this->NAT_IP = wxEmptyString; this->NAT_PORT = wxEmptyString; this->SERVER_CMD = wxEmptyString; this->DIGEST_TYPE = wxT("SHA256"); this->HMAC_TYPE = wxT("SHA256"); this->KEEP_OPEN = false; this->USE_GPG_CRYPT = false; this->GPG_CRYPT_ID = wxEmptyString; this->GPG_SIG_ID = wxEmptyString; } wxString Config::gen_SPA(wxString ip_resolver_url, wxString gpgEngine, wxString gpgHomeFolder, bool debug) { CURLcode curl_Res; fko_ctx_t ctx; fwknop_options_t opts; int key_len = 0; int res; int hmac_str_len = 0; short message_type = FKO_CLIENT_TIMEOUT_NAT_ACCESS_MSG; short digest_type = FKO_DIGEST_SHA256; short hmac_type = FKO_HMAC_SHA256; char key_str[129] = {0}, hmac_str[129] = {0}; char spa_msg[256] = {0}; // char spa_buf[4096] = {0}; // char * spa_buf_ptr; // char crypt_buf[4096] = {0}; char nat_access_str[25] = {0}; // char * hmac_buf; // char * spa_digest_ptr; memset(&opts, 0, sizeof(fwknop_options_t)); if (this->KEY.IsEmpty() && !this->USE_GPG_CRYPT) return _("Key cannot be blank!"); wxBusyInfo wait(_("Please wait, working...")); if (this->SERVER_PORT.CmpNoCase(wxT("random")) == 0) { srand((int)wxGetLocalTime()); this->SERVER_PORT.Empty(); this->SERVER_PORT << (rand()%55535 + 10000); // do this better, this isn't a horribly good random function } if (this->ACCESS_IP.CmpNoCase(wxT("Source IP")) == 0) this->ACCESS_IP = wxT("0.0.0.0"); else if (this->ACCESS_IP.CmpNoCase(wxT("Resolve IP")) == 0) { std::ostringstream oss; curl_Res = curl_read(std::string(ip_resolver_url.mb_str()), oss); if (curl_Res == CURLE_OK) { wxString result_tmp = wxString::FromUTF8(oss.str().c_str()); wxRegEx findIP( wxT("(([0-9]{1}|[0-9]{2}|[0-1][0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]{1}|[0-9]{2}|[0-1][0-9]{2}|2[0-4][0-9]|25[0-5])")); if (!findIP.Matches(result_tmp)) return _("Unable to resolve our IP!"); this->ACCESS_IP = findIP.GetMatch(result_tmp); } else return _("Libcurl returned the error: ") + wxString::FromUTF8(curl_easy_strerror(curl_Res)); } //end resolve ip if (fko_new(&ctx) != FKO_SUCCESS) return _("Could not get new FKO context"); if (USE_GPG_CRYPT) { fko_set_spa_encryption_type(ctx, FKO_ENCRYPTION_GPG); fko_set_gpg_exe(ctx, gpgEngine.mb_str()); fko_set_gpg_home_dir(ctx, gpgHomeFolder.mb_str()); fko_set_gpg_recipient(ctx, GPG_CRYPT_ID.mb_str()); if (GPG_SIG_ID.CmpNoCase(_("None")) != 0) fko_set_gpg_signer(ctx, GPG_SIG_ID.mb_str()); fko_set_spa_encryption_mode(ctx, FKO_ENC_MODE_ASYMMETRIC); } else { if (this->KEY_BASE64) { key_len = fko_base64_decode(this->KEY.mb_str(), (unsigned char *)key_str); } else { strncpy(key_str, (const char*)this->KEY.mb_str(wxConvUTF8), 128); key_len = (int)strlen(key_str); } } if (this->HMAC_BASE64) { hmac_str_len = fko_base64_decode(this->HMAC.mb_str(), (unsigned char *)hmac_str); } else { strncpy(hmac_str, (const char*)this->HMAC.mb_str(wxConvUTF8), 128); hmac_str_len = (int)strlen(hmac_str); } if (MESS_TYPE.CmpNoCase(wxT("Server Command")) == 0) { message_type = FKO_COMMAND_MSG; if (fko_set_spa_message_type(ctx, message_type) != FKO_SUCCESS) return _("Could not set message type"); snprintf(spa_msg, 256, "%s,%s", (const char*)this->ACCESS_IP.mb_str(wxConvUTF8), (const char*)this->SERVER_CMD.mb_str(wxConvUTF8)); res = fko_set_spa_message(ctx, spa_msg); if (res != FKO_SUCCESS) return _("Could not set command message"); } else { if (fko_set_spa_client_timeout(ctx, wxAtoi(this->SERVER_TIMEOUT)) != FKO_SUCCESS) return _("Could not set SPA timeout"); snprintf(spa_msg, 256, "%s,%s", (const char*)this->ACCESS_IP.mb_str(wxConvUTF8), (const char*)this->PORTS.mb_str(wxConvUTF8)); if (fko_set_spa_message(ctx, spa_msg) != FKO_SUCCESS) return _("Could not set SPA Message"); } if (this->LEGACY) { // technically should trim hmac keys if (fko_set_spa_encryption_mode(ctx, FKO_ENC_MODE_CBC_LEGACY_IV) != FKO_SUCCESS) return _("Could not set Legacy mode."); } if (!this->HMAC.IsEmpty()){ if (this->HMAC_TYPE.CmpNoCase(wxT("MD5"))==0) hmac_type = FKO_HMAC_MD5; else if (this->HMAC_TYPE.CmpNoCase(wxT("SHA1"))==0) hmac_type = FKO_HMAC_SHA1; else if (this->HMAC_TYPE.CmpNoCase(wxT("SHA256"))==0) hmac_type = FKO_HMAC_SHA256; else if (this->HMAC_TYPE.CmpNoCase(wxT("SHA384"))==0) hmac_type = FKO_HMAC_SHA384; else if (this->HMAC_TYPE.CmpNoCase(wxT("SHA512"))==0) hmac_type = FKO_HMAC_SHA512; if (fko_set_spa_hmac_type(ctx, hmac_type) != FKO_SUCCESS) return _("Could not set HMAC type."); } if (this->MESS_TYPE.CmpNoCase(wxT("Nat Access")) == 0) { sprintf(nat_access_str, "%s,%s", (const char*)this->NAT_IP.mb_str(wxConvUTF8), (const char*)this->NAT_PORT.mb_str(wxConvUTF8)); if (fko_set_spa_nat_access(ctx, nat_access_str) != FKO_SUCCESS) return _("Could not set nat access string."); } else if (this->MESS_TYPE.CmpNoCase(wxT("Local Nat Access")) == 0) { message_type = FKO_CLIENT_TIMEOUT_LOCAL_NAT_ACCESS_MSG; if (fko_set_spa_message_type(ctx, message_type) != FKO_SUCCESS) return _("Chould not set message type"); sprintf(nat_access_str, "%s,%s", (const char*)this->SERVER_IP.mb_str(wxConvUTF8), (const char*)this->NAT_PORT.mb_str(wxConvUTF8)); if (fko_set_spa_nat_access(ctx, nat_access_str) != FKO_SUCCESS) return _("Could not set nat access string."); } if (this->DIGEST_TYPE.CmpNoCase(wxT("MD5"))==0) digest_type = FKO_DIGEST_MD5; else if (this->DIGEST_TYPE.CmpNoCase(wxT("SHA1"))==0) digest_type = FKO_DIGEST_SHA1; else if (this->DIGEST_TYPE.CmpNoCase(wxT("SHA256"))==0) digest_type = FKO_DIGEST_SHA256; else if (this->DIGEST_TYPE.CmpNoCase(wxT("SHA384"))==0) digest_type = FKO_DIGEST_SHA384; else if (this->DIGEST_TYPE.CmpNoCase(wxT("SHA512"))==0) digest_type = FKO_DIGEST_SHA512; if (fko_set_spa_digest_type(ctx, digest_type) != FKO_SUCCESS) return _("Could not set SPA digest type."); if (fko_spa_data_final(ctx, key_str, key_len, hmac_str, hmac_str_len) != FKO_SUCCESS) return _("Could not generate SPA data."); if (fko_get_spa_data(ctx, &opts.spa_data) != FKO_SUCCESS) return _("Could not retrieve SPA data."); // if (!USE_GPG_CRYPT) { this->SPA_STRING = wxString::FromUTF8(opts.spa_data); /*} else { //could retain this for libfko without gpg support fko_get_encoded_data(ctx, &spa_buf_ptr); fko_get_spa_digest(ctx, &spa_digest_ptr); sprintf(spa_buf,"%s:%s", spa_buf_ptr, spa_digest_ptr); ourGPG->encryptAndSign(GPG_CRYPT_ID, GPG_SIG_ID, spa_buf, crypt_buf); fko_set_spa_data(ctx, crypt_buf); fko_set_spa_hmac(ctx, hmac_str, hmac_str_len); fko_get_spa_hmac(ctx, &hmac_buf); strcat(crypt_buf, hmac_buf); this->SPA_STRING = wxString::FromUTF8(crypt_buf + 2); }*/ if (debug) { wxTextEntryDialog *debugMessage = new wxTextEntryDialog(NULL, _("Debug info"), _("Debug info"), "Source IP: " + this->ACCESS_IP +"\n" + "SPA String: " + this->SPA_STRING, wxOK | wxTE_MULTILINE ); debugMessage->SetSize(620, 320); debugMessage->ShowModal(); debugMessage->Destroy(); } return _("Success"); } wxString Config::send_SPA(wxIPV4address *serverAddr) { //wxGetTextFromUser(wxEmptyString, wxEmptyString, this->SPA_STRING);//Make this part of debug if (this->PROTOCOL.CmpNoCase(wxT("UDP")) == 0) { wxIPV4address ourAddr; ourAddr.AnyAddress(); ourAddr.Service(0); if (serverAddr->Service(this->SERVER_PORT)) { wxDatagramSocket *m_socket; m_socket = new wxDatagramSocket(ourAddr, wxSOCKET_NOWAIT); m_socket->SendTo(*serverAddr, this->SPA_STRING.mb_str(), this->SPA_STRING.Len()); m_socket->WaitForWrite(); if (m_socket->Error()) { m_socket->Destroy(); return(_("Could not send knock: Error sending.")); } else { m_socket->Destroy(); return(_("Knock sent successfully.")); } } else return(_("Could not send knock: could not set server port.")); } else if (this->PROTOCOL.CmpNoCase(wxT("TCP")) == 0) { wxIPV4address ourAddr; ourAddr.AnyAddress(); ourAddr.Service(0); if (serverAddr->Service(this->SERVER_PORT)) { wxSocketClient *tcp_socket = new wxSocketClient; tcp_socket->Connect(*serverAddr); tcp_socket->WaitForWrite(); tcp_socket->Write(this->SPA_STRING.mb_str(), this->SPA_STRING.Len()); tcp_socket->WaitForWrite(); if (tcp_socket->Error()) { tcp_socket->Destroy(); return(_("Could not send knock: Error sending.")); } else { tcp_socket->Destroy(); return(_("Knock sent successfully.")); } } else return(_("Could not send knock: could not set server address.")); } else if (this->PROTOCOL.CmpNoCase(wxT("HTTP")) == 0) { wxHTTP *http_serv = new wxHTTP; http_serv->Connect(this->SERVER_IP, wxAtoi(this->SERVER_PORT)); wxInputStream *tmp_stream; tmp_stream = http_serv->GetInputStream(this->SPA_STRING); delete tmp_stream; http_serv->Destroy(); return(_("Knock sent successfully.")); } else return(_("Not implemented yet")); return(_("Unknown error")); } static size_t data_write(void* buf, size_t size, size_t nmemb, void* userp) { if(userp) { std::ostream& os = *static_cast(userp); std::streamsize len = size * nmemb; if(os.write(static_cast(buf), len)) return len; } return 0; } /** * timeout is in seconds **/ CURLcode curl_read(const std::string& url, std::ostream& os, long timeout) { CURLcode code(CURLE_FAILED_INIT); CURL* curl = curl_easy_init(); if(curl) { if(CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &data_write)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_FILE, &os)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout)) #ifdef __WIN32__ && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_CAINFO, "./ca-bundle.crt")) #endif && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_URL, url.c_str()))) { code = curl_easy_perform(curl); } curl_easy_cleanup(curl); } return code; } fwknop-gui-1.3-release/configs.h000066400000000000000000000052041275215015200166630ustar00rootroot00000000000000/* configs.h * Copyright (C) 2016 Jonathan Bennett * Header file for configs.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef FWKNOP_CONFIGS #define FWKNOP_CONFIGS #include #include #include #include #include #include #include #include #include #include #include #include #include "gpgme_wrapper.h" class Config { public: wxString NICK_NAME; wxString SERVER_IP; bool LEGACY; wxString SERVER_PORT; wxString PROTOCOL; wxString KEY; bool KEY_BASE64; wxString HMAC; bool HMAC_BASE64; wxString MESS_TYPE; wxString ACCESS_IP; wxString PORTS; wxString SERVER_TIMEOUT; wxString NAT_IP; wxString NAT_PORT; wxString SERVER_CMD; wxString SPA_STRING; wxString DIGEST_TYPE; wxString HMAC_TYPE; bool KEEP_OPEN; bool USE_GPG_CRYPT; wxString GPG_CRYPT_ID; wxString GPG_SIG_ID; void getAllConfigs(wxArrayString * configs, wxFileConfig *configFile); wxString validateConfig(); void saveConfig(wxFileConfig *configFile); void loadConfig(wxString Nick, wxFileConfig *configFile); void defaultConfig(); wxString gen_SPA(wxString ip_resolver_url, wxString gpgEngine, wxString gpgHomeFolder, bool debug); // returns status. wxString send_SPA(wxIPV4address *serverAddr); private: typedef struct fwknop_options { char *spa_server_str; unsigned int spa_dst_port; char *spa_data; //nat access options // am I using these? char nat_access_str[1024]; int nat_local; int nat_port; int nat_rand_port; char server_command[1024]; } fwknop_options_t; }; #endif fwknop-gui-1.3-release/fwknop-gui.8.asciidoc000066400000000000000000000013451275215015200210200ustar00rootroot00000000000000:man source: Fwknop-gui Client :man manual: Fwknop-gui Client FWKNOP-GUI(8) ============= NAME ---- fwknop-gui - Firewall Knock Operator Graphical User Interface SYNOPSIS -------- *fwknop-gui* DESCRIPTION ----------- *fwknop-gui* provides a graphical interface to send SPA packets. Supports AES and GPG encrypted SPA packets. BUGS ---- To report a bug, please visit https://github.com/jp-bennett/fwknop-gui SEE ALSO -------- fwknop(8), fwknopd(8) More information on Single Packet Authorization can be found in the paper ``Single Packet Authorization with fwknop'' available at 'http://www.cipherdyne.org/fwknop/docs/SPA.html'. AUTHORS ------- The primary developer of *fwknop-gui* is Jonathan Bennett . fwknop-gui-1.3-release/fwknop-gui.appdata.xml000066400000000000000000000020231275215015200212770ustar00rootroot00000000000000 fwknop-gui.desktop CC0-1.0 GPL-3.0+ Fwknop-gui Sends SPA packets

Fwknop-gui is a user-friendly gui interface for sending SPA packets, intended to talk the fwknop server application.

Also supported is qr code exporting, and a rudimentary config wizard for fwknop.

https://incomsystems.biz/fwknop-gui/media/fwknop-gui-screenshot1.png https://incomsystems.biz/fwknop-gui/media/fwknop-gui-screenshot2.png https://incomsystems.biz/fwknop-gui jbennett@incomsystems.biz
fwknop-gui-1.3-release/fwknop-gui.desktop000066400000000000000000000002441275215015200205420ustar00rootroot00000000000000[Desktop Entry] Name=Fwknop-gui GenericName=fwknop-gui Comment=send spa packets Exec=fwknop-gui Icon=fwknop-gui Terminal=false Type=Application Categories=Network; fwknop-gui-1.3-release/fwknop-gui.png000066400000000000000000004637341275215015200176760ustar00rootroot00000000000000‰PNG  IHDRôxÔúbKGDÿÿÿ ½§“ pHYs  šœtIMEß4d}; IDATxÚì½y´fWYçÿÙã9ç}ï{o*HP4( „IAQÀF»•¦1¦qÑ-¢ÝüT¤¹4þšßb9¥í,!H·ˆ¸ ‚‚ &¨ ‚£áf¬áÞw8çìñ÷Çyë%†J IUÝýYë¬PU·.·ž½ßý}ösžAP8nòÍ× žÿ`Ä;f¹X£p29°>û—Ï>`/°Ø ¬-ŸU`eùŒ–O TËÇP€ÄÑ­ $ ð@¿|:`±|fËg Ø\>‡CÀAà6àVàÖõÉ´¬Zá.Ÿ¡O_×~q1îD1ÁqnÜßüÄ ~¹¢p<â~p!pïås/ààp>pÞRÔÏ$fÀMÀÀðeààúåóÅõÉ-eõ å<-À™»QnÀ%D¼cVŒQ¸3‘?ÿ\ \»±>Ù(»¦Døk{cà4Ü ¿órÄ%¯(†(Ü^èϾ x(ðàÁÀ72„ê ÇÎaàà3Àߟ>µ±>¹¹˜¦œ³…âܳ›ò‡ï…øýŠ!v¶Øß¸øVà[€‡1„î §Ž/Ÿ>|øØÆúäóÅ,å¼-àÔoÄw¾ñ}Ï/†Øyb¿xäòùvàÛ€s‹eN nþøkà#ÀG6Ö'‡‹YÊù[(ÀÉÛ|/z ⲫ‹!vÎíþ1Ëç;€o.V9£ø;ீ««K” œÃ…â߆»æÃˆo|T1ÄÙ-ø÷¿|ܯXå¬âóÀØXŸ\WLRÎåBqî|“]þ"Ä /+†8ûxð]Àõ ;‡k€÷ïÞ³±>Ù*&)çsq _Ù\%ñälý‹€ï¾xB±Háv¼ø3àÝë“s”sº8;uC}äJÄ#ŸZ qvˆþSï¾—¡æ¾ð5xÎáó3/}%ÁæÍ7²²?9e¾õ5»vŠ ®þxçÆúäʲ#ʹ]€²‰~éyˆÿúº²Î\Áÿx:ð4μz§”wW¿Âüf\×ãœc:1ÝÜDJÅ¡C‡Ø<|ˆÕÕ5dbb×î]¤ˆ.¸àLSsιçóÌw=Š÷ÿÇø§Ošçü)g³ÉfÀŸïþxc}2/»¨œßÅ87Ï¿?€xsi@vŠþøà˧D²þxè;øDlY,f„ØÓµ)£ÑˆÞyÆã1ÆÚy‹Õï{\èA€Ò—!&¾xÃ÷¾ð>ìÝ{“•þÝgÿÛââ7~ÝYDo[>Tæ”s¼8gÆùä{|Yý3Kô5ðÌåóƒEôï˜ýèM\ûÇ 7\RŠä£ZC¤k{v­íÂÌs¤”hc°µåÈÖa¼ïÐÖ,ÚŽµÝûè{ÏÍ7ÝJ žûßç>¸èyÂãŸÌ#_¿cÚ¶fà­À[€·l¬OBÙmå\/À™¶I®x)â¹ÿoYù3GøŸü»å3.¹cžsèÅ<ù©Oçú/] ²èZ.¸àfÓçìÙKtçb4õ ›G¶0¦âÜ}ûøàûßÏ{ ª ûÖoá‡ÞÿÄfî9ðÀl¬OÞUv_9ß‹p&lŽ>qùG˪Ÿþ¢ÿMÀ³€a˜šW¸ÞþíÎßßt\pÞù¬¬­Qf‹9ZbÌ‘ÑZ™àz*kA$\×a­¦÷‘f<¦o[æó9'ŒÖä˜1¦Æ*Ë|ÑBÈô}ËhÜpèàA"‘Éê„‹‰ÇnþÄN4ÿ7¿·±>ùTÙåœ/ÀiHü.Pï- ~‹~ üGàÙ y _ƒ>çz>sÍ'¹åË7ÑT5»×Ö˜Íçä,è½gï¾},¼ÃÅŒT¥"G¬Õ¤”DbôxçQÒpèàa¾î^8|èMm‰>¼GD‰ÑïV*6·³2qÛÁ[iVF̺Áaxø#Ã3ÿââ½$Àïÿwc}Ò•ZÎûâÜÓÞàUoC\üŒ²Ò§¯ðð£Kñ‹|m>üc·q×>Ï ×_‹#««k8Èd&£1)&H;j˜öJHBŒTuE ¥51º®CHAe-®ï‘J‘RdÑuC e¬Ph!.к¥A à{¬µÜtÓ˜ÊpÑ#Í¿û‹Çîô%ZÿxÃÆúä¯ÊŽ-çqî‰ÅÍK—¾º¬òé'úx.ðcÀ£‹Eîoþγ˜m²ñ¥ëصoÞ'ª¦f6Ÿ³ºº 1±˜ÍÙµºÊ¢ëˆBÐ4 )FrÎø¨ëšCnß‘‰)"• m[´ÖÔÆâ-ý¢% ´-9FRð(¥8tøMSqË¡Ûxæ»>ÌÅO|gY¨¯®ØXŸ¤bޢŏ;ý§.FüÚUe…O/á ð|àyÀžb‘»Î›æË_ú"矻”3R+”ÑÌ ¬µ4¶Âjƒ–í?f°Ö’b®§í„@+V ï<)'êºÂÇ0T¤Ä¢ëÈ)¼G ‰Ê‚(  %$F)‚ëÙÚÚb÷îÝ,º9³nÁh¼Â“žüoùŽ×ï/ ö¯^»±>¹¶˜£èAqNÕb?}ñŽYYÝÓGøŸ \ÊPÂW8N>úÜ[ùô§>Á­ocm²‚ˆžYÛ²ºkZkœwX¥©mEôž"1DlUcÄZKß÷Xkp½GHÖŠét c,Új|ïÐÆR"†€Ì •¢óŽ$À(Íts%çbkºEU²’ÜrÛ­ì^;—'<ø"÷Þ‹ÊÂ}5o^³±>ùóbŠ¢ Å8IÄÏ u¿o*«zúÿ/ʯ“Àëþç,úm×2)ƒhcpÁcì ØZ‚k{F£}×£¥&ÆH]×tm‹6šàB šfÄææ&¶²øàPJ}À{ÖzÈ ÈCä:†Hç=FiH‰¾] ”"„€©4w´}‡£G¼lã’²pÿ:~sc}ò†bŠ»Ñ¸îÓˆû>´âlrfï|=+ß÷ceEïyѯ.ŸÒ‹ÿ$ñÞ/ý$Ÿ}Ê™/ŒVÆŒª·pôÁ³²:¦÷ýäW*£I>¢• „HNcd²²BÛu(¥È9c™Î¦kÈd¤¤”0J“r&Ä0ôH‰|4_ grLh)ésRJ¤‰)R¯Œ)"…essÊž}ûøoÿø#eïœë€ËËKõÀÝä¼ïMˆ'–}yV8Ÿ~å¥<ôe¯)»úžþýÀOÿØU,ròøØ¥›|êcá–ƒ·ÒŒ„’È,QÙ€ ÁGÇhªXääóÆGþ7Ý|#.víYC*Ep +*¦‹9+«+ AjH1`µ¢ïTÆ‚˜óùœ¦©·¿§µm»@JEžºiðÁCJÈ,Á/#´")Ảä<J}ßc”>œBóP&(”D)Cß{|Œ4£Oø·ðØRp¬Dà2à²õÉõŧРxù3¯x[qNcäíD¿ˆÿé#ü÷^ ü—bSxûÁŸþøßpèðmH)©*ƒT© Þ'¼H%H1°oß‚wH2‹vNmìp‹×–®íÐJ"„$¤¡ x1ÈJ3kÔÆb´¥-€w—"Õ¨fÖÎ1jhd´$gï:´ËÈAÂ÷=1F\„<1®ïÙ¿ÿ\^üÙ’zü:ð«ë“ëŠ)N‘ðÜ#®øLqN㟩ÿé#ü?S„ÿîãµ77Ý´AS[š¦A¶Ÿ)„¡³_ˆŒÇ#R òÐéOdbˆhmpΑóÐ8猔ÃÍ=„@N™>;¢Êˆ$¨LC­-‹Ù2äiûd¦iV™w!ERŽ3ÑrðX¡ˆÞA=fî#®oÉ>°:Záçn,9:'èüòÆúä‹Å§À xjƒ¸²-Àiøsñ?=„ÿ\à%ÀOkÜ}¼ñqWsó£X7¤”X,†Ìû•ÉnúvNÊmÔÐÜ'xr:e”Txï¡dÏ9‡_ÞþÕ²éKž>:ˆC†(0R 1{F+#n½å6”µø‡Ü%1ZÓu…Ê ‘mŠt1cÂIèßó´àWì+‹zbü ðêõÉÍÅ…Ež.Ø8¹ˆÿi!üãëÓW×ñ¿û¹å¶[9Ñ;Çl1’øÈCØ>Eräàq])BÞÕ‹Œ‰ †9Zë!z 5UU 5þ1’R"§L‘qÕ0®G©QBRYÖïzf[›xב|‹-‡¤"9%te˜v=A ’”(%†Îƒ¾'ÇuŸ+ýoN? \`}úÊëÓ2óTˆÑµ[€{(²PÞõŸ^âÿ3 ÓÎ~°Å"w/|ï÷b¥ª*Æ“ÈsB*‰R-@Ù·w•Q¤B CÆ>yÈâÏï=Þ{RúJ7Z)åWJ}`e´BðÐ;Æu 9‘B`óð*k‰1²{×*£º‚ìÉÁS‚¾íI’ÈȪ"‘I)"%Ôu”’ÏýãgË¢žìò3ùÅåg´p2Åë'èí;ãßz’¿—(B~Vÿ?<°Xãžãµz[›GH)¢$H F áüJk ­-¶® 1$JI|~­•‚‘RB „@UUÌçsêºÆ9Gµì(…$…D —îS@iA;|ð4MEèg"¦¡Z@jCˆ‘f²ÊÖtŠ@¢´‚, '#$¸àÞ÷åy{JYܓ˵Àÿ, …Nr$àÊ× žziqŽ1’p{ñ/áû3SøŸ ¼ xl±Æ=Ïo|ÛŸÑ.h% ÑQ=”åIˆ}ÇØZY¤”ƒó0@Ê¡¶æ×zè(„ ª†~Þ{š¦!„@ßy”–ȬÞ#¥`¶˜"­DÈLë;””È$ÐÊS¢ë:´±„”ð1 m‚«šÅ¼%…„’’•ºF Éæ‘#¼òÈO–…=uü%ðÊÒbø$:¿ûJij_V€;ùû’¯”ê¥!üÅ 83„ÿÀËgkœ¬ïý-ößûB‹R‰ÚšeÓAr£ZC–ƒØ 9´÷ÍBûJHŠÎµäœÇ„†–ÁZo·üu~èö§PC^€˜º¢íçdˆ"Óû­-„!É0:OŽÃ4À˜3I$„Q¤œ‰A"¥&‡J%2óyËE?ôþÒèó{À+ÊС“ä\þ"Ä /;+ÿm'’ r€äˆ}‰œÂ/— ~ÿPÄÿô#rèôç‹®%§„wSUt.кŽÎ{| ¸àJa­…”!fÄ2a0Å„wC%€Cr^ΙÅbÁb±"BÐùç(I×-ð!8ï)cÂù@‘”3J+”–¤è©ŒA!È1â]OŒ"½ëR2¶Â)åYÀ?,e1Ç Þr_xùÿ{NqîàæÏínþ©ÿ%þÏþ‰!™¨pšñùú,–á©DfmeÄÈBßá3Ü´GùFÕ>f3OŸÁ(n™¢ËU¢Hˆ˜pmϸn)c„¢[´(!™N§H­q!PÕ¡oÉÑaŒ"ç€T‘¸LCÅ»F+JPV \ÛS©ŠÆ6Ä>çÑ'vOF„~Š”‰ñdDÌ©+:—ÊâÞ}üðOËÏzáDœ€Ÿý?ä—?ãìûw€ã øêd¿|ü[ŠrçÂÿ0à§kœÞüæÃÞÎb>¥iº®GÊ¡œÏ{‡ÆbDC’CVzšº‚˜È!b²B )a­¡mÛác"3£Ñ˜Ùl†4†‡Î€1Fk‰)Ñ÷=JHú¾ÇXƒÌï=‡7rιû˜nMÉ }Òr–@ßuCß!JâS@+MJ‚œ$!Âýð žû‘'–Žûùà6Ö'Ÿ,¦8~òKž„xõ{vtà_Kö;Ä¿pçâÿ‹À'ŠøŸ!$AΆ®¤ÎÇe Bhż£'&ë{¤8çˆ1¢”BHAï}ò´Þaš i5J„”C3çB Õ@!¥¡œP+”VtmÇl1Æ× óù„ÀVóÅb åðþ?%rÌXY!³$ºHß÷1L,Ü#< øÄò (¯Ð¼ú=ä=fG;ÿRüO—°¿(ÎÀ¿*üÏ8°>½xi±Æ¤ÿ(|ˆ8@(”²t>2o{:׃ˆh+ÑZ‘—#|û¶#…¸lÀãH"¡ëšƒ[Gðdú˜-æø1Æ 7ÿ¶§Ìçóí*©¦²Cac­Œñ$¢Ÿ"!§ÁéZ„V $>Ebˆø>àÚˆ c )er.¯îa^z`}zÍõé3Š)ŽSh.»šüÂGìX ”ù9ÂÎõéë?T,rfcÄ{ŠÍé½÷Cï~J+’„äLßIwÖÖ°LðCA$3_ÌÑÆR"ZÑvCßó£Í€¬µd21'Æ£Ym;ÜîsFMÛw´®G«¡£ s)%½sˆåÍþhÃ!Ÿ3>Bºz?T (­ËÂÞó<ø£ëÓ×XŸžSÌqNÀå%ÿ§oÙ±€Ój-n瘾"þÏ®.)Ö83QJc ëkè\KïB 6g›h£éû³Ù k Ý¢#…@ˆ™­­-bJÔµ%¥Ä¸ið½ÃuÙGrÌCÛàes ®ïQZÓ÷=‹®Zç¼í„ä”–-ƒ®F“òÐgÀ{$‚à)FFÍmYfB Ä48®ë¸àÞZöôáàšåYQ¸«Âó[Ÿ8〳Á8_GÜ“ÂßëÓ?^ì)Ó3c$Ú(„‚˜^u¯×1[̱u…s=RIbH%¨´@kCò™Q3¦m»á/åD–P7†JDŸÉ$zç±us=HBBkP!ó­Á‰Õõ0‡@Hïä!¤oŒ¥²–ùl†a8Jh¡éÚ§>ÕF3»Ä/we äÀ[o¬O®/¦8vò‹ƒ¸ìê(Ü­â ð©"þg'Þûþ„®'{G7[=¨$Ðh†¦Ý27@)IÝ4Ô¶Æ-‹YKˆ~xO¹n{œ°C¯œÎ _ç\±’QcÉ)ÐXC žì":rJتF˼íð)Óvž”!dB†#³)FV µªŒ6¬­î. zæD>µ<[ Çz›¾ìjòKžT€ÂÝ"ü«Ö§o^¬‹œÜ÷ÂIÐãÕd…6:¼HtÎѶÝз~·ÆÒ÷=®ï‡™@‘>x:çè{R`+‹Ož®ïéû©5Vk‚s$çÉ1’s"¦È|± “Pµ¡sŽÎ{º¶£ëº!‰0FŒÑptz ïG´‹9V+¢óa1s¯ /, zæ° ¼þÀúô Ö§å|9V'àÕï9£:Þm@y×pRÅÿ©À'çkœÝ|ÇΣnŽlMñÁ“H­@ H#‡>Á{‚º®‡Œý¶϶ˆ$tcé|Ï‘é&ó®#‰¡Lp±hiÛ±ïIÑ#R¤ë;œëˆÉEfk¶EëÔu6ÃP¢®ë0ÆPUÕP‰`í²—@Æw=„DŠ#5®w<÷¯¿³,è™Çs€O.Ϝ±hÝ+ÞvÆÌ¸[€‘Õ¥Fïä‰ÿ«ÚzÞ§Xcgð½=ý´%ùH¥ ±w)—mv3VY’ù|NðïÁGrh£QF³è{ºàéC ZkRJôÎk,* T†nѲ˜N‰1Ñ{Ïç®û<·9Lµ2¦óžœRj@2›Í˜N§èe}ÛÎXYQ×­$•±XcI!óÎ ß\óÌä>ÀŸ,Ϟ±8?ûÈ—¿èôÿ9OõÿÁCïu.Ÿ¾áæ²#N\ø¿ø àñÅ;—N~£%Îu¬LÆôÎ’ ijÚ®cT7Ô@c†^ü¡Y34Š„@I…~˜ä”hªßµô]Ïç¾p³Ùœ¯ÿ† ´bѵHmY[[åÈÁ#à3»÷¬±X´:tÝ»wqøð!VVÆxï‘R rB+ƒscFìÚ}¿pË%e!Ï|>üÄÆúäšbНMþÝW"žý²øég<©ˆÿÉÿ>VÄçò üF:L]Õ„¾çà-·aŒ%&Vp>P×#RJêfDe+È™¦iÇC7>)†Zþªa÷dD$¨«1“ÕÝ|ÓC¾…G=ê1¬Nv3¯QWcVǫ̧-ûöžCUY\ˆ!¢–Qˆº® !¢ãСƒÃtÁèÑÆpë­·ñ?{x<ð±å™TøZ7ìg¿Œ|åkv^àƒ¿ñ*÷?WvÀ‰‹ÿ¯ÿ¹X¢ðÿß¹à‚lmB)EVÆã1ÁÆ+cDÂû¢`¶H)pΣ„ åLe,RJæÓR[ÚeA^¶RÒ0' ®jº®ÇÃb>Çû)%m·À5Ôþ/fH5ôX[]ess“ºYå¾÷/¾ö™eÏ>þ÷Æúä¿3C$àCoG<úûw†päcd×E+«~bÂÿà5À£‹5 ¿uÑ;¹úCàëîu>•µ´[ަQ×5£ÑhÙŒ„h©†Û¾•èJ’RF!†>þ€ž"ÁŒÑd¥ bxï½*R"Å„’¿L* Þ1›ÏB`´äÈÖ¬ÕH‹Å”ÃGQ7#bt ³¹çÅ?ýß¹è5keÏN>\º±>ùûbНá\û·ˆ>|gD '$þÏ~kŽò×—âuW\ÎdeL­5«Íc,Bš¦!-Ç+­‰1΀‘d%B¢G ‰Ô’®méû–ºª°•%ÇDJ™!ø€’œ‡!C!E„” $qáYLg %͸!Kð±g>Ÿ²{÷_øÜ?²yd“Ý»ÎAÃSÍßã^TïìfüøÆúä÷Š)Î,J€ÓOüÿ'ðÆ"þ…‰5çíÛÏls‹ÉÊ„º®F£f¨Áž”Û#1ÄP{ÓµóÙŒ¦Z¶vk,M]a*‹sZŽêÍ()H1@NŒššº2äDÓTìÚµ†1 r¦ë[>ŒT’étƽ¿îBöî9‡óÎ?Àƒò-Eüw#à˳«pqR#ù© âʶXõø„/pðýÅ…;â÷ù=>[ŒÑ¸¾#ù„±†¦nH)QÕRHŒ1()R"•"ä4Dºÿ-TZ£ô}GЉ$…¸¬ `;`¨P $ýtAc+BJô¾')÷=‡d4CŠŒš1]çxÅÁŸ,‹¶óx;ðÜõÉÁbŠÓ_'OZ ?÷ÁEü_ü üUÿÂñå½+|á _`:Ò¶u]³2^ÁZË®]»˜¬L°Öb´ÆVÕP¨ÔÐ)PdF£¥ÔÒ¸¾§ïz´²X[‘¥ÖZÄòn ¥ÄZ‹Ö¥ãÉDDI][´«-»ÖvSW •]!FA΂Ÿ”ÿƒ·~×GËÂí,¾ø«å™V¸£[÷•-ù¹>{€üòg ®øLYÙãÿK€«k홌Wس{7ç{.k»wÓŒÇÄ”ºúƒ6†ø@È k5äÌ|6…œQJ‘bD+…5 RJ!hÛ¥1ÆíȰ,ó  ! „‚‹`2^õf¼B×Fã1»wïâS÷Q~ë›ÿ¸,ÞÎâÀÕe–À8W|æ´h|Â@¾â¥ˆW¼­¬èñ‰ÿ/2ôò/î”_}àïsèÐA¾þ뿞••´1h­É9S7 Úú¾D\ÊaÊ_8çIÁCŽ!Rn÷Bá] ïzæóÅW>Ó9“–#€óÒapÎ-O IL™˜$Q[YÈP×5‹¶G[K ‘º®¨ëš/ßp=—?è-ew¯_žq…;r^ñ6ò/½g†ÿ÷½ ñÄ)+y×…_¿ ãމWœó›ìß¿¥5}ߢ&§¡ž_I‰Òïhšz¸å§ ""E"øHÊ£5!Æ£më Fã†E»@H°Jãº-Ñ—RRdѵd)PB ¤$úH ß;lUÑÖ†>F¤”xßcH©hÛ) ç¸çü)e1wož½±>Iŧ—Ž·¯û4â¾-«w×Åÿ¾Kñ/ïÈ _“×~ë»Ø:rzÙY¯ï{VW'tÁ!„ÚNèB`Œ!¥4 å!CD+ y\‰1`LEŒ‰Õ‡ÝÚ IDATÕUÚvHþÓZã‚#±J}ÀHEÊyx BÉ„®ëÉY@H¥pmGzÉØ¦aÚ-)"S~?&r|÷¾‹‹ŸxeYÔɇ–NÀuŧž–>w¯ø?ø=à^Å…cåÖ.£©ÇŒš‰ˆT ´ÂTÍPÂçÚ²€†¸]ÎÐJ¼C1tô«bŒä,¨ªazŸÖ–¾_£#'†¶ÂUƒ”"¤LÎ"È¡> …¡W@7›ŒVVØÜÚÂŽj¶¦[)@fRLtó–ÊÖÜç~äÒ?½,èÎåàYë“¿,¦8=8®€üô•b¹».þ?Ì0H£ˆá˜ù‡¼‰qUQ‹šÚŽ©Lƒ’š~±€˜Èi¸""%Œ”DïI!Óp×Úà}Ø~—¿²2¢ëZ¼w8×’“Ç(A3²hcBàs&fÔJ“£GëD-!´ØJ!E¢[lAö"„ÎøH"¡+2qíµŸ* º³¹ðåYX8 tõ.;ù§.F¼cVV뮉ÿO1¼+—Â1óWϹ<Æ„çzœëðÁã0ùÏ3´è œóþ_þW)EßwXk‰1b­]6, F£1FŒ1ô}Oßv8çˆ! –í„SJH5ôÈ)SBJ‰ï=)%œs4Mâm‡ÄA$2dDHTR#rf±9åÝæWËÂîlð¦å™X¸½aÞ1#ÿÔŧ¯_óį]UVꮉÿ«€rêî2×~öȘsÚvÈÐ×Z"dBÊ„±Þѧ”–>ÔêWU5ôóc†‘¿Î¹íl~!GŽ!ÆÈÆÆÆ0ü'ebŠ)hêšÚXÈ™œR*bN´Î‘rfk:Ej…­,]ß“r"æ„6ŒVV!3R‹"yEƒç{ü‹ËÂ~uy6nïüÚUä×¼äôsòUoC\úê²BwMüøÙb‰Âñà–Ùþk»VI) µBkÍåÏЬç¨B ë:BË›yOÛ¶ô}1ï=J)Î=÷\º®ã¾á8räuS#„¤í:ºE‹`˜ 2H)@ªºÂŽš¡Üo±!ÐÖ`ê )½ë‡\„œqmœGÄå÷I‚7]üea GùÙåY¸½pé«ÉWÝ=¥õ%$}j„_o~ X£p<\õ¾ïã¾÷1LÆ {víeºµ`÷î½t}¶Ã'טçü0 0gªe÷¿›o¾™óÏ?ŸÍÍÍe˜ˆÀÐðh´ „@Œ‘¦C ¢¤ÆAðiÛ©Frúˆ„‰ y?$ JÍÖl‹T£ç•°¤Ö!ÉÙ:BUY¦ó–}ç_Àÿóåç—.Üž?žYÊï~Ž)¿«ê.ˆÿnà=Eü 'Â__ú¡g4ª™Ï§¬­­CB‰ëJi”Ò4Íp#?Zèœcÿþý„X]]]øªª¶¿îè;¥Æú¾C*¹ÌúOˆ” Þcµ&“QZ#µBhEÝ4Ûy6†(†Æ@ã•ñÐjX6§3ºÉJÔèåС›n¼wë_* \¸=?¼gyvîFÝýš@~á#Pï-‹qŒâáRüŸX¬Q8^þò?|‰¸ö3œsî^&«#V×VеµÝ¬­í¡­0pα¹¹‰÷~èòÄ·Ûù†ríBJ—½Ìí: ŽF£¡Ý¯÷4Ö2ŸÏ±Æ~¥z@ Ú®ûg9UUQYËêê*u]㜣ªjF«+d­ésÂŽj’•]»X,Z>¶¿T¾Š'.€ ‹)Ô{ý½Ç€|ÅK——aÇ(þþ ¸¨X£p"üíß^EUvíZŹáÝýÊd‚Yöí—R3ÛšS×5»víf×®]ŒF£í&@ÖÚí[~Ó4H%QJ ™ûË J)„ËBÃð%¶ªXYYa4Z¡iRŒ4u5 C%ÀÑïÃü€à=ÖÚ!éÐF£!$ª2ÈÊbê —†?ÛÎ~n¾ù^±ÿr®zß÷•Å.Üž‹€?[ž¥@\þÑSÚ.ø_ÍÈŸüâa/+plâÿm ï±Já„ø¹Ýÿ‹µÝ»8gß~ð×÷iÐRbª1Þ÷4ã}n! êª&ƌȠ•$¹ŒT’Å¢C‰´ ‘!¥¼= ÀÍl6gT5ä”i]Kˆ‘#“Õ óéMS±5Ýbuu®ïIIId% ΑR&¥H]×xïqΡÆuŽ$ÁhMºù‚”Fë¡b DŽÞäÜóÎãñO~ßöÛ%ò[øgÜüÀÆúäoŠ)N­—$ÀÿÇ ì-Ö(œ¿}Ñ•lnfum1dÌXc1JCÄXƒÊZ|øìQJSÙŠâÐðGJ‚Œë³ù¡%!'”VHBrJTƲX,¨íp»¿å–[ÐÖ }€Þ-GÃ|”éZϸ³µ˜¡­¦ï{F£Ñv¹áÑh€Y%Êrˆ4䜑)£†¥d>ŸoM;oÙ½ÿ<ó„ïáQWì/ p{ÿfc}ru1Å©ã_ä XæØÄÿ ÀŸñ/œ(¯ýö?¥]̆d¾œ1ËV¾!,'òi…X†Ý]ŠÄð>ãûÈbÞá} „€Rж[°qóX«†ÒÁ¥ÃP&è}Ø.ôγ¹¹IÛµTÕP^—S·¶¦t]‡m417þªªRn—%¥DŒqhÓvs"¹l&4N·›F#víÚÅÖÖW}°$¾Š½ÀŸ.ÏØÂ)Òå¯rò/=ñæbí¯-þOZŠÿ¤X£p"üÆÃÞŽÌ ­5k««Dïð½#åHL‘®ï˜Íg´Ý=>x"‰D5|¥DJ‰1Ã;øºÑô¡¾G Ä gb ‘qÞ!•@Hè]‡µ†Ö9Úv[6üG Y|Eܵ2ô½gÈ”ä,Pʳ ÆLŒ‰” “ñÞ3ŸÏiÛv;ap>ŸÓ4 }ßc ©+nº±œ7…;d²tžTLâÍä_zÞÉýžÿLü?r%â‘O-–þÚâÿdàO[¬Q8Þøè÷ÓµSŽlÆhMï=ÆZRLh¥H!PW5Zk„”Äá-”Q8× R@*‰ ú2XSSUcVÆk¬íÚMUY¤(¥–ŽA@ Ý}Œ­1%\¾GRN|ùË_f:›2¯Ð¶-)&@0ô’8çñ>,Û½ bmmmm þÑþG#GÏõ-}»`>òæ'~¨lŠÂ¿†þdy—(ÀIÒk /â÷o(V½sñ,ðv *Ö(œ ~û¡o#§DS[vM&()‡ðû²£_Œ‘ùbT‚$@j=T¤ˆ¶mU¥ÑZ ¥ÀVk 1%BˆøåbùÎ=’Sj÷C@Ãêê*Zk¤Ë¾\Öü ªºæ¼óÏcß¾}¸à©ëšÉêd{ÎÀÑB0´Ú C…ì2Q0Ƹ=‚سݣ`pF2Z)|ß±¹y„ّͲ) wF¼}yïhÄïß@¾üE'îäk>Œxáeekݹø?‚¡Ôo\¬Q8YÜrëÍŒWFX3¼¯O>úļmZ3ë:TUÑňT c ÆVDÑB‘© AŽÒðN/ÇDS5TºbÜ4h#hÆÒ„nâU]‚Ç-;.-BdŒ5d29 Bï±Ú’\@åLe‹Ù … Ò ©†©!Bʸ¶CfAe4ûöíúRÑuݶ“¡¥Æšš¦nðÁ3×ܰñ¥²) _‹1ðÇË3yg;/¼Œ|͇OÌßø¨²¥î\ü¿ xPº•NÁ]ìqѱµ˜““d2^ee²†¯ e²wI)¤±ô1âv¯LïBh$ % JhrÈXe‘ DŠÌ7#Èt¡#æ€T‚˜ÊH’H¥È”±ŒF#ŒVçÈ!¢3xH}¤Ö5*gr×c…`2jHÁCJ­×5Z j­752ERˆxïX±u½|F¤$ð.}&ùˆóŽÕ]«4ã†[o¹¹lŒÂ±°xÛòlÞÙNÀ ê·,{éNÅÿþKñ?¿X£p2¹ñ]Wâ\Oӌسg/USQ-[ï®T5£º&‡H£ )EÌ2L šBˆåï)bŒ$†a<®ïÑZÓ.ZöíÛVrBH…– )äÐÁ/¦¡¥¯Èô}G×µÛïé6CÄÁP’…ëè‚'EV’(@-ÃùÞ9BŒøQÖP-3‹Ù-$£º¡Y& J)1•¥KSWøàñ½Çù®lŒÂ±rþÒ ¸ÿN7D~ÑcŠp Äÿà­ÀýŠ5 '=Zöï;¶í†v¾£†Y;ÃZKtŽvsŠ ­4²(F*rˆ”±Æ úÔ ¦R)¤V$2Êh]KH‘œVY4Šœ)B, AUÕÔu=dü÷=Î92—®›š$DÖ‚"!„’dÁRôk| ÌÛ>NJ RF D} ®kl]!¬­1³6Ùsïú²1 w…ûo]žÕ;7 pÙÕäw¾öøþnÙCw(þÃT¿‹‹5 '›Þòßø³Ý› /¼¤„Xfè[c!]DÊ!¯wŽfÔàCÀÇ0$Ð-§ûI†Ä½£]ùrÎ4MCˆ‘”"«+\ôøÐ#–ƒ€bŠË„½a6€XÎH)mOù‹d´– 1RÎä‡ƒÐø0 W5"Cß;2‰®ïAI„RTJ½'ú@ •Ñ*›³)õ¨a:›“„ ‰ŒŽ)ÎS WV÷ðò[~¢l’Â]á*àIë“âA–ÀIá-Eü §Šk¾ëqœ³÷\rHhkRÒ;ÇÖ|‹Þ÷ÔM=$óåLN‰ÅlNŠ#Fªå„¾fh $@hÅxuB5j9‘È %Óv÷‰B$ bMÐTÚäPa ´¾’©—SþŽN”rêücÀ;O;_B@ I]Õ(¥0ZÓ¶-Ú‚÷@Þþ~Jk´VøÉR£µ…,Ù³góéa>ùÓ²I w…‹—göŽæxJ‹ðÕ·ÿ7O+–(œ >öãG9³2“3ĘZ#µ] ¶ ²6!h&«ø©ª««¡û_VÄró{´ ŸÖc ZëíGJ‰H-4)$œ „ð>¼G-ç ÄœF“•@fДÈ,ÐH´4¶Âhµ–Ú¯%¬1X¥)­†C ï{|Š$)èC[KßõÔUEtßõH¥ÐB"‘ôgÜŒ¨¬eÏê*ñη”R¸«;ºähE ZAȈ@Îæh0:SÁ¨’X©+=ÌH=}l¹ùÈ›îS¿ÉÂÏ‘*“ÇõÑ÷äÈ1|BKHBU8ZY’÷@¢]̉2²GÁ£ƒGvŽEÁ¢©u )3^™ •D)ï;ȉfÜàs ¯ mCÀâ’æðæœ÷ÞPüñÂqñªå™¾3£ï˜‘ógŽík‹øO¿xwùÌN5—?ô‡ò½å=ïývh_A]×´}÷ÿ³÷®1š­Y}ßo=·½÷ûVuŸ>çÌ…Ì0`18À0„›sµcA8Q…â —8°„ÒN‚bËŽ„fƒcLâ€)AlÙN0·€ü)²%œa†93sN_ê}ß½Ÿëʇg×{˜0„fÎéîÚ?©Ô¥îª®Ë^Uk=ëYëÿGLÀYÅŠA¤"ªýÄn,M McAlFšžÍyj­ˆvkà¶ÞÅŸ®œ `•°xxzHÓ"7àC+ Êàê Ðÿr¾>¹wõënô# £?›þ”˜^\¯D•b ¡äŒÓgÖ.Çœ>xŠ6æñÖuIà”.s£ª°¤ÆñÒ[·ÀÙøò‡^¸wù7õ‹×÷¿ yÝÇl€ÿ—äÿ/?¼ýœl|¤ùïþàOcÖ¤Ÿs>kó»uúþZŸß{Ö×Gc̽8» ÕŠ6ú}|oß÷?AÐÎüàpAišxñ¥_âì¦ïzç;yÇý0?õSçã8v €ë)ÓE®}®Í{®)¥jgQg0ƒG½%YÖϯaÅPr¦ ,1âœgô†˜‚ï+‡ÚÎáŒ` gñFù™çÅ-x6~§üðú;þfòÖßþK¿±ÀÝ{W—ÀÏm?'iî?z±ïâ‹Áû~ßnƒ=îuâ¶Æ"@«V ÚÚz"/P¦ï¢µ®÷õÝ/ƈ Ęˆ)Qו=1 ¶ð®w¿“Ÿø‰ç¥_äWßù.¾ô€ÏüŒÏäs?ç󈱿½ss=Pê¹(‰1¢ª½;` Çãá´ÌXï¨ÚÈÒHT2Š¢tOc º:6m,qA¯¿ž¦´Z©9SRÂÁYVKâBã—~ág¶àÙøòðCëïú‡üO‡ßömÜ Ž·Ÿ¶ýŒl¼¤©)±›vˆŒQœsçVºµ–”Ã00„@N !x žÅ~ZkhmÝü§))U¼1X먵ὧI?kÎÔ¦¨Bª‰;Ï=Ëøœ?Àk_óZTáõ¯½‹•ž¼q„X »ÝŽœËœ¡_ „u°”BÎ}ÀÐ8{^Ì¥ UÉëp£q ´Ò…‹ÆiâÁƒìw;Dúj @I™!L<:<Â!–ÄÞM4vÝhøõ_{a žß Ÿ¶þ®ÿW¶oÅÖ¸>ý7ðUÛãßx%øKŸüwc† ÃñØzRÊ€t-c‘U§¿–Š5#]º·­Sù¢Ðréwý«z`«]¾·”Ê2÷Iÿž˜»F@S¥†=·oÝAšƒbh Z‹éòÀ€µ–ãñx.DÆqDU™ç™eYú¼‚søài­q8ûÇ^· PP ¥„3]èt<ö"Ç9r-¤ÒßV€à=ËñaÄù€ËaYP±®o@8·ÐÆï–¯ZçoÜôàÿø–íÑo¼b4ÚÛû}îVaÀ‹*XëhM)¥BLšRr!§L«ºîç§”()õ¿«ÚÚ¹‹p½Ï¬¦>œ†KÐ@œ+†)ìñÖÖÁ¿ZkOÌ"x冀òðáC–%ö6¾*§Ó‰”"µÕóÇp¶_YPš2¶(ƒõ´µk!@i½`iнÖ«†œ AÅpuŒÔfXbé #Tbɼí÷ÿøC¿[¾eýÝ¿qS €»÷®þ0ð=Ûcßx¥ø¾Oþ»H¬qçaºaÎ'u¡iC¯kmèšèûÛ°j´³XÏõ´=(F Î9Jéšý/·ê3µ5´ 1à~‡³#Þh}P0ÆLJ Я€³€µçìª%ÐÛöb ¥5”~…¡ªÐoûa"XC™#š 9fCͱPjkÝDH{c] Pk1.°”F*µo<ˆå=ï{ßH¾gÍ7­¸{ïêMÀߨùÆ+Å?ü’_d>B@ÖÄ—¥¿^ Þ;P%LS‚±”9b äœzWFhÍPjE ýE•4GrÉçAûÚ Eвv rÅ‹eçF Öö¼SŠTiXïpÞãÜXD,Öv‹aéÓ†#XkÖbÀSRA›!¥BJcÆ;bJ<<\1Ÿœ±ØÁÛB³¥-d­d”Ã2³ÄH,†^XÔÂ4ޤ”ÏÞ ˆ6vÁ3¹Í³lãÃÆßXsÁÆ ëü·Àë¶G¾ñJñÏ÷A*)/œæR V@kÁ ´˜0­ar\ÐZ‚§å¾'ŸKæ8Ï,±’j¥ÔîÖ×jÁV…<'NÇŠRca¾š1‚x¤BPAJ¦¦™Ò"n',f!ûÆ©,¤Rá4'NKæ8'r酢䒨Z1ÎvÿX˜ÂDŽ•ÚàþáÀœ v{Ü8¦…G§+db‹ÓXj¢ÙžÜ+âHµáke¨‘8eŽGT^*!/„tâG¾äç¶€Úøpðº5lÜ”à·_¸=îWŠò'ŽÌóŒYÍv¼÷dY+©R­äÚúX]ÿ®ïøe RÕó.>pþ»ó}½µ„i#UÂ8`!i%ÖBÑv^ßCúÊ¡·/Ö)]ð‡U{@D(¥p8ÖkˆJJ‰yž©µb]ìqÎam éùÔ½÷}põ `´Ž{·"§ªœ‡þõ”LŽ‘’#R»Ü±µ5–”XR¡¤¼ÕƇ‹/\sÂVÜ€äÿïß¼=êW’÷üØß]÷ç!§ÞÎo"èº:‡¼œl1À(ĸôûñUh8ïÝ_ßÿcc˜ãBÊ 1B̉Ã<£ÖP®m‚}7ªëÿ¥­_ }›8ø‰T+ˆ ¥õÓ-ø`QíEG­•²º–\(9¢­á](J.8ïI1ã­Cª’c\ì^]øgôÁ9¼í^º6“h U;Ô™õJbcãÃÆ7¯¹a+žâäÿùÀ÷n±¾ñJóGÞù¯cŒÁ{wžÔ/µK&—B̉%Eœï+u9å¾g^>ÏóŒª2ŽãyR?ÆØ7joË‹³4š€ ŽS\P+Hð4*½íî½?Ë—\¨¥ µÿÄõsËë¦s–a\^^КòÒý—úîÿª@hlW+4öã„–Õ? T´°Ê#! ä”qÆt“ …xš ÖW9àœrŽ´š©©RRb™g¼uø0så¸D¼±[Pm|¸ùÞ5GlÀS˜ü/ïßb|ãÕà§ÿí÷wG¾”ñ¾¯Û©*£,óÌ4M}G¿–Õ:š5TQNÇÓ¹3ÏŽ~é|0Ž#bLWì«•ÓñxžÜo­1/ ‡Ó‘¥dޱ[ ¿¸&qZëR¼«~@ª?Ä" Ú˜—¾÷8\‘Ò­ˋU”¨ .éH* ZWî#´nók»4pi}qމVÁ¨%Ç…ZÖöÏÙZ8.={#4 vUJŒËBÉPTä<ÿ°±ñaæûoªR <ÝJ€xó߯! ÔZh­ŽeYpÁÒlWÕË©{#,ié§xkÃËúû×\_ ¤ÔÍwšö]ykºµ®ÐµúCè…F]g J­´ÖE~œéƒ|…Œ]%zóœâµâ¬Aµâ­PJk»EpŒª`ƒãêtb?NÄ4sûò6B¿Ç/EñÁs˜´“#¥Ì£ãQåb·'—L, ÖYÜà9Ž+¤’Æ*–ÓaÆX‡± ç<¢`ÝÖØøˆðæ5Wü[àé9ýðǶØÞxµxË<Ó%zKWò !¬Ã! ë \k cM—е†f…㲯÷øW…¾ëÖ/,Þ{œµ ÎCS(µ»í•FËå¬XK9'ñëáÁkÕ¿V9¥>Gë¹6ü¹6*2Æ’sfYæ.Þc ©d†÷=!Çeæ´ÌÈê˜rÄ;‡ÃÃã‰%Üà1Ö²¤Æ`½'ÕÂa9Q,¹öaC©JpŽqpb±XL~ï'~ÒT)þØš3¶à)Hþø [Lo¼Ú8ëPm°êó×”))c Ýþ·¶ŠYubÉäZðÎuóœõºê^©•ÓéÄ<Ï=I§ŒQÎŽ‚%§.”»Ÿ®f>¹”î Jw ì‰ÞXÓ_G°¶‹ ÕְƬÂëú`_][ð9g|¤œ§‰˜-j«¨6”>èØÂ8²ß_€šóðàýû÷yéÁ}Xe…·à —wnÑÖïUÎ…š3Ëia9Í<ÿÚ×ó©ß·ßjã#É_XsÇV<ÁɶõŽÇ‚7¾öõP2šfFiÔX5¤S"Ï™—~í%r¬¤Sd9-X5ç˜cDEH­E‰Z9ÕLØM¸q —·ï©Íb…"h1Ø ƒµx-¸™Ä©FH­‘j%æÂé8ãqxô4‚¢È IDATÖ+†»ôp‰‰V• Þ 4„SLx )‡«#‡Ã‰‚¡…€„‘æw0„€wžªªÊiŽçˆGU!Å„aÚí¨«¾÷m DÕÒøðèÈ2'D í] Û-ŽGþ坨<»6^1>qÍ![ðžþ¿øú-†7>÷o}Ã8 "(†Ã|$×Ò5ôEú¶ýºÛ?ŽÃùžýtš‰§m/ó]kü{ï¼g>1¶‘r$¦¥DÄ´³~@«B-ʲ$\SZ)äÓŒ´¶îÛ'rÍäšYjäp:Pk"ÆDÎýô_r=^ëÔÖuý›*©vó Z ÆSÈK¤,<—sŠ˜àhò²žÁa²Î1Ž#ÎY ‘bêöÃÆRb¤åÂGôGo´ñJòõk.Ù €'(ùÿ>¶}ÿÇ7üž7Q«²¤„±†ª…¢…¦ï-1.´Z(õÚ”¬tå@ ̧)Æ~¢w}=îêêŠýnOÎï…aðäI9v×½ÖC+†Ñ 81xjÃéj~9sŠ‘T ±üP­(u]€>~ qX+½©™Ò*KŠÄœÎ3 §ã‰V+Ó4¡)³Ä„Á žÃéÔ‡ ­9%ÎóLÊ™Ã|`É‘a'] ©–Ê|¼bšv[m¼Ò|ïšS¶àIy`@Øâvãqãßü™/îÓôµb¼%åÌ#¹–³"`n…VJß{oV[7ûÉ­íìøèáC¬±Xc€Fkʼœ8Ž@]‡ ó|êºý%÷ÁVÑRi¹PK%Ç>,è¼cÚ:À7Ï3­uÏe‰«ðË]Ц•Ú U+¥UІˆâåÖÅž–‡û°¶ŽGŽ}“`žiµq:°Æ`¬%—Ât±ëIÍäÔ?æÎ{¬éEŧ½mþÛxÅ 7å@ùÄwï]}'ðÅ[Ìn<®|Çû¾+†%FL°Øà(­rZfbNÄûÎ~ŽœŽÇóz^<Í Š–ÓŒƒÖžÀ. ~äÁý”’9-'§#§eéó¹—HŠ Cp ãȣÑOyËçn³ñ¸ðék®y*y"=6ïÞ»úRàÝbsãIâÿøÆûüí·ÿ¦Ý5k…°‡nÑ[+­(VTÆ[¥je Çà ƒcpƒ}µ¯d†aÀã«+¬58ç±¶wš,B¿^0FÐÖ[ÿN« ¹à†LW,TÑnc\2U¥6ÒêhiH+]ÚwNÔªxçQ…”ÚèCƒbºñ2s9o¸ŠGÂÅžT+Ë ¾¯.æHC¹:̼æµoàÏ]}ë,_ö½˟|Ú¾¨'Õ è¿ÞâqãIã3þêþÖç|6¿ð ?ͳÏÝ18ã,­,–i8#E+ZbÀyÇñxÀ­kî‹1iï¨Úá™;ÏBÀŠY‡ö oQ¡Ëü‡ЪXV Z ­*ÎÙ³`OC™—|÷h c@[¥ä‚1ñuë¼ú§ÿ?üÇ[!Œ¹h‚W(Ç™%žÑS¨¤ÚïþB=F¼wÄRùn³-ôl<ö|á ÷.ÿáV¼:ÀÏŸµÅàÆ“Îw¾î¯ñžwÿ oxýGAÉXžÙ_tYà[{–²pqkO©…0xjQ,uÛ°Æ"M1¦'ü{ ß;GNKïd­45‚ífCyÁªtþÕR¸”‚3}› çL« Òk«Tç©×U” (µô9Xª’–‚Í× µJVåXfNóÌè-ÔB F _ýµßÀ[þÚs[`l<îüì ÷.?ûiùbž˜-€»÷®¾cKþO _ñ_Í0 ÔšxöÙgyþ5Ï#Î`ƒcY–î ï=ã0b­Åˆ€B©Š®æA@/œ¥´Jn½•/ÁSEiªg±Þ}ŽÀ˜uN V* õ‚8¡ÚFª‰9ÏX%µH!w##­8#ˆÂàÌYäǨ@…–{÷`˜B×7°1c Ó´g·ÛáœÃûÀgïsÙ’ÿÆ“Âg­¹h+^ÁäÿIÀwm±·ñÔüùëÏñ1oüÄxé¼øàEÔ*ãÅÈsÏ>ÇÅþ½¾¯_ûtµÖ.æSkÈC} ÇIJ,ýÄ.µq*‰¥&ŽiFëKN¤œ‘Õñïºýw­Aj!¶B(ÄYdu$ ÀµŽÖ29-´œ(qf>ž¨9# ++¢& Ú=Œ¡­Ýk-¬š/>¼OøÅo|¸ÅÆ“Âw­9i+^!þ«-æ6ž6¾ýÿ©$ÜàxæÙg×õñO˼ºï±ö<õ_kíöF¨¥2xOkœ3Ó8sBŒwXïQÛ»•žÜóº6XJ!¥D‰±·òK¥©vwBSн#`„LcI‘GÇsZ(9±œ´–ñÞ!ÊÙ90. %U´4”._<kEg-Š`°ÛMXgψ_ý¹ŸÞbãIâ©ÈIýàÝ{W_|åoO#Ï>÷†1ZcY¦00á6P—~Zpÿ>—· ìàPõJN‘ÒÆYR‰kaPºk_JxëÐ\I¥¯ó9Uæ«ÕyT…*DÐÒºA sìwó)'¡”Üׂõ,©Òj¢¤ MñÎa¥åÜçbæï!g´%jK°9SséZûËKNóÂ/½ç[0l©_Àã~ð_nÉãiåçþçb¿Ç ئö}ÝŽ_JâÑñ@3ÂR2sI—…Xr7÷Y'ûs)”Vû~=J*…Ô*Y+µU Ï\“sw œç1=I×\Àƒ·Q¥æŒ¶FÉ™àýj-ܧþ•FÉ©_UШZÑVú üpÞSµ‘[%·Òmµ_¤œ)k±1 #¯{ýGm±ñ¤ñ†5G=±<¶ÀÝ{WŸl²`O-ï}áW‰K$Í]ß*تNGÜ8Æ…B£Š¢Nºê_«` .xbJýß37©Êzß_WsT mMþªzÀƒnó[rîÞ¥¢¹OK¿z¨Š4¨)sõà!ùñÒ»ˆ²,Gr‰„ÑѨäÉ-“[fÉ ‡Ó9.]¥P`I‰X21EN1’J&×Bkežyöù×m±ñ$ò­k®Ú €3ÿù[O+¿øMxøðaoÏ·†ÁÛ¾˜bä½ï}/KN4$8b-TíCz%÷A¾iš0ÖRkí÷õ)Qk%ׂ]uÆq MûŒA¿èkzv0캖‹ÝÑÞ!°Æ2O”˜ý@É#†Z2ªk-ÖNs·N%‘K¢ÒH%†\2ÖÄZ¡”²¾dJ­ÌsßP@àõ¯Û:O,Ol®z, €uðïË·¸ÚxZÑÖ¸sç9÷!¼œË9_\\p±ßc­åÑñŠGWW]O[7õÁÛWÿRê+|)a­¥”‚·®·ßkåtšðÎ3 COöÞuÏ€UÃ_DX–H)…aÎÅÁ4M„ºÚ ÷,óŒªP«b­ÃÛgPƒXG)1–R q‰4Uî¿ô÷_z©;:O\"1ö—Sâp8pyûÙ-(6žT¾|ÍY[ðaHþ¸·ÅÔÆÓÌg|ÿ3 Ãx–Ú-µpšgPe9žÖâLOª]—߈!XKË…ùx¥û4ŋʼn°óNú½þv]lÚÎ+ƒ%—þg)(œwóç¥ ªÊÕ£Gç«‚˜3Î9Žëç—–LN…ZUƒˆEŒEÅ ÍX¼qçœÇÃn| . Co,)'¼s|ê÷í· Øx’¹·æ®­ø]òŸ»ÅÓÆÓÎ~Ñ—s88ˆ³øiÀ‡€7ҲୣÕÖOÔóL\"ÃnÙÁzTchUæÓ‰V N„xZ^Ö÷_³y)Y¯`àŒëë…í›®« ú!°¿Ø#Ö0î'¼ØM7âÝÀ8ì06 ªpÄ ‚ó¤%âŒcpƒæ£}ØÐã0ðš×ÝÝ‚aãIçc×ÜõDñX­Þ½wõqÀ/o±´qSø®7üu>x‰ýÅE_é«™‹a¦‘RkOÄãˆ3Ž– %e.ÆU¡YÖÁÀ@«•œ£ Ô˜‡‘Ü*Î{T•\rŸúo­‹ 9GkZ2%&Œ3¨6jmÝ[ ç~E0Ïܾu›ãñ@k`­A–ñÞcŒ`aÉTÈË)x–”Àv¿šÊ>ð"acøÕw½—ºó=[ l<-|ü ÷.ÿùÖøñ[ülÜ$Þü ŸDIç)&¦Ý3c+ìoßf˜v<÷ÜóL~ e‰‰ªÊ‚ La$ø¦ÚUÿ¬à¬€†`È)¢¥R–ˆÔÖ笥ծþ‡*µV‚õq v` »u€pd7Moyþ¹g±ÚõBi ûÝHp†ÁÈ™Ià ÓY»ÉÎrÈ™G‡#®Žìv”R‰Ú°&lA°ñ4ñDå°Ç¦¸{ïêó¯Ûâgã&ñ¯þýÏâ×Þÿ~JÌÔ\ÐÚ )é;ø1RSŸÊÖáé&<"BÓLÊ‘¦}ª¿–ÒÛë> êÏ0Ž˜àðãÖ°Ä…ºŠühmhmxcÑÖ!PJ_Í»¸¸è[èyX¯”‚* ÃÀn·¬í× >ü4ôí…V™¦‰ãéÔ¯0Jáââ‚`}ôiN|ÍWýk[lpgé;ÿjhM)ª½%o U”T2»ÝŽVûß4Œ81X/ö< º&ýœ1Ʋß÷Ž€÷ëúœS/@z÷@éW ­VÄYÆÝDi…Rã8võÀUê8„€5UA›ðÕÿ`3øÜxêxbrÙcQܽwõGÙÖþ6n(Ÿý_ª””))A­ìlj) xëÃ@Íçý9ùNȱ VÉ©Ÿ¸½ë÷ìZÖz„¾VÝ8Í3FLïˆéÅEk aýÿ1ÝnXbJgkb»®þÕZÏZµVRN”Vk¨Ú» ËiÁY‡ªr¹»E-Š¶Þ©˜ÂÄk^»íþo<•|ùšÓ¶àÿ#ß±ÅÌÆMåSß¶çÎç)¥Q‹²'ªö¶yá,Ö`­ë.z(!ôA:çú½~Z,ÝAÐCiµkñ{ß߯¹u`ÏPVkáËËKT¥VrÎì÷{Œ1\]]amï xçAº@««ßåå%ã8ÒTÙí÷k±Îs:w¦q¤•^(”R¸ó̳,sÄÏK/ÝçãÞô ÛÃßxZy"rÚ«^ܽwõVàÓ·xÙ¸Éü‹ïûuRN\ÞºE.mý^¿©â‚§ ÝÀÇÄ[šHw4žÖ#†‹ýï|¿¯oã7xœ1”˜@»ÀYWúŒw¨Lð/ ¹ ªìW!"c Š’s>û„a`>ˆ12 Cï.A¬9¿œ_W •à@9\]\ .‰ ÷þ³íÁo<­|úšÛ¶à·áÛ·XÙ¸éü¡ò§ðÓÄÃõõ ýÚs\H­b¼¥º™Ž5¸aÀúR"ƒ¥åŠˆ0žaôX Ú*Ò”1„þî½Åßj#•LªŒ ëªž±½£ ë)¾·ú-ûÝç9ç³·€µçÖ¬³Øà{·Á;rí2ÀάRÅXJ©¸uy‹a˜ø‚‡ß´=ø§™Ç>·½ªÀÝ{Wß |ü'ð ¿ï“1Îö}oöÃ4²Û飯Œû=Î{Jk݊׌ø²ù¥)Æ9/4Óºê^‡!Xßm{KíEÀõðžjëW­µóÀŸˆà\—ü­«U°µ]7 „pÖ ¡–JJ (ª ÓÈ~·[m‚5g†aö÷l|ã&ðgg‰àW³ðmÀ6¼±±ò–¸ƒjëSþÓÄÅÅÞ{ZëR¿Á9òñÖqç™g0Á±ßïÙ_\àGÄàVw@Á`§ÔÆÕñ€ñ5B®ù,Ü Þ9j-¨éƵD¬Ó4`íêâW+M¥{ SïXÇ4MPA´w‚ 81ìÆE•à<^,%G*‘%ϼîõÛþÆà£Ö\·¿áô?<Îß”W ïãêȧ­»ÿMÈ „úĽ³ŽÇÞÆocOú" ÒïÜa|ðX1XL?`Å@íJ€Z(øU¤GpÔZ»ˆ€uŽqưŠu€ëi~Ã:`©…¦JØOøqo™s¤Ñ·œ±HUœóÛÃÞ¸)|Ûšó¶`åOÏoq±±ñ2¿ôÍPkH¹ÐMC_£+)1„¡;ø­ºþMU%øpÞÙÎ'sDúß5í“ú¥à¬e7íºÀêèl_\N yN ~ Öþ1...†ã "PkAVûkÁ œsï"xwÞpÎq㈬ÉZ¤ïìíbAº¶Òέö¦m½ßï’Á×÷ýÎÙó­ýd."XcñÆá­;wÄrÍh«ý Á[dÕ @#TmÄ”úça„R Ö9ö»ÁyZÊä%! ­6¬w\ܾE*q{à7ׯ9ðFÿþñ׿\=xÈà4ET‰ËÂ|š1Æ‚BI«†Ëa¿ªðÙUÙ¯ãZ4C.}`ÐzKn…9ÎXg1FH%¡¢++=©k ¥–‰)ÓrÅŠcò#Všuí4RŠäœÖ{ý€µ†”Òúùµ5ìj |ÀùÝåªJŒ‘·ÀÆäfwï]ý»ÀÇmÏcã7sÿ§~jã¹[Ï`J!ˆ¬!„nÁÜ€©‚M0dC¾:¢µPk¡µ‚1‚ó†R2HwåóÁS©X§8/4)T)4 ؆¨4š4ÄPˆ6ƒ©LÀ©àŠ Q©‡Ä…¿DJØŠ1•!†`©x+Lc`<µ$T YCnøqB›b X£´¶7’[sáëüÛ³ßØøÐüúÝ×°äÄq>€µ}¨E­¡¢—±D†]`N Î9¤)F„’ 9%(ݦ7- miYºì®€1}&@UAyùuÀ‹ˆ%XO­JŠcë`œÃàiµœ[÷!tM€eYº°1G–eašv4-*â ÆÉÚ™ìê0øï}óo~ã&òØäÂW¤¸{ïêk€OÛžûÆÆ‡¦hA¬[íæ•urßB%kOž×ÅAÑÎpJGŒ@+…– ói¦ÖJ¬É~‰ -çÏ÷îó«¶ÀµqÐ8ŽÔZ‰1b`¼`CD\–ˆ¬ N F@þû·¿m{ø7‘Ç"'~Ä €»÷®>øÒíyol|hþñ׿o-Á™µÕÞ“+ M ÖB)‰aðXQæåHm Aúªž³,9qu:’JFj.”œ9\ˆ±·ííªðÝþJ)ˆt™áÒ2¹d´ Qj†¦}½Ð b yuñSÕ¾¨Ê²ŠýÔZ !0Ž#9'Ú:Ÿàƒ¥Ö 4RZhµc¢Ueoÿ¼ŸÜ‚`ã¦ñ¥kn|ê;ß¼=ëßšwÿÊ/³”%±ŸºÑβ,Œ»ðò FmëáâbbÎ;°¥‘µ‘Z¥Yë‹ñÝõoœsçN@Ι«««sëÞ9ÇáðCc –XfrÉ8g)5³¤HC¨Ú÷ÿ\k ¼ì ú²?€®DÞYž¹}‹’"Ö¦UoñaDœe·ù¥ŸÿGüÔ¯~Ë7W=7~D €»÷®>øÚí9olüÖüÊ/ÿS¼X.ƉÉD•Á[¤)-g¼µŒƒGZ#Î3q>q8\‘k%k%µJ%je©™9Gb-4@p<9xïÙívçÄŸs&ç¼**Z¥$ÐF­¹;ªÒÔPkcž# ½Å¿j¤”Çñƒ„ˆdÝ`˜W¤Ó‘!8...XRd^zqÑ ˆ3”VpÞð¿}ú›¶@ظi|íš#ŸÚÀ7nÏxcã·æßò¿PRb7 X”Óñ€ÃàÚ*Cð •8GŒ(Z ÞYœ3¤’©­QUÏÒÀM•T+¹u¡ TñÁ¼gžg®®®˜—k,Çã!çÌ´(5b¤á¬Yr¦À› IDATþ,­]ýŒu¨BXý®…‡RJ]™pMþµV@¹˜&JLÐàáÃXkÙí÷ŒãH*…ã2c ܾ}‹Ö?úe?¿ÄÆMãUÍ‘éà­ÛóÝØøÐüÍ·üÏüúû^` cØ!ÖXšT–’‰­ÑŒ%–FnЏ öN…!Ü"/‰ “q´ãBPp­2ZKˉOئøT&„ÉZöÞ3x‹e¥<|HØí‰¥€œ·¤¼0Œž`…à V+­&Zé]‰V2ÅŠ ­¢µÐjATY3ÏàöÞÛû[\ŒµTrÎܾuÁnqm`¨éÑÌÏþ½Ÿà~ÿo±q“xUsäG¬¸{ïê­Àk¶ç»±ñ›yûgÿï}ï 4-„aàêpÅá4³, DðÎ18GÉ1ŽœZAša;T…ý~5†’ V,ÞnM{–ã“wL£§ÖªÌ§Q¥–ÂñêŠ`Þ9âñÆðì;«&@÷é[–…Z+W®H)RkF Xéªƒ×–ÂÆ˜³" ­aŒ0 Ö8´*9%ji=ù/‘Á–yÁŠ %)SÉq὿òË[plÜ$^³æÊ§®ðÇ·g»±ñ!NþÿÒóâ~k ·oߦ©ryû6a¸óüsx„Z•ÃDZŒÖ³œfæã jež¨UÄF±^I)r8>b Q…RðÎQ‚3´µe/Æp8h¥Bm¤yáêÑa]ìSþÖXBØí÷ÝB8º¿Pøk­õ_ Æœ5Zk]ØZbIœâ‚ c-¥äîSP+Á9Œ‚4e1â'‡Z¸¼sÉ ï7÷žûKü“?qµÊÆMáUË•‘àÏ>g{®Ì_~óð»ޖÌñÑ#¬5”–Q@Åpšg@Ú˜¯¼áuEÍ™V+ižñÆBU¤)¯^âTKœ1¼3ä¸0‡·–ež‘ðÓHÖJEñ«Ãœ±Ô”±Ö­Óü}~ .±[ÓÍ„Œ˜³°ªž7¦i¢ÖÞÚ1r:ðC ‰ÒÐn¼v ¼sÔ\˜\ åƒÃ#–š°£!iâMÿ1¼ð¾wó·è¿áýÑ¶ÌÆMàsÖœùÔt¾~{¦Ì~æóžwÿ ã0¯{íó”RxþùçúÀžÓ0 9c¦qà×Þÿ>Ò<O§þo­âWÝq‚ ë M+µdZmДÓáµá¼§j%ÕB³ÆPµá‡°Ú+Á:¦i‡sžqÜáý€‹1–’ ­)µ6r.kAÐ5®WþÆqÿëZk_žç9çÌÌ™93ã1W6®¹ÜKµ"mÒ—HUŠ”¦ó¢'êÅ-ªQ!µ!.`š@ PU&F@ln6æfÀc±g|ì™sÎsÎóì½×åí‹ßÚ{U‘B›¹ìŸ4ò3ã}[{­½~·ïåÞK}ðíÇäŒc<ßÿ%?Áí;Ï`½auº&ׄ±†¦0\ãÂ0Æ£DÝ/¦(>FS(h£ 1д ¹ŠøN ‘i3 ªa Û`}‹2ŽŒ¥*G©­” J“RûàZH¥PkiMÓ4xïÅL(‘žUÿœs_+W®ÈMDkbŒ‡Ç”Zé9¦"ªÈó›¦A)Ån°MCª2¡ègðãØ”õÔ)áµAÅÄÏ>ñ0ß÷ÿ'ïùŽO/¦c¼\CϹó³ö3Tã¯øø½ÿbÇÏýÌÿMœ ëõŠ˜EÚE¥0ʼnÆ{JJXÓ eØöh«gL@e 9§Ãî½i”UPátq(‹%9úadµ\b&¦Äb±`vx«PUÆ}Î9J-4mKŒ(¥ÑµÐºŽ0MT*Ëå*ä’É¥¤•‘Q¿<ŽÃþ¿i6›ÍAHÕŠSŠ4NòZŠ¥59EÚ¶eo[¨Ðä8Ñ-W謱ƒû„5žO|üIžþÔS¼í«_Ë}ñWð†zøxãåß|ßgó _ÐÀ dø¥ãy<Æ+9~í;?Í/þü¿¢ï·4¾a¹îèÚ%C ÔœXv Â0°l:Aãéû gÝzÅåtc$Àœ¤CŸ›„:¯Œ28¥ÑÆP«ÊR‘}»RòXm*Ú¶ÛUáÊ•3v»µr̳‚Ÿ¤Ì"Õ« „€5†~„®W+÷ aÀyCÓ¶Ü?¿‡RRŒ¤œH)Ñ4 }ßsÚ-I1âœ#Vq|æÎm–«%()>ýéOã}‹wžœ"«…È ›-N[†~D+Ã3ÏÞÆ5L9Ñï^ýªÏç ?ÿ‹xøÁGøºŸúüãwŒ—S|í›ë_~©ÿ”£úß1^ñß}‡?üàû¸ýÌ-..Î9Y­ñÆ¢ÁÍ8Ž`=Þ;RHóÌõ4¼´6x”"à:c S䜈9srr"üûª°v}O×µäRÄm¯VJ­’˜×yb­”œ)¹PBD)…3Vpsg¯‘ƒ²¢&˜UEC©o,aœh}Ã6ôL1àŒÅ*…© J¥”Œ6‚#Øõ;Òn`Ý-Ȫrs N Ȱóô}÷–aÓƒ2œžœrÿâ>ƨ¦Iè„ZÓ´-ÔJ,›Ë Jéï4‹ÍÉ)O|áñå¯}¯ëµãExŒ—CüÀ­›ë¿ó’+nÜÜ8àXÏá1^ ñïÙñ¥ß¿äûÿ¿àþ½s¬ãï<%úûVöÃ8’ráÊÙÎïÝÃYÃÉzMM™"µTÂ8°>9Áw Òì¬g­%ÏÉu ëõZì|§Àª[PK¡*‡m S ¬WkJ-ŒãHª…X2Ö-‰VŠš µdtUN¿sí,S„’pÞ o’„?ô=«³B‰èŠL/rÅhÍåæj%ÊhZëÐU1NÛiG¥âf§Cï Ó8bPìvZk¼sóŠÀàœc³¹Ä;GvýŽ¢2ÓnËY·†ç—[Ú“>u~ã¾ä5¯t-_ÿ¿r¼0ñRŽ-põÖÍu|©øáãù;Æ+!ÞúåÿçwïRÉ´!§‚³ï=9|ÓÇ@¿Ûá\+HþZ|z­5ã8pzz&HgI¹p²^‘S$æ|ÐÖ¯µb½ãââe¤Ë7JÜõÂh»–˜•ç,zs) 5UA¼*Uç(ƒìæk]ÿR+¹Ê$¡PÑÖ& Þ8výßÊHßT…D륫×Öb­%–ŒF‘S¤é:./ïKFUè·;Ú¶!Î…»ÝÀb±`š&–ËåÁ¤èùî‚~áЩ0\lˆ!`}£:CL•š wn=Ãc¾Š7ŸÿÝãzŒ—r|Ç­›ë·½Ô €wßtÈSÿªf...0ÆråÊÙAÉnï{¯µf ÓnTÎNÏHµ"lÓ-Ö„¹öÀܽs›“ÅR~rFfJ‰ªÃ48òªV'rδMCUŠ:Oâ,·ëœÃyG-øË9£´$xç½$lcØ =…AŒƒö#u`¶c4¾»wï²Z,eÊ0Ž'bD1'”5ç kH¥PµBÏúþ{ Z 1%¬Bhµ¦„„3ЇUƒÒŠš+SšP(a̯5…@J‘qœ0Æ0ô=ÖjN4ÆÈkÅvêYž®é·LœŽX”Vœß¿ÇCׯ3…Àý݆Óõ ç÷Ï)€FóÈcòÀµ‡øö÷~+¿ù]wøª·>p¼øñbŠÿæÖÍõÿüR)~ xíñœã¥¿ù·îòᾟ'?òLC·–Ó³3¦$â6JAÛvh­1ÔI)’S¢í:š¦ÁhÇn·£]txïÙ×'ŒS ¤D×¶Œý†Õb…žEw†0PrÁXw0Ô9[ŸÇ€5"ÑQ‘}~Îæ1ýÁyoNþ¥Hg¿ßÝ{ïI9 ?g¬±Xc)í¬Ð4 ççç¬V+¦i¢ñ Vk†¾Çy‡õ S˜æÀR†‘…óŒ9‘J­¨ZFûóh¥H1¢­#…A3M‰#ZŒ·äª@C- ï,S½Û4ŒÃ Æ%£•&çÌ4öÔZ(!£j¯¹·ÛÐt-yœè¬¥ìy>W¹dîÞ=çÚµ« ÃÈ8¬Wk.6”ª`2Ã8¢ŠÆ»ï<ôÐÃ<ÑO\ÿ–oáû¾÷àG®ü“ãã^ñÛ·n®_÷¢/nÜܼø­ãù:ÆK-þÑêŸàý¬aß4ŒCÏWÖ'(# /UI¾ÏuþÏíàµÖ´M‡ÖŽªD¿ë:I´5“Š˜å”ZÇžu·8Œß÷ò¾Zk†ak_c¨¥ †Œ²†Î9”Rô£ìç °lZáúÏ8k-—› ¾iÇ‘Õj%#÷(Ô?k-³ò)%¼÷‡•@¥²ë{m1ÑïzÖ'kŠR¤š)@,+ßPµ&©‚qŽ)EÙõ[‹wNÌŠ¬›m€3ki¬C;Çf»Cy‡k[bÊ@’Bfï.8O'BŒ”ZY,\Ü»ÇbÑà´! #)&²®ÜÝ^’rfá=¾cb7ö„œ¨¥Ð5-›í«ä\í×&‹å‚Ítœ#VyZ×AÕãyöÎm†¸òÐU|ð:ׯßà±G?‡7¼íÆñsŒÏv¼îÖÍõo&ßà…PükÇótŒküãkÿ”¿ôWþc>õôǹõÔÇ8¿{›F|ëéºgo¨¹rÚu¤8;;a´µ´ÆRJ¡ñŽ>ùÇ<þØã,+‘ˬڜֆZ÷îÝæädÍæâ>mÓPâD×-PÚg°\Û¶ä”(³› T¾0€s‚ÞÇY’VÄ”1mGVûéC óž’EY/ÆJk¥i[R.T¥)Ud~–çå”(æÀ·†”3µdvÃç£ñ×€ÏhðBL>|áñ\ãÅ¿òÎoåãoþ¯xö™§ùä'>Žª…‡~œ2«õŠê4ÃГS"gèšU4mÛaeÙ-P(´—nÝ9w0»éûþ€€!Ð4-ÝÊsqq9ïÏ »Ý–UÛ¡­a¬u¤ѶE}HúÂñ/³}ns݉»¶mQÊ‹¸N# š#Ó0råÊŠ)Õ¹³µ„˜¨ï^'‰;gZgñJÿÓ41Œgggò8k@Éþ]kE!S«èúw~€sžµ€±Õ:îoï±X,Ñ©Ð9Ï8—?—BÊ¢&˜U=Ð1ìv;𦙧ÂŒpÖr¹í1Öbœ%¦D®Ep J° ¤‚*TÆ8G­ªH[m¨¹@­h-”Ŭ*S 1¤½‰R R —› ZAŠ#ÞZâxàÚU¦~àâþ(°MƒóŽM¿Zâ8ѶŽÍÅ}îܽƒ²´£Y®¸ñªÏãá‡ã‘Gå¾ï9® ŽñBƇoÝ\¿æE[ܸ¹ùZàWçéžñßø«Ü}ö>õ©§qÎâ¬Åhõç»]ÏéÉ)»a+v¶‹MÓŠ.}Ó‘s%…ˆµ缌²U¡”"»ñ¦ÀÏ »q麎q©J’Mßï@ÁÙÉ)»í%ó(­°ÆS@™–¦k„.7Ž€Ðüj­¸F¨‚º‚‰Œ£TEU̶º§4·Äi@Íýík ëå’~˜ð^dx–Â4Nt­“9ü ä>€kxæäØ-[´¶¤”©©°V ¥°ïº++úiÀ;G#÷%´ÀªÖBJbbT«Ð½Kày]aŒ™•-»H!‹ðP¥B®èY¥R±JV¥J–âK-vÇÆðÞ{"Œ>˜¥”äûW)MÓ0M㮇 »í%]۲ۈˢPšDÆ7 ªjNOÖl6÷h½£”Ìåæ’Ín‡õ-cH\n¶8ç¸rzFÎ…‡¯?Êë¿ì/ò†ŸzÍñÇyŒ?k|Ý­›ëw¦^üϺø«ÇósŒÏf¼÷;Ÿå ?ô?úõïäÃz?qœøðïw4Öpít!Æ5@Î3»ß]»v¨à8½r‚³fJ\ÍŠœ*(Åéé™hãËv'Æ6ÞK+…ÄŽ9g†a8|&m…“¿>9EQé‡n±€"\÷”29UºÖ2Ž#9ç†@8þŠZ¥{.1±²íÜé¼ñ(¯DyOkJΘƒ(Oƒ†©JŒ{º®£ä*ÉQkY;ÒëmÛ0N¥J‚TZKq¡5µj†a$Eyî¾H9rvvvè¾jÊÄ1JS´¢ï{¬u,OV”Z˜Æ0û È`?8wJìv=ÖJq ‘c,yŸ¹HÙS ËÜ鯖+”‚{÷îÓ8‡²Šf¦:çǼµ3²ÖCÑc„Z9;½BI‰“ÕZV~!˜Žib;ö˜RØí&T­4MGΊ˜*ËÅ­-9 óúµ3ÞAg`'.Ÿyšúõwó÷K|ãxâó>Ÿ}7{‚¯û¯:þˆñ§Í±Ÿ±àÏ:øptã8Æg,~ý;Ÿåßû¡‡øÞ‡ßÊÅå}¬·´ËŽ”"Öº¶aá[r œ]a»ÛQ+Ę(hºåŠ{÷¹~ýºåäBã)EÝ­ ã8¢”š;úAÈÎøò‚““v»~ùµ3eÍ1 mÛ`¼pú‡¾ÇKÛ8RŒb¸“Ô‚s´¡PeôŸ³tÇsGÊÜÕ6ÖA‚rè\= ÓDLÕjÅåfÃé•3v¡§–J-kÎ:Æq µü°k%—ˆ5šTòœXÁù†ÍvC·XPjáòò’år…Ѳ¯O)‰TðìÆ‘ÅbBÉ‚ІF ¸nG´ÖT£H%Óú=Oö¯é½?LöÉ=ÅŒ1ë,)Æ@Ñî­…³X!«yžÐXk¹¼¼ä D¡”*,­„™PëA4ÉÍ«ƒýçÐJ1mG¼ó‡iHŒ‘#¾kDÕÑ;nß¾³†R2«å‚Û·Ÿåòò‚®^%剡X­D¹pFœµ¨\¹võ*úЇèºß8–ë¶ýŽ{÷©N@§O¼ú5|é÷ý,üÇxÝ?»zü¡ãßtëæú ^tÀ››¯ÞsÎv{ŸFVí’¶] "Ÿ‚o¬t­Ö¦‘Ö5Ô”ljÅjEÓx¦qÎÓ-—L!Ò´b·«¤1âç‘pŒ‘˜ã<þ t Ïn×Óuݼ¿·‡;­õaœ=Ž#ÆÚ¶åb+šÿZëÙe/Òv^$•(ü•šÉ©s:t¦ÆˆñN jôÁFWGÉé0¥0ZÍ;ö Jþ×5šª…Ëï­cmÓ0ô­ïDMÊ’e$Uäg°`ˆqiÛ–R*ã1FÓ4-5§Y¶XV›Í%ëõšP ±JLtM‹F”5„QÎÌ2Ç#'‹¥Ø×Ê4M´mË4M²«ÏçFÉwQŠtøÖ èr?¨Zœ Ëifo€Z*¹d¦qby²fG\ãPJK!¥Ÿ+]'çMšÆbÀ8Çåv‹Õâ°—&Þƒ-EËA¦!ñÈò½[o‰µ ­àöKòœÐ%¡¥Ùô;R)t]‡*•RaæñÃ0LèZ9¿ó,F‰záÝó»¬ÏN 9¡-”2²¹¼¤i:vÛžåjÅ0 <üð#l·;ž}öñup†Gyñ¡'xä+_t;|eÇ[nÝ\¿ùÅV¼øÒã¹9Æ¿±£ÿöŸ]ã_~í/S`{yÍå%›Ë ¹A‡BÈ™+g×X,:ƒ¥È8MœœœPJ¢ï”¶\{ðr-¤’ÐFls/“€q³e}²b¾iÓ„5–Ze¿§@ÊÆXœ1XíHIÆá©$Æq8ì®Q2ú®ÀjqÂ;w9==pج§¿OÞ{ Ÿ¶^&Yì4Ž8g˜†ëD—?¥„Õ5wúã8JâŸU·ZrçÎÎή‚²¤¨5ãµPù†amÈÅc 'jš;yc¥®µ’Š]G#ª–ˆqŠ!ÄY¯@¨ˆmÛ2ôÞ¶ŒãÈbÙ±ìZ.//…¶è»àœ!ÔŠiZÂ0R’<×hMÈ f+áP¦ÂÂúƒ«aš½Bˆ¤$j†ÖZ«-TqL1✧hÀj”1T­u »ëeõÒ-Ä”hš†ËíF4Œ¡Y éyÒ±/6bŒÔZgß„Ì™ë˜Æ‰©$ŠQØÆ³ë{Î: ‹ÆC©¥•&dB`µ^A'¨Y\ ³áâü‚õjEIra;ôXo¸s÷6hEãºÆËôHëYnyÁv»‘iPÉô»‡ygÎ?ÅjµBkǰÝRŠ]œïùÿ~¼¹¼²â·n®¿ìESܸ¹ùRàýÇórŒ}üãþ)ßüŸ|oøÁë¼íõ?Ïöâ.÷îÝC)Å8ìX´Ö*”ïÖéTK…¹!º¦ÃX‡q†’ µ€ucS4m#Ý.òkœ£ßmh}Ã0ÚnI gý¶çìä„Íæ‚Ö{”ª(¥I©’ì“•Ò„0b¼ÅyA§kciÚ–a³›+XëôfŒŒ‰S¢ñÖ3®%†‰Ý®gµ\¢”b¨2ú÷Þã½#Nv¦†YÒWÔñ„.7ŽÎ7D´Œý)UÑ AêkMU"ÃkPØ\èÚ†]ßS…¸ˆÒRäœÅÄg·E—L)•¶mDJŠÏíÓ§i»–8E¬÷h-,‡¶iˆi€ž5øÆÒëüÜõ –AkMѳtÜ¥ Š¿õNô´!Lóñ¦Àr¹djU¢ã¯ µˆ» VšÊjªRd²2 ¦iÄàh±Æ`´¬AТ>¨´Á)7†~h\C­…Š|Ö£à ”Â%)œ²R¹f”Ö¤RækE‘ƉÖ#*…|·äb³Á6 oˆqÄh…·žœ5ÛËgNkrM8ë€Â„~éGGÈQœ§01N#H)È Yi”ͤ2h›]·Â‡Ñ†{ç÷ ™ ½ês1nÁ—~ÿÿŽù‘æçæíü·wþÎñfôòŒ/»usýúEÍ¿Ë )ôW IDAT“Öozóßþ£ã9yeǯ<û÷ùÁå_àÛùùÃ?àuáçÙn.ð3jþ±GncÆX‹rެ-Û”HƂѴ]KÕš¶kÄ~ÖjPŒèÙ+]隣*ÞZT­+«Å‚4¥pÚ‘CD[a †­Æh@ÖU)T•äÔ.WL)àfý}ëû½þþ{ÖZSP‡b ňA€ž®ñT¥(ˆ&ÀvsžM²÷žišÓq>tš¦š§0z–rÎ9szzJË…¬¬„}`Q°Î™Íh1A2ÕÊy…Ã÷¶÷sد)¼qÔ1•H$‡šÙlÄ÷À9GèG6–B m繿ÛÐ.XïI©ðžüŽãMêå¿|ëæúþÜ €77×OÏÇ+7~çïnù¥wþ 5%šÆá¬Á[‡ª•i,ÎNÀh¡Úµ rˆó¾Û ­a 0M4Ë–ªòÜ%ËTj{‹ÅBvÇSeì{Ö''¸Æ“ÊìŠg-Ó8Ñ8OãÛi‡oŒ7¾=ò<†8«Å‰ÊÒö¦AÐÝq.”iÝ ´ËŽœòl¿kèwJi¼u„0‰Y6X';ò½Zàþ¦¾×à×Zc¬&„k<©I„Z£´L5¬ÒP%¹V-S‡R+yñqÞÕMìY8hÞ«ZÙ\n$Y×"¢ú†í–¦iX­V‚˜?ü0Ó I$Æ(ßs-äZÈ¥À°îÞ½K­R€”\9Yá¬gšô·ß³ï‘ûϧúÅœ°Î¦‘“Õ‰(óÁá»­Œ·]™&™Æ í>ifФ©EƒYŸ<Á^TèùEWŽyN¸ruA!×Êú`Šë,1L–À^­pÿïÀ¬‘ h bÎ03?ö±w„œ¦ ´®=|k,1Ú¦Eia@ȺIc><÷ùFNûcRJÑ8O¹9")+ÖÈCß³Z­¹¼¸zæ41MmבU¦ŸFîÞ»Çׯsïî%o¹û=Ç›ÕË+¾usýÌ ù‚ÿ.B@G#íWx|ðC¿Ç4EÎNV8kX-ÄaÂ;Çj±F7ŽOŸßeµ\J‰9»è•ZQ¥bæ.íüî]®=x•~Ž}?sí—Ë%9g¶Û-o8=Ys²Z1Íîœ3«ÕŠë•þ”Xv+PêÐÉ9Û@5¤$¾Æ{ŒñT¥Åá™mjÛvAM3‹¼”Ä8”µÔ\D•¯jTU¤)Q3x#€®}"ܫꜜÐ÷ýÁf7ç œm0ÆQ£PÍŒÒÔ,@UË䢖L‰ïNkH…)¬ê]jÎeFòGjµÂ#Ý¢#Ä eD±Ð· Kç¹Üløã'?Ƈ?òan?ó,ŒÃHÓx†Ý€óŽE×0†‰+W®òÐÃóøãóÀõ¹öÀ4MÃvè9¿sÎÕ“k1NÏÉìFé sŽÔ* Gß6Ä”iZ¡×M!pzz*ÅÃrɶßaÕ‰ï¦qfPȵ¡´báT.ŒÛßu¤’gV†=¨î‹}A€©óUZÑFãŒgO…Z3ZÙ™úXd2äÜ¡èÜ[>wmK,Y ¹™É°Îóå—Ë%)Œ Æ4MT­èš–ii»ŽšAÑ<Ø[;ÃsŠŒ{£¦ƒvA”Iƒž1ZktUb73Ëåòpìp§ß\`½ãäì”R+©$~øë~‘ïøÕo<Þ°^>ñÍÀÛŽÀ1þÜâ­¯}O}ü6ëõ)÷4ÞS+4‹jNFýnÇÉr‰™oÔÞ{ò4 ào{vM‹ë„òµ\­„*VfŸø¹[?;;CˆÅðo~¹\øÝ1g¼oðZK¡Ö¢ëÄM® ƯRŒXß ï)åƒíoŒk ºj0š<3œsX%šòm#ƒ#ËÅ‚¤êœóÁqnŸHö¼÷”‹ÅJ8òC`Ù.™&™Xç(9‹&@.¬—KÂ4QfVÁ¢ë°Ö°½ÜÑu5rHÚZ.7XgH!°\´´ÞóôÇ?ÎÇŸüc~ç×~—O|âibÉ<ú¹¯B)ÍC>Â8ö¤”X­×ÄØÝ»à‘Gnpûöm¶çÞó®_e7L\»v'žx‚7~ãùª7¼žOܺE·œ¬V„ËI&7ŠÝ<óÆ÷ûleÍü>£eÔœs¦»ú\2ÖA+7õý8zߥív»ç  TR’âÁjƒmrXï0{É\mE(QÜî»Íy7]ìE°ñ£aà×Þó~ç7ƒ~³åêÉtt8×° Yò†aH1±Z,…QP Œ‘de'g¡Ã$¸ŽFó¹_ô…üåoúK<øÐ5ž~úiJ)¬k¼õb4ïÜB„´ó%ßk 3ÏyÑý¥R5T¥@@Чַ4F;rÄ*מKnš†ËËËÀC3«,î¯#eæU‚Y³d0–aišæ Pt8ïó1ì…¢º¶£úõ¡Ph£™ÆQŠ·R(3«*ÆXjû|.÷E„óöOL0ö´Ãç{%Xk‰ó„H3_31bf–BÉ™˜3Ó4bŒc.‡KŠ*ØÆ3 çç¬WgüwÏY/£8¿usý‚ Bü©&7nnÞxLþ¯ìÐÚú‘îÚuœu(mPªRÍܽÏÂ:tÕd ÚX²‚)X´w¨RÐY¡”&—LšÍdÌì²g¬eѶ¢Ô7&”U³Íldšdüì§äŒÒPs&‡Hç›Í®ÖÊn_{€4tCÞwcc4JI÷¾ÉþŽéð˜ZÆ*BLŒ¡¢TU™b‚çÉû‚Lö ÀçFÔ*ŒCÏzµ ‰=¿ï{lã±gÞrÉb'0¥”金Ååp:qíêUr-¼óçÞÉ»ßónt©¬K¸ò0*W.v¼OÂÓw’3UÖ©ˆ¾ òÐÚÑ÷#Í¢cšDîxo„Ô¶-c <ùGãþÂ?âë¿þ«ù«ÿÙ·‘Rû]¥Y,XcH1 >ÂHBÇíê'lŒ<O1£ªUÈ5¢¬¦iÄ=1f9Ȫ¦±è¹CÞï´Ö´m+à¿yœ?õ½ðò­%–DŒwè ª(íS­,Ü ­¹VÌ,VTK!æLNôÆB.¨""PÓ4a´Á*aè*×K©™ª¬­skµÇN£¡*BŠhóÜŠªÖÊn·;`ö8Š£¬ÍŒ¥V¡ ªù3î‹€¶íH!C) )E¦2 “åò §|Œ—M\½qsóÆ[7׿üB½àŸê Y¿éÍß—J¯àxä߯¢q¬–+R’q¥õ~eb‰˜ª°¨L–avrÓÎRÍ< ˜Qé5'J3éœ5FkŒ»Ba•tßã8RÄ7Ž¥ÑŸý„A:¼8{Ñ‹ë(‰h޳湃ÒZöÌ9åç@dóMy¿çUY"¬£f·»J‘Έ)cÂywèøSÊ3 Q\ìÚFôÊì^§”–Bfœ°Î¡µ )§‰i^Y £fm ÐJåÖzR0*óêÇ_Å{Þûküè?ÿQ>ò‘?âÆC0ö‘2eÈ U ÝrÅYíå£õ cl£ )e–«SbLäZ¹¸¼DÃv·•ýµÒ¤” 1¡µáúµ¹w~ÎO¿ýí8kù¼W‹¦áö3·ÅÀ*5†nÑVÄ2³êÌòÔzÔE¬s ¤’0NK‘ƒ€àrqIVJ´ô˜éAäŒeœ®‰Ó„™wã¹dqS AF=(rL¤™f‡Å}AB)ÔZ¬„›¦ÁiCœZ)j–„·ŽÄi·Û ±qèç­Œb]”ÝŠýúày)‹VÀáz› `ãìx˜c’…µ²~š×[¾ñô›(%NÓ(X„ù¡µ¡¤Â/ö¯?Þ´^^ñôæ]oyçŸWðßÏÁ+7ÞÕßúà1MCV™¢+1X±V㔌yS)¸¦‘›qZb¦¦„È¿r*xçð¾e#®š©é·½hÅ+-Ò°³s õÓÜ9ú~ é:úa (éô«†0Mø¶9{“Ÿš ±PÄ}Ï(…Føj.<ú¡³œ\P3_Ùç’IÈ…!çB?Žë©%SkÁ;3O*•D%“Iä˜ )ˆ¾=m5…"\ôZÄů¬•9­!g)f|ëı‰Åªesÿ‚þ#?¿þ…ÍÃ×áôä 1ˆß@×tXã‡À”ÚÊç¬hœ5¢W`<µˆ\p­ŠÍVly …õÉšgoßæÆ#bšÇë^&> ÎÏïríêU–Ý‚~äxÿïþ.O¼ê >ïs?‡Ëûçä˜Ð®¡Ä R ÖŒ32Q‰9‰H’“ãÒÚ c-Sü@*P´œOk%f´RÄ1@ŠËl„$Ϧ€Õ–3¹¦”ä©Ã8`,ÅñM‹F*‹!©Ýî9BC5¹ÎÂR‚Óˆ! f}…=¤O<d]“S†ª™Ÿçë0ÁìWYÖf/.5¦)ebN"Ìd *ƒ*oŒ”âþå–;ç÷ÈJÓtžíö‚¦ó\l/1Z³Ûl1Öry~ɵkðs_q¼i½¼ÂmÞõ–ü¬7nn®ßüþñœüÊjlëY,"q«Ë,Œ"£ReE1/ÆHÉ…’2zFÿ«¹³ÏEFí!eú~š 2PE×ÎÌWkȵÌcS1×ɹBœÅ‚41%‘ÙµVöÎJÍt:t·=EO©Šž`{Ê™L f#@Å  S˜ÐÐóèÖÝWJ£”ÅzË~w]fnvÓ6”’»hmô!j…¡ï½|G9ãœ!—„sg=9'¬•.Ïi[Ï~ïý¼í‡Þ†©†Ó+WI©à]Ëåå–Z¤°êû”bŒ"9¼\.ÈabD>Øhfó ­k˜BÄ[K¿ÝˆÐÒrIˆV‹˜‘V–ÅbAȧ§§\^n)E@”Öz~ú_½|×¼æ ÙívfŽ{’õ¼]9¬ ¤3F”çïº!&™,éÙ•p^ÝXíÐJ ­*fCªU¸ò¥BÅPb%…ÄžF©fp¡_ÓXÅ0„Ù‚XºìiX/Wâ „Ea­¥D¡kV ”Œi¼ø@Œ#ÊÈuwçÎÓpzzv°AÞl63tD)ŽsIä$FG¥ÊT,Î|~=¯¾ö ;OgöòÓ)glÓ°X,i—K0–'V«†;çwÄË¢X­Vl/7œžžqÿþ=¾óË6¼ýÓGÃÖ—Q<¾~Ó›ÿ×Í»Þ2~V €õ›Þü­À~üþñ×_ý q×SLnjJbÀS«Œ’óŸä;§y¼zp{›C{'üû!­fävVˆ*ûŒ©8ð´÷;ÐRÊð÷|>øóxöûø¶mŸ{o-‚71%JJ¤" Ö)ÎÉIĉòl““P…gî`³\2TÙA7Þ“SÆ99ö½0QÊ£ì\À”ƒÐÌór BÆÄ‚GÐê»zƯÿúoð³ïx§«Sqí«†i ôÓÄrµÂZCʉ’MçÉJNä8‘bDS9[®ˆ³Šbë'Ë%÷·\¹rŠ3¢¦˜s¢æÌåfÃÉé1g.6+«cÔAY0åÈ•+WøÐ‡?Ä;wù†oøîÞ¾‹V ß6óêEV-ÆÚp.¥HŽ™Æù5/+ç=Ö xN[ÙÛS+)'b PÌè¬#×:ƒçÇ+03ðO³·.Ô$øŒ*•)Ï…Í¥ʈ§RŠT ›Í†ÕzE(‰)Gr?1¬FÁ^DÈKßä”EÉщ7o,uX=Ym`ÒZ+J‹ò^>yOí“UD!ÕŒVZä›Sb C€Vâ(Œ”ÀºIîvÂòSà]ýWoZ/¯øÍ»ÞòÁâ…þ4 À7¿÷c ÀÒH÷?ZÍ:ô(´·”R¸½*ž$¸|Hâ¶ñÄœH1IXUÉ~½¦BPåÐöIÿ`Ô²X 1ªqJÕþFx@TÇÈ8޳ö½;Üäü‚Úw«“Â5ž’JR?$uÈ1b”Ňs†qð›÷nN²‘!%âˆ!⼓ÿ¬²WgI`=ßô÷{ßçﳡâÝ‚œ%ƒ³Ž8N<úècüäOþ$ï~÷¯pvz¥,( *ƒ‘±þv·‘Î9OÄPAQ²8ûYm°œ2 ›Kçhg“¢a³áƃpq~Ž2•eã¤ëvžk×®q÷Þ%Þu c!é‡ JY|Óª´@u oÿéŸæ£}’¿ÿ÷þÏÜ~¥E)|× ŠHùŽÃp0ò1ZpˆÓ„²[+9+éz­¡¦‚òVtˆTc°¦$ª‡Zy ²Ã· ”2äy"DUhaNøªB®°X.ÉûiDÉb׊2`ʲj89;år¨%£Œ¦1ža¨sa’K&EŠãìÑ4„) ­FÏ ¾4ŠÆj.´EÃ0ˆ—‚12ÁR ´àŠƒ$M%ÔLžuÆ¡%ÆaÀ{Ïýû÷:]סu ÖpôxyÆ›€ŸúlO¾xèøÝã›üÌìïŒ ¡å.*;öœ+e¦ßíÑÍ{ŠpèÐÓLírV,vÃ4ÉèߴѲgŸŸgžç·7°y¾Ê¾óßÀsþï³óœžAYhÈ¥ì×ªÄ +‚\2Åè}­±¢ëï›A‹ç<) æA¦ Z^rw;ëfÞ¾…ª¤y-€úØ~"ñ|é×½̾H1ÊQkA¡ñÎ`­áÇ~ôÇxò££q-ËÕŠ4&bÿúBÅzÇýûçh#ÉÉd¦+]Ó`j\ –]ËÂ{Ñg"ã­%މEãÈ) Maµ\0¥‘ÝvG·X2Œݲ%H5 ޢʸ7ÑY®×¬ÏN(©ðá?ü_óu_Ë4Šâ^Šé`ÇÛ6 Í,[l”¬ušY©ÏÌì‡=ýR1WN 0JTöbz˜©Åç¡RÂDÍù€©P³Îÿ^±o¬;òÈJè9ç@¥„þRdÖ;¬óbÛÌì.8Û›ç]Ó%É´h{yIÓ6b\T²xÌcü˜zÆÈ„(ãþv¯%P+1 £DÍ@D™xÉt*Æ(6ÒJ‘KBk%צ5 ±–~׳^ŸpçμoøÔ§>Å—ïàw»£tËË,›w½å{!^HÿÛ<èÆÍÍ ŽÖ¿Ç˜c¹ZbŒaÚõ¢-¯4=ïÔe”¹ïƧiúÿM€˜WR‚\i}ƒVŠÂ!Qbeÿ¹/$ö„½Ïüž_½_5ìÁ~ûÇ=_–Wß’tËŒ²VZöðÆš¹#5Xkq΢r„úüZÎ:œõXmåqÆRb×ÐZÜöÏ[A¢]ŠyLÓ4‡Ï¼Ý}"ÚLÓì1O™v;~æÿ}ýÈ“tÍ‚õÉ)Ó1VÑ´ž¶keB1 XcPoX¬:”¹ã¦m1³Æ~Óu\½z•Ūc¹Z°^­)¹Ð89~ïg«Y×~æék%ÿ(*uN>Ú( RJ=ØùŽÃÀîr µò¾÷½Ÿü—?Îj¹àâþ}”–‚ÌZal¤çI$¸ƒÐμ)YvïÎZïe]0'PUëa‚b´ðñKÎ´Þ o¿G7Växgô½Öç›Ã:ÂyO.™a삪•¬†J¡m[ú]Ïf³9Lž”֯ܳ3öô½Qs1ª•–Ïj„.X³èH´Îc”>°Mþ?öÞôǶì<ïû­qg¨ª;ôÈ8“2)R’eY6ì¶áAô!ó‰H’þ䃘ùâAà8pˈc6’x *²f‹¢&RthRd“b³Ù}»ûÞϰ÷^c>¼ûœÛÊ ’šéµ€$ï¹U»v­õ®÷}žßsèTIP““Ð*˜Ý4ù-ha å”°ZÑxKÉ;;j)‰¦€Öšårɳïzãì/ÝnX¿ÿÖGæ3ù›6øã·Ïüv=^¢”ï»§ ia×Rä–T2zni+¥3ýÿ/-ï”zú¨Y}­µ!)Ežá0ǹñ|«1o·ÙçApØ]àX$è·XüRÌÇŽD UECCD9éL› +ç€:{Õ)hÚNn¯a0ó÷‘b¤õ 9e’Ö8'° Òl”BÇÍ~¿g¹\RŠ€vÞ ‚…Ò™˜&NW >û«Ÿåk_ù2÷ïœB¢Th|K(×ìvçøjèL‹Ÿwš%hÅx3R¬šÛž2åŒi=»qÂ:Íç^þ¯¿ñ€Æ{œ3ô‹£äpk›–8R2ÔÚÒyÅp~ÍéjIÌ‘îì”ýv_C˜èÚŽ8œ­×ln.ÉqdÚ¾íCá3¿ôËœ-ùŽ?òLiC Ö6(%î€CHÒá0?†ÚÈ;¡EcÄI‰œö;¬räQ ´×´Þ“™1¿FKðP‘uŽæØfŸûEÔY$: zæä”ÙÆYœwè"Ý£³ÕzVøWjL„Waý¬ß˜&¦a ³¢1‘<ˆŒªBÀ5vN LtåÔ*ú…šR3ü ÐnæLs‡aÐÖ’±Z†ÛXÌQ6)¿!‰˜¶òÎ__ß°Ûno·ªß¿ëû›UÜ&ÿÝ®·´ðµÌå‹3Cxæä:] Ì‡ëáÐ}+åì€IÍY檭÷²©ÆŒ©†œ¡%ùíNüÏf>Ô18çŽ*íCp¤¿½åF]ke˜g¤fNq3ZÑ4r€ëƒ½Hž|Œ‰ÆZ¼u4ÖQÓ!»9Œqìw®ñh4UÚ®!‹Qž¦i$†Ö;t9ÑX#]ë1FÓuÂõßívÇBæ£M¥”ˆu†¯¿üu~äý0wNïJ‘e,›a í;bH,úû›=§Ë±†i¢”B·h9½wÊÍvK˜¶l®·\^]ˆ5†¾ï¹{¶fÑ÷h#Œù‡ç7¼ßQw{¬u,ûÎXÚ»gôÞ1¦Èn”1MÛHÎÂv»§ëz†q _,X¬zH°Fžyæ~ò§Š{ÏÜã©çŸ%倵 qšh—=)&ÁÑÏßu‰Zœ") 9²Î(àš3EÛ.1]+TÅ%>ÚÊP³¢PóóOQœ"9gR.`ó«je½\0Ó‘é’±Åà»–0î‰ã¹ UP+Üì:™¦ ;g”ZñÊIÔCÒ_%…H©2¶’°)fÌ´ŒNê<ªŠ9JÂgA SÄ SKE\Ž o 5Gˆ‰®qlvÛc±«”;b–år ›Ûýê÷éúc¿€þçüÿýÑÛç}»«iZ´6+"7A´õâÙžô‡8nN‡(Y"„ÈõÕ Ûí–\ ýBRæ(ïœxÈçM7•B~‹ „HŒµfiçtäÒ+%ÊëÅbqì£pÖRja¦qKb…¾íh›FÂyÆ U 9V”ÆzH ×58ï¸ÙlØl·he)¹S˜£Œ÷Ô\˜b` m-ݲc¹Zà½?*µK)uÜõâw޶ó( Ó41N#}ßóC?ôC<ýô3BƒËr³K1’Cdݬɣf+×Û‰h-ªïéÏNÀ{®®·|í7¾ÊË_ø»‡_§){žX·<}wÅÙÂqwÕ²ð óÈÕùë4cšF†aµ†õÉšínC*‘T»i Ô„WšÖH ïŒP»œ IDATûJb? \n÷\n÷Üì÷\\_3¦ŒïzþÖßý{‚ôÍÒÙHUº0¥pœ»;g­ðE˜—’t\ô| ¥Y.×sŒ±ØÇi<òöK.X%jceLìUi|CÛµhcHAò®nn(µÐ-zBŠ"|ôž¢*»ýŽÍõ0"´p"¨3‹Jµ??¥²ZôÒ¶'œ62«×óh>è•Ñ %Ñ1år„•œÅþi,­õ€hÄY0³f—JŒòžum'´HÛ’rE¤·æ7e L!醷ë÷åú=9“Û,€g>±¹ <º}Þ·ë°~æÇÿ ÿôÏ}?‹¾§ï:iQγ¥!×|ìÇÃïpÓ•ÍJÒýÚ¦™ÿ÷9¯r¼Ù*8Í0ŽXcñÖBÍÔ”±F‹¿:eJª„X±ÎÏa.”trŠ(í8dš–a7Ð6 ªTÒŽ-ð:ûÓg¦æPÅ88/Ö7T™í‘ê 5ešyÎ_\î·œÝ9#Œ5$c~þ)ŒøÙ&vhãžEŒ2&ø±O~’ó¸xxÎzuBã[Œ±\o„¿ê–LãDRMmëÑ®ÏqyþÝå%/>}‡;'Kš~ÁýûOд cŒl÷ûÝžDÆ7û1 ­c ‘Ínäf»eÙ÷ÂÏ' ¹Ê\¼ë—ŒS äÊ~Œhc B–ƒÑÇÒöTo^¼ÉrÝÓ-Z~à~€ÝvOQ†¦[‘§BÓbP(ú®?ŽgŒÖXc™&d¢JT‹G-IH ª0ê\XÉ͹1ÇóxІÇ.9Sj9j5¬³¢Þ7úØuòÎSƒŒÊüsÚî¶,Kâ8Idqδ֑gà‘uŽP2ÚJpU¢Êgç„F£ŠA«æÃa¢ 9Æ`¬!„A´%(ì,"Üo·¬WKÎÏÏ99YsqµÁö-ûÍŽÍæšœã0ÐõÉ¥ð_íÿ³Û ë÷ïº÷Ú'Vçowà»oŸóíúMç?õ£’#¿XBŲµ4M‹÷Íì×ÇÃþÐ’?æ­×Y,…Æi{Dþ–RPZ¡1zžI;ï©HRàa| …Be&Â$Én‹eµšR’ðÑg>Àac¢‡ç,Ã~?k$ã5 çÛYˆ3ˆ :³\õX«Ð‹ž”£·¹ZÑJ"†W‹%Ó48sŒlr¸y×bŒØÆ8¬ñĹ8?çË_ú*ã8ñäýg°Znr×××”œ˜Æ=y»§Wš°Ý`uA«„q…ÍÍC.Î_Å”‰ôƒ|øÃäýü§g'ì§‘¯|íeÞxxNU†¤4û1²ßrN„¸¾¹Axþ…çp­çjsƒóŽ;÷ïâÚfØîÆ”¢ÌåcdŠ”3±V¦”cÂ8OAá›–W¾þ W.!L*”i‚R)%Óøf~7æT@ötÀEÔš$QAHNŒä1Ú¦Q6²œ a"ÄÈr¹dš&¶Û­ˆgû帓f"¥wt…’d””©Q‚xÂì`PZ¢ {»®Ci’!3•1ŠRâl™;PñõP‘Ì€YˆRÒ@ê¿cá<‡‰6FÓ+jJ  i[RÍ´}'°*£Ã@×:ÒXö=M#DZÕ¹x»]¿×ïúl¶ßŒ¿äv½½ës?¸á[ÿ²ÞüÌýiþøŸþ1~æÇÿ ñCbóïþdgð™”#)BˆäœD€”²ðèµ R»¾gí=CïZT5ü«?ý‡ßÏýÙüâÏg6› ëåêHÛ !Ì›Ÿ0ý«ì.ˆ°ëph6Eg µÂ4¯Ì*fT̉!L ád¹v¾÷Ä8Îh¬5P$Êwš†Ù–”ú˜ë_V«-¥Hžo’ÆZ±hi}l×:eI5 ·?GròªÒvžÝ~# |Q°Ç¥L­d12ïÅßbÂiCE‰50j‘¨ÑF 4TJ…“ÓS~äG~˜åbÉéòŒýõ– ã0±Xô\^]°è;˜1 ´¦Ð8ا‰¯}ù%ÆaËóO?É·¼ïý¬kªra{¹Ãh#±ÄJQR¦[´ìC`…¦äÊDd¹ã‰'ždÜoyêÞÓü­¿ù·ù¾ïû>™¹û†¢2KÊ"¢ô¶¡Ô<EuÎ^°TC0ë$Ã@sk,Å8œ•Ãò`Ó<-õ[ì£R#HñØx!úIE¡R±ÆJ(eÌœ`¦ ×6ÇâÃ;|,h7)o) À²šTæÏ¨PSÂCÁ‡ K†F-y.|«äK(+sÿœ¨)ŽâEŸbÍ"´¦ ×8ò~ Œ§+iÙßl(ªâ}'úšß‚÷Ùï¿f÷oÿ;¼úÿÛÍ9g}/éœF‹…UÑ£„]qö7þg¦ïþNv|ëŸþÝ«¯óW]¾uüWü£·{ð?qû¬ß™ë—¾÷_ÿê—xôÆëÄ'9¦T0V¡k$§‚uVH{‰+-õ˜ÖF-ä¹¾¾b±¢…H×.y׳Ïóñïÿs|õoþOüû¿*¯ÁgpËOüØ?äôìŒE×ω|¯-•JÛïàa&{°,pÐó­^[‰PÅHxJ-•< ¯õ*©kU¤­ÄRˆú?Ï„¿ZÉ¥ ¬Å4òù!ÊmÏxJJ(U‰Iæ¬9‹bû°©UUUbžùíoébæ¿›£õž}*èTp3ê8©ÊT2MßIêa*Ä1°XŠ¢|ö8kÑfΆŸÓ ·Û ›Ý%å/ÿw<ýä»ÐE³ô ¨Š4 ì‡-cœX-;lŒèši-Ê^úÚWðåþSÞû»q..®¹ØW®¶#Ó4Se¸5¤, &¡8F£™ÂHU†~±äìî=Œ5¸:YU¶7ÞõÔs|á ÿŒ'žz’)ªQÄ”ÑÚðèü×4XãçL…ŠAt «eÇ£Gç|Ï÷|üð‡Ç‘¾í¨Î°X- “ÞH&€¤6¾™ ½ÊH´³RécDUÑFèªÈµ`½;†í÷ûãÁ}àAìv;ú¾ü $³éÞh5F Rï„A 5©ùìyþ_k¥w Űߋ‹Ái¦(µÒÌ!Uº ÓB¡pÎΘà†'º¾%—H)y.N4Ö4Hž@Âjd”•UÍÄ@ïâ@ãé¶LeJLû-Ó0°Ûo )p³ÝÒõ=ýê”O<üOŽßê<ó×ù|¹¾º¢’Ùì¶sPUa±èÄ~Y ír¶–”…U1MFYVË¥Œ=L«éºž0E¦)qvvw/Îh>÷yþÅøço7æoÎú‰×>±ú“ow°·ÏúµþÁüßy³&Œ†q»E©ÊÉÉ)1$R‘Lòqð^v¹ífw (‘ð‰iuΣ+Î;¾ñW8»sÆÕÅ5J~é?C-šøÿ˜GWü{¿ aŸxâ¿çÃþ09¦£¯Ùj¹Qç޳m=ÇýàLÊÑÊ7ï«,— ¦0ÍðŽEJNi.Zĺ׶’¯~_¼•dhŒAYÍnŸèÛ• ¦BVŒ°ãu…¥kÈ1QÑ”2' ºF¾Ýî†{÷îò_ÿ7 g<º:öÖËSö7[¼·Ô¨$Œ=ÂéÉ’qܲvÔZI1‰.@«Y içP(õ›:dmBœ¤°Èst­0MA:"M¥§@Í™0Nô]Ïf»ƒªé+±v—W7Ü}ò)~í¯ùÿðoñÒW¾Œ÷žÆ èj±Xpr²b±hÄÒš2›Ýžív?*9*ж[Ðõ nƒ” Z9v»½¾ÚƳè[â4ñ“Ÿü~î#?z»Q¿ýk1ŸÑoO܆I¿׿¿ü„¨Ö‹Dζmƒo-…ÄŒ†iÜsÿî‚¢q3eNkMãÛù 6hm¹¼¼¦i[úÅ‚nÑ¡gOu¿jÙì¯ñ½æSŸþ9ÆiÀ{Ç_ÿ®g¹ZQJa¦i:¶AÚðrS/ÇÛò[ÿýHé3¬F[‹ñ2¢£à\-B"M=[õ(UþAªº_­•0jÕÄX±Æaµ;n¬µbžˆeê1´!Éø!æ,HÝœK‘`žÎ6€&F™ÓNSF@‚c‹®“M“<óÙ—­•Ÿ:à¼Å:ƒ6jîjT†q‹sš'>ý Ÿ¾~9°ÀÉGØÃœ°(Ç›qÀ,z^yðÏ<÷.ž~î]\\m¹Ù6»L1ªYòèê!ßxð çWðÆxá™§y÷ Ïòíÿìþ¾óÛ>Ƈ?üaNN×\_]rqyŽR•ëË+öÓÄ£ËK6»‘åÙ]a¤DÛ.dÞžD j-ÜÜ\qz²"çH-ëë+Ö‹^Š:cyøè)eþþÿö99»Ë7^yÛô¤”ƒ—]Ó4-Îy´²s Í„Ê• ÞXì¤Ä8ŽŒÓH,™¤ë<Žx¬úoÛ–qñÞãœcÇcW¡Yôl§]%­Ñ9†9ê7¤HÈNÄ\¸:ëŽ]…wâPd4M#0¢%cavµ‚§¬w0'–ÙöXç4@´Œ.9ÝügCŒ’‰¡¡éZ U…Cз-«¶—÷XŒo¨sòk¯¿Éo|íë´Ë5›ÝÀ_ûÿ[>ÿ¥/áû–¶ïñ}ËvÜÓ.{šE‡k1\åôÎ=îÞ{ ßvhÛ`\‡6U ï0¦Á»–E¿DKæ#i˜ðÚPsåþýûX­øÌ4ÞnÔßœõogp#õ\¯þ›ÿ¥TšÆ£Te·ß°Xôì‡ZÏig12ìvxk »o,gëSj–Yƒ¢ó-O>ù4ñ7]GFy¬7œÝ]óðü ¾å[?Èßý{‡¦m™¦‘#›í†ÕrE×u´m{âôl«à´ÇzEÛ9îÞ¿Ëý'îòæƒWQY¾÷³ûwIszä!“aÇã3ÕZÓ´-ÎX´Ä7m1'V+y÷ÔŒÐ-ó]²p÷ûø¶íœ;v…¦Àh¬oˆµk¦¾%Gâ ÷Púq΄­3[ÀÚÙYÙïväñλu’hi5ÿSlåˆ<>Øs–ØäZŠèŒ«ÙÍtÂóGçl67ô¾esuÃ4Œ´MÇõÍFpÌMËé{|ñ׿īo¼Én±MÃ_xöàçáçY­–„©Ú¾ãî½{ ”äh…müL%Ô¤ª(Õâšm<Ú6 ,Ú4´Í‚œ!ÖëS(ŠÕr‰Õ–¾ñ-dÅívËßù~ñv³~û×ïêŒþí\ßqû|ßy+†AÀ-!¡´EëÊ~7±h×XëˆA6Ç”"ÖX‹5——rûœÑµ¶ñhçÙ {ŒQtmCJ’2ºXZoxóÍ7yíÕ,ûžßx•˜ ¿ü³?ÅûÞÿâvËò¹çv;™©"–.ãœX½”¨¤CŠG6{$“UQ“ª”*°§¹TéjXC®"À³­G£ˆTjÕTTs&…DEQªÜ°µ5¨TñÞ ÈP2ä‚óšZ5ªdjUŒ!Ð5-!Œh«i'ä„™e˜oeÆTžsÛKÆh‡·¢«0F‘rÂz'BJ,aÚ@×¶$æC•nƒ&—•ˆs”ØXoi´ÅjÍo|õ«ðÆ}àŸ~æ×øÆ+wÎ68çQ(6ÖO=uŸ}주ðÂûùô¯ü 'ë¯_\Ó,Wœ_lx¢=ÃÛwîÞ%—J·Zq~u%2•ˆAc£Z)’ómëÜ m’wíÕW^¡[u|õ¥ÏsvçIö›­Ì͵Áûj%G%ätˆè­P ׂsž怡$É‹ñ8mÑz˜ÊB«^‘ÏRºP™ßOaFÄÉÉš›Ë+†œfÚ¤%§Ö S…Rh­—¯'Ï‹\Y4-ÕW²eiú~Á~Øc¼$v]KHß:ÆýHcü,¼•ÄEq²ä9ºyÂxˆÆ$n‘ý¸£_öœ,W¨ZYô=”Â0F\Û’SâÁÃ×¹{ç//0VSK [~é—~‘ûg'”0âÈj½b»Y¯Ö„XX,NYö5&:çЦ%Ä@c,d)¦¬¶hç%ÉlÌX ­ës=Zl[×p}}!lŠpÃ4îùÔðˆïþ¡{·›öÛ·~Wg´þ-æÿøöÛçûÎZöòÏÏmf±)mi›Ö¶Ô¢ SBkƒoK%‰å],—,–krÊ4]‡ò–)ŠA"xAÛæù¦ªbç “à†qàdÙóùÏý*?òþWÎß|“~Žs+S¦¨J*Q2Øg2ŸR³‡º¤#ó¼jEÕxZÉÁÜ.×F“U•¯¯&&]“3âPÆÌ§ÜîŠR¤’)Œ‘¯Å X´ÐÙ”¦HQÜ »°£ZÅ'±õyOI‘f:ÕœqJ±ÛíЊ9 0K[NóOBòé1h¥h›ë=SŠÇl]ŽPj¤›§ˆÑïÒÉIPÀ¯¼òŠ eðU±ê »=Ï=ûµÎV+¶×7ì§í~Ëù¸»:aÙ,Ù\Ü ±Œ£¼ÛÍ 7›KÆaË‹O¾‹ïúødó膟ý‰Âk_{ƒÎ,èš5Þ.1t„Iƒf±ºÇ~(üãŸú_ùê×ùöïøNšÆbHìoÑ·†7/®À9®¶{¶CàîÝûl·#'ë3ú¦CiK-0ŽAŠÓ¢•áúúÂ{ÇbÑóë_ü"ËeO.•§ž~ž¢Ê"±·UnøUbŠb]=¦G*ôؤ*,ºžÞ5Ô!fj,Äg¶4ÌìµÒP iæê‡aDUÅÉj%–aD#¤H;ßìcÄEL_}FÒfJ¢Äƒª1¤’“ƒÖ#În…ä3«©2òš»Ódt!nUª÷„·†Õ²G+Åj½¢PHY¨—Ÿí½ûqÇÉê„Ýn‡ª°»Ù2lnøÂ¯ý g‹ŽÝÍ! ¢i°ç;ªÒ„˜±ÆC­ª•#^ZëéÇ*5  1†iÀ9ÉÍØî6¡lÆ{é.,ÚÖ²X6 ûn~·ëm[ß>ŸÕ¿ç#€oãŸÃ%p»¾¹ë?ýÏÿâš3#vk¥"šƒÉzÉs?Ì+cÎbQš1¼%—ã­Ê[UsqqEJk-!Е˜F´…ÅÊÓ/ ½Áúä„aš·Hç¨Õƒ/zFéJbš£jž{;§£™ª eýÍ-Y5+ø›uß÷ÔR 1`­Æ:¹•€B ó1ü8¥ µhRœ¹ïóÊ%£4X'³wmí±Ó¨LÓ8Ïë5ªTò$ ˜ÓõúÛ{œ7â ?Ä×Ö\¨!¢rFÏc‹Æº™XXçaEÓ6G1ˆâ^fÊ#!Â4 U[ίnh»Ž7]`mâ_C!…ŠÑž›ëPŠÖ·„i"„ç _üâÿ!Ý\Y-×Äq"†t ÎI1£µÑ8g0V¡t¡ÔH.2NIiB[1øÆ*’Tx‹Š‰iš¨U¬~9A?7-e ›-qÅû¯5f¶Ú9½ÏÏ4>ê,³– (g©Z‘çöyÊâ†9$:¾Uïrû5mƒµs+Уƒ­Ä¢{àjÄùwVFf³MÕÈïYªÂ×hÃ+Cš&¾ñò×yú‰'yÏ‹/rùè‚Uß3îv<õÔS(ãÃD¡²X¯$i†_M)2dÑ=d•ÈDbÄšiúíZ£ÛX´Sghz)z RФ¹hœÅ:ÇÕÕ•„8Ý®·s©ù¬þ=/>~ûlßykÿ•—p9D9%ÆaÛ¶–¤¹ëëk¦i’ùã!€'D¹eÀ¬Ìvz˜áR„X×¶-m×bŒ&%a®Ç8ñÔÓOpvï´´âÇ™üfxÿA=ZëãLÑX+Ñ«”£ NkBÒÚZû8ÎÌ–®ƒ†`·Û‰JßyrJ„0E†Jë£X¯d¹ÕÅÑÊ¢”F)áätØd ¨ŒucJ²™×*ÊþyÓÖZÓ¸†Æø£hË{÷žiÊÜ¡(80 œqD·  saÞÉŸ+¹°¹º™mUâD€:£j…ïþàÁë’'uÃb¶©Å”xðæ,—K.>äd±¢m<ÚœÓÜ99¡±Žq7 Ðå‰!s²ZrvºâÎÙŠ«ÍžO}ú3¿ââj϶_3¤JÖŽåú×ö¤\©ÊÑ/O†Âúä¿þÅ—øêW~ƒ“¾Ç¤@g4Í£Ë+”± c _®±Îá›–ZDÄwrr«Jú~Õ–ÍÍF T-Ñ˽9Û2g¢6+Ó8#)EPb½Â~vPÔ™)ã)ŒÄ8’R`œv¤ôÖdEÞB,³ÅPª¢æŠÓ§-*ËÏnÑö”Ùû^çˆ_y¤ 9Æeí*¹ÉŠñ˜xyxOzçµRL"0‹‚ƒÃàM@d'ô¬[(¥55à îˆiŽK.SÀiá5”éƒX6-ç¯?äÉ»÷P¼÷¬Ö+¦Ø ;J­tË%Æ;\×°\.ñ]‹¶Š¬ ØJ®'RI8ïh—obÖZ„”Øî¶”*ÝȘóLMŒ+®¤Cñ|»ÞÖõ;>««ÖÁÇnŸë;o ?û3Œý ^i¬Ràýñ61Ž#ÎI@OJ‰««+NONi‡o%Àgšö4J‹8°DRHt¾¦aœ&†q1M´]'45)M¬×kR0<·|¶ëDxU % ¤U›Ç¹î9g9¬!Ä9±mƦÕ*Á.Ö9bNs‹Q’Ü”œw­Y,„å6¾d•f{˜6¹ÌŸg­¤¶ÍyÆx´–1DÓhbª„0Ò4­ÜÞfxÍö憳ÕL }rCÜíö,Ë£˜ðpKóstí4or9D¬uØVâaÅF&ö¯x°:K³^'iÑ£Ñ3òx½:¥–Ân;Ð4 a?â´eJUç„„œéW=ã8pusIJ?㌋VT,¹ÀÍÍ–®µ<÷ô³´>ûϾÌ^;rÕé=®o¶èœ±}Ï>Œl_ßâÈBu8çØìvhg™báäô¯¾ò€gŸ¼ÏI¿`Šnµ"‹³ Ý%Ó4 •åêæ ÛÏÝ¥h§ÈYßs}yÃbÙ³Z­gp“"Œ{Žz4 IDATm¸xxN¿>áâáC–‹Sv›k‹%in«ÇY,¢š/yΕ(Ôš AlqÎ͹!ÌÐ(EÓ<Á‰«gÇŒµs&@»¦”bÐ6-ã0ˆwe9¼Ñ({H#€”ÒZ²”h:âÜ­¨õ1~·i¦a<¸ggg\\^Òõͱð–üî&%!k­ –kÅÌ`©#Zi±æŠb b_-…Îy^»º¦q–³õš÷¾û¦iäù}Œý°cw¾“÷NË­Ü· ËN Uhðk0NQBÅ9GÓ´3„´’¢E†æ.Ü[ ã·Â½ÊÂ¥%„iîÔÝ®·u}ìí(¾õö¹¾óÖ£ïú6–3±,Í7•Z ûÝ¥mß‘²„‘œžÒ6)‹­(åLÉ…¶iÙÌ-æš31ú~AÓ4ŒÓ@­B sÞSæ‰{Opy~ΓOÜ¥fÇ4…ùÖç 1Цñ¤’äÕŠ¾ï)³ÂÙ{Œ¼­E¤ÜµHâZÉ3|E ªwµZ±ÙnðMsl*¥Ð b¨L1`'Å€~U*V[r‘M5%Áö*­QE¡&9‹"ëJ¬”lJ UdŒ‚ÖÔû;Λ—Öš¶• ñà[·ÖçC!Sˆ“ض´6ä™èŒCÍ©peñ^ØZ ÌÇ:Ïk¯½&Ï&KòÜnØï;¶û=OÝA•EHwÆ;–랢3ÕÀv¿g?f\lö÷ÏNÑÀæzÃç^úÇG>ú12.7 »=Ï?û'mCç ¥d>ýéO³ M¿"U±Åå!f¾ò¥¯ò¾Ÿå寿ŒnT %’BES¸ÿÄ=œ©tÚQ‹¢&CkF6Û ZÃnæñç\(¦’2”¬8?¿äôì.ûÍ Ï=ÿ^¾ôùÏâ­e˜&|ãçô-mÑJ¼ò"ÒóG+ž1öˆ VRŠ Ã@ÛvhggN„•x),–+j•[¸µoÁdf÷ bN¸Fº@(ÎÂ|3¯µ’kEÕ‚2­ã‡áxµßï1oy‡Ì<˜¦¨#]ððuX+ù‡wÿÐKy¶¯fɘ†ë-ûÝŽåjÉåÍ%Mß²:;A]Ã'š¶á‰ûO°u"N¾é„¡"¹ú®Ek-c=%ïlÛµT„aÁ<š {”ŠRšõz}ìHÈï´:²@¼s\^]Qç £Ûõ¶¯o}; €Þ>×wÞÚl®XöKœn޳óš%‰/Íóem-X¬×L›=Ê‹å1m.„(­ó˜0ÊÒö-¥ËŸ(Ízuƒ×xÛÓ41fBˆ¢÷ŽaqÖ£”f·Ûa¬uö(J 9ÎÌ1÷¤Ê­eXUôl¬“[Z³V›ckqÑwG›`Q’¢ç¼›oìrsvœ4-PH©`¬>r”²xo˜ãÐJ*èY cÆ[u¤û)c¤0˜Û³ hcSÉ(ßÉLVUtŽä"?‡ÃA!«K’hÙ¡iÇIìŠ!1Œ#gëCŒ(`"jb³Û¢Æ‘íZSóTn†C´Ä”Y­O999#ìG^íE9ž|úªkè+Ë/¾ëî­{êpƒŠëEÇ·~øßÂu+]ïøäOþ ¯½þ]+N{./6¸÷´¬'löƒÌâs%Æë»Í†a·ÁvKÛ1¤‰®oØ[–''\^\ ¡±B¾+ rª\]\¦À~»å½ú5¹=*%QZnÓûa¢ïxß°Ýî¹{÷Z 0MSˆôN:bëõŠ<õä“äTèµÏýì.`Ösjc˜bÀ·-CPIµÉ`¬$45K›þîdµFU°J²XúôÌ(¥DËår¶/&”y<òªUB¨Ä (·ÿ‹®…(ÅtÍ"üÓ)K¦1–¢¤û`ý̬vØÎs³¹Æ4Ž)GšUÇ¢ëÙí¶(£h}C ‰E·À(A}·m' ›Þ“Q”œéÚ–a?PQs¬wÆ8+¿£J ¯'q<ÌöHß4RÄ(qͤœYt=®ÉÛ ðÄíÆýö®ßñYýÿ¨xæ›ÓÛçúÎZŸùþ¬uâ}.ÌÕøã ¥ib)B ívK¦B`GÆq<¶çû¦¥$¡‰¥”Ø{B®­Cb³Ÿè—§ôý S€ÕÉ}Ðm-aíïă­ڶ̹­£Œoˆ á(ž%Ïoë›ãXàpÐþ³ñ J©ck¶ÎŒ÷RŠøû3ÒÙzUÈT‚?I´Ö¢ÛS˜*%+,§4%`™Y¤Rš©„Ò:>Ì©‚’rø8ÔHkk<¤ EkŠ1˜Æ£­üÝÞXœ6X¥hæ¤D@¼îÓDJñHJTJËϯ$”3D]1­GÅ¢_Ðw-Þ:rM<ùìà×ûd (cÆû–Öµè¢yøúCúþ„Ó»O²Ù ÜÜl"Ó5œ¿ö K]ø¶½‡>ÿ$ªîøä'ÿBÚrçΚ»÷î€Ò(åØnÀóžÞ‹.§@¥Db”$ÁZ+c˜qb #òmVJN´­Œr’Ö}ɕƷìwa »ëÓ3¹9G9HÇiÀyKÛvÔšiÛžZÓ)Yá]ËÍõ†Ýv8 »¶Ÿ_À6MÃÉÉ >”÷¦nnnPÊ0M“ܢ盰vå,ûidšõ4cŠ(+?Oe5YƒöNþlÊX%á>äJsLœŒÂ2˜F¬µœœœ<Îx júP„»‡ ™A@ã~Àhé2ùB¤µp µÖGˆPª™G¶Ó€[ÈíçWW¼úækì‚à¾U¯ VkÂn¢s mÓàmCš"ó,š%Ok{–~ÉÂ÷h,%‚ª†0&6×[ÒÌi›–ƺ£K¢õ }¿@¿¥˜ð§'·÷Û¿Nç3û÷¦þÀí3}ç­oû+krLP3U‹7<Ïjw{´ÍUùbµ„2¦­¥h‰*ÕÆÈÆREÀ”gkTÓuÓA„R)&Î//QÆ’‹f ™\dž- ùŒ³B‚+%a­*à8af†ø[…‡ií„eT ˜cteî®ç"Á;iÁcØíw„9BU6õ‘<‹¯‘ª EÊsô¯–HY(h-¶Æ……à´ƒR…\)Iœ,HVÀnPVS&d¦ªˆçÜøœ³DÇ–Â4NLÓHŠ‘T²ü“©¤ßTРôÜέ䒊îR­ˆ9s~y…2š{÷ïS©’ïô¬êìv;b’L„#»í–¦ñäš©ÊrïÉg¸Ùî%ËÞh|ÛЯ–\^l0ÚòÊ×_fwyÅË/½Ä¯þÂÏó+?÷Ó¼ðÄš¼÷YVz¢Ž—,}扳%ŸüGŸÏüâ¯pùèŠ\*Ó”8ߌ` Ê9NNNX.—tm+‰}¥¢ ,ûµ¥@ã-!L@a·ß‰zJ €Q4‹Ã4âO)‰¦íÈUæõÎ;º¶¦EŒ€–쇪¨è¹èUt]/º927'Ñ ¬V’Œ™’Ø[ÏNÏÇ‘œ «Õ Î:¦iÄ· Ö ÁRÎ9B³ì|'D>-ïX˜]7̵uZ˜I‚"|“½3Ò¡J³8ÐZGJ"<}œk‘ÉY>³ñî¨c(µRgÅ8 (­I)’B|“uçn®i»Ë{4®E/*ªF¨ £4µH@´=#E©ãWnÆ™Z5ZI%7mIe-¢ØŽ2n¬t"¼÷˜ù6ÇI2 Œ™ÛaÎógͼZ ®Åž‚Pœ¥ÖÙ¥P2¶i¦ˆ¶ÒŽI”ýÆRœà€¢õŽ’…Í£´ «®X#XZƒ¡¦Š·mµøÙ•"•„š!1E¬iÈiþš©ÄaB¡Xõ3¨ZpÖ2ºÀîú†U»y±o¦ k dÍ0Ž,W'<|ø*'gwøê«¯ñѼÏHÓÀªYðîŸç¹“{üÊg>ƒÓ†“ÞsÿlÁ»Ÿ¹G. ïÞ|ýUÖ‹«:~ãæ Z×àš–Õ©béïp½y“ÓöŒ'îÝãÑÃG,Vb%˪2†ß/…Ë0ô2“³¸>rɤFµ¤RUSª½ëÝï^ëYÏsß×mÀGÂ8QB”+Š%x¥¶2Ã>Ú1Lek†ÁóàÁ.ήðcÀ‡HŠ‚öUÊ`ÅuP?ãø§E'¢¼PÙh"eaÔÒr]æî%eœ2LÃÀ4Œr$™ë¢È!‘ƒí¢ñããG¹}ï»qÏû§ìûKÞ{÷¥…yôô#H3o¼ñ:·îÜa{ë4[êõ ösd˜M³Â÷#O>9ãñ'O)ˆ/¼=ÚUææí[¬×[6Ý–UÓâªm,Ç''¸ºÆµ —ûº’üxã«pía!ægqhœ£Ö–¼@Pš¡ßna<\ 2ã¢ýøt°Ô³ÔIuHš”ó 5”ÉÙ“’ü±PÁ…1’|Y–QR*Y´"F‡®+vÍ®mèš«ô!ÂÙZ‰.VÖP¢ð Ìu ‘Vh§qNl‚ÖYQ××+¶›ÆÁãç„15ÖÔ ?Á¢”%%%SÃ@ ‰¥î‘5'lå¸ö$aC¦æ;bO>%GhêÓHSæÉãs†a E²–aq¸\ÇRÇ”Ù÷½À€(œ]žs¹ßÉÔ«–9G’Ê Ñ3Å@R…Õf…«û¾¶AŒ¨$Ý’"}¿çGþê_~¾yoÖ[ÿ* €7Ÿ?ÏÏÞª›†Ë~Ï0z)BË›æ¿Ì"Çi$¥¸Üö—‘IQK«4µfÿ¸ðÁ/V‘¹w d C ¨Êñÿþì?âßç“ÇOxô䌋«žiN8Û`M…UvÑD¦eN™rÄU–ªvÂÐzôH¼kÊE"\+ËœÓ TU% ©Ð)ÊY„‚K ª3–¶iERxmÏZ¬WÖZ¦i’_׎¢4¡dTåÈFÉÇPBlÚFŠ ¢(1ѸJ4 !P@ˆqŸ‚‰xO ãbÝØÈÎVX³ _%VºFD“‹uy™Y+U0¥pûæ œ« Ó¾?Ìþ½÷Òö$¨hòX2YŽNO1ÎptÜÒ®j”Jl¶kÚ¶b.Ð*ðµ_ø9º%ë½]a»-_{÷c>yºãjïyç[ïñC¿ÿðɇOðÉ‘PhWaÚŠã[§èÊqïÎÎÎι8»dôí,ÝfÍf<~Àýï3…™HF9‹­¡äî ÌÓL넎è”F§¸DQ·l6G\]ž ²¹ú¾—¯ãr˜¤EƒQ>uC¶Ö¾Ÿþ¹$”’›}ɉnÕж){Öë¥ >ŒÔm+š¥hêzñ»Ë×뺓½§dP£2¹ÈlÜTI‡ŒÄH¥P¢¥$#RTÁTŽÝî `Á"×è%¥ÒUM£''ˆ‹+'x´®¦rN,²ei¤g¬€¦kègOÖ–P ÙFïCär˜˜¼çÑùcŒXW-ÙW9JIT•h¦Eœ“5ã‚ðîV+6Û !KHÒ0M„’晼tz?1Î)EæiB+˜ÆJ+ü0QiËŸzúGžoÜß›õæ¿’àþWww“çÏó³·RH8+XÝ#Vi†i¤hEȉqž¦‘J[æåÆ\/~úº–í<Ï%})¢^ü •!Wš>Îx£èS¤Þ®é“'×·é8º}“ºÝ2¬Vkºn-Á-iPØæ"FlÛö@FûÉŸüIú¾?ãbLÄÅ:UäV“Šˆ¬| `©z}øæ”iš†õz½t6¤õn­=Õ®oƒm×bœ•xàe¼KÆTm ÚJØLI…®iÑ@˜½pê­•6«sÒ¾_nù³÷ßA—»v\çÍ·M+ŸÓBx»^¹HA¥P‡Qwýz$’SâÎÍ[ܺyS°®ÖÒÕíA)>Ž#u·ÂTã*Bܪ¶Þæyäµ×^bÕj|ü!Î9Œ5ܼuƒ/¾ý:ï~ã›üì?üû|ôþ{\îöغ£Z±"><ç÷üðÄè–ó>s|r›zµeΑ‡°>’Ф^¸ÇÙã'T¶¦íV”%œ¨ª+šU˯¾Â®ß±½qŒ©*.w;œsl·GÔuÍz³¦²–aØ£rÂê‚V°]­Øï÷tÝšÇ> èš–Ífƒ6š˜…:wŒÖZô®{MÓþŸsŽEz«‘Ä<ý4€VìÇ^BœwÇàgŠÑôKt­©a{ýuÓË»VR†TĪªÓ8 ‚º®%„ÊH˜²1ëVüþa± VUES×ä¢e9Œ(Ü– >:LŸv \§UªOùìÛ¶¥ï0Š1G†åûÔ’Ó\N{& «“c¼.T«Íz-TÎ’ )°öÄœ(ªP·-³÷\í÷T ØhžgöãH)¢­á²ßÓ¬;úq®UÕP®ojKK\2{ZþnQ\ÓHèÎÓ¶ 1%æ$.g ÃüˆÇgç|ãk¿Hz¾pï„oþ³Çü¡?ü‡ø;?úwxçãÇ\|ë‡ÈE*ÔÛÙßã¥û·HQ:#»a‡=2ß×¾ö5š¦æ[ßø%>÷¹Wù[ÃÀƒ8êÖ¤”™Æ™~œ$¬ª[ì¡m×°ß_1ì÷Ü<=…”9>¾ÉÓ‡¢s!-ã"c,¹ÆY\å]¯išÄ«Ô¡XøÏê èÏFZäuÕŠ Ï*Ù˜Š³«‹ï gúÅ PJ9@¨d¼ ó~)ø$=Ð8+ƒ¢(JÓ8Ç8ŒTÎá“§”$$Á)YŠmSŰZuâHH‘\®;ë„ó H9ÑTŽŸžÖZRöÄF+tUóøü!Ýf/¢ËØM=º¶ìæ=*#9>†™0G^yåsh£$Ø 0i·“ýàÆÉ‰è”B³Cgü8‘áP¬TV\9ÁOh%šm5Ã4Hì瞤òÁÒû|}ÏÖÀƒÙÀž?ÇÏæú}ÿ÷oÆiŠ ½Ìüƒ÷ŒãxøfóÞ/Â5sdŠÜØ–Ÿm凿ì¥õzz"ú@eœàGçÀéÉ Vi¾õÎ;\\\ÈÍ:'nݹÉÝ{w¹Ú]°n[ŒQ”™ý*Q×Òf̹pyyyبõr£WJFÃ~„\X5-Õb¯SFƒVä%-kEÑJ¬K÷ÃÇpð¾çOÙ%è•¥õ.bÇœµulÚu¤9PÕõÒYH’òW„ ˜¼Ì•Ý2†PÎf›×ìÿív{¸‰…°tVt !MUäVXÀ(#¦¬¨l…*’õn87bŽdÀT•¤7Öó8£ŠâêâRn¶Öa›Ÿ‘BÕ´hk9=ºÉ‡ßzW`Û4¤yät{Œ¡¢$Å{ï~@¡ð}o½Á wNØv–MyÚcTæýw?âéÕÈüþþÔŸýó|ýãì•¢ZµÜ¾}Êß|þâ1:ÎUÇž9EÖ«Þ'®®®¸º¼ä7ùËLSOЉ®“t?Šbè{ tZâ”me™ƒg?ö`4·ïߦnj4Šã“›<}ôà€æ•wX°ËÆÖÛ “ŸèÙëÃð:ì 8ÜŒ…Li˜fëjŒ­„ÿ&K²/ÎU´]w'°t{äV(}ÐY#c3c÷ǧÞe£—СDm…Lh´„VI2¥l¯×¢AÉ­˜€,#"•È%鹑s”1¢˜ƒ?Xh)E¬¯*eѪp´jP)0^]±ik¦Ý&GÒ8‚÷„~À¨ŒvF(’ÎÐ#W—‡„κièVk±8.]©äÓ0ˆƒ!Eâì ³—ñÌ8æ ápg¦y ¥À4ϸÊ1‡@FÆpÏ×÷t}×g÷/W|þùsül®öGv„QžsÐÏR±g`¿ß³Ûíð!°ï÷ËL~æj·cœ'vã  “QÖ€V\íwÌÓD…ÆdP1SKga˜¨”áææ› WôóÀ‡~Ä8ö@Á‡™=ÞO@ZÛXFþ(Š1>->™qrJLãt@ŸŠ@/?Ó$Ä(í`£eþªE ¶7‹&}P3/—*¥hš£9DÂ4“}‡Ãì‘™ð‡Mo‰Z½‚]‹Í ÒZ³ßïðSÉ,¿ª¬Õ”Ú”Ñ䜤 “ •iPÅ0íG´.Ä81=³ŸÁ(p†ªnègÁ*oº,Ѵݪ•–ªÒÌs`œ'rQä9¢Sá£wßáåîÇ‘{·îrþô ­Î.ö¼ûí÷yôðc^~á·Ž:¦Ë§ÜÚÖÜ>^ó¹Ï¿BQ ÕQÖ[âzÍÙÚ‡7×-¯¾x÷ßý&Oγ٬PhîݹÛ·xïÛßæOõ¿æ¯ÿµ¿ÆÛo½…ÕŽ’ jQ‹—eÌ4/B»FÀQ¶µØ®§ÍGYÒ“Œ0ŒÁûÀnèñA Ük!iXPιC¢ü7ï£t¡ (eiÛ á?Z[¼TK®V¢¹vÕTU…_âCqVJQš*»à{³¸>ŒYÚòm,ÚÙ¥°„8QD3êBd”"Å„ÒW*g©*G!´ Jr‰¥ðeÉÓ¨¤c–b¢ÄL òžšYÙŠºÀ­í={îßÀÅŒ¿ÜÑ*Eì{¦ýÀÕåm-ýÐc¬^2…ÛR"(ô‘y³_JŠßÙ_K#°úD‹e´eds()1ú‰¤Ú±rÅvµÅZr€.•±ÖPražÂbõ³ø˜™CÄX']£ D|‰ÔU…Š,Ö0™«ÏÁc­aN´¢êš%¢Õ§H˜‚Æ|€’Å:W9A»&…39)üä™Fµmä°¯u¾5–à))2 (§À(ªªÆMg;ªä¨•£võò¹MØÚ’Œ³'æBÊ"lÔÚP·bÑ*JÑnW„4JÀÕ†fÝ’u…²-¡€…èöãÀ˯~ŽËaÀ‡ˆ) g¬|Œ˜ÈF úð10 #iòÜ9>åƒo}=woÝ"ùÄÛoü:ü™çÀÙù¹ÜÔüÈW~èyëÕû¸è*Å£¹u÷tsÄúÖ‹¨Í{´&éBã 76wŽ·¼÷¯syö„R2÷ïßç­7ßäŸþ“B¿ïù¿ãw «ŠÇŸ<"ÆÈ¸ëI>°¿¸\¬kŸ+!C{Œ3Libôž{/Ýc˜¯|uù×4TÔ„\ä©jênvNž­uUÕ³`ñ) §¼?Z£ŒkŽÉÏØ\0JáÇœ#Ã~¿‡²ÂšŠišX5í aÆV†º[Ó#>x±Î)éü¨!ËàGŠ’›´Ñ0è¢ñsÈ)à`,3D.‚a-Y1DI’ôk ¦DêeBàgÖ†¦[a«å ÊfI)ŠªØŸ˜ÒòÉ'g‹¾ººÄZ‡qN63Šdh¡(R$^)…­Z¢L“p㯟u’Š8¬ÄÁZm¨l%–KcEsã |ûº²° d»ª¡­¡î¿t—§/¸œö´U+Ï‹…Õk"j—!LmØyjø¥“Ú¯sç…#· Ö§š£ÝMú~àáÕĺ®øÆ{ïóå/} Mâµ—nñƒßÿ¹Øí™Kæ“ø½_ú2®n¸ÜíyÿïóɃ‡ìv3ÎV¼ô«ݸÉÓÝŽ±mØŸíù/þË?ÊÏý£@3«*â€n%8í/8^¯Hã úËžÊÕ W!ÎlhM‡ÁòâçßäÝoÿ"ÝjÃv³%,‡³ã*ëCL~6£^FEó'*m¹ì{h[V›ÊHñ¯c!Ž3Vkz?2 #ÎI: 9ãŒ!-Â>Q««ë¥ ÃÐcŒÂ9#2ÝТÀIèW£Ÿw~M÷¿º[·ž?ÇÏî¿}–Àc˜ý„ŸgJ. «¾"Lž®é=MWãýL ç,ã40Í3«õ¥4sÌÄYnNªBòì÷;¦0Ó®¶›ŽvÕШ Ó¼çh»"™Ä(݃Ê6TNò–ÌRLBíS{@)¸ú(EFT«”pε¥R$Î:|Ìß+º§\Û¥Xˆ|ñ ío9ìmõŒü—ÂBHe4%'"™yá½£4‰3UJâe§àQ‹?¼®kÂ쩬£,¢,[Uø%Ûà:ž9_«Ð?åOO%‰s°Ö-˜ú‘¦vÌÓÄ›Ÿÿ?óô3ÇÀz³¥ôÛ£c¦^ÔÕºvL1`£áøô„”=󔆞÷¾ý>/¾ú2''§Ü]SÙ†¯óÛ¨z…É™÷?|Äîì§xåŸyó&O_¡ê ¼öÚ¼÷þ<}ú”)DúÙ3Í…{wïóÒK¯ñÚ+ŸÇjË_ú«•^i^{ñ>ÿéòÃ|åßù·ø_|‹èÖ6즑˜ÆZ¦DXš¤…\L¡mʘ8½yÊÑÉ !'>øè]¶7N±ÚÒÖVTÖH\+ɽH…$·¡ª*éú,Φiq]”HêOMÓ}dœFr‘?뜣؅e4v‹j­Ùn6䜸qtŒ>–÷¤®*†I¶mÛJ—`ј\ ZÅV—CQlt1Êퟢ6„¸C¤ØÃÕ(¡Bæ\¨«šºnľ*¢!]é–yïåŸ&ôâöqkK¿ïQdgiK!0NCX5ª2¤i´Ã¡ÑYà`>HàQ·i¹¸¸ ªZÖ«ïrJ¨…°9O“k¦¥“V5í"Ìä +!“.z£I1‘ræøèyà{¼nÝÿênýñW7û_ià•çÏð³½Ú?ñÇq?û÷§‰3¶(\U}$Ì]¬qÌ“gŒÈ n*¦i¤í‘R’6~ÊÐTv åY\9/4=iƒ­ñ!`š § eñɧ…ÎuûìÀ±4hgìµÓáºM)‡XnRi‰"V‹ØJ„_«•(é%hHQë…9 Ó0PŠ•VgÓà§r’˜¸Ûs´^ã§ý)õ¸à\e3×K¡r#l­%Ä(5׈Ä èÕÆâû=µ2¼þÚëüäOý G'Ç<~ú„®j D¢’„CÝTŒû]þéÖëWw„èé÷OŸñÁûóú›¿ŽuÕò¥7Þâkßx—yߣiØßæ£Où™ø³Xcð9£«Šíñç—)qãæmnÝ¾ÇæèUÕòÖ[_¤ßüÈþ š·^~™¯þÉ?ÎïùÊ¿Ç|ùûQ1033Ήóó+tÕÑ´ky.)a¤FŽÓ„¶ÐnnÜšÌéæˆµ«P)“}ďмtPf'Z"”Â#blPpNÐ8I?¬*Çn¿'—ÌÉö„¡“­ˆlc-hÍåî‚ÕjÅ[óóýúWa½ü¯´xéùóûl¯úÿMÛa´Tû>xæ~Ä(ƒu–¾p®P‰³´]‡ü(Jl…´ç2 –ÛÒ0 \íz4‰T7O¶TMCœÓ8¥©´a½ê.{žypˆkõóŒR×Xb(Ô]sÐ!Ôu¢®;¬mHyæã?áÆÉ)¾÷m~ïÿ7¨Û57nÜá[ßü&ó0ðôñCJ̼ðÒk„à KcœG^zéóÔ«†˜ íjÃý^âîÝùéŸø{|íŸû÷îÓ5-·OŽù£øóüίð ?÷O9Únè÷»~b³>Á6-gç—4ëN+ƒgèg”‡ÉÑNoŸâjKÊ3]ÓágOÛ6\¥´ÒXëä)qZøäFŸ¢ÐemÝè›ÍFF4 __)%iuÖ¾nÖYiW;Ib´hh-eQ´k-š k-]µ&ĪÔC ÞV›5ã~ zOWר\¸º÷ÚøéŸø)îœÞäòüœÖYv——"rKéÐ?¿8‡²°”¦íVrÓÍ™'ŸòôÑb´ÛŽÍj…*™Rwîܦ(¸uû›“#bNܽw¬¡ xý7yý7xü䜟ùéŸf&^¼ŸÆÕŒûÃÅ÷oÝäÃ÷ÞãÞ{<|ü„ó‹+rÖÌ)âªå1fš¶!é^ܺ}JL3§·OyóÍ/°^w˜bq¦"…„YøÞ‹0TlššÙÏ”’°N”ú1Fšªfš¦¥àQ<£ä¡À,…¡µô³€(ÅâŸG1Γd@,¼uÓR ®›EÜ*3îkÎõØáz]“ »®Ãû€5Ž’Ìõ¶¥µÌÊsއ.FÎt$3ö²0úeL µa½^“”4‹’m u‘_/yjéŒqÆiGˆO¡¬áç¿ö‹|üñÞ~ëûh]C&ÖmËz½ÂY³u¥E?”™gOAãê WUK^…Œ¼JUÔ= 2$ 1gvûž¾ïQZ±ï{ªZ„·•s4MËOŒÿöó û{¿~b÷ãîŸüJ €ÿømÏŸág{ýÞßGåÄÇ|Hœ=)eV«5«UGÓ­±m%­MÑ:Ó65uUQ×5]×aš€Œ¢~Ï™yˆ÷#ÖæiÂO3ÁÖÝ–'Ÿp~ö”ª^sÿþ˼ôò+”"^i,hŠZ,ZZ¸í…² ]À‚Z!Êüßâì3ýR £ŸÑN„UÁûe6Zmßk!€žÊÕT®&Åü©¤8dö "ÔF0¬Z£´$òåRÿšóâxJažgê¦cì{”è¸äði )ðYÄŠµ6r3ɇSBL9K—A Ô&‡H^ÔäÛ£#áä,‘¹’€Dè'rŒ¼ûíwÙ¬:JÎÔµ[ZÆ’í GsH‘ÓÖPŠày»¶eꦾgØ_ññ£Ølbœ¨ëжk™æ‰9Løà¹}û&Ê(ŒsœœœòáGŸð“?ñS|ôÞ‡œŸp¼ÝÊÌxHóDk5*'Ö›#Î.Î9¿¸bòQò\ÍÕ~G.…XÓ<â*C&âãÄnÉ›o½ÉÉÑÇ«T±4UK[µT••P75Ó<¡ACȉ—œˆEz8„ ß! ÕJž?JÍaÑj¸Q]’ØU¯ã©s’÷£rŽÉϤ²t O×®˜ÆñÀ'ØívØÖõ»*‡º(ÿµ~’¼ÿ1EÔõn«X³ÌáïP¨ÃHɇ@ZÄ.Š‚^’Eu dßNÁ3F³ï{ÎÎÏ™‚ÇTŠáɃGÜÚÞ¢¤D) c´Œ¸(Rì„À>aF6ë-ÓäQʰ&†y¦ª m[³]µH£›õ RB©È;ßüEªªÆÙ†¹ž8>>b·ßsqyÎ'Ÿ \í{”i$ÝÏ:NoÜ`µZ¡3ìÏŸ2÷«8Z5”ˆöç—\ô{Ƙ J Â\ëhÛŽ¬ã8U/EbÉo·Ü½y‹ǧèbišŽ¹ÉΠâ¢Ã0†R”ØÈJ¡¨‚scFŒÑœÓ÷½ÌæûÊhº¶]C û]^ж¶m‰^`6Öb’ƒNi-¡=Zn¿Ê|ð ÃD»êH1æ™Ê9¢’Ó´ôpZÞë~˜X¯×‚ 6æàD›~¢äH]»¥pu”,vºkánUUø…è霣]¯È!P9ƒ5J"ÎZeÑN£µ!Í£µëºæjØóäÑcîÞ}‰'ŸPÕ«Û%AË8l ]’çíHJ¡”¦nš¦Æ,Îënµ¡6–U³ft[‘Œb'Ʊgœ&V«ý~O]Õ\œŸóûþö߃÷>߬¿÷ë»:ÃÿÅÀ¼þü~¶×û].Ÿ>¦F¬kYo¨«–®]SW–ÖYîœ/ÙögUÝ@QtmÇf³‘H^ ÓØãj.3ç™\+ž?fN‰‹ý!fÖÝZYþÔŸýïxù•×Ôoú ¿ñ«§§Çm×KÛ?S»– )+´Rè)RHü4M„mZ2F[²ñ_]×4«Vn_Eò×ÿ:E-7u+7f¥èûþІÕh¬3ØÚ‘H„(°ë, í]·$Ñ)%- …– ÑTdo˜mݱ¿ê±Îa´&Å€RP55Úê…Û¨¬Å ÚˆyžÁ‚¶4ØÚIÚzNºâpÊ Û>fŒµŒãDÉ…ÊJLkÎ]92…“[§üÔÏü/¼ò±Èó K·àüüœ¦iEß¡E@×­:Š*¤9ÚnÄíá'6›Ž³'Ù]õL³g³¾!³âIZÝaö¼úòkìû<1x¦iþ{ð8µ1Tº¦ÁV—»=ýÀèÓâæØ=Yš¦ÆV–œ#ã8 È¬× ›ÍŠø-¿…ízÃf{ â¸qH¸Ú‘µfŠ‘¦mA‹³¤$!:1ÓtÔ¥”ØUsðhU0%ÃB·óIâœ÷À¶néÄdêÖ1ú½ìz®!¡GŽ~,¶RÄuÝR’"ÅB™NWKK90ô)$*[c­¡ãbkÍè"ûq¿£[Rýì—1Ž8[´Ò‡dÃ#m×b\F: ³t¢(à§kP–CiM?ôÃk´¸PÔÖ|`~EWÕ\ž?a³m9»xÈ[·™vN;ȉÊT)¬»5Æ8Uqs{k4uW±^u¬Ösò4›•X„+ ™ÊF3ûDí.Î/99>&Î^È–\UÑvkþóÏÿÅçõ¯Îz°ûñ?÷W~¥€{ÏŸßgý›aË_þÁÄ­›·xú䜦–[‰UWk¬†39t]jñçÆ”¢mÌ?AžYÕÅÖܾqÊ4{NNh«–©üù¿ø¿ªÿñ/ýï¬Ö+6Û5£q“AµÄ¡.›jÙØ!¤ˆ[Tü×sÙkQ_^ÿJ)¦i:ħºÊ-¶"iƒJH‹Ü¾K–Ìy­õ!QožE•ŸS’Ô¼ëÖl*ø%­L-¼eS˜"B?Ë%°²hBðÔMµŒžÅΧmÛcÄÊ%·µ,ɇÀªnðs —Då*²¹…¿t(êª&ç"­ý\0Ö¬âî^æso¿Å?bÓ®–ƒ,’¬Æ­Wø˜ c¶‚£½ºêQ:q¼]ÓÔ–Ù¬Ö+Âä¹yã)Ãn?óð“G[qv~.¶¹Øï&Æàå[Æ,9%ÖÛ WOθu|‚Ó†ËÝ%/÷œ]îÉÚPo·lŽ*ɉ°Æ9böL—Î5£°V´wnßæÞ;äTÀÊÁb §ÈºmÉZ"ƒ«˜B ¤„ÓÒ-CQ>zêª"…ˆFÄf¶jpÎH€N‚BƹšašÅnYÆj40Â50Z“CF•Bkz±î•Ùã´% 3 ún˜b$f!öå’ÑÊâêŠn†(b «¶#L3!DVM+Ûi¥ÑFsÆØûš2•sf½^³Ûí$»ˆ{ÁÚJôóÈÐ(#3©a¿6–«Ý%ÞOX'(ã®ièûq9;ÊãÛLóHU7dU°um*Œ¶XS±Ú¬±Ñ³Z·$äï¯l…QŠº[措¥zR)œÜ8ÆZÉ:kð~Æ{Ï«Ÿ{㻌¤y¾þ®ïê ÿQÀwž?¿_+PÖ°½q‚6šÍfÍj»¢®kl娛šÕzƒÓ¢â7Æà"›µ–¦i°Ö>KT³ëÕBâå^äÏž/¼öGÛü7æ¿ýŽ}ãÖMöãˆ2š1ÌLaf Q®HÄ%?<ÆCx‹x£ãáÇ<Ϥå&wÝÇA „8 •ë S~¯)……ïªìÂ!Ĥßøi&å´|œ„¢1üsáè¥ X­»e+´³ë¨ßk¯Öu á5Ä¥©œ«·7u(bF¦i<ü®•âUUqv~&#„(ÿÖ3NK‚]ð³xÆÒºZnU9ñ¿õ±•/¿ô’´}KÆUW»NËç»ë÷cèÏû~Ì;ï}Œ«I‘²"Å<'”² ¥h^}ájkÙ6•RœqÔ­P)QiMí4•1ogÏ{}Ä'ŸðèéUÛàV-!%†q‚R¨­´Ž]Ó±ÞnIÉ£T¦ª,wïÝåí·ßf £'8å  š¬`ΑÑ{l-ÏT¥L‰‰ä%„&Î^+!0Þ{VC*0„Ä3Qiü’¾è}ÔsJL£gžçeVÓèQ9S¼¨0µÓnOñA U~&ù³€¦Šãd¼ÆÂÐI’Æ RøÑÃ'Ÿ°ÆñôÉ9Ö8b(„ 6~ªc:|/\kZކ¶mEï‘3ÞKHÐ8í‰ÉcÜ3¾„J¥ ŸKDë‚«,]×ÐukÁ«ŠË‹+°™ÍñŠP$YW𤮭p%éV2FÑVmG×¶TÖÑÖ5ënEWÕ(m]SU–ívM]W¬7+ºUÇéé)]×ñù׿ø|ƒþÕ[ßÕnŸ¿6W]×”’‰qÇjÝR7×xÓ„.Æs¢©ë´$/”»kñÎ8ÏT®Ý›QTm Óž£“c”2œó§ÿÌÿ þôŸùï¿ãc¿òê«|ðÞ·†Í¶#¥¥ãP)4È\~š˜æé@ð‹A¹U]Ë¡¼Î╟QÅ`¬Â‡@.Œ2Ï3Q„—‚ R5 Ãþ ¢’º£X—JœQºBQPË =KfAŠKOHŸ²w-P¼È¸`žfïY¯×ä s"„ùp¸çéGOÓµ´m‡þ‹æ•÷<ÍLn ªkœ³ ƒ„5­W+± ¦DœgÂr Ü\ÓÅ}ùûù±ý1Nš5Û¶ãìbEq²éD€E¦i¼(-£ž«~âýì79>ÞðD»åe IDAT½–’&Œ«1ÆR²•œ8éVTæyÄT »K^¼}›º­8¿¼¢ï..wôs\€CÍú¨êUàqè¨I©Pj˘FЉ®kÙn×¼ñæë¤’xáöm@’ôœ­‘àE1JìŽÚQÔ®’ %P£aì\#–¿ÊV„œ ÆqÆ:i§¦ÀìÅ“ï—GëóجVäà) BZ(“9s¹»%1Àyq±cÀhÆi/Ÿƒ1(áIKQšEÉ×m'ÚÕ†¶®†èÛõZb•8IÔÂÀH)bŒF©¼„zÚ¶ãüüŒ½¼“YØ,BYt&Aôx/ïk)?Oâ2P ¬dZx/ðªÊÖÔ®£ß_qyyÁ«Ÿ{•²Ët«†)ެ\G1…¬ ÊA~Ñ8Ô(cphÚ¶eG¬„xš=Uå˜G6Ï:99&Ä ï Ò¼üòs˜ì¯¹àþWw7ÿEMÀóõÙ]Ý01è%ñN+iS jLÊ®¢3fB¶þÑfÓ§O9Úl¸ºº¢é:Æqdu¼åÑÙˆj*¢†ÁÏŸœpùQÿË¿awoóK_ÿ9|†BÛÖÌ~bF¾Ò´m‡RŠÝnǺ[Q» ?{Œ±ìw»¥IÔuE˜fRLØ&gÁ*•妜31Dºn½„´D¦i:¨¬«ªZRü ®røÉã¬cìQö;{È–¿VlÇq<ØÂÄj®Då¯dDe­ñ[–¹ûÕ~'Œxk%BØÊm|Äb9Žã»1‡¬ú²Œ=ú¾çèèˆ]?Ðó4qrã„ýã'Ò‘q–ý~/q¶~¦ä$mꜹwï>_ùÊWø±ÿãoòú›o¢¡r ýÓsZ­è§[W„˜©Û–˜2êP­Â'Ïã'ø0“²æäøÓ¸¼¸Ä*8^·xdìpyyÁ0\î/Ùõ=ëÕ–ý8€²ô½'$Xw[Vm‹ 3A•E¯¤-%8f·»¤wmjV«¯½ö¶Û#ŽŽdf^Õì®®Xw[†aÂTŠP"ÞRR4®%L3ª*§ñË»Ä"ïvPT ¤²¥E\Q^Òûš¶¡ß],À}Jb˜¯·ÁW ÈJ)#·ïè û¶¶x/E¬skí!òzœåÃÌ|ðãŒÑ³äû¼{ﵞõ<ÿÿï?Ÿf†¾G9ÇËÃã8PjâåAþö¾(Uì£ (óŠ÷糄Ígéâ¬ë,ZmᛨJß{RX¹¿~˜—•ãr"æH?ôÄyËáºržOWÛ¢Z+©DRˆh  q¥$Çâtž¥ðÔŽ óY8ëùDÕR ŸÎk©U:$qÍŒ¾#…•»»;öûE)6›k¥pÜ:OEÚUÃy]ÆcDFU†j ¦Ööl Îjõ¤†þí:µÝ«Íù·~=¾áàÉ«çöáYßúSðwÿ/”’à¥aìz–em ‰¶uZRÎNçÃ0Ûá¿ßïYclsÑÄd½øÁKÁWE¯-á4ÿº¿»ÿ“õ—þKâ²5œ–Õü·†ã;ª²r«^¥­XRæ½ò.ë²ðúk¯ópO®éÊøW(”Wt¾ÃXËy>3 ½XW‰9>ÈYæú?¾fÃ_„TÎHÈÎÚÆ¥J;wYWv»ÝÕÇ¿¦¨+©06J\Š#¯}בrÀwŽ£x¿›ÅË{Ï—?÷Y¼÷èØŽ[¾ð‹¿H7ôÜÜÞðòþ^Þ#ßQKeFîîa¡âÀÀýñ C“æ|^ ?°®+Ö;Œx8Øn&¬ÕÜ>zÄ#oßÝQ|‡v–~3’S&”Äé|B[‹ïCa™¡ƒnìq¾ãþx$䊊Ið¼Ú0ô“ØÉ€ÃñÀèPCäþ¼RªbY›ÍžR4÷÷wŒ¾gk-1G\ïH5QKÅ:#mmcPƒˆ/^¼ÎóçÏxöì9ï½}Ï0vÌó™ûû{æiǼÌ<ý9_üâçyñì5Ž/O8ë9Ïg±Ž:ëkZ jŒÖl·[Þyï]ÆfÓË%“r¢Ÿœqœç•n¨d”•Öùzžyñô)5j„wBä°ÎóÌ~·¥Ôˆï<77{î^’%išªä@U£ _þÂ%D(ËØ%—BÍë®÷¨¢xïmñÊ?ztËÛï¾F,¹±º®ÃkKmNઇ†¡ [=Z9Þ{ùÀ8ÎR9¯ )à¬"¦È9ÁrZX‚Œ\º¾g]O<~|ËrË¿¶x•Üð!Zßó—nø±ï–9¹sªyê¥U©;Ë|Z !b¬(‡~ §D*çÖèRéµ\ªeëzLH¸˜yë+_ªÏ_¼®¾öwâ[>¥þÄ¿ýÃuì=s œŽŽÇú¡Ç9ËÃñLF„‡ëyf3ŒœOgtÃéþÂg> ] dæî¬C{}Ý —°ˆ0&@аp­…Ï~ösøÎQò%æÕSÛ76￲†i»aYWÞzë-‰G.?ä,á,"Ò“~ç;´ú[ÎÂ`÷^¢‡k­ ãpíˆýne3ŒïNñ"¯½xAȉ”2Ç—/qưÛí8Íg¬sTªX ¤ª›Äà–Lï/^{AÒšô󻇎ËÌãGȹ`Zlòñ|âfwÛ¨‹r$,‰¾Ÿpætœ1J¬”kÎ,!0Ž;ŽœN ý4b{Ïq>óøñsb½çîáÄÐõø®£óÔB\#Ýè)±0¯'vÄ6•i3@çØl¶¼xþ†ÜõÈnZË­$bùx<óüÙ3²Êô]Ϻ,l¦ a ìw{2…5/#‡±Ö®/;Ö™ÓùÄãG8O¼ûÕ÷°ÆsEX :s<О>ºå—þþ/²Î+S7pÿÞÏž¾1òr~‹Zå6û•Ï~­˼°,¾ñƒÅh…oÂKÕô7Ú˜«žFl‡‚žÞ ˼ðÅ/~ž¢*ý0p^WRÍxסÄç‚—¾ˆ\/£¢Z+ÛÍž®oŸa˜¦m*¥dJ¶ãé» %ž¬c]#UE¬W¬aÅ™Œ1ŠÛ›-N[æãLŽ™pŽŒ~âx>CÆL†ši‰P, É)ȵb¨Ä˜q-–X\–¹Å뫨62v¾ãîþž×Þ=¼Úœë×£WÀo‡.€÷ÌËIУ «ë¼­ä˜9œÏxïÄ¢gÃ8ðòþßw¸Á“r&ÖŒ6F"S­¡b˜O‘Áí®‚¶ÿï:ïxôxO 3JIN¬Mi^+šŒŠ‰ÎhL­ì‡žy>CŽX£èzŒdU(1£Ä²j£ÁZæcBr“ïD1#ky×£ÊÕzMɰÖL,‰1¬Ø¤yç«o³ßmQZÑkMŽw÷hkQÚB&!³æ•"Æ*:ë¨!±ÆBXÃfÀ i‰›Í–œ3··˜—•§Ï'jÉÜÜìñ¾Ã¶ˆáu^ðÎóäÑcîîpT6ÓtýÝ…Ší{¬uèÁ¢§ÁÔ÷””$Ȩ¨™]Uì· ßñßÁç>÷yvÓÄéáªŸŠ·Že9B`7äš ¡`’Âh…©*Ê(Q°wƒ´¥‡‘ãqÆtÆt¼¼ ûýH oÃèYGÜ4KB{Ã~¸˜ÐF3Ž#~;ð­Ÿþl»-ûý-ÖZöûj$ðº.ôý@פœØ >þÆÇÉ)Óƒø¬à›—$ t}ï)1cŒ'„™eY±®ápsb¿Ý5GD 󲈆#­gXç•ä#%fN÷?Þ ]e=¼µho謖b¯ð£Å:GÌ¢ óYenn±Î ¥fbžC?t”º bÎQ„œ]Í·ðÕà«ÂËBEYÅñpăsaðÐo›õ´Ç:E.`¬'¬‰Ãé›ýÀ•âÍ9žWjQS6Ëðª#æBŒS UiÜ4S&Õ,vÃ,‰—¦(²òøÑ×õ(S)9à]Raè­'—ʲœQÚ4‡ŒBXí)Vq:¯ØnäÙ÷ÿüÅW{󇱸}õÜ>\ë‡~öŸà/ü®¿ÑÆsšQ! j•×Í–ÃËÌ´™8¯3¦*áÎ÷–LoXÏ«ÄévSv舵àìH7íˆí¯ÿúc€i$†£¡xƒZ4¹Tb­ÄRWs¡–„©o-I)r+2–ÓEªBèK¹RÅϲ\7±¦LÉ•x<ጴ·Ó*jhoÓ$V§#9.œMÁxK*cPxíÙsîä[ñè–#ý8Q•¦¢˜— 4´RÙn¶ôÞÑwŽ’9(^ýu–u%¶„A±‚5¬lSÂ×Z:OL‰Za35‘å“gk kàñã§xUÚ ;¶Ž5¬†d„ç®J‘äBgÑJn}9':ßó©iÇç¾ôEÖya~ùü œO'Á Øo7¬óÊš2)¬Ò¬M,)i‡r ÕšX–Bˆ«ëŒeš&rQ¬)Ñ#s«$Tr^é|Çáþ=”Qœ×3fðÂ.Ðb ÛÞìxýP½Ä9䣯R%¬+Ý8áM߯4žT 1WúibÓõDeQΨŒ»=çe¦ï1J£€¬ 1%úab³¿%—LM‰´®tÖ¢S‘CNöÛѱäÌWÜÎÉÍ6ËmµÔÊ,{±ý© 9r> Þ[élOÉ]Hë-)Ê(Ê8GLEØ Qrïϧ;¡V*áW¤XèŒÃVEgº(t,×”"ÄÌšF‹þÂy±6†˜˜×JÁ¼ˆB!¬­µã‚q†9´³Bs,™â= E7l™g–°`œ'©Ên·ÃyGY…£0tJ[–yF;G +Ã(b]5ÖzÂ"]3Ó FçÓŒ5 ¾…#–BN çæùÄ÷üÅWÇÈA"öÍ7¯žÛ‡kýþ*¿ð™‰‡ÃPÙl¶X- hµyëC LHÌo¡âúžÞw„‰-‚5Ç̲Ìh%Šîãa¦Ûl†Oý±Wýz¿{ÿè)w¨*mÁÎOrÆJ®•gœu8#¤À˜3¾ï1Ö°„•ŠdnLLÃ(t<]I© Ë`­…\`·ÛŠB±vœ3¥fB\Ùm¶Ü?¥6õ´ñžínG.Ðõ=J;”6Ô¶!j Þ s¿di;k­yüø1µ ütã(­[¨@mR­ ]Ïq>ñèöo}å«ÓyiEXΉ~š˜O'û b?-Ú’ˆ)­µ Ó ¹]³É6 ÏX%´'®+N+õã80‡™Ãùˆ5ŽóéLïE<ðò½;úa Ì »í†T¤Ãâ··Bí‹Iœ8Îá­#®5UlC#¥)kdê:rÈx/ˆãqÅŽ«ï½÷.Ã`›Vb­5¬k½K¾A­£,wwï`­bè¼üŒ‘‚ëÙn„× ke +/8­Øn·¼õÕ·ùØÇßtwÎ8k¥Õ_ ÖŠãáþþ¾é^z2Yr€Ói–ΣÖä\È F߿ڔ?ëæ›)ö¯žÛ‡kÝÿ•¿Âú߆ï‡&À‹Ô0J³&r×@<¶eu[cH%Ss½‚sŒÖc1ä÷!8Ѐ$¿þzþúÇø{ï¾¥`5ÈYk±Î¢§ÔȺ®ë¡ÈíM+E)„R Ý(³ês"§Äº.hëèÇ]3Cgq®£äȲÈÞqh£§k<ôüÅ3NËŠ±oŒ„ iÃ8tÔR˜v[ú±£*EM’Âf»¥ ÆY8¥BJ¡ïé§(-ø”®¾ÿª¥ã ‡›K»ýŽûû1&ž?{A˜W^í5I^‹2b™6;rórk£¨ÍåPM"dž^¼ð’ª(­ÚµdRL8+\øäbÆ¿BQJÂ:‡­ ….HQV Ó㤆1N2’{ÔoÇvåQšÅw]Vº®c9†ÞòÚ“'œwâìqŽT+§#ƒ™nöÜßÝÑ‹R"Ú›†ëûÛ[–¸âý@ßu¬1P[èR‘”äo!®†1Ä ºœÜºÎ9Â|æöÉ3øê«}ù°ößL°{õÜ>\ëûããÇÍÿ†5–y–[Ž5#Ûid=/hÄK¾,K³iÕÖˆÔ’±ÆêŠÖ–Î{ÖùÔ"m+¥‰{þÏÿýoÕßóOþ_Óø7ôßSÿãOþ7õ§ÿæ_g?mm‡®PC%»Œ<Ô÷SÏ|óàßt}‡ó^ ?Y£­aÚn™ñ3/ëŒ÷rcë½!„£[É6H!RRäµç/D5ïŒÌ÷‡~Øâ}ÇÍn‡ªR`ÚL,ëBÕP¬Å9ƒ‰VcXRDiEçúvSõ"v+c4ó²ˆzÛ{J‹TkqÆb{˼.LãFZö—äº,‡ØfÚ²® µ€Õ´ÜBk³4ê*iÔJ\g´õ(+Å¥¢ l¶J¨W/º··ü£¿ó»ùÜ—>ËÏý˾÷Üݽäp8°æÈÝÝ=–‚ŠZ Å)R LÓ†ôp !ù­s&…3‡åÄf·…œq½•Xo‰qæöÑcŒs<Ûlé7#©^{ñ¯-ŸzóM>ö±b”’L…X¨J£àšÇý 5eŽÇ#ã4‰ö }K­ÐÚÚ© i‘œQÉœ7J!equd™1QjiÑÈ" 4-­¯“‰kX#ÄËÎ{ÖeA;I–Di¼«D oÇ ‹uXc9žOhgñncÁ,šÎIÀOŒ‘Ç–0swx¸¢¬ÝvOÊ…yž)vÛŽÓyfw³å|>s^Ddšc¢·j!)ˆëŠöž°ÎŒ›‰i{‡µ‚ôõÎC­œç™i1F­b LC‡®ŠãÝ=ÓfÄö25‡™Ó|FiÏWÞy‡´®Üîöl6)Œ”b͉É(j®kÀzÛ„‰Ð÷öH<¼„…)ðS’ÂÞH®Á~÷êùY»WÀo—U4KX†^¼€¥°œW¬–• ®Ö8Û,…í417Ÿ¾VŠ´ÐŽR„x–³Pܬ=sHñ7üÕäD}öW¹þä_þ1~é3Ÿáf{Kg5‡ã‘›~‡ïÄZ4Ž#wwwø¡gÜL¤’I%Ẏ¢+1'îœw¸¾£3ƒÜ¸mƒ m÷,óŠ3žéÑk,1ü0^ÑÆÆ¼éÉQâv7ã$˜c£p¥P­èªRôVâu×úeD¿ Ûa¤•´öSÍôã€w¢ðûÃá€Õ†\Þ:îϯÙo¶íf$ £4Ö;BS€ãˆÊkkWpQ-¥Ý ºTrA:Íi •bšFâ"Ì÷AKäl®"ûÔÇ>ŧßüV~åK¿Ä/þÊg «ìžîyùòv»*Ëiááá@ c7r~83ô´õ<ÚÄšÙ¾Øs<åw†Âf3°, JË|7O?lØû‰©Û¢­â;>ñ)={"IzíµÖÚ¼ù1QU¦÷BÇÛ £@f´P’‘Û²*ëÇ–1Ï3ã(Â㈠‹¶ó¨6‚Á(–ó™±ïI)^í¡Ê ÅN¥H¡@†Ü¨zT˜ÆQfÙ!±ÝìÈ)£¸9Ðòº­w$$w¢(鄎ú®ãx<°ÙléuÏ‹ÍÇ?œfFoú‘u]8ìv[RJÜ<~Äë¼0ºNô#)£×U>ƒC‡ö†T!,”œXÏùÚîïúži\µnšg¤ÂÔ;RÑÝ>ÿyþéî_æ#{“®xü•oûñ¿¤þŸùÛõÇÿ«ÿŒ®{LÊ mÝб„ÀnwC››À±”©÷/“ËèD)ðÞP”b9Ÿ@+TQœÏÂÿ†ñÕ~ü!.6¯žÛ‡oM› ï¼ó¶TòJᬧ¦ØÚsJZ¹Î\ ãµMœ•".+¥ÐE+…ñrÃ,µðøñcN‡Ó×ýýó“ à—ñ3õ?ü3‚͸å鳧IJâ;¥r<éÆnè9-g¶·{qœV´)yS´v ”¹Î{ Šy‰<ñ:ÃÐsœÏx× ™Í[´Ñ„p®£V¸¹}„®`µ!&Aøžç¾ïYÀ-¾Ú+žÕ:C̉aè™Og¼•¸VïÖzZ§öý¨—±Èf»!çÌv³!çHY3 ±«)­E‰¬s¬ÍYàÈ”šðÖâ;iõ§”˜c ÷=k\@[ïYC çØÐ°J^Cï;æyÁi#hÖ’©>úü£9¦„³VøNZûF [Àj#«³œ—™TÖ³d.Ô*miQ¨;B´¢zTG`\ƒˆ4÷*¾³„¸àœeôq]QUá­iaA‰¢*㦧¦€u ç5OŸ<¡R9/m-Î{ºiBEÁVÇõÌv»aœGr^AYîŒýͧçÓJeœ$ð|:`­Á™ž5®lnQSA¡®T±ßI¦Æ…4iœáåË;ºÞóÎ;oó»ÿ±ïã‡~äßù5ݺßûû~¿úã?úG«µFÎÞq^WºN¬ˆÆ²^Ÿ›ÖæÚ ¼ê&J!ƵeI⮕ºf>8cyãÏþGðþñW›òoýÚ|3Àôê¹}øÖ¿ò·¿—?ÿÝ?¶–uY1Þ£1T„¥nüûécö²Éi/ÖR$#ÝJ†£u(-…C­•ûû»ßÔëøä§‡øŸÿ§Ÿ¬?ý7Š'ÏnY–g,ûG·2{õŽ'ÏŸ³¦H,‰Ý£„稞qš@ÁÚpÁÓ0¡Ke=/ìw¢¦W(nocŒC[M."ž+Ê0 Æ(™:iOn·Ò~ÕÆ\ɃµHw'l5$µ³Ýrû¯rð½e¶Ó6ÂZ%CÞ(-ÑZc,¹p•RÚ PÈ ËrÆxO)pœnooI¹°¦DÕ†ÎKj 1oM $ªäZH)S–r¡:-Ï Éfì;‡=ûÛßòéo%¥ÀÏÿüÿÃã'Ïyç­wx÷wñÃ@M‰ÃáÈ4õtcG*…õ.$Äý~M[|þüã8ñüù3>ñæÇØnÆëÏ%ävè\‡RÒµM­™°.ôã€sŽó謌oŠXc¯ã”iè©Tœr”&Ðî¾è rˆ äó«ªX%É3¨õ¬‘ÇT©h'–Q­5º‚¢¶$2ôÂ0ÖRÐ(s‰P}/¸[­”ˆ4Ñ ÞU ªÌ0zJŠh«(¶Û-©A¦¬ï™“è<†qÃépÏn·%çŽe¼ñÚ¼ýÞ{(¥I)€óè’ÛwO3š-J‹†çñö1¥¶\œé:ƒt]'†ØíDK wÌâløW·ØÔ™ IDATÿèþÌÿÓÿñ¯ùnþ­Ÿþ_ëÿòSÿÛÛ-ã8à¼cs#‡¿s8eÙN[J…B%¬ ”°.™Z˨À:EX µf´Ò&+b*Øÿî/ÃO¼Ú“?÷Âo¦xÕ¿ù®¿ó¯¿ËÏý\e>ÙMµ$PÎ)51¯g*Ȭ¹¥ßÕ iu[­ÉJ­8ç†oZ¹Xо‘õ/üáTî?ý³õóŸý¶Ÿ^gùÓFn}§uÁ=±$öÓVðªa•±@,lw78ë°J“Bb»õl¦½¤»QÙíoeš"!FiG f ©2n7èÕfÎóJßõô}Ïát[·–6pΙ ÚhRÉ䔯Eï;™‰Nr(@’[aÎíïA™ïb¬g'¶Û-ûýžiš˜¦‰×^{ÁÐ8ïh HZÏë°Ö‘ÛÁcÀ¢ÄõQu+˜ä¾R°Þ“³Œ}Œ¸Îš¢8ArÆyOÌ U…NCBW Fª%³†U¸ Ìýk·@. ÛnÇM5–ÔG™è¨\dI91Ž#ó²ˆç‚µ‹!¥‚1­!׌¦`­U<ñ µâ¬#F)˜¬sh%&:ëQº¢KâéÓg„0Óy‡bAiÃãÛ[ÎËJ®–Ív¢æL 무†EFBJaTGÌ J¿/B1 ´º-Înv{Þú2?ð‡þ%^ã£ß÷ë}'¿üÅÏ‹v@It/U`DÖ;áAÑL\ÙÎ9 Ež‰Õx£I9]S Q…\DKa´&—•Óiæ÷ýÄ‹WòcßL0¼zn¾õ½ÿícþóo]¸½½A!sºª+Y ¦µó’y§þ³#,Z¢ÑxíHµ¥Kâšqt¨\ÙžÃéî~MÛý-/ŽÜÞ>!çÊ~»• …Þv¤\Ý€®råùí AðV…Ö «eQ(8gÆž%ÞñôÉsá䂳¯-*DúR ÜØË!á=y­W’³Ž¡ IòÎË™¡ï0UNµÞxïH)ãœ%׈v‚lÂÖjjïtŒ¢ÙÇœ#v¥ÚaKM ]+¶TlÈäXYjö>9•RXehT Þ(æóŒ6ê*¾’C¶¶›¶a]W–<Ë­_œÑ䢡Hàn~ûzJtYnÚ}?±í'Ý<âÓßömâ¦ðžóÑ¡ïÅR© YWÒQŒqM‰Ÿ(U¨ºq @X"¨*£-»X$ÿ ÷¥Ùq™ÓJÊŒ&Ì2ÉFa½£®Â–/)Sk¡®ï!´B;/HËH1ÒYG^×kñu^ŽŒã†p’ !«4Ö9[Z)ŠRŠõG¥¤€ë¤£­æ|žé{OE1N2"0ºG)O •¹T¼íÉqÆØ´ÏU•’‹ˆä2h!J5,óÂñpäf¿C5AÈšä­Œ%¬cèTÕ„uE+Í™À~»að¢¶BÓŒ93 ÇÓ‘qœx¸;òüµ7ùÃ?üo©ßèûxº{—±óL¾£w£ì8F?ÉgÆ[²Êh§ñÎR(¢é0r1ÐZ“Ö„A¡±¬5¡Œåp:Ó»ŽBa; °¾Ú? ë7}–ë¯ù߯LœÒµßíQ-Ö¶hðNÚüÊ(´?²Ø!„÷[¤@mIzÇã­ ¥Àf³e™¦i¢äø ¿žoÿöïÄhQ‹…H¬YïØï÷×1„FóxÿˆM?±žn÷7 ÃH7ôôÃÀ¸›ØìvŒû ="µ¼V(YÒüœsŒãÈn»¡ï:¬uœÏgŒ5èFG\ØÇ0 ôãF Dh9„bÎä*ùî‚’Uk±cp¹u9ë®b¶œ$QŽ*”‹Ü¢¬¿º6m­¹ÙßàÚ¡hŒŒW‡ƒ¼OÀ8 ÔRi›_ €\ 9 ýt>ˆl`‚µ"Ö>¤>|­¤ZÉTüУŒ¹& *­%a:)µÔE-’Šc”ÆQÄkk60šJEMˆ‰R»fçåç?b»Ýâ½oz‰r*¥düäÞ9:ë|ÇÔ÷ÌÇS . ôN4#ÎZrˆôΓSl‘Ð…œÖ6æ9ÑAÔ"…ƒ³=)†6Ɖ1’Z¬tmâ6çdfo¬%†ÄfÚ\…¯%Ã0Œ¬!´ç/øßœ2’)ƒ1¢g°Æ ¢½Þ˜]×a›[Dì{=7ûnw7|úSŸf·Ùp³½ÁiOŽ…iØÐ #¶%j£èûŽqì¹ÙîÅ‚$^Ƈ±ï8NŒý@ç{J.|ÿ?ÿ/~Ýïã—¿ðy •\^µ™¦ëˆOy&ºóøNôíG­bÁ !\ÿ¿JΤXQÅ1ØU=F<}ñ±Wñgõ¯ €ßNïö(måZÄ?K–M>Š•/”LQ༓ Ú‰Å'•Ìš#©$RN£ˆ1ˆ¬óÂ_ÿ ¿ÞúÖO;¾s(%7Ù”ÆNç3çó‰ÍfCß÷˜·Ž’$:UXüâ¯WÖ‚1¬)r:-r˜*…6•Z¾,)ˆ0꼨•å|f»ÝbŒ8œ÷" ³¶µ¯ƒ´2)hkÁrVYÉWÖ E[s=Ì$¢µPš°í«xÿ¶î;O×ÉÍÕh'*-Z…ÃáHiq¶©èÛí–ÂUœ&ï•°¬”$N‚ÎyßËÁ¨…®¨«(Ós)ä"b,m ÚŒµt]GLI¸¥\EŒ)%RŠ×ÿ} å¦é¬ë–hܸJ±XÂxí;¦ÍDß÷r$6]EŠ‘óù|å%(÷Eç%WkrLxmé¬Ãi) »iËz^˜úžšåßÉ•¡ëXç…ÁwlºŽ’W¼Ó¬Ë‰Ûq‚HÓß ”¥ïz×·Ä<}=Ä@r¥¤íRâ<ŸÙívœÏg.Ö¾RòµP‰1JÌ­B„ˆ-lJ)®EmŸ'©UŠV„šq§Š’ÂbŒÒ¬çY, húnâv{CoztRì§-Ûq ³g –ˆFQsæf»ÃjÍã›[rŒÒÙ0«5U)Î!ðûÿà?ûÞþßúÊ—k1 Ûyìà©FQ­"k0m?-ìª"xhhg ÆRJIfˆÖäR¤s·j,%@Z3û›ç¯6âyà_=·çzãÏü¬ËF]Z…JÕmC A6ëVõ­É-‘ìr£½ÜÔ‡±1û•¡Q|õ _¨ßÈëyòü5õ‰7?M×,sXÚØN;œí°Æ1M[¬±¤5\çÍ©$v»Ã8b¬¤ÓÙ¡¡R׃}³)5SÈ(£…ºÖ¸C×ãšèO+¹Å_6lÓ\ªVÔªAŒõhí7¹à+¥-1eÖEâY‡n„æã×h:× ¤¨ÊÍX·Hæ¢ Î[”‘¶²qeÓÔ]mU—P#Q¤ËJ)]‹Š®ëäÖþû².M­Ý:' Öd¬¥ëEmŸ.ýi>K’â46 Ÿo±Êêši¯[GàòߣäéRS¢¦v€]'·Ù®ë¨Zñp<²¬Aô©¢Ã¹ç;j  <“xâ8)¢Ï9SC†X0EáH’wóy¡sd °%ï,Öh”–Ü «ÀYMÎñú™è|×@@•šƼï_„®<é={15,¯Þ7p=¬bìk-b¥3ë°'( œ y ŒS8Ïâ+/¥U³‡µîDëX\ JxKŒ×›Ý²È¨G)!'#3õË¡¨µÀŒtó4M¨F\×U¼÷JnÙòþÊ!Û÷ýÕZXÛY7D× G¥¼µ×îOÉ­²ÖÊó½d.´ØÝK £I*³ÆÈýéHˆgÀ™Zq\=ì}ßã½ÿŠŸÃéˆï;R‹“Ž9¡%… 1€Ö¬)¢«ú¡Kië°Ä’™×…yY(U€E©Nçó< Û`]© ŽÇ#©ÀýÝ=Ë„îh,S/˜~èÙîvhcX–…Ív‹mÝŒu ,aEµ×ßõ=s|Çw}÷×ý¾w÷Î’dåp<¶ï£bG†qdY·“Üò»ŽJÌ8mðF ¥BE…ï ›¥ä™Oh“ù¹ãå«}øƒ³Ü«à·ÑÚ<}*óbdf'ºq1Aw]'mé$‡†³V‚zOœÖ×ZÓ÷Ž äœ8ŸÏԚ黎¿ñ×þjýF_Óïúîß#·Ãë?ž” }7àœÇh'hWg¨Š– ›vyí&`mc¹7éVÉX-sxmyöèÉ5[@~F6èÄœ kL€PUáŒCUÅ2/"@D£j£Ù­cµ ö°FƒK!Qr³äEQE»Î¢´°)'Ö(ðŸ˜#~è·U\G ­…~98/ã†u]¹T[ÎZ”’Q‚÷þ =’  D:!R«èrÁ*Q|KSm£­ÅNöµƒiš“Œ@´–¶xJÌóÂ:/ò<–•i8Ž„ÑZ$aRœIÖ@É­  XÖõÚÕpN¬¥OÅZ9±ÆÈy €ÂùŽÒ´U+”Q ¹ŠÍqYR’¡1W´·h«Á(ŠªX«8ŸO×x]yÈp8š‚]ôÖZ6Ó†ÓéD×÷¼¼»»Ž` ›­@)#óÿEÉUþ¶ymE¤£Vè¼tÐ.z­5¾ïÑFSô›‘a3¡¬Ayã§OÀ*\ßcæáxÄûžaÜóö»w,Q´(¥²V(£ÆQ"™§ã±H€ÔügþÐ×-οü•/0Œc£Þì÷‚ým,Þ{ëÙMÎ*Íözíš5ÑeÍR°çRX×™Z#ڬ׌ƒçïþß?ûj#þæÕsûp®äǶTjkÑ•kR].…ëÅWÞu²©äŒï:|ß‘ @„Bέ}ß“sf{NÇûoø5½öúGÕ8N×ù?ˆËwÝÕ’h{i-k/üÿÒŠQÇˬÓ(E‰£í9‚¿Ì–kaI‰"Ë<³›d®¾,ËõÖç:=x;×5 – M’˜ÖÞ{\k;cûA|þJ˜Ò*—ÜiëÊæØ9RR`T$£@µÖºÖš’%ár N§k!Pš¸°AȦ–—à½oVºv.·öËx k™y !®¤|]Èm´.CßÉÜ>†p‘+¥dÖ£xßkaIá}M@'Lý¾ëPœºX!ýµ°|_ãa¯Ùö€ ¥’Bl¼|PZË Ú(Ìàу§ pšÏ` vè1´×‘[}QpãˆïGúiÚJ‡ˆŒr ¤(º®»~K˜ÎåY_: ÑÓÖY*•aé‡×u8ï®ïŸic˜K±s¢¢è‡žÜ´M€¹ŒMZwC_t,J±ÆÈ#nì±½eÉAPØ!ÐOý8¢¬£jËtûÓ‰Þ¢*˜ö;ŠVWÁE¨s&ü&,º§Ó‘’³ŠJXóñˆ‘Ö%$PVùþh-±Î]'Äœ² ¾/b@¥ˆ2š5µÐ(­ù‘ŸûWñg™o¦Ð¯žÛ‡w¥&ع°É/-ßZ±á™Üúe3 )AC*1¾O améʲ,ßÔkê:™3^B…:ïeÚG´¢Ý”÷2¾¸€Oª¤aµõz8ö½PsNTŠY‹ñ޾…PV+C?S"•©È!œrb3M’/Ùè‚Q‘Jʤ5ˆeº 1ð¢Ö¿<×R21Ħпüx篢³KbàeÖ~- .‡F;˜.ʼnmãyž¥p±î:¿vM^ZQcl¶,…S2g6JchÅ“j[cäòþˆh›¹ÌÇSÎ’ÿîÜ|­Æu^Æ512Ž ®#Ç(¡ä$·ØvX…,³m¥Þ8¬³8¥Q©PBDiPº’kÄõß;ÐKDU…) •¡Æ6J) ­$R:§B- •ÁZ‡Ñ« º(êš°EáѤynœpc‡ò–T“äÐ+…®í³‹jZ‡kâK¯,£õlüÈnÚbª’×¥ JbI¸¾—÷°@Χ39eɶObe7€ÆXËVRŒ}/þe%Ç‚U“`P ½3½Ž­ÁÖ ›gcü_ô ªý»wžÞ7ç„õ̹2§È’3ÕZNˌ֠JEåÂè<¦&æÃ‰Þ86ÝØòÎx;Q±¬¡2l¶_÷û÷ÅŸú©z:Íxe芢. ¯4»ÍžÝ0 ¬eI¬C)¯­*FK±âJ­r¦ÓšÞZ¼rä¤ðvTÆ6J|µ>ÜÀ«õa.ž¿Ö6ú¶1Q¯±ª …w¶µi© Só¼×@\óIf½Î9 9'd;o™×•¯üê¯|Ã:€ßñmßÅWßz‹uY°ÞI]±Î0Ÿ’ß¾&T*ÜŒ™ŸªÆS¹ZìB\È$ŒÑ”åÀ*•ÁwrhÚ?ú –…ª Á:Jæä%Q§ÔP¬òLJ-Ä9‡UÚÃ]ªÝÖk¡¨B¬+Ök¡£µƒ3™×Ö-0Ja1H·X_Ò×ì—¦µÒÓ²Šˆ0&Ñ3¡dÎK ´îE®ò߬±Æ A<ãV³–D¢€ÑtC‡u–y™YÖ•˜ó•…pq¤†—5Æ\G*IòÞåuQ*)Îë‘9œ eÆuÛùF:ë±Ê@®t]ßÚì–›Û[¦i´ñ*Üø’ º@§5¦Vc¹Ùl´eð´n–LïÕT0U¡‹’ŽÌš é¥B8Í„ó‚N…õp–P)UÖQÆ¡­%] Û ;Þ:¬2 Î µuíìXkðÞµ€%¡ïy/xc€\!eL…š%@)¡ º&Vú±¹Úg¸…B]F0dÖ…”YbdMå,ý4[¥s–©ëèµÂfØvºT¬ÖXe §™œ ó)P²âñ“§_÷ûw~þDرðÚÍívBÿtŽa 9km–[qL¨"%cì'•Z25g\ûnŠ–Ø 5<{ñŠø}¥ðj}°×_ø/þBÍ£–"¤öz™G)Å÷•çÎ\‰p›Ý–nÐÞ¡¼%¤H.ùzø¡çú×¾á×ô‘¾©^ñN[rH¬ç™p^1ưßîXfQNWà<ÏW›Üû3lÙDêò¾•+D]æçWÿ¹fÝEkp±Í]Æ#ÚHJÑŠbÄGk!7TlÈo*jg}EÌÊ3S×JXe>Q» sþUi–u‘öw˰-¨)Æx}ÖJ‹×Œ–qÀØ÷‚ýuV ´AÜ¥-î‚x)È^Ú³Ã0ˆP° ¹b›Á °ùã› ¤Ô‚òN¬‚­U¯µ¾ótÞÓ9õÏ_”ÿ1§«ßý2§O%‹¾!%*ò¼ë¿¿ýsb÷k‚°ª®“yïûIb‰Ú^ò3²qŸ—…Be^±E]„PF£šëïÿéÿ›z]o|ô8c©©2ø^ 61“Ûauõ}‘]æÆËÜå¶j­’_ß_çç—ïkÓÒ.óéKmv¹ý­$Y+ÖÉm×Ö÷ÞHÖU5ÒFU™ï»ÎKaŒ¬!JÁ¡„Q¯­¨Ò•R¤-íÚ\^é6\æÚ:5!FJyC6 òÞ”v;WÆ,¸cwݬEøW®v¿‹æ@l–RPäRäËž 9 À¨´VuÈ‘Ô =Phm®0 cÓ'ˆ Íº÷ ï <å3vq4h­¥ÛRK øùÙ{·_KÒ4½ë÷#b­‡ªrgº=öÀŒ=ÆX##ÈBÆÂ²Að' $#àO!„o¸BÈÈ2\€1ÌØÉÂà;d˜ñÌt·ûP]•¹÷Šˆïô~\¼_Äα4ÕÕÙ7Õ9;Z©ªÌêÌ\;ÖÚñ½‡çù=ƒ@w÷Œy¼çÖÒžqãÞÖª+€}ßÇ8Gm”![NÖ;r-`ÀöƒòtjTrÆ ºê}P.eLx”ÿ°çÌm[5Nw¼.Ƥ¬Ž\º`œîï“J+T„­öRé8\ô Š1èÞÞ{¤C.j̵*?uzë(ûN~XuÕUˆþ°Luè¸s¤‰‰j]^sw™¹Ìž>øà¿÷¾þµ_aŠ3XËZ2nšØªBÞ{]E5Å=sr!´¸Ì¹Ð;”ÚØRV‡ÎÈ ©RiFhüþ™×OàÏÖ%OÀoÀËci© ¹ÒKÅ«—èìûañ9ºÛÖE§V»¡iž‘á"bˆü½o|í­^Ó?û/ÿQs].§¢Ø#ï·¼¥óð>âgnì€âwÓ¾ï 0YWB”RÎÁ:Çõz=ƒhŽÃéÞ•R¢c {ÉHµŸi|Ϙxô!¤´ôVÏÕÁai+¥œ“3¢n´#,¥ÐªúÊ»t<g,¶«ïðÏ·q(™ÑÑ,ó|f¼·A³;pÃ)'M±vºƒÜVk‚ͬôáxtèwàp£L>(IÎØATÿ{D3ÎCzÓP¢9̈@“Žë¼~ÝÞŸ0££‹>Äú÷©`±Š¾¥V¶’tBÐ;ÏïžiÛ„0 »Ãá°\–S¨Wk= ʹ°HïlcbBÐ I­:æwŽ9NL>œ,ï=!ªÄ8«ü "] µÁðÞã‡àrÛw^X=„1 Šj¼¸a§Ý÷n ¥5JSp ²ÆÑ»!¥ÂÃë{¢±LÎ3O‘ë2SKÁ;GŒÓ¤ïßÃ~#µŠïôÞ<{þLyû®HìÞøƒÿÂþD àǤÖÏ»+Ý±§Dkú¾ß7ˆº'Ѧ”ü°Ï„‹ÝzdžH¼LtÓÙöZ ¿ó?þôð} €'%Çùu 3³ó¼w½#tCÝ3Ñ{¼Ñ|ó8øôaØïÌPDÌûè)%Z©L!²=Ü4-°Ú<ðïçúæ×µs<” µÊù@>:öZ+gr€håþº®gg¹\xñâÅé1?,^Û¾±¥}Pu\y¨Ï]Ö)Aéyë¶’RÒNTî :ãÈI¹ïÞ9n·Ûc×mu—Z[UëW–eÆ;7º§QÄ”ŠH*ù‚ ~¨á…Ú¹)¸f ¸Q =¿¶0& ntü{JÔV5zvähqóèò8 <éú,†¼'j©'7`Y–Á®1(÷Àêá°7a‰­ ëM×)ÎŽQ°Þß\ [Úɵ¨›À*é° vkÔ¸?€¼ïØ¡H—Ú­ÓùøþõI- Ö+ü¨ Uê™Vgœ©V ½šã¤VÇÁ<б„yä NÇ¿_Åšš¶¬ÿº®<¬šžYZ;§=­‹®=b :(;èÂâ`k4BÐðç±`r–É[œé,ƒµÏ˜ø(õQ]#{ÚØöiš¸,°~6)ÜÖÛxï i™ßü{¿òëêr¾öçÿ|?ÓµV^~ð>&xî®W¬u„Q аn µ6r*æj(¥iAl•“9Ѭ IDATŽ™[e¹ Æ4¦)ò¹Ï?!€?ƒW{› <Ý·îë_ûk¿V*¯^½"ø4ÄG¥Mùçª\Â<¾e;â\¥Væ5àe¾pñÚ©}û›ßø¾…€_øòšW÷÷ç8»õFnjßKI;×yž™¦éÄùˆÖcའàªÜívcß÷óÇÑåûQ4l»ú™;JŽë¨r^7ùz Î!2¹È&ž_îTL6‡•>:qÝS;«ãèµhét\P(”†iBÝ2FºŠ‡?•¬‚<çN;æ­hhŸ&xst> ã{¸ÝÎ1ýq÷©we ÔZ×=§õnLxŽ_‹!è¯?¯”‚ØNí5%R)HՎ؇4AªsÃõa¬"ø56G…ÔÄÓnjÆar@Ö9;v€Þd@w܉%ˬ¶UcT—1V1M¬"¬Cäx‘Îf0ó÷=‘rÖL gõŸ.UöÄ'ó ½€wTÚZ;‰¥UŠT¦i¦µBpV÷óYèµÓöŠÃ¬Ãp¶#-‚£×ÂR½döíFo•€ÐK¥Õ‚µPjbÛo¤œhRUX:yÄ µ&œi„`Ôê*–µ¨Y÷<×—/øÂ¿òëNòïüí\.*LQÒ¡ùyv½SmÅXáˆ-ï´.L1|ÄYeg¨~BÓ/½×ÏkÓ…àËåúôàýì]婸 xý?ñMv©J×ó†Ü8ã¬;G¡N†ÇùèoH«:²ðF}÷×÷¼ÿü9®>÷…/™·y]_üêWu¤>|àÆ[Ui‡_;F>ºÞ£K;WUÎÛ¶cdY…ú0œÃW<~ŠÃÁaެ%cƒcK‰0E*’3­VJJ0„f½8]À[KN™9æðÈ.ðÖ‘KÖ.žcÜÝ5¦VTÀ¥®‹1"iž°N‘ÌÒ•«G6ýžv-ÊnôRqÝkVíÈ®¯CpgÆ¡X†`Î:{òrÖ€£ã^ü!ø<þÝ ‹c²îÛ º3q¹,g±\.£øR”­uN»aiêo ‡Òê«°±ýýÁ(­²îÖ(V¸‹0Ljd ½‘‘˜“âÏŸ=Óüy+ (£ˆ½^¯8ï(¥(ºxLKæ˜cÔ …µ:áÝïõzUad)ê‰*}ÛuEsLNޝûp¡ÔšÏi˜5–Ö*ÁOš` F:4ÁÃ2¢38Ò2]*—ñkÁ˜£S6בÿYN­°—Ì^õ>vÛ ÞÐJ¢·ÌÝÝUY­2;óÑ+âüÉ‘ï¯þ—Ÿ§”†ó»»g\.îîîX×UW_cr´×‚‰7`Y½wrJìûv®¢0Z¡HEz'ç„” ­ñÞ{<=xß‘ ?Ý·îë÷ý—_`¯…Iš:D;àVõ›×ÝOk€Š¹–yáý/™§ º>èKÊ*Øëö„•Îßþÿƒþ6¯ëúéß®EUt®3V÷¥CÙ¿mú°ÉƒR÷ðð0„SœcãC]ÞQQÙº®#Þ¶SŠÒë‚sÜßß'9–ef½­XgOÁ×Q8Ã.Â2&!%eè‚C…~Ò;¹–!hƒyZN°Žº eöU¦jÃÜKàGHLÆÏí¦#æCgá»>—B*ùŒâõVuÎ:ÖÛʶmg]*i "ª¥žÓ#ÝÎ ú!¾ctº½óÆÚÇ1ÅIé|£ÛÑlC_°×¢®:kÎÉŒ´FNI?3o„ïô¡ß(¥`æxžµ!Žâ#åŒÌµ+úa›ÓÝ?@Œ“N¯ŒÂtŽƒ2"—툮#ÊyßtýfM!Tĵ!­¶£Sç±ÒÏBÁ:;Ü!rN^ÚX•ZpÁ©€®÷¹zÕâÃC«}Ý4óáö€EŇϗ…õö€wv jõ ÑSF`Ã…rL̘ZÑ;Ûºâ€ë¼°­÷¼xñL ¨áxùòW~ü“ €ßüU,vÚ”Áy F]9¢«¼ŽþÛH ý¼Äp^s4zÛkaÕU7}¤ÖÂýkÿøÓƒ÷³wå·)ö§ûöÃ9"¶Y‚ñ\§+%t62þÙ[Áxõƒ€ gÛ¶²—Dî ;6ÉdÛ¹Iá–ñ¢Á#ßù½¿ç­^ÓOüìï0F„;˜Z÷F0ú»Ýö‘®¦ɺ®,ËLˆcÁyKé•xñH€Ì­oØKàãÛ+*…!çÄe¤ÃEëˆÖ©Âz…$5Ý…ä;œF"»8³îI³>’K§Åv€ÔîhÍðêã%Õ1!i «ÁÒF¾À²\È9óúþ?Y>zývöÌw ©\£çZ1¢¨!îI¶‘Z†}'ŠpqŽˆÁwÃ콦e¡CÎ…»ùÊä<Ûz*ÝTÄ4rUR ín„ep‚†fÍ4°‚sGÃÖJo•Z3xƒ¿DŠë{ϘàˆË„ô¦: 1Õ`»ãg&ç"Ô*H…V‡ß’’„zœ — \V¯öU¥û:®Ã5LØÒ)·Äb'¬Xîü…™ ëÉÖQBྶ”)EèͰL3ûÃÊþp#tð ¶û¤ ËåBj•b ­ÚeMç>­´1^_bän¹¨XÒX0…N•BÉ+ÖvðPidÅ{Ìõ‚#°ÌÏqv"'áã‡Ú-¹  o;-D †i¾÷ÂË»çÜ>zmßv`À8¶-aÄ@*¼¸^¸xÏÏïxÿÅËOüžûhý˜x‰´–ñ®.²ÝnøØ{%u%²—Œ^L|pì¦à.TwjILÞé£UÜà!$<f¡Íþú¿ñ§‡îgïÚŸ €ß ×Ë/u¬uÄl­ZÀjæËåäÒ¿iÙZ– Bç¶ÞèÀ<_˜—…ë墖ŸÖ˜bä»ßýð­_×õù òØc–ZIygžg®×Ë9‰8vÕmì„H\õÈ+­Ï‹Åãä£]N?þûøšVÀù9vé*|LÈ;võÖ9E*wcp(Ó¤)w}`“­Qô«÷at¬Bn8ÏÛ¶i¼ò<#Uã^•§¸ÙcåÒFâÁ<ÞUœÔ—ï¼W'FUŸ|ÊY)s#¡-ø d»1Î5Ö€éôÞpÖ(úUÝxXë5H§ Ý4cŒ£¶Ž5ê×7œS‘h.jµ‹“ªþµjÖROõ|ï¢A1#`gŠ“‚pŒÕ1·q'é±59Ò´û^· i¢Â=ѵŒ÷NQµµ2ÍšAÐL§ôÆ«W¯¬©ékj¢¿Çyæù‚ ZzxÐ$HÕ‚èÞûr½âƒò-J)t£NŒmÛô5†é„8åRt_>@SΈÁת½BׯG'Z…´gÌÐwˆtuJXÇ4/X縭ëÐOø¡ú÷ä}'Ïv[™C`y —ef«Þ˜ËxD`}xPnBmüSð_ùÄuÜ«¾K—γ»;¢W+å2-L1Ž`©€Fx‘£–¢øß®E­&2rJԔɹœÓ». ÑäÆëŸÿ…§‡î;RlO÷í‡ÿúã?ÿ"Mƃq¢¤¬¸]kyýÑG§r<(5†*:ŽwNÖû¾±m›îDÇ>ÄȾ=¼õëzïýߤt±Þ‘aM¬­>æÅ‡ø¸ÇããœÓšÐª Í`»‡n©©’S¥¡4ÖžP˜Cðæ8Cp0À!}ЈˆbOQwÉ*b›‚ú·Ñqö¾ïä’±^wçÍt>~ýJuCÈè×.Ëé¶q]LïÓ;ëÃú¯àœ’»h ÓHƒ;¸üÞ9Z©:~µ^³ œ;“;zXtÔÎ)FÓ÷¤ƒ³ƒCš¡ÕN+‚5š…л}Ä÷Z%Z£˜åš ¦éë3ýïtBTrž"‘ADÂ2˜Þ{=3%ÎÓ©=™fÅák˜8Mt&ãï6Ö°î©Rk lò“ տæ=ÌóL šÑ{'uˆ¾ޏ¨ PºK9 eOÑ1¦ã¼Á‹÷–Þ%ïìëÛíöˆŸ!U`Ψå骼í'@Ès† í9ç‰×÷¯õÏj"j½ QÒ^AY­6ò–¸ÿøÕY¬–¤ôÇ*R;ëŽ3¿ü‹ÿÏ'®ãÒmň°ßVꮨb]E ä° î„@´n`Íxcé"´¬­`œ®©œS´1I…€å2Ïü¡_úcOÝÏÞµ½M°>Ý·þëÿ7¿s*½ÛØ£·¦Okõ›»Œî¸Nµô‚7­`GQ ½Ñe߯a&ñ Ætõ’spÅÏ=Šd$ÂYï0Á«š:©šZjãõ‡Œ%ݯÜ].¬CµßG1r$×ûòc*Q»P²´“³î’ùúù…Nd‡ÀÓ;è{þøJ…Öл£ÖN) p´­1ºVQÚÜ£û¦xpüÇ=”&ª¹h¼·Äè]NQbÉuìð£å‚ Ácr€5¥^¤ÅÇeÒâk˜æ™f;·¼+àÊA•²L8 !Xöõ‡‡{Z+šYàúéD¨£À+½a‚ 2[UIœ">:î”Vò¶RJÂ;Ãõºp¹N„èÔ:ˆaŠÓIX4Î>’Ñi‹¢Yiít‹0+kõ½ !0‡@/ 7>«"¶î¤U™ý=WfqÆ1Çùvù8Ó:´Ö1Ö±\~ý€o|ýW»ëP·LÝ3ϯwš•H)z€[G°nXBõ3(µ1ù0 Ma ñd[˜ñ9mµqwweXùÂOÀÏèõ©Ïò7 €ÛÓ}ûá¿þû¿øßè8}TòŒŒrc Ïž=Ó®dWõ¹óž0M ]ÙvÖÛÆG~|vq¹ìÄɳ§ lëÊ—¾ôå·rüäþcÆyÖRj¡¶ÆóçÏÏC{Û6îïïO»Òqà¨2yØÙ¬U¬ñ8|µÉTaÒÑ™Ýÿ!T+šsü{“ƒ…¯å¾ïÔVÆÁ)„àÇØ\ uÎX…ð˜GÐV *L;’ MP…7pŠ çË2þí¦µã¼ý¬œ|=Ì•3`Ñ$Àÿïƒ"k!ä4MãðTÔ®qögÑtG¡S»`½gË©äÇlw§î½GA3PÑÎcïÚí±–¾®Dï)@C¤ÑC= `ÏÁiCÜ'ÃYÇ„E•öžmÝ´óQɇãýºÝn§Óãáv£‰ŒB€±"±*ÒË…ÛýMÿNßÇ´§û|L{6Åãó~ØAÁ·?Õ5UB˜¸.wt· ZzméÔRl€a#lµiªzšºÜp²´¦ÂÇyYxýð€E' ë*#qŽH¬³Ì“D™nXVŒw¸ H~ZÀÆOtä|éË?jî®wL1òÞ‹—¬ÛJ•zZ'§Óühϵ §œyÛ¾+ÉYuw0Öpÿúžyšø3ÿ÷¿øôÀýl^··)žîÛÿõg?ü·0c§|ÄyÚZ=vÐÓ4ÁØ“‹¨ ùÙ³çLÓ¼,,ËÂýýà cN;Ø/ü•¿Ôßöµ½|ÿn·ÂÈ“ÿè£Nh‹jx}hÊÉùW{ Ã[Mî“V˜œÃõNoœ·ly‡ƒÆ÷ÆáÐûãÙ¹÷޵çìø:ý8 ¡÷ʾoìãxN%ÆN¶‰R¬÷¸A4]aGG—Xr9F„±“6Æœ´;k-ˬ.‹Ûí¦éµòòåË3LÆ–ÇCzݶa1g.½µšp€!‚š X3Þ[¬gñÞ`LáJÅÈ›¬„ã=±Æp÷ìáz½`,Ô0rŸìÜ£®M,RÁ)FX3¥J“¡)°´áªPˆ(frµÕ¡RÏZ` mÂ2G̘Ø@W.«„ƒ$92 Œw„yƽEkz /Ëõœˆ\.WZi”Ò°ÆA·´:&(C;rL¬ZkÔ.lëFÉ™Z ëÃM×:ZyÀ@ææ¬Ý\ ¹¦ib[Wö¬vÇ&¢ëc˜®—ñõê¡ }GJ™o}ûCÄXJã/^~r ð÷þ«~ û¦ÚÍ*PKk "U†ÝϪ(¶Ö:Áü€<%R­t«À¨> ¿§ë3{}ê³üÍà èüŽ\>èHÖrŒï•/îG c¼~†¸¬+÷÷7@Ø·¤V:ó¶“óN*Ðûðþô_ùë<{ù‚Û¾ÑF`̲,:Z¡mÛ0V»ÈÃò䜥քH&:«V,©ÄàÁ BÅGí~æÂ9ò?l†Çˆö88ÚÐ!¬Û:hn:F^–y ‹We¼Ñ5…†Ôì»ÚÞJ9}æa 3(r©è"ç|2ŽuÅår9ƒ~^ßcJCRöèY¯­i7fÕ:V <ÜÔÍ`uÏí†5Î –¾õªáðÞà¼æÔši’1V°¶ã½!Ç4é®[»Y  Îs].””±ÝPòÈY°BœÎie­9î_ócˆ:ÅêýOûÎívkTZgi¦“[ÅÇ@œ&nÛöH\ìj+,¥›Npj«Ô”‰NC‹|ðØàÎDÁ0¦NªEyþ]ŸŠÛ-½© Æ)´™}ÍÔ %©îd õýóØlÓ”ëõÊ#¦Ãóëf&`0ãuÈåraš'ý}ÁçI ÑCp4 ¥kñSºœL½ÿÎjÊb7–W÷÷ÔÖø¹o}ü‰ßgßýèCj_½í›¦Þ]Ù‹‚’RQ"¥ÐÙö•F§šNªYyÞ‘j!· Öb££"4cÈhNEœ¦§íg÷zýTü¾þÄÿñô¡í,ÒÕîÇܺGLkëÝwww´ªV©»»;ž?>ƶ•Ëõ‚óîìbßöúà?úO¸ÈÑ•+õïqéœr ä '1Ð+΂szÃA$chtiHoÏÿ‹BªCü/]ïÙ“®b gLok\ò9®¾ àÐñZýÈ,0Ã3_†Zþ2ëîú@ì*ð¦)ýp¨Ç½÷§6ÃŒ½kÉ;ć9% ¤)õ‹›7$î ¸«c!HM„\´K.9«¸²wºQ‹]­™ Óì1F Ÿ\¹ì”²ëT£é”ÇX¿ÞÂáV˜§‰VS5VuêÐxìÞÛxݽ?¢—Ër@锇¾Š¦~ý1/Þ»ãŸÿWÿø'vÿ"õ÷æ’ñÖgO®;—e‚ªÂBiPËÈwpQÖrŵBŽÉžÔŽx8 ¤T¤¼“±˜ úÿúCOÚÏîõñÛ=Ý·wçzク\/´–é½b]ìÔPÛ˜¶©ŽRäT©_æE­eãA{Xñj­<þŒZ3_ý±ë=ÀO7 ¿QYãU”ËßyO¤u£—qˆ”ÊáÍë@*üðÈ;®Ïî°Q¤7¬·LóDÚg5åp™‚ó¤mgOêã/­à‰~_Õ=dâv?–ÅCØé„¨ªzc Òšî݇¸ÏXY-Û{è¬1šÍàüÈgÐÀã½9,Œ‡;‚1†—‘mhú±ÚðaX5u¿CÔ<È2vßǺÁZChàª0YÇÅEfØRÂÇÈ^!ÊÀ+Ic…kS˜Ïý=,n'Gߢ?Öœü:0Îóå‚ñŽ­-¦F2âaÙÔUî·QTœ+ŽþÆÏkÑ޵õ µ:îµAK뺞>c ×ËpPQ¬ &ÙðhŒ¥”ªki”ZÔâè,Û¾QJ&:…ëL†–5år_wœñô*”½Pr£ìšÑÅÐZ§”²,¸ùøþkJÜr⣇{îS&Õ†“&×Ñüàƒ÷?Ç·¾Çôí+_ùqc{W|÷x»gºÚ»ÜÝiÐÒpˆhº¤j&ºÒ®ÎµÙ4©`óùó罬÷ãoþ©§~ñ3|}ô6ÀwŸîÛ»t©zÞ:ƒ‘r>ð¬5ônhÍCqn¡ä̶­Jür^…g^ìy_éÒ¨­ð×þê_~k'ÀÏýÉ?mn·}(‰ðÞ‹— -Š9'‚Õ0¢`5‘R)93/3·´ãb \fÜ<‘Jæ~½©])Âl˜‚¡PkÉúÿ&@­mú#ŠÖi³ÃžjGá£ÖIçtº¢ïɦú‰7”û¥æy>Ý ­)UðadFôñºìPÀ§””„èÌ(b,kÎlEÃxæyÖ®X¯_½bŠÓ;“›‘"xpÝ8¢ŸYâ‚Ëe¾SkaÓ"rK;{Ú˜/3ñrÁM;MLÏîS¤•‚ècEbq¼xùŸÿÅ÷/üÏ©/q:¹ÏŸ?× §öÛußÔ0Ä£Ý~õë_ƒÒ%ÇïSf¥J=ÑÖ‡Öd^~ן{ùôˆýì^Ÿú,*ÞÑëü¿{à8;¢zØæœ£wC­]9üV!&˜çÕ&¸ÌW ^Á¬éXÛùÖ·¿þ½¶/ß?;é‡×÷Ôª¸é*Ž£wZÑdÂëåŠAwòµ!•¦zŠàc8v©ît q üªl7všÁ¢Õ¤@{ìÞ;½ª3 8«ãçáÏ)aDwõGúŸÆ¢ªýO¾Jí[.*”¼Ü]É¥œØÜ0(Œê¿r´Ö•l؆McÆzŒqÏiD ‘: g˲ŒH_=€Ž½wõt÷¦„<7RòŽî2ö¡]ÐDøÌ.PñšøÜyžÕµ0‡ÊèœjΔ-Ó² £"gf¼q€í‹ªõkT¥"Ôµ“7ÎábÐÀ§¯õ˜Vøƒo0Ò­Wÿ¹µjÑÔÕ”Z2ó¶a{ǰ΂¦,šŠÃRk=YqXPý@àša©Ü÷]×)o°º1¬)a}Àº€ Ÿ©œ2ÎY®óLZ•¸WRÁÏä'rÒ° œ2yK˜ûÆÑD©‚A5Þ’ÛNª•j:÷ÛÆ·?ü.ÑÀ%xL5´",ñŽßý{þÉï=ûýηi¹œ:l¤5–eÁûÀ>‰~8Êt~þóŸçr¹œé”s$õóEu.ÆÖŸÿÒ<=`ßÁà;O÷íݹþÖ¿s#§|îeýHF˧O^÷Ïǯ{o™BÀZýyK“Ž1%+ ­à½#§Œý¹Ï}éTx¯\ûÞGLok„ÁpvìcÍ\<~ IDATÉfºŽ£]jkrŽÍk©'îTo½Û ‡v­T²beß»éÒð¢xë‰Þ$¯Žî½÷¿&à OÝ3%%j*Ú±ÿvˆsUçÆñþ”¢®€C±_Çë¶ÎŸ˜è.];ðÚðFÁEu\úÙÑÂò€½iK<Š¡c}ÑZ='!FÖ]Ó«è0¼‚ÁŽOoº~qc*–rær½2/‹Kƒ_q€·GN™ižFAf†(·“ò®Ü ̰«Z¬ <þR1ÅcM!Exùò}~â§~ú{®Þî?þˆmÝi¥ê}Bãšs+„‰ótò#Zïiì¥ðá«ÕYâ,¹d%)24µR»°¦¿ùþ û¿>õYþfðí§ûöî\?÷Ÿ^ÁXìè,Á0Å…)ÎÚ‘ÒÕF×Þµ;•6ö†cÝÕ.Ë‚é|ã¼ÅXÃ/ÿÒßyë5À?óÏýK¦lûÔ ¾þ˜‡}ÓÎo ‡:—Ìúpƒ6Cë¨YCm¦I=ÚCpž8µ'÷|Ä»ú¨Á>š$×*kÚ‘æ !°Ló¹Ç>vê2Æá[ X r£;<}Æ»“`èÇê¤ÖÇøÜs];Î|XëpÖSJÆbtïÜÚö1gTòae” § ?ð”Ò¹N8þΣó?ò ÜèÕ»t=¤DtWß½¤=åý§ÛJÞ”¶×KÅ]•x,iÝÆ!×ȩЪrïsÎìûF;8Ô6œ<ýA™sš¢hŽüÇúå¸ö’õk²†ÔŠ:8z£¡÷F+Û…è5'œ5,Ë„ñª8,„GÈTkyžFÖ…Š{ëgñB`¾,g‡-ÎèºÈXê^ªäSÒØN®Ah4ð #m±õª+7o°ÑQD#÷ý@Uèce$Bôž¶>¾çöúž=mlûÆ4M\.W®×ïm»ûæ×¿öË­6^¾x®.†Qй±þƒVx|Ž‚W€ÓË/3}LŒŒ=?Sª É\.ª­À>øÿôÓö³}}ê³ü,¾þgŸ}hO÷îݹ.Ë3¤Y¤A«a¯¨XΪ€vN‘·Æj'º'Eõžiu¢V¬´oˆTn·÷—þÎ[¿®o}ó•RÈRèÞqy~§;tïÀ9ºµÃþÖ1Î@©#η Ú舥6ziƒÃ.HÙiyGjÕü÷ë…Ü„5eüéÖ+„ÅpzÂ{öuݳÒâùzzmt|êÕ—cr0:WøX.Ë9¥ð£ãuf …¦ã­ë Ñ¡itz€úà;¾¦`ÝÉñØn éοì™VªâƒÇŸmºzå{¤´óçÞØÓŸ_iðM›bA("¤Z1β„ Û “\¦…ÞäD{c©)ã]`‹®F‘ÕEi‡a™Çá¦||?‚gzmÔ\(9ëýÍ•’òHÆs¿†ÛpdB“«#EÓô˜œ8OÁZüàH8çN¡_NéÔaïÏ^×U Bï¹ÝÖS+`­¥Œ± n"«+y+Ì!"¹]àþõkr-¤ª‰Jã~Mé µD‘LwBªb‚˜Šñã=©Ô!ZÕ "ØÖñݰ¸‰»ùŠôFnEç#þèŸü3ß³ûÿ—ä«Fº ‹þÞÚô¾.— ¥i…q–ï|÷CM¿4Â}Ü«ƒ‘sÑOÝ„µV¸Ö’é—Ÿ®ŸÝ«³üûž|óéþ½;ןø¿ŸZexçÉzˆÍè{oª°†âøu ý#ÀÄ:ËõÙ¥îîHÞß~ ðù/|é½Z…ËrQqœ÷|ó;ßæ–vª4°èh½T@aF2‘–2=ÐŒ1¸Á¶·– .2ùÈ<âaóçRtÒßÐo õÛ8íë‹ï»&jzçN*âÏz`jkUäìˆË=ЮTH† Í9Ç2/gιtÍbÀhqp¼F;v÷û¾ë Ædüoš'% ð1Î>ræ±Û> EG¼¯Ôª»òÜh´Þ¨½ÑmÇF7È‘C æŒ“?Bn,†¼§ºAÆAA "Ììî÷ƒ÷0’ïŽâhŠÓÈ+6øàpnðó‹Âvª4µò¡šcõ€>`:z€·Ó9à†X1¥Dpê QѧtÇEõUOŒ‘õv;q½iO§Q¤±nX4=ñ²\Gç¬÷x/‰îÀK_*,LóLÉZ Ün7Z—1±ig¶…þ%¨fÃØa›¨•¼ïçT‡`9…¦ßëú_ÿê_îÞ˜—…/~ñ ú„K-®Ôi1Ï1úQt)¡²ÔG¡°¾<]}Ø‘ÜYkåîzå÷ÿOÿðÓÃõ³{}_gøSð_óO½¢çŽÇáG2LnBr‡fpÝấl^„` ‹3\‚c‰Žà-{I¤ÞÈÎaCàáÕGôZùè[?ØÆè·ýÖŸEÖ¥dÝøÊ¿Œ”JÎ….–Þ  À¼h7jZÇw‹—¹RÖ]=ùc¼™kCº¡ ¤"ã±]…Y“ŸèÅ`²p¡3õFKÆ™ÌÚfò¸¨ ysÐݼ«Ïå¦ûè’+Te%ô*Ønh¹jî}®ì¶¢”C=Œ×Û cã;…ÂÞv‰†æ Y*Ýê>[è„)ÒMÇŒ¤Aœc-™p]H¢‚±>kÒb‘ÃÖ¦Hi…Ü2Í5ðlúNðï:¦WzËØ^Ï´Èœ3ÆZÖ´cƒ§´ŠxK–ÊÝ‹ç<¬7RÙÕ+ß…RKÇ"ÝÒÄ2Å+Õ³g7•ì:+•] Å·´âƒCZ¥†Î}ߨ½Pœà¢§–̋˕÷Â…) ×jhݰ÷ŽGñŽâ,Ù9ö·V‘ØEX^„/°XM¶K{ÂyÏžq™)]÷ß­‚ŸÙï3¶O´]¸úß:“³¼¸.ÄàÑQ$ëŠÁB¡ããLïŽ}/xibÐøgJ¥å<¢ #Sƒ!„©|œ¹­‰ûûPl³”BËYÙ Ò‰wwü–Ÿý™Oõ=õáý ³\¹¼üMà#ëªèeW;A¾uêí†äÉZÙ§ž=ÉfŒ€köÆT®zî"1Lt러ïpð§û÷î\¿ëϽЌó? HëÐÁ;ÝJÓ1_Z]TõÁ«ï=‚ñÔ®‡Ê)4û”]ɯwýÌïøGhµ!½ -cŒFËÓ©X£Ó‰&ùìpµÝÔ¦ñHÜË¥ð°mܯ7 ë†ÈËt¤Wz¯çŸç\ÇCIDýøÎ))ÏyGïm»‘Ò¦“tíœcžgæy¤ûYµ:§ÜüSl6l}Û¶cç#Ï9GMc4+MÅ~V•ù%eŒÔCÓ‹>²Ù‹þ(WÀþ>ãç:%î”áz8rœ÷\–‹¦Û©ŒÚ„Ú„mKÔ"8¨¥b å¬^}k‰Ó¤`( pcÍqìÁOT3¼!¼<ìwCCá”Ñ/¶3_–S»qøÉ;è”âˆï-…yšH»¢ˆÕ0&=¤4z}dXÀá°cÝ÷4†u¬läÄõZçÔ]‚Ñ0G#Ãâi1t¦8!MØ÷DÚ%«âÿ°ÂœÑ„HïÕZj­FF—¢ï]ÊÄÙo+­V¶uÕ`*c‘\‘œôŸ#ÑyG©…\v|ôL×L@¤ƒ1üÔoýt@Ú7RÎC̽ ˲0/³â›$uQíOðžèœ®hR¦äZ2½Uíÿ ñë4œ-ÂOüØo{z°~¶¯ïë ÿû €¯?Ý¿wëš—‘6RßÔ³}ŒŽaPœ&Ä(¶;KjÜ„î<ÎOˆXjrROõõÙµþ‡¿ðçßZøù/|ÉLË4˜ð•´­ä¼3O‘œV¶ý†ªùmßÔö'íLy;ÔÚ¹*+=.ó›Tšdu·:ŠAZ¥µ¬Éx.*¹4Z®´RñÖ!ÒpÞòüÅ¡é>tl‡ÏýØËPžãp#ŒÜ…qqòáF¸, sD»!‚“ZñXz¨»å¢{mÌ™½p¬Œµä=©òHý®c=q(Èm] a] Ö¢Ÿð.hƽS„°µšspØáã!Œ<<õ§³bèÔ4¦™¡%eô×`Eíõë×´ÁÓ¿Ì‹ r% Â4/3!, Ýœ±ÌÖºe²žÙLB7 ® ¡b+”.t x§Xå¡cˆÎÕ†¸›„F· A1¿ÆZ.—+—å‚·Ö*ëmŒ]%˜¦š‡}ß¹{öŒ^-åÁ™ÐBí2i!v·\˜ãÌä#´†C×"(9Ï«P$“Z%Kåa]•F9ÍXãùñŸø­Ÿ ¼%½a¬ªŒé*4Vã•ö©˜iý\ASF:ÁXl7×Á£Dã ûˆÃ¶&ð•¯üÄÓCõ³}}_gøSðŽ_ÎYj+«^鎼¡LÝ]‡î‹ ‘iY˜–c,{>à-žëóäÒÎûo|ëÛ-×+ƒ.‹±Ó%ítiÄèd„‚ Ž0©o¼™N•J‘ŠõŽéº`ƒ#L±×ï8g©šaoUP蜎Êuîña"ú@Ú7íà¥Rr¢÷ª¾õAÔ{é΃Ѿ‘÷~LNKâ8üN_)j™“®HÖòÖae­£û÷û×÷gQ³†ÇÔ¦ûáÂi‡£ÉoËÑ¥AÛ¡)8&‡ˆŠ@{‡œàéݱ®;"ö|®,œs¼~ýú »C/ÒO!¡ î´ZÒ;}¼Fg š?ôH,<´ó4á­²6Eß ?é×ïS}¼~kU‘/]Ø’vö %. 2 ýÛúˆ´ N“ÿŸ¡”2ÞßtN¤Tœí@ÓµŒ34×çwt£(éZ„V:—iÆ;£3©Ä z côçûzéLÞóürÑU•±¬ëª1Ü¥@mxch{Ñ¢Å:¢³#8Ê T:b!·FmÂe¹ãÇì'?õ÷S™—‹²RÞÏøb¬A z›N ¬µô&'sãh¤7d|ŸukéÖM9¿û¿xÿé¡ú¿útÿÞ­ëüÂ?†HaÛ(%‚;)a: ð´&ä\T¼ÔfXÔŽäÀ»»gï‡Þq¿­¸˜—‰oþâ/¾õàs_ür®8H[æ:_Ø×ÁAN«²ñ'YìUÀOjY'Áѽa¹^‡UËî\†ê]÷–­Vj-äZ5)Øoëƒ5§¢Þx‹«“7y}d¼ïû~vÉ!F÷)‚ÇôàŽb¢•¼ïg µvŒŽƒváãŒ>œÓšv¯5åS9?Ïjë¼\.gÒzX µª}PÈË©¨Ÿçñût è{~¹»j®AшX=>¦eFÐQ½ˆ’kÊ,q†¦ o,Ïîž|  E ‘´'$䬟'Ñ1¾¤‚Åêý0…EJI£¤á¦ÀV Ý9]?OŽìÒ4¦Öê{m½Ç¼Q|•R¨) ë¡ç2Ïô^éTÀFK*;ÛÊ^wœ³#.[4»w¶ÛM‰‘Ƽ#ŽbÌŽèê)FöuL€ñŽ8E¶}gÛ7Z.¼ÿÞK ±o7ôДÆZ µ¦9RZå¶­047?ûs¿çS}/ýâÿ÷ÿöÖë푦Ӵyfš–¡ÑŒáîîn¸{„‡‡‡s˜Ömà†Ôz¡™Æë‡qÞ!>÷Á矨Ÿýëû:ÃÿþàWžîß»uýí÷ó<‘A/Ñ­ƒ ¢§ÉPº{‡Aíl“wôRðX‚TÑ.P¡-s™ß þ[~êg¸¿Ý¨U°Æs»ßÔß-Îyn·\ÖXõŽÝJ+ÐouRÓN©”yp¨¬½j«kªü× ½!.“vŒbÔ{¢¥>(s.#(§žÿq úáŒ8ìe½wömÃ{­5Òp„±ó>¨túÖ)‚¿6ÏóYùÁÕ¿\.ça£"~M†Æ÷MlŒáv»‡ÿQ¨ú]°Îà¼Õîn¬ƒôGS¥÷qø¬[;(ˆãêœùakù°ï»„æ™ZÊ€:i0P³VB½ŸvKgUüæ>V'#Çßë­¶XÁQ-¬5³>@A(¹7rWWƱO))sß¹SÛ 6×`=ÞER©¬Û®¡QvAFh½€Tî® —eÂGôÓ…}_AË)%±§•mÝ4µÑr-8ïYsb¾^¸>{Æž¯^½: Ã)RÚ¹\¯€¨{£ "•/_p÷ì—Ë3¾ü£_ýTãÿo|ýWÀ4æ%2Íìùý¬r‚uøcd ×ëU“2»`c@Œ¡£ÿ½J§Ñq“רâ–yñâ ÿûCp}_gøSðŽ_?ûŸ\~îÇCðÄÏýòÁ]w¦c¼í€"„—)ŽXWC´jK9³ÌWÂضÏáKï½íkû‘¯ü˜q~!¥LŒ3«þø5˜Ù}ßÕÛ.¢{sc Úæ½;Ùï“l›&ÖŽ³atäÓYèCkƒ`ŒÝÀžêÁæiµãCTÔîè€Ó&øf÷Ø«½ ¼°ûâœ3i@‚Þ,ºšŒ³yd×¹3o‚ Uµª`SGëÇ!|tºo%Ç{«vÇ{CïjÓÓp(ÁØN—¦¾}?Dr]H%ÓÐN6Î3{NlûŽ\þc%¢´;s2ļ#°Ç[Çu¹ª`ó éuÂ!¢4¨”‡À®÷N©º®¼óÐ:5gj.#™®j&ïÀég¢3r„èUã°Ì†Ûº²¥]yqfß•°ç}$N3¹%52"‚[¦µŒ8äV "}ÛÆ4c§äŒ5†÷^¾Ô¯½ .85ﺾ?\Ô. ÷£`Kû®éã߃÷ôÖñ>ðÅ/}åS/}ó›¿Šµ£Sd²Q»oM;l©'!°wµÄvÍl0NS6[é87ábk(R¨’!ð¯ÿoÿÄÓõ/þîÓý{÷®g/^h76Àú mçÁS‹ªðc°ê!Xƒ¥‘÷¶7ºTjJ\eÝK|°ü·ñ¿î?Èkû©àdß*µ MBcä4¬„8C—a­*ŠÔž#}Þè¡CTÒ¡ñˆJn¤½Q«òö0V}Ðâ!(¤SJ£‹¡4Cm\Êé†8 £pªU}ѵ”‚ÒÝç€{cÔî¬Ã ÀQë¢k çÉ5³&õ}wctP 5—Ó?öÇŸ'#»À0¨ëÀœÅ@8r ÷„QÁ›óçr«¤ÚŽ`¬ŽÛS-Jg,…\ e$òÍË´Œõ±§(ÒòH œ¦ Û¡×ÆdÕƒŸS&—|Š Æ=i­Ñ÷xo¥hÚŸ”JÏ…š2—0á¥ã&óÿ³÷î±¶­gyßﻎ1æ\k_Ž}|á`lI’8ˆÇ!8âb°Hâ¶.Цmz½¤R*UnóWUU‰Ô‹Úˆ¤I$”*±"ÔT­PÔ¤M B—-à 6Øäœ½÷ZsŽ1¾{ÿx¿1ö> q|ÎÙGbo¯O:Úç¶×sÌ9Ç÷~ïû<¿Ç bF§Š­ x¥ñJsp%f²쉉 áäZ˜ÃJˆ‹ãµA ™T*M)š® +Ö*ÆÉqq!~þm|£F)ÉCpNҵą«ef^5EÃyž9Oä*ïyi²Si//„v1Œ£wçÞö³?÷Y®¯ô¼ƒFŒWôlÕà08ŒÖȈEу¨:{NÒp˜4h(4¬skÒ…þð ,ö X/kIðÉ\ž¸A?uëÿïF‡užSOù’›Òë´uäÞ"ßÐÁJY¼hMaŒÃûÃt@µJ8Ÿ¹}8põ«¾ãù/`¸8‹ RsÐLež÷Ö0Úî!E[oOk ­•+…Î %’wèém˺‚ѽ#"º˜’œh;ï^)Eîm`m4Î;jëî oûý]I5c'¤9ZGWÖye=/Ô”w‹¢2šqå4KÔqL Tßhé(fÓƒ‰Ô>ãÏ)r-ÞÉÆm¢„uÇ÷ZíÑM LÆJ¼î¦3Ø PrœhhrU”ªÉES‹¨2”ªiØ=0†þëKå%î‡ J´mêþÚ…ŠµÂv¬³÷~ÿ={Ba7Xk%ªº«ï··e 8ç0VºÛ¸Ä[éZkY׈Þ)vMŠàÍ:ÙØ»9n¦ÃVÖh­0M$4N#¨‡ú ØX–«ë¹*‚6ÞÆ5 À$דU‘QÛ<¯¤(÷¤*Å0(ç´1¼ã·|ñ~¶ßŸÏ{þmJPÇ#JuÇI«;fÚƒ MS Œ&Ç ©`”â8ŒLÖ£úÄhOŽTŠÛ—·AÃç=ÿ¶›éçHð±›ûøt­¿òÌŸ}Éx£I–<£V{4ì0 òðêsõ²nŒÞç½s^Í:¿úxÐïüß­^xáÅžW þí”3çùÌšš*'Ì€¦Ö ¤”‰†áÀx8R¡·–e“Œ!⌅TpUsÔ^fÇ¥í¹J+á ´*§`g¥¥Ûyõâ1¯R9+süÓû(BuÎ>´=ÆV)±ŽépdpÞø=Yœ•”BWËKܬQ’&¸ýüÒjo±?¼ÎTä4íœæúÞ‹Ô’˜œC#<~Ó4¶i¼ðn e™9KAŒÑ»¶Afä2%Õ>Ò°€ÁhiM¯K$†„jê%ÈM¸·ˆ[‘‘RÚCy¶$¹-Xjû,JgÃìâÅœ¥H]–…ã¾nEŒ’áýCúât˜¦þåŒn§Å RTc ‘œ ª§4 íR‚•6æ€RZÜ éPÈ_ëœlø”ÐŽÖÓ¥Ö”YºõŽ‹Ë‹—$‚p–e!ňњ#y ¸­@ОX*ç¹óºg¡ò¼ùóžÿÊÏö»ó÷þîßjòyð4D‹²Íøk•̇¢*[ȱBØ ÖXò¸zñš–A·­°i”$¯°®ä”yÇ;¾èæAú›½ì½û¦øYÓtf·EmQ»›¥ËtqJdµŸþs÷qkkpÞ£ŒÁ~¸ºº"çÇ ù{¾â÷I€KõÅ1VSZÙ7¯Üf“sÆ:1–5dÎsØ-L›Zß =R@ +q^Œ¥¤,Ô:c(µ²¬+¥5®—yOL›ÃJ켄m#ÚNËÖZ¦i¢ÖÊÕÕPÉEÒërWÁkc$w½TRÎ,Ë µÒŠÌïÅ ¨/më(Ê÷-õn{ý)%*°Æî4>ë4%ÆÉòܳÏrõàÁ>‡Î1Ñ*”\˜Ï³„íg_ùk aïâh¥)¹ Ck‹1®ÇÕ*b”âãp8v,´~‰r+·•ÙHÇqÄ{Ïõõ5¥§Kz/šaðy©Eü IDATƒïbÊ´‡Òèžð·{‘ÒÿŒÒÓí¶ÄÀ-åЃF‘’*1&”2LÇ¥6އµ·d£ k ¬+JÁåñ­ÕþÙ©@Ì©ã‰#µ–y¡a<*Ý®3„°ÿýù|–TL%A\)&ÀwŽað<¸º&äB®ë'ޤœù-_üÅ/ë{3Ÿ¯w Óf¥ôƒÜgk¬@¶Œ"5vcPMŠÅÉÜ>\0ƒëÿ>GÑ®Ä8ùÿòs7ÑÏ‘ànîãÓ·>ÿg~V¨r»áZšœÜ4`Œf^grÉxï )QZ#„ -QWç¥?˜oݺÅù|æþkµ½ÚküÚßÿ>¥¬[XÉ(kX£´n¯OgR.XçÉ¥1‡ ‚ÀR$€‡­zkíÿ9NÒæœ”~ZÝtª·Á«†f¤ ›{'@÷q@3šT !'QL[Ãi™¹}ÅÃa"†m4Óñ€v‚SÞâŒs)Pat£Ø»”F•FŠT3kX¥¹'FëÈ!£Œ!׊ª’x(™óº +Ù hé2\Ÿ¯˜#k\X×YZåV6ÒãåÕé‡h  ³Þ=%Ä$Å"hkJï¿¢ Ö ûa ‘T¤ˆQ”ýëºî£­«$îiÉo8âýŸsæ}Œ]±Ó4¡”àfkßä×u}IQº½§Ô©t²`kóùÌ0 ÂCÐ …¦Õ~2o•óDWPÞ Ò ¨â‰œ§ôÈãóùŒRšñ !P¹d¹gßZÍ0Ø]«°±æyÞyþ›Ãà žËËKJ’nYË…óÕµðösä4ŸYcb˜„Xxp>sûî]jmÄ^6n÷×?ý)ŽÇ#J‹‹ÄtÑä0H÷GÞëŠÒšqi¥g}ô(lj%.ù4Sj>E‘$Æq9^\Þ<@ŸŒõ²÷îߨø¹›ûøô­w?ø×÷S•œ¦”XÇ6ïuJ䔡óÝU÷„;/IfÊjÒ ÅCZaŒ‘eYv åF ܈†'`Ç)wqLq?XköâB=‘ÜÁOÖIGã´ÌÒ•p-‹Ï-wLpì¶¾µß[¥Å§ µ&†Á‘sê÷A=‚~†Za^WQÕ÷b9uQ^ƒ:ãÄÝgî2‡3f0,)þ·6ž¹û,µ6æyåóßòÒjÙG%KÂßïsmk=%KÒ\Œ±w`´xôKÏW@a´Ã ë\÷c7J­ròí¹òJ+æ1~ÄŽMÉæ^ûW(ÆË©´ÓXïBSÄ OŸÿo>c$K¡PPVQTC9vš\³p÷»ÂÅK¸!æyÞG#ÛL<¥¼Ö–ETûçó™yž÷µ–Ô7ý-ÔèQvÂFO\–e'úG(ŒQñág±`µÆné|U¦Þ!§}Tc qÎŒ~`ð^ ÍÓ(b¿Z+)Fy­-qYgJÙ òžø8 1 bÃ7[#£ï=~0Z²îß¿‡<1%œ÷\ÎŽLÓ‘g[‡K>ï…/ëûòñÿãæ:ØË9O)™Ãá°“峕qÝáQ’è¶îJH¦ÕŒeí…•ëE§ACàÝïýþ›‡çoþu¯ïݯºðÿÝÜϧoYçöÙ¤ÌþEñžbžÐôÛù|–ˆj»:^òô>ˆ1r<)¥ðþÔôØ®õõϽÕÛÍqM”,B5m,9%Îç3ióY$6¸Taôâ£Ys’–¹‚TEC ”"¦Dé³ø—·.ñÞC`†]ý? î™ ŸDå°½‡†ñ[÷Í#Wiý®Q:ÆÙž²'ɃtBn¢²·Ö‰¾¢6²ôY¸"§ø’pœíÄÞº‹až#¥´]· ¬áxëH¦p^®)dæå̺®äœövû<Ï;Œ¨ô»s­)”‘"­¢UkBœõce¦Þx¨Š×F¼èÖQK—¨9r^ö¶ñÁöór߯¯®ö sÛd”mNâIöÎàsëŽb§KéÉ—‰˜2ZiæóJî¥M§‘¢Œ#¼÷,«ŒÇr«2féjcôƒïehö5¦€6£.U<š[ª²à}o{Ï’ütàêjåÖí»ë°NqÙ^xá—FƒuŠZàââ‹5­jJVòÞ ˜Cb^hƒU7æ´°¤…%Ÿ©UŠaIÄ\Ycá_ýÉo¼yp>ëíÙÿ¬àgnîçÓ·~ø;þ‰vVŸ¡W±9c(1w0P÷ 3–ÖD4v8LB¤K«ø¢åLJ©mÕc½Þ¯{ß¹ï>‹å’ÅÇÜMJ+Z«;ÕÐY·cUµR{f½êá0Ë,ö2ï<ë²0rz7ÆÒJEWðÆÑjÅ¢»xÍYKË™‹‹ ŒµTZGé ö7uq›B ÿäS¿úØD¤_øÝÿ¡ºóúg9/3Êhæ°rïÁAšjEÓJÔ÷)±ô²vp‘7–Áúds"ÄÀà<Åä¼6LãÄèÅ3­µ&öVùº,rRíÿœr–ÐÊ2PµBN…RšÀ|šÂ£!ULU8eYÏ ÖÇ#%gœ1 ÖWéXÆc,§ó™ÚÙZk†qd:dž#ª6ήh}vßZ“ø\m K«<®‚¤Œå0˜ND,Q|œ¶üo¿¢¶ÙOýÉ×E»/¼p_º#ÚHÀTL‘¼b 5t‡€œZO†”_Sw%èѳ¶L(‰?õKºy`>9ëíÙ¿aðÉ\þ"pÿæž>}ë#¯û„o­Ðß’`wsÑZ°®ªClZ)ÐZiŽÇ#———@´lƒãÅ%·ïޡ銲Bé{öUDÿFë[þ𿬎—·@±Ÿä1„_J8ÔšÒ“÷¶Þ«««úæ½Ç9Çé|ØK‘òÞž×J@C° ¤6Q•î¯Öšpì«Ð•ÕXoÑΈ ®6rÌrßúFÑZÃ8ËùÁ0x¼Q¢û(E’©9“b$ÅÄÕ½‚—Öš»wïp8ùê¯{ÿ+ú>üìw~G[N'ŒÑGž{î9ŽÇ#wîÜÁö“ÿååq'&¶ŽÞHŸâP1IÎqk§YWfÎ!Ü<,Ÿœu¿ïÙ­ðS7÷õ),^ø”R‰1CÛÈí¦µ¤ëú¨Àb­¶¼ÒÔÔ-vJ£p(eÉ¥¡zâXÌÂÏÿëí/·Ç}Ýïýú÷cµA7ñ)眷«¦äŒéö»G}òtÈ‹<èÄ"¸„•iä¡ß*~ˆ9KÚ!9fpœÃ‚9ëïÕŸ©øÉ›ûút®çnË=¬k?)*ŠRU?MWi±+CZ#)f?b¬ƒf *Z…q­¥ ÚxbNŒÇóùÄ/ükðÜ߬¾ò+¾jÅ‹®š‹Äö¢0Îç3Û*™'ZÚý]XhÂ;°Ö§ ÑH53&BŠœ×•j4vHª1ǰÿ¾Ôã}•ÖhÞXÓ$:€ÆŽE¦‰u ¤VhÎRa­ã$¬FFƒ&…HIrŠn4ªãã8íaD~ðwF{O¦³Ò…è0£\%âµÑ¨==P7D—ÐO ÆZR-`Êæ’XŠ3ß=öZ)¦Ì3L£ˆûªdlóðeY1\cJ‘û÷ïË©ƒm† d°­ë´Òd …LµŠÚ*WW'BŒ¬k 5  ¬h›§· j¥pG¼µBR ÁZŒVýï Ê=rrºŸ†8¯Ä¥'GöBK)Ų,¬ëJé§ùG‰Ñ ëÊèýÎM§‰ž–½w7RÌ,ëBÈ+±ÌdTk«¥6ÌkäÁõ™»¯{ãGÞó¾üà¾àm¯¨õÿs?óS¿·´LÊòK‘  x†qɆ/ !C Ì(F)–e!) @¼#ëQ!óïüìn”OÎzÅ{õg*~âæ¾>ëýÿçïémoöŒöÚlšÙ©¥°ÎëÎ9ëïÕŸ©øñ›ûúô®‹‹[hg™ãʼœ!¥ ÎiƃÃ{+Iwºáœíí Ên#'c¨\ŒÞa8ݨiáýèc|Ý7|›jÊ‚´® ÆÊü½åLÉ™i™¦)†n”_él€˜2µŠR5(QÔû5ZªØ¦°(J¾eQÉ·‘±Î¢GOV•ÓrM(¥ÁXÅfœÑ´ZH! Z¦µ,jñ˜„¸f4ÚYrí³kcð“ÇOã¾A©.È Ir6¿fÚ3áñ8J¨x?R›tÚ›÷TëiFr&æ,øâÃAè‚)uøŒPrÍDÕhƒ£*ÑBcp^ÆA¶Û)SLä\ÐÊ •e™aMh%'ë°ž±º’r”bPWÝõ ±´FiÜ )¨T†Áqõàk{„Pº£h¦jÝ‘ÕHJcU”%¢s㙋;XeYæ…ÚÉuµâD÷aÎ8Œh}9«õ½úñŸüÈe~ìæþ>ëôeï"„•œVkŒ1Qê8Õ-T¤V$¾uœ°ÊìóÙËã%ƒöhÖÚmR÷Ï'nݹÅ8Ž|ê×~™~ý×{ù†çÞ¬¾î§?¹ôGj)œNÒ¶Œ)q^î>û:imwÔìù|¦ÖÆq:`µ ‹±¨,m긮´þúŒ6=1­·M¨Ògôƒ¢•"iŠ}ä°©È7„ðvºtÖ1øaÏißÔóâDŸ¯]Øh1Úì©s±«ÈSIö~¶w­ïHU ‰Ú1°‡Á«k¦û²â½ØÀ–ueðžyžeL‘e¼`ŒÙ‡J)âhµq<™‡Þº¯Ýû¯H9pu}ͲœPZ°ÁâRPLã£=[B°Ñ‚ú­}¬`{æD ‘užñ¼c}I”sîWé Ë2Š’~ðøÁSJá¼. ¡ÿ¾e^ÐÀáp°ªþ¾4­¾¾ÈIâŠ7Á¨ÀD¸—rû+ŠXDW±,‹t€zgD :Ž%®<¸~@#q<úˆCõ ƒÀÅñ’?ôÍâmoû­¯Š’õ#§”šXÖ•œWÖIY쩊®Kh<ov÷‰ÖZ’/Åjѹ«4c/”¶l‡÷`Œá{~×—Ü< Ÿœõc}¯~ì€psŸÎõ‡~éÛ8”JN•\*¥BΔEGmš\)7J5ºSo,aYi¦ñ ñnÀ·ïÞ!äĽû/p^g~þ§_3É—üù¿¨Þöö/æþºr>ŸXÓAAãaâÅû/R›éÔ.C©X`4ݺ'¥¥„p×(T¤Ý\Ká0Mäž@Ør!œ¼Ò:HÇhÝ¡+†³Ì•o}ÎS¡Ør¦åÌa#­š F)¬r”X(9¡Óª¶ýAí­£õ¶ª5¬ ŠI”šÈ5b@Q1Zájå0Œ{:sî%¡=¼§ï€ Æâ:E/%‰m›ã£v?ç4—#ãäQªàý“[©ÂZ¤L"„SÛ9¥ö®KÏpÖÑj ¹di­[ßs,Ú:´½É4¶;®Î'¦Ãñ0RZÝùÎÉÏÌ%b”ð§Nмõ€i{&8ô0ýîê|-y)¡å´ÌøÃˆÄkápq!ì *E ŒÈO#kZ(D–¸Ð´¼çÇÃÿæ¿ÿŸªÏëÛ_ÕæÿCÿ×ßi¨FMç,Ã4퉔ÖÈg[)zmE§é¡D­ë3è:Û”ÄQ‡HNbWÕ}#8Œ—‡ þÊ37ô¿'h½ª=úŸWüèÍý}z×}ÑoC¡‰«ÌÃq€XÙrÙ"ƒ ­)¬õŒÃ$Šû¦Å?ÞÉb1&BÉÌkÄMG–uÅŽgž¹ËOÿÌkg&yïø5 ç8"Vkò²)Þ—~ZŽ1Ê5—ÊÕ½{´š±Jat£–„VÐZU¨-ƒ®»àëêêjGû:k»»@Øñ%R9ÄœÃYË:/Ô"§p£ÅF9M#ZKøÀíÛ·%†v Xc9LGœ•øå,¸Åáj¥8Ž}ã´"¼k•˜E\hzÔq¡‰µ°4â¼RcÞOø9g¼÷û)ñQ†BKU+y€Íè´B­Wa IDAT‚‹­TJɤ)­kfžO¢ ‰ Piµ°,¥4Îú>'‘Ü»#)F¼1Rh)…µFNðÈFÝz|2MŠŠóy¡Ñˆ! ´â4Ï4­¸º&t@’ï”Ä¡ýRJ ÀҚ9%¦q”`¤˜¬§•Ú™²?ãˆÚòÖm4§yæút’4ÆZ˜çYº¥ˆ8À)”ÓÌqÁOŽ^|Ú ÿîŸþ3…ý+¿ô1œQÅ=âýVÓ”=†–Èc­ 4q„{A&ŸKŒV0×tfÄ6*+¥bä<Ÿyþ­o¿y0>YëUíÑÿ¼àïßÜß§w}å÷¾”ÂtëÐ[½§ºÁ`ŒÑ„5 ­Ù…t)J×)„(©¹Jæxy •Ȳž)%ñwþÖÿòšiI¾ñýŒ ƒ³½M‹`csbIí,µJ œä8îÞ½Ëõõõz4G¹TR’ô=çœ(õ»gü¡’Z@2ÖZã(^pèóem@žØ}%KÀ3« ë¼H¡Ð!5Ëy¦æŠÓ–i¡Ë~ŠÓõ5a]¥°èÝ clOl8ëðÎRX¥yÝ;­÷¬ø--O¢”Ù[Äòºë²HÊaÇ(·Ö˜Ï31J÷Àz'@™*žrë4Æ(jËøÁ¡­BkQÊo^ù ˜#‚3-¶M#â:Õ„Å‹0Z•_ã-Ú¬ñ44t;ª1r]~±Þ ™&tÅRä~®’æ¸u;¶(åÐ7;Õ ä¼':–œ÷Só²Hç¦ÔÊx˜„xëk-/¼ø¢èR¾„ÒýÉg%UÁ¿pï¹fþã?óçËæÿ}ý«M°Ý ¨h£I5ãÆQº]ưåy´þýÝÆ5ÖÊ5:7à:@kkî$D”F-møö¿÷U7Æ'k½ª=ú3ŸüÈåç›{üô®ñp$ÕÂQ_[Eª‰XÊ*0€UT#{xj€µo]`­ãòò’»wï FUYJH¥±ŠqùØÇ~þ5»þ×½áMê‹¿ô],ó™ÃáÀWJ«¬)Šª{ëQJ`/(æùŒsâ%GÓ²;XbMØÑràz>K{YA*…ÔÛÊZ?R i-ÉÖ BIÂäwºSô”Þ7ša@5Ö°âJ­•išää©Ì~’ ÝÊ;¿tÍ@ë–¹m^O+ ÞbT#æÀšæåDÊ‘\ó2SKÞ7ó \:glÆà­dr ”©%sqqàtº’¤¸°Èkh1V(Jíã‡Hi•¸{én_ìÞVÆaÄ P(:¥¼GúÖZˆ!“Sã<Ϥ–Y–•aiUÆnð䔈9±&éôÌóL*=.¹Jlpèéƒvð,1 Œ‘¸Þ&±¸kXw$=zè€(”"׺g2 ÃÀ‹KFm¥n@*Ì}ì´?ÖI9óÁ;o~,Ÿí_úÅÔR  ××ðƒÃZCED­Î;j…Vµ(JªÔÒ¨ò’¨EPߪÁº®Ìó,½shkIµ’j&–Âyyûÿ¶›⓵Î}~Í:?|sŸŸÞõùãoKÞ™îÆÈ)ÎZPªRkF«ŠÖÌ)Ý7¿ xQ(j–°™ÁzŒ²4ZKøKªró£óû^³.Àï}÷{ÕÝgßD£1/ !FŒs”>Oݘs&®AÒîœÝ…ahEQK!伃‚·o‘fp4­Äö¨Åšw¼¼ìœü"›B?‰m§ëÖ¢{Çaàtý€œÃ~òvÎÉæÕ-YFÙúrÎ1 Ó4í݈#Çã‘#-fΧµˆ¾a{°çZpƒÇZƒqvïì{¨ÑFýÛ ¶ÑJ²¬ÝÿßÖ}­5bîOŒ…RjGý‚|**Æ ôÐ9ÉJÖ~ÁËéþÕþg¨Z¹8ÐZ‚ž´wØa-…³Xç‡n˜¨(Iƒì›}SKÆžñ0é`ž!ˆèñxüét’îG}عI)A.X¥÷“|Žio…oúãQ„„!Öy¡•Âä<£sèŽ]žÏ3ã8såú´ò5¿ÿ›xçòŸ=–ÓÿÿÄ?¤v2ãåñB"’½‘Ó0 Û?G›oèð&£Åõ!¼Š¶V I)1¯ ©Ö¨4ª†Lå­o{ÇÍñÉZ¯zoþl €ÿûæ>?½ë«ßð_P[DhI¬ëBmßDb?Õ¥0Îb<ª‡ã¤,íá3ÖhîÞºEm•%†N\ƒ;·oñ£¿øó¯éëø¦oÿµÆ•[·n‹ Ú€,­54ŠÑ{‡©FSÒrÞà9kQÒ9XzÂ\mÅIµ!0'†iäêꊋ‹K²©‡Ï|ëć½Pz R­o=Ç逷òvÖIúÞÖ8Ÿ¥Õ¼¡†C Å(³ÛÖðNµFï™Æq;n­±¬¡[í ×ç3¹RФwèŽ2Z:ýšPjÏ€‚`…úpv/¸Ü•iœÈ¥bŒÃ;Qú—=y¯¡Â8-€wÔ~_¶àãÅ…*ÊAo÷w]¥ãÑ#‹SJ\]_á¬a™Ï;h0ZÃýÓ5©Go'ñãñ€éË¥)–rÞAJ)‰^À’‡ÑzQp¼8Òº£ÅÃVrkBäa¦ÀŸ"ë²£„]=xÀºDÞýµïãÝïyßcÙüôû_Û<ÏÔÒ˜OgÉè)Æ*VRÝ޺ݗe™Y–Eœ<€q‚ÈîØBAQ¥J±SU#¤ÌyYùªï}þæød­W½76ÀÝÜç§{½ùÏS“2¢ô@LŠ˜ó’°ÚcªÆ4#a4%R$·Vƒ€=M+RËœBÀÇÑãèp-3êÊÿ…ÿþ5åJ|ËýNQÚ§ˆM•|5ãbÅ„L ÂË_R"×D)™fœQ¨Z F,`ä90h‡®•ÑZ¼µ8­p(È™Z29FŽÓÈùt…kZ<ðYæ°K à:+ k­(miZ3çȪ*sKfÔh*–ÂÅ4 ½° †Ã€îaC¨F3Šbá\ÑÁY%Nio§Ý*£·8g)ºÁ`ˆ-mh¯ˆ5°æ@3 ¬&´LÖšj-kŒ 5TH ›&œWÒšå½O ²Œª*Âpž¦kÌ@nšR§5pïtM³0ç5Yæ¼PLE†%Šj\/g¬uèf8 L38 ­D.Ƨ¡Æ•щޢVEŒ™RÃÅ0b”"ç€Ökäæ4c½¡”D˜¯ñNSk)*‘M"“™Ã,ì†Z™×•aš¨JÑ´EÇ"^9tkÄ0çH0 å-™LŒ+óõ™÷¾çxïøFõ¸>Ë¿4_¡Zåx8bùÒÆTEìäpNc8FtS5ÓÓ0[ †sZ™c"×&# £)kààGTÓÔÿ—~Ù̓ðÉ[¯zo¾)no{ëÛ¡)±U”SDÐf¤Õé*žî-^xñÓùëJ÷0ã¸{ûÎŽ,ËBÍY¬k4~ÎÔ×ôu<û†7ªßúÎw±9ín§f´[XŠ4%mé˜V95#¸ƒ÷ÐØOÛJ!/Ý«¾wÏTÀO#¦*jiäX0]§Ñ8ç™ü$l†Ò}üÝÞZÝÅzIo#ð™jhY:VtS Ú2X‡UÕ"Z5*[£YCªEб½5¾¦=ñút⺋ë6lñ6·Jã´Å¢ÿöÞ4ضô¬ïû½ãZkï}î¹S«õ$ Ä” ƒb!$,ˆAbF!C1gÀqª«l§*q¹œÊ·ppœ`RD`# ¡¶ˆQ`‰èJÝ·ïpÎÞ{­õÎùð¬³;©Ê,º[}[çUÝê«î{÷9{­}Öó¾ÏóÿÿþxcqJÃÜÒß2¯¶†~–ãJ©ù Ž< ª2KGÊ¹Ž²èM”j—Á™_þ\#%Í8k%વC\²u–¶¤Bj”¤).ú&¦„S§ ±xmhIðºSŠk™æm9Uâø+/ÿ«|Õ7|›z:?»ð{¿³BA©ÆåË—ÙîÅÒ ý¾™cA5%ôâæÈ‹ £QJ† +ßQsEUù\øÞ³Þˆm2'ÇÞÿƒçÀ;o=-5ù/ºx×ùõ~~¯OÿŒÏ‘Ô8ã´EUpÚ —­±BS¥JK6Š×ÈGçº|¤ÖÆÐ 8çɱJxw4…„àÔò¬¼Ÿ×Ó·ßÞî·Ì1`œaX÷ #]‚uþß*÷3’`mò$3 £(öCŒÔVˆN= Vó‚®U‹òcp]G*E8ö‹šÜÁá¢`5.¶Q¡«¶„ZC,‰¦DD¨‘MCNcDàEL­9ëÐh¡:­¿§Ê©¾•‚Õšõ°’¯µà`K)­Ùn™v{‰õ'Z«L³XCXç8Ýn%:8¥Cìágæžûî;÷X–5r’Mœaa´&öH…:¨ÕKJÔE(9 ¥H>½Ä O8ë¤í­”°ÿ»c4ûý޼ pÇqd½^SkÅ9OkšÎ rš&a (%Â9÷”å1/÷ø ¼Y^#ÆÈ´¹uã&+ß³;•À‚•Âõë×¹që6ê§ñúoþާµøð±?i7®_çhµ^\%ë ¾÷ 5 #âÍ\±Ê¢ÐX쳬¡ªZD‹äJ˜#º6ÙˆU˜§™Ý~óß Vú¿þEçÀ;o=-5ù/ºøµóëýü^Ÿó?qáø˜ª”nûX)EŠ›ë,ÖXhm)B„×®¿»^ÜJV›5«õm™µºÎc½åç~ê'Ÿñ.À î¾÷Ò×þËws–võnGˆ3)FJ.ÌÓ´(Ë Þy†a ̼ßïÐŽ¨áÏh~Ó8Jìpk(9ÌË¬Ø Œ'eqœˆÝÂà?Sʇ9,y•õbk;˨·ÎJw€FÉ…ZZ[¬–Ó?Ma´Ái‡5»°ÞÇq”B6MЋRJ¢`XQ©¢¶×Kô«ÖZøCOßc±“ÅÿƆá0c×Ë&Fk-®€yFó8-!³~ÄŽw²Kâ ¼fÓy–MH-•\"ã¼g7íH­ ­¡Vâh…¶¸O¶ûÓèôT!—ïOˆ•µ6É9Øíé}ÇÐõLãÄ8O¢ÍÈù×põÊUrÊl6´ÑBú3†“í)Í…Ë9™vtëV*C×á­Ç‡1šÏûÂWðæø1õtfç=¿‰1VHƒ1ÐùŽÝnGº¾gŠ3J ´G¡i©Ê&@›…K!×]iEJ‘Ö*V º[Wh)‹d‰zŽ9qéÊÕó‡ß¹ž–šüÚ\{äèðûç×üù½Ö¾c ëõšqPÖ€VÌ%“sEW…nšÎ ¸ëú¨%岈ª Óˆ©›PÕºÍJŠ‹Rlw'ÏÊûù”_T]ºr•Ú*Ö[|ç™ã,”>ýT`š§å„.A1­5æYlo)æq¦åºÌ×¥+B­´,d¹Ô ¹±feéœî´E1¬V }¿@ÊÁ’¸ß턜·Œæ1Úb´Å»à]9œˆ§i¢diÿú;ì£ï:¦qD#Øàœ2Ô%RW5b$²ØÈ,sŽlw#Ætx7PŠPk-ëÕ ÕÃ0Ð9TkøÑÙÆÃyØt´ZAJ,öÂ#s‹M<÷«~ Í3ƒS†R ¹UÖGº¾§q–T¥hJƒÖ¤ZñÞqÆYÈY8âÑ€¦äJ.…Õj%›#$'ÁZC\@D]ß‘bâäæMj‘kYkaJØÎã¼'”L¬•¦5aœî"ó4séÊÝ|ÿëi/þ½úU­¶z€4•’X­d¤¦µ&æ$8â,èí³ÀªV*FÛÅ…Ú™œ‚àª»ŽšiŒ˜\ðJ:EvIfŒ)òy·Çóß·~©ÉÏZàç×ýù½îÿÔ—Ò ·w§ f9‰:‹ZpÁV!þ% †I1ÑŠô±­ïX¯PF£¬£ß¬qƒpË1šj¥UBˆüï?ùOž•¨éoýŽPýj`7îÙ;”Qœœœ0‡™º´u½÷‡à›3*^©•ýéé¡P¥H!PSfÞä˜29©V%¤³SêÙ¯œ³pŒe5¬˜§™œ²ùúã®ï±‹Ã@#_/EA[cúÕj…3‚7¦JWáäö‰$**Ä­ÖxïP”nh#‚Ò–,¥)JrM™Í°"L3)&æý^xHz_ËgÅ©: gÙ2[ýµ aQ D »«PTñG–},‰#SŠcÈiÙ¬hЖT ó<‘²t%6g3ìåûi­¢µ!ΑqâÒŠÕjE,âXøQÃX‹±V—î‹1†T„U° û0aOV…Î:¦Óqš¹ÿ‡øÁýqõŒ<ÑäGÈ©B«¾— Qh­èWÃVØ÷=%J*xۉˡ ‚yŽ3ÊjRŠì¶­€×¯ NZ*¤ ÷«iÅ«N¾ÿüÁwç­§­ŸoÎ×a}ÞO\ ä‚]ÚˆÖZš®Knz%Sˆ-’„È­`¼Áx…ЙžZ€Öú5ÓÈnm·ïyàá—ðß÷·ž‘âÿ®w½£åé¼¥³J¢::géœežGR˜°f‰’žÞYœ3LaOZF4,Ù- ˆ²k ÖÌ”"ûiB¹¶ã4I—è|oþ‚ë_Ÿ_÷çÿú›ï{!„Å3ÏR­djË[¡Óè^£dUØÍ“õh”ZqhÚœpÕ°v=½íXT“t¾Gæ2ò«GþYyO>ôbõÃóïªÚ4»Ý$>ü˜ñ¾§ëІ[ÛS¶ÓÈn”$¹q»Ã{G­ %1GRIì§=¥fBT s ¨¬ðÊÒBƣй`[£Ãca¿Ÿ‰±P©h+À­a¿Ûabœvìö§Ìa¦PÐNÓ”õšjLaBkð½à}ÓBÌ£  f •^°ÒB×ÎÓ¯V”Vˆ¥0çHª‰¢‰"¼ÞJ Ù:-íz£™RÄõ¥)öÓÌ.¦R)èCÊ¢^BháÄ’ÐÎЭ:ÑÇ, m4YC4mK”Þ¡”Å«-ºLÓ„y÷I)´ZéǸ›0‹JßZ醜uЊý4R5Ì)‰åíÌûß-%†®#Œ#'ÛÛì÷;JmLû@+ ƒ&îk3`“FHcàöíÖ—.Ó_¸Ä·½å‡Õ3õù¼qóq ‘õºãâÑŠ«—/ÐJ„VÑTV½Ã ~VC-g ¹fܺ#|ç½ëÉY\JWªJ$SˆV3SÈÏ©Fq|áøüwg®§­ÿ…7×9ºÕ³"ÜZ[ì€bQë†Z5±ð-¡*©eR«Œq¦i…µZ qSeÉ©0O²h'šäèÈнøù— @CÔõ€ÑR‡rÊÄ”ñ¯gQÅj‰t¶Kˆ° 4Ñ-|†3K`Œ‘R2¥¤ä$¯¯­Ex Ò~GeTT)¬]G§-:WL­ôÎÓi‹*š3v™õÓÀj³~¤@×E[  C7ˆk¤VB £eÃx&&DÈŒ),ì£) VÙ.1Ï1Ì´R$|(‡Å? ¹WÆJ·âÚ3—Ä>IJàÐwvUІë '·nP[áæÍôÎóàòoùÑg¬ø?öØ¿kÛÝ–Vb˜@C«cô’¥¡¤;cÅ•sÆ]ÐZ8 XMbIB«*: šÖ‚ª=#Ûå"jðåtg´Á;'¿W :žw$dö›—mEªPlú•·Ô<ñè;ñY{o¯ú²¯æÞ{îeœfûà‡0ÖìmÆjÎÄ0¡µïœ~–b{ûöíƒWÝZËöä–Ä÷ΓÌÝK¡)Ã~үƣ¨„0Ö‰uËx.]\ÀJVì}Ê¢x7F£”œ¨)1ã¡eO+”šdÀ³ïýìÿçÅ`­£”J®?•BÉEEi±çí§‰ä^ }/Á3@çÃj…õ c…Nh½'ÄÀf0†qž %á×ýfFK6Ò­YùN4¥²V¬úaéT®\¾L7ôËfQF­Ö'A×vðíŸmÖb–°)h„0ç Õ*ó¸'§È4MÌÓ­5ã4±Z¯OlnèØooÓ²XÅ8ñäÍ묎ÖLÓÄ}÷ÞÃý÷ÝÛÞü̵ý~û·gì2ʯ}á±d,G)í v¬M¨”óII´:Ö{|߉¥5ú~X@A‘’2,]¨(-]9c —®Ü}þ »3×ÓZƒÿ½6×9zpÞ7zž¯¯úÓoAkÍv+ ”¼Œ¬uì÷µ*”²”Ò!³ÛŽÐ\K£zªªï{™çD¿<¨´RøÎc,8·n>É^ùŠg¥ ðÂV_øOнøÅ\¸pøÃ¬6kÆq"¥€6à­¥¦Ì~öŒ-¿Z­ÐZÓ÷ý!qn5x.]ºt—Ì1Эz©Õ­¡5hÝX­ØO#]ßSdšæã*‚Ëš ÞXr”ù7@ßõh­X­!2–ÂzµÂYwHTJÉi¾JúÝÙé_kM©•Ò´ˆßRAWA=E‰‰ãKǬVl.ÞÀ!À IDATaœeœ'”R c?¢jØLŽ`Û8SœÁ®’QToª1µÌ­iÏ­8±›'XH‚EÃ8Ž «'·OhËhi'®_¿Îí[·Ù¬7~€ó^6S1-ùziaW\×Ñέ†–1º¡UE)4C¡–È0ôŒûŽ68£é¼£„L‹%jdöó;ttë5þÈŸ³ÙqéÒU¾íû~ì-þïûÞ·´"}çéˆD/ÒŒï;̒Ĩ”¢ë{@qáèçú±ÕÆöô”VÛaL·ßïŸ l‰ÚÆirMÒÑ«Ï~çyÈë¸n.5øÖø¥óûðü_WïzŽX‰Öc±Ô”È!²îü‚×MìFEËm9eJÁ2Æ Í‚g­U¨fJѯ: ‘aÓóÞüëܸþ±geð)¿þ¨ºû¾yàÁ‡8¾t‘>öaÚbÝ›¦‰fb Ä€”džc2ÜÒﺎq{JË£ÕT(YÚÚ9jŠÔœH1®µe´nÔè:‹¦2;¬†œ–v|«( 5GrŠ„0“óŒÑŠÖ–¼@Î~aÏÈ}gËC.K°SSÌÓŒF-›ˆÂ<ÄÈ‹.ÂZ 8RFNýi™“—$¦¨F4MCj•H!P¡sØUOså ˜%ÀÆB ²ÙZü÷}ßKK[)Ò<æI@IEm…Š6†3ë£#ªR*Þ¹…h¸„59åÆ8c­¡ÖŒ1†Ýî”V!Ï4Í ,ö9­ ©TšÒ\»þ·N·Ü{ÿ_½Â·~ï¨gú3øG_þe­6â”Yò(´Ö8oQJ>W,Hè0GRÊìÇ™œ¢Áibõl —L‰š³„. ƒ %Ó##ŸqqÎñªüÃó‡Ü·žöÚûñlÞv~žÿ롇þÿ„åœý>åJΕ¾_Q+„°Ö£´eš#ÆœF5è–¶kò°ºté2¾ïÐF³9:"¦ë¥fþìÚGxׯ={{Ë×¼öõêU¯ùJî¿ÿî¿ÿ…(Œ³’6gêÜÙ{?û5ϳ´¡c¤•ªë™÷;jÊhdFﬥ•BòflF¡¶LÎr‹a¦µLN’#­Ê)Û.³ÿZRÓZ“kºä.”Tdƒ „i–À›¾ë%lh)iÙLˆuŽC0ÒÙýiMt ¾“Sw®Ó¢s0œÅÞáœeXu8+^òŸ%h¥E8ºsBËßœ)‹Qk-Ý‘¾#×B*‹µÒwPVVý€õŽý4¢­tS í(Øâq ì牾ïåú·ºä7(œµl··ÅÆØ9VÃÀà ÛÛ' ~Ñ-x%n‡TOܼɥ+wqÿC³:¾Äk¯<ôŒö~íïhuqq””eæoåz—(µßï%`J)œóôý€5†³Ì­ºÌû{ßQK%ÍbåTKÖ„6âÖHµ2Æ‘gšã,¯~ÍW?àîÌõ´×Þó Àùúÿ]¯üŸîÅ.øý~/Šó3ªÝ00îG±±-ÿ¾-$¥ÖyAÁ¢„ ø¾c;îPÖÐŒfLã¾ï©Ö›5O\‚Ç^ýªgÏðÐKÔ·¾éûÕg¿ìåX'@›œ21†§6.‹P„XæîcŒ<°+2o•k á<½µ” Â.¿@„â4•Z¹JMLó(ÖÊé¢à{{Ð Ì!S:xûkmÄ”H9a­XÏ’Ýr–vùYŠÜÙ÷Yª€ŽÎ LMUŸ:àm(¹HÆÀòw´R´Î”ê_Lahuxmè´Å)CžgÁÌ60­ {Þ9¹×Z¡½2d-(k0´ø§0SRF# #«ŸŠê]o6ÄœÉTôÂJðÎ˦ !< ¶¸ÕJœGZÍ öû=ªö§;^på.TièR± â~¥h(®\½‹ãK—0]Ïë¿îöÂoú¦gôôÿ‘?ÿHûØG¯a´¦”Œ±†®óôÖ1ßYܯ1æ Å8ãB[ÎË/eXt9 a'Äšç‰1Ìâ²h0‡À4íY¯/ðÊvßùî|ðñm®=rô8çá@ŸëÊÅ«¨jðÚcQ’ ‡bGzßÑYƒ. CE´Èã4M)D*k:T38íQEáT©–Þ®1ˆõ­3 ¯ ïxÓ×p㉶gó}¾úK¾Rýç?þߨ wÝË„&ÏÍy¦ÆÀqïé©\ì;LЍQ5Sr`·?!µÂ.%"Šª ÕDj‰1ŽdUÂR*ÅZZ‘öu®í-µ—¯³/•Ó˜8 ª »°%™ƒ¥ žì É‚²4»Â —Àt(§6=.a{G¨,ì¦DܪJk™VF7b˜Þp:n…î¨,F;JlôÆÓkM×4q’‚~ûÆ-æÝ,›ÛaœÇU é­PM±îWX4½v¸ª09¡S¡Ä@g4ªU\§I)âH#Þ6î:>bŽ{rŒaOQ‰”ó¼'Ì;Jš $Ò4âK†i${jŒP»Ý£-»Ó-ë~S†XÕ8бŒ±`»žÛ§7éG˜GŒ†VOܺÁúâ%ޝܲ¯Ý7q÷Ý/|ÆcñûÃ?bX6N¦eò¼gpZA…*š’*Z nÛ(j oÞ*°L¡ºBÈÚ4œW(]™ç=Þrš©5®„0Ê2Ô::>徟?ØîÌõ®¥ö~Â;ÿêü~<ÿ×K_úñjœÌ•`WëmnÉ»W ”VhS%°Å;º¾Gs°Îë$ȤAç{Œ±heÙ¬×Â'׊ußñ®wþÂ'äý¾ù»Xýíÿôï«~³¡Ô†2–9nܼ¹Àc*ÖhNoÝDÑ軎Z3Ö[0J ;%ÂŒsZ4%±Ÿ÷@£-¾l‹&Ç„CÓiƒ® ¯ ³;JmÔÚ˜ÃÚ¡a¬¡¶"Hch¦‰\´§r\çH9PZÅ8‹q†L›bJœ)rÌè¦qÆÑÈØýnÏô"”6t]Ïë¾âëyÁ ïÆçþ½ë]íÆ“OˆxQÕCª¡um4΋`èWô]wÐhÅA,S` #‚q… !¢µ€Ó–E‹1^:UBJ\¹|•¯ûõWž?ØîÌõŒÔÜwðóç÷ãù¿þ£z•~‰“q>ˆÌ”Öá¸Ë>æB)B¤Sp܆®ï)‹=Í{y0uÞÓtÕ†N,„ÓÄã×®ñá?}ûD½ïúÿ™úÌÏúnïvÄÖ¸rï½ì§HCCf³¹À4Œv˜j¸}ã&äLÜOä˜è½§¦Œ×†Áy:kÑ€* •«ÀmrÃäJ§ ^izmñh$ÍÕ ªeÚzבB$Íi¿…–‰óŽiwº$*ÈÄ£Qab¬Y­fæ%¡Q¢q‡¡§ÖÊ< °§e%âêÕ»ùëßýÃêÞ{_¨žÏÕ~ôc¬Ž$s?4£9¾|e-MnMF&F3ÇH\¬·g£µœ3Þ¸%‚™%­RSbEUƒiŽ ºr(„1‘Ccމ“qâoô{ÎjwîzFjîǵ¸öÈÑïsžøÉ1Xo躒Ehe½!¥@Xâ‚K•tÀ¡4bpÉY´ìYhŽ]N5F#¶®DmŸK"L…⽿ñ‰µ)}ÍÞ¨¾ë-?ʘ2×?¬Èæð¾£ÄÄîtKNéŒSjE1„ƒSàt»E! Íh¶óHUÝ~ON2»?øßiäXi ¼ï|~m`Xut½eµé€†U ·ÄôR›$Ù…@ÉâÀp—Öø¡bp“ÎBkí`+´Z“¢Üj³Â8''E;Ä(D¿Ü(!.. ¹§á ä”ä{-á[‘n€ÖÒÂÎ¥È÷ã8ÒJ%ÅÈÑfÅ<ž’Æ=5]P­B-¤iBÕŒAÑŒfΑݸ'¤„rV"[cŠqš8Ùm,ý8O‹°³QÑTe¹xÏ}ÜuÿC\¹ïa^÷ºoæ›ÿã·¨gó3bd?ïÈ5¡Æ:'YKô#¾“‹±»Xû´‘DN)ü¢öwưî×2Â)"Æ !‘bE)ˆ`°”J*;tç³;wýþRsŸöeÿ÷ç€ÿàüÞ<¿×ÕûäÆÿÎuì§I ¸R‡ö¾Ò¥ !&Ò¢L×Z (g9åÑX|éfR³ÐܪiøÎ{Wo½Kìö37Ÿ|’ßxû/¶/xíW¨OÔ{¿÷ÞÀ»~í—Ú»Þñv¦Ó-/¸z¥4Ö:RNä”ð½g÷te|­«©%u LTç˜rF+pZaú޹$‰6šÒ v¡*%'Ö«Ûímaæ÷žyÚI1 ߤЖ""¾Áè*“÷Û /¶°yž±Ë)R#ÅD#¸ÝR ›£ ÝÅ£%ñ)ðQkmÏ–¸ä€¨™V„YJ;¤*–ÅÂæH©’Y ­Yþiɹp|t8ÍcØï¶2㶆1&¦if½ÚH@®Ä9šÎ÷è`hJa”"‡å„fq¤ˆw–íé)kßÑoÖœŽ‘š3.]&æÆ§}Ægñ9/û|ðEÏúgêþŸi!$Œ3l·[ºÎb¬>l’s輌}ò¼¸FÌ"jlXcÅõPŹQ³|ÎZo»ÝîЈ³l>¥KШMñ™/{ÙyœÛ»~î™zaý—ø»o=¿/ÏÿõÊ~/)ɬ²!hUçd®›[!,3ÈZµ(Œq€>äÄk-HÓÎ{Œn»÷ž®ëp^fÝÖz|'ð€£õ)L¼ÿOÞÏŸ?ö'í} ¾øU_®~ü¿ú‡ê¥Ÿù²Ÿf¶»= EA±ÝïÇ=Z+æi¢µJß{‰rÕŠÕÐ ø†ÆX¥3¨Þ3•„î,E >xFÜfER'´V­ ó„b)z)PK¦ó¢„¯JÔÝ’ !tg,ª6Æíž–2ÞXJŒXeDõ¿hš‚¬™JæqÂ)}È9ÈËØÀ#2‹óA«BÍ ¥*zÙ¨ÔZ—¼ˆLJ­„üw¶á¨ ².öÄRŠ`j«aµ>æúõ[¤Ô0Ƴ'Ñ‹,öÄJá‰'§5#å(¯8¬ÖİƈÅT[Œqܾ½ãæ›t¾ãÅ}*ozÓ÷>úµ¯£úDÿ_{û/5X"™•Æ[ÃÅãcVý@N%Ò(q9XÏ0¬PÖ-¡FˆK#¥y³–JÉ’íR”´G«iKÞ¥u†ZÆ(J‰øÎóíïxÕùÃìÎ]ÏX­ý¸7×9ú·ÀÎïÍóÝsé Öz´Ö¤QF塞54ÕÈUNóviC+¥E.g­má‡!¥,Æí˜fÉAï:Õ£a Î{~÷7Þýœ¹ßñæRßüe¯§(ÍnžH­pùòeº%oXl“;ú¾£ÖÂv{Ê4xçèñ®ÏÓ,à›i&Í ¬û0ÏÌÓÈfµ&@É(% Ä9â¬g'ú¡'!§k¥e¶ïœ£Äļ…ø‡Æ6%ö¼ u ã©¥PÚ"ÞÓš9%æ0KÇ D9‘ûN„ŸÖ°Gž¼y“PÇ«j¡ÖD˜F Ñy‡YÊj[º=µV¬kߘè¬P‡ÐËÛm f…q=¥*Ö›#Æyfœ'N¶·ÑV³Z­h¹æƒ¢†ÄÅõNYv'§8+å2×oÞÆÙŽ×|éWñoù[¼á¿]½ð…|Ñ'â3ó‘?û³wߺyãp=â4²úÎáƒRP­¡*Xc 6ZYl @[CÉ™’¥»s–ü˜sD©ÊnwJΑœ#¨JJFYàQ‰O{égœ?ÄîÜõ¥Ö>#Ëþ%ÿþÏÿÉù=z~¯÷þÞoóâ—~:ÆXr‹”šEuÜd¦ß”*íå9Fú¡ÇCŠ…qÞN“g¼ë,s« ]·FU…QÁ{ÆÝk¡s†ÇŸ¸öœº/ùâW+€ŸëOµßÿ½ßâϿƥõ†GGG‡÷¸ßï±ÆKÆKQ“m¤·ž ›#¬V¨Òȵ’Æß÷h«8Öܺuk-«UwȨ,¬^‚r@k±á%öÌy––º5Và<ÖRsÁ£4ÔFH³ðb"—†ï;éB„ˆ3$Ój#– ›4­pÞ › g´1ô]G«•í4¡ª€“æ0cXcÃ<Žh-'ØÃat$ヮrÖë‹Ì!P³¨D)•˜"ÇÇ–„¼@]ÆJó~¢³]ÛÓS”jlú½ïøØãÅꎗ~úËxí×|#÷ÜÿúD^~÷½ïy…Òò™¨¥SâèhÅ´#±V+ ·)qu!8ÖÖ°ÊÐŒ!¹6éÊÈÆÒ†tºÝR²ÿPœgjüñûþøâóÙ¹~ö™|ñ¿ÔÈ}l_¼ûü=ÿ׿ø’ßàúÍ'H-ÐjÅ ©~µVV«#\ב²ÌyumÔ”(b8g°ZÀ45K4i=ç¨JIjÂ)ÃÇ>öQ±žÅŒé7üµ¯ü:î½ïõ\º&O|èƒíõ_òØû~ÍÑ£ W¯\áôôDZí13¹aŬä‚« §4±XcqÝÀ˜ý… Ìó„÷½`…KÎ\<>^ˆŒ†ý~Ïf½aœmS¾#ÌÎ{j±äT†n”5ÄåšíN·h£9 9Uxè%¼ù=¯;€Ý¹ë‹®=rôèsr°lþxéù}zþ¯ò…ÿšØaÜÓY˪¤²UÆ(cP±â±âom4ÚjZ+HÌl¤RñVZÛs 4!R ´š„nV2aœÁpå÷ñ5ßò&õ\½6ÿÝ?øñvãÉë\½zk4 µRRbX ¤ZIÆæ=*._àôö-Ž/³›Y)Ž.]âd·Ã÷=Î:¼1¤œØ­·{†ÎRФõ¥Zi!¯ÄD«‚øsÀ/ ¥­T(ŠÎ ~·Õ &¶”B^„›9ÍP«õ†ÇŸ|R¢f•Æ»NTøEmñ¤Kúœ´ú«´)h-“RF)Ȭƒ’-Vá>¸žR§Ó„2ŒÆÅ-“kEYG,™iž¥Kd )Îb9dÉ?0†9e´ˆ©çÌ‹^üé|Ùë¾–^ô’çÔçã—ßúÖ6Ç™¼ÐµU\¾xIî•ñˆ±N⌱X-e”ÒdS©@h™B£ÖB‰§Á5Åxûœã$GRŽ£h9“¤An·#Îõüƒ?tþàºs׿»öÈѧ=“_@? ¯ñ3ç÷é“c}êý“SE#ö°RÊ^Bm¤ Ó,±öÞ ;Æ Ž/3øŽ¶¤ùµZÙÞ¸…Fïy %ª)CÎA"™µ¤ž%ÂÿÚnîn‘jÆöž¦¥Åo;Ã0ˆV¡óžÍæïŽ/`¬¥ÕÆ4M„¯Ys9|ͳ´: jñÿÎyjkÄœ1Îc»í<§Û-·nݦ„H‘ýé–ÝnOœó<3ÂQÐJ´Þy@@6©TvãDªŠT*ݰæ~ôï>úÝãÇÔs­øÿÞßû{íôô¨°¤^½zU„±‹«¢ÔB­…šòÂÚˆ€b?XÄ>©4s­Û{j«ìç ¬AŠš¦¨)‹##gjiP᮫w?´îìõŒ×Ö§£ð¹À{ÎïÕ'Çúç_òqûöMRœ°J¡5xïq®“°2çÈY2Ƚs‹‚]l[z±˜iš(ؽÅyËn?Qê’¨ŠJ+Y|íI‘ ì÷_ÿ߯ÕgÚöñ®?ýàûÛ¯¼í­|àÿ®÷\ºxÌ<¬7kL:]së·opéòERèf¹¸¹€*c³R´%Ú7/Â=eÄî£Ìú]דÁ]+åÔJ…ÚXõa hg˜«Ǽs¤éz C3¢ÏhË)>ƈöãxè"ÔÜ„©4Êjâø£´«£RÈ“Z(}«ãžTCç@ ”“ˆÙ °Z­Û-wä’ Et"·¶'¼àê]|ô£eèzú¾G‘ç mWï~€/ù«ù”/~Ísösðsÿâ§›Ö ­"–€qŠ££ Zéƒf^ºgä£5F)Â4ã½%×BQP5ŒiÆKË‘dù9Š­ "G”-Æ<´²|ý¿‹Ïû/?´îÜõòkýÖsz°lÞ|îùýúäX?ñù¿B 3­ÆÅX¡iŒq( ÊK+·”Êjðe–ÈÒBï{Z‰Ô\ÑN‘j^‚Q ¥Š=çÄn·ŒéB !3O‘+wÝþé¹; 8[¿ñŽ·µwÿßïæÖ­ëh­8^­±QÚºÅ6VÇÆYÜ5Viš¹xé.f¥Dd©5)EÖë5!¬×„¥=>¬†³€ë;Qî;O íYu½Äßö– %r6ÎA E2 LoŠ`Š‘õ°b7ŽhgØí÷zcŠšìú~`Žq±ýµÃɵ,±Ï­5ÆqÂõŠ¢*ïw#TI‡÷#ªŠ$§ŠsZ4!MØ ûq+!F¹rAa X§¸÷ñ=?ð_<çïý£¿úŽvzrKfóªÑtãòåcâDªŒÖÄ˜Ø +Qûg¹¾9ùYÉIºcFQ5L)Š$ͨ*‚ÂZqŽBç¤2… ¦iæ¾>̾ïëÏVwîú­k½ü™þ"öizŸ>ß|ò¬ïûÍ/å¿ÿ¬Ÿ'—B.…¡ë%Eg,E+¬qèR$eoŽô½§ÆJ)ªÄ™Î!pá†#Î9ò”I5SKÅ{yÍœ 1"£R•O~ŒGßñËí_òeÏéBð_ò:ð³?ûÏÚ{ûßðÄ­Ûû¾ïèV7nÝäøê%j,¢Ô׆Õj#ѹÆb½$1z×὇V±Î±YÉk KlœE;QïÇØ¡Zc°ž¢"UkZïðµâœcµZ§ «Í’ú'DÀ¾ë)¹ráø§û.\÷ à}çϪ;xýô³ñEž®ÀÃÀÏïÙ'ÏúŸ¿øßprr“˜fœ1X­qÚa°§1Ì+Ò””Y œ`bÄ[+9õe¦_ìN·ôÖaµ&„ '¥Ø!Δ"'©8gâTèû5¯ýê¯ãêÝ÷¨;áZ}èCh¿ð ?Ãßÿ~Œ5¬Ö½ÀZªlžz×±êVxí1ÊÒŒÁ,×hµYQjAƒV Pr]µÁ[Kȉ¦Õ"ÚSèäB§ ¤‚í={ýâ Ð `³ÞP[£¤Ì<Î’ðgô($€UF îWk-íúÙl.ˆ ´ÒÔ"'{c ]ß‘ÒÌ8ÍÔ# -#ŠJ+^cAYhµ0‡}ç¹uû­ ¾÷‰'oðþñOª;åçâ—þÕϵœµ5r‰ôÞ±<ŠJ. ¥-­ÉYXî‰ 3¬€™êr}b”Ùÿ²”j&¥D “h”B¡Øïö(¥U‰n ß­ùñko>HÝÙëE×9úÓ;b°lÞ|Åù}ûäY?ñò·3Í[h § N9´…î $·¾º®§U)ÒYG­•îÈ‘Kâæ¯6¨¥@(­È¥0…Hn•w8§É¡2îº9.^¼Â×¼ñ[Õt½~õokï~ô¤°çòñŽ×k“ôk”^âyÁK×õXk0Ö0/Ù ±®^¹Šój6?¬${¡)Ð ón¤zšw¾³„ã« Ò¡`Ϋ-9F´5ò"Z3Ž#J54•–«Œ Ù?ËfÎG­SAk…÷=ûÓ¬u(«ãLi†twŒ ik)Œ5”8RJ`·;EkEH™7OyÝW¿‘WüÕ×ܽÇ>Ðþàwg)Æ™®wlÖ3ÐD¤‡q8c¨¹ •Æ(CL‘† ¹Uj)8¥È)I{_)ò‚žÆÝAxYj%åL*˜âŒqž×ýÑGøâü·ç¨;wýâµGŽžï¦~_ë=¿oŸ\ëûÞóZ´±OjZCEçœ$È…„iC€ÿØß»O®µ.`ýÀ\`,…h,s©ìÆ™~½aŸÃñ@s¢Ee¼Ç9Ãc²†¬s )ƒv=ýjM®”cÂ3`j‡UŽuoé\ãâ±åO>ð;üÉ»~õŽÚÜýЋÔ¾úês>÷ó‰9Qt„o)lŽ.`;GvÕ[ÑuoÓö”£UǸÛá–|…²üO[Ek™Ö29J0Î\fb‘^ZiVœ.Ð"!íØÅ‘¤ Q°pkw´†ªÑÍpÔQhåÙÝÅ~_úcJ4”³"ÏAZ‰Z±‹{nío³O{ªñ!¹aŠåñ=¸"ѵƒëyðê=°\°kÚ>c[O/yð3øÚ×ÇSüß÷=on­5¼³—Ž6õqšñβò+jÕåÑXz·ÂR–RÆzri¤,Z …ˆfµR3ȵbFa±0{œª¬C5 Íó9ïøÍó‡Ò½vK-½³6×9JÏæ7~¾žëe/û\TS‡<ø#µ‰ pŽQ0µ! îµI‚YA²Ì—?§•A)™û‡HYågÁAÞõ-'] Ó´Ã{Ë¿ýÀÜ‘×í«ßð­êÒñæ9P?xŠ›7Ÿ$ÆÄ~·…÷wëÕ§=aŠìOFb”*˵œ‰+ó<³ß4 ÊöÓHÌÒF.)’c ¤ÈöääŒSç@I™˜…õ¿?9%Å™œ"Ó(¹2M3Ó4J O.L‹g?.§Ùq?²Ûí¨µsÂXK¬™ý´#†H«o-­frJä42ï·Ü¼þ-K´r)’*Þõ|Ë›~ðŽï|èë^O.‘qÜÓ÷žV -W:g)© ´Yfþ»È9/#Mm™9,ã½d6Xƒ2š)bNhkUb›B-Ì1’KÁÍé~Ç8NÜsÏÿÃÞ›ù¶]õ}Ÿ=ŸóúÞûF½'°dKFLŠBð$db@¬P$`—1±¡âT(’“˜¤ …B9ADÌ`l+€%’A‘Á ¡éÝ÷ô¦¾Ý¿áœ³Çü±N·ª8 Ò»}ïoUuÝ©o÷é³ÏÙkíµ¾Ã½¼øÉß}Ø”.vüèœK/\à‡ëwkÅs¿ïˆOùÎW‰Ž¼ÖÂÏ3{h­aæ=+=ÛÑδ¿sà3ó+nÆh¼÷óì3Óu8¥9 V;¬÷BSŠ_ü™×·‹xï¾úë¾IwVköÛÞ‹PÎ))±ßïyìÑG™öÛ“ ¦Ùáf†ýÈ~?BÕLûÄñ£Çe±Æ‘b£4a(#¢3›ý–Ý~''K€\Q)£SF×Ê0 ”$¦L1FJÎX­h­Ì …8ì‰ã€ÕŠ”#¹$á«—Ân·e»Ý¢Zc³Ùrrr"£Ÿ9Ýc-ä´§–‘8löbÜóèc³Ÿö qbÊ‘/}Å×_¨u|ã/þ«Ö¨ôËÖ[|X­V Ó^p³èOÊ‘˜G´QøàPº¡(UEÉ2»ù‰Íó0Ž”ZÉ­1ƉR*UÏ’Ê[ ·F5Œâ÷½è°!]üø˜æÐ?ÓàÚÕõ[€ß<¬á­÷½äg !à­Éâ…ß^ ÎÚÙ£>Ÿ#¿ ¢ôVg[ZcÌ9‡üÌLçñVÂZ+J+ƒR2?¾tùÊl/ìyøÁköÞ½ô‹^Î4Žœ\Œ4JbLû¸÷{¡è¹@+•Ýv+jyÃDÍ•’! ™q;`°,Ê<r.þ0FbÎ ã@,m”ÕŠò82ív¨\¥hVÆ*?Æ‘q¨%b hÕPº¢Z¡•Ä8íØíN§Yî6Ej*Œû½€ [%å‰Ýþ””FrÞ3ާä¼cؓ҆\FrŽŒq¤¶Æg]ù8îºûÉæôÿÀƒ÷·Íþ”Ú2»ý†~Ñ•Íæ”Å¢§)<²Ö±X,0F‘˄҅ª*µ‰J`©J‚’(9‘J™ò^”Ö@KWmJûi`Ì‘í81Åijžó\žûý—›ÑÅŽßœsèÅ,æøßëxëų>íÓ¡³Õ''' Ÿ‘Ìuv–³³pnœ£™J)çA×u‚ZWbqËl$#@@‡ =)7iCç5óC¯~Õ…ìÜûqOQ/~ÙËÅ¡&1¶™&â4'IŽÃ¸'¥‰’D!‘š¥KÓ8²99¥¥,ž¥²ÛìØn·äRã$Ž„Nd˜}çâHnR”ë茥¦„Všaر9ݰݞ§F¡Í ·½NŠ9N3¢?•)lw”jìw¦aÏv³©hk¡UZI<öØC¤8°Ý³ßo1Z1M#M7Žás>õ9|Úú7.Tëÿïx‹x0¤‘®h£ä„ßyš–NÊ04Ål˜T©TR)h+”JcµtÁr!ÌïRŠ ãÀ0ÈGL‰qšˆ1Îïˆ'–Â]wßÃü–6¡‹óÜùgþ²Ý{usxä£T\âïöÏ3leV컀í,MU”Öh­1MS³øŸ—V0Vþ%É?çL¥Ú¹þ¼*Mérýô’¹~ý˜Ûn»ÓÓS–Ý‚‡~˜+wß×~Å+ÕE¼ooÿÕ7´·ýê/Òù€*Piç €GGGŒÃˆA‰S`ƒ)gš¶¬×kJ,À~¿¥Y­Wb³Ýrûí·“sÂZ˜â€VÐug ªÀ4N¨¦¨Ú0Qi¥:Gœ&öû=ZË&¡ï¦*†a¤ï{¶s‹:VA¾Û™Þ9Ž#V[J.(%O­Éy$Ɖœ}׳ÝîÈE±\ßÆËžþ,žöò¯ºpk÷“?ýã­æÄ²ïÁQKÖB˜…žÀ9'÷Åj´QÔ¥ˆuokM|qÚL9S´–î‹Ø(Š>†Ö쇊tBß³Ûíù+ŸðL^ø»/;l>;*pǵ«ëãå7µÖ_ðÚÕõñ½W7¯J·`äZ1ÞA© ã€ÇÑ´`´ÖhãåW%ÀÁ³ TñÞ£µ´ÿÏÆµF€&ôRàI÷>™ãÇ%„À8ìè½gs|raïÛøÙ/Q¿üÆŸno{ËXtž+—oãdn#Ÿ<Šwަ ¤:{0(RKìw[¦a¤ë:œÑ ãží¶ Ó‰­îõãÇX®{ ™F¥eØìÜ×¹Ž3¹5”“§ý~ ÔY®WpÚY†!Rc&‘qÜ‹v¿6 ç\õBNÝDݦ aÑ1¥‰i4Lq”bÃév`»|ê§<—¯üÚoTû®ÙO¾þÇš*£Õ×Ë'tkâ»Ò¹œuir?­ñL11”*ç<-74s·D5¦8¡Ä%K:h)1¥Dœ"ëõšè2;,±BF£ŠB+‹RŽ”ÖzŒq´¥V°–T#6Aô×Lïi±^Sl#«Î0L§›S±ÝΙ2ލ\éB  ëýÃß=l87G¼ýc þûhw~à°®·füÕ_zCË 9‘«Ø×\pÖ°6Ly@»ÂGb®”ÖÐF¨}SLäã”É”r %“M!R(-S[ƨBNÔ (£Ñ¶ÐLäßÏ[~åçÛE½_ðůT÷ÔgPT UËíwÞƒ ÆÒ tô«5Ýr…uß{t°ØÎa‚a¹ì1 VÞsÛj…E:)Oô}O0]·­ocÙ-ñÞúÀwötK…b»Æí—/ÓO­Š°\âV—Uo«ŽÚ2¨Â¢ëV‘ã@Í¡ tC›FSŠõú2û!q|}ÏÉñÀ_}ÉÄ“žüñŸuQ×ç}ð/hµ’K£PVc°Ð,ª9 ­XbR”*"?)grM ShªPÒÄ8lÅUQ%¦:’CeÓöd­hF£5äq ÅZ¦ÔŠRš£;ï:l47O“ç~É—«‹º.ø£÷´G~ç,Þ;œ·(zf³x°Ö`>7|Ê)ᜓŽX©ä”PJì˜1(­ü—ã00îRŒ´RØn¶ó×–BcÈ‘/|Ù¡õ“ÄÃs®¼¹ €9^sXß[3îû‘{Ũ5T3ä\D`öAO)‰ÊŸw"ô¸‚à 3‚§LÉ …Áš@ð ”2ä¤P”v(cY,×”œY]"Ï;ßõÎ {ÿî¼óõ¢~ë°`w¼¡7=NyT2h ]XÒ*hmð¾£_,1Æ¢4ýbE¿Xa¬ÅKzú®Çj J.Xv TSÜvéÖË+x×Ó­ŽÐý’âÚ9¬ó,\Ï•°bá–´fÐ:°Z]ÂhO ¦)áCÏjµÆû€ë:lßÓ­1!p²Ûcœå¾Ñ…~®ï]¿÷–¾ø`±VË3Ëœ£içÖÈ»ÓvVÿ«%QóLum– Ó0Š®C”£5´<ÑèZ1Ò4a¥´BÕŠ}yÒ½Oá9ßwàüß$ñ„æÈvð}‡õ½u㯿óÅxcA)œu3åIc­…ÒHs!pÖ¨µžSÿœs³°ºÐlGJ…šÆy  Ç:OÓšiŠ,kvÛ-Úöû-?þ£?pa»ÿÔ§©oüæoS-5j,t¾£4eÑ[¬5rúžÒ*ÞZ\°Ácƒ't=uxcçSÿŠÎyVýBh…Öqiµ¦¤‚Që:*ea¹Ä„­4ºCqùè‹å%ІÐ/Y]F[ïzPšÝ00¦HÕšª *… ž~µäYÏy>î©O¿°§ÿ÷|Ãßl13OøPŠÖ[úàÑF Ù®ëDí¯5Œg,9‰¶Ñ†œ­V:È)S’è´*bYÃnK«g4>xvãÀvØqéʾù÷¿ì°¹Ü<ñ„æÈj0ûäoáø†ß}WŽ.qzrŠjŠi¿G5{ˆÎn·8?õçœÉ9ŸŸ¤œv »‘” ]סEap>[Ãø@EQ•E9‹ñŽ`}p”i¡ïßx_k¹â•¦ÄÄjy„È'œë~wÓ8Z_ÁúŽÅrM®Ð/×(mýj›hŒqX¡'„(C=·Ýv]·@aXô+µ(is/—K–Ë%.xb*(e¸råZSL1áœë±>:UÈàéâ^˜rFkÃK¾àKÕE^‹ÿóó> ¥*¡“®U×õŒ£HôÄšÉ%£te³9!Mž&tƒš²°+bF•ŠVš.öû=%gÆa@qš Š½v£PTãxsJ®•Óí†ç¿ã]‡M忉žsäMÛxõaoí°Ö±^®hµ¢µ•Vél 4MÓ,ü3ëÏ?NÐZ;« F¬ÕX«I)Š6}‰X'þ1OøÎËLU9œñ(%Ÿ»Xvü“×¼ª½ï‚âîùsOUwÜ~1gœwŒyÄX+BK³ðNŒ‘~Ñ£´5Î;Œ³¸pÁý±®€¶<Æ[œw„E/†AZ³ì8­ ‚Öm0ÖPT£hPNã‚GqÆúeO·èfùZ…Òš£(9¢xÆ'Ú…~†ã§^×ËŽ®äÙ4ÉhËrqtnç묥 žà}Ð@%‚?µ²ðVŠø#$1|Únð³FM…gÔ?™)E¦¿>ü@{ ¤<ÒZËÅ¥õü’Ö1FÆq¤”„R c”ø+ÌY%'Iî9ÓrÁ[Çr± dqrlµ¢çñWª×;”sìÇ‘\+ßòþW6“›'Þ0çÆ›»˜ã{ë}kÇ׿ë éB'³Î Ìjv}ߟgX¥Ô¹A0#¥A™†óZ”†RU ¥¨µ •ÂZó–¾ï0J³è¯ÿ±|¡ºôÂÏi¨FÌã-Öi±×Í‘”!º®cµZQiX/j‹Fké(…6X0Ö£C[ = MC£†EïéûŽ£EÏÒz‚RcÑ ªi¨ÞÉuX3ë:ÈúX'kÒf!"Ü,_;ʺ¦ÄcøÂ>»oyÛD‚Ù(´)å”2%W”6ì÷f¾'ưRâo‘²8»j¥È)a´nu¾?»ÝŽqÙl7ìvâápýä:S‰9SdHOƧ6‘›+nˆœø1)®]]ÿð[‡5¿µch…Õm·±‹‰)CÍ:&‚r”1҇ʅ<ŽäaÀ´Œ× …bL•\`Ö8ö§V¬¶´¦q6¬Ç ˆS†"'äaØÒZf¿9æ×Þô³¦xßû-Ð9®[Ì‘ME{#v³—VUH5‚ªoñN(iÁ‚ÖtFãfL#!8ŒQo1¼µx£Ñ­b´œðZcµ¦i… ff­ Úll¥Ak@IbÏrúOIÚþ)%rÉr_Ješ&b.¤Z¨šj"km45eTi¨ÚÈS¢¡ÐÚòß=ö·ÇÍïsá­UÌñ=‡õ¿µã«ßü|jÀ_m)gbÎh+­íqšˆµk­±Î (I&ÎO²rZÕ‚hœŸÐ´–€6Vdˆi,W+Œ±Ä8áŒæõ?öƒ7t2zðƒ`Øli%c•´ÙSLh¥¨S¦Îëyò)8ïqVTçBØÙšV©9!åŒsNNñ3XĬ¦”ŠBœ1ó;Ÿ¥ÔGZ­”š1ÆPJ¦¶2û:bŒP¡¤‚×ä4pº¹ñݺvÿ~çï ï=Îz¸mu ¯ŒØö‚ÿÐDÂZkœÿˆ²¥ÖúüW€ÅA)Å0MäZ(µ‘RfšF¦i$§ˆj ]Á4…7ÍvÏÕã¿}Ø0n¾¸¡ràQ¡)ÀXKSJð(B¿ 5=[[q6´4ò‹?õÏoÈ"à¡hð¥VA‹ïåôŽAeäÞ9‡sö\Eñì£äL©å¼ È%ËÿU>;+ž¦i"幃 yžS!¥HQq–Ðå÷ô ÞÓu~°mÉYF8Þ9„„­U‚ç©53Ž;úeÏæä1ùð7láõÐ÷·w¼å_òH-™aØà”’€R2~”Ò„¾c¹\b”ÙÞ¹88“¯>»ç­ÖXë¨UÑZÅ»€³ÕÄr9çD«š ÛíŽOÿÌûÅÍÞÒÀµ«ëˆ¬·x|ö?¹›K—®à¼Ãy/›¥–ÍÒ9w¾‰žžN®Ÿÿ›ˆY”5çì3#ß÷ûH©`œG‹ä¥ËGt ¯Â;ªðàƒà‡à{n¸„tדîQÓ4ˆoBH)ÍI:ˆb­´œØç6{k c y ÔY[^¡(¹PrF+}N·4³c`¡1L)Kâ7ÆRk›“–¬Éééu†aGΉ““cZk,—+î¾û.V«PQZ’ž÷­ûidœ"ûýžý~Ë8ìèûŽÍé£7ä3ù¯ûñö[¿ùv|ïÀ(ªJ¬Vâ© bE¼´R€iÙïvÄqD×&–Ôæ#Ïd΢(Å~¿gÚ¤1QSeØm8½þqцóÏ͹péʼâWÀM¯šsà-Û`.9< ·v|å›?ƒR*˜ÆQÐZc¿Û3#VVË%μó”3M­H9ƒVä"”¿œ3 ™K» -p¥ÊJ®ä"CÖ:@äY׋ká5¯þ‡í'^÷Cí‘G¼!^Î_øÉÞ†q¤[\ˆ)rzz*Â;>`£5i9ãðÇÌÎ’)…år)>òJÍVIª8KTêLÊÖÚÇy ÌX ­éºŽÅb1c *]×ÑZ%%i_Ç4Òî TT)Bb+ø®ãèÒk5Gë~àC7ܳø‡ïú7íÝ&‘j§ÐV´&Lp³É’Ç8C,…\Ï€”×4A9¬2Äy,"uÞm)¥œ¯Ñr¹ÄjS£4ÞYºÎ#š c-‹õeþî¿æ°AÜ|ñÈxø}B¤9コùVà8<‡øŸ?áõ )G¼óô½$6Þ ´'u!œÏ÷sδ2ŸþgQ™>Ž‘Zº5J1Ôª URUä)ª4Wò¥øÛßøõt Bß‘òD+ å,Jib«t®£¶EA¶‰·ž‹ ÷Qg!WRL”R)­‰“1ì÷ƒH"{$,Šj Sš/a •ƘŸÿ’/;$ÿ›÷ôÿ]7â…=a•ø½W7ÿð?žCü£Oû991í÷ÔšðÎ⌡뽴Q#\¾r;§›S\ß‘j…;k¡TŒÒX¥ U‚ӌㄵ3[)¦i6`»=Åè‚í­VÛ\'·‚QVü ªáøÑët¡çžñ‰<퓟Åwßûgþž<ôáއÝéå§ü…g¨_{ÓϵGRŒìÇvÑQcÂCމ~¶Uö}ÇénCi•ÅrAI#¥–sŽ}kíÕ¯&Ç 9É*”R©µaAQDú×6jUL³]­5g= E­V1%´2˜`Ç=—/_fØ@#§ŒÒg,Ã~@)ƒï‰Ê~¿¥åÄ4\ì¥4ŸúÌçòÔð*Ö?ú£Üñä{Bö ûŸ½²=ðå™'¬U¢Li4`QÚ`¬‡¦ñÁB)h­Ic”Ikr-¤’ÑÆ0¥„±†aPJ1N#Ö •rš&Q´†íɆöšÓí©È'{͇y„ç>ï>¾ö­Ÿ{Ø nÎø–kW×ÿÓ¡øã€>Üsx>níxó¿ßú¦oœ)d#Á9¬Vâ†V ÞötaA®2ǯ™d+òÖ¢Œãž.8jÉ#œö8œœœpéèHlmµf»;¥ÔD£ÒTcH#Îu Û-­4.ÝÎßÿ!N6§<ó™ÏâÒmwò‚¾ôÿÓ»òáîo›·þ*Üq‰qXu ršÈ%³ßïÑMƒj˜Ùö¸´B3Âj>P’ Ã½÷ …‘«P¤œh­Î†4êœæw6ƒ6Ærƹ€ÖŽ’+MÉé½–D¥¢TÃ)‹BR8¥”hUXÚ´‘ FÅyé¤ì¶Ûs߆'q¸ë87L¥6Z-òõA)Ã4E¬¶Ô¢©M”•Õ|ÞK_®zèZ»ë®{?ªûÒ¯¼é_µétC©™K—ŽØïw«H¥p´¾Â0N„° —B–a»£óШ&x‹Jã#¥Ùìú…g¿R˜¦‘äÏÌc—iš°ÚÀ”hZ±v¤’( žö?…¯ûõÏ?l7g<|üµ«ër(þdðMÀwž‘Cüèçþ:'Ç‘Rd¶h$éi£°Ê£•ACʉ~±J–R¨*–Â5e”U«ÎÛܪd¬µïÙlN1ÖRkAUðÁ3L;bÉM@kyŠ´ÚH1‹ž›²Tätè|à˾âkÿÔ÷å‘}¨i"ýÃïäÏÿ¯ß«~ã'~¼miI%á»Àæô„õ¥ÆhöÃHïqŠ,—ktûÈìØ÷ž\óÌÏ3-]@+‘ÖmšÆNàŒ†–RÂCAæþ rM∦Ô"t³V€2S'5E™ªh(8‹V†2›Óì÷Zi‹%»ý­Ex(N{‹n>ùŠºà4Mh­ñ®'gñ¶o­¢¡©&¸ƒ*…FÊ•fÄèÉZƒÖŽ>,h(–«Ë¬~å­<óïý7êÁû?ÔžôgÔ)x뛦mOà N’Ó4 ”¦ë=µiú¾gŠzjÍô}`¿ÝÒ…@+ZŠülvÃ¥4hEÍ“Ü×ZØî¶8ëÈ%ÍÁDkc4q˜H)¢­%—Œñ=ßöÀ×6€›7¾ùÚÕõ Ë|{ÂÁ8÷^Ýü!ð´Ãsrˆ{Ñ¿æÁî§–4Ÿ`ÓìØ‘¦ÄÑÑѹòÝ/ÛjIvÓ02• 1Éé=%Š+@ŠïÓ4A3(ÕØ Ûss¡PŠÝnGzÆidš2Îy–Ë%­)vû=—Ž.ó_ò×Ôo¼þŸ¶Ó.°=9fÕ/HSúØÜ†7ÆÀÜ©hH½¾}ŒÛo¿}VîsœŸ²X,§È",P(ªªXoi³âË¡Ñ0ÊP„ˆR f´ýèìL„ÆÚYž·T|Èçètá°ŸEkEŒ”€¡UÑu®fw&g7¿Eß1ƒ´¸c$tžR"9g¬iä"`Á£îÃ(NŽ H¥R”HkgH±°\/ØlOéûžý~À4ƒB³X®P k,9W¢§Ó†ç}ÞKÕ?ø¾æJãIOýóÿÞ{دüâÿѦq#òű’k¡ë:ùQèY Á:‡¶…¦´‰š ]è©Y„’rª4%z¥V6§§ôÁBG¿ínGèׯÏ ‰!tì÷º>Pje)þû“o:¼ø7o¼çÚÕõÓoä ¼ €¯¾ÿð¬àÇ?÷×ùðƒ÷³ßïäôë-ÆuÒ¾WŠ.T®XïðX㨵`:Ë'ÁÔFi¢T猆YW ”‚÷ÎY¶ÛŒi(ÕÈeæÉ·*n…¨¹¥[)%‹rž‘“qJ k=¡ï°Æ¢j¡•YøE)¦(…K£ ÁY\°¤6Q©ÔTð.pºÙrttYä_³$Jc4Æ(R“ŸíŒß_KQ啕@­„Y“>ÆH˜»Ûí–õzÍn·c½^³=ÝÒ{± ŽyÂj…óžÍö”.ts!ÐØ ‰ËWî`·ÛQJáÒ¥KœœœÐ÷‹ù$+£…?Vl”Dm…ÖÊìyŸäôï-ºZñ·”²4ûq% 9£4›q4¼ïh¹ ªÆº@JÕD— ¤LX,c$,dÄ`CшsxëX¿ù­<óÛ®ª¯Ýßžtï“ÿľöÆŸù‰¦TAë ª2n'Œó„Dê¸)Y´ŠÖ;øQ•`-­6r*Ô\f­ˆ9s¤1ú¥Xï‰)ãpNËDUJIä ­*þÒsïãsÞøé‡—þ毿vuýšCðÿ\¼8¼ ‡qÀ}oçÑGfØo©Z¡­$0JÅYKçäto­²P ë,M+Ê<ÿPJKXm°F£æÖù’$íZ¨Uð!x¦”±Î£µád»ÅK«™iÑsG"„­DmPkƒs3ó¸kkÓæ÷¤’iUŒbI` ÎK¢¶ÆSÑ\ÑFϧsT¦œhpÎÓ1R[%8O+R„Îÿ¼÷¤”Øn·ô}> ÐMÑé³SzÄ)2ÆqÄyG-®ëSÅ÷+¦q¤©Æj¹dœ&”‚'[2†˜3΋d³Aº ã4 UÃÌ÷¸–‚n £ µ7ÕE5IîJ¡ T]EסVZn|2­VŒ’NJNœA[{>{¯ ¨>ˆ¢^M‰iˆøEGn•Î>÷ ¾T}à½ÿ®ýÁ»gV+44òl-­{…EÍPmJ ‹¢Î†UJk¬ÒxçÄaš¨­s’Ïk…iJè Ó$|ÿ#4(%’rÆ:MŒ‘\2qŒ\¾ý.>±X¾èíð²ß¼ñ›×®®Ÿs£_äR|9ðºÃ3sˆ³øÏø%¶Ã†aÈh\çQ¥á´¦÷^j­´Yƶ¶:#¹EØjPZc‡ÀªêùÉYYEII€†-£il6;ZðÖ³ºàpHB³N£J¡V°.6ƒõž<îéú@.™\*ÞéÔŠ1ï=û8P‘ÎEÍ ÎNÑUZõg'xÝfù*#€\ Æ9”]Á#݆sYZÅ0 òµf‹m–NÖM‘÷QNÿVã¼¢–BŒ¡ëÙœnY­Ž0ÚR•¶5(£H)b­FCNÆ/—ŒQºVÒŒSh-‹d3b¤m!¥‘–ÎzR:c ("íò¡L¨™±QsA5Í´Xô=MÖ;¦–Ñó:‹ dQ§R ¬ÒPA©‚u~cR),û9'¬×4U}¯ Æ9Œv€ª‰%Kd`-ZC)¹£5ZBxûÃ4P[%–İßát/ÒË93 {Z«³Ìr4Ã8ÐjÃÙŽÿú¡¿yxÁoþxùµ«ëq(þý‹€ŸþÒá¹9ÄYüÈ}oãáGf?ƒ¦Tm,|‡n–Ëy›½Ò$éÖF7Kç:#sþËeOm"Ϻ\,ØŽœ5¤q0Þ8Ðô‹Í”ÊìÆV±hZ‰kgSi£Ê:´ ç,’%:©T¡Z''roE%¯ 0Î9Ë8 hÎ[†a`ÙuLcÂÌsè!ÆY_¿¡QÄæ×éxÄi:OT''×éBÇ”&RL³–Ãi‡sš)îA5¼ÊšÖ¢þg­çôú)ÌIÕXIÐÚhRš¸ttZ1®[fÐâ²[b­CiQT(ZU2ã÷ mdœb°´bD¾8%Œ' 5¸.Pr>W*¬I¬ ÏT Òd«ØÅïÅâY;g6ĦAŽ‘Î‹,ti£ï,–+ •¾›ŸÝè|GÌ…V¥[ãL *H9 ERÃ0 X»@7¹^…tn†aGÕEð%QjCWGÊ…œã8`&¦þ—ÿàg¦‘˜‚ó"pS Fr+,×+ X Ñ ï»ýŽÎùsšZ8N@›™‚°Š9ia[IÊëõ¡”F¬Ɖ„0z6ÊQUÁy'âDs«~»Ýr´¾ÄÉõëøÐ3Nò=›Rt‹ŽE5Ï9Ãv·e±èIE<áw´X± ªe51%”5 ã­÷{ŒÑLS¤¶†ÑŠ˜ÖŠ¶¿ï‚Òš| ´¦Õ‚7£4º ˜Ò(1‰}²_0•°ÝRZ£•Bœ¥&a$ä"óñÞ“Ú$ÀË©°Z¯±º~Eœ"º øq}´d»;%ôžT«`4Œ¸:–TqÆQrÁÇGrɸ ¶ÃÓ0r´¾D™Þvœœœâ¼ÐË\8gåTCœPZ:'«å%gr-ôÝâq]¡ Æ ¨rÏ0xïˆQ´‹zƫۜ̀Ӛ#Ó8`´‚Vf9åÌ'¦¢È1Óàœö§[¡6ùœR2ŸøÉÏá«ßöâÃK}óÇ}×®®ßr(þ߯^yx~ñøxÍgþïÿ{Y-–X¥9Z.‰qÂw)%ÂJ´ê ó)z¹—¼"îtg:…’ùxžfÓ!ø)¥gW»Š÷žÅb!IdÌhk)4Œ³”&T^kÎ8rJX­ÿ˜< š\2Ö8ñ;˜} ª–~ÍÒ‚÷Á“S¢êF3šªq7²RA¬f­fœFÆgkÞ„Uš’ÎY†aB)ÅÑ%QSZÍH{)LjmÄÙ7ACMâ.¨AðÆàÁšRQÞ}„a¢–JŠ3Â_ir)ÙŽ§XeØíBè)¹ ³4ŽVGâ(¨*GWÖœœ³¾|‰ªÓ4Ñ…Ý,-UT5Ô’¥%oE¼¨TY‡Ó“ ëÅ ]-Ö82’H©ÝÀ:ùàÒ„ršT+y,,ú¹d@Ü!ÑҙѳÖBG3FÉèA€¤æ#c%c£ û§Q+´F©…š3µrLhXû–Ê42–šuÆ4Š„³ÖÜvû]üçïþªÃË|óÇ]»ºþš‹r±ö»ž¿(ñ¯{Ççñêçf®³Ù”\èºÀ°X­™†‰R ~}‰Â9êÚ4ˆ)ÑuvFÒïv;ú…Œ >bÑZèº~Ö DdÇ”µ‚ž¯å\xH)E«•B3ù¯æ6o×uŒ“øäÖPF¡f®~®™š#½ïPYTC¹¬6Ä’©s¡Ð@4ä©XgØl·X£±V‹Ì¬2­@kœó3°NjkÒ %R(kd>ŸV{ŒQ4%hö˜+‹õê¼ãPJ¡sަÁvßD‘Ñh&–=Áu2ë®0ì÷´Ú8Þ\§”Œ÷Ž® \?~”Š8þÑûÞǓ–+ÚXŒÓ”$µUZ-2ÊhÜìC ÁCŠ» еd@c¼e¿ÙЊE>¥ÑHk_+…³cí †´²VˆTr)k=1'´ÒXk©g–¿³’bÎ…}Ü‹ù’ÒSII’?hrS´\¦„n¢PŠƒZ+¼h­˜âÄ ?ï‹á݇wùˆ¿‘.ÖÜH³ùåï8^¿è[ ðÂÃstˆÇÇO_{_ø¤?¤ä,>ê@ßuœc¡·–\¥E_J>þlÏ*³paxïiUÚãZ‹î})u¼‰^Œ‘œÆ{ì|’–ä ÉÊËïµFA”—Zɵ͢72[/µÒ4 4ÊIG@!Ô¾qd”‘2)FÐÒžo¹1Å‘ý4Ìîzk-niXçDI }MkM) mDÃÞ:µï]èq&ˆ‚µXë1Úb]@[GÓJÀpÎÑŒx, ¬÷Ä(XŒ!—жzlhRʤ\Xtâ°¸^­°ÁÒ'®áÇ@-…”«~)€2´%·¿.8|ðĉSäÒѵ Æ/xGÔbu¦ˆx¦€è¼G)ðΡg cæ6¼Ñsq&à aÌàÉ4cHB@A*RÐ5mÖ>PZS¦„™uâ4ÍfI2Ö˜b"–&x ”°ЊÌüªæK^úWøŒ×Ü~x‰oþøökW×?q(þÄúEßúfà?.ž§C<>~á‘Oä+žþ Ò(9Í-=5%¬Ñ )“ÎZ¿ÆÌ(õ$V«ÆPÏ•Æ{žrÉôýâ\ðæ QoŒ g`a­í\z¸UagÅ]¯–™#/ nœ"uNöSŠ®SJØMä~qb…¬Ä`gØì¶[0°Z.±! Æuà¼$°†ÐÖŒ¨#v]'v¾ˆµòY²Ï)Ss!ÇŒÑfæ¹3»Êi¿6(MtRŒç¦B(=K dÄ¡›å”­Ø[ó=+4ïèûN´¬ÅyéLLãÈ¢ëg&¡:ƘiMa­–FmýÖ*«ÕŠa±Æ`µÉäàÈ5ÏÃç­t6”Ì<Œ–¶½Æâ­%(~Xô¥Lß´Ò(­É¹Šº_kâ` ÖZÒ¬È(„£©5“bbˆÞ{Æi¢6ÍñÉuêÌÿ/Àu–£8OÍn»ý^¾âŸyxyoþxðå›_þŽv‘.Z݈uïÕÍ+מ©CüiñŸð/¡FJJ‚ìÎgxဟ©áuΤÒ5jÃ{Hr(¥°X,HóŒÝ{KŒI¤n½ã±ë§t]'ˆûZÑJ8ó­iÕÏ€¦Êœiñ9 "€:ŸÞ0IÈÞXœ%½V ¥öà ÊtÞc3'ÑñŒoNÃ*³" Rfν`29'¡7Þ‘ÄhD}O)‘1F2’Øs“ñ†VPsÂ;/vÁ³ µm´Î[Ã[w®Øj¥ÖDï‡B0­Vb.Œ“üìÓ4ßwÐÊÑ÷k”1´,må@iQLŒÓÄå£ËÔ\q*§D2ÐŒøê¼¢àfÖN 6tsÒÒ¯BôޑçÓýY!sbµ8b¿ÛQiô}Oœ"¥‰ô±ž;G9%ƙ١¨(ޝŸà»ÀvH¹’j!O‘…vLq¶šœ'”Q„Õ’o}ÿAæ÷‰¯¹vuýCí¢ÍxQ›_þŽß^¿è[_ÀA"øZ'àÑO⥷ÿ>×O¯cÅZCž˜³ Ø[“X%IäœÑrT”ßkI9—Y¶W¤sAËé¶ÚÈ B×Q[a:hB ŒqD)Ñ(µ¢g{Î…V+Ί(wa–Ömó‰_@hdiç0Œ#¡ô«•ø¸­Ñ`zžK£ ‚C”CÆ3)‰2ŸœdÁ¨ÿ‹½7¶l»ëû>kÜÃ9çÞ~¯õ4<ÀD@bF! $`Ä ²À ,3™AÌ ANÂ-»ˆpâ &¦„Á‰+8IÙ 3 b$ƒÊ @jR¿î{ï9{Xcþøí{%l OC?u¿ÞߪWzOÕ·ï>k¯}Öoÿ~ßÁÀ´÷ÖR($-¡<ÆYJÍh#פÍ"ÙÓ`*è 9%J.x#-õR !ÉGX œ©äÅË@ÖÕ{OJEÆ Æ“RÅh/¦HJ£¹0 *ä…Í’ìR+UÐjéÆthk ÃL­Š¦iÅ?É;1‡½lçË›LžÆ²ÆEŠR"Q캖9„K'Å’ Û®£æÂñqOá‰ÿ×{¯êÝÏ?É ^»ïÚ.ÀkwO{þàIëþZñæðÕ›—óš$ѺMÛ.á-ÒÚ¯µ¢Ì˜7š’2Ãp – €YL„`Ž3m׳˜Ñ„È1aa¿wmGšgi³ç$sk¨’®ƒuž Ä9¢Pô}Ï<ϨEf†ZÓ8†i Ì#J+´ycÒŸ±V¾è|C.€1ĘOùH˜“8òi³î’à轿|¦Ivk0ÎÐnz”‘‘G'œ±X¥… YÊ’ˆ7KX’óËgÌK““æz)Ô"#ˆ¬ (áHØ¥[Bi˜¤h*•˜2VY!]á#˜¥­>G±86Ö0‡‰’%µðª"†Dë<Ã~¤k;6›ža8GùûÇ0±Ùl„yQ´DÄŸA‰²èLÌâs  h4µ|Óà”a·Ù0LûÃm-Ã4rf^fýÞKzäa¨9“bÀj1š8M"EÌ m,)‰JÀ{Ëg~ösyÒÿýØõ½;ð×NvÿòN½xu;_Üý'çà÷÷X÷ÙŠ7‡ßü²S~ò?ü°Èû\#aAVæãi™û:ç0JaªÂ™Ý[½´Ù—„ºRi›á”IÚ¾#¥¸$éɈÀX%Ò4+™sÈ\äþÉk§ÄÛ¦úFŸþiñÞ‘R„\PJÒæÐú–œÞFËB\ÔmÛBdX‚ެs˜\0I< BÍŒ1 Áx‡Fsv.ü…"Ý"e£T±´ÕšT ¡$2•¬¤}n—®€ArÒ½ÈYfÿ‡ÃÕY¢©Øª0JHr,„ÈK–½VLÃM׋s_Œ£±Þ±ßï‰1Â|™W gÅ$¨Y2J­ø…Rd' dr‹¨uÉ0˜gkÉ1â´¥÷âúJ “¨F-I…ÍB*<Ùõ-%g¦ÁhæœDãá}ªbè}Ïá|@!…ä#Ê@V‰„Œr€Æw|Ê3ŸÃ¿ÿëƒywàµÀ_¿v²;Ü©ÀÜÎwþ’ÄÝÓžxÖº×V¼9¼ð7[^ðÙ?~õQSbÓuì‡Ã8à›F¾ø— ‘k=©ë%4€0àsÁ/.p(ÐÚ •¢ñy·Z/Á5Ò&Wµbð”|‘<¸Dö~1«Q,9Z ±l‘¾åRh¼Ç-f<)%bŒ¤Ëô¸ ²¢h×÷‹ûœŒÒÈ lãD®X%ö¸i[œDë¼xhISŒ! ´f\Lk´ÅB-™ÆûËC\ˆp¢ÉžHù”·‹n¿¢ý&‡¿RŠ…ü×w-ã01ŽƒHí–õ”7k æ@ã$ļir"Ð÷=!QnPÐÆÐúFXþF®MiQ)pQx,=qŽ$ÐGñ°Ö-ãçÔ 5göÃ@©p¤¥û3N“Œ R!„‰Ã~ !E¦Reœ“"1§%ÈŠOªó+O]Ê»¨ yíd÷ëwòPwÂEÞrþÃÀ3×ý¶â-á׿ä&?õS?Âa¿§ßn—ˆWQ\ö´RÔ”9ÚîÄnÑîçR$M0eL…Æ:T]´äÎ.­^+ˆÑ÷ÄPÆ uCL e¤­/)k51E¼¶ÄˆdŒÑ‹ÌÐÐu=FiÆqB-oýÓ4‘*—¦4DÁÆ{N‡~a²×˜DsŸ.Zê–\Š„5-JI;|š&PJHŒEHnÓ4a½hÿ§4“—p¡ßX<ʰF „J"_ÎÝ{"Uäð·(«€øR¢*Ešm#AHažÁˆáŽo<È%Cdj.„yÆi‹UŠÝnGLí$”'¤Dç$þ9ÖFáœ_øâýO‘|k<1D m±D¬s¤$E•ÓŽ NÉa¯f¢ÞCÎÔÅö8ÅŒª2~±Úæ@Š2BH%r"•À2«Ûq´Î,¶¶…yañ_$ %}±$²–.CÉ#'kH%‘ŠÈÌæišªb ³î–°”BÍòûç.ekÆbÉe´Qs¤,ª‡ã+W¸yó&mÓ@. Î Ó?ætiVTËb¦“ ­u‹Ö]#rÐÖ…¤h”^æûæ28'kÀXÈrEÛ¶ÒJËõÔ‚Õ •2)ËÛ½Z\SJb¸£åï®KV@˜gö§gMÛJbePj¥©2Â)µR¤ZhšF®/‹oB¾0Rc„›Ó¼ 3!fR–6ßx¦á@ŽYr–µžgé ¤œÙï÷ìú ÕVnžžråÊæH¹23ŸöÞïϧ½ú9ëÃvwáW¯ì6Ê4s']ìîiÏÿà ×=¸âmá§o~0Ï~?YlƒõübPÖR­<2k¯IÖK-ÿr¨ªE¾‡†99H´øÇçRiψ߾֒@XŠ0­È-%'AþœRÒ@)¼s↘3ªòF¯† ¿£åЙZ$ÑOi‘1NãˆÓ"/ ó̦ë±ÂÌf!^"*†˜¥‰Ï:Çá°—µª…°¼ý“ !Šºãb-•‚ZÃ8`œe ý0òÌÿêƒÖÃÿîÄ矿äòpù0êN»àûOο ø¦u®x0øö÷ýw\¿þŠ×x¬ÖøFÞÞïѵ^Îîs4_æä¢©wNôàÒ3¥ëâð‡$Ï)qüËN1†‰j4ÞyTIè\¨!CÉLÓH¡`ŒÄâW)9 /Úà%äËÙ{ˆ‘¦i8;;£Ûn.]ÿÈ…Þ;y»-ÒúÎ)Q³86Þ³TKèÈó⌨sÅ-JÓñ@1 ´¦&±¾ *¥Qu YRËߥ5,ê@ÆUÒ«‚0 §BøJ)Ú¾“6}Jr½y‰÷Õraœ]'R>¥5jÉY¸§=fñTâf½0Ò¨*Ü JÁõb5‡V ) ÓDAѦIBr ÆˆQšFit®L)H"bÉÄœ±Z3,Nã<‚Ó|çô?­Ö݉|íd÷ß?œ>º/úþ“ó—[÷㊃ïú€ᵯý3´‚ÝnÇ\“êµÐw=”Jß4¤i¼•X×R1®‘ðï/ßK‘" mÛ’RÁ[±.U¼õEA¯*-¶RH¹0•ÄaØÓ;Gß6h _Àø†¨ ­ö„8£´"çB¿Û2N2“žƒ¤¦R%UPrœ…°gôe@LãdÐGÊùRB¨”Âi#©ˆE‰ viÿ/]‚ÖyBŒ‹ó¡‘œä ßKkÈ „¤ýn4EÉ7K%£´Æ(Q ”¥Ó¢'A#Êz*™Ó ‹ZÀ6 E+|×2ÅH[5­kÉ%ᜟ‡9â¼Ã)G RTÌ1cœx¤œ ! ”\ÿ4Ïh+„ÇýõëbÄä¸ñº~CL‰®q„Äá/AEsz~Žï;žó_ÊÇüëǬÕ݇W\;Ù}èÃíCé;ôº¿aÝ+,¾úUÏä}û>lúžÃÍS!¿Å EùJJìg ªXÜ1‡ý¥« ˆ'@Óˆ¦}šã8“Sf?1@‡"³µºx΃&±*äT¡PP FAŽHý$¦X¤„Î8Œ6Œûµ¦q"¡¶hµð²ØÙj‰õ7½Er§ìò6ždtáœÃ;'Î|Öà‡õ–ªÀ8#¡H‹^™‡—e ó’§  ë{rΠÀB¼ TEF KTrJ"“Ë‹´.„°¬ÛD˜g±öÆi ,üœ#qœ—°Ÿ¥h(EºÊ0§ˆ2Šiž™Æ±b>?œ —BiR”œ ‹Z¢”L)•gb˜ÈóÌpvN×xT®L敬#Æjæ8;ß“Kb‘œ¸ïQ<÷‹¾f=üï^<,Ïs'^ôùK^ðG»§=¿>fÝ—+ ~ôuïÇ3ù‡Ä0óº¿|=}+žüÓ8á%Æ„q†)”_ú®í™¦ù’Ÿ—ƒìÂ~¶”"³a-iye‰VJ½1-pá”R8—¹s‰’…J­ò¶šJ!¦€®Z)m~E<Œµ’n—‹æ¬Ã[/v·Z]¶àÇ0SQÔ‚„Q—îÄô^Œ r­Ä,oÏ®ÎA˜g´Rtm‡Õ‹e0Á/eBJlºžœ29%¬“ä‹Hb¥ f­Ó#Eã=Ö:!þ-kÂŒu–Ã8²?.£‚A㜧Բx%Vv›Èû´&æ´ð„Õ_K¥ ÈUÆ Ó4]Ê'Ëbª”R¤,È1ÆYæúg§gbð3æ üŒ’„Ãp||´æ[÷ßÀ _Ö®Ò݉ÿåÚÉî…Ǧîä‹¿ÿäü7ǯûsŃÅÏ¿èSø™ç<›ÃpÀ7 ݦÇ?kÐFIC:E¬µì6÷¦Iç–CüR"‡Ò¬säE=°°õµÖ4 9î‚ù~F²U¤8Scàx»£æŒ±ÂZWÎÒozBLxã™gñ%¨,æ:ˆ~Ý9Iékœ§„´p „_Uå04]+Æ6Tû}Ûᬓ‘BLä”ÅÚx¹æZ+©VŒ³bý;Í´Ö_:†˜ð^~i˜Æ£4~‘Û5—H+Њ¬2SŒÔRÄž¹H»±,aIzá"Œa"•(^ !3)eŽŽ„蜸&²ä/Ô*¿Â #*w¿eGΉœ 1j-òwä$£cPd†Ã€óŽý~àÞ«W‰)2‡€B1M3sœ¹úˆûù‡×¿b}pî^¼ìÚÉî#®Nßá×ÿµëþ\ñöàc?é'y¯÷þk¼ÇýïI-…á0’sÉ’áuÓvø¶c¿ß_Æ_hä/HoÁp8\¦þyï/ßp§y^x‹'€µÔ*ã„9DÓDˆ cœ˜—VÀR‹¸ôÅHʉ¶kñM#ÄÅK`GtU„)§ ‘ºZ£Œ9^®”TðÎj‘"¶¸J¡¼µ›¥#à›‹ðµ$çI—ÁZÇfÑékmèÛŽšÎZšÆË(¡uÌ10Ç…ð Tù¤ÑèìKद¥ëb%+BÈìæÐV˜þ1F‘þåË!.„ÌÊ<Í’†¨4¹12šÃ0“¬Û0¨J"Ÿ*•9L’d˜"So‰¹kå€Ò”\ùß{ü“×ÃÅÃúŒ1wòÅŸ¿äº{Úó+°ºq¬xÐøá¿x?~êæñÒðQ<µý æy¾4š1K-@çÛ…üWÅð&‹þ…6?¥„³ŽM+­áºXñj­%$hž¶{Æ:G̨ÌS`? 4MË8 (c0ÆbIaݯ+Þ|÷ý(qíψ‹%íC3ÞJ–€Zä„rØÂ4bt” až„€h4¹XÔ°FÑXCÌY }Œpj­Ø%ßÐ( Ö0ÆY\§YXù1ÉLé¨Ô”™¦È~¤ƒ&Lë9Úm)µrõž{˜Ç‘MßKŠâŒÔ´›ËNLª…œ#¹$B ˜j(i îI‰Ú(œ³¶›žýá€Sš"Jkã(Ù ®áÑ÷¿7ÏÍß]Š?{íd÷‰÷©&Ÿã«€°îÙïž÷;ŸÎ'ÿþ«9Þq8ÛC®Ä$þv1ÞII¬vc âó‚Ìö æ9ZK{>g‘»Å”ØöŒÓ¸ðêåßãœãÆÙoxà†ÏŠsÎÌ!`¬(*•qžä-~i‹§$Î~©dŒkhû–!EŒqòPçJ#¦*Ô’Zè´Á(ùïš aœ9¿yJ X¤33^[qD8Ã0€5 qfœÄÿâ:bÉX/‘Ë,ã’ {Þ  ÷^²£¡0Ëá¿ßïÉQ˜ÿq˜èº^Ü >ÂÊZR‰Pè»NŠ—aФQÆbP¨QJ “DÙ ANJ)rIT ÊHèQ »¨¬6l6Ç<çg~m=üW°œ%_u7|Põpù ÷Ÿœ ðÂuï®xgðO| ¿þË¿D¿Ùà;™»ç”ðÖ1Ï®ëq¾a ¥Âv»%ç8ï¤å®ÖYR)øÅˆ'„@ÓxnœÝ –JZÒk’Ã~öÜsÏ4…G<ò>æªå |!Ö”h›ßxrŒòóJ㫘ïhg 9P$óV쉵A³dL“Äç.ü9ˆ¢s–iœic¥^¨¬AiÃfºÍ†9&Š–ŸÛ5-ºVŒw¤’¤e^òeq§‡fŸƒp„) µ 5Šq˜Ç‰q9½qSÒ Ïñ•#|Ó¡¬’Œƒ˜8Úî¨%ãµbšDq8Œ€¢ßlÇ%'rMh#³{ QJh¥™ç‘”"]ßsÎıTê0“R%–Äãžðd¾ì埱nþøÒk'»ï[ €;¯øWÀZ¯x§ðË÷:?ýS?Æë^ÿç­é}Ç•£#ŒòBìS »Ù°ià¼&׊vFˆ€¦’аñµÑĨQ~ï *çççl6›Ëä¿¶³T"5‹AN W Kî€A:TQ#4mK¡2†Yü R&§ŒNÒm(Þr(k Ã0“èòcÄ™ó4QLfs¼Á‡Õ§,}·e}·Á „À±&¢*8%Aj&Î3).‰‰‹»ââeØRšÅ(¥€Ö†˜#Ã<c¦S©d¾ËŸ¬~Å_y¸v²»cìæ/PŠ5gÓ€±†›7O‡ÎynžÞä°?ÐöÆ®Üsã4Ú‰©õ=N[Te1WªÔª±ZS‘´EÑíŸK7£D kR¢ Hq†PÈQF61¦áÀf³aNâïŸJâý?äñ|å«þ溱Wüçøøk'»—<þ·Ô PÇ»xÿÉù7ÿ뺟W¼+ñ<ùçøÅ—¾˜f×r¤ßm°Öág0Ú¢½£¨Bˆr¸J²žÈñLSÅ$'†HÛ·œïÏhúŽ‚ nÀálæ0 „ÄnW)Þóþ÷U€÷¸¥0ð¾•/]éÛŽœ·Ô"Ѹƈ1‘5ö²Ú/µ`­åììœí¢PÐZ“5Êe4r)…œ¥ gC­5UŒÓ\ Î:æ03ϳ(JåpÛâ0rœ‰1rz㦨 Pl7;TcÉ9sï#®K¤m…p¨µfÓnpÖòÀõmwh­9;ÝK˜P+rD¥49‡%'@~X‚…|VÔ$„ÊaÄë@krI óÌ÷vߺnäoÿíµ“Ý?¹[ÿË"àáz7ï?9ÿ?Ï]÷õŠw%ž{ãëxÚ§>“_ùµ_À·–ÆyÚ$,÷¬­Ä®w9hÅï_ã´A/Î{s8gÉ5ƒÑh«[á‘ýaÀš–\2ç7ÏdÆ]$¯@ÕJÓ6¤˜i7=SHÜsï½4Îa´8ûmúo-F‰KaJbmÛ4 )%‰nšKGÃDÕ ½#/®€2û—Â8‹W@˜fj­4'¥ˆµ†iÅ3A+Îöç”\˜æ‰ÓÓSgè¼#Lb+ÜÚTåøø6GG óÄñ½÷SÀ9C.­žAÛã…“`ÅÏþì ç<¹J¶AQ²f¤[Q#]qÔ\9öXçDP W®Þdz?ï¹|èÿ¶Y7ñŠÿ?tíd÷ywÛáÿp/vÀ¯}Ýß+n¾ýýÿ~çU¯ÀÏÐ4-ýnƒö’¼gü’’¤ ö=q9DE&¨ÑZIrõÒqp޳´æ‡aàh»åú®SKÁ*Åx™¦ ë-ÙXJs¢ã£°ùsÅ(…÷ŽMß‹q‰vÎ]Zÿ^—2ÇZȼS¢yžeÖžÖBb««Ó<cd<È9ã}C.”âlØ£åøxƒÖ•Î6Ø »~‡Ñ–ívGÈ…LÅ8Ï'úÍFŠ%¸4dªˆcß…“`Ée±èó ã䵂T3ã8bEEYK”æÆù)Î9Þÿƒ?ŒoøOÏY7ìŠ7‡ßžpídw~·þë`)ž üüºÇWÜJ¼ðƒŒßÿ¯dœ'²ª˜ÆÓï¶âÚgÝâùoéÚ–º8–Z$µOiÉšGÆa ÕÎÒ4-)D1j[Noœ.‘ÅR<üåë_FÓ4-Ã8@­Ìó„U ç%E0優š8KxNãBŠP*λ7û…#£‰2Î1á¬(ÎOÏñÞ‘M+c…ÃÙ9…oþÇÖMºâ-ác¯ì~án<üöÀR|%ðÏÖ}¾âVâ_~àW^úsüÖË~X2JklÛ°í6ÌóÈv·%9ˆ½säñÎ1#Þ;¼w¤”™¦‘ÙT¼ó( Ì3ªVRˆ¥ H"Js¦ÔÊÙÙÞ9¦i ×")zK\pãz˜H9Uìqyc@/FäŒ*•R ›N’¦q¤õc ¥d”V$vÓc•–DB%v½M¦¢¬¡Ûn˜Ë„Zd{G~ƒKИ–iœñ¾eŒ×5 ïA¬…3LÓD·‘¸a "šiÛŽýaÄhù)'4 j¹ÌP³ÈÏN÷¼ï|ßrýËÖM¹âmá«®ì¾çn=üïŠ`)þ9ð÷×ý¾â¡À?ºï_òškŠmÅíoÛwh¥Ø_!ÄÀš—¾ôçðÞᜧmZ”5@×åÐ7]`š'vÛ­Øû¦HMS ZŒÕ€B)PZÂn†Ã D:ec ßôœ˜Æ‘r*GÛ7¯?9³Ûniœã0 ¤9Ú3‡€´ó”ZI1âµÌÞ‹VÄ’(Z¡´B)-Ù⥢JEW$VØZ‘ìÕJÛ¶ à äHçèš–óH€3–élOM™¶i¡¦iÆXËaØÓô=¯ýëx܇<žOʆ§ž~麑V¼#øÔk'»Ÿ\ÿ»°XŠ€çßµ>+nüâs_ÇËû7ø“?y5¯þ³?FY³ï¥+PK¥mÿˆâ‰ÿêêºV¼+ðÃ×NvŸ¹þkð¦À1 ú°õùXq»ãsϾ«aÚŸ³ë·(˜ U3N»í)ËüÜËápÀhFKÄ{OÍ…"TØl6ØåÝ9'þýãFS¨„˜è»ž8 J…’ÙVº£ž³ÓSœ_Úü,Ç1`¼äèÃÌQ¿eHb5sI$*%g!Î3*WÞã±ï‡ozÞç}þk>â#ŸÈGþ‹+ëÍ^ñ®Äo#f?w¥ÓßZ¼õ"à—"`}ÕXq[ã ßĕݖiس?=Ç9MÝf‹Ñk=¹¶ÒÀl IDATú͆iœ–ÈÜÌó3v÷SjŃRJõÆ …¢ë:¦)@Mt]‡RŠa)¨•’ }Û£+ŒûIWlkÑFƒkÞÖ7¤’Ñb£žr’„ô´Ž7Ü<Å6ž«W¯ò˜G¿'ÿè «-ÇŠ[ŽëËáÿ»ëÛÿZ¼¥"àéÀO­ÏÊŠÛÏsßFžGŽv^óÚ?å‘÷=’i Ä]߉ÎXëäÍÞ(’ª8ï9 #ÖŠÀÑöˆ"EÆT¬S{v»{ˆa&„Èf»#†È4ÏíŽÊΧ8q,!ÐhÍ”fªÑà ›XÈû®ícFYËW}ý7ó”sÿz3WäC>ŒñZZç蛎qñóßö\¹z/ggg ƒóÄœ@+¬6<ðÀuæq"׊ss4Î’SÁkÅ4OxçÙmîaž'RLLó$ †Q’Çq‚ 5egÁkæ"ùNi¬‚¶mQÞQœÆk…FÒ oœòM¥å‡Ž×û¸â!Á7_;ÙýÀº oj]‚7âþ“óo¾n]‰·~æ5_ÿ½·ã1~ Mã)ªR¤.öº!RJ⥯Ó4/žû«Ø§4S+œïOÙlz†a÷½œ©UæÈfº¶#†„ÖçmÛ°ßhÛ•p›¬„ó´Æ¡–xábÙ(‘û刱 »£«|ŸÿŸ×›¸â¡À?½v²ûúÛý"o—ÀZü—EÀÏ]WbÅí†þá?ε׾­Ã^ˆÍMÓSB!lüišÐÆbä°ß“BÄ{ÃõëжNbvÇy)´‚8&jÑoÖ#¤ÁZ*z ª¬B¼ø)´}7V¬ŠCf»Ý2.Î~ZAkTͳ>á™|Æo=}½+n5þõµ“Ýß¹.t-nï"àG€O_WbÅí†oºúÝt}Ëþ|W`­ Þ­QJaŒ¡m<1Íd­©F£ª¢·•*óì§f·9³mEaðƒ÷}ÏzãVÜjü赓Ý3×Ãÿíƒ^÷Í›Åg/]—aÅí†|ýyÜxÃ¥(µ2Í3ûÃm ]ßc£i[œsäR1 uÅS«,^;jV4®ãÊÑU”iPJì|§idGrÎ(ÎYPcÁyCQ… ÁnL× i[ª³Tk±]Ïœ*ÙXÎÇ™Ïzú³Ö›¶âVã¥Ëwöеxçqíd7Ÿ¼b]·>ö)Ÿ@žƒäÔŠÖš"MÓ ”_~ï !B)h­è›Žšå­<…DM…0ej5”¬¡ZŽŽŽxÄ#îåÊ•+´mCÓ4´Ç{Oß7l6®õ4›-E[¦’Ȫ2„Öbû ®íq]GT ·=â3~ë“Ö¶âVâÀg-ßÙëÛÿÛ[ÔWýŠY÷Л-þx6ðGëj¬¸ðY/z÷?ò½ØŸïÑÚÑøŽZó”ÈsÅÎŽFu`šG m èJ×5±=Þâû†Ý•-}Û¢CÅe‹É‡ÃK-†¦=â|€);B68å0Y³Q-Wú#Ú¶§é6 Ó@Q‰œó´ç#Ÿø¤õf­¸•ø#àÙËwõŠw¤Pð¤\¿gÍÅy EÀžüùº+n'|ý«?¶Ûsbžfû=Î8¦q&…D‰kmÛ³m{¨¥Åoɪ‚_.…œ»þ«=…s޾ëÈb*\}Ä}Ô¢°Úãµ¥Ó_®¼6”iÏ<ÍœŸžÒxÇó^¹¶ÿWÜ2ü9ð¬å;zÅ;Z¨¯üNêç¾çºo¾xåRÜXWcÅí„¿ýwþ>‡Ã¥d®\9U躆J"–¥+Þ;ÊœQ8”óDàlœ¹1 Œ!¢Š¢U–8'†0SMÅ4×:¦yâ1ºç άʘœ°¹âµ¡1¯5%DRˆÌÓDŽ…œ+_ÿõÿp½A+nn,‡ÿ+×¥xç°ª$î?9*ðÀH¾â¶Âÿpïwá¼çÆ (híPˆÔ¯QŠ­µL9rH™‰Œö–Z 5Ul®X1$R-„0B­ØVÓxÇ<k1FB~LTXeA+¦ycÐÎà›–ë7༟¿÷EÏã#^¸†ú¬¸%8Ÿzíd÷ wÒEßn³ÿ7[Ô_ý1ÔŸ±n±·\|ðã@³®ÆŠÛßòÈJa­é^΀¢,ú|2cN̦T%Ô‚3• 6dL*4c‰h„úÄc „‘ífË~¿çøèöo8ç¨;Â:CHE+bÉŒaæ±ïûœ¼þËײâVa>íÚÉîg׃ÿ]ƒ¿¢PO|õŸ|ѺÍÞ–÷é@XWcÅíó-£Ä¤Ç:¬µø¶£éæ8£¬¦ƒk<, o 9%Œ8‘kÆXMÓ¶ø¶Á· mÛÒu=)´6ß‹1†££#6ýç4Î:rä8ó1÷Éëá¿âV"Ÿ¾þ·°pyáŸs?êß^[·Ü[î|ð£€_WcÅ»ÿãÕïAƒ6bþKfš&šÖ£b&M‘¢¡é;æÐJQk–$Ài"M3η =)ÍLóHŽ3Æ(ÎÏÏÙl¶hcPÕPÇ@ ßZb d2ú‘OáK^ñ7×±âVþ/Zÿ[ظ¬ ÖÃÿmu^<˜ÖÕXñî†5-mÓÓµ[b®cÙîv(eðÛ Í• ¾oHyÂÕBg:grœÑtkPZ ûß8¶]Ïf·£ézî¹úHúݜߠlƒí{lß ¼¥Zk»ãuÞ¿â–až±þaP_þsëÖ{ëEÀOŸ œ¯«±âÝ…ßþò!gŠÖ Á· Ö;¼ñtmOL ïJÁ®?âÞ£+ Gý–íf+²?ïi¶mçhGÛ¶´M‹³ž¶i(¹b£æ‚óÛyÓFc}ÃçþÂǯ7bÅ­À9Bøûéu)â@}èÇQ¿ÿ¬+ôÖ‹€—,EÀõu5V¼[  ÕŒo ‘DÓ¬†Æ)š W|OSÇþˆFyÒ ºz4-Îlè»+ôí½hí°¡ÚJª­*”Dç,½U´¦ð¨+r™9²9ÚÑ4-)V^úâO[ïÊw5®/‡ÿK¾“Þþßj þÞ·R¿ò£Ö­øÖ‹€_>xͺ+ú/œBß÷ÄÅ·È9cŒÁ5޶iðMƒ1†Æ ¹ÏZùsª*”Ö´MC×õ”RðÞqttD×uÜsÏ=8/VÀZËWÅÑnÇf³!ç €÷ûƒ?°ÞˆïJ¼ø”å»uÅ»«PßókäO\êm¿|2ðëj¬x(QJ¡ñk ­k°ÚˆS_Û¢µ¦ÖXŒ‘°ï=›Í†ÝnGßw—?k”ÁZu Î5håhš0(eØlvX×0Ï”›Í†¾ïÑÖдíz#V¼«ðÀ'/ß©+n!”R. Èü̺X¢ø]àéÀËÖÕXñP!Ì"NŒR8mH9aµÁhƒ1šX¾õBô³òÿ9cð§ñŽÆ; ÒozïÉ9aŒD7­g»ÝÒ4 ÎZé(xGÛµ¤’)rŽëXñ®ÀË€§/ߥwî´öÿƒê\~¸—þ¿ëö|ÛEÀŸxñº+’@ÎÔRhœÇ[‡®p´ÙcÄZƒ6ç=Êhšv4 J+H@ú¶£qmÓstt}¿Å»†¶é1ÚQ‹Fk‹µŽÆzT¦iÈÆaXoÄŠw/þÆòºþ·[ žò,ê ÿ»u›¾í"àÆRüûu5VÜjäa¥bPtÞÓ:OçĨ²°¨œ&“È5AÍ(U±V¡)( ·øV,-rÎäœÑF£”FU9è»®Å9‡·ïZk¬µXkyê¿y¯õF¬xgðï—ÃÍ[¹õP íÿËÿx»*¯} ê;^º.ãƒÀý'çß|ñº+n~þø…üê•-÷Ý{Œõ†’m×R¨ÄTp•€1¤9Pb¢ñÍå@*ùMþ)c0ZSbKá q”R¨93Ï#‰DH ã4‡iæqúdþÖ‹Öèßïþŵ“Ý—ÜÉàN|û¿xþõÛýƒßñRê3·ë¶}pÝ€/¾m]‰· {ú¥­ÑZSsÆ#¡=ÆñϪªäRðNtýF€åçÎXïqN¬„K)ò¬kÑk J)j­ØEM (%¿÷ôìæz#Vüÿí{°eU}ç?ëµÏãÞÓȈÓƒX88“Á´’Ñ$ÅÑšC@$¦ˆƒ–KcˆŒ‰ŽŒ’Q "!•8Œˆ“™H¢´ˆè@"šÂ„1Çðênî½çì½×^ùcí¾0„G¿n÷y¬oÕ®îºÝ}oŸßoíß÷»~ë·~¿}ÁE™üÝ¸~-/Ý=ïÞ™-‘±aAHH\Œ¥PR ¥BO=.ñ•#¸ˆ÷¥©&•% Aâ]HUÁRR(M¡$Z@Q(LW¡»Ù741­ b”UPŽÇÙ {‹w¶±1“ÿAü/?þ rŸ¿Ó=ßÉKxÏEÀÇ3žÈûƒëNý&Æô—½rw6 Ýñ–úll¡ètSocPÆ •ayyvøZÓíöSÖQbD IŒÛX¢  7X¦¶.eŒÇ%;z(;"coHèŒ6&fbì³GGüÊ5Ù‚{.þ8•Ü0(ãÂ*I·Û"“É„²¬ˆ1bDà\ƒi ö¼÷46 ³ !¬ïb¤HD Ï”Ð"1FŒ)ˆ!€øàÑÝ‚ÒÖÈv:àÚZGøpj g[ÅÌhÕÿcÓÿû%Ä+ÎÈí‚÷N|8Øž­‘q 6TEÑYß[õz=ŒÑcBã\ƒT ï=!„v·ß[ïìgŒA)E A:ëB!Tjä|R´&+kkè¤Bæa©ßÏnÈx:lNic`&ÿYϬ‹€s.$~àô¼¼÷\Üü<Ó'û´›÷„àRâ} ,kB©¨OBëGÖZʪ$ƈj # "h)BHAN*šÆ!…DK@°uË´Nß·Ûé2¹í­¹0ãIq ðómìËä?%»ÿ"į#žó¼Ì÷\„ÑpðFàÂlŒýµUKämË_…kUU!„$„€sç\zé¥|ô sÀ6 Î:|ã œÔChEÑí¥ŸUÕ„Æ¥c¥RÊ!–ûKLî¾;;#ã‰páh8xãh8™üç0°..ÿ.ñ´^^î{'Þœ-‘±ïA "ˆé_J¤Lézï#Þ?ºûßýxç(Ër½êß6 Áûö Ä € Æ‚÷(aèšÁ !iªš®.¨ë:½ÿ÷?‘ñxœÝƸ9xÏæ³~[Èo&n(ó’ß{pp2ðýlŒ½E]OÚÉ|m Þy´.ètº íîc\Oý§AÓ’¿Öi`PŒ‘H%ˆBÛC`RNR ë0J§„Bbk‹øÄ'²32vãûÀÉmlËä?x¢ôÿû,¶/¾­‘±W!S* >†è˲¤®+D)mïBªä‘"¶ihšçÞ༧²5“ªÂ9Ÿ‚Fˆ@,#Ú¤Œ@„•]¤ ¢%ñ“g_dÐÆ°—¶1-“ÿ”CoˆÑîú–ÇüLÈïÂ^‰€‡×n®þ>ðÞl‘Œ=A¹²#6#ŒÁÅH4¡$BF”¸ÚÒ7=¬mÒTÀ¢ÀÚmTªÓÙ¿#¢úµµTu‰V ß8T„h=ÞZ¢„ÒYLÇ …µ%»v좻õð쌌†ƒßÉf˜Ý?ìÃ,€=Û¿ ÅI¯É"`°m¸úFà¿ù~UÆSâ޼’¦±c,/CLE~EQ XkQÒÐíuðÞamÚÑÀ1†ÔÀ{*kÑ…AÃx<ÆÙ%$ý¢ƒ«j\m‘…bu²BÓ4ìÚ±“>ø×>óÓÙ‹‹ ðÖÑppõ¼| yÚù?•ÐöCOzMˆ7\*Åiçe°÷Ù€«· Wï.NÊÉxÒ÷ÌêrLY–<øàƒlÙ´c ÝN§-òST¡deì×k"4Þ;|ôÄ(êÚb­"ZiÆ“UJ©¨Æ\m)zš]+»ð>eŒî E>I\`lÎ wfòŸ-ò‡ ®§âUÊÑaßDÀ£áàdà“ÙO†åÍ[yduY¶~øú¹~¹6¦Z›`›=(°®Æá׬-×&õ„ÆYÊr¤\%††à-ådr¼B9^¥±%R‚ÇCŒôŒaóÒrê R3¡ÏøåìŒÅÃ'GÃÁÉ™ügz£€8óý!^rç_œ3û&Þ¾m¸zð) ›-’ñX<ãGp÷Ý]ƒeúÝ H±-4/"ÞY¢©ÚhD ­ð> †NÑ6jÝý—RR[ í¤Áµñ¾±()ðÞ]::عk•I帘÷e‡Ì?n~s4|oÞ>ؼ €§KÿÃA¼(ÞseŒ8]ä÷gŸ3ß /.ÊÖÈØ|ÿ»TUEa Eaèõzý.å>~Stt®îR(ƒ…¢Pz>ý¢OWvé]ºÝ…1,/-Ñ5Á9úE‡Á`@$R~UHT¡pDïé/-QVß|ËÎìùÆE£áàå™üçõ|^|ðºßý‹YìŸx/ðjà‡Ù‹KŽ»Žý¶lÞ‚­kBŒm ¦S€Ñ­ÑwûôŠ>…îb”¡£;È QR˜èv»˜"¥÷Ö –c°®A+J"„D*E"‘Æ;”Q<ë'ŸÅ½÷ævÀsНncÏÜaÉOvÿ]ˆ|9Æ NÎ"`ÿDÀ ÀñÀ•Ù‹‹è¶nÞ„A°Ôë±ÜÓ-p!u ÁSÚ1‡‹žÆ×8<ÖY¬O_‹J"”FI™ZºÓ!ˆH´…iªƒ)º›·l¢Û+è÷;üð‡¹™åâJàø6ædòŸ#ò?$@\|sŒçŸ˜EÀþ‰€•Ñppi–ÀJ¶ÈbáÖ·Øû4# ( Ö6í(ဳ©q*_#e:BX]]EJÅsž{ g|-·ª˜!ì~{4\¾Hz‘ÚýNu`ýC\rkÈ·h6àràXàŠlù‚÷#Úèõô?¤s|cÒ0çEÑAD¨ë: üiÏñcHÿ^)…µ–ÚÖÄ΄P„Ö6t:]ªÊbmƒ÷!eB¤g ʲD£™LJBˆ(¥év»¬>²#;hvppl&ÿÅ$ÿ©ÐÞÈ}¤x`4œ ¼ø»l‘ù `F÷!à‚'Ä”8SJ¥9“’èMƒ}Š¢ St!Ð4 sŽÆ6íù?8çèv»‘Úþj­×¥R*3( !œÇhh§Ú¦¡èv°Ö²ºº+;húñwÀëFÃÁÙ£áàLþ‹IþS' í;h!pÝh88¸0[cöaëf½xO‘òÚ_Bðˆvwïœ[/ü[QR­ïú 1eÿ#©Õ/é÷¶²Æ`´¡*K”ÔuÅêê àRP7–n§‹ucºxq.RÃdm5;hºqáh88v4\·hÄŸÉ´/úµ,¼xpðÅl~ù ˜B‚‚€”0)׈Á#´À9»>èGªT$‚è"=ÓE …Ší!V% )¡ñ4Õ%Á5JƒÒÚMZ€P”Î!”u…nkÖV'QdM'¾œÐÆ€…Â"öøßóX2ÍŽËS7 Û†«gÿ8*[c¶°ýÍÿÀ·ßŠ2`L²­ù‹tÚûÿ¡I‘’(Ó}ç×kq= ¸¦A ‘ c$DOe-JIœ«±Î!%4Öƒ£ñ1P»¦ý¾Žª¬Xêtù‰#žÅYß~UvÔtàà?Œ†ƒ«2ñgòŸ‰ Àú‡=ÿâ¯úP¾"¸1Ù€«€£ßËÖ˜µ( ‰¤ÔÞGbŸ®ñÙÚ€JÝûŒÆGí,ˆ'‚’DBItaZ!††²©©l*tÎÑ4IXB­Þ㚣uUáC@k ž{ïýAöÑtà÷€£3ùgòŸI Î|ˆ7\šEÀƈ€0Þ¼¸:[dv€ÐØ@U[\Pª IŒ! ˆQà=©_@ˆDDºö'ÀyGíê¦ae¼Fåšà‘J£»bª Ä»€[YÆk±ÞD¨i¬µ(•j !²ÐÙG‡W/ ï  •A·³þ$ÿ™â´óBÜþ…\°qBà®Ñpð&à•ÀW³E¦ü} 2Oð><¡¨«&½ÎQƒÀ»Hô‚Bºúc{åÏbD´…’¨vf€mV'cêªL;—DBe- @¤lCmmš¨"‚’ÚZ*k)mÍk^÷¦ì¤Cƒ¯¯ o wÍ+¹?Õ3—ï»KfiÜõ-!Žù™ÜÀyƒ±m¸zð;À1ÙÓ‰?|þç ®¦ÓíÒѦ JIéåŽ 0`”Â…€Bà½'´¿wÎ¥">"¶±H)qÎ¥>J3Y›Ðét°ÖQŽ',oê³²ºB$ÒÑQÀÚx „ n¬oøèÚog\Üüþh8øì¼þ‹}±±wÕO%Þ¼8<[cºpë¹;¹ù¦¿D*…‚NQ¤@u%Rš>Š€î¼ó4®¡£ 22’z4 ˆ"R×!$B$! ¥Äù@Y–$R‚R0“ªºBjEikК?ô[ÙA ÍÄŸ‰_0³gëñ´^~ý7m`y©˜Èf‹LN¼l+ºÐ4®¢,ǔ՘ÆÖxßÐ45ÎYBlpMCSÖ($‰³ õ¤ÄY‹kÒØ`b$†ˆo‚ ©ÀÏ5xçq.P7 AH„)1P[‹’*u¬-Fk&e‰Òš¢èdçl'“ÿüÿÁ"ÿ™→xÎ s(Øx0n >–-2E"à%§­§g:„Úãªg𞲜0.K„VÔ>Ýh¼£ aB+¢–Øàih£S­€p„èY[[alÇ8,µ«AIV&k  Z´6ŒË’²±TΡ´¡*ÝÏŽÙX| 8²-ðÏ:Ù/Âþ´íúÿ¿Ÿ9óŠñ§#>x]  Û†«ÏÞ¼=[ãÐãÚS¶óÀþ/ÎZ´R Òh¤Ñx"Êh¬µ4í !B ¼óÎpžBKà½#Jð1#XÛ«†¼'ÔA$(€ÔePkÆk%'"çßùËÙ1Ÿ>:îÍ;üLüY¡ÒY~ 4©aÖ× €tKÀ#¥±uIUW…FJXY]cÓ¦-ìܱ‹n·Oc\m1Z¤H³¤`uuçy4¿û÷oÎ9ðÄÿŸGÃÁ=™ø3ùgðd ì+× ^qF^Q_ \Ð>*[äàã[oÝÅ_\JF¤R=Î{Šn‡#u]S˜¢óë1EA ^1à‚¤ªmjû+¡±eºE#ýnrRá¬Cê4¸®JÆu‰Ö©Ý^ŸMÞ•q`à‹‹GÃÁ}3›3ùOñÏSY…IDATˆ÷|qÔqyu!ðO€ü°%[äàâ¶swqÃþ'F’ ÚúR·GŒ ¥Léý69çÖ‡M¬G˜®©‘ÑÑïu‰¡¡©-uUÑ+ºìر‹¢Ó%é÷»XïÇÔå2ý¡ì„ýÇ.à“À ÎELÎä?µä?w`}Ñýê2âúµ¼Òèç·Ož3pqáO^ÉCþ˜­›6¡µf²6FIMa Î{”JÕûJ)´1H`çÎD]Pú@ŒžBB #ådB¿Û£©D8!ðD¼oZamÙ¯z-§Üøâlü}Ç=À%À%£á š›8üÔä¿›{J!LùÏ­ˆïxâã_Ë¡åЊ³€·?—­qðð™¿Ìw܆‘ŠÂ4¶Aˆ” èt:ë×ådÂ`Ó&œs]ÐÞ3)W‰Þ±ÔëakK¡ ¶jPRÓ'àšš:ÞþŽ÷ð³—nÎFß7Ü|jÞøìx<ï,„˜6òŸk/}7â¼ä0sè…À¿ÎÞ­qpð­ßx„«ÿøˆ>Bd½wÿ`0 ®k:ãñ˜Æ|/À¹¥$RD‚ 4uC¡»8ç1¦ƒó Ö×lÚº…ÛwgCïþ ¸t4üåÜÆÞ'&ñ˜g7Â"ˆ€i$ÿ¹ñk×!^vz9Ó!ŽÎÞ–-²ñøÄ1Îw¾}Ûz‹ß¢(˜LR{_c Ƭ® ho 4ÎÒ-:S€)zÔ¥E+ЊËúÃlؽÇà3Àeóا/É_’ †©à1̳˜Vò_°þ@ݘ£Ð” œœ œ”-²±øæ¹;¸ýÖ[¸ýÖ[>@„Æ9Þ¹ƒþ`™ˆ i*”Jƒ}B™® nÙ’tÚ‘Ï}?ýÀN^eß‘ ºwØü1pù¢Læ{ 'v ׊€¹ÓLþ %âù'".¹5‡¤é/ÎÞ ä6r×¼l;;vKÙ"S€1ð§ÀŸŽ†ƒ¿ÈæÈ f‘ü^Ä?| âß&¿ÁÓ/4éပ×nÆÁÀçIWøþl4¸l’,f•ø³xìâýÆ B¼ä´,agG €×§·O^ÇEú×µÏ «Ù$™ügô³x²…üoŸø“eCÌ–X^ ü*ðj`9[%c?°|¸ø£á`œM’À¼O¶˜/¹qþÅÙ³+N~øeò,‚Œ=Ã=Àÿ¾4nÈæØ/0·=þçü³x²ý½[„8öçò‘À싯^ ¼<[$ã1ø+àÿk4|;›ã€fË+¹Â? €]ØœŒ¸øælˆù›€_~xpl¶ÊBá{ÀW€/†ƒ•l’Bþâq$/˜ÓûýY,âÿÒeˆ_97bþÁQÀ©ís ð¼l•¹ÂݤÆ<77†ƒ{²IŠx¼˜!À"/ô\ 8ï‚àyÀÉíóRàŸg«Ìþø:p3póh8¸;›dêOóµ,²˜âÅ~Å¿þÁlˆÅ[—´Ï¿~8"[f*p?pðMàÀ7FÃÁÎl–C"žŽ[ö´`êAćGðëÇ ®_ËÆXÌ,Á‹ŸNŽž•-³¡ø{ààvàÿßλû©Ï<žcâüš3YÌÐÂÿÔ»oûh6DG/ŽþðBRáÖl½ÂNR¡Þw;ï;îϦ™i0D)æ“*³ØŸÅÿ}pî s6 ㉄Á6à˜öy>ðSís0XP³¬’îÜÿ }¾ÜÜ5òPŽÙŠGGúfÀ¾yÄpÆÞ‰ƒg¦Ù>Ï&%lþ)ðLf¯£áðÀ)uÿ#à¾ö¹w4<½Ÿ³™ü§ÿïê^._ƘIEND®B`‚fwknop-gui-1.3-release/fwknop_guiApp.cpp000066400000000000000000000022001275215015200203700ustar00rootroot00000000000000/* fwknop_guiApp.cpp * Copyright (C) 2016 Jonathan Bennett * Fwknop-gui application class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifdef WX_PRECOMP #include "wx_pch.h" #endif #ifdef __BORLANDC__ #pragma hdrstop #endif //__BORLANDC__ #include "fwknop_guiApp.h" #include "fwknop_guiMain.h" IMPLEMENT_APP(fwknop_guiApp); bool fwknop_guiApp::OnInit() { fwknop_guiFrame* frame = new fwknop_guiFrame(0L, _("Fwknop-gui")); frame->Show(); return true; } fwknop-gui-1.3-release/fwknop_guiApp.h000066400000000000000000000027111275215015200200440ustar00rootroot00000000000000/* fwknop_guiApp.h * Copyright (C) 2016 Jonathan Bennett * Header file for fwknop_guiApp.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef FWKNOP_GUIAPP_H #define FWKNOP_GUIAPP_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class fwknop_guiApp : public wxApp { public: virtual bool OnInit(); // wxDECLARE_EVENT_TABLE(); }; #endif // FWKNOP_GUIAPP_H fwknop-gui-1.3-release/fwknop_guiMain.cpp000066400000000000000000001022101275215015200205360ustar00rootroot00000000000000/* fwknop_guiMain.cpp * Copyright (C) 2016 Jonathan Bennett * Application frame * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifdef WX_PRECOMP #include "wx_pch.h" #endif #ifdef __BORLANDC__ #pragma hdrstop #endif //__BORLANDC__ #include "fwknop_guiMain.h" CURLcode curl_read(const std::string& url, std::ostream& os, long timeout = 30); //helper functions enum wxbuildinfoformat { short_f, long_f }; wxString wxbuildinfo(wxbuildinfoformat format) { wxString wxbuild(wxVERSION_STRING); if (format == long_f ) { #if defined(__WXMSW__) wxbuild << _T("-Windows"); #elif defined(__WXMAC__) wxbuild << _T("-Mac"); #elif defined(__UNIX__) wxbuild << _T("-Linux"); #endif #if wxUSE_UNICODE wxbuild << _T("-Unicode build"); #else wxbuild << _T("-ANSI build"); #endif // wxUSE_UNICODE } return wxbuild; } BEGIN_EVENT_TABLE(fwknop_guiFrame, wxFrame) EVT_CLOSE(fwknop_guiFrame::OnClose) EVT_MENU(idMenuQuit, fwknop_guiFrame::OnQuit) EVT_MENU(idMenuNew, fwknop_guiFrame::OnNew) EVT_MENU(idMenuLocation, fwknop_guiFrame::OnLocation) EVT_MENU(idMenuDelete, fwknop_guiFrame::OnDelete) EVT_MENU(idMenuAbout, fwknop_guiFrame::OnAbout) EVT_MENU(idMenuHelpScreen, fwknop_guiFrame::OnHelpScreen) EVT_MENU(idMenuSettings, fwknop_guiFrame::OnSettings) EVT_MENU(idMenuWizard, fwknop_guiFrame::OnWizard) EVT_MENU(idMenuImport, fwknop_guiFrame::OnImport) EVT_MENU(idMenuExport, fwknop_guiFrame::OnExport) EVT_MENU(idMenuQR, fwknop_guiFrame::OnQR) EVT_MENU(idMenugpgEngine, fwknop_guiFrame::gpgEngine) EVT_MENU(idMenugpgFolder, fwknop_guiFrame::gpgFolder) EVT_MENU(idMenugpgDefaults, fwknop_guiFrame::gpgDefaults) EVT_CHECKBOX(ID_Random, fwknop_guiFrame::OnChoice) EVT_CHOICE(ID_AllowIP, fwknop_guiFrame::OnChoice) EVT_CHOICE(ID_MessType, fwknop_guiFrame::OnChoice) EVT_CHECKBOX(ID_USE_GPG, fwknop_guiFrame::OnChoice) EVT_BUTTON(ID_SaveButton, fwknop_guiFrame::OnSave) EVT_BUTTON(ID_KnockButton, fwknop_guiFrame::OnKnock) EVT_LISTBOX(ID_List, fwknop_guiFrame::OnLoad) EVT_HTML_LINK_CLICKED(ID_html, fwknop_guiFrame::OnLink) END_EVENT_TABLE() fwknop_guiFrame::fwknop_guiFrame(wxFrame *frame, const wxString& title) : wxFrame(frame, wxID_ANY, title, wxPoint(-1, -1), wxSize(800, 600)) { configFile = new wxFileConfig (wxT("fwknop-gui")); if (wxGetOsVersion() & wxOS_WINDOWS) { if (configFile->GetNumberOfEntries(true) == 0) { if (wxFileExists(_(wxGetHomeDir() + "\\fwknop-gui.ini"))) { wxRenameFile(wxGetHomeDir() + "\\fwknop-gui.ini", wxStandardPaths::Get().GetUserConfigDir() + "\\fwknop-gui.ini", false); delete configFile; configFile = new wxFileConfig (wxT("fwknop-gui")); } } } //#if wxUSE_MENUS // create a menu bar wxMenuBar* mbar = new wxMenuBar(); wxMenu* fileMenu = new wxMenu(_T("")); fileMenu->Append(idMenuSettings, _("Settings")); fileMenu->Append(idMenuNew, _("&New Config")); fileMenu->Append(idMenuDelete, _("&Delete Config")); fileMenu->Append(idMenuLocation, _("&Choose Config File")); fileMenu->Append(idMenuQuit, _("&Quit\tAlt-F4"), _("Quit the application")); mbar->Append(fileMenu, _("&File")); wxMenu* toolsMenu = new wxMenu(_T("")); toolsMenu->Append(idMenuWizard, _("&Access.conf wizard")); toolsMenu->Append(idMenuImport, _("&Import from fwknoprc file")); toolsMenu->Append(idMenuExport, _("&Export as fwknoprc file")); toolsMenu->Append(idMenuQR, _("&Export as QR code")); mbar->Append(toolsMenu, _("&Tools")); wxMenu* GPGMenu = new wxMenu(_T("")); mbar->Append(GPGMenu, _("&GPG")); ourGPG = new gpgme_wrapper; GPGKeys = new wxArrayString; GPGSigKeys = new wxArrayString; GPGMenu->Append(idMenugpgFolder, _("&GPG Home"), _("GPG Home Directory")); GPGMenu->Append(idMenugpgEngine, _("&GPG Engine"), _("GPG Engine")); GPGMenu->Append(idMenugpgDefaults, _("&GPG Defaults"), _("Resets GPG Engine and Folder to defaults")); if (ourGPG->doInit(configFile)) { ourGPG->getAllKeys(GPGKeys); ourGPG->getAllKeys(GPGSigKeys); GPGSigKeys->Insert( _("None"), 0); } else { GPGKeys->Insert( _("Disabled"), 0); GPGSigKeys->Insert( _("Disabled"), 0); } wxMenu* helpMenu = new wxMenu(_T("")); helpMenu->Append(idMenuAbout, _("&About\tF1"), _("Show info about this application")); helpMenu->Append(idMenuHelpScreen, _("&Help Screen"), _("Show help screen")); mbar->Append(helpMenu, _("&Help")); SetMenuBar(mbar); // Where we set up the gui. All the interesting things will happen in event handlers curl_global_init(CURL_GLOBAL_DEFAULT); wxColour *BackGround = new wxColour(233,233,233); this->SetBackgroundColour(*BackGround); hbox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *vListBox = new wxBoxSizer(wxVERTICAL); vConfigBox = new wxBoxSizer(wxVERTICAL); vConfigBoxSuper = new wxBoxSizer(wxVERTICAL); vConfigScroll = new wxScrolledWindow(this); //The following are the sizers for each line of config: wxBoxSizer *hNickBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hServAddrBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hLegacyBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hRandomBox = new wxBoxSizer(wxHORIZONTAL); hServPortBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hProtoBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hUseGPGBox = new wxBoxSizer(wxHORIZONTAL); hGPGChoiceBox = new wxBoxSizer(wxHORIZONTAL); hKeyBox = new wxBoxSizer(wxHORIZONTAL); hKeyB64Box = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hHmacKeyBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hHmacB64Box = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hAllowIPBox = new wxBoxSizer(wxHORIZONTAL); hIPToAllowBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hMessTypeBox = new wxBoxSizer(wxHORIZONTAL); hAccessPortsBox = new wxBoxSizer(wxHORIZONTAL); hFwTimeBox = new wxBoxSizer(wxHORIZONTAL); hKeepAliveBox = new wxBoxSizer(wxHORIZONTAL); hInternalIPBox = new wxBoxSizer(wxHORIZONTAL); hInternalPortBox = new wxBoxSizer(wxHORIZONTAL); hServCmdBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hDigestTypeBox = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer *hHmacTypeBox = new wxBoxSizer(wxHORIZONTAL); initMessTypeEvent = new wxCommandEvent(wxEVT_COMMAND_CHOICE_SELECTED, ID_MessType); initAllowIPEvent = new wxCommandEvent(wxEVT_COMMAND_CHOICE_SELECTED, ID_AllowIP); initCheckboxEvent = new wxCommandEvent(wxEVT_COMMAND_CHOICE_SELECTED, ID_Random); ourConfigList = new wxArrayString; ourConfig = new Config; wxButton *save = new wxButton(this, ID_SaveButton, wxT("Save Config"), wxDefaultPosition, wxSize(250, 40)); wxStaticText *NickLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Nickname: ")); NickTxt = new wxTextCtrl(vConfigScroll, wxID_ANY); hNickBox->Add(NickLbl,0,wxALIGN_BOTTOM); hNickBox->Add(NickTxt,1, wxEXPAND); wxStaticText *ServAddrLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Server Address: ")); ServAddrTxt = new wxTextCtrl(vConfigScroll, wxID_ANY); hServAddrBox->Add(ServAddrLbl,0,wxALIGN_BOTTOM); hServAddrBox->Add(ServAddrTxt,1, wxEXPAND); LegacyChk = new wxCheckBox(vConfigScroll, wxID_ANY,wxT("Use Legacy Mode")); hLegacyBox->Add(LegacyChk); RandomChk = new wxCheckBox(vConfigScroll, ID_Random,wxT("Use Random Port")); hRandomBox->Add(RandomChk); wxStaticText *ServPortLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Server Port: ")); ServPortTxt = new wxTextCtrl(vConfigScroll, wxID_ANY,wxT("62201")); hServPortBox->Add(ServPortLbl,0,wxALIGN_BOTTOM); hServPortBox->Add(ServPortTxt,1, wxEXPAND); //Protocol choice wxStaticText *ProtoLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Protocol: ")); wxArrayString Protos; Protos.Add(wxT("UDP")); Protos.Add(wxT("TCP")); Protos.Add(wxT("HTTP")); ProtoChoice = new wxChoice(vConfigScroll,wxID_ANY, wxDefaultPosition, wxDefaultSize, Protos); hProtoBox->Add(ProtoLbl,0,wxALIGN_BOTTOM); hProtoBox->Add(ProtoChoice); ProtoChoice->SetSelection(0); //GPG Checkbox wxStaticText *GPGLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Use GPG: ")); GPGChk = new wxCheckBox(vConfigScroll, ID_USE_GPG, wxT("")); hUseGPGBox->Add(GPGLbl); hUseGPGBox->Add(GPGChk); //GPG field wxStaticText *GPGChoiceLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("GPG Encryption Key: ")); GPGEncryptKey = new wxChoice(vConfigScroll,wxID_ANY, wxDefaultPosition, wxDefaultSize, *GPGKeys); wxStaticText *GPGChoiceLbl2 = new wxStaticText(vConfigScroll,wxID_ANY, wxT("GPG Signature Key: ")); GPGSignatureKey = new wxChoice(vConfigScroll,wxID_ANY, wxDefaultPosition, wxDefaultSize, *GPGSigKeys); hGPGChoiceBox->Add(GPGChoiceLbl); hGPGChoiceBox->Add(GPGEncryptKey); hGPGChoiceBox->Add(GPGChoiceLbl2); hGPGChoiceBox->Add(GPGSignatureKey); //Key field wxStaticText *KeyLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Rijndael Key: ")); KeyTxt = new wxTextCtrl(vConfigScroll, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD); //KeyTxt->SetWindowStyleFlag(wxTE_PASSWORD); hKeyBox->Add(KeyLbl,0,wxALIGN_BOTTOM); hKeyBox->Add(KeyTxt,1, wxEXPAND); KeyB64Chk = new wxCheckBox(vConfigScroll, wxID_ANY,wxT("Key Is Base 64")); hKeyB64Box->Add(KeyB64Chk); wxStaticText *DigestTypeLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("SPA Digest Type: ")); wxArrayString DigestType; DigestType.Add(wxT("MD5")); DigestType.Add(wxT("SHA1")); DigestType.Add(wxT("SHA256")); DigestType.Add(wxT("SHA384")); DigestType.Add(wxT("SHA512")); DigestTypeChoice = new wxChoice(vConfigScroll, ID_DigestType, wxDefaultPosition, wxDefaultSize, DigestType); hDigestTypeBox->Add(DigestTypeLbl,0,wxALIGN_BOTTOM); hDigestTypeBox->Add(DigestTypeChoice); DigestTypeChoice->SetSelection(2); wxStaticText *HmacKeyLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("HMAC Key: ")); HmacKeyTxt = new wxTextCtrl(vConfigScroll, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD); //HmacKeyTxt->SetWindowStyleFlag(wxTE_PASSWORD); hHmacKeyBox->Add(HmacKeyLbl,0,wxALIGN_BOTTOM); hHmacKeyBox->Add(HmacKeyTxt,1, wxEXPAND); HmacKeyB64Chk = new wxCheckBox(vConfigScroll, wxID_ANY,wxT("HMAC Is Base 64")); hHmacB64Box->Add(HmacKeyB64Chk); wxStaticText *HmacTypeLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("SPA HMAC Type: ")); wxArrayString HmacType; HmacType.Add(wxT("MD5")); HmacType.Add(wxT("SHA1")); HmacType.Add(wxT("SHA256")); HmacType.Add(wxT("SHA384")); HmacType.Add(wxT("SHA512")); HmacTypeChoice = new wxChoice(vConfigScroll, ID_HmacType, wxDefaultPosition, wxDefaultSize, HmacType); hHmacTypeBox->Add(HmacTypeLbl,0,wxALIGN_BOTTOM); hHmacTypeBox->Add(HmacTypeChoice); HmacTypeChoice->SetSelection(2); wxStaticText *AllowIPLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Allow IP: ")); wxArrayString AllowIP; AllowIP.Add(wxT("Resolve IP")); AllowIP.Add(wxT("Source IP")); AllowIP.Add(wxT("Allow IP")); AllowIP.Add(wxT("Prompt IP")); AllowIPChoice = new wxChoice(vConfigScroll, ID_AllowIP, wxDefaultPosition, wxDefaultSize, AllowIP); hAllowIPBox->Add(AllowIPLbl,0,wxALIGN_BOTTOM); hAllowIPBox->Add(AllowIPChoice); AllowIPChoice->SetSelection(0); wxStaticText *IPToAllowLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("IP To Allow: ")); IPToAllowTxt = new wxTextCtrl(vConfigScroll, wxID_ANY); hIPToAllowBox->Add(IPToAllowLbl,0,wxALIGN_BOTTOM); hIPToAllowBox->Add(IPToAllowTxt,1, wxEXPAND); wxStaticText *MessTypeLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Message Type: ")); wxArrayString MessType; MessType.Add(wxT("Open Port")); MessType.Add(wxT("Nat Access")); MessType.Add(wxT("Local Nat Access")); MessType.Add(wxT("Server Command")); MessTypeChoice = new wxChoice(vConfigScroll,ID_MessType, wxDefaultPosition, wxDefaultSize, MessType); hMessTypeBox->Add(MessTypeLbl,0,wxALIGN_BOTTOM); hMessTypeBox->Add(MessTypeChoice); MessTypeChoice->SetSelection(0); wxStaticText *AccessPortsLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Access Ports: ")); AccessPortsTxt = new wxTextCtrl(vConfigScroll, wxID_ANY, wxT("tcp/22")); hAccessPortsBox->Add(AccessPortsLbl,0,wxALIGN_BOTTOM); hAccessPortsBox->Add(AccessPortsTxt,1, wxEXPAND); wxStaticText *FwTimeLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Firewall Timeout: ")); FwTimeTxt = new wxTextCtrl(vConfigScroll, wxID_ANY, wxT("60")); hFwTimeBox->Add(FwTimeLbl,0,wxALIGN_BOTTOM); hFwTimeBox->Add(FwTimeTxt,1, wxEXPAND); //TimerChk = new wxCheckBox(vConfigScroll, wxID_ANY,wxT("Show countdown timer")); KeepOpenChk = new wxCheckBox(vConfigScroll, wxID_ANY,wxT("Automatically resend SPA packets")); //hKeepAliveBox->Add(TimerChk); hKeepAliveBox->Add(KeepOpenChk); wxStaticText *InternalIPLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Internal IP: ")); InternalIPTxt = new wxTextCtrl(vConfigScroll, wxID_ANY); hInternalIPBox->Add(InternalIPLbl,0,wxALIGN_BOTTOM); hInternalIPBox->Add(InternalIPTxt,1, wxEXPAND); wxStaticText *InternalPortLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Internal Port: ")); InternalPortTxt = new wxTextCtrl(vConfigScroll, wxID_ANY); hInternalPortBox->Add(InternalPortLbl,0,wxALIGN_BOTTOM); hInternalPortBox->Add(InternalPortTxt,1, wxEXPAND); wxStaticText *ServCmdLbl = new wxStaticText(vConfigScroll,wxID_ANY, wxT("Server Command: ")); ServCmdTxt = new wxTextCtrl(vConfigScroll, wxID_ANY); hServCmdBox->Add(ServCmdLbl,0,wxALIGN_BOTTOM); hServCmdBox->Add(ServCmdTxt,1, wxEXPAND); listbox = new wxListBox(this, ID_List, wxPoint(-1, -1), wxSize(200, -1)); ourConfig->getAllConfigs(ourConfigList, configFile); if (!ourConfigList->IsEmpty()) listbox->InsertItems(*ourConfigList,0); wxButton *ok = new wxButton(this, ID_KnockButton, wxT("Send Knock"), wxDefaultPosition, wxSize(130, 40)); vListBox->Add(listbox,1,wxBOTTOM, 5); vListBox->Add(ok, 0, wxALIGN_CENTER_HORIZONTAL | wxTOP); hbox->Add(vListBox, 0, wxEXPAND); vConfigBox->Add(hNickBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hServAddrBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hLegacyBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hRandomBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hServPortBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hProtoBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hUseGPGBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hGPGChoiceBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hKeyBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hKeyB64Box,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hDigestTypeBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hHmacKeyBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hHmacB64Box,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hHmacTypeBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hAllowIPBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hIPToAllowBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hMessTypeBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hAccessPortsBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hFwTimeBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hKeepAliveBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hInternalIPBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hInternalPortBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); vConfigBox->Add(hServCmdBox,1,wxALIGN_LEFT | wxEXPAND | wxALL,2); OnChoice(*initMessTypeEvent); OnChoice(*initAllowIPEvent); vConfigScroll->SetSizer(vConfigBox); vConfigScroll->FitInside(); // ask the sizer about the needed size vConfigScroll->SetScrollRate(5, 5); vConfigBoxSuper->Add(vConfigScroll, 1, wxALIGN_CENTER_HORIZONTAL | wxBOTTOM | wxEXPAND, 5); vConfigBoxSuper->Add(save, 0, wxALIGN_CENTER_HORIZONTAL); hbox->Add(vConfigBoxSuper, 1, wxEXPAND); this->SetSizer(hbox); } void fwknop_guiFrame::OnSave(wxCommandEvent &event) { //also, on android, need to detect changes to the config, because send knock with edits is broken. Similar idea, perhaps. //also need to be able to rename and have a dedicated copy button. Perhaps name is immutable when editing. ourConfig->NICK_NAME = NickTxt->GetLineText(0); ourConfig->SERVER_IP = ServAddrTxt->GetLineText(0); ourConfig->LEGACY = LegacyChk->GetValue(); if (RandomChk->GetValue()) { ourConfig->SERVER_PORT = wxT("random"); } else { ourConfig->SERVER_PORT = ServPortTxt->GetLineText(0); } ourConfig->PROTOCOL = ProtoChoice->GetString(ProtoChoice->GetSelection()); //Change this for i18n if (GPGChk->IsChecked()) { ourConfig->USE_GPG_CRYPT = true; ourConfig->GPG_CRYPT_ID = GPGEncryptKey->GetString(GPGEncryptKey->GetSelection()); ourConfig->GPG_SIG_ID = GPGSignatureKey->GetString(GPGSignatureKey->GetSelection()); } else { ourConfig->USE_GPG_CRYPT = false; ourConfig->KEY = KeyTxt->GetLineText(0); ourConfig->KEY_BASE64 = KeyB64Chk->GetValue(); } ourConfig->HMAC = HmacKeyTxt->GetLineText(0); ourConfig->HMAC_BASE64 = HmacKeyB64Chk->GetValue(); ourConfig->MESS_TYPE = MessTypeChoice->GetString(MessTypeChoice->GetSelection()); //Change this for i18n if (AllowIPChoice->GetSelection() == 0) { ourConfig->ACCESS_IP = wxT("Resolve IP"); } else if (AllowIPChoice->GetSelection() == 1) { ourConfig->ACCESS_IP = wxT("Source IP"); } else if (AllowIPChoice->GetSelection() == 3) { ourConfig->ACCESS_IP = wxT("Prompt IP"); } else { ourConfig->ACCESS_IP = IPToAllowTxt->GetLineText(0); } ourConfig->PORTS = AccessPortsTxt->GetLineText(0); ourConfig->SERVER_TIMEOUT = FwTimeTxt->GetLineText(0); ourConfig->KEEP_OPEN = KeepOpenChk->IsChecked(); ourConfig->NAT_IP = InternalIPTxt->GetLineText(0); ourConfig->NAT_PORT = InternalPortTxt->GetLineText(0); ourConfig->SERVER_CMD = ServCmdTxt->GetLineText(0); ourConfig->DIGEST_TYPE = DigestTypeChoice->GetString(DigestTypeChoice->GetSelection()); //Change this for i18n ourConfig->HMAC_TYPE = HmacTypeChoice->GetString(HmacTypeChoice->GetSelection()); //Change this for i18n ourConfig->PORTS.Replace(_(" "), _("")); wxString result = ourConfig->validateConfig(); if (result.CmpNoCase(wxT("valid")) == 0) { ourConfig->saveConfig(configFile); ourConfig->getAllConfigs(ourConfigList, configFile); listbox->Clear(); listbox->InsertItems(*ourConfigList,0); listbox->SetStringSelection(ourConfig->NICK_NAME); wxMessageBox(_("Save Successful.")); } else { wxMessageBox(result); } } void fwknop_guiFrame::OnChoice(wxCommandEvent &event) { if (RandomChk->GetValue()) { vConfigBox->Hide(hServPortBox); } else { vConfigBox->Show(hServPortBox); } if (GPGChk->GetValue()) { vConfigBox->Hide(hKeyBox); vConfigBox->Hide(hKeyB64Box); vConfigBox->Show(hGPGChoiceBox); } else { vConfigBox->Show(hKeyBox); vConfigBox->Show(hKeyB64Box); vConfigBox->Hide(hGPGChoiceBox); } if (AllowIPChoice->GetSelection() == 2) { vConfigBox->Show(hIPToAllowBox); } else { vConfigBox->Hide(hIPToAllowBox); } switch (MessTypeChoice->GetSelection()) { case 0: vConfigBox->Show(hAccessPortsBox); vConfigBox->Show(hFwTimeBox); vConfigBox->Show(hKeepAliveBox); vConfigBox->Hide(hInternalIPBox); vConfigBox->Hide(hInternalPortBox); vConfigBox->Hide(hServCmdBox); break; case 1: vConfigBox->Show(hAccessPortsBox); vConfigBox->Show(hFwTimeBox); vConfigBox->Show(hKeepAliveBox); vConfigBox->Show(hInternalIPBox); vConfigBox->Show(hInternalPortBox); vConfigBox->Hide(hServCmdBox); break; case 2: vConfigBox->Show(hAccessPortsBox); vConfigBox->Show(hFwTimeBox); vConfigBox->Show(hKeepAliveBox); vConfigBox->Hide(hInternalIPBox); vConfigBox->Show(hInternalPortBox); vConfigBox->Hide(hServCmdBox); break; case 3: vConfigBox->Show(hServCmdBox); vConfigBox->Hide(hAccessPortsBox); vConfigBox->Hide(hFwTimeBox); vConfigBox->Hide(hKeepAliveBox); vConfigBox->Hide(hInternalIPBox); vConfigBox->Hide(hInternalPortBox); break; } hbox->Layout(); } void fwknop_guiFrame::OnLoad(wxCommandEvent &event) { ourConfig->loadConfig(listbox->GetString(listbox->GetSelection()), configFile); this->populate(); } void fwknop_guiFrame::OnKnock(wxCommandEvent &event) { wxIPV4address serverAddr; wxString serverHost; if (listbox->GetSelection() == wxNOT_FOUND) // want to return before even using the memory if nothing is selected { wxMessageBox(_("No config selected!")); return; } // CURL *curl; // CURLcode curl_Res; //Use these when we switch to curl for sending http knocks wxString SPA_Result; ourConfig->loadConfig(listbox->GetString(listbox->GetSelection()), configFile); if (ourConfig->KEY.CmpNoCase(wxEmptyString) == 0 && !ourConfig->USE_GPG_CRYPT) { ourConfig->KEY = wxGetPasswordFromUser(_("Please enter your Rijndael key")); if (ourConfig->KEY.CmpNoCase(wxEmptyString) == 0) return; } if (ourConfig->ACCESS_IP.CmpNoCase(_("Prompt IP")) == 0) ourConfig->ACCESS_IP = wxGetTextFromUser(_("Please enter your Access IP")); if (ourConfig->ACCESS_IP.CmpNoCase(wxEmptyString) == 0) return; if (!serverAddr.Hostname(ourConfig->SERVER_IP)) { wxMessageBox(_("Could not resolve server!")); return; } serverHost = ourConfig->SERVER_IP; //HTTP and eventually HTTPS should be sent to the hostname rather than the IP ourConfig->SERVER_IP = serverAddr.IPAddress(); configFile->SetPath(wxT("/")); SPA_Result = ourConfig->gen_SPA(configFile->Read(wxT("ip_resolver_url"), _("https://api.ipify.org")), ourGPG->gpgEngine, ourGPG->gpgHomeFolder, configFile->Read(wxT("debug"), _("false")).CmpNoCase("true") == 0); if (SPA_Result.CmpNoCase(wxT("Success")) != 0 ) { wxMessageBox(SPA_Result); return; } SPA_Result = ourConfig->send_SPA(&serverAddr); if (SPA_Result.CmpNoCase(wxT("Knock sent successfully.")) != 0 ) { wxMessageBox(SPA_Result); return; } else if ((configFile->Read(wxT("show_timer"), _("true")).CmpNoCase(_("true")) == 0) || (ourConfig->KEEP_OPEN)){ timerDialog *ourTimer = new timerDialog(ourConfig->NICK_NAME, ourConfig, &serverAddr, ourGPG, configFile->Read(wxT("debug"), _("false")).CmpNoCase("true") == 0); ourTimer->Show(); return; } else { wxMessageBox(SPA_Result); return; } } void fwknop_guiFrame::OnNew(wxCommandEvent &event) { listbox->SetSelection(wxNOT_FOUND); ourConfig->defaultConfig(); this->populate(); } void fwknop_guiFrame::OnSettings(wxCommandEvent &event) { gConfigDialog *gConfig = new gConfigDialog(configFile); gConfig->Show(); } void fwknop_guiFrame::OnWizard(wxCommandEvent &event) { wizardDialog *wizard = new wizardDialog(_("Access.conf wizard")); wizard->Show(true); if (wizard->GetReturnCode() == wxID_OK) { listbox->SetSelection(wxNOT_FOUND); ourConfig->defaultConfig(); ourConfig->KEY = wizard->tmp_config->KEY; ourConfig->KEY_BASE64 = wizard->tmp_config->KEY_BASE64; ourConfig->HMAC = wizard->tmp_config->HMAC; ourConfig->HMAC_BASE64 = true; this->populate(); wxMessageBox(_("Generated keys imported into a blank config")); } } void fwknop_guiFrame::OnImport(wxCommandEvent &event) { bool is_changed = false; rc_import *import_dialog = new rc_import(_("RC Import"), ourConfig, &is_changed); import_dialog->Show(true); if (is_changed) { //could check for a dup, save if no dupe, message if there is listbox->SetSelection(wxNOT_FOUND); this->populate(); } } void fwknop_guiFrame::OnExport(wxCommandEvent &event) { if (ourConfig != NULL) { rc_export *export_dialog = new rc_export(_("RC Export"), ourConfig); export_dialog->Show(true); } } void fwknop_guiFrame::OnQR(wxCommandEvent &event) { if (ourConfig != NULL) { qr_export *qr_export_dialog = new qr_export(_(""), ourConfig); qr_export_dialog->Show(true); } } void fwknop_guiFrame::OnLocation(wxCommandEvent &event) { wxFileDialog getRC(this, _("Saved Config File to Use"), _(""), _(""), wxFileSelectorDefaultWildcardStr, wxFD_SAVE); if (getRC.ShowModal() == wxID_CANCEL) { return; } free(configFile); configFile = new wxFileConfig (wxT(""), wxT(""), getRC.GetPath()); ourConfig->getAllConfigs(ourConfigList, configFile); listbox->Clear(); if (!ourConfigList->IsEmpty()) listbox->InsertItems(*ourConfigList,0); listbox->SetSelection(wxNOT_FOUND); ourConfig->defaultConfig(); this->populate(); } void fwknop_guiFrame::OnDelete(wxCommandEvent &event) { if (listbox->GetSelection() == wxNOT_FOUND) { wxMessageBox(_("No config selected!")); return; } if (wxMessageBox(_("Are you sure you want to delete '") + listbox->GetString(listbox->GetSelection()) + _("'"), _("Delete saved knock"), wxYES_NO) == wxYES) { configFile->SetPath(wxT("/")); configFile->DeleteGroup(listbox->GetString(listbox->GetSelection())); configFile->Flush(); listbox->Delete(listbox->GetSelection()); listbox->SetSelection(wxNOT_FOUND); ourConfig->defaultConfig(); this->populate(); } } void fwknop_guiFrame::OnClose(wxCloseEvent &event) { curl_global_cleanup(); Destroy(); } void fwknop_guiFrame::OnQuit(wxCommandEvent &event) { curl_global_cleanup(); Destroy(); } void fwknop_guiFrame::OnAbout(wxCommandEvent &event) { //wxString msg = _("Fwknop-gui was created by Jonathan Bennett \nBased on fwknop and libfko written by Michael Rash"); //wxMessageBox(msg, _("Fwknop-gui")); wxAboutDialogInfo aboutInfo; aboutInfo.SetName(_("Fwknop-gui")); aboutInfo.SetVersion(_("Version 1.3")); aboutInfo.SetDescription(_("Fwknop-gui is a cross platform graphical fwknop client.")); aboutInfo.SetWebSite(_("https://github.com/jp-bennett/fwknop-gui")); aboutInfo.AddDeveloper(_("Jonathan Bennett")); wxAboutBox(aboutInfo); } void fwknop_guiFrame::OnHelpScreen(wxCommandEvent &event) { wxFrame *frame = new wxFrame(this, wxID_ANY, _("Fwknop-gui help")); wxHtmlWindow *html = new wxHtmlWindow(frame, ID_html); if (wxFileExists(_("help.html"))) { html->LoadPage(_("help.html")); frame->Show(true); } else if(wxFileExists(wxStandardPaths::Get().GetDataDir() + _("/help.html"))) { html->LoadPage(wxStandardPaths::Get().GetDataDir() + _("/help.html")); frame->Show(true); } else { wxMessageBox(_("Could not open help file at: ") + wxStandardPaths::Get().GetDataDir()); } } void fwknop_guiFrame::OnLink(wxHtmlLinkEvent &event) { wxLaunchDefaultBrowser(event.GetLinkInfo().GetHref()); } void fwknop_guiFrame::gpgEngine(wxCommandEvent &event) { if (ourGPG->selectEngine(configFile)) { ourGPG->getAllKeys(GPGKeys); ourGPG->getAllKeys(GPGSigKeys); GPGSigKeys->Insert( _("None"), 0); GPGEncryptKey->Clear(); GPGEncryptKey->Append(*GPGKeys); GPGSignatureKey->Clear(); GPGSignatureKey->Append(*GPGSigKeys); } } void fwknop_guiFrame::gpgFolder(wxCommandEvent &event) { if (ourGPG->selectHomeDir(configFile)) { ourGPG->getAllKeys(GPGKeys); ourGPG->getAllKeys(GPGSigKeys); GPGSigKeys->Insert( _("None"), 0); GPGEncryptKey->Clear(); GPGEncryptKey->Append(*GPGKeys); GPGSignatureKey->Clear(); GPGSignatureKey->Append(*GPGSigKeys); } } void fwknop_guiFrame::gpgDefaults(wxCommandEvent &event) { if (ourGPG->setDefaults(configFile)) { //ask if sure ourGPG->getAllKeys(GPGKeys); ourGPG->getAllKeys(GPGSigKeys); GPGSigKeys->Insert( _("None"), 0); GPGEncryptKey->Clear(); GPGEncryptKey->Append(*GPGKeys); GPGSignatureKey->Clear(); GPGSignatureKey->Append(*GPGSigKeys); } } void fwknop_guiFrame::populate() { NickTxt->ChangeValue(ourConfig->NICK_NAME); ServAddrTxt->ChangeValue(ourConfig->SERVER_IP); LegacyChk->SetValue(ourConfig->LEGACY); if (ourConfig->SERVER_PORT.CmpNoCase(wxT("Random")) == 0) { RandomChk->SetValue(true); } else { RandomChk->SetValue(false); ServPortTxt->SetValue(ourConfig->SERVER_PORT); } if (ourConfig->PROTOCOL.CmpNoCase(wxT("UDP")) == 0) ProtoChoice->SetSelection(0); else if (ourConfig->PROTOCOL.CmpNoCase(wxT("TCP")) == 0) ProtoChoice->SetSelection(1); else if (ourConfig->PROTOCOL.CmpNoCase(wxT("HTTP")) == 0) ProtoChoice->SetSelection(2); GPGChk->SetValue(ourConfig->USE_GPG_CRYPT); if (!ourConfig->USE_GPG_CRYPT) { KeyTxt->SetValue(ourConfig->KEY); KeyB64Chk->SetValue(ourConfig->KEY_BASE64); } else { GPGEncryptKey->SetSelection(GPGEncryptKey->FindString(ourConfig->GPG_CRYPT_ID)); GPGSignatureKey->SetSelection(GPGSignatureKey->FindString(ourConfig->GPG_SIG_ID)); } HmacKeyTxt->SetValue(ourConfig->HMAC); HmacKeyB64Chk->SetValue(ourConfig->HMAC_BASE64); if (ourConfig->ACCESS_IP.CmpNoCase(wxT("Resolve IP")) == 0) AllowIPChoice->SetSelection(0); else if (ourConfig->ACCESS_IP.CmpNoCase(wxT("Source IP")) == 0) AllowIPChoice->SetSelection(1); else if (ourConfig->ACCESS_IP.CmpNoCase(wxT("Prompt IP")) == 0) AllowIPChoice->SetSelection(3); else { AllowIPChoice->SetSelection(2); IPToAllowTxt->SetValue(ourConfig->ACCESS_IP); } if (ourConfig->MESS_TYPE.CmpNoCase(wxT("Open Port")) == 0) MessTypeChoice->SetSelection(0); else if (ourConfig->MESS_TYPE.CmpNoCase(wxT("Nat Access")) == 0) MessTypeChoice->SetSelection(1); else if (ourConfig->MESS_TYPE.CmpNoCase(wxT("Local Nat Access")) == 0) MessTypeChoice->SetSelection(2); else if (ourConfig->MESS_TYPE.CmpNoCase(wxT("Server Command")) == 0) MessTypeChoice->SetSelection(3); AccessPortsTxt->SetValue(ourConfig->PORTS); FwTimeTxt->SetValue(ourConfig->SERVER_TIMEOUT); KeepOpenChk->SetValue(ourConfig->KEEP_OPEN); InternalIPTxt->SetValue(ourConfig->NAT_IP); InternalPortTxt->SetValue(ourConfig->NAT_PORT); ServCmdTxt->SetValue(ourConfig->SERVER_CMD); if (ourConfig->DIGEST_TYPE.CmpNoCase(wxT("MD5")) == 0) DigestTypeChoice->SetSelection(0); else if (ourConfig->DIGEST_TYPE.CmpNoCase(wxT("SHA1")) == 0) DigestTypeChoice->SetSelection(1); else if (ourConfig->DIGEST_TYPE.CmpNoCase(wxT("SHA256")) == 0) DigestTypeChoice->SetSelection(2); else if (ourConfig->DIGEST_TYPE.CmpNoCase(wxT("SHA384")) == 0) DigestTypeChoice->SetSelection(3); else if (ourConfig->DIGEST_TYPE.CmpNoCase(wxT("SHA512")) == 0) DigestTypeChoice->SetSelection(4); if (ourConfig->HMAC_TYPE.CmpNoCase(wxT("MD5")) == 0) HmacTypeChoice->SetSelection(0); else if (ourConfig->HMAC_TYPE.CmpNoCase(wxT("SHA1")) == 0) HmacTypeChoice->SetSelection(1); else if (ourConfig->HMAC_TYPE.CmpNoCase(wxT("SHA256")) == 0) HmacTypeChoice->SetSelection(2); else if (ourConfig->HMAC_TYPE.CmpNoCase(wxT("SHA384")) == 0) HmacTypeChoice->SetSelection(3); else if (ourConfig->HMAC_TYPE.CmpNoCase(wxT("SHA512")) == 0) HmacTypeChoice->SetSelection(4); OnChoice(*initMessTypeEvent); // OnChoice(*initAllowIPEvent); // OnChoice(*initCheckboxEvent); } /*static size_t data_write(void* buf, size_t size, size_t nmemb, void* userp) { if(userp) { std::ostream& os = *static_cast(userp); std::streamsize len = size * nmemb; if(os.write(static_cast(buf), len)) return len; } return 0; } */ /** * timeout is in seconds **/ /* CURLcode curl_read(const std::string& url, std::ostream& os, long timeout) { CURLcode code(CURLE_FAILED_INIT); CURL* curl = curl_easy_init(); if(curl) { if(CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &data_write)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_FILE, &os)) && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout)) #ifdef __WIN32__ && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_CAINFO, "./ca-bundle.crt")) #endif && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_URL, url.c_str()))) { code = curl_easy_perform(curl); } curl_easy_cleanup(curl); } return code; } */ fwknop-gui-1.3-release/fwknop_guiMain.h000066400000000000000000000110721275215015200202100ustar00rootroot00000000000000/* fwknop_guiMain.h * Copyright (C) 2016 Jonathan Bennett * Header file for fwknop_guiMain.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef FWKNOP_GUIMAIN_H #define FWKNOP_GUIMAIN_H #ifndef WX_PRECOMP #include #endif #include "fwknop_guiApp.h" #include "wizard.h" #include "general_config.h" #include "rc_export.h" #include "rc_import.h" #include "qr_export.h" #include "timer.h" #include "gpgme_wrapper.h" #include #include class fwknop_guiFrame: public wxFrame { public: fwknop_guiFrame(wxFrame *frame, const wxString& title); private: wxBoxSizer *hbox; wxBoxSizer *vConfigBox; wxBoxSizer *vConfigBoxSuper; wxBoxSizer *hIPToAllowBox; wxBoxSizer *hServPortBox; wxChoice *AllowIPChoice; wxChoice *MessTypeChoice; wxBoxSizer *hAccessPortsBox; wxBoxSizer *hFwTimeBox; wxBoxSizer *hKeepAliveBox; wxBoxSizer *hInternalIPBox; wxBoxSizer *hInternalPortBox; wxBoxSizer *hServCmdBox; wxFileConfig *configFile; wxTextCtrl *NickTxt; Config *ourConfig; wxArrayString *ourConfigList; wxListBox *listbox; wxTextCtrl *ServAddrTxt; wxCheckBox *LegacyChk; wxCheckBox *RandomChk; wxTextCtrl *ServPortTxt; wxCheckBox *GPGChk; wxTextCtrl *KeyTxt; wxCheckBox *KeyB64Chk; wxChoice *ProtoChoice; wxTextCtrl *HmacKeyTxt; wxCheckBox *HmacKeyB64Chk; wxTextCtrl *IPToAllowTxt; wxTextCtrl *AccessPortsTxt; wxTextCtrl *FwTimeTxt; wxCheckBox *TimerChk; wxCheckBox *KeepOpenChk; wxTextCtrl *InternalIPTxt; wxTextCtrl *InternalPortTxt; wxTextCtrl *ServCmdTxt; wxChoice *DigestTypeChoice; wxChoice *HmacTypeChoice; wxCommandEvent *initMessTypeEvent; wxCommandEvent *initAllowIPEvent; wxCommandEvent *initCheckboxEvent; gpgme_wrapper *ourGPG; wxArrayString *GPGKeys; wxArrayString *GPGSigKeys; wxBoxSizer *hKeyBox; wxBoxSizer *hKeyB64Box; wxBoxSizer *hGPGChoiceBox; wxChoice *GPGEncryptKey; wxChoice *GPGSignatureKey; wxScrolledWindow *vConfigScroll; enum { idMenuQuit = 1000, idMenuAbout, idMenuHelpScreen, idMenuSettings, idMenuNew, idMenuDelete, idMenuLocation, idMenuWizard, idMenuImport, idMenuExport, idMenuQR, idMenugpgEngine, idMenugpgFolder, idMenugpgDefaults, idMenuGPGTools, ID_AllowIP, ID_MessType, ID_SaveButton, ID_List, ID_KnockButton, ID_Random, ID_DigestType, ID_HmacType, ID_USE_GPG, ID_html }; void populate(); void OnClose(wxCloseEvent& event); void OnQuit(wxCommandEvent& event); void OnNew(wxCommandEvent& event); void OnDelete(wxCommandEvent& event); void OnLocation(wxCommandEvent& event); void OnAbout(wxCommandEvent& event); void OnHelpScreen(wxCommandEvent& event); void OnSettings(wxCommandEvent& event); void OnWizard(wxCommandEvent& event); void OnImport(wxCommandEvent& event); void OnExport(wxCommandEvent& event); void OnQR(wxCommandEvent& event); void gpgEngine(wxCommandEvent& event); void gpgFolder(wxCommandEvent& event); void gpgDefaults(wxCommandEvent& event); void OnChoice(wxCommandEvent& event); void OnSave(wxCommandEvent& event); void OnLoad(wxCommandEvent& event); void OnLink(wxHtmlLinkEvent& event); void OnKnock(wxCommandEvent& event); DECLARE_EVENT_TABLE() }; #endif // FWKNOP_GUIMAIN_H fwknop-gui-1.3-release/general_config.cpp000066400000000000000000000072711275215015200205360ustar00rootroot00000000000000/* general_config.cpp * Copyright (C) 2016 Jonathan Bennett * General config class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "general_config.h" BEGIN_EVENT_TABLE(gConfigDialog, wxDialog) EVT_BUTTON(ID_DefButton, gConfigDialog::OnDef) EVT_BUTTON(ID_OKButton, gConfigDialog::OnOK) EVT_BUTTON(ID_CancelButton, gConfigDialog::OnCancel) END_EVENT_TABLE() gConfigDialog::gConfigDialog(wxFileConfig *configFile) : wxDialog(NULL, -1, _("Config"), wxDefaultPosition, wxSize(-1, -1)) { privateConfigFile = configFile; wxPanel *panel = new wxPanel(this, -1); wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL); wxBoxSizer *hbox = new wxBoxSizer(wxHORIZONTAL); privateConfigFile->SetPath(wxT("/")); new wxStaticText(panel, -1, wxT("Enter URL to use to resolve the local IP."), wxPoint(15, 5)); url_txt = new wxTextCtrl(panel, -1, configFile->Read(wxT("ip_resolver_url"), _("https://api.ipify.org")) , wxPoint(15, 30), wxSize(350, 30)); new wxButton(panel, ID_DefButton, wxT("Set to Default"), wxPoint(15, 70)); countdownCheck = new wxCheckBox(panel, wxID_ANY, _("Show server timeout popup"), wxPoint(15, 110)); if (configFile->Read(wxT("show_timer"), _("true")).CmpNoCase(_("true")) == 0 ) { countdownCheck->SetValue(true); } else { countdownCheck->SetValue(false); } debugCheck = new wxCheckBox(panel, wxID_ANY, _("Show Debug information"), wxPoint(15, 150)); if (configFile->Read(wxT("debug"), _("false")).CmpNoCase(_("true")) == 0 ) { debugCheck->SetValue(true); } else { debugCheck->SetValue(false); } wxButton *okButton = new wxButton(this, ID_OKButton, wxT("Ok"), wxDefaultPosition, wxSize(70, 30)); wxButton *cancelButton = new wxButton(this, ID_CancelButton, wxT("Cancel"), wxDefaultPosition, wxSize(70, 30)); hbox->Add(okButton, 1); hbox->Add(cancelButton, 1); //vbox->Add(key_lbl, 1); vbox->Add(panel, 1); vbox->Add(hbox, 0, wxALIGN_CENTER | wxTOP | wxBOTTOM, 10); SetSizer(vbox); Centre(); ShowModal(); Destroy(); } void gConfigDialog::OnDef(wxCommandEvent &event) { url_txt->ChangeValue(wxT("https://api.ipify.org")); } void gConfigDialog::OnOK(wxCommandEvent &event) { wxString tmp_url = url_txt->GetValue(); if (tmp_url.IsEmpty()) { wxMessageBox(_("URL cannot be empty!")); return; } else { privateConfigFile->Write(wxT("ip_resolver_url"), tmp_url); if (countdownCheck->IsChecked()) { privateConfigFile->Write(wxT("show_timer"), _("true")); } else { privateConfigFile->Write(wxT("show_timer"), _("false")); } if (debugCheck->IsChecked()) { privateConfigFile->Write(wxT("debug"), _("true")); } else { privateConfigFile->Write(wxT("debug"), _("false")); } privateConfigFile->Flush(); EndModal(wxID_OK); Destroy(); } } void gConfigDialog::OnCancel(wxCommandEvent &event) { EndModal(wxID_CANCEL); Destroy(); } fwknop-gui-1.3-release/general_config.h000066400000000000000000000024341275215015200201770ustar00rootroot00000000000000/* general_config.h * Copyright (C) 2016 Jonathan Bennett * Header file for general_config.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include class gConfigDialog : public wxDialog { public: gConfigDialog(wxFileConfig *configFile); private: wxTextCtrl *url_txt; wxFileConfig *privateConfigFile; wxCheckBox *countdownCheck; wxCheckBox *debugCheck; enum { ID_OKButton = 1200, ID_DefButton, ID_CancelButton }; void OnDef(wxCommandEvent& event); void OnOK(wxCommandEvent& event); void OnCancel(wxCommandEvent& event); DECLARE_EVENT_TABLE() }; fwknop-gui-1.3-release/gpgme_wrapper.cpp000066400000000000000000000215251275215015200204310ustar00rootroot00000000000000/* gpgme_wrapper.cpp * Copyright (C) 2016 Jonathan Bennett * Gpgme wrapper class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "gpgme_wrapper.h" bool gpgme_wrapper::doInit(wxFileConfig * configFile) { gpgme_engine_info_t tmp_Info; configFile->SetPath(wxT("/")); //Starts the actual init gpgme_check_version(nullptr); gpgerr = gpgme_new(&gpgcon); if (gpgerr != GPG_ERR_NO_ERROR) { wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return 0; } tmp_Info = gpgme_ctx_get_engine_info(gpgcon); if (gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP) != GPG_ERR_NO_ERROR && (configFile->Read(wxT("show_gpg"), _("true")).CmpNoCase(_("true")) == 0)) { if (wxGetOsVersion() & wxOS_WINDOWS) { wxRichMessageDialog dlg(NULL, _("GPG engine missing, launch browser to download?"), _("GPG engine missing"), wxYES_NO); dlg.ShowCheckBox("Don't show this dialog again"); if (dlg.ShowModal() == wxID_YES) { wxMessageBox(_("The download will now begin, start fwknop-gui again after the installation is complete")); wxLaunchDefaultBrowser(_("https://files.gpg4win.org/gpg4win-latest.exe")); } if ( dlg.IsCheckBoxChecked() ) { configFile->Write(wxT("show_gpg"), _("false")); configFile->Flush(); } } else if (wxGetOsVersion() & wxOS_MAC) { wxRichMessageDialog dlg(NULL, _("GPG engine missing, launch browser to download?"), _("GPG engine missing"), wxYES_NO); dlg.ShowCheckBox("Don't show this dialog again"); if (dlg.ShowModal() == wxID_YES) { wxMessageBox(_("The gpgtools page will launch. Please download and install the gpg suite and start fwknop-gui again after the installation is complete")); wxLaunchDefaultBrowser(_("https://gpgtools.org/")); } if ( dlg.IsCheckBoxChecked() ) { configFile->Write(wxT("show_gpg"), _("false")); configFile->Flush(); } enabled = false; return 0; } else { wxRichMessageDialog dlg(NULL, _("GPG engine missing, please install gpg or gp2"), _("GPG engine missing"), wxOK|wxCENTER); dlg.ShowCheckBox("Don't show this dialog again"); dlg.ShowModal(); if ( dlg.IsCheckBoxChecked() ) { configFile->Write(wxT("show_gpg"), _("false")); configFile->Flush(); } enabled = false; return 0; } } if (gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP) != GPG_ERR_NO_ERROR) return 0; //We grab the default settings before loading in the saved stuff gpgEngineDefault = _(tmp_Info->file_name); gpgFolderDefault = _(tmp_Info ->home_dir); gpgEngine = configFile->Read(wxT("gpg_engine"), _(tmp_Info->file_name)); gpgHomeFolder = configFile->Read(wxT("gpg_home_folder"), _(tmp_Info->home_dir)); if (gpgHomeFolder.IsEmpty()) gpgme_ctx_set_engine_info(gpgcon, GPGME_PROTOCOL_OpenPGP, (const char*)gpgEngine.mb_str(wxConvUTF8), nullptr); else gpgme_ctx_set_engine_info(gpgcon, GPGME_PROTOCOL_OpenPGP, (const char*)gpgEngine.mb_str(wxConvUTF8), (const char*)gpgHomeFolder.mb_str(wxConvUTF8)); enabled = true; return 1; } void gpgme_wrapper::getAllKeys(wxArrayString * keys) { gpgme_key_t tmpKey; keys->Empty(); gpgerr = gpgme_op_keylist_start(gpgcon, 0, 0); if (gpgerr != GPG_ERR_NO_ERROR){ wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return; } while (gpgme_op_keylist_next(gpgcon, &tmpKey) != GPG_ERR_EOF) { if (tmpKey == 0) break; //keys->Insert(_(gpgme_key_get_string_attr(tmpKey, GPGME_ATTR_KEYID, 0, 0)).Right(8), 0); keys->Insert(_(tmpKey->subkeys->keyid).Right(8), 0); } gpgme_op_keylist_end(gpgcon); } //This function is not used, but is temporarily left for reference /* bool gpgme_wrapper::encryptAndSign(wxString encryptKey, wxString sigKey, char * plaintext, char * cipher) { gpgme_data_t plain_data; gpgme_data_t cipher_data; gpgme_key_t key[2] = { NULL, NULL }; gpgme_key_t sig_key; size_t * buf_len; char *buf; char key_buf[64] = {0}; buf_len = new size_t; char *ndx; gpgerr = gpgme_data_new_from_mem(&plain_data, plaintext, strlen(plaintext), 1); if (gpgerr != GPG_ERR_NO_ERROR) { wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return 0; } gpgerr = gpgme_data_new(&cipher_data); if (gpgerr != GPG_ERR_NO_ERROR) { wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return 0; } strcpy(key_buf, (const char*)encryptKey.mb_str(wxConvUTF8)); gpgerr = gpgme_get_key(gpgcon, key_buf, &key[0], 0); if (gpgerr != GPG_ERR_NO_ERROR) { wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return 0; } gpgme_set_protocol(gpgcon, GPGME_PROTOCOL_OpenPGP); gpgme_set_armor(gpgcon, 0); gpgme_signers_clear(gpgcon); if (sigKey.CmpNoCase(wxT("None")) == 0) { gpgerr = gpgme_op_encrypt(gpgcon, key, GPGME_ENCRYPT_ALWAYS_TRUST, plain_data, cipher_data); if (gpgerr != GPG_ERR_NO_ERROR) { wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return 0; } } else { strcpy(key_buf, (const char*)sigKey.mb_str(wxConvUTF8)); gpgerr = gpgme_get_key(gpgcon, key_buf, &sig_key, 0); if (gpgerr != GPG_ERR_NO_ERROR) { wxMessageBox(_("GPG returned the error: ") + _(gpgme_strerror(gpgerr))); return 0; } gpgme_signers_add(gpgcon, sig_key); gpgme_op_encrypt_sign(gpgcon, key, GPGME_ENCRYPT_ALWAYS_TRUST, plain_data, cipher_data); } buf = gpgme_data_release_and_get_mem(cipher_data, buf_len); if (buf == nullptr) return 0; wxBase64Encode(cipher, 4096, buf, *buf_len); if((ndx = strchr(cipher, '=')) != NULL) *ndx = '\0'; //base64 encode before returning return 1; } */ bool gpgme_wrapper::selectHomeDir(wxFileConfig * configFile) { configFile->SetPath(wxT("/")); wxDirDialog dlg(NULL, _("Choose GPG directory"), gpgHomeFolder, wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST); if (wxGetOsVersion() & wxOS_MAC) { dlg.SetMessage(_("Choose GPG directory, use Shift+Command+.(period) to show hidden files")); } if(dlg.ShowModal() == wxID_OK){ gpgHomeFolder = dlg.GetPath(); configFile->Write(_("gpg_home_folder"), gpgHomeFolder); configFile->Flush(); gpgme_ctx_set_engine_info(gpgcon, GPGME_PROTOCOL_OpenPGP, (const char*)gpgEngine.mb_str(wxConvUTF8), (const char*)gpgHomeFolder.mb_str(wxConvUTF8)); return true; } else { return false; } } bool gpgme_wrapper::selectEngine(wxFileConfig * configFile) { configFile->SetPath(wxT("/")); wxFileDialog dlg(NULL, _("Choose gpg or gpg2 executable"), wxEmptyString, gpgEngine); if (wxGetOsVersion() & wxOS_MAC) { dlg.SetMessage(_("Choose gpg or gpg2 executable, use Shift+Command+.(period) to show hidden files")); } if (dlg.ShowModal() == wxID_OK){ gpgEngine = dlg.GetPath(); configFile->Write(_("gpg_engine"), gpgEngine); configFile->Flush(); gpgme_ctx_set_engine_info(gpgcon, GPGME_PROTOCOL_OpenPGP, (const char*)gpgEngine.mb_str(wxConvUTF8), (const char*)gpgHomeFolder.mb_str(wxConvUTF8)); return true; } else { return false; } } bool gpgme_wrapper::setDefaults(wxFileConfig * configFile) { configFile->SetPath(wxT("/")); wxMessageDialog dlg(NULL, _("Are you sure you want to reset GPG?"), _("Confirm"), wxYES_NO); if (dlg.ShowModal() == wxID_YES){ gpgEngine = gpgEngineDefault; gpgHomeFolder = gpgFolderDefault; configFile->Write(_("gpg_engine"), gpgEngine); configFile->Write(_("gpg_home_folder"), wxEmptyString); configFile->Flush(); gpgme_ctx_set_engine_info(gpgcon, GPGME_PROTOCOL_OpenPGP, (const char*)gpgEngine.mb_str(wxConvUTF8), nullptr); return true; } else { return false; } } fwknop-gui-1.3-release/gpgme_wrapper.h000066400000000000000000000030701275215015200200710ustar00rootroot00000000000000/* gpgme_wrapper.h * Copyright (C) 2016 Jonathan Bennett * Header for gpgme_wrapper.c * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef GPGME_WRAPPER #define GPGME_WRAPPER #include //This seems strange, not sure how to handle this. Ship with my code? #include #include #include #include #include class gpgme_wrapper { public: bool enabled; bool doInit(wxFileConfig * configFile); void getAllKeys(wxArrayString * keys); bool selectHomeDir(wxFileConfig * configFile); bool selectEngine(wxFileConfig * configFile); bool setDefaults(wxFileConfig * configFile); wxString gpgEngine; wxString gpgHomeFolder; private: gpgme_ctx_t gpgcon; gpgme_error_t gpgerr; wxString gpgEngineDefault; wxString gpgFolderDefault; }; #endif fwknop-gui-1.3-release/help.html000066400000000000000000000023221275215015200166760ustar00rootroot00000000000000

Welcome to fwknop-gui! This app is for the sending of SPA Packets to a Linux host or router, mainly for opening ports in an iptables firewall. More info at the Cipherdyne web site.

Get started by selecting "New Config" from the menu, and then filling in at least "Nickname", "Server Address", and "Rijndael Key." It is also recommended to set an "HMAC Key" as well for strong authentication of SPA packets.

Once the data is filled in, select "Save Config" from the menu. Then, to send a SPA knock, select the Saved config you want to use, and click the "Send Knock" button at the bottom of the list.

This app is open source software, Licensed GPLv2+. The source can be found on github. Please report any bugs there.

Credits: Based on fwknop and libfko written by Michael Rash

This app was written by Jonathan Bennett

The fwknop-gui icon is derived from on a photo by Peter O'Connor

fwknop-gui-1.3-release/qr_export.cpp000066400000000000000000000056471275215015200176240ustar00rootroot00000000000000/* qr_export.cpp * Copyright (C) 2016 Jonathan Bennett * QR export class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "qr_export.h" BEGIN_EVENT_TABLE(qr_export, wxDialog) // catch paint events EVT_PAINT(qr_export::paintEvent) END_EVENT_TABLE() qr_export::qr_export(const wxString & title, const Config *selectedConfig) : wxDialog(NULL, -1, title, wxDefaultPosition, wxSize(150, 150)) { int i; char tmpString[10024]; QRcode *ourQR = NULL; wxImage *ourQRImage; wxString QRBuf = wxT(""); if (selectedConfig->KEY_BASE64) QRBuf = (wxT("KEY_BASE64:")); else QRBuf = (wxT("KEY:")); QRBuf.Append(selectedConfig->KEY); if (!selectedConfig->HMAC.IsEmpty()) { if (selectedConfig->HMAC_BASE64) QRBuf.Append(wxT(" HMAC_KEY_BASE64:")); else QRBuf.Append(wxT(" HMAC_KEY:")); QRBuf.Append(selectedConfig->HMAC); } strncpy(tmpString, (const char*)QRBuf.mb_str(wxConvUTF8), 10023); ourQR = QRcode_encodeString((char *)tmpString, 0, QR_ECLEVEL_Q, QR_MODE_8, 1); unsigned char *rawImage = new unsigned char[ourQR->width * ourQR->width * 3]; unsigned char *p = ourQR->data; for (i=0; i < (ourQR->width * ourQR->width); i++) { if (p[i] & 0x00000001) { rawImage[i * 3] = 0x00; rawImage[i * 3 + 1] = 0x00; rawImage[i * 3 + 2] = 0x00; } else { rawImage[i * 3] = 0xff; rawImage[i * 3 + 1] = 0xff; rawImage[i * 3 + 2] = 0xff; } } ourQRImage = new wxImage(ourQR->width, ourQR->width, rawImage); ourQRImage->Rescale(ourQR->width * 4, ourQR->width * 4); bmp = wxBitmap(*ourQRImage); if (ourQR->width * 4 > 100) this->SetSize(wxDefaultCoord, wxDefaultCoord, ourQR->width * 4 + 50, ourQR->width * 4 + 50); Centre(); ShowModal(); Destroy(); QRcode_free(ourQR); } void qr_export::paintEvent(wxPaintEvent & evt) { // depending on your system you may need to look at double-buffered dcs wxPaintDC dc(this); render(dc); } void qr_export::paintNow() { // depending on your system you may need to look at double-buffered dcs wxClientDC dc(this); render(dc); } void qr_export::render(wxDC& dc) { dc.DrawBitmap( bmp, 15, 15, false ); } fwknop-gui-1.3-release/qr_export.h000066400000000000000000000021551275215015200172600ustar00rootroot00000000000000/* qr_export.h * Copyright (C) 2016 Jonathan Bennett * Header for qr_export.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include "configs.h" #include class qr_export : public wxDialog { public: qr_export(const wxString& title, const Config *selectedConfig); private: wxBitmap bmp; void paintEvent(wxPaintEvent & evt); void paintNow(); void render(wxDC& dc); DECLARE_EVENT_TABLE() }; fwknop-gui-1.3-release/rc_export.cpp000066400000000000000000000111661275215015200175770ustar00rootroot00000000000000/* rc_export.cpp * Copyright (C) 2016 Jonathan Bennett * RC export class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "rc_export.h" rc_export::rc_export(const wxString & title, const Config *selectedConfig) : wxDialog(NULL, -1, title, wxDefaultPosition, wxSize(900, 330)) { wxString configBuf = wxT(""); wxPanel *panel = new wxPanel(this, -1); wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL); //wxBoxSizer *hbox = new wxBoxSizer(wxHORIZONTAL); // hbox->Add(okButton, 1); // hbox->Add(copyButton, 1); tc = new wxTextCtrl(panel, -1, wxT(""), wxPoint(15, 80), wxSize(875, 200), wxTE_MULTILINE | wxTE_READONLY); tc->SetFont(wxFont(10, wxFONTFAMILY_TELETYPE, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)); configBuf = wxT("["); configBuf.Append(selectedConfig->NICK_NAME); configBuf.Append(wxT("]")); configBuf.Append(wxT("\nSPA_SERVER ")); configBuf.Append(selectedConfig->SERVER_IP); if (selectedConfig->LEGACY) configBuf.Append(wxT("\nENCRYPTION_MODE legacy")); if (selectedConfig->SERVER_PORT.CmpNoCase(_("random")) == 0) { configBuf.Append(wxT("\nRAND_PORT Y")); } else { configBuf.Append(wxT("\nSPA_SERVER_PORT ")); configBuf.Append(selectedConfig->SERVER_PORT); } configBuf.Append(wxT("\nSPA_SERVER_PROTO ")); configBuf.Append(selectedConfig->PROTOCOL); configBuf.Append(wxT("\nDIGEST_TYPE ")); configBuf.Append(selectedConfig->DIGEST_TYPE); configBuf.Append(wxT("\nHMAC_DIGEST_TYPE ")); configBuf.Append(selectedConfig->HMAC_TYPE); if (!selectedConfig->HMAC.IsEmpty()) { configBuf.Append(wxT("\nUSE_HMAC Y")); if (selectedConfig->HMAC_BASE64) configBuf.Append(wxT("\nHMAC_KEY_BASE64 ")); else configBuf.Append(wxT("\nHMAC_KEY ")); configBuf.Append(selectedConfig->HMAC); } if (!selectedConfig->KEY.IsEmpty()) { if (selectedConfig->KEY_BASE64) configBuf.Append(wxT("\nKEY_BASE64 ")); else configBuf.Append(wxT("\nKEY ")); configBuf.Append(selectedConfig->KEY); } if (selectedConfig->MESS_TYPE.CmpNoCase(_("Server Command")) == 0) { // fwknoprc seems not to have support for server commands } else if (selectedConfig->MESS_TYPE.CmpNoCase(_("Open Port")) == 0) { configBuf.Append(wxT("\nACCESS ")); configBuf.Append(selectedConfig->PORTS); if(!selectedConfig->SERVER_TIMEOUT.IsEmpty()) { configBuf.Append(wxT("\nCLIENT_TIMEOUT ")); configBuf.Append(selectedConfig->SERVER_TIMEOUT); } } else if (selectedConfig->MESS_TYPE.CmpNoCase(_("Nat Access")) == 0) { configBuf.Append(wxT("\nACCESS ")); configBuf.Append(selectedConfig->PORTS); configBuf.Append(wxT("\nNAT_ACCESS ")); configBuf.Append(selectedConfig->NAT_IP); configBuf.Append(wxT(",")); configBuf.Append(selectedConfig->NAT_PORT); if(!selectedConfig->SERVER_TIMEOUT.IsEmpty()) { configBuf.Append(wxT("\nCLIENT_TIMEOUT ")); configBuf.Append(selectedConfig->SERVER_TIMEOUT); } } else if (selectedConfig->MESS_TYPE.CmpNoCase(_("Local Nat Access")) == 0) { configBuf.Append(wxT("\nACCESS ")); configBuf.Append(selectedConfig->PORTS); configBuf.Append(wxT("\nNAT_LOCAL Y")); configBuf.Append(wxT("\nNAT_PORT ")); configBuf.Append(selectedConfig->NAT_PORT); if(!selectedConfig->SERVER_TIMEOUT.IsEmpty()) { configBuf.Append(wxT("\nCLIENT_TIMEOUT ")); configBuf.Append(selectedConfig->SERVER_TIMEOUT); } } tc->ChangeValue(configBuf); vbox->Add(panel, 1); //vbox->Add(hbox, 0, wxALIGN_CENTER | wxTOP | wxBOTTOM, 10); SetSizer(vbox); Centre(); ShowModal(); Destroy(); } fwknop-gui-1.3-release/rc_export.h000066400000000000000000000017361275215015200172460ustar00rootroot00000000000000/* rc_export.h * Copyright (C) 2016 Jonathan Bennett * Header for rc_export.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include "configs.h" class rc_export : public wxDialog { public: rc_export(const wxString& title, const Config *selectedConfig); private: wxTextCtrl *tc; }; fwknop-gui-1.3-release/rc_import.cpp000066400000000000000000000202301275215015200175600ustar00rootroot00000000000000/* rc_import.cpp * Copyright (C) 2016 Jonathan Bennett * RC import class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "rc_import.h" BEGIN_EVENT_TABLE(rc_import, wxDialog) EVT_BUTTON(ID_OKButton, rc_import::OnOK) EVT_LISTBOX(ID_ListBox, rc_import::OnList) EVT_BUTTON(ID_CancelButton, rc_import::OnCancel) END_EVENT_TABLE() rc_import::rc_import(const wxString & title, Config *ourGivenConfig, bool *is_changed) : wxDialog(NULL, -1, title, wxDefaultPosition, wxSize(900, 300)) { ourConfig = ourGivenConfig; InternalIsChanged = is_changed; configs = new wxArrayString; wxString singleLine; wxStandardPathsBase& stdp = wxStandardPaths::Get(); wxFileDialog getRC(this, _("fwknoprc file to import"), stdp.GetDocumentsDir(), wxT(".fwknoprc")); if (getRC.ShowModal() == wxID_CANCEL){ Destroy(); return; } filename = getRC.GetPath(); if (!rcFile.Open(filename)) { wxMessageBox(_("Could not open file")); Destroy(); return; } rcFile.GoToLine(0); while(!rcFile.Eof()) { singleLine = rcFile.GetNextLine(); singleLine.Trim(0); singleLine.Trim(1); if (singleLine.StartsWith(wxT("#")) || singleLine.IsEmpty()) continue; if (singleLine.StartsWith(wxT("[")) && singleLine.EndsWith(wxT("]"))){ singleLine.RemoveLast(); singleLine.Remove(0, 1); if (singleLine.CmpNoCase(wxT("default")) != 0) configs->Add(singleLine); } } if (configs->GetCount() == 0){ wxMessageBox(_("No stanzas in file")); Destroy(); return; } //if configs are blank, then bail //open file, find the stanza names, let the user select which stanza/s to import (first iteration wxPanel *panel = new wxPanel(this, -1); wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL); wxBoxSizer *hbox = new wxBoxSizer(wxHORIZONTAL); wxButton *okButton = new wxButton(this, ID_OKButton, wxT("Ok"), wxDefaultPosition, wxSize(70, 30)); wxButton *cancelButton = new wxButton(this, ID_CancelButton, wxT("Cancel"), wxDefaultPosition, wxSize(70, 30)); hbox->Add(okButton, 1); hbox->Add(cancelButton, 1); listbox = new wxListBox(this, ID_ListBox, wxPoint(10, 10), wxSize(200, 200)); listbox->InsertItems(*configs, 0); tc = new wxTextCtrl(panel, -1, wxT(""), wxPoint(220, 10), wxSize(650, 200), wxTE_MULTILINE | wxTE_READONLY); tc->SetFont(wxFont(10, wxFONTFAMILY_TELETYPE, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)); vbox->Add(panel, 1); vbox->Add(hbox, 0, wxALIGN_CENTER | wxTOP | wxBOTTOM, 10); SetSizer(vbox); Centre(); ShowModal(); Destroy(); } void rc_import::OnCancel(wxCommandEvent &event) { Destroy(); } void rc_import::OnOK(wxCommandEvent &event) { wxString singleLine; //ourConfig = new Config; ourConfig->defaultConfig(); rcFile.GoToLine(0); while(!rcFile.Eof()) { singleLine = rcFile.GetNextLine(); singleLine.Trim(0); singleLine.Trim(1); if (singleLine.StartsWith(wxT("#")) || singleLine.IsEmpty()) continue; if (singleLine.StartsWith(wxT("[")) && singleLine.EndsWith(wxT("]"))){ singleLine.RemoveLast(); singleLine.Remove(0, 1); if (singleLine.CmpNoCase(listbox->GetString(listbox->GetSelection())) == 0) break; } } ourConfig->NICK_NAME = singleLine; ourConfig->MESS_TYPE = wxT(""); //rc_Pair = new wxArrayString; while(!rcFile.Eof()) { singleLine = rcFile.GetNextLine(); singleLine.Trim(0); singleLine.Trim(1); if (singleLine.StartsWith(wxT("#")) || singleLine.IsEmpty()) continue; if (singleLine.StartsWith(wxT("[")) && singleLine.EndsWith(wxT("]"))){ break; //once we hit the next stanza, we're done } rc_Pair = wxStringTokenize(singleLine);//buse wxStringTokenize if (rc_Pair[0].CmpNoCase(wxT("SPA_SERVER")) == 0) ourConfig->SERVER_IP = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("ENCRYPTION_MODE")) == 0 && rc_Pair[1].CmpNoCase(wxT("legacy")) == 0) ourConfig->LEGACY = true; else if (rc_Pair[0].CmpNoCase(wxT("RAND_PORT")) == 0 && rc_Pair[1].CmpNoCase(wxT("Y")) == 0) ourConfig->SERVER_PORT = wxT("random"); else if (rc_Pair[0].CmpNoCase(wxT("SPA_SERVER_PORT")) == 0) ourConfig->SERVER_PORT = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("SPA_SERVER_PROTO")) == 0) ourConfig->PROTOCOL = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("DIGEST_TYPE")) == 0) ourConfig->DIGEST_TYPE = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("HMAC_DIGEST_TYPE")) == 0) ourConfig->HMAC_TYPE = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("HMAC_KEY_BASE64")) == 0){ ourConfig->HMAC = rc_Pair[1]; ourConfig->HMAC_BASE64 = true; } else if (rc_Pair[0].CmpNoCase(wxT("HMAC_KEY")) == 0){ ourConfig->HMAC = rc_Pair[1]; ourConfig->HMAC_BASE64 = false; } else if (rc_Pair[0].CmpNoCase(wxT("KEY_BASE64")) == 0){ ourConfig->KEY = rc_Pair[1]; ourConfig->KEY_BASE64 = true; } else if (rc_Pair[0].CmpNoCase(wxT("KEY")) == 0){ ourConfig->KEY = rc_Pair[1]; ourConfig->KEY_BASE64 = false; } else if (rc_Pair[0].CmpNoCase(wxT("CLIENT_TIMEOUT")) == 0) ourConfig->SERVER_TIMEOUT = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("ACCESS")) == 0) ourConfig->PORTS = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("NAT_LOCAL")) == 0 && rc_Pair[1].CmpNoCase(wxT("Y")) == 0) ourConfig->MESS_TYPE = wxT("Local Nat Access"); else if (rc_Pair[0].CmpNoCase(wxT("NAT_PORT")) == 0) ourConfig->NAT_PORT = rc_Pair[1]; else if (rc_Pair[0].CmpNoCase(wxT("NAT_ACCESS")) == 0) { ourConfig->NAT_IP = rc_Pair[1].BeforeFirst(','); ourConfig->NAT_PORT = rc_Pair[1].AfterLast(','); } if (ourConfig->MESS_TYPE.IsEmpty()) ourConfig->MESS_TYPE = wxT("Open Port"); } //itirate through file to find stanza start, and specified options //fill config //save wxMessageBox(wxT("Import Successful, Press Save to confirm")); *InternalIsChanged = true; Destroy(); } void rc_import::OnList(wxCommandEvent &event) { wxString singleLine; preview = wxT("["); rcFile.GoToLine(0); while(!rcFile.Eof()) //this loop puts our file cursor at the first line of the config we are importing { singleLine = rcFile.GetNextLine(); singleLine.Trim(0); singleLine.Trim(1); if (singleLine.StartsWith(wxT("#")) || singleLine.IsEmpty()) continue; if (singleLine.StartsWith(wxT("[")) && singleLine.EndsWith(wxT("]"))){ singleLine.RemoveLast(); singleLine.Remove(0, 1); if (singleLine.CmpNoCase(listbox->GetString(listbox->GetSelection())) == 0) break; } } preview.Append(singleLine); preview.Append(wxT("]\n")); while(!rcFile.Eof()) //This loop dumps that stanza to the preview { singleLine = rcFile.GetNextLine(); if (singleLine.Find(wxT("[")) != wxNOT_FOUND && singleLine.Find(wxT("]")) != wxNOT_FOUND ) break; //once we hit the next stanza, we're done preview.Append(singleLine); preview.Append(wxT("\n")); } tc->ChangeValue(preview); } fwknop-gui-1.3-release/rc_import.h000066400000000000000000000027661275215015200172430ustar00rootroot00000000000000/* rc_import.h * Copyright (C) 2016 Jonathan Bennett * Header for rc_import.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include "configs.h" #include class rc_import : public wxDialog { public: rc_import(const wxString& title, Config *ourGivenConfig, bool *is_changed); private: wxListBox *listbox; wxArrayString *configs; wxArrayString rc_Pair; wxString filename; wxTextFile rcFile; Config *ourConfig; wxTextCtrl *tc; wxString preview; bool *InternalIsChanged; enum { ID_OKButton = 1200, ID_ListBox, ID_CancelButton }; void OnOK(wxCommandEvent& event); void OnList(wxCommandEvent& event); void OnCancel(wxCommandEvent& event); DECLARE_EVENT_TABLE() }; fwknop-gui-1.3-release/timer.cpp000066400000000000000000000062011275215015200167040ustar00rootroot00000000000000/* timer.cpp * Copyright (C) 2016 Jonathan Bennett * Countdown timer class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "timer.h" BEGIN_EVENT_TABLE(timerDialog, wxDialog) EVT_CLOSE(timerDialog::onClose) EVT_TIMER(ID_SECOND_TIMER, timerDialog::tickTock) END_EVENT_TABLE() timerDialog::timerDialog(const wxString & title, Config *selectedConfig, wxIPV4address *serverAddr, gpgme_wrapper *ourGPG, bool debug) : wxDialog(NULL, -1, title, wxDefaultPosition, wxSize(250, 200)) { ourDebug = debug; gpgEngine = ourGPG->gpgEngine; gpgHomeFolder = ourGPG->gpgHomeFolder; ourConfig = new Config (*selectedConfig); //Need to copy the whole object for the timer ourAddr = *serverAddr; time_left = wxAtoi(ourConfig->SERVER_TIMEOUT); wxFont* font = new wxFont(); //wxPanel *panel = new wxPanel(this, -1); wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL); main_timer = new wxStopWatch(); main_timer->Start(); second_timer = new wxTimer(this, ID_SECOND_TIMER); second_timer->Start(1000); timerText = new wxStaticText(this,wxID_ANY,wxEmptyString, wxPoint(10,10), wxSize(100, 100), wxALIGN_CENTRE_HORIZONTAL); font->SetPointSize(50); timerText->SetFont(*font); timerText->SetLabel(ourConfig->SERVER_TIMEOUT); wxStaticText * descText = new wxStaticText(this,wxID_ANY, _("The SPA request will timeout in:"), wxPoint(10,10), wxSize(200, 40), wxALIGN_CENTER_HORIZONTAL); vbox->Add(descText, 0, wxALIGN_CENTER_HORIZONTAL); vbox->Add(timerText, 0, wxALIGN_CENTER_HORIZONTAL); SetSizer(vbox); Centre(); Show(); } void timerDialog::tickTock(wxTimerEvent &event) { timerText->SetLabel(wxString::Format(wxT("%ld"), time_left - (main_timer->Time()/1000))); if (time_left - (main_timer->Time()/1000) < 1) { second_timer->Stop(); this->EndDialog(wxID_OK); } if (time_left - (main_timer->Time()/1000) < 11 && ourConfig->KEEP_OPEN) { //ourConfig->gen_SPA(_(""), ourLocalGPG); if (ourConfig->gen_SPA(_(""), gpgEngine, gpgHomeFolder, ourDebug).CmpNoCase(_("Success")) == 0) { if(ourConfig->send_SPA(&ourAddr).CmpNoCase(_("Knock sent successfully.")) == 0) { main_timer->Start(); } } } } void timerDialog::onClose(wxCloseEvent& event) { second_timer->Stop(); delete second_timer; delete main_timer; delete timerText; Destroy(); } //Start with the time specified //when we hit 10 seconds, resend if that option is set fwknop-gui-1.3-release/timer.h000066400000000000000000000026101275215015200163510ustar00rootroot00000000000000/* timer.h * Copyright (C) 2016 Jonathan Bennett * Header for timer.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include "configs.h" class timerDialog : public wxDialog { public: timerDialog(const wxString& title, Config *selectedConfig, wxIPV4address *serverAddr, gpgme_wrapper *ourGPG, bool debug); private: bool ourDebug; wxTextCtrl *tc; int time_left; wxStaticText *timerText; wxStopWatch *main_timer; wxTimer *second_timer; Config *ourConfig; wxIPV4address ourAddr; //gpgme_wrapper *ourLocalGPG; wxString gpgEngine; wxString gpgHomeFolder; void onClose(wxCloseEvent& event); enum { ID_SECOND_TIMER }; void tickTock(wxTimerEvent& event); DECLARE_EVENT_TABLE() }; fwknop-gui-1.3-release/wizard.cpp000066400000000000000000000101561275215015200170700ustar00rootroot00000000000000/* wizard.cpp * Copyright (C) 2016 Jonathan Bennett * Access.conf wizard class * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "wizard.h" BEGIN_EVENT_TABLE(wizardDialog, wxDialog) EVT_BUTTON(ID_OKButton, wizardDialog::OnOK) EVT_BUTTON(ID_CopyButton, wizardDialog::OnCopy) EVT_CHECKBOX(ID_CMD_CHK, wizardDialog::OnUpdate) EVT_CHECKBOX(ID_SRC_CHK, wizardDialog::OnUpdate) EVT_TEXT(ID_KEY_TXT, wizardDialog::OnUpdate) END_EVENT_TABLE() wizardDialog::wizardDialog(const wxString & title) : wxDialog(NULL, -1, title, wxDefaultPosition, wxSize(900, 360)) { tmp_config = new Config; fko_key_gen(generatedKey, FKO_DEFAULT_KEY_LEN, generatedHMAC, FKO_DEFAULT_HMAC_KEY_LEN, FKO_DEFAULT_HMAC_MODE); wxPanel *panel = new wxPanel(this, -1); wxBoxSizer *vbox = new wxBoxSizer(wxVERTICAL); wxBoxSizer *hbox = new wxBoxSizer(wxHORIZONTAL); new wxStaticText(panel, -1, wxT("Enter text to use as key, or leave blank to use the generated key."), wxPoint(15, 5)); key_txt = new wxTextCtrl(panel, ID_KEY_TXT, wxT(""), wxPoint(15, 30)); ChkAllowCmd = new wxCheckBox(panel, ID_CMD_CHK, wxT("Allow Command Message"), wxPoint(15, 70)); ChkReqSrc = new wxCheckBox(panel, ID_SRC_CHK, wxT("Require Source Address"), wxPoint(15, 100)); ChkReqSrc->SetValue(true); tc = new wxTextCtrl(panel, -1, wxT(""), wxPoint(15, 135), wxSize(875, 225), wxTE_MULTILINE | wxTE_READONLY); wxButton *okButton = new wxButton(this, ID_OKButton, wxT("Ok"), wxDefaultPosition, wxSize(70, 30)); wxButton *copyButton = new wxButton(this, ID_CopyButton, wxT("Copy to Clipboard"), wxDefaultPosition, wxSize(170, 30)); hbox->Add(okButton, 1); hbox->Add(copyButton, 1); vbox->Add(panel, 1); vbox->Add(hbox, 0, wxALIGN_CENTER | wxTOP | wxBOTTOM, 10); SetSizer(vbox); Centre(); wxCommandEvent *initEvent = new wxCommandEvent(wxEVT_COMMAND_CHOICE_SELECTED, ID_KEY_TXT); OnUpdate(*initEvent); ShowModal(); Destroy(); } void wizardDialog::OnUpdate(wxCommandEvent &event) { if (key_txt->GetLineText(0).IsEmpty()){ keyString = _("KEY_BASE64 "); keyString.Append(wxString::FromAscii(generatedKey)); keyString.Append(_("\n")); } else { keyString = _("KEY "); keyString.Append(key_txt->GetLineText(0)); keyString.Append(_("\n")); } access_conf = _("SOURCE ANY\n"); access_conf.Append(keyString); hmacString = _("HMAC_KEY_BASE64 "); hmacString.Append(wxString::FromAscii(generatedHMAC)); hmacString.Append(_("\n")); access_conf.Append(hmacString); if (ChkAllowCmd->GetValue()) { access_conf.Append(_("ENABLE_CMD_EXEC ")); access_conf.Append(_("Y\n")); } if (ChkReqSrc->GetValue()) { access_conf.Append(_("REQUIRE_SOURCE_ADDRESS ")); access_conf.Append(_("Y\n")); } tc->ChangeValue(access_conf); } void wizardDialog::OnCopy(wxCommandEvent &event) { if (wxTheClipboard->Open()) { wxTheClipboard->SetData( new wxTextDataObject(access_conf) ); wxTheClipboard->Close(); } } void wizardDialog::OnOK(wxCommandEvent &event) { if (key_txt->GetLineText(0).IsEmpty()){ tmp_config->KEY = wxString::FromAscii(generatedKey); tmp_config->KEY_BASE64 = true; } else { tmp_config->KEY = key_txt->GetLineText(0); tmp_config->KEY_BASE64 = false; } tmp_config->HMAC = wxString::FromAscii(generatedHMAC); EndModal( wxID_OK); } fwknop-gui-1.3-release/wizard.h000066400000000000000000000030771275215015200165410ustar00rootroot00000000000000/* wizard.h * Copyright (C) 2016 Jonathan Bennett * Header for wizard.cpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include "configs.h" #define MAX_KEY_LEN 128 #define MAX_B64_KEY_LEN 180 class wizardDialog : public wxDialog { public: wizardDialog(const wxString& title); Config *tmp_config; private: wxTextCtrl *key_txt; wxCheckBox *ChkAllowCmd; wxCheckBox *ChkReqSrc; wxString keyString; char generatedKey[MAX_B64_KEY_LEN+1]; char generatedHMAC[MAX_B64_KEY_LEN+1]; wxString access_conf; wxString hmacString; wxTextCtrl *tc; enum { ID_OKButton = 1100, ID_CopyButton, ID_KEY_TXT, ID_CMD_CHK, ID_SRC_CHK }; void OnUpdate(wxCommandEvent& event); void OnOK(wxCommandEvent& event); void OnCopy(wxCommandEvent& event); DECLARE_EVENT_TABLE() };