pax_global_header00006660000000000000000000000064143573036210014516gustar00rootroot0000000000000052 comment=f3d5dd18e22b857a1166bc44bc17275026ddb8f7 peg-e-1.3.2/000077500000000000000000000000001435730362100125165ustar00rootroot00000000000000peg-e-1.3.2/CMakeLists.txt000066400000000000000000000070611435730362100152620ustar00rootroot00000000000000# SPDX-FileCopyrightText: 2021-2023 Graeme Gott # # SPDX-License-Identifier: GPL-3.0-or-later cmake_minimum_required(VERSION 3.16) # Configure project project(peg-e VERSION 1.3.2 LANGUAGES CXX) set(project_copyright "2009-2023 Graeme Gott") set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) find_package(Qt6 REQUIRED COMPONENTS Core Gui LinguistTools Widgets) include(GNUInstallDirs) add_compile_definitions( QT_NO_KEYWORDS $<$:QT_STRICT_ITERATORS> $<$:QT_NO_NARROWING_CONVERSIONS_IN_CONNECT> $<$:QT_DISABLE_DEPRECATED_BEFORE=0x060400> ) # Version number include(cmake/AddVersionCompileDefinition.cmake) add_version_compile_definition(src/main.cpp VERSIONSTR) # Create translations file(GLOB translations_SRCS translations/*.ts) qt6_add_translation(translations_QM ${translations_SRCS}) add_custom_target(update_translations COMMAND Qt6::lupdate -no-obsolete -locations none src -ts ${translations_SRCS} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} VERBATIM ) # Create program qt6_add_executable(peg-e src/board.cpp src/hole.cpp src/locale_dialog.cpp src/main.cpp src/movement.cpp src/peg.cpp src/puzzle.cpp src/window.cpp ${translations_QM} ) target_link_libraries(peg-e PRIVATE Qt6::Core Qt6::Gui Qt6::Widgets ) # Optimize build option(ENABLE_LINK_TIME_OPTIMIZATION "Enable link time optimization" OFF) if(ENABLE_LINK_TIME_OPTIMIZATION) include(CheckIPOSupported) check_ipo_supported(RESULT result) if(result) set_target_properties(peg-e PROPERTIES INTERPROCEDURAL_OPTIMIZATION TRUE) endif() endif() option(ENABLE_STRIP "Enable automatic stripping of builds" OFF) if(ENABLE_STRIP) add_custom_command(TARGET peg-e POST_BUILD COMMAND ${CMAKE_STRIP} $ ) endif() # Install if(APPLE) set(datadir "../Resources") set_target_properties(peg-e PROPERTIES OUTPUT_NAME Peg-E MACOSX_BUNDLE TRUE MACOSX_BUNDLE_INFO_PLIST ${CMAKE_SOURCE_DIR}/mac/Info.plist.in ) include(cmake/BundleResources.cmake) bundle_data(peg-e ${CMAKE_SOURCE_DIR}/icons/peg-e.icns Resources) bundle_data(peg-e ${CMAKE_SOURCE_DIR}/icons/oxygen/hicolor Resources/icons) bundle_translations(peg-e "${translations_QM}") elseif(WIN32) set(datadir ".") # Use Qt6 macro until CMake provides something # https://bugreports.qt.io/browse/QTBUG-87618 set_target_properties(peg-e PROPERTIES OUTPUT_NAME Peg-E WIN32_EXECUTABLE TRUE QT_TARGET_VERSION "${PROJECT_VERSION}" QT_TARGET_COMPANY_NAME "Graeme Gott" QT_TARGET_DESCRIPTION "Peg elimination game" QT_TARGET_COPYRIGHT "\\xA9 ${project_copyright}" QT_TARGET_PRODUCT_NAME "Peg-E" QT_TARGET_RC_ICONS ${CMAKE_SOURCE_DIR}/icons/peg-e.ico ) _qt_internal_generate_win32_rc_file(peg-e) else() file(RELATIVE_PATH datadir ${CMAKE_INSTALL_FULL_BINDIR} ${CMAKE_INSTALL_FULL_DATADIR}/peg-e) target_sources(peg-e PRIVATE icons/icon.qrc) install(TARGETS peg-e RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES ${translations_QM} DESTINATION ${CMAKE_INSTALL_DATADIR}/peg-e/translations) install(FILES doc/peg-e.6 DESTINATION ${CMAKE_INSTALL_MANDIR}/man6 COMPONENT doc) install(DIRECTORY icons/hicolor DESTINATION ${CMAKE_INSTALL_DATADIR}/icons) install(DIRECTORY icons/oxygen/hicolor DESTINATION ${CMAKE_INSTALL_DATADIR}/peg-e/icons) install(FILES icons/peg-e.appdata.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo) install(FILES icons/peg-e.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications) endif() set_property(SOURCE src/main.cpp APPEND PROPERTY COMPILE_DEFINITIONS PEGE_DATADIR="${datadir}") peg-e-1.3.2/COPYING000066400000000000000000001045131435730362100135550ustar00rootroot00000000000000 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. Copyright (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, 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: Copyright (C) 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 . peg-e-1.3.2/CREDITS000066400000000000000000000007561435730362100135460ustar00rootroot00000000000000Developers ---------- * Graeme Gott Translators ----------- Czech: * Matyáš Elicer Dutch: * Elbert Pol French: * Stéphane Aulery German: * Daniel Meiß-Wilhelm Greek: * Wasilis Mandratzis Lithuanian: * Moo Malay: * abuyop Polish: * Michał Trzebiatowski Romanian: * Jaff (Oprea Nicolae) Russian: * sorrymak Spanish: * Edgar Carballo * Francisco Zamorano Turkish: * Cüneyt Oktay Icons ----- * Oxygen, http://www.oxygen-icons.org/ Libraries --------- * Qt, http://www.qt.io/ peg-e-1.3.2/ChangeLog000066400000000000000000000037411435730362100142750ustar00rootroot000000000000001.3.2 ----- * Added portable mode. * Improved Linux deployment. * Replaced deprecated code. * Translation updates: Russian. 1.3.1 ----- * Switched to Qt 6. * Translation updates: Esperanto, French. 1.3.0 ----- * Added support for Qt 6. * Refactored code. * Removed XPM icon. * Translation updates: Esperanto, Telugu. 1.2.8 ----- * FIXED: Did not load locales with underscores. * Improved Windows deployment. 1.2.7 ----- * FIXED: Was not loading KDE icon theme. * FIXED: Window icon didn't work in Wayland. * Improved loading locales. * Improved Windows deployment. * Replaced deprecated code. 1.2.6 ----- * FIXED: Automatic high DPI support. 1.2.5 ----- * Replaced deprecated code. * Extra warnings only shown in debug build. * Improved Linux deployment. * Improved macOS deployment. * Improved Windows deployment. * Translation updates: Chinese, Portuguese. 1.2.4 ----- * FIXED: Could not compile with Qt 5.10. 1.2.3 ----- * FIXED: Did not always install translations in Linux. * Translation updates: Chinese. 1.2.2 ----- * Generate binary translations at build time. * FIXED: Was not properly loading Qt translations. * FIXED: Success message was not high DPI. * Translation updates: Dutch, German, Greek, Hebrew, Lithuanian, Polish. 1.2.1 ----- * FIXED: Application layout did not respect RTL languages. * FIXED: All new games used the same seed in Windows. 1.2.0 ----- * Added support for high DPI displays. * Switched to C++11 random classes. * Removed support for Qt 4. * Translation updates: Czech, Dutch, German, Greek, Hebrew, Lithuanian, Malay, Polish, Romanian, Russian, Spanish, Turkish. 1.1.2 ----- * Added support for Qt 5. * Improved Linux desktop integration. * Translation updates: Romanian. 1.1.1.1 ------- * Fixed not loading translated board messages. 1.1.1 ----- * Fixed restarting not clearing saved moves. * Fixed background sometimes misdrawn. * Translation updates: Dutch, Hebrew. 1.1.0 ----- * Added changing the peg color. * Added new puzzle algorithms. * Added a toolbar. peg-e-1.3.2/INSTALL000066400000000000000000000057171435730362100135610ustar00rootroot00000000000000Installation ============ Open a terminal and browse into the extracted folder. Linux: 1. `cmake -B build -S . -DCMAKE_INSTALL_PREFIX=/usr' to create a location for the build and then configure the program. There are more options you can pass to CMake, see below for details. 2. `cmake --build build' to compile the program. 3. `cmake --install build' to install the program. This has to be done with root privileges if installing to system directories, but the rest of the build should be done with regular user privileges. For packaging you can optionally install the program into a temporary directory by setting the DESTDIR environment variable. For example, `DESTDIR="alternate/directory" cmake --install build' will prepend 'alternate/directory' before all installation names. macOS: 1. `cmake -B build -S .' to create a location for the build and then configure the program. There are more options you can pass to CMake, see below for details. 2. `cmake --build build' to compile the program. 3. Run `mac_deploy.sh' from inside the build directory to create a disk image of the program. Windows: 1. `cmake -B ..\build -S .' to create a location for the build and then configure the program. There are more options you can pass to CMake, see below for details. 2. `cmake --build ..\build' to compile the program. 3. Run `windows_deploy.bat' from inside the build directory to create an installer of the program. Note that you must have the NSIS executable from nsis.sourceforge.io and the 7z executable from 7-zip.org in your %PATH% for this to work. Release Builds ============== CMake does not specify any compiler optimizations by default; this is useful if you want to inherit CFLAGS and CXXFLAGS from the environment. You may want to add "-DCMAKE_BUILD_TYPE=Release" during configuration to get an optimized build. Debug Builds ============ You should create different directories for each type of build: 1. `cmake -B debug -S . -DCMAKE_BUILD_TYPE=Debug' to configure the sources. 2. `cmake --build debug' to compile the program. More CMake Options ================== -DCMAKE_BUILD_TYPE= Choose the type of build. Possible values are: 'None' 'Debug' 'Release' 'RelWithDebInfo' 'MinSizeRel' -DENABLE_LINK_TIME_OPTIMIZATION=[OFF] Reduce size by optimizing entire program at link time. -DENABLE_STRIP=[OFF] Reduce size by removing symbols. Linux CMake Options =================== -DCMAKE_INSTALL_PREFIX= Choose the base location where the program is installed (defaults to /usr/local). -DCMAKE_INSTALL_BINDIR= Choose where binaries are installed (defaults to $CMAKE_INSTALL_PREFIX/bin). -DCMAKE_INSTALL_DATADIR= Choose where the data files are installed (defaults to $CMAKE_INSTALL_PREFIX/share). -DCMAKE_INSTALL_MANDIR= Choose where manual pages are installed (defaults to $CMAKE_INSTALL_DATADIR/man). peg-e-1.3.2/README000066400000000000000000000005141435730362100133760ustar00rootroot00000000000000About ===== Peg-E is a peg solitaire game in which you jump over pieces in order to remove them from the board, ultimately trying to eliminate all but one. The boards are randomly generated, with 100 levels of difficulty. The game auto-saves, and has undo-redo capability. Pieces can move horizontally, vertically, and diagonally. peg-e-1.3.2/cmake/000077500000000000000000000000001435730362100135765ustar00rootroot00000000000000peg-e-1.3.2/cmake/AddVersionCompileDefinition.cmake000066400000000000000000000024671435730362100221710ustar00rootroot00000000000000# SPDX-FileCopyrightText: 2022 Graeme Gott # # SPDX-License-Identifier: GPL-3.0-or-later function(add_version_compile_definition versionstr_file versionstr_def) find_package(Git QUIET) if(Git_FOUND) # Find git repository execute_process( COMMAND ${GIT_EXECUTABLE} rev-parse --absolute-git-dir WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} RESULT_VARIABLE git_dir_result OUTPUT_VARIABLE git_dir ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE ) if (git_dir_result EQUAL 0) # Find version number from git execute_process( COMMAND ${GIT_EXECUTABLE} describe --tags --match "v*" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} OUTPUT_VARIABLE versionstr ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE ) string(REGEX REPLACE "^v" "" versionstr "${versionstr}") # Rerun CMake when git repository changes if (EXISTS ${git_dir}/logs/HEAD) set_property( DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${git_dir}/logs/HEAD ) endif() endif() endif() # Fall back to project's VERSION if ("${versionstr}" STREQUAL "") set(versionstr ${PROJECT_VERSION}) endif() # Pass version as compile definition to file set_property( SOURCE ${versionstr_file} APPEND PROPERTY COMPILE_DEFINITIONS ${versionstr_def}="${versionstr}" ) endfunction() peg-e-1.3.2/cmake/BundleResources.cmake000066400000000000000000000027731435730362100177150ustar00rootroot00000000000000# SPDX-FileCopyrightText: 2022 Graeme Gott # # SPDX-License-Identifier: GPL-3.0-or-later # Add files to a macOS bundle. function(bundle_data target source destination) if(IS_DIRECTORY ${source}) # Recursively find files under source file(GLOB_RECURSE files RELATIVE ${source} ${source}/*) set(parent ${source}) else() # Handle single file get_filename_component(files ${source} NAME) get_filename_component(parent ${source} DIRECTORY) endif() # Set each file to be located under destination foreach(resource ${files}) get_filename_component(path ${resource} DIRECTORY) set_property( SOURCE ${parent}/${resource} PROPERTY MACOSX_PACKAGE_LOCATION ${destination}/${path} ) endforeach() # Make target depend on resources list(TRANSFORM files PREPEND "${parent}/") target_sources(${target} PRIVATE ${files}) endfunction() # Add translations to a macOS bundle. function(bundle_translations target translations) foreach(file ${translations}) # Set each translation to be located under Resources set_property( SOURCE ${file} PROPERTY MACOSX_PACKAGE_LOCATION Resources/translations ) # Inform macOS about translation for native dialogs get_filename_component(resource ${file} NAME) string(REGEX REPLACE "[^_]*_([^\\.]*)\\..*" "\\1.lproj" lang ${resource}) add_custom_command( TARGET ${target} POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E make_directory $/Resources/${lang} ) endforeach() endfunction() peg-e-1.3.2/doc/000077500000000000000000000000001435730362100132635ustar00rootroot00000000000000peg-e-1.3.2/doc/Doxyfile000066400000000000000000002367101435730362100150020ustar00rootroot00000000000000# Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = Peg-E # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "Peg elimination game" # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, # and language is one of the parsers supported by doxygen: IDL, Java, # Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. For instance to make doxygen treat .inc files as Fortran files (default # is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented classes, # or namespaces to their corresponding documentation. Such a link can be # prevented in individual cases by by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen replace the get and set methods by a property in # the documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields will be shown inline in the documentation # of the scope in which they are defined (i.e. file, namespace, or group # documentation), provided this scope is documented. If set to NO (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given # their name and scope. Since this can be an expensive process and often the # same symbol appear multiple times in the code, doxygen keeps a cache of # pre-resolved symbols. If the cache is too small doxygen will become slower. # If the cache is too large, memory is wasted. The cache size is given by this # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = YES # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.d \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.idl \ *.odl \ *.cs \ *.php \ *.php3 \ *.inc \ *.m \ *.markdown \ *.md \ *.mm \ *.dox \ *.py \ *.f90 \ *.f \ *.for \ *.vhd \ *.vhdl # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page (index.html). # This can be useful if you have a project on for instance GitHub and want reuse # the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely # identify the documentation publisher. This should be a reverse domain-name # style string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) that doxygen will group on one line in the generated HTML # documentation. Note that a value of 0 will completely suppress the enum # values from appearing in the overview section. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to # the MathJax Content Delivery Network so you can quickly see the result without # installing MathJax. However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = NO # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES peg-e-1.3.2/doc/peg-e.6000066400000000000000000000020331435730362100143450ustar00rootroot00000000000000.TH PEG-E 6 "April 2021" "Peg-E 1.2.8" "Games Manual" .SH "NAME" peg\-e \- peg elimination solitaire game .SH "SYNOPSIS" .B peg\-e [options] .SH "DESCRIPTION" Peg-E is a peg solitaire game in which you jump over pieces in order to remove them from the board, ultimately trying to eliminate all but one. The boards are randomly generated, with 100 levels of difficulty. The game auto-saves, and has undo-redo capability. Pieces can move horizontally, vertically, and diagonally. .SH "OPTIONS" .TP .BR \-h ", " \-\-help Displays help on commandline options. .TP .B \-\-help-all Displays help including Qt specific options. .TP .BR \-v ", " \-\-version Displays version information. .SH "SEE ALSO" .BR qt5options (7) .SH "REPORTING BUGS" Report bugs to . .SH "COPYRIGHT" Copyright \(co 2009-2021 Graeme Gott .PP Free use of this software is granted under the terms of the GNU General Public License version 3 (GPLv3). There is NO WARRANTY, to the extent permitted by law. .SH "AUTHOR" Graeme Gott . peg-e-1.3.2/icons/000077500000000000000000000000001435730362100136315ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/000077500000000000000000000000001435730362100152705ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/1024x1024/000077500000000000000000000000001435730362100163555ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/1024x1024/apps/000077500000000000000000000000001435730362100173205ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/1024x1024/apps/peg-e.png000066400000000000000000002474051435730362100210370ustar00rootroot00000000000000PNG  IHDR+sBIT|d pHYs'G'G>tEXtSoftwarewww.inkscape.org<tEXtAuthorGraeme GotttEXtCreation Time2013-02-063N@IDATxy]uaFV IPTTpA.>?>اUVTZE\@lEeAd%;ܳ|Ͻ3̝s=swsZI$Ij$I$YH$I$ I$Id I$I,$I$I$I$I$I$I$I$@$I$ I$Id I$I,$I$I$I$I$I$I$I$@$I$YH$Id I$I,$I$I$I$I$I$I$I$@$I$YH$I$ I$I,,$I$I$I$I$I$@$I$YH$I$ I$Id I$I,$I$I$I$I$I$@$I$YH$I$ I$Id I$I,$I$I$I$I$I$@$I$YH$I$ I$Id I$I,$I$I$I$I$I$I$I$YXH$Id I$I,$I$I$I$I$I$I$I$@$I$YH$I$ I$I,$I$I$I$I$I$I$I$@c c?_#͗ / ぐ&|I,$I-3E ŔVd I$R2 )-W6We+OQȾ!c/p~m!M!I$>,}gT@u^_!i$ IRO[h.=۲(m y I$OXD {KKÞ6p;p=p}H{}K,$IyBraaBk;X3:7? iW/I$пQ3\s!a?n3 B{[]ϸ 8;@d I:(7p*?0W$YHRs9ʟ[/+d- L9;`ߵ{}wI$^ÁGT' W~8;`I$U3Ox=G@g7(j;}OwMog^ iWQI$sp(ޡ6\svAʃP3;ݐ&}J$)?x5#Arծ`oϲ ĽgC}fBl (IbChUԏY(: 1^g|w$ IR~p#/+Wzkv/B|˶ x ׅ4櫴$YH #WP?>O28£RBDB(4᫷$YH ÀS?r`x&a4ASZ0Bࠟ ̀4X,$IwFNoo(B)MŐ&<$ Ij??/?G |ˁJ ʀ/Wd IkCb~s!aj!*[}7v1ˀgxˀ4qGT,$%$;c ,VydUlʀ%WBs H$U=w/~?_f6طOQ}GSVQpcH>d IU ~FSs/:p- ( ʀn/4y$YHR8l*D*<3^@U,2P;n>+G!Mz|J$gS?v`JSj?w8ڤz#Tg RtGW4Y_I2R?ǿVKo՜U:A٥,O d Iy!䦂CbC+\ poIw1" ppuHI,Oӊ M(ۀoAM)Pv!ʀi'$YHR38R]B%C~\*MB2"`;%&K,$i tCk 肾 *Q ope>Nǖ$YHҡB x_8{dl_j7ԷMYBďB {?~4qW,$ j n-yqALķ+  Es+ i1"@3Ox01_Пa`.,-b-B( (X|\H Ix/cR@\ *_ [H(@Z3$_/-gV[:;5 * 9mV HBxd I|(چ{K3+1 8XH?8$YHR5,_ooS/< ކ|ˁB2 " &?,$:wہ!"xB~-D} Ƚ |ǐ&*@ S /XB\̂˃K+*<+`pE ?4Y@d Iq_-%k}!e2.XY+v%z$ I*'> 0b@A0iV nA!@U ˀ2O86;i'@ cyb Q\@۬\mBlq`I|(T*~^BDPc9 ȵ\&+-@ éO0>4AY/ rG ( iӱ+@kۀ LnN?P\J7ܷmIb` +jHw%YHϱ<2?Eaa߀oAPf)Pb!PX׬(KCd I3O|C> :_Z08c_ߪO伾!YTqV@~ݷ4Y_wIt`!`* ?̂˃%B 2%]' iñ.@R&_i J-(\7طvQs)Њe@f57>$ IOL\BtI?ߦxFCIY4O4^$ I/љp-9NJ>k(va^n(ˀLﯤ>$ IUS?̎>__۷$q. e@ .~}[_N$ IU J)W$ CQC:1l#aİ!C6wC꠫O}AGGtv>uWg@Oo_}ס{ݶ}^vzoߵ;gO}={Z-/|e@7!Mֺ7!@R0_f/+Wcf˜nƏƄ? c1c}C:boO/>ظef'-wE-g k\Jk?pN_?Ù6q$&dđL;f$STأ<6?[w+ }lΚYnNzz9 D~j2E߿xOH|d )|HCCa1cՃ1#q4WIoo`ogcϏmlK*}&=rI +SvELoПqntuv0c(;ǎLͬirHtu8ޞ>}l;Woe,{-|t[c3BlX}Pl{w4Q,@R1@_+ Ni'ɣ]NjDOonW,ڢ,~m,$p3K q9qz؟=gㄙ:Ӂ˃+6qMܿ^ ܿl#( ȯ8_>d#Q,kO v m{HWsǂ94nNnNҥx`b`-˰h2]LO X ?wu,$5^pY?ƣeP_Z LyY8 MdެqN/l0#հ=},^q,]J-s (s64YHd i8p?¡Vc˜a,?'r yμ=bM[LnҮ߱.^ֳaˮ V),P<|BHG$ I /ph:G+;Ϳ=gI,_'r0Ij}e݋qߒ޽72RVd:CX;u~nw Be@xC9%YH?^P"gƍϞ¢Sq)S8a_а/K +6q۽r==]r{, "|[BtJDmA߁1 JM/xC<),:u\,_ҡ/]ͯ~7B 2dtN YHo9Z$ Ծbr}g7oS e(6OݚA9_" i|6_4ؒ,$W_|M0o# ;1s;g_jB=MYX=/32݋f,vǓd 'G pQL"e`$n^xڱ3xi2nԦ6??J~~# ⬀q}&@Rk73 8J?Q'psgp9cD~IO>7߱~?9/*56M!MV8$ I |8W)cF( N;}7n/eRi8&_wHG.&+K:?y^zL?{g,LggZ*QWz{{wkݸ#ǚGP" W iq+YHf?;bj-}Gqٳ8﬙% Iq9/yg~Y8{<55g)Y*Vn'.[WpWoO h|ٿ~+@RmG nMV_f?'Džg1c(CJ+n[sMKxpŦ&+"d2`;&_utxqù9\x\1Z]oڛpKYiE@A7+? igd ? .pF< ûxɢ\x\+ єDYõ7-WswOyPȵ^dh@R9Ҥ(YH\|xAs!]ݿݻ K';fUsxۓ;y&X !M,$ ,/L3tƂcFƗ5|" @Ґ&wH\HoգZswo{Λl 747݋ E]?"ug| &}J 3sJ  guws%<铏6% nUkwoCQ}Z@ llV+|J࿀q8?qp8zdW7 ev{{O?M; (YNr-6fǀd { %`aItS[#0so`/;{6]]cIǏoY׮KypŦ6(b:%`*ǣd k(1|ݔ/?T2'_h#߻~`]*ϣy#.;IH9% G// &cIOy'O1<[4k4rmsY)WR d zCb/|N'Mig5_% kfoo{}"f4Q8d j }`_i'֧N7;32 "߾_c-l}2!@Z1TQ|?X09m4JU^lvG"b@`n%:!MpJR oësGCwwZ5 Zǧd U=_ \tsYS`.}i/%ݎ2P+]ޑEtG^^&;$ xCusđⅼ̙  N {w2x >}ݬ^=gXo`(‟. i瘔,+S G;_l.:oC: [>nTnޞ>a1W|lD E@\dQbK_QC:y'q U}fdP%{||{q ٳ thzywi @5/63}ԿV9]3Mf-ӛY>HJzء-vk~On[~moŝڂK<{d@ưJ7~|?W|z'^xK 4_ $ AU?3[NgC$ˀ6SWMYY`Xl`L & YHE>}XʔlO< Té&6;'~u>;Xv[%@e6U*|4?8$ qpG :7D4љH&nZWݯjmx?_}<7"S*>#/@3׀GQ?Zx,t3֚jHnXm*x\vG2 M_/s_4B2[~vG3\rzWhتJP4J>߮SWɚǶgXTᔀ\&k;C YHY!7;;k xǫOhgUB_ hC{n={{KJd l<۔7ggެטCm"ø$ud/?~W,]%^tM #!Mv;$ ippn?sW.mĐ6p][M`v۷}=}|U P\\dcZG?,?Weߛ;} E<븱 ntôӀ/ s >Û/Βf\,VDzd 5'?^Wgro`]oՆ0+KMfXVRAJOo_M p7Ґ&|,#)gíֽeA0( 8@@eRhG?gm,!LA3tJvOӊDfjʠE.p?nD w8jkWy^{{k7H߫nѳKoЄ~h8idǸOxǥ7`c%ͅhPTCz:Są'ER 47' A MaQ]a۶ZlP68Fx9OE{Wy}vߧƎ]o4כFeYb-Meﮣ P~?Q (E+ vtO\uT,T)+J#ÚUoţ/, i`[ >(YTx~mq}HEHB0Eҕ/yXqλ~?&@*pYHnh {xcF AmBS vY Ea=-F50~LCQ, HbKwS;g(…'ŧ 9mOJ;F\&*@~.1 xu{^>~&m *0$d;92n \>أ4 \Zh.$9-?UH5w))yo‡oRfXqml.xhPT Z>|[N:KǮTȔaH%dS͉2?7f_iӀ ܾ6W%7BKOAof*0kpƱ ~~9Q4g<ܛض DIͼP4(*#N,]b%ס]K\7z3l,?:0(V =֍,N56IN՟eCxp$Vރ(pޯ_y:oI')LnƘa[k2B{ p3s%kxߡhPTEI@ y P 0N%.JPs%]9nV=L+lT_Mq'K$y7hPTM_YaYqڈ^( iÂr>?k=TwZLoG'/Ƅ硦Pk,I|%  j׶ c>~~M4\=Xl$xϤhPTx?uũgNZ>)gEMI)/Fx+;PT5oJk 8g9;S^bif+x2RĿ@Q?Q\r8O\)1J#y%4E׾:˨ I≼R4(J/_`RkӬ߻P8' hstan Yz& }]K_Z_ *w&)I|7 x@smZlkG ŗR/o) }E4rhHոn lڼ&@}lp$swR4(J`:vASvlӡ]K>@XT| ).]cn56֟nLuI'7S4(? `6V=`ߧS[\Ա[(O'X1ZRTn`^3-sYF\s4j}LFr$?=@Q HMmZ Chȗ ~f`h4|_$EGlܭÿ#?ph?ӀY3Ha!E :fv>[Y4&[ '&I\{ E?}V?TDQ#}f宵BeXs~a}ߨKX}KP+ Sh?H;= r[?;?O}7EB?អI@3Fyz!}za&#;Ŀ=@Q4=ۆG^xR_}|oe/l>+Z/|Ex{0J?EahM߹E3e pZze n}X݇X`$ZO)xf[KfԙpQÆZ ~>ES f@ {zq&>4_ ୏'IOEe30(wDw7Y3\6| /$&QJsToO3vD?$I| J N>?:[#x-0OzxLߕʿo2mLxp^=XL% @Q&wscK16?TL(\/FM&sxo$7TEQᅤ}&<@>W C{ۧ鄀H$wN@k$Q#!<2y1&=(1\ )4w0@:+=pi9&UCF s]\1H,8G_Ǔ]J`k)8Dq_&#o_0?uh ȃ 9:];_7"Eo;o/'Feeg,4 08F׀` s=Dywc@:ZYi|ݝ^G4̀}}}cܕвG (Թr9o44t)'ڍ\ couk8#p$)90 +({G.Uva$2_@<>#Dpr@6 g}Za*>pM`$L);;?߾mHt.EAQa3n͐=*cVX)Jbph#q*֮. xH=@xQժe3t뼫'Rk x@?EC 0Vq4Lo1(+?؛am4vEHo}@ 4Ciѿn(au蚅 @DJě0!s02pb Qbɼ7V="YSˀo}+ [IL?/Nޓm )*RbMY{ZP0Ε$]U$?,m{?yk>!y1Ap؎r>C|~G ]Ōy(%_}@x@/=pPբRxi:9@1@(10𴂾ΊRkoWSb9`1$ב(T?mT~$v߭")q=ZB~O4ׇok*o. x'*IL hP50< f/;(j.C# % /9XG{%}i[fր nbll$R4<Pn"\tʁ8nh7;l2S h,v*<xqKDt@Go-쌷q{fi_ DIgxhPyCXEQ7<8`E7g<̀b1xqλ-~Y1~ C%=@[}.1f`4(xmS! i :Ե`O۟j1~,,]x&@0Tx *tN#˃gn SѪ~#/#ye>MΡXFM &?ބ~*6UoL&I_{4E /p;Gw.AKShEu ʋ#x&@XO|=X<{IOg4.$~"@]:.3Cw+ o鵝YnZsQ !*y!+[ GnT Ìy+|⳴@I⥼R4iw߭~#Ъes¿> aB??vȼn7hhZ6oŏ0 ~)&@p$67)T(xdN h?|zuziO<߼‹ BiPE\㊶k.hk֖?OoZ1LWEv$k)T)*o=qڈ^@'2ԏsȊ,5Qj D>aU# G>D(yT1-vTOɋ%<+n/P`$4)fo`>}p~| TTp??("I ~`-MXc&F$:)V^熳>jW [y>ϲ)~ Z3u T] Eõ08P }>O4: י'*(u(FR#&K`Ы<&.$t .k~ ߾`` ,_o+oK5T= 6i0qJ k_߃}o Y!ޞ E^0Tݾ_բ_u:o L+,ᵮo%0S4TF5ױ #{壵p͍P&L^ GI^K|c\5gw_5jOQ4lc67| meVx '06 Ā.{QC!Mx#mprx^4x;CC4IcmQp MWfxPHI♼/S4(<o]?pwl$?|KhM<LST5C('A!brT 3 zo-~vKؙU4 t+2%N\wƾ7#NC$r?_m;gfby8Q}¹ Wcƒ0Eעh|P4(_G|?8d=pչCk@O0Q:*ڈ.m$_4c΀oo^}suA=EGKגR(-~nƒ81+*+pأC ?MAL,WeJIdhH" rZpS¾sshkWلk'@mM@[=H|8P4(R<ਁzU??kT`l,0nM{^缛YVn+|P4(+#s߀yТy%_9v2LҗG>XU$SiТPO@|`_k}Z175 !޻ 0W$ v ʘ0 @|p=S.7 ~Gc@X4"JEњ.нin\x;;qm!I<eC۴jG7;HP&P<94hG`6UoØcæy쟥'J>Ej< T۹#z_[>LD.|pl D.ʨ.hMS8mk-h*ga/#K}w%etVxL4>K(T?KPV!=͛UX_GyNVC@р[ "{50T@iۉ9_kZf`jh$⍛@P'zch 7cB?E3f #@{6DF@>M=O/2VLm?@VyæhP R߹m"tq2g;2~i{@k;0/)Z1,8|}ObLع}m৷ƪ6ZM$4Cʁ/i€>{a^[N¿[xXПoQ@3@ 6Ơ `#]=Wd4IɤU NOڵĵmp qٚ,"xLT\,ER¾~ ZugbͺL .p$& Ej%Kk10.e,,׫)h+- P\(5$cyy I!7֥1x)a&$@hP/ /n?hU N?ЯY0 @r:7#&@M-5{tlfC4nWpI|P41w){dRǦ@pRЖ"x^<ib:H^+.Ok`yh/S{qg ey$Egjp@EE.Uے)?\0RUNc!Ph_O Q>_?K[Vcę-mnJ E"*a:'.<O^M/9 J[d#&@QL\9 ?(bn3C$yBG&^}]O]R/'eZ>5;4"c:H" E:r` E,u4<29Ib /pK?@۞]se\tF>R~_b́N?}{t VO*M_1`#?gjzf@ڿm=HJ!ǖ_P# ~[y_r۲ڭGR .h.R"o[k> 4?C(cZ<L>_X ߐ/6Vv3ˀb&,;$/3UL?KuB|vû##eo#)_Fh[W xj[ 3)$~}T i1ԡxb x42DpwpD-֜TN <9Nw @~a|Vو_V߶v%sU,?}-Rm u pj,m<tϽ.2E ' )uJi3 ]^ lhn;4_&J  "]O32e-GfY@_H'#  e;cGha=<>ei  3@oIM|.op]?|uS+*"\s ҺCy\ESY114+Ei'̈́B{$oka*]_~'m@,;t\l֊V6sk%C7 Mݿf@:S#D%p<kR z6"󊔭O|.,}xz- bq~%X?`[ksMʯp7BN~ }էBBM6M#4;}z/ }H_5 *? wSwhެs/1!t_h|@\({]@9$@Yxk%sI1;5`Z\,Toio*IӽCmM@0uQ&<4 8 'TGJH;x#@ h 6 \pLzr! x_vJ * ! s h^dPε^< oP#K 1^j-bd-[k0٨- l4=Ho30) O;\vAF@B'Sy0le@ ƿױu(Ξ+xIⱼ†h7t_5`FZ}#pk3e_٩߱1eϸ̀Hc4( oa|q9?qߏ؈Rq)v8=<; _b[=[6-I Tv?ܬ=wo {12 _%F‰f=leTЀ bh>܈y}9i$9|„#L5 9?.mC 78_t/2i (1hȫ ٳn߰ţMF#q܆] nc`C<A [7Tv>ChPakKi C*]EKC C}@}6ll-ЍuLP bi#lcm;ks_QM^FzA>Cx#I4(ܐ.m=3~/طxct 8€kNZZSӴxf+w %Up$/IW4([:zT0_g7t_Eok?r4NvEG!QTv@# %FKp.QgNux3,q\6Ώ'IEk\`|z `y_퉃o/ o%Fp%oW76#PڿڊicRHer}mɇ(>Ϡy`> `$,NoݾƬoڵ,GxYq}A2ܕo~|K/gc]-5|(e\n3pچt_fOn-9Bg0F[|@%s 4M#@@ W&/n[j/I< .m W@@λbI}o0C;x.R]g)UxJ~J!`3+@MSF7e_"1x2`ғ Orm Qp=>Ⳃ-1v޾<.PˑZ L~! A{$.8T! .@5b+cfWomH[A|thIpƈ8GOw&6j'pfH`pՀ&~/HÓ4VQt$^g ʿ ΂Wu?,R"Q{ZR]껨+66pXG,>:̈́Z&y~-84^n3n~U3@0$r;s;X e~s{\`UJ|طRBV'Peh6|  6M5s_MB@,خd`3+L@3*oC.g+.8wlhp,Bpl H7PJ_hc@ Zb66F@fESÈZwq Q/qp$7@.h:QQf-A\kJ# C!=o0v㉋98~/&ǷehGي̌w0wZ|+|)I4FroLu}oH욣C٫XvvN83 L@+#@2^*6&ϢM=~恎,?Izo08uxwޡY~,XT鱁}(4&f$[lo p QS߄ `c?9.( cS5nt<Ҟo{63 \ɪ6! GCݾS]$P~)1lY? g<&yvΘi?K N|g:gG?[Jv|ko ,XO 5 X Ţf}4^E!K`ڞ XJ''ėg o% V0[x1iehow_0pXo/1s@ց"?_-G bPo0bp$C7hdE쎗{*cBafL$F2 X-8dݛm0ROaDhē9`=rhB[\CwZt]1ؗs keq}YKむjfC2gpK>x ,'h8Q3~I1t5:p]Cl6NqJb mx@˸.|c<=2 RL lVx]4(3;_ѫK; )Y9 6Wc( .*Sy[Xǧ,+xӂvVWx3S4 5cz[]ldhkm@כL^?2DіWq8p~aM F>&Ж x@17ꦖ+?/-3P :$-|&`|?;뫽8`E'[[&MC#ᠭѬ92$P/ *#@le ojfU?O_oFoj,WI` ;oo8ЩC딠HG6$N Q]KkPp@YtYlĽOQ>\ru0_Xڜ"I)+|o}aתi怍21{sGbk2x @"yzoX?9S&39Mwl'՘tp `Y$N@CsCՕ,-K$W ILLHLj @(ihI:6hPM@I b`6KH%-z^[c<x\}~ߚl?O7^&+nܚP 9;Yj߀% Z"PZ-@"2OƇ?{su7xvcqu;&E:6jRƦkD8Iћߒ3wSiܥ1UwRJ X m|-NI*gfOwH6S5( ڷ:͹8~VܸZ~0K*/4&ԟ{j\H?ɹkgOL1vπӑdt/ ^_I0u3sO' Zcf\N]˟s.+\Uhw_j^ E\o5ַHg¸@rY^%߻}MXKv̯Q?\W_ Q0smbt q[ (ģZ:p&|,has.2he~yVĿ4XgӤ~ `@Y'\F]?k\`sJXKv̻kӝ Z|&9A^_a;~X61.ÿ[`tbaHB)Q PLWPq. >N@RBEek\|4 K:/Ll/[_~Ct4 NҞ [J  BKJ~$(@_ZzʿZ1 (aI= )+B(#!t0fԵo  `E-,k_qm!V~JD*9!\-y/~Qzx0U\,ԵCa%~?hܪor9{<זˤSE33 7!wS_/p#Zu:T^;<9Uc?XH4WԵX. +.??=@8k %[JQRBMU< )l.'{<'π \V0Pz:?xG0=3W ̳@[yLhkY0 "0__Q<8;=}> @t1/a~~OeD7ݼ V,Qq WVυFhMsJV'%^zD(|sJ\OVrNŹ2ć4ȱ3;`q?C]{?\6_1ce)!ae .5pmyԠO P$`bKП]DPL%K'5Ic--@w'ZXKX@ ҏ}'p?jEeF`Եy0 rSK:O7^l[) B3#&kY@~oD*+!@([t@ޫHh\p)!J0C]0,xմ3P@ W`<8-a+TX E  lQ/|RTMyQPŅR'Ri$AQ"_xpww~RCier,4< *ZQBàO7neKO5C 6Z'J;@#|HTP]T 3i IwL@DqD*>=Wb⃼w?No*0C0a~[|ѧ}orbr9%{ Y PH M?IOC1@J/g.Cx"pf@,dԵ?t@5=_E ,Y4f}euRF}JbAl 0US"[> X2t0OsT| !W:6|K|p`PtK)k> ?_@h?p6ᥦ4; Kmb "@"`W5Uq'CS~ Pwy5`WI_Q BL-@y%MLU y51q|CڪO$ 5;Եs+i4WbW?`exmؽœHߡ⁑gdA8udF@#\3Euad0R̖B1p'9%>W^Wcu+)@-J= Ӣ }>6\ny[ďT> F0^߲ Ma 0@ųRAr.\KV/w30V!'@Gk?,sĢ{ͷl;0%K2G_V 1DL׍c}T§n{& PqkVҹ'$~<xZ}s/F\v >u`~9$Եy@7/_7߰ L"@vߪn_@dI*|͔3S>Bzi;Czto%q ؋'`}[:;ޓ C]]Q~ʩ> ,ks_/|Uj}ܲSUrSoA[ } X!ki1,Y /f&/|#CF0"$?v'kʩ$V$&\nnK"B"(DC8`/s4BqHMB50+l-!%H**sX0 ő])K@-8;pB QS^uԵ'@Mj~-~!ڝ FWo;w_*4ܵKɔk$v(@[ f"KT-n #A"S_ށ9إ쿔, fԵ }> Mn:q_ VM@OۼSn8 s|P8%D,pHJj-DY tQ? -n z  c{`"<;p4=0N >C]{?\\5tlN_m%r TϢMaX/x)@'4gyvCK{${L)E C=S2U9D އG`6Ť/[@\qHj~r_֘xax퍗%e % F4jAfP%D#_ fzGMy [E][N.,|Oi׷U[dhv&xn20ISK 5:  OYl0_kS)s 'y h ~X3p̙Y|+;Z: lߣ}S ,6?_֘sxuغqS[) *1s㖊!ʳE̩blCcC]@y-ZB?jL]Hh.zxD7Z$ν'DLXO]{ih*8kׅ ASaz_ c4f(ȥ5 =#g:l"@ؽD 3O,ZZe c`tF~h|?y4MH=a~\pl.A BApxTc6)v8Q'E<9\z'luŚ-o^ݹ gg`7_k_4@m-$y7lªKZ(C@LMZ ϛd$X Ԟ P8 6C u j%}Du9AʸC;/߽'NC*hL/|4Εg 5 Uk[_۷LX H| r C %90_@#8Isim=BB@ڿGOLLcE GM_,ZD? ]I1grb^KA.&>IpU/kTͿ`  ZoYD F8# &;[dƂ98q+.N>!p^ȉg H]:P X&Aso3!T6+߁KAD!EzEb~Ϭ3(pSo 󐵬24J4 ~s|=  4l۴/zuwiz= ǚKԏ$? ?ɚT܇#ONŭer,)O:mPaZ1v lbL;i@<Ǹ_S_쭍0D'l*r,8# @aE@; 7"6ȇNwh՗}AN. =.]VK+Vrm'!0}O @_DxP5O*<R4vK(d|?Pj]e&ZW^ ݇ F~@ё|@Oh\tK'] H6os$ "C F2!?AHo9=}/K@--K+eԵ % OsĔ~WoY+7^:}X^ܖ  ) w#=LK!rW:@{RRƀ$0G< 9B_{>v19kԵg % w[I!?f(na#FF$ZK9 :H oZW7b% $4F V(r -D;~fnp{15=)RdhrPEJ8olZd2r5.[?ɄP'YZ暜́X-ajD-X D!}o-p0dꛖ@H'qC/pIuC\;ct>; 2-M/[1&% Gc_jL#Xk. h`pe&.H L'945C2Rc8qjC! `PLn?\(AMHk`KZ} 9qČǜǞ79 5N şZ42gFF~y$ !ZO`oX1=a \>q߸PHQ E\aڟg %{lt K W,˷EZ:~j-`f}/PeXP,_;) % Z" N#AHC5KcS NUuO~/u&N )OBd|+_K#ׁhqq\1>^__5HAESVf/`_*so @s^OS 84z~y.%`l@DgԵ8Sx7i~@Ad~RU<`  B ^~?4_l;6h HulhCu ݤޫ^-R@2 Zh ث~F{K:`|#hK?])|M.(莹ڵXlQljD`xqZ0[CĀzgu" ac'&z冷}?\_ٽh15  p犂L e=%&oheZ]l@B!$$]Y% $pA\96LH*q!yr*|]v./_cūz8 ĹFc5st#>HBe! iM)0&ۗ _. z^rJlX=uJ.\_#$1y$ho[ 6)(:XpyE;fD¸@b#Gѫ5*o!]߰5x?x:4M* KއP+ /W<"1s;"X9M S!Ĕ'pE SA2.# @X#=S`v._5~WoYKM&&TG|n>Kt%XARD4FZL_Bw Xk@ېql $pL9 nbŀ18vSsX-  P}k^qz,tBK 8ͭ+ He5Km( ~-q'2 ehRIBd0Ky?T}$c|0k9苇to@1oXٺqm\!d !Y __COfQ(EeA9b( LI*T|3ՎDZs 軻]; `uiS,|| x4b4 nؾK"D>% O)!b 76E4Vm=v9NcJf$ R/۩YQ(Ӻ.x_E]{ө {,@Y/ˮZ:~Su@g -4)B  \T [. v@Q l|#xYK62^P`^s s^?j4;{^<-`jl J ~xK"l'E-(pV$ wHqmGƞR2g_i)`>^w4jPo _/3k:pʡr_K`|l7\c#ii iü/s)sHBG ~;7=_O|K\/vW҈KS@oJ TY!!Fgp1=3<&*^ ڣVS:к*\;x@__%azQ\a9+fp[ 7 1q?ZԪ?ҹ{(\)pj lRBb"x`waXy`>۩kwJu@S9[kpN0R2?J]T4\>ۘ]h̖ ؼaRj:k f,$Y_>  ~.b'`)dq3V4?U`d+Ƹ{Iw2 Ϋ0\?ktJu@ wanW14x+1x *-DkZFŘS8`} XCmr}vz Q)OQ ^\>[y[rW9OyS3G1GzK" ]g}u~U47} qcM+V[0TDL gARVׂ_&G<=ʼ'8 s /1!|p9½ʼn({]2ԵqZu@C+X6֍P1 )0naWR0J_OʄE8 | !1.ν'ɀu t?P?O]zN-B0X{۷e"@8??ss缟_JDtO4~<3A RYBkZ\O1"'A9L1c'΢q K(3}?;]%0DO ,K\Q>6hCրÿU(M \*0D`ffz(N 3 fgg L?/]~^g@#翷ŸzE !c z@րp!Ďrrwt!ZM_@@J 4:0;ui( 1`-u\B'1]OȓSLAD3@/*sD]'N.H [ mr[$j`@2HgQo.1Qӿ\-?_ڏ0 ق@lf&*Hw 1LO/$fKcT!b W{_@,vys>X~ \~2hqD\R@.Qf tCFhwW?Z" @P˗Rexܛ1#@uS2E]!> !|˭%Dsia钱D  8I n)0WP'K5>PVVmȆ3i%7tONwv>lݿ~2(u;^]pg%AܘE#16k % 5&LO)Ebe 5JY >'/ >s ڠ+}PQ\{XS`>Pl"qY>lϻ^}nS l(=H08޺Kp3jSDׂ`=h 'Sa3; ҵc K|P22܏xDjl ,>`aGgso! s@ubR~)791[/K@!?lRz(b$ ?O@uk2 "bR-pMSEOZ/x3Ih> kS \sOZ ^Wm^%̸j JjrIG'.wﭸ  rOJk Gw[ =3xppZ~k(L0 J]yGAw z5FpO1?ŗ*=L'RЮA7SԮ Lgy2^/$!%p3 ˆRAԸ ^QhO]1=3W{Z!'Ե79źX&0Ҍ$Aj 4{ EB_[B6𗞅@7J.R u@)BE3Gsxh :3%72uJXR2Mb`.Z6m\$_?3,R zd)RH=%OhK<яw'c\m(.J3dfGf]H^s@z*]2k\7, "E4H5Pn!-8ЮAS +@vŀ& 4X{X3?F}~8Zcv;ϖ Cxuf]H}0,OK Ǭ]L$BlJjT@:kgȡq|. 2-8M yf^Y$%=tN%p aK]~"?]'{?=W .05X{HN:& i@JL9c.m8_gOA=sF]?I!Kd~5Vq3x+}^TPԵiב_Iu \Kr~8`\/`?_T?WfP]$gXZ%9jK(?xt)ȟ+CS8w%uKf]EN[@y%acزa˗!X/V4Oiku\n OJxJpY֜)‰S* $Ԓz?`~z~9$%\.l_O`׾O1XuԵgj]|)i'}K/{#M'tY* k π| T ; k'/$v@ D B,z v=gx¢46jNš>6RT@|$mX<> L㿨{@}N@+>DI 9\koV]i/( l\S?bƐ IiY{spnrFkF]j]=_C Fld_d0U&'}O%Q7b\c_)OAFq~B@HH't~H@C 9|$ff'@?h\_gN._"k{S߷[al Xh4. r)@Oc1K@.|U /CH(> @Z)kE@Yw33%`U1Bėk_Lb.`O[lX%b4L%=o!7[_PZbC& p 9$V:gb׾SP0 kvԵ9@(p5{\5i< vvP5wO99HήFbyi\oԹIP +p:Hw(_ Yw s6TKԵ@p3/Yߗ k4ؼ~),5+JSOCբv_0s 7^V!7[HaZ,I"0<&Vngb|"]"LMO3Lb b)dԵw8ݺ"c6|U.[7 ?eL*3DSx π0Ǎ)bDe% @pS-p_H@"Z_ -3T>;s5翗gfӘT_3k?9ݺ"&w`OG)HKM`b(d j$B组)$K1PFL̇ZΜSlQR=)#2B&Q6JPo3dsC*.x8)/MϺTI?#h' {zߺOނO4`x2/ꝼ 4).ק,ӷy=[xG+iVk/6.P"_;7*>S)L" G)IdR ̧EYw;y#497T1`2P_@/xL?ı \1 W _ -V50$~v_1Ñ͍5!/5b0 RwXrAK>.KS9D@c@LpVHs?}u~w߸,Q4DYJXvqmP_$-rC\Ejz1 xɣ8~lC9jXC@_@Y3$ [w@Rhb\ 0`Cp JO_=|9,IWVsb%OxE%0M'7'/+'l@Α!gY\_,#JeB@iϽD-;{Z H4E@,-{3~eP g D8uNݿ ڳ0ro2P\Z\GxWn -FzKqI 2{_KJN+p2, |DV$h@ɱR$rIs8svOH2\04 ~ϟhRaO{+00DCBS%!W!c+'O@עsjK^~) P 2~e`u?I}Vs< T]34 zo 5eÀk:ˎnI,_ҿ_,Cx.Ygu`_)cqTj-နL{o;>'+]_ mj׊fh ?o_D`bˏ  /2O>s Л] iB Uzv@"ٟSHVV{z?_S%C -W߷!mMpPTg:~l\afv{|n)^3PR(TUss}dt]f>@xDS{^># _~kCxGPoF=Дח \=r}aK1l T?& ؅i=$m Y"CiqV~]{wd 0mMڛho __]{ <m"0d0j+i9X A YJXZ ]5 GVFrqd̫n8.={qG 9v󾈦#A! {V 8LN^~\{@Ra@R<Ͼ*K/73@{ ƭ2KP1KP"~r7 `I}w#$X(74`x/+Zzxb7qdktwɁqN/-/}g?63| E% QE 6ޏw8u.Aيm4"7~)&X)oL_~.l+s kc&s Ԅ)*@// d(\:_I'W Cg-?uA O8ig߹! ~Fϼ⹢y[ \ub C3Slb NMAT ;ק*8g!d%B{%sz;dimO~zC_]2@!s4"]' 'oıM{ya +)J?39} 9B#.e(j ףkhM( sOY鳻8}fo'~_+bwG'߫! S L>E-W8 _q\`6,J(#?fe)^SY{NOOHw )!\{;]׭w2$4 x5ԫ 77ǏmOKKNs k ~ ;hA!ۋH} ="~6$D??~'Wpg:IQTK@c̏ݦi=@ |Ǹ@[Q_.b5V￙{K[mnԠhIt*f=/ w?=}f['4 |M ǎ.pgLxA/2_2c|`-A>++]ֻ- ;]JO\$3gpR 2~d h? ?Y F贀?#[DHNڗ**Jesÿ )oH  T PJTT+e,+,q.ϓ.s+Ȃ4v__ 恫N;)p66K'^KNk?= Ki [ Lh&ȅxۻp꿳GP;Ozkx?fi-@ [ gePypY`VJL1 2>koi@3W.F^"@U닀ϋ[$%@x@mX Ξ_=ecf7(5(@QY67a{m{Y?pٱ \rTɐ.ùK _[ -|)[%?V8=g.77OAXy/\\Ȃߡi|i?< T`L H[p& =/)GG_7CA^ *ث6`/O@ `Μ4ݟ#@tAn@Qi"@ aP^oi>[ =ZsF__ŧ-\%h_ (gk hT yUܹ%h׮h%I@5Y4? |S a m k P=G _ ?'[~+UTzY2@JTxEV̑))> Zkm i!0lpq!av,m-9@/@9`WRIPk"XcR$Hg+xA P%opX]ٝ%K 8 .Y@p'MBt.q wKȅf^ap6AO$ @_ \9zR9¡~Rr8w~{ڀ. 5Ao,lZ`Mc`{]טBPA,T^!糹1CPAq֩J{ )2ȩp,[U._\Wҷ_:.H 詿sB{d>'V I-%s%@FU+yෳK8`02:0&4*ni-@9>Q_( j{+/8 6 k.τi/U +6-@9ԏe/;#.eq}l-K@c_[Z\7) %$>WͅZRsSi~i@u+&T$F_^*K 6;h_o^ek\S}oP۸(O,`X`1@?Cr68Z1@))c9H@Y\.L s ՄAkF`}w4B{y`c\ k[ z`Xp=W4X{l/ si){o UkUZO)u @ 3ScAYN!b?کnƴK`ŊE);k?'Ks @r{ED5X{.N^ k Z@O|%!= Ǵt>|b‫hׂX" @+Psz$tXo}bеUDZp[lC4@Ʀ=.09z?G?kCm@EL"Hyc~I~N…B&뫗4T'<[+O"AcY`ڭGb0 @>{E*O8gPl9ķ>),0ɋ`!p<aI'ր 9soVTl`5?E} 1Z=Y=/:o_ԟ t `2ov;V`B &X?i|fxF]cWग_Ü{&,k;?E(:gdq^*BjMX(6;Xŀ %y;MvW.2skh}'ex~/x9T4d׶(`]_i||7\1ZPgQp>/q=$j䩿sBҽ0(K[=flL !<@5i|LwlOhh T_J [SabP@)^5$%@P}իZKR1U]#d>ki:@ BF W%[:xп/z?K,*VUx%yWtPea`]KM} ]!SDHʂ|e>fԿ6!*׷,*hUw=ZP\h"X=!cY0]Y;_%H|W ,#,JZyު"=Ⱦ6B0(o-z9[ 8E1}oss?A \ GHchڤD p[֫ZoP?CZ,whA~}@'JnN-+gsgL (}]YI%2``YJ(JVUmx?>@hu `v@;^PjO4 9a " +Ы`<ѯݥV !B<.@s* mq@L 8Ɠ`p.s| r\A=! B8_i|b!&U?ZFɿBaP*r[,K@ZUNUV`K@ItiC-SBH^U ) 4?y?d{S! [ T཯_z׭l__i} [ OwP^j Ep  ށQh6 YI9ޯHzOc`/ @#6ƛB- 3BԺ!dZg2c_??Afy 羦J\F m "z" +z4?o? @ߣ9@c] %VH" ߻*=aB0t?i|f'<;kA[X*pKw o$o@֞j= Fbk~9!'C4*j{ ^v NO*y?XoV8p`ڍZ-MB->!]U}'Vo.d]I[[,zj^m@+)!>D} xy!P9P傄0Ss R!Xbl6r_ucf] ӟEp.J^Ex!*]}4зM 5! dzaPpYs)0K,@RZ X'rH*.Bd tVMi!@^ @IHoQM*h%0[0*%s6A1/@?{MB- \ӓhDK  $_2jT nP" [|)94#'̇r/v8 }[ho+i?F i}ػ*/En* cPTh'a$#LM  p͑WC-"ϑ U0f^I/=OHfww!ˉ-JUb_Bx74%@5 @Uׂt a V_?~N ,XGUU"E@>{-M;C-^ !<@o #rA¾S_XE7 Pz4K~P epW4'@>!|  pq/5ָ@q2oK`@{gj|=<W cP|4~2@FCxDYт,z 9KM@2{E@ 0c?{+V7KdJ74oD_ # 0() REO?jzM #$Ư[\஺~!| Pڸ*y JbUrgM PE^Kxw`6 U 57, Ā^z=0y^8.P B1 @p8ӸDC>)%y5^/) b_^}Z-Ʈ{pQ|  @)dP[It@?z׭3)DQOJAMp'M㣺g==5= &4q_ [j2{g Px/ W=πkqdX h'@ a~!ONӛ i2ր~1K C|2=lʔ,CWXOo!Z/#B_4H?J}_>tm 6ޯ6gݿXUq 4DYw5 @k@DUY6 Ch@Q@[DwK@i9U*hiCІ޿C!0lok}MkKVpp`L `_rPBuF&*V}`۔ HT쓸h }Vcj= -*{B0[85 ZzS})W!B 쓸i-@ x; cYdZ 6.P9 Czax?C@_E !B"e4 >jXuI@Z[D´\Z/ZU$wVF@@ ukʵȾbV@Mp4~,@ |6&z-8,K?j[15od=e֗cixM+zC7x9! 4X-֚š%/fCDPisnG47Fͽho _uO f5{1-@~w!uDI ѣ,[a={{{MGzC7]iM!XԽCz @o!/,E s_ d! ]Ӛ J^z}M ^SeUҭ!e}tD4>+h7A=~ݓ}VC-< tP _$*/9BC%:Uzo42h7Ajd?JE!{ - ZT.hd[Spx-kSL j@ j@3xW[* .Dh ~ϓ }/Hhȅn~!P $@Ix?iHxׯ@t4~nmiUT" WĖk2 3_TVxzׯ) F]Tƿ pN4\d jT @a\`3?+@*EgK+CY=+@RV3^GxWn$}p 0=H ú`?.Ph oq, /g( m`@<$z U)p?MA!V }N f)Z5ߧH,?qvqX__=Id[~\`bMP34|>#]rC{# mz7<.0__g5KIVg_ ?R@]>AbUu@v- N ǔP l#Sgʀ" *xD >*"Q)vo4:(7*K'@Wc k #k䊆Ty As*Cr\4ϋ> VFDkh=(7*| , kU)8ׄp =$*9)^ Ct/: UyQƏX% !rg.)B8G ּv0ȕ g-GP`G@Q) %BUN"N+?*h4,c´0ւYLH*W!NmBtR)`+?O4`1 ɾ~] ^F rʂ§Cb@`2+=@I*wmR4(i~}w9Exum9* !~!KrFJU/- A- V h?wY 4O 0Gw/ 7,hd~= OU P0 \%*T`d_iF+_(M 0G Tiv 5O*6 ,!2$g+G@6B!:jd/4+6ov% OkshA`yZ? c_)xWpZ|iQoiwm9:8d3ν7+0B8Z 8֣¸} D`W -  +ާ݃Jv+;(;nC̕౮~쫌 4]h`\x@O /"4 Ѐp*`~_, A/jC?HyshANYja0Ẅ́_%`w(?&φy@O/Ԓk &ا]T }ՆHo>>N `֞ [¬RkCD`_'z) N)?-.D)}G_/.$@OAXWkcQigPm|) ` t?!!# kez YP) ,  *d@FQdT Ep6#XЗ~?*ܺ` 0.관!Q eP@?u~ ^ѽU/4KӢ` A!R%$8ٗVc @1-`~Հ$[~ Pb,Y! V_͆ E&R=7}j 8Z090u_n_CH*HX @J+! OX4>h6@c@#&{/M kE5P ?$^@ןbl9+I`gl&?M4͆Iѓ{; !& R0s$J ~V!1/ @ @bȾ!,U t70DA4~*h6@xW $)wZ}0 [G J Dbh`J-8$06/Y8׌>Z:~- O;N&:oI}Fs'?bO@eR,h]0~r1P8ExuPlYOw+Q^ wv'jY{!$*j D`_p sll|A!JU67WһDP-) $@SRQ  %~FGѯ_[z85/C%[}f랮!Z0G2dlj ]!`Loqd_{GD_Lޠ%&'=Q,6X]MO_; %*QU <!Qݯ5io P"p#ܟM-oIf{j`;!Dȩ`_wQz*bCJ/xbA 1 N[ &3W[ sק~'ȩ9O E~CBgWhC| t1}F'-`[[%/0O,*_#&Z pR)d닊i|Ik2 v܂~/dO -9h1A`iJ(p/i|kp)=N?p;3P$#2$Ch-" #84YZ1ۡծ#0Җ8 mG=qz}p^y~|XGO{A+'k84ޯ|SffGQ@0PcYKI`ssN``IF,3 ) zɂQ `w: `^O! O`@Ogn\օpK &^ NHFlɾAcM ɦhSI V@}C7yj; `ʺ$= fF(ijYe[lط)Q~IEBo~YZ)%ܕFߵItC.B6ݬgHZn[n7I|gN3 'jQyM;Witd b> A)6,̅GʺܖJ)^ T'{_5Z#@ ػ[ -מP+ jU~Z@Md5)` 7 U_waYGR)4`> ʑ6$ثN,4T\z(~.2k-&)0OQL ? I 68ݵ~7'Ƶ hA)l($fUw g](cYKI`nHv}w7Q~TN Z`_s6z}U?(Pxu!RK7?vl(Yd2#|jsc0,@/Bxӽd $M '4`BXS p> @A8T2]: CKg9:JcڿLGSf64$zU.%RX}X~ćS>14[8L ) `Z8 LٟBiiă(WYN),) N`'>УZhBx(\  B!nP )x ]OߡK!`9ʴiFag0Px^<{Y{J),y>PĕdKǹ; lhZ1P%@~gz}^B!z]mi1muTJ`)m'Md  & X*%݋rQ@Pg)x4`Oe]O*9A N'}Ƃ5[%Tw ( ~ŸOu94J!^/ޛq; kk7w+b\21lc?  4|ĽH!.NU/ /F}TLDNH G]=WQimn&믍R/)#f+ ŝ]5Q pv'۽8@uHf=Y[+5_"K58iؚ 5O[EI4< g~8LLoqY/F)$q'`o #6A|y!$FE3 ~ (? w?Ы6.z}mO Sց=H_ӿ=@j Vw:ԩQ(PFet]%Լd3덢6iJqaEƕ81r&@T M&` u>q2@BfhHW ^3 eB b ؄xkY!eRD?ψx'R- /vdHH%p]uZ*w.(KO.(gIcoџg˺2) OB\`g$[Xfd*А5ENPC}"5:2_0 O͕WyYϒ2)Ks6M&` QZY+ۻ=5X?xȘBP ]Rdy[%}ҲeFWz4ۼ߮u:@ ^z 0HCx`,._M+E'uy! O^Y'f(>6$@ճFbB> P֣ 7:t}\P\).M7+y%@ &?J&8 ض(YR5AKayޘxȠ?.#URd" ;.zzm\ڸrd8mRz`XVА  pg\Pră4z L\Y*)2  ($>qAi: ` Y싩y_$<"^Nry ?.(x.2E7ܴH$6xw- ⩳:%{wNJZG m/ p-Y7s‚?u?i x Y8K G8l2X>^sT2x*'X9 ~f/ȕ WNrowwsnY&)2 DT_lYqJ=5A<gHSuUOJmX"(x SxQAڸDIY%Mصaf3L`!EX@Uz @ 4KM((((((˃H#|2 Fr+6.zz9!g Ċ_zB`G[NLȵKw,~ 5@I#˺IY\gݵ^Bޯbq[l8vo5Kr,  SlJO My@?F,w N(Lq?xxZ};kH3 SO%`~>`;7Dgk5R"`TT5fFn<&4 PPF $K*6.zzwOV$@ Y$QtAwoL(\XѤE x'U@H@O`xƁ{g@yHD|~&~2p+9Ҥ{;K|ֳL=ʺi`V p)czi4[vF 4l ?B ătg6k7L˺AJY</J*PǙ>K,k5NRZGVL>g~tPe?WD \ qf l'9ƿ񄿺_|7hcG&O)(VD %+K7q/f@\ g dX5@~gq_ fzg&BsM~quy8` >̴Y4[@33m ~5MGu#{h=2 x?Y\FIYO1>pt}˺tH!a~fP*2m=>`fsܾCɁw֑˯5!@k )Nug:g #nWօ0J pJWӥ~-uԒA AHNе:Vv,P?jg zrև-8B - `w2A x퇖٥B/\oo&mao ӈ~S} gH[SJ0I ȴ}G`g+$ _A?Eܛx+V+ j%zZNhjg{mY)(?2m)>6' e3J44;P@ut-4M@}RX|FS}T_,ouyi`>txl#ɇgd@BYZf>o2fO-? &O ?%nY[A Jx2m?%}m`~dط黵@e ]V4d 5T - Ͱ%WuOvDga9^噤@ - G$xl&NƟ-50良ؽ2฿ =_пk][EX##6!$`] jؿn#ftt ߛ$O)z>s?u)x(2m kQ=¦v͈#Ң'^j#řmio-[&OB'Juy)xpMpZZ,edvuZh-"@JhI"5AvB P8'/p˲. QpOpA}^Y`{oz|7a!$;R=cLD+ s? -/.!# W}{ k;?>Hw\} x|J ,yiGz-̏&ca{-$ +KX5; : |0U?O,ge~LX?5A1z tNP=%74)0vpf,'p$<B_uy"^GIv `|{FY uXM `Y?o +J,( 5[x J0>WJ1UYsHs\K`vg4P, I^٠-ji=ZI 5{\ε[R4 U%о7OuyiOR5sNRiq5 "B"J= "`ٿG[ XY =[ԇ~PF=i o+roRWx d0{>c,L'~`9/ڏ5tMkwO X]^Yh2EKj!ʺG/v.pf0 `]B,X&j2@BHR"4pj4-;{53d_ ½QօI5(va`|4Y`/џE|͞sd[K 2pQ? k@匢@Vz~oY(< Io\>&"<}x$q Xa_>O%O7 -@RM2jWn2@쭚^[gP]`O MB=S=X,PpzYϑ(d%/{F`Z)*,[,D4#"5` p2l MP( \gIk\>)l9Y BEJ>K}i_&{LFV:v$Ի3a]e]>LZґp6]ؙk_͞^y)je&JF ՠ= )oA xqY(Y yo ;bO#6b@7*0^ -| uF+^'Qk=4>5 ~j?0OZ»DM:@3 w?ťB/T;xwͨBʺ`yp?J (~wMghIWtfC{+a^ԟ Z@-NTOW˺_ǀuU]= @ޞ=eHiV@Uc|^\VZ}#r+"!0 6 [u,+ҥ{{~ΐ#lU?8Y\" Rג|/H +A[ԿU`4U?MwʺG#nzp / %;czAy&i_Ӗ D A R&H{-˺|EK<S * ״V|kz:RE6@MkߪGw@kkLLp=ҧﻦڽUi- xTpgߨ,!<$U.Q??jE6AXko^Ao` Մz{wºP'N/'mQpŔOt'T,l%'"_ ɀ&֏"JGk$_ڳROoS˺eAl7 TGŏڑ51D 8)@ #Q{gl&Bk.@/n.ST}ĺ}f|5O5YRWnx(u@`M+ew@a{y0n]嫤+ 1^NQkOY5ovb~@O_c?+APH ( R{L-!֢Ahʇ p.$EQp'Ygx֑XI E|P  ' H {{-o%eFoʺeXV€ ?/ %z~'w!=#+>X@.wL+Y2/~\SJb%%lPoOr_^I`%4(>Bi@fz+`VEB(2`5./'5Qp#v 8:3J@lsL{/XџP>Q=#3^SȂa[8>?w܍c(wQ*K]s&g*VVMF½(zÍlwiz&<яre]CZS#rP^a мW&Mj]}hYPb[@PԿngci [bO) .$%Qp+N!`wt`El]{g!hrtz(&yfB5 ve].#%Qp-FN -l4~`OF "[{z>zd36IP=.$Qp/NohYł& oy_I$=jn'O+o `Mt_= 2?(. QpmOm{,,bAYb36K+4SȀzQҲ.!QpmW 8`}M-z>{ =[9@ QM!P7d3-_ʺ|Dm wp g%A:}z"D K X n =gR? ܍_ߑ~(-PS]^jaXIa05iyV"@B.0zk-P-K?; j@((-2-(x+u!Q.`w~]Bj\?k):MXh7B;[t{1IQ鼏5?{Fݺ(p5?Pä. oOp `yTHl.ā<.FdQMR~&4 %!7 n*[%YsWy. ,H5?tm5 !$5~n{<[yP*5,k:@mM<eb |Eh6w)MQ=`w "@>"`ߵe"5JO55!^JuJ:?Ee])k$e5֭jO_xZ(ϪۿTs]@zrkq(hSPgDϓn( S[@gn_P R$IHP;N#c2V!} ^ ɽp0l=HL/((Q_ W77$%es=o 0@jM27+`[cy߹ `Ԅ?M@N O m:Ԣe]Bj/9JޣӾV0'M{4`>ZBrwB@~ {_C?:TqYǑf(Z \ n7K@5(+%ZSK5c27lNXrx*8gG085z6ue]@py_lЭ>r?ʀdpDw| yzu Z)oe]^CA,HU\4kxWco ;kuʀ[F&{U&HkO лL@5D;ue]~E5*NÉRGM%aڲџx~"NGu t]ka~P-5!s$`GN@X{+$(%6/(N_Fz? ߲sĎH,%HݣN@>gJgH ,% 2 duׂd!֊) ^Y_!pQpI 'ek޷F@yTEC׵8d$@xQ+5&o:MU~xi&*B~`w}}^"Kc?o=jʃ0*$E@ϵje8'K2@#. >= MG#Y3ܢT僤. . p{ -0@ ?G/G0G?J;ts{2) D(S!p&@]U_R pVR =VR\"7"JHʃ"5K]T ޷5?@ sv1ɚ!ȿfv?R[. .M p:N:'GhgpXyJl?I"]_ij7cFJ4u/< 0 \?U$ .ljON(,$\ XV:%@;[[4kx)P>YaogG&i&K7ApE_fHsʺTEe).` 0o i̫7?P￉ Gzh|_=3kd1[b_V\K*T&r>%X(;HT]B fޟb @EhHji#_6#/ b@J*3˺|4E!9a=b-6%z("Hʼnр %aЎTџIFpDl}$ ěeSDpb:("IGU6 $=4=[<-AX!UktM  rG^kN|vi/GRʺEQw5[bOFBAе=;Buzn % R%9g/? !R6g, . ^0٠>{G6~K !Zwl3Dy$`s6wc;>eA lN ;V, >_$epQpEVрblwU]8h|6}{ E@8KEhH@ZЭxI=J=;%.WwYw.(2HgxvjG$@ wn M=oEؼh\t(º!7^߻gke3dLOhQ.O%UpQpe'x'uS.4Q#M{_wh2@wvby3{7Qx'X^2%vD?DGYo*(2I[}G=߰00Z{h e$uk#*+j+@OX}S93˺|4EQ<KR55uލZE@W~-#&{4H  G@oWAǔuy))+5RcaJF&p*h]vIOP[=:!@z$5 4(&.( S E9jBD@u:~ם/pH".-Aj8M$PZdjwt%^  쾳|7T/и֞#eN&0*2 "1]-![G@$\??p.'5pQp$$@zF)$=|Ϭ5תZVh8 (n-S*4 J)_̣ÿ$[^{p.o"-pQp(Ys7NCJhMRC~{A֨ 8$^bia=:h0 ˙?47?^[4}jYg(f;@Z€akn !A36칞H% RP&0'!aQTօ@E5mF`GR0DZ{4E@S0AH#WzM( m!]+R勤. -H=0eEnMhz%ʟ6 t]2@CH}V9P ?*»Go8I5OTB~]˺Rז$9^#  K1qqF0DM,eXױ^HK BBI{q XrpET`@0Y<3D= Jwf} ]+uOk#a.%% "ϡBE$)|Km8\G wtV!Ly&1^7b%gsnE B(`jdů!{ݫkC%sBJzE<.&[c ,[,gy `=Hg5Pcǀn&,z//+>-+Y!$}? (LO,Ŋ| va@5.Z"HSi%` o-aϭϱkV@IJ __*8s EʬGZhq6"Y)S8G3%F_EcBttX!Γt  84$p &5E~-€XNm778$EZ46 ~Ԗdn`!K]o!1>W20uBKB[ۿւ ׯ<ّO$sf0FkɶD'sG?V@0=x3j-^_*8z6qYli^ApZ-`3-c}o))B[J>I,V@$iX\CL\RgL [+Q"CM-'o?Wޭ߸`"g+'];q8U<gH:Bs ,)R~m:Jk߂Ǝ%`K#cj$<[gq8;KQh`*szP"hU{ GZhF߾q}Oj} V@u{[Qt3yI |NBdVb"o)?Q Y@-^g,םm.bv!JZ֤$Hsg;jg$="(V#4vn5b oe $'sueBBg2&s RKk!,@`+Js-XYo]D5yF ̸@O$ ҁ/xwH}jH}&I ,yo>K|ÀI_OjP/PPy:n3<&0Z҃89Kz, -1t#U #D$ c{.v~oI=R=%*0xt~VY@Iz&!@+!=R>1-K[$H ^;>w+%[v{'qFcO]8\*7yIG+Ʒ Ekolk[#񵂀€7 ]_3)")IL`Y+K7rѷo%(pL`)AΗt0a C$}VZ\LgffejX˼ nD7Rz1RgJx v$ oceT!"إD^8&P^=bIw 0} )jBNBn J-*L;ɗyڟ+)-;˷^"7(WHoBGI:s7)!@Kc$<luJY@|wBC ; Yu,FAұa* ,UiW9!0 \{Vҽ*2~&*ܸv9[k"9FǟլI/" gSVn>V2 0 < "v_J Ŀxf8.ȋce9aNcU ϗt2cŹ3+U/>@ 0 6q څ!r:[ZI14J@qEDCgvLf8@_p.;YПE'7:o 5$su H T,0m,$Se:GĽCܧq8U4\ӖXH}{$^^9Ba{[D|a@KJ=JBƭiK@+OwmSh~LfWqx:g ;XIzl`ʟ\Γ f 9\ xHV!s rB䵼c6s!a# AJzHx?k^c&ͺПEH$,€@Cm.o=(&dHg?2` W'? .F@$*V@0`ItC AC U{j" u Nv[VxmWmK0WZFBER帷Bj5kLZY܎̰%`#%ZIq(B8\*$#n+(!%X }/m:6~^=CX  (ʹl@'= z8߄+8\u{ۺ!@ _TxW۾ZQd`u_ vhA'?G#ʗxqU1,'OIu{m|߳}_b{+9ypA@9$l79Eֽ?FؒT#,aj.Ӓn`s&gQHgl7S}Px00REKrwK(Q_[[+!4X#_t0.,78Bg$1`Ø.a7@A@\%€>R@䘕;$V RߕOq+!5_;q8/R.pS/]cPoVE4Y0O%.![YZ (0UV@@k1q'=J S%Ǘ Z<+6v 8g[@-,  WϗtO`o!>YYxis5U:ȱi/ _byc:t0J7W]3%٣ؙ{`pwzvgSXvD P"'Xh% pI+6v :n5?E'H|Q2#5+4F_,a>j(ItĬ rdnjA@siWZ/X\S5!>J2B =z蘗J:>լ&z t'[|;?A@R˾΂a@@ r̪ao`m!?3-WN@V_*0t%t7C R$g7 jŠ~,Jvr*Ƶ\Ŀn}Sw(|Rq!C%Nұ6LfU? dˣPe@!GXq? CTIO֊6X'j]`!H N"a${0蚤J  Z B{i [֤Ǫ ->WIz?p#pG ,v4DBWC8%|p.qxZb?W%VhOZ{`Y!$Lұ)+Q Rj5 %r_9ߢ8$jKk JĽ=S38U,7xWI:ϑ:WgW//~P 'o^K|Gj-zEzSt̿Пė8_\IZKMsz~d0-EGz5ϕocyiIp> ]C}$(it> ggZv ` ,"- "Fsk?0W*eItg+9\R^@@mY`?{`@tp3I/;Ru 惀HzS>@GA@t($+[z30c7@q៛Q#J3$=/wXM%ݩl A@P" gm-Byb X v(r.J:>_z=x?tļ0)0 <͚"̛RDЩ-ࢤ?ECy|/8B>S>@A@\YA@0f p}rMV$~E[~oZ&{Fx$'Z㧆qU\X- `a@<uBր~o{ u};mo-H+'Ș4 z/@ C9=m 8 (06Y$}^s*`!J#%js`yW*X4 XF$0-XX`aJ>:?` 7p;y$v&q,[{Ֆ ]i $=Ft.€]aC+i0PJ)X%:X OMsPV@ߑ_%s@\G3$(P^tW@ a nmxnZ[@ZԣeRPk/ f&"I J͕d__m(:o^]ZTI$&q?'8Dҳ%/zWI/qMk`{{JX+`9~uq@P&8Ts>pP{ .W2 .cݟVj -ɒ&xOI/tj Z:A%J: `aW * \G+Bo&:ޫK%2I'aO] h#Izk-_~PZ+ ׭.Bs9hQsWo xHzaoS ~^XIYkP[)ܞy" B%0OU #Kz}_zϢ~)他ķj XPp$ ) }NI.iy( pǸU`P!c@, ,%_-mNy4Hzmz,W*"^̋z#|1.@m/.EIC/SRҳ$=Fҁ]kbpϝKK oҿݸRIo0_ H$=]ҍz8g%MH7]I/0ugK}k ,W9}sE6Toyc!@sm%XYa.VG +Itn+ZEw&^rxT̯#Fs%WdϪ)IIz_[.9^J: qP6 &lnwqk~ xIOtݢI00gyaq9HI:=?5@"ɒ)f| W2OP`.l&aBoJzWq) `IкNm9MS%vmr!mԒT_|[8\O'0v6%s:*xCW+_Bcmw #N QPj(+mEjT-4̙#{bwmIo0O$O%[u(zTo_3mx߾ Ϊ%o~IzqVÀ8wQig/M#,zC(pOZe^/ a}DI#i ժ_ʿ{V-hu ޿Wih#a@aaZ x[lnZy/=o ;:o7-7qs VߓtjU/R@‹k`Phj9ޥOq`! @0PIn/%Jpϑ {WvHa./4À;,頍j"5*p@Go,fҟ.%Ζ0/;u;:̈́.@PR+J|kBA!yi XT"L}]II*Vo.mx_W to h]4h$}P%/% 0zZ|{iJIblxߵͶlOS-G.T҇~0?4K]wk!fӭ.HE[Rowsj/8\I(@vtI5[U',pzSy6U:\)ZWwZ 8FҾf^BbAoBuD3WI:G7mX҃padu?kHs%?c|p*hg#wK@}h]+>-p01Ȓ 84(-k-CZWhn @ V0>(i@PCyߏ*nJ0,`AFI[ZmeW/еCtͷT ;hp 2l{}mt+%C?0% bwW *-zo8O~˜0v bZoPYB-?wpKӎt$-XiבWy|!å$j@Nn,Cp[I~ٗ" ΀SʱlZfR0gU I"q@hc7̒&=73d~lh ezqŅ{%݄@#_tIa_1e-:Hk x#Ka~3 ~~Gk0˒3qETx+%n0G "  T^KeۻJr`F-ucBM~_$m ? tsIGnuK B"?uIۯa.M@p2?urJ/ & 8l/ICwzS‚~({.E/tH :o i &r"NqUs V;B݃Jku\/IK.׽A@@@@@@@@@@;o}0@ @ @  @ @ @ H UгIENDB`peg-e-1.3.2/icons/hicolor/128x128/000077500000000000000000000000001435730362100162255ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/128x128/apps/000077500000000000000000000000001435730362100171705ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/128x128/apps/peg-e.png000066400000000000000000000136171435730362100207030ustar00rootroot00000000000000PNG  IHDR>a pHYs$$P$tIME aS^bKGDIDATx]{uok61ŮĦ`( -4$5QԆ(HAlD CݴQRш )R1 Lj;)8mw{;wsfus9ww3h"@"@"@"@"@"@"+>`T&tF_ [^%:" x ,bHvO>꿣a~o>5] U SU/$8_kOp-@8a @:?{ρaM]ְDf'K"d~'Ud8n ?`)@^ d+/Id@Wyص}c"=qK7Y?[7`H\} 9j@<pQ6DY+BhOxϟz-$AԦ^Iw{>8,3߅ɝَ]4q>{`{`{c;j/ >Kaˁ'uDGySGT*gb˶-;)ټ5E Pa+8?* @~2u&kÒE3qӰx)hPk׿G׾a߁"dWQCg^3pٳc|G%A2nUxX~;.DmG<ۿhIS3'„q|y}Ӊ;Pſ=܀ww<.́Ko  F[EDrMuKj?&|k! {8P m I3pƵ۸"Sp`pߣbpÁsD}X| ѵ_2˗-@v'phVqm`<x7p-" _Ltǵᖯ,’E3vB?cuA}?5$@?fXy+nj ]1OMs뇿zKF=ÎmJI`¸J|[˖d`&p`]=$h&h ""͗K▲B+pe7"r7a`!z3 P'ᖯJ e@λC(%13Kͻ:_UvTD "H q)O2RɀE?Ö*])$>̊aizyWS&1khcA )\CRr|Wܻ.V4 Z;(wʤo=̓&!}T-]ҟ1kց9U72t )3N_~~D?]جz[yfOq_lK|iKɅ PoBi~H] 2?v>IX~:5bd(ˀ74J\vO7b{d? ge `A;W.]y%=V.;Lů7 =rMDGO2\rL;DXwf€*E$ JZ 0)|Ou5M苛S/nS'Ħ(X $Kf铑iɸy{ M@ru-b>4,׏o؍?F)cD?! 30|SE0ZtS܏Yq_*k}tP$X&/_6mm^m!}A#Mv`' Jcx5mRY%R1e>+$6Ƶsb1p0JEzj*qf`cYv7bz0yD(2mػo%>s‚a1㓠˶%d1) ,2@1qa ~|d*1% ;h$9 N Px7PCׯ^jxes$H`k;10JܪcȖ@e:eN Qe{C%@/ `e:aF'6^l}{d?jCWs!A`zvtMho*1AV,R¥%5k\^ȱv k~ȁ H=^V䮶(dҰcF!&{|s"3?jNw_s?9蹬(^s_U0a\T] MB]B6{4Ŝ $ ^b߁juElW3 PsyhPxVLV_K[%AڷjZW{^E H̔Z!4)*whBZ}v^XZ!dך~MC-pSc8&K;'!@ dF!(& ݴ k`-j6?آ$+5 yiZ@fMMnO=c@ϢHB!uPR'vzYR Wtbf.hߗGIVmDLh85/>KRBD܄bKd.$r,rP'rl;V JQX\ 6t@S0*M.ܙBPsXCG(;4B]+5+JiI~ZHR=oi B,.]#Hh !@;ǔR{\@Z9Mɶp~O=!o }O66B 'G9mፍ!M_JJ2R\Pї`ͨi,p̍!a0}&X!t,XnRECyCE2V)oSY*qk%-1Vp[+m&9FfKiV y೸t] 1Gy" 9/x9F&z*o Y)"w#b0 *lģM ork @}L\UțI"drf;lHmg:Azy"0P;V\‘nQHԬfxqz7*6Ѱ!%LӨi1H[tiuSEG^EXT|m omS))jjQP0*sWVf\|F4Gٷ{YQ+Ӝ|`#c7!O@A9#>2&"A(ۢKŊ`і<- {Q1-$.&b]P`"BݼNE^`Hlrc}K{ݦz @8 ރ##.hD\.;$-fY.2>:6"@h1ݽSȎa2t7a \8<4fj'P%Vm>AkaȎS?S>THp'[Y|L{Nu\sYŁs)H6Wus=uP6A M1%BpRH0^ vcUX+-\`~ܮ೭4$@D+Aa@7zCETPYT7$"d!8R* nj^7DG]@GC!΁OX5 zA|O9⾊*ACW=yw8{S`5H,T\F+2!A6lphFM&SE 7,H>LU֯BE#~絟~xX F{@by.)&dY#bz (+Ea`  @ \wIC @0T#m+DhZ?heO6J߲GF![<֦RhBpfCuO@b/ Z-ii|<Ƶ]<#@bhY9& 6Tm& !M+'Xx lPUEP ¤04aoU?lXJ>APgy`;^QƒaMčeK%Ml$08@of#1"^]doxD WŀGXg,; #2nPzr0 &oۺ} "X зAH(2~6_e<.l8 "neU Xj@O|FDZY ` e~05] s?+`~ '<`;E搡 t1h&0j` 3!*>`# `Nu}e@?=u[oM[hZhZhZhZhZhZhZhަ{[IENDB`peg-e-1.3.2/icons/hicolor/16x16/000077500000000000000000000000001435730362100160555ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/16x16/apps/000077500000000000000000000000001435730362100170205ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/16x16/apps/peg-e.png000066400000000000000000000010141435730362100205170ustar00rootroot00000000000000PNG  IHDR(-S pHYs|4ktIME .j,PLTE.t*})++---.?--./$L/112333445778999:==?DDEFHJLMOQBMRTJ8f8i8l8mUw````kkn҉։ىڤدݱh[tRNS =v bKGDHIDATm1NPEfM"Qұ ,: |_#/1)1 ˺p?xx P>}ܚDs{YӮNG-D4SD%ulݽ/ \`H pjIuQj vzmv^E &Enr_4b"DcIENDB`peg-e-1.3.2/icons/hicolor/22x22/000077500000000000000000000000001435730362100160475ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/22x22/apps/000077500000000000000000000000001435730362100170125ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/22x22/apps/peg-e.png000066400000000000000000000014211435730362100205130ustar00rootroot00000000000000PNG  IHDRj pHYsXXtIME #nPLTE+){(+~)*,+,,,,-,,---..///0011223344556677888:;<<<=??@@ABCDDDEEHHHJKLMMNPPSBI M O Q 8LLE'['^'`'a'b-S1VEnEpErEtEuEvHiInXxbbbbbbxٝ՝؝ڝܝ޸tRNS S^,bKGDH IDAT}J1 vڝ\у/݃7ջMxATf4IWQ2ɗLS+ 1,"<]g_|7wӹP0NQKLC6O]8@˚IUM)v;OwݏW)zݒxuM*. +@hIW& (FRҏ|gb^ !>>??@ABBCCEFGGIJJKKLMMNOORR5;D2J M N O:ES$Z$\$^$_$`.V6b?k?m?n?p?q?qMmQpSrY|Y}YYYYYttttttt؎ϏӏՏ؏ڏۘҪ۪ݪު઼޵,ZjtRNS3QfizmbKGDH2IDAT(u1NQ D͊P@pP :3E”qĄŠWЗOt,#x`~wl# B/(_DO} L:%`}OZ" o'ΨJ<DJdnQ{<+|( Y:HC"B!6@oEo'z!T րLdEwA 'nį\/)-PF3}? ģ.Qy(.P=)]_ #EH'{ܓW xSbO dSBX@op& d|rx3i?;`+=d!?AʀI@8C2H$.KxpiݕIE@ vpT4TDy" o'p9@YM"2`kT(՞?o#.&Ԁ1c3jƌ1 z& hj@Ըv`gkZZځ]׶lk۰vv}ckmQgA57o'x'=3>r &F`⸑4~7L7Xv` X ,_Wm)AkYxgE>(K:@#. =vcpȔ=q;q#1bh;ݸWm3{ O*Ek*"k5( 5uDvÌ汘1e,f4{/ X,`7 )AW! O}.А'75ނ56G 6OY'ZZ&@\ાZ2@nxo k# чc#7ҎǞ~= /x 60yQ_v~g(|@,~`/O׿S쉆 g0]"9mpuT*ܫexp.`5 >*QOs$z½Fc'ჳ!M/ ش{E2D/+;ĥ+ 3oNppʱη3ةp7pq+}g{"03b:]g~`2|;1\Z^H߱iK nKqKKڨ/.8W z5Ps8_3j0934fDs~koK gw#" y?QC@fY@[{EfVuZ"_S"  ~@W}^Ԉ9`ΉSvgP*?֭+2%\?\ =怗ƅ" Pn%5˵f?: cF 6%!^DY~~x`J+kWJoj5O%@c?i(|8`7HO6 e7,²-=k7xo:+A:]/9q ̞ SȆ :*bWZQH I^T+=~L=; LL~(&x3E .z\L@K |@DOF,gw;@ hR@90yagk;Y "cY -9Zٯz!pѿæe,†7!\WϓغLJf׫'P7~+|=wo;LF;1dNR*!5׷} z+|/o|]ۡ.eM.wZFv.wik+ӿQeOكc ч<tw fH_o0-% E*^oy/X9$PwBuEq{unӏP3`LuTF Q~]no$zj7܅]6'|o'NڟD2ֆvcr𖰒f*zw?(#@\/A<2#SD]4$R ca+q l~~;Ϛ?cZԞ2& <.U0l p}ͭ袗SX)5ch-<_=g NPRX2绿TsB,0H@I 8NM-;j0‘I$;O q ţzT\ǰA#F$7D^ z=M?e~ wcܮ6zJ|K,H&kנEkÏ%OW7cFk[42 tGup) :Ůz'v8Uӝk |3 W0hr_&WBx@ ny_#s@&) JA |7U}/~YC8le$ Vrϫ 2W~ 9}R4e'dQtMs}6Ζv\DZiNVz>uWzp5̞w&O071H<[cq:Rj\?X=?4ѽy = !,H:Adb!nVl +&h2@~IR_gVu -{߆A_S˔@? ߹~! Aiv9 j4;O< &4 tۄmn0!7cҵ6&`Wi" P%:\w'/y0a=Hmħ/rਫަ3|w26<5TqGyln0 dsf$L}2ɮ1 TǦO0A p\ l@ߓ0Qxc%jG 7#Pu$b  e?lէ r"̟]Ya ϾI" 7U@\MpɧR&̽ܝy Ms}nDW\v㲟=|" ?i-Qwӎ(Mʋ(ad!gIUz/#o`9k6T1CD>Cq|}jc&`;X߅:4?*(v`$L$kqC+ ٳbE E~*yo|c0rT.f`) 3PD}~æ){̝=V4>f>!MY[ߕ:Х "-|\iA7MOc4+L"^OS>']Nwiew@t# _5(@ tyF8H,Hs?N`#j 1jlB/ي[軾^4aCcx}`Ή1j@Mmhخ,q|@lВ;p=K %Eu~48l^HY@ /TxV$Ww|cB ^CЃ_S! sE./`Z"4}cO<~Rm!HU" -'f ɓѿ_CmN*Oz3ϚHl:LvzΰOaOI 3QӇ0-mݑiU(|O5L0 ÇWx,2/2mځQ_<TZ0BA󛶶W-Kk¡" wd cF R$*֦LBv?q+ f77O^p cޟa z 9lh F} q} oJu71JFk%`;+KS/R^݂|If#31VDakݙjpA{a¾#$Uvb]pOj 0FtrLqq?g2 g8 Dxi#xfmt)" WЉoJ ;ߺipe;.90SAi idl˙ct:OR3Q= 䉠HSZoh)T@=" gPs8 g'|X۰xF_B_Yc A@,UU۰m{A0Hz^ӑOwzCi^" ap_M/k2)#S[)/@0ȃSԤF:K҃.nk]w9?/z#M#=w$2ku 2RҨY}ʀ HnQIw)$\AW_ߎ4* "39 P>'{Ə ƝBs xJlxoiN?!.YVnpA¥BW?B0x`??sPȩ y2ԁ @*:%1p\{8󺪀H (M@Q{*s/ pmG+D^PzTsȧ׵0s꘸!HmL>r 1U" d dq~5gB] ׯ6,`"ߗycGŒ{${)d& &;,&j< )(R..} km7{v$0yYA6Rbpt9ɟ<|d2@ce@UWIsUJ TT@;[ȢATT@r9 e'4;;/pLgC@=JITtAUq`F?<N_%U$@Z~ Hhӂ/oƋl缞'å%OZY^76xcѿ_H-d'o? { &M#M?7R#. liϮA{GB;!rhk8ED ䷎!QP9>yVh9(.sH$;\ר-,~" .+|o'a;Gc&$'  p)VDP0 ܲܝk u/$ '!P[b_ t믉(NY ^N" 27^܄'RxP 6j@TLleE}(=7Ugmߕ-ODKG#hk Ø#Hʍ@  _@K.nI ieGzV/Xvxi32l5y#]!fb ~#0h`D49ʀbTUQ@"T,;[lU.lю_܈JR]" 痍F`5N1eh=}Iojd $`8j]_&9T‹ƞMŔ.Q};0Œy E<U(Y+h @V0ghs<W c/YAt>m[\t{&At^JFѾe=_3f0v9@Uސ U&50"UuYtK*ZAI:_a'^^ r?K";4@@@W C\6,Q NALB3*a VShfsN)'QR/3bڞ~d]ށ9@ Q,0rƍA=rY1d:`Jb -v_ݠrD~[a՚1vD.)  r0PDw` O@NP;}aN0wx_&u|f߿̝ܯ^-1lцl|@]_&] >ca`Fa k; 1@WKB!-xyjZ;2DDe!Xjl'(b%@Oa*Bk#20Uο BxU~3Svaͺ*!_IO ΛEU)0fPhZ0jxҤi"D9y0L@s4oϭ΍[[~SKrߪhRṂ  _-`*Ah`  LR & Xs&{3 Noljm`(9] 3qЀA(JeZO%z p*& A 'U*؂5T;pµE=P!0rX75KyZ2)IFES&Q_NQ^UNځ [Q _o+D>V4 SK}A`F ԯKJ+ r}I9\TWPm)i Xh@{N// !u{l/oJ@'E^W4$  nۉ  Td]+%;T ~jBh`6W?6[2U Ky$,A_`ЀF G7ܤB@ s?Wcu{@G hΖlٞoEMs&"&R65Կd=gʎ:'2f@֙~B>Q[p+ҁJƞȠbBQ ˓Av= Ev3oj-fUl9W5VKiUTڑ mSql(Qɢ 6PpX\_ @%B~~ &azDT (L=#335$*A&@k[j-1?3(wP-hlΑf`(71 :LIJkAYTRu@>w"nMg (o.2 ʀ?>_ :*Uo|7"gj"{xtFm 3Q LA{ n*`~ٚ~ɪ@87g+i=hjgQ9p+ѬZ"w Mذ"`]ԕ,M?Qŋ)x*Y:6~?E4mE:2&6P@ZӏYҳ-ӱȠ2pMSW`]uLAra.(N Ubkاmk_/* },Tf;H ' %f!vHz[9E,J~N)Ƃw?$spR1]WTmš_ضZg+ 3PA(F{2LAR/+!CϭWJB5+`C:[33I(+({Vץ6`))pИ JB&Qߠ]!ЙFο HW.ϋL&?'gx&P1~,fMY(SP9#@'3/oK.Ufg.23`LrQ BU0ݷ| %?[I(,p*@g lW+! }Qa Rd~?U7_%p͓~N"q9%DQ sƦqπ\2#b榠#PgS+ 8Ig pIY` @y~V.J5,-%]G y*@%2^!kE(ĕU ڷ8`{ 3iBH>4Yƙc"L% /]% jp-S#>Iԕ]~`X@V$rtDP6:@Wd؂TC2b`I$KM?S_$KFsgrofk #$1l' H=_ќ+95KD@#@@4$[I_-Ys iqX˽*lH"gLg(2w&{U47zhA!@b_]yFa! Y-.J 03=WqH ]MQtY h=F#}ʗ4+ IdTL9TXuJYF@QX)%$P0wGBV)%{s,y"|J`;ky~PȟT hA#__y " Xv%_yE׌+!L"|oW @צ(|@OJxԕIzq4 &^ľ" E &ҀzEzٔEd_" /pՌ`2@Q4!50 0 ҁNa,pi]@.]7uipw&ʁZ0mܤX~"͝ N#|~X}% pP9b_2" 7 jˤ`zmNS: loFq MELFx9suuE1 'AYmCPR'F '~Oµ{D ݙ&7-8@Y@6D` 0zw+4,ξ2 K;iX33Ht jg3y* uI1 \ g90q6 v<$q+pRd/@pb)yd5޻m?Qx^́hAyPio{Ɵ`AjH^;TDSuM1 ̲vT"N⽍HKO-4d͜,;;p,'fuXLRI *{O':0)*cE>+ |D{OG<;8c,;Xer H\ӎ"{X.̏tO1'qZˣ;k5HvECdrTXrB" zDSәpS_aP0˩O}p^]o-b8 ۊQ~V"#QȴsdDܫ2߶t4`FŐ*)lDsbˡ"R\Ia/wKp%EKAsDސ+ FVh|o,7 ĿʀapaDPI"Ryҟ\UZI]WZgnq |m=t~/z\  ϸ>f 9\.'(D&b!OO /bBߥܗo|NdRH* h:m,r@JBDP  aQ9y.KwX0R)F7m5vTRt"?" ?W &-7a$8/鱁 A*5\h耜&뚝j~k$pc$|վ~45Us2']%(R9" o,E@.} DG?74X*@@O}D`Jhcb5^Us(`K&sK6 rVKݎbsb@_J 9qO%$j T`n&V ^_-˥]`hO`o{#/i?>U{UƟ *SCCgXW+qO$p8@Q{[Ր#[ڝd!7A#:Ose".[#z ̛{d 4 I =#X+@%O{A:uW o%$p(8=8ålܭ B]Lmʢ~"p ~C_5r?h+I`xz^BiO}d_F@ Y 07"?''K2@Lzpg|={Щf^d^UHQh)qVVIigժkY3?vRDC- .? c%'h3ßm  qa"F4CŔ4p\#z$0&f ||X S3 d[ å&nu@W &㓅3[eqK]VJH<3>c &Uk 0agkIoűa&`be@g2: ! " b>K0M}?@!XZ"]C$ od[59D` PDUuz#:>Gkv.(Av>UI;;L|2A7P~}},G)_*2u4 @gI&T.[o%nN^o |ORDj( C98 ^>У@L<L;&l54~93Mp1shv&T?1" -b UP@pT?K1lZ?N]t =?[ %>@e{ZϑW@O`~_A5_#9-5`s2" =8gT %|^s^K]V", ?砒21\N5`bfNWJ=}YHAQS~-IL$]:UX&]O%>{\ߕ9 }F3 SC tS f]ܪ\q8]0tYGec'd8;: |2_R/nb4&58zГt=9Gvq> F$V`x,0Of$ɾ!u+MJ8 @)H uX}c<#Ys) j HgҴ f[͈`5 >Z齞ܒnxʀ.AZ^Ag- AF!-z~gqn'H\eRDolRZS;#c Ȣ>zJK\՛{< `LgXO_PA MA+8x$0F;.22] [_I퀸ܲ W AڂR@4˽ptL{(E>uHG,EJlį\/)-PDC )!$,ۀџ 6FQU F8#&?Cs;) 7ŠUD:`2:v rem_ECPWq E.O}p@0/!џ6f#{8Jt# q6 A[Q݉&5{O~ X!d pkˀXZ=`WzR`IQ'&W20t~_6Xj X`__Ø & `(a?ih^?=c/O~'_~ /_~y/<_/O~'_~ /_~y/<_Eyuպ%IENDB`peg-e-1.3.2/icons/hicolor/32x32/000077500000000000000000000000001435730362100160515ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/32x32/apps/000077500000000000000000000000001435730362100170145ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/32x32/apps/peg-e.png000066400000000000000000000023741435730362100205250ustar00rootroot00000000000000PNG  IHDR D pHYs : :dJtIME AhPLTE){),)~**+++++++++,+,,+,,,,--...///00011112233344455566677778899:::;;<<====>>>?@@@AAAABBCCDDEEFFFGGGHHIJJJKKLLMMMNOOPPQSSD1HJLMN3 4 DEIQTVWYZZ.^.`.b.c.e.f.g.g7_8\=aBkBlBnBoBqBqBsBsBtRqVzV{V|V~V~VVVV\|ajjjjjjjj}~~~~~~~~ـLJɓѓԓՓדٓړۓܛӧڧۧܧާߧહڷ tRNS2@Q<$bKGDHIDAT8K@- x/`۸gp%K&1&T+oPX9_n~בAk|w:_Dq-So@n8FUV?fKyx@KQT/ ơGPÉ w){kNSbO6od5վ 1|&f|\ɲ[DzāH 8_bVFZ׏j\#j6٥}KPEKMIգ 4[,F*BzXpwT06VE*Cu[!A8u釈gU.cT5: HVЏYV[U%,q9Ł֌Y bcTc!0qTה.当bʘbLs7/$OsqSk0Ǽ9[nv*[~?/PIENDB`peg-e-1.3.2/icons/hicolor/48x48/000077500000000000000000000000001435730362100160675ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/48x48/apps/000077500000000000000000000000001435730362100170325ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/48x48/apps/peg-e.png000066400000000000000000000036231435730362100205410ustar00rootroot00000000000000PNG  IHDR00W pHYs B(xtIME 1_bKGD IDATh[lEǿݳV (-HTUI@ ^x@FĀ&@JŘh|1@|@ ^ * Т-Ξ tw9mPJCn_ ˀ^: _n O^NڻCρF:6 +}ip  ]SҍW5O{"ﻨW[a=w]P߹ 4e^kPW2a~d܄ѻN70 >]0Z@R}L}}K_6$ٰi8L +l$|!? u؁[93ahdt*U9v] {-_!p-+È?Mհ}O8[u:Pb 7 -S槞1yB)j&!:`\ RpQ|pL|~1fh@iDD\ޮkXrUJz&0Ӡ-s Y3^`B.W{N2.+ݿl̝ ]Rp$F]%PSnuQ8ap :: P=M{߫[b43@9-h`H@ 4A<,Alt?金Qn}oj[8@{:/ -w5z͚.) &ukoa2oVxk _=`υy{=4OC'IQ^|s3#bpJ{7Rx{[_Q_WB0{D ߉[o<.#xD=5I !Ql1rtDn'ˣ 30Ik{C Hf,W^HbVFJpYOC*2p N%Y T/B&a. K;5Eײ'2l%bORp(V$3/xvRXBt|n%x3gBMb%Vv3isMmY1yDȪ.9x9i115%*cl=Q0 G3+UN&ZRjhf(BgҊ[REz%3GNd<9|[\.(!Hrرn[% -OBkh%NTh\Z;[M\x=}=( [׶(mG Ǽ/1! GnZls7Q܁[y-XyVds"/pSשz fG+QDu8GLGLF)Vu Y܁˸{R|l RWIFw1|cVŷE ,mƬ`JD66Z)켴R1[I6&XQS5>U"F0Cf=g20{o{[ww|t;BQX8 B!B!B B!B(!B@! B!PB!B!B B!B(!B@! B!PB!B B!B(!B@! B!PB!B!B B!B(!B@! B!P"Xe 0@(uox}+>G}m6-=fK0& !':`!ѧ?%Z Ȱo1G-2\uB@I Nu\Q >)Rb?aG!+& < |xf.B@$UC|;8‹?~ -|Dy lT OPIk~2.I?m}._(}E 0067v "?f$RQLL[|1flM5b<%BB@-q <'DNJ'\(Ecop-ꕄZWσeBtl,L^h~m@.Z:;imK=wIK[9}-j<Ȏ=j<=q[!eQ(G[ aKc{KZ~U@Iq+Q50rX#gԣ8'.v6L=A3[عkZ dxf%4pn6$D&/ngsm`6ڱCWĚJjap /c ;&664Q{ٳ%D(Ǚ@| |V uV? _P=qLd/5T 鯃* AC&viN#؞없ȭЧtT q<#;O"ğ3sN<㪨dJW lW 4]ڸ@ n.m:Mg'HH2fO=9S=D'K[{7f7`ź3fHJT W^Q#K:?l Чӗ~̙ͨv"?a W9:"|d lںގT(X! *RVg W(lO~L?A_RRSN`jLf֔jW#v7o@V~pܵ::D;evR}2.3ygY'1pYs  o'_~n nnش=G&2:t)7B¨_I]z*7/qM( `l~,WҚC[/2x'ՅS=89\m;V[~:! stp*;&B4?z_?'lK'aV:9||=`"X G*㹍:vDf ,gR0I+J\sDҕ;sU̹sO11:6nG)>mC{:Dzo6߮' s_Ё bp%&ΙZorNLdG[]/u;KmZscZ@?ñ/kSJ33'Y`dOI̶DcX&*N sWLL 4o~ VwXW30طs_-m98/H<P($^/Mg0)#qo9LcmlK\0do,75Y[q}$IAu A]'>_~'FqcQ|6勼}ˬt}'gu9wu~?oKKZ +*O^9}m?qY0M2GLUF^U{O7Ie5Xi8[PG?>>};o$uG6U L-_WZ:|6*oBe98!!%ٮ6zB &sT{W%I!`)㹍@˿l"^Tr&UC#n7i#x'r5Y|o2$SZp}&b:+V" *pݡZڧ֡ulkWnqloՊ"(r@eAAf#Bw|w琒z$e.]YW<`Q@gكN N+RcYy>5b܇$m^ ~ ^^K됀_R]$b qP|`Hck7sw) (-s .7\܍1U2n' NO /$`FO? O?.?BtZ$2xf]2ܶN<^GUe+w6;7p?A| F YlkB{љx}򼐀Aq:7oA?#[G k}8JKT#CM( pO ^lyŸz2<|f%w0}*$@kY-'Wk W ꆟ|p8IxO1P[6'o/|tBϯů* xu _;p]pFeR&rXx"9>G}?ǣ#ܟ-' P8Ǜďumc$$a% 5g(_@_VZ.; X4GId5X)`=HZ$@qTP)W% !x8騾] W [@$oރA %S3X%]h]?4v GGuRMe F (pixٕ ( lQ&VlG\IB[ 6fj9x[(M>P^ {&y:xsH万aYek>Ǎ HXg#Ð@}.q0SK<6`'M)/Q{ F Ks 84 ,cFƅg M?YL pM,  vug_zJgaʬiS)P+.`.6p_>/\Ĥ@ڻS ap{q%ZͰkW ~4,[9<] 0,+/$-w% nh4(9&J&[ͱ7qD o?-X|#n~pX,KS(Dp lxCz3AQ9HK;sJr}@̶5Q==Sq UGw@l(jeV-KqǠcV٪ :9dzBaӭ9N+x}Qwົ5 $`(4 [Z.p8%iWA"`=0(/ʼ7"OiÐ F?-xaR<=yk)$Q P-p+k_]FP* QfU%#Wۖ Y}BsNszS|Np[uy3D86^ _&?{^ߞT NȋJKK~ֿg(ogq\f𞇟Q` #Ȼ?8C@@v1x?:gbо8Q:ȋ82-zPx/.{_ ȫoާ_Ydp@&P?jP'G `9{mD moG~#8)`Ġk:}zdzDp+ϼXP~GqtM MXl__5:-Uhܯk,r@2'g{p 6l܎;rxmGKhZ/_ڷPH^#92EtY 52kqFP@qG5^%?O>rlPx@Z#@/ {͸ {Iحzi.3o0t Z/Q#K(t7hB >>T ~8wGu D{;]tŒdf+ombqLcP:5vП{]oij~ }6ġG7 PxWesN]%8w_bw'P `oL*lVYܖÁ :hk@`mI KN.3ֿj<"svs[vk/w P܁U'Yc-^/t\ pn $9>O&lN<= @M\ ߊP%Ѫe&; BFm~A9E 3 ɩgS* mN=v2 Y8-%G|M֨){P)A0q Ls>Nl'2QjDo ا=;/Y;]QU/0J[ە .qk_Y&]vȫ әd#z?2+SG.@dh)sڿ]`/ m:D! 4XXl~2w6u ؈M[%Gg=wC]_ >%5_옊^o6BIY]Ȁ2\"8W1 Ңe\&qSQ=@)h.Ե  [c@Z_gD \;lH7إ:9M0nA@-~>C.12O@giP:~AADpfk4р@#xռƟ(ا#s—$6g(d %jh;Mkl& PcORˀ=O3$൙+Ȧ 8@!u9Vխ=Nĵ\ _-ֳ7\1??[ D:xi2X}z$1NVȋ# ;cBϢ J.4Sd@Á8A^Yqqcwh0y_Mt$HmH7ncovIq!J@i RC)(?eJKj2 mPJT$IrrAA096m-1[8xܯIbF&d9p8+`U?믍;\_c@V?ヹv`csQ\h{7) m5%0^ z5UGCLsstsauS킦Us(S VDC{aKn`P+LHzY \@?Mq4=?^@]ߠ,нs[=w:& 4{,s0Py??z6 0X~+~.i@u}@0(+-T` :?wUuXVKOdFtxR{RVsM!?F~@%H*QjkI?@uM:gqX:>A]&Y`y牣zm,PAHS*sZDG@9|Ô?M&Z v+ ں϶ac?ُ;  ?dbwCtLMtP9]0T~3=-l~ry^П"Rłb|BX܁?R]Xgb쪮ϽwzA]tַm!?`fFE_Y<=mIDi<`A 4YS<nLJyƶ @b  JK%=}ίHfTHݐ?({_0@Ym}Ct wpu0i;o {-/V7}% |b عǣPMPk[~Kxy *g=e 3)'am/ɉV ^S?C=L@M|KMH<_ޚ8>Ξ_ E/ip/i=~b/fv?5_S֌U @4z(zxG'-B]MC0̫G n{ ny;3 e l, QPXgk+# X&w{%}wyo@M?jx 0{[{Z-R(52Iײz> * Ϡk yT5M([oX<҉aMߠ`V?ķ78Q]_/p:ĩe{)ȟB,͂Ā([L 4$C5 5W ` xYE/%$>?yc&$o q=)ߏ  :)3ה^1HS- 2Q*FO.?L3`Qd"w=6!2y^ѿ.1h㞃shE=KLOj p en PG.{* My}TmICd%U/w`ܴo&@F@@Z%+H^m}IRPWO ϋޅTGԈN4ubN. ulJ;(ݷ~ ݉=p|.BY uZ=Ϫ Ȼ& VGGJM>}!T~Kee MS'3Rm57C`n{޴]m;:[ P3 J '7Qp//yϭ` zk_IO h=^/ގٙI(IM$_ `)hE>{[Gyn49#3]X\k{|^6k|0qSm3;Gg=F :** WTi_saQheG!^ Lw?krR 88l `?!8p ܂lk" =/@$rNTw+: D '@q pUu3qp ^{M~ChN?w?LZm7?#wu"EDAJk)eeX# H,&'l"`^sBvp,zA&@P&@P-"Ԩ6ʃ* ! %A@Mo8Ri#Gzj|^1Mo4FxF57ŁgH"|v:(r8_MpM V _v@ ~7.ٞwE/(zUz3& qO {kG:i(`\YS>-}$2? rߕӷB>3>c'0=kO$7Xi}h_1]`"[oTkF 9 l_C` @p !-N r:B`y+}$æ+vMO>x&'"ܺq9C;@/H\^@\E`V?\h< Ats rx^`0H-`u-#?$nC Wep@61ā릑J!x%E}_s n.1}R.("wt%,,:c&{5_i@>x0U k77;.iQ r &S&f|O$ܜa>y4`ٷVY{N]em^m|p 0x3\j4=a2'g8Ys$䀪p . hL OG! ? S ]D,K==kCw O$l pNN Z7_7AIqD?g8YP~Yjϊ])̥Q~tF*#Co_`` =6O5`4sj828oɶ#¥x P&ѽ 0e:Z&8^{>(DRm~e'okb`~7`42`*鐀^VMc9s!pS 5@3#|6O1 nld-\}V{ub A*貢Abk M ߣ8vD'* 'D?e/e@~8`(N ]%Zm thy*Z/űKS_ORRms M^AAz&F: _:"+@ Ep!(qHrqNh[y^G \?8vb k?44rWmn_WY&;-Ԟ)Z#ts}^ RV" :9 }FXHrO*iG`_jo 袢2`&!W[=C`r" FsWޟb)EV"oA83\$) Q*S3RwN]v}O[9o4j `.%/ Nt'[~"6S ?EMp) Ľ$_5%}1UܿG÷({@oZ{z+gEb $~!W?FEzuu'Z;ύ!5rSdE9?Co0Yv?Hqr"VBEBx&5jM<6o;`r"bF~8Cwq?dPR8B`߬hݏdc $`=))RVRw"}F4>i ̽]Q/y1]lvG(&GQorD!*LBz#l$"y5= PN[Oػ,?s 65j`o~HGaͅd`5p)gHdq("{UPKYHw Iѷ_ȿ~ܨ~Ӟ }VI I|SC. `~{i$BtdvNpdb! TR8GL}5+R|3h=W>8K1례<tP Xp#cJ%}G w'[D n@2 Lhy*Fe%5['"5w(iޣt^Z/^rs*(&5& {s8h^G?Tk[sۻ\ew #Z$@?fel"ias*H7?@ {7)qvPM0$a eD/;uНh+J;`h_R@75M0$@Z/@0G=#NwiǒTD#]h]QH{)+eevN\$!Dy_>#`a7 D -0 }&g0$On UI >=/cU[-f3ZXAp}M$1@x?K.$8X>~SH0—VX\g]mrE:#[CĿ!8e^r*N ۶(HyG/2 =M }^kO$-$e59ԃAXI[VA/KU 67`H3-PV,0㹉k:w`s{L슀P_@t S_.Il4qv,0U+J/?[I< 5İ X.Xn"1Zaf c h*1rrti0(  r3TXkjOyoH-ĵW?$^`t %mOZ f/m/!TB dA=F KLjzHMy#)|l t @h*}>9aFd\ʉ q IHK M P1с~+}n~r.&N*,PY@"o<t'"t'ڗL 4wr82z>ȋ"}?l곲Cz*RtI|xt^rA *-:H6C2@IRS eE\CwJy O{WSr WCul? /#U?-nt'ZhE?)#S#~͊o=' p XYgȍ*U$NA=T^P_C%t.ss_M03rJ~|@>;B!(:2zkz0e|$~b uH ~抨@aB5-RE2yϑ?Dv# _?b'DW]G_+:W=/|]߰INgH ԤPv D LY, X M*@`M3' ߵIf'%*i;?+{4dM@H?Q(%U(N"R~jz+ ي0?r6sÀWhucLڭhICL1H{/I ;HA!È?¸U+x&Nբcjⴀ2y"* O%!.fZ .~.Hֽz@^/#뗑Begaa+v ,̫ (e?lⓦC$_`Z65# ()_BZÿh-AkT0+4g-@p^i5eg?bNjQZYG%u2էzZڒr|偗M[6;x07C* P J (FܳL-'9FEzr%B=T_b~=M7;x0׍(\ir(W~)J@.K'\D$ o;!SuRC$~Ӏ"d2K }BjA=w䀺AeUh }"< #eq=T-PIkl+P|]b psAm??U: !mnv -a @I@}?M Hb $#1gR='%@"lZTgv) ŀ$XulmmVh5Lm4-#Z!BMmwMIm+m]h`%Ah40Ι9g}_?susNO9j+Fn?,j'I1\;& hb\pm g@PS~#D@@tBqo[PoP%WKŅ;c*Xo-HmpD'5J/HM+bXwXf D0P: R)gpm~n"V@r2,e(lA?` p?e >Hh "jBCe Md u }&XhF,WiXï} PlIPBG:C o%8U~"$o5W{\Ov Hlp) m Ě9v~ %~ ZUb55rB5eKjh/a@[k Ugpg#(V*̦``Ђ_s :g)vsЏv'U\e/][ \ `@M1>uX ?- 8`#*, !,WqWk,߿:t k݀ۺ d*%P)8'5N&U~Jߐ/q$/=o෭>i"nLK " RoBk&+tCv2t ^)Nm  XR[ ?p Wdj@ P7<X;\ EhEζ%`V/ $?Us @(Gn^ @~>/Z;\ ;X r0UGJ:(! [h!,{@>P[@pg*Ny!PLVNf~~@-z~J_- SI/=P8$S""~@, q pt / `߫ğ{8+82\~V_` }ovA>3{|wȉ0*$v O H(pLD xJkn_:l D85qi_ n 9`},E-$uOПtP @xV ޵*SKkJ+M8` D W.ë {C eC|,NkJիe٫M~?;nH z@33ȢU?gU%~I`,Hc[:@D@%W/ & 8nAR[ ?%i $+}Kv\XXHL@A-#][@s "CUj!fr: j `_K[3 6`+v狫1B|A\kďFB.`%0_q h (+g9 `3n'ػ.O YVNvR܁`_ͬaB6`6mv o_+X8\f(p݌ dC>/zxOP0 O@7eb_ EZ+& ;իzK 8tP-<?ۄ݀r"h&~h'9.@I_^ÇXeBwA]aHdڹ+G Dv5Ѷ@ѩP6wEb߂慍J.T-HY\kϭ٫>,\Wݠ#] i szOW ~sc7v8 bˀ*;~# ٢^(Tg 5(, Iu ٰW6I1t86\ثV SrFC"Zp MCla쇀/vU,, r˂46rDDO//5, DA1\cp=~w=ž01P\%2@jk*^apWJbh54EP` O/V3 қP$Ua8 phBة.ESb NUo-CB?#?zwC;Y΀Cv$NJJ@Aik`-KZg@w"@%`XP3cw&n?nVVC3U(`$S"WuEoʜ K&}TPv Szk>F}P-0g@jt4 hAA+;L]oP؇>w5ңܶ 8/dA@NLT`T΀Q%B1x*IiqQ@j 3H8D/wf?-H3i7OY1]{UD| >GШ$: `YحUcBu$vQ0 4:K_dzҠ(l`ܱ,1h*7CQi`TA30"cHY>ܗg}#o+,¬l7oho}1iQp-=W+* >6'aᅯ [|t+GctzYm(WPKYaCC2"'~P`N(PfеxJ ~_:mY.% Z h R@ 'Wido˗V u˽zPpw L:k.ܥ]ؒ0}ꭆ'?Ʋg%dj[++bu/_b\8C`I؇~žh30@?%v ]eܯ6(@_k {;ɀـq 5/L_K9s`J'A@xG*ܸ |a?ꔁt(0&~_,z SctCzcC)B<fCsm~5v%+dc6|aϙXN]օŞE0)a ` ֵc/mn+BlQk @@ݟo3@Fc|pOm{ @k^[kg DŽ_ r/(Z$?xz pα]խ]H*njؼ5_1sMkp>Ew=-xzM0-Vl# bucŹdր =a51(w˿*iU,Y1/f8w=od K1Skk#nيavD[{Z0:Vv-z[PV(b{: |1KQm# wH'?!|K]?Mm ~p7u] ^gάg#έN-1| pO? L  3?DSşh sk)JeBJ-=@>k va=@b[;B?4G _]vB[Ux_Д6g. sVW}A1']G#-BBJAY1[:&▿ʱ=~)n`HrAA4 ˩̕l}o86h}x?% %?y`;#X雨TWԜ6 /.;Z}vW4N(!ҳ놑? u+I-"Az ?&sY&($Ԣ ux1Sц"nA~К PBЏHh LU%Œc\{s eৱ0&\R;xl@p mnW".{)VvowO Ll꿷_4쇀mXy> T0V3m?WC@#9\Vb @{:cŃf܂Iug'dJv@k@ տJ_|8>.Υ5X{ʸd?9pB P`3T)o5 3ܬb@Nȯ*|TWSקлu$pTA5; U=sˌ]k~ pu۞YuBB*~۟[sA ꧶R_/l|￷v{ E`;v6!M Q%k3+~J "pFMG@l_Cտ]lpkTˠ?u?u/cu$p$G `9^L_^&-1}A[MQx\0;3ϲ΁3svsDG ϗl'X)3N{ 1x_cQMW`3I))9N@X ONOzK`cv!ཀ 6*~I$N+8Q t8Xv 8ⷶ?(eQz@87b\UK=ZOjYQO;ϗ֫J>ώ>\,m30a-0 xnsěR}rܨ#`߱8\(?MF*~u0H VISmsjj%8={v ; ^H z_'8i'@ ?%(HVW"ur"r/O>zA~2w$pύwlTg?={ڜ n<_^M>63@.H=(&]\G!GXKWb5rp*6NFh'[)B[K]ҢK}O Y$-#!LڅˉxJ,H {{h_bOdOaH\e?%?q*Q/Np'H ,VRO[9}?'R1 9dAfY= M 1>k݆_cO?_#UrE j@bU^kJDwn ,̓t@4'TE?) (s,~A;IfSQ'`9pSb-TU%S, % q`АQ#\# i_D|U˶* AZYHqN iv@wJ#~& J]t/Rr0 ۟c+Hn $RlZ;@ʗE:}_M\6D<} UY/$Umܖ@m Dvx@#Pyᐆ羿"lxr! 8J-WkxOơ?$F8IEGPpik?*=\!;UG5`%0|V `(U$l?7)\ G-EE>wxA ˇ_'YimpĺV۟k+j UVRWmuZFLɐ`_g+Z ̹T럳`/:8*Ы:Wv8Nt/|!۟-S s"/xTϩj[ :9!f(%<7wAǽUKtůst9~PNOU)ս#л#I | pǪT; ~-TXuLI#T6dJU׼1vX/ vJ]Bصlx VGE?WęK @zp t„(N U`?#~#?u3^CnckZr"Z@kHwAPs)k׾; (6[C90[k L+_ !T?#zpr ~?[~ů}oir q)? R }@9 Vս)r@p^|p/)SSp^jcz.| 1*$QabG-g`AP5 H C0 "ZMW?x6uAnK;2p*,w 2u@C;0@vǻ}VӹD' ?UD))@+q͐!vtc]1x'.3+}90wj/%)վd tE|N}+ *(\GWSp*~{>y y.eHVS(T$ @vҽr/*`^z_jKԊ?/uO_ds?U ?/\5Ϗ~!np5.Tv@يVЏi.`} hOD@PJE@E]:pHyu*~{EؗA0Ŀ[ kE* 5h eg 쇀#UÒ*%FJe@Z`3`܀?Eq/wv5 }j{0$0@`5H9q\Kĵ$W u,"_d{G}eUuRP >"j%iգ#"H*6 UJX6b:JhRԉRP3ǽ̼=g>O2q3緞]{\L p4'MR[g}̓~J`7wK`IV]D$*?+89t N @ͬKUk9DHX/qЏֿ941Ds_%KFR K@s*EsN3b3 y>\ӟe1kVW"0DеʵYh1ZU~_0cMT`J,d ]v(x%k)=;yJ0.>F?k[VsW3\ӷ3-YQ~{Qk.Y?o+m&^ 5u?h䆞`r@N@EJ>$aU;S}S&nW xU9F_*?5 ` l0VPrPP),p1B>-WԆ@!0dGB@?uk<G0ܓcS6~?ZDw25n^`^&hv跓׀*A3/5/s۟S`@Z|D`.W^x>=v`p>4`7p|f_bk}?v_߂Mb[}/2ikeT{&U>38trX МU_2UyhA4&÷T1mǣA{$еo{@sTj]dόG€BrۼJ' .z"P'U8F~coAҢ2Wf@5z/#-S &~ 8Bxm $cHTaе7]gCy7Uoc=|^( m}^ Z+۳2` c| xGZ񻃃ڐdeM!`ðq _a>|{R`1>h0")e{7OeCٷx}?Kg쟱 sӴ@ƟcUe{ ]{\Bp$Mh^''j@Jph?!a(-p ?t' [r 8KUIu@ʄ} :\ﴵhߘ1v4ВDB@v@Q%c80(w;7d)-L<@eМ9vbն-_' l4倪=8;tV/4_A4`ϴ\OsbNE UUsϮ&2tLE H5Ҁ `1J)AHT{,P_cBżKU^lp^vHu D]/罿? 4zddgA D>3OO'c<0"S"е7,BFkм4ߴs!' p}W*0c|M}}D0 %1~2<*{'3o ]{i>?olgaT *@҉X{R2XJj; ]C|!`hβWK ̸A?T\[ Ɵmn;c֪?Zyk@\Mds` Xy'Wchk-<0E<7`pAڋH㄀0iPjtOV*Q{EQbU~ (dVUUofw޲i%h+7@=T ` @Z X| +[j7. UeߢIC2`4[/iU k^0٤Knˍm3@ t >0(qS9k[T -6ld$򬊿蠟%xK14kck@Z[hKj)_t c@P`,pb9 -~i9AeEkO?77%t_[2>C'c@)W3(е-) lflL\3`-uh`K՞{ݼTp='4 4 黆~v|~8 l {+&\2FoY߯Q3/ |"tV$4dtOtOͭ~50y >i& $ |}/7=0"A,[M??c]$ jɏ(7i`Hy^>خ xgڇd(Zz k߼{Bm9KF^?/`31Wm% '~ϡ}t `J0*hMޥ` Ɵ xܵϬGe[>)$T>[wbM| ;JTE{r_!$T.戕;|o X ώ8di@3Sz R7~wIo!I v>)5A  >+=wj%1-Qh,`gj? |T@ |x!B}SR{DGuoH8$h=y еOm# Sx4֫sbc߱:?݌.@Z804g@}{SӁ$ 0Gddc$ +}@oI -*4XHzoj:0 @{o<\@Z8(4UN} pyWnr@t*p еwm! eWMAƚﺩ[oI 8xp:4AD{j:0b̺<&yz02vi*ӡk@Hk ^ t_|_)֯g2G%-}?>\z$$={4 WJ BĉQ5>37i:N͑Iߔ:kPܟbcm2g:o ~r> \itKIS. D@1 1i7#K0UۀkCިbI Iy vh~#)t`ckV%BGS+ $8\4h'Wk*eUWV[4V/TI I``mT`ү0d,x`phzvpߴb( $i~0 8k Z AdwwFmz~4/]{~$$ v~.7C A*XEfDJ &C{3t/S& $i08q ovS/<\c9?|uj7h$ņ'o~ a,^X | >t/S# $i``7h_yX:AC;bc=Ov~:$$- 0M^_)Ѧ<)SONٱ|cjׇݬ@ga`WෞOx4yHͱޮ/5I@b`/`%fO/dsy)[m:xG#00fCa/@k2<xvfp:%I I5)8|kaDI|8/ g;mk>IHؠ`?灀ÀW@𗗴 0n,:\GP+p:8uٲmia!$I Ik  Bo~ `;K@xHX?^2~;~v1'Sj]UoI@$I$$I$II$I$I$ $I$IH$I$$I$I I$I@$I$$I$II$I$I$I I$I@$I$$I$II$I$I$ $I$IH$I$$I$I I$I@$I$$I$II$I$I$ $I$IH$I$$I$I I$II$I$I$ $I$IZ?zda#IENDB`peg-e-1.3.2/icons/hicolor/64x64/000077500000000000000000000000001435730362100160635ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/64x64/apps/000077500000000000000000000000001435730362100170265ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/64x64/apps/peg-e.png000066400000000000000000000052671435730362100205430ustar00rootroot00000000000000PNG  IHDR@@iq pHYsttfxtIME  IbKGD DIDATxklWϝٱiqSI֏-TH)HHuP m@*R>&-HTA)G"hi8HibLAݹw^9;G^i53ky{0"+VXR 8j;Z~,GWc#CW%Bͷx#SDe8q0c?hR# ?&7TL}f6 KWnwm$E"S t); lV 8q1;ׯu|-G) W5+: E / O<$B`p/4=X喿;z.8ܑ\no#xz*3f Lx+pH|-xߢ m nuC??z ؚ%1f]zE~{߾V(\xC#0%'ApR{O<$ 88Dʇ`}5'#4x!rY>Kg߀~ ᳵTA3bgkUVAJnH ؼ@ _aUz +#9ІA\ *ΫsO+BR,+=\"/𬿦I)yt`ڜ@~R"0C`@ BFw+@bq!@ Pލ^'30[#8> Zt|X`L Uϧ/> I43>p@⣷\ִcKnXܞjgO^|Uza: @Wap E 8 LE0Sk'pχNODI+{qHܑ @(= 08 #rO-37=\C/__QcvwwTkm ke DWNc=s? ^ﯽ:7e. jUUچ GOJwX}mC(MHP DORdf br%Cʉxʯo0a:C(zGbyL@FPhAD^jOuM8 Ro1ꛭNⵇq~ZC.ItAAN s4&e<fVe5ܝg:ɢ^령P3 nʐh~ӳs077/x!Lpc~f}\Z сZ>P=@{ጅپoFűb}^T h&Gyω-Ay!1ߐDJ?kiВgOA3HqPܜ D@ F jPA8ʐ)/92&AOw}[8# W +}u8Kssv/CAm 2c)g+ =WCS">6GˑrcsP~\]M+#FIENDB`peg-e-1.3.2/icons/hicolor/scalable/000077500000000000000000000000001435730362100170365ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/scalable/apps/000077500000000000000000000000001435730362100200015ustar00rootroot00000000000000peg-e-1.3.2/icons/hicolor/scalable/apps/peg-e.svg000066400000000000000000000037551435730362100215310ustar00rootroot00000000000000 image/svg+xml 2013-02-06 Graeme Gott peg-e-1.3.2/icons/icon.qrc000066400000000000000000000002011435730362100152610ustar00rootroot00000000000000 hicolor/256x256/apps/peg-e.png peg-e-1.3.2/icons/oxygen/000077500000000000000000000000001435730362100151425ustar00rootroot00000000000000peg-e-1.3.2/icons/oxygen/COPYING000066400000000000000000000227151435730362100162040ustar00rootroot00000000000000The Oxygen Icon Theme Copyright (C) 2007 David Vignoni Copyright (C) 2007 Johann Ollivier Lapeyre Copyright (C) 2007 Kenneth Wimer Copyright (C) 2007 Nuno Pinheiro Copyright (C) 2007 Riccardo Iaconelli Copyright (C) 2007 David Miller and others This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see . Clarification: The GNU Lesser General Public License or LGPL is written for software libraries in the first place. We expressly want the LGPL to be valid for this artwork library too. KDE Oxygen theme icons is a special kind of software library, it is an artwork library, it's elements can be used in a Graphical User Interface, or GUI. Source code, for this library means: - where they exist, SVG; - otherwise, if applicable, the multi-layered formats xcf or psd, or otherwise png. The LGPL in some sections obliges you to make the files carry notices. With images this is in some cases impossible or hardly useful. With this library a notice is placed at a prominent place in the directory containing the elements. You may follow this practice. The exception in section 5 of the GNU Lesser General Public License covers the use of elements of this art library in a GUI. kde-artists [at] kde.org ----- GNU LESSER 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. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser 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 Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. peg-e-1.3.2/icons/oxygen/hicolor/000077500000000000000000000000001435730362100166015ustar00rootroot00000000000000peg-e-1.3.2/icons/oxygen/hicolor/16x16/000077500000000000000000000000001435730362100173665ustar00rootroot00000000000000peg-e-1.3.2/icons/oxygen/hicolor/16x16/document-new.png000066400000000000000000000011031435730362100224740ustar00rootroot00000000000000PNG  IHDRasBIT|d pHYs:tEXtSoftwarewww.inkscape.org<IDATxڍkSQsrAR*9݌uS?h%ԂC j=BM%͇p_?q}.+\,e/gr@I0ƞAkmJvxiMΥ%6NO>W AMcX R)o@{Nˋe#5B vYgVD4a @}sAZс[-g8hY0F.‹ݑ 킩!f6[C1csvY:jriʾ`9[p{GdrE57DY{*O{* &Jq _L>AbPHrg5@PeI?H/t(IENDB`peg-e-1.3.2/icons/oxygen/hicolor/16x16/view-refresh.png000066400000000000000000000016431435730362100225060ustar00rootroot00000000000000PNG  IHDRasBIT|d pHYs:tEXtSoftwarewww.inkscape.org< IDATxmk\UƟs$3I'I'M4N(BhТEuUE7 7;EQj!&%6it$s3q=xG fgqÞ]iIEѠ6v]lZh7J$w8 ϘG8|-Bt/B2.VB߭ mW"DN&ZwZ0 i$Yr"HgLvvnJricԴL5)bC5(t'\!FMPe\ [̾pm8> P. OyD\i؝KӉոnZl.&Yr2Vdu\kYSox;\"~|7\uQrkIp,IENDB`peg-e-1.3.2/icons/oxygen/hicolor/22x22/000077500000000000000000000000001435730362100173605ustar00rootroot00000000000000peg-e-1.3.2/icons/oxygen/hicolor/22x22/document-new.png000066400000000000000000000015511435730362100224750ustar00rootroot00000000000000PNG  IHDRĴl;sBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<IDATxڕk` uXv*  "d/QAt? VwUP:h=̥6ٮi/n{ǛᗗjBփvO {_$$ZDKn!7ma=d7Iah@Z8@;}  ] ]?S<,Ick@w&{S=uy"LN<=A#=g!$_5&'2.W\~>3 G?G"C.|{ٲQ(N _s8|$/@W]R-'UHa~74Xףk8omoUѽ&r(ʶk{ چ4"Sw5 "Tj+Pmq=yo' Nw"~w>!vI)lvBЀfwV&wSeuiv;,˒."t%#7 #̂n¾I,// aT*NժNԱs}||G}kڧlW(PxzҼvL6MM4KDtr98xB<~"7ZlŋRt񘒹R]~sfyx'Љx8܄0I\ҋwroI)9 z![Oaݡ"z"0.SuX.azX& '{w N ONT; v !lm XMhDkwǞD\;~D#8`@B TiKqվz]UV dPHA`|2 7aHP@jt4ّHD) lVAF97P/bhM ef ~T?;FU*WtTX$EETP_eM\b֕Rp;Q JFIxG.\.P2U8~] o+>S&"}`H~XȤحmSqip؃dp<Iԕ ZyAUg# yH6O~[;4"WZ_^5"oA)BC4uaΝ l*A[vT "(% k:/#PQ\zV`|Imh"ճeak({bÖ}7X ԬόR:CBK9Cq) kJ$ WVh#Qb!r وlahWCW;6IW Tp[Y0p"c<7n) d}:|8 #9G+qռR'x[e͎=EX'LFib2_/EJZI fM#sqp476fNc&BJA*'CG- Ȃ$qY [Z[JvWámK';"aUGp&DU*l| aUO r[ :EM7n'AA!ʵۋ~>p#2FZARyUxRX=9An~"@IئtuͼV*s[٤tdl0?.ԁOmGG yIENDB`peg-e-1.3.2/icons/oxygen/hicolor/22x22/view-refresh.png000066400000000000000000000024031435730362100224730ustar00rootroot00000000000000PNG  IHDRĴl;sBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<IDATxڵ[lTU>s3ә5\,۪D NgRʴޔP-I4 JJ TZ 4rDCo<4&Ac:{ƄI[A_xZzҨzv>kSdAOTaOa$3ﶻ=a(@g֕|ZhPO _/D*t}҅_ov~lو+a3մ|yЅe&g)D\+~>#a v|q>#bXnطV;f傾t@Ůi^EY=zpC {5]H:Wumcm1֟Y.Gv{6) SA~_>v-HjL j^ɞcBHoN1UBD)"ј K.E#?9j0bA}#9˸/MZV/'1#$o}maXr| 縟⤰EF/)+eP]1(ڧ-G_) `1^wsu8R\ؽEۊ橬To͐jR0! p~D޵<}^³{h.[qTvx1o<侖 PT];C,s*j$a JA iMfOS`5@\0\<'J*Wdg.:_ۧJ5s: }|{ᖚK ,҃)*I0}#nJ+qJWv^zu( r5Buh'B'!c[Vb*K+n܇m۬AI'𚢔Ns.#-"h\ 2dbqRHnM9H>}M:]5YM R"nB?ө(8S98wYGc[m(D31Āp!s码#r?paH=+.\sDq2F,8!y4̗P첫6߅,Oj22',x~JcYrtVR RVenP.8' &xxf[coU0ͨc3 TKuM!..{ʽlIENDB`peg-e-1.3.2/icons/oxygen/hicolor/32x32/000077500000000000000000000000001435730362100173625ustar00rootroot00000000000000peg-e-1.3.2/icons/oxygen/hicolor/32x32/document-new.png000066400000000000000000000026021435730362100224750ustar00rootroot00000000000000PNG  IHDR szzsBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<IDATxڽ[hTW=sIc TBH̓V)B<ߤD)"ڂK DQZO-ATm!7zb.9gfw8=Lp_kuFR_"z2*؍A &8)Cc$KnP@BzGc7(g]kmkËhhӃ5\8,~W2c1uB*%jd3Fn&q1eͬ[+zy[__'r44,<b8!}U65m1=6z TSҾmyF,B@AdUg onEns9˂ht &䙊⩎|e "6A³*`yXq$Ȓ@]~X @/?l&!c<C[FK ЭDa& IXO0R dxX Z)d2DQH#ߕ>Y^8$%`-Mjq i hむ07{AIØ& 8I,*xj`gcƘH ~?,gXdI7zQn.4r-u 3k_,3L(i%Nڭ@QcV^Y PaQ2S0h wG~.RkJee%՝lnn]R)? ~ugtTx ;ИnկJ7{&pc N 8Msv`rHm ›崶r!|`tl [PY&,Sȉ0( +*  |h6}n=2(a,(t:aO*i3$Vhu]M@$ɭ {UƗ;{%PYI*"fddҚ8Nٹo_LJ-ex 2WY ~:2S{7'm]Bw?>>?sޣgGzUX,4`pFpwE^ K d%;bCTr3?߷طyqgTM>:pv}qS˅|C9Y8 "n׀&g$jH+IENDB`peg-e-1.3.2/icons/oxygen/hicolor/32x32/edit-redo.png000066400000000000000000000037161435730362100217530ustar00rootroot00000000000000PNG  IHDR szzsBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<KIDATxW[lG=]5Ys@\h$"xᢾ* T(TD@ UB&!Wgw3Qۄguvf;swYRHor%f9o!տvm|XZ f(֤O=;_-mIc[v fn6lؚ RTcΩyø)~G{6d/\}`OkP t2n(܉":4[Z=^e wk.>5rTۅwb/* ]wojkB)]2y[~vxm6][KKX*"4iMФjQ=Xo7'0g{z +" qwIoњv3V+ T'R-OW%Ld[R]V$N.bFiԸD X#-vK 'z#0 S[J4on É+pPo<#P:e՚ς/=\r.T0i7sX]ZQc_k{DT+J (FX_4`e9pJDP#Jk-/#l ܙz 3b%ֈ;'B hҲNtŭCYEir6a)yjU~+LRdT8+wfm-[$HԆ2qH$Lplec^rhr8NNO]nNO:SJT BU20%,f3\~Yz n5XEz" A{1H%!UR#wqoFR־ f5%Wf%mfD`^wjzfm- +s$&*wnHG \ t-'5$a; |IENDB`peg-e-1.3.2/icons/oxygen/hicolor/32x32/edit-undo.png000066400000000000000000000037441435730362100217700ustar00rootroot00000000000000PNG  IHDR szzsBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<aIDATxŗklb0&HEM|HVQ6<6`5k5;3wea>'ts 13n "?dl-wztvb]H{~yp_mycÆY]~LyqφpG;Um0H=X2 ;o! ЁBP|Uʫ^ŌwFX+ؽrwA۫$hj^;a `3Bŋ|kX~w٦Wf pť=G"3OXw~u-F5 ! ;}гwb8~h]1=o}xؙۛY5S8uoR ;W`17 a4F` 3LtSc/:5@ THMmы3,d9 ,D{`΁۵6I3[~zі_]zf yU CD)`|sA׫@AF6KAg9kA fQx.ύ۾Pf %%TD%*#?Xo81b|)Z+Pƻ I> ?;6Z.!ݗn>r^ 2 C$1|+Zџ8o-l;vBW0u g:F=f-5ŽK,kxݗt#ZAN^13D F]hkC0ؘF-0!zEwUh׭Ot7?r07눈=s_ȀC@`*ÁUuV/ OQz8m-(ŰU(](ESDg2f%Pۣ1B+RI@*ejBJz;s%y/'`"pIu'-ݚ7 q. ꚬ8&-  E C6eVW3~i*_-2?N `i-tA(I!E̵y?j30L;3%M`4ZBIBlFH,ay&>M62I+ 191$G'cy85Zsa~`jwViN0^Ӝ"NlU"x¯<ͯ-rp̨D̎%H+zkiIg[yD濒r*A9rIENDB`peg-e-1.3.2/icons/oxygen/hicolor/32x32/view-refresh.png000066400000000000000000000042061435730362100225000ustar00rootroot00000000000000PNG  IHDR szzsBIT|d pHYsvv}ՂtEXtSoftwarewww.inkscape.org<IDATxŗ{Wǿy}߽w(`Dj"?4!&H4 b J4!XRbe7sg̜s;eY|ɽ}{~wNH)񿈀;m5|*o\[X\R\nKBػ7"?_5n dIg;/^^ѻNX0%Jc8<^>r=d^d;ݷ9k箽{5uM}eU>UJpqGJ'ؼn qĖnq} U j 9+6c_[`0$7:Ѕs-g&nun^яTq((1048(d s,vb^aJ2u-8Hծs%\K(Gw(\fѕB,11 l23WT!0I(vd7/OE-&mKN xK'XNʬ8PoQcC: 6:[0M] 9q <|@J22 ?Ly[ S =3b@d?n;/&t A^cwFj^N+qeFz'369005EpT9(`sdΫo9f$ h$FPlP zbӑr9}ЬjƍGP QU@҃FXr/G}8jء"hG6j$-H,nCa):D*qƢC;C"₰'@4fm( i,d>)ja2:NA M ^$5 6}Dm]?-x賔V G(6` F.0O6q,EvLyUNiW9Lnpld;n9*3+~%s{"wEng*iR~[NbD@Hj Hb< V(` hӸV)G8ԻVP #efXFB!\!!ՀZj+Ca`x$Tl_M<6)0JSCP)wilrs_7^l6PIl_mVZPՅf\$()BD,YAUbp 'RZ^ VvTiQr 1MҤ!n })@6a\\T\aBD\2I }0!ߩY>)'9 RF)Pc 둥!Q].ndnIEh.ڟ 9m .-| yL\Y ^/tl~#ƋSS#0B]3DKk`R M󯗤#ɧ790r23-)oq-: B2tAyVO,R|NQ`3 @v)I0JbE#M; &4a٘- KCŋ͈9$HHD8\^yms!_z<ύH i@4O4nrUH_ϓ+Mx{bGiSSL/Nszi^:nͅQX<5> ^! lw2ym{wLH~z0./~ޤPsv Z?~:?~*}|;L& p*IB/ҲLYLu/"'/*PC@ItEsQJ!yQDZbE5ZsxU>ߤF ઱(` b2Gtbx pnn*7~fmi.Llj-mQܪb|nե8 b0D̄wpc> F׎=w 2ڑΟQ8Bc z+c}3FY#" =@e2wӀN$( |J c I.%"Ӏ =<ґZ111^[J lQ..#ܡ.! "|lT2ԕѐ2 $]m]Z֘;o痀kd])a4ba6 0Nus5DZZ֔P?]Ed5D>Y#&w $"uuG{+%`S4櫁oGP3 Rb6͜洩L@`"-tlV[9Q䠒B8hPȘA6C@/S5-)qr9n`L@! q@!Ƀ.*]rvS}.*oH KGfη8ԝ 9U_JIq&r"g*SjTCP0\ͽJڶ^~AdE{&%_BZx3]냝x*%-F؆X( @+zfyS ~E:˲ r8bAiU? bs#SP D1D-FfC ^ "BҸj^7}c|>OT\т4U|xAi2*ib`A9~m3i~a-I)gll{.kkTr:(pHB3f$WF'&9>vu[AJ@XdÆ lY<:(~ofB¡yaiLW)o~В,7g 9 !qi"ihe |vm6r =n=~/9&BXPq`J {~π`$>2fDB3L FGGٺu+ߋ|MuO1?8ofLmD!<aУ( Ty?9A:Zk24݀IJ,ؼysͦW7obLΧ; w.I[Wotsp]|Jv(%΍qܵ\paQ)71374֓ ;osrL.fggUg]$IRF8C.X,RRbdd7Y@SyO&P/7׭L,ˢX,8lذEVK$IRoiLTb``rLTWAu [&@C.ڬLYubcccA@EDQDua6\B@Pml)V=`\?Fm|>T=B DJYӘh v9ڐYU/kW%D \)ڶb.2 >ܜغ7hi ̓4ku=e׍y˾V!_76͒w g)It'j_Oi֊9>w?{a9̷k ujFmh yF]jB|[$!|81}23ɓ'.C$\ggdDQyT.CCOΜT?COa-dtҭoۨ~!~zA3<<Ofس=y{O#xXCp%tqFAHO% /?Ҿo~_ "QDEaMf~/}FHp7qK]Vkn{x|7ϤG.mzE' S;׽#w2PV&l߈J?<ǟy^ށ@fg/69ɏsק>===o@m,6ONqbm>vYG* Dˣ #;ʩ?:s?i^`C>ZBh!PRl K;ǀs8y30ĕ:I ~\=FOј/v˕w1$(gȕudIENDB`peg-e-1.3.2/icons/oxygen/hicolor/64x64/edit-redo.png000066400000000000000000000122541435730362100217620ustar00rootroot00000000000000PNG  IHDR@@iqsBIT|d pHYsu85tEXtSoftwarewww.inkscape.org<)IDATx[yp]Wy}9MIzl˒;;4MHRJMa? (JhKJBaiL IgĉDv,Y%.g}Oz+d{}sν$",ejgs򁠮">!I=ҥ.U^]++D 7W]co\WU-gI$powSJme}AWOЋ݇VKUD939;=A`N [ _fD %]@,[|.]FwЋ+PTEY!dPi+y8/p <9kcN#vupL_Φw/mk}BNpt=yE˱b XIt=E04Dl@]7nzG׬]ōŇg~ŷq@чw\u㘲 >}z4ǽA([!3ߺ/vz `l՟F^=՚ϏA?}4n%Po:.}OD*y,5qH|M[u o͌~csbOOG2 8ǫ?h{*ukB%JKX{->8 N9o'@|sz LEC@0> p\>ݹ\wox?tppQ.Azu?-HGb^70E &zÍ>8ASu&hBBc}L:!SK" Yp:\yڛdݏ!OA_bM,/3*G o! =&kwzpo>]#{̙Y4} &@@ ~g}7O5CFK[O(Ta&kب"޼<~fxwmTՠ]뱶8 ;$8Dd`a47Vt.\v@_Z~ȭT2hϋ~&Ca ZV-r#i/XDChl]kko;&}ͨf0gjK6j w;ES$g&ޡM!`e2jflnlZ|?:@:~C!P0c/wo)R,c`-WxhW LCt.D΅ 0d$@ 0썺qV p۲B@Y h >SUW1i%hu~ no4\HU <@dc (@D!&U@DiIL2 zhse`%œ3O`}y=ܵE:K_X(7b}cʭw 5* &':\h PƉɵ 蜯t,͕?:c!` o(y/Y\ɲ!Т,0r= *ӃOѤ϶|WDb@agXm >&.i͙6 EVuQCx RЅy!t~~;/ ߀;8\ OUk0)$>y<&zò]1]vTdMhbUŗKfQl(%(&F m`6x/ /N,ZMA3vm,<'W{!;(lۜ5Roy}\*NK4{ %8O`L!P-/h]Z,Y'd1A_JY.6]E+'NsؑpĚsonRX+Hu ogR3/m20V RJrT3zN6 -=]p%StO.OT EZ IBNu!"/~AVz\Iyerb_V`abxd>9H~E/&OljW>sA^/LAD`0B.BSa2'm C NPhgv-ctLo9  Xfhƞ].+i곽KxX!"`8`{XD TM#z@"(3z+Xx 2Z hR?WqI=NV/EW]bL*H 14y҈] Ŝ_"ʬH.@] lpXq:w`"4 l\ \Jۖӻ:{司1l" @÷rV#> DBo)G^i腅]\3M8S7_٤1{'x6<DdCҦ! dze=q84M\ 03 m4;*`GbP; oWCl,X Abc΀CL{'a> *XE}g3.:WXZgwoQ~Yͨp 8f "p ) ˆ P_+/@@؉sN9x֋_ |Wlķ|{X kXgh8+dH` dIs;C'_q>\oP~"NJgx)YtӢ@#6o|ˁe[±9c98,,`$K<Vd'P*lVqxsM&5[: 0 ` »H.iOS1NԈ8,/g>ܒ:1QE"n4*wF5bxTslDN^72eA)`lf3e_[O|cP): f%Pg ܙY8p0笸zމMJY+&=J&CTxi@z@!Yi A"Jqb\nN&kV& g!8 N$M_E0MMѴ j&ž&奀:}2zƲ>p (PM@' A"q/NŵyNbprm՜spdehul]hE(vsƧR_H#%L0qNq[OWUӞh ~6Z=^4 pe*)߀"=>"2;bF8C4>0o(UmIz1)5r֮(Qz͊; ;>ibjoHSQ5%>n BI y rZDY'ROb{Wˬ-K'^\qX혫7+5pJ83mvy[\d"Y '_WȬtRԊXIoxfG~la?{ ;_ OP=C]Q]~o'+h: Xx eb Ѥ|BPbċs^>ݗ<}=+ԟӮ7N.J}grp֠{(}FgkHh -Z(b,c>F B ;3w^$? G"ҧwMM/3 #i_ha!&Ld*b@Y7He}fHiˑc>'XJ]O[/O"{`yw-B2y  A%\e>%ח*]zz7hBz&֨#B0E U<Qܶї.Bυ!<<yffJ&^8 Znޖe0}Gu\SpzϐF17f$Ή #nٴU8WfFG0y8\gu>ĩ Ăq^5rB^SAYScmwWHޖНyp)JK_r}[x xo80\SMIENDB`peg-e-1.3.2/icons/oxygen/hicolor/64x64/edit-undo.png000066400000000000000000000122201435730362100217670ustar00rootroot00000000000000PNG  IHDR@@iqsBIT|d pHYsu85tEXtSoftwarewww.inkscape.org< IDATx[}]Uu}̛I7! !HDVXZjVQ+tU,M#URZ-hDRh[[+ B !3z޼9{{˛|ɐ]^ks={}=CBL_De8Jd۱lԿ|x1-yoeL w I'l2:,qiMa{vN"''|cg>/oWi< t]n)PF#p\4 Fpph⃚T@Ot_8 /.L /:t{璳%|6mNtNG{YNQcI4sP+pIfEpv$T$|wl '`88Cy3Z o\};Sw6VL[,Ye?.Tſ3O.|invPgׅA{ݶWxӆA̾m3xD/(p%=$~ǒ̪+vg-筜y6v u=7= R6̞u }s hm9Fo}Be=w$ ժ:@uS//`\ǚ G@ r*nh{7 0XS9%y 8/ǯߵ7-`[Ar 7xPF8V{ۮ)MOy+Ϙs1yp4& UCuXJx*pjrp4lz85owLTNPk  Jt-T״wuVB({F` PN)Fm0jvYA( rX:[xsбBb ww"guљr#DTP@H3(RSߓu>Lڄ< (@>)({:@N- btоrf@ZC_Mo>8 Gz(CmI*T'@!Mչc?~$1iM= '9ag)U?06܉jeJ*q߰$E~p`l;|(҃.QIj(lm gBRa a`%@ Xł8](X:i6PۻIq]k~Dt<(rX~3 Յ !6а}c|ϡ6̸Dc_ZU!A>uNJng⮣pN.ۺ@F ,ehs =6PbնZ{K~p当p:drŽgԉz%dq<)pKzt5ԎL-] 9gC׈L-@exΆmvl.xW_M_(T%5x Xu)Ԏ=|auiڻjk;JE(lp|z{hQmz2׈JYY?<M8AVE1z諃2LlۀV~o]pL?7^džmlM @@@XdJ:s:gSDSuN,Vfh+n8$JbK7)Ŧui:6<{VZR>ہ+ު(;^ W}zξNzC\0QcJȋeW.ڊZfZkqV.-q.Q(Ž$JԺMU68h9 YEˊ( /IPtvکZs#0`,3ΖquiU:Ke j&H"8VԆ`bzT<.I\F2".ҴI`&Z:߈\RpE0[1kHTg~WPSs߻o5=40`̎Ut\+eZV&ԹJSYkq:aB}vA0Il"P()lu.tow;AY}0B1 [+.ô60c"x{ST|{LMv0f+8aDV2BM+D'Pg6 b8VyP:q^yzsMn XTa%"1r^{>#֞a`FDz6:糿3W>MN>x EB ʘLU?1alTWoxev`b0D "UN`~_ztPjT$yoYD<37ľ/OQ8 D̤C 2+!"FCa{=Jx(0kf&hjX~`cx }y՚%EX%b&mZhI{`4’ĂR30DX CR {;V|}'eҌ(&mbnE쎘@D 2#uUIJsVTM^@l[)DL d̶} #4HeVP ~$\#KDH%e)l/*jEI\̂8QDV,D9-j8 o|#a5:oG<{OO-?>IXP="T=xH@!ʔNuJ lL@y֪NdN7m[H}zE -dnH4D!Qdev &'DpElK8ZG+pB4싸4$&2,y(Ж:A3 w<*Xl^P/D*hf ™1M#_7DLJiR ?vG혇 9M T l}D bI:r`r rJ@) g]mw42Rup=y,Yy U*AROGY~Y4 QT1Y*`L(,}KeJ2:̣SDӌIAȹT"@F46T[V\v^ "yB!r8 HH {M+JGP+SX KESfRw `G\ CN01i%vͧiCg-0|8tCW?Tp*y\Q_E}^pfg 1` ",*SNa:4jSNiEUǏy]%t-!!'ʣ?ӏ'w s=8.@,0 -"\+gDYB~7g~o[ӧO<՘%=f5t)}BI3.ƅ^kѠ?PU=ϐHf܋ C_CYTO?ҟ/W7sE@#|3B V_uo3d̄3lLB1 ħIL&&%Okz# gO/ȸ|o={~}"s.By|\spg@yT˹7ul C!!BU)j^B\ͻO"v⺗ʷ'6F! vS;.m`_׾OqOo/ى z Za F!XlUi@wo2JƎ! 77^a?Ql  ׏߂Ȅް (7u xsOٹg|rC Eqӈ;\L /ߏ=E=-ۂJ+>xQTA-`1<4*KKi⤗"ۓOVhEv 0e*L`ݧ-;vu\;1yp~ c¶o^n:U_~;!0W&tym {鯅\bKTR {;F'GWwSx:_Mѽ^7I=$t8ߊZ`9e ajՁ0C??c j4'Yj]Ǝ3wwn+'+1 ZloӐ:pVC!;RGi, N!%G-@D {q#-, AD`0^?xּp-\6d3a`(5/%Qt4 `*1ZSXCh9"i93̪~;۹|J. ݺKkF}5ꚼkJ?S73ނ/2;Zp.].Up@qm?(8"|*]D9ET&C_)pI1)*,w٪n>[1 Іmƫ7:p$t$Eލ5kעfkpElc.0=RDMW8=O^?1|a oYĒ_ޏCHOX Sh^]S&&==)aP׺=JY-qwlgNZ"OL=tNf,($xh6{"7Gv3€)(ΣN]F4m/$l\ S\uQ*qim U DՒK 4Qj3򽰎F+w}F |ɮrzË޻22̛c N-#¥;IYF<&B֑&1u pZYVH}`<B]I2܋00YlHA`Cթ/O~ؑZJà{.6ُϖ\AnDc}`%C @.Zyc@:X>IpA!ZԊ H8:=p啯w`}OslviF)fVTlKwĢ0칞R}R fvLA[/"Z>`wNj[3g6d-UIPBs$RUhZ"!H@>Pz #^D x-zȇ fc ~5xÅbZ6QZ+WHUc=57IY8  [kU gO1_Dwpt_v spb $N?6P$ӫ2Q s0g9MgMU`g朱T~1 :: ~0 "-t{!LKP, gb jcL_eSXd^k{(DY&2s">\xp\ٴvMu&OˍNvN" FX&FN|xߓ Ҟlj,omac"3)Ly&Dp 2hg)*&*6G֘\ۓK[~~ar s!*$kbz(h< }LZiz`jlxY%axxCFSBs-l9a2Mzk}Lmpj/撞zRI[^_\7a^cc s?31Q &(GD9Af0I炔z,Yy/;};;1Xf!^ 969B3O "׻[+.|Kl$PNM`aׯ zV*uQX֬hêԭhCDV) QmZ@T)vZ giQ mQie.ΐ[ 8%7ĭω .;.39VӶ梪*jUlC`rTjê6D**5+Z ǹiX@T+RntӒ4MOݓˮ;oRsP6X3APq)WW C!ǫh#1E^Ɓ72oJ@nEjh-)׭H͊ԣ6<8^0R vj6٠-UTŞ5+x@D| -?)`fBf<<0<54B4QDVA &!&QeVeʤBUxP€*((@HUۊCGS5 |`9{?i+&]Np\h6<8&9B͖!PXKڤbpYaIV I QR%@%>=Uv.Qu __wfZaG|P\֋mdKyZ|'0Y*N5ci4Dp_vy 01 Jn}a! NiAvsu|'P5c@IFxUx;>X?ЋnBq}$0=F1L#` ,&FQia ԝdTwu>.'w>lm  ɥ= dZRzso@w1ߛs/NU @00/  L@0?z-9SjJyIENDB`peg-e-1.3.2/icons/oxygen/hicolor/index.theme000066400000000000000000000003611435730362100207340ustar00rootroot00000000000000[Icon Theme] Directories=16x16,22x22,32x32,64x64 [16x16] Size=16 Context=Actions Type=Threshold [22x22] Size=22 Context=Actions Type=Threshold [32x32] Size=32 Context=Actions Type=Threshold [64x64] Size=64 Context=Actions Type=Threshold peg-e-1.3.2/icons/oxygen/scalable/000077500000000000000000000000001435730362100167105ustar00rootroot00000000000000peg-e-1.3.2/icons/oxygen/scalable/document-new.svgz000066400000000000000000000075551435730362100222440ustar00rootroot00000000000000\]s8} ]˸Fcg+T2wnfv[([YTIW~v@R<*U[+%6F@rY>[ v(OngUq:yww<[E<WYlv*C"__gwN+<脱λlQ =t}bu{S`JR.巃}v/] pnh1mZ,$_^ƣA6nyP> d(Fzx><$W܀}_=͋?_Xk*jc, 5Xt5:_Zgu7 *AR:Y2ϊo>KŸQVB~J207X̭d"û:NU#d?w匿լ._nͳN1iuJE8l^p6KEV"~g٬v ^,~۪wbtPRQ袎J]nglPv Y.?, Ckʵ BNCO3D}:c^{QF9-Npd>@2; 6N#űt]:Ȓ&uO~7 ;":ONTki.WgrBimWAoϻ%giY#T4&)}R׹'ʁx sZ%Np+5Ӧ#:۴XNb=z}ꁤqwR/Rjcs(f"[I^n"\nE6mGE_ E 7n3,1ZжI!HZ+"JiOP[ @uے*aN++j"/ s'2eoԟkntkZܔmsK@.LY+tw[[>S})8ײ|"rvAO-Sk* lvǢ%ctw1ͦ"ωށ+,E;dAFE(VmaKq ?ÐK&'Ne5K|} 8v=i Y1|dj F܇5(^Q",a:~@C^h¤Q*l(8F;zQ|*bf0XcLxgBɦ@œ KR:( 3ܴxy%Nj@3)G^ԟ(c5y}R&QPEVk\5~ᇵe2_Mz2Fz#9%t_>}¿Dys&+` ̗Nxpf8l5Iɢ5&Hg1"ij\[(tp'Qi7;Z%K5T-mVMmHrLm`6ژijQ$8.|.P]tCYׅ+W}7*DۃU_A-'H cŜ$BaRa p6x<2*_h}Vx*6d6-oTn%7,$"J;[EOK`'ؖ,ܴK:ёsyu?g# +c~c[Ԕfu@iV6Ɨl,mVH+.N'*)S.dS+#2k:h-?^6RpO;:U_˫S6)^O灃u7NE9+ 5ZxUĄה.0t}`C?pYf5VMk.R440mSyc"x<%81KGŏXn$ DND"H,V^9KIӫɠIݲ B)6%] >x^pe=Lm6VWZEBtԈVڱJ+Ry?d͘Q 1$ZXDq$T&E÷YiCP4x 21wb8hIƑ"]k"̹%TM$GBŐ.˦G2GT2~6h.=lac %R)9= haOB{6>m! -O&;+")I(2NmT V4AL԰ςUw7;i:`4?!Z.J4A䚡:3 T_'/#ALx#G˴}(-‰w6AhѢ)^o_n6_mF[;- " {H*Mԑ}vdAĐjgP ~AI0qN&Rq {._D3qQ 6bk̹8[MUZr0K|_ ̂[>3ae*;LK>GYeJRg `[PMPCbR\n|;֩+9LF&iLl-ˋl=≇*_6뗤L(R.q !0)A K60g~dl]a޳H@!7CK8%D|%&IћIrRzRoEU,Mݘ<65|a`ʖ'DpR:ʂ() ^ 0/J3P{8F'ց̀t .SNLYa2\s\G,Y&wuFi&7Ô" `558mO纒]3")K^.rZVd@NB!O@R{ %e|JS)  5CpU]BH2r-E[K#Wgpf%j㵔/2>}j]_}Tm--{~. uR^KEޥ~RƧ/#-K*X=fZa[Xz~UvUA:`po֮Q귕4\SVВW9Z* :$՘V'{ {{z1bm쑛Fﰇ/Yb81d($}P(cRҏ|[,%ҁ6mqzϯ=@%naqk K$ؾa{bkzE uCV.T Yc%{݇-5SژF,ʧnz;YU+)jR zfJ@9tp=@8L1B&a t @o*q y&Lnh@y_M38Nm:Fi;G6>/;@OƎ>G\kXjwlUΧT@M~k#ĥqiARh Ĥq0Q˻Yvg=㭴魂Ctqㄺts)B/ o )X_=,eYZAV}=èޟW5|t1mp e=#b:ous:Y l4lbvys8^n_wdZz|<{fշN^TP l('¶kvŒ :G&7ftry\VW<9[ͯ'NӘvbͧ n݁fy|<5N5RO;({h}XN-9ڴTDS 쿴nY2ﺉ/&TZb>k Ky:-}#%9--=XIYNIZO)}˃yNH";^\˃T`?Q9c9)gZ7,]f9޻}ةaR_vޫIN^4 n_kњ~ֻ\\Gi?? @i߇SK?RH$C2Zbp4kz1Ց*ǨA!^ I#Ysl]ȭ!J yiP{./BOw&]}tL&'!Ls6E %/]NyXy-'ȾSX-R/T˧U]]SP=={RbT3{-Yî{!4?-nony~0wͭxLy<) .W3sUƁj9 'xt8PA"=NI$t$NZ[PYXپw*W)H3^Cg#^N0'Ԭ %WfDz)ļ+SDOĞ"fO\1j' W'n3={q I<^yT良%|c)1A-IF&aivݬ='%k('wA`|XZwW^Gk~7Gy^ &Sd}{V#`'7OA{XJ_X20#X6 6\LQ Qhb1GUyg5eLO] I\ l CR'1cATcaO  QiĒ"Vc1XBE51e"RHcI۹u$%#&ɐ:ݕPn Nפn, JfP&kS&Q(E)E ΊA "$3bZeFa)8UUfT [S$,0 aU ĐK9K8GK1%8ђ#,9-*̼&ǔ-xZ(jC:HE`=_dnǐٱ9Bk[P jɥXN՟fqa80..OWȏono?O݌u06{gy\vh?ju.C3U|C /ݤB8ڙ`CʍڴynRyx1O1WK$Hh'}\{ZHƭSC>ڠ}OB6< q]3!zI&#[a7d z[N)c:bxH&y|x& OI.9/m#<:-5rF=akSTF$'pBրbA׀#m婨d x3,s#Ne4..@i\tf?ܔ1)QKۨ/oY{#C\|o ֥qy+&BS=N?w_ui2RY"#$ht jԔR0 }# %ۗ 8 08(oSo'?-jqkWԧxuy}tiuuާi]建۝?]^ @o!%4a{upRyry|?9]Apb FxF^6܄By /^u]:}5"-o+U!!v9v[Yx\_|?ʼ?B]}N򑾰jqX-z 7ON?ņ)Axuy[5=9> WXm?~a1"XD~,uU?$-tz9jc#hzū˃~\_ \^3MITG>aW/ask+ܯl0sLDyfQ6RNE];KSS{!t4/&` ;m;~R~lDCB2U,CR/u)+am'KBrMΜ+/ iv5mShI1.Q,;Ds$ms}ASn@ij/@[ Ɣ̈́yЉ$`F48WZRvXzbhN+F!Q_.QL*Xcq"(F]%詃SM@^K'E`b(`-sf= BSR:JI@!jdo8T.u$8XyҐ2 P+fĶBkS'vEdjPS6f+ї@$wHXYPY;v>0+%+@Dq ZB8ضQ/Uɑ0\KE>O"ϊYўBOӪMJʱ@C?ĝh3s瀺uLe!J:{~6J V>M=vJ;T8zo unS`Xט"i9ލΥ%`qm1"f !U4ej1A,ܐLј!@gk1T[ciTFDEcʝTG^ %fRH8a%L er*lcً`L)bn M4ۋ4Cn)q*Z=!vHRJk[, gb\7g;{,$D\МO)џ@w z(v֊I V5qzݕ=boTU$:0DR:**#Ͱ$ ͠cS0 &\a9 ɡxkȮ`9*HVk'efP>RiP>rC1a،Ʀ/}V]w#DX+fefO~/m9O{7fy{uwsڲ?=R,*ig?X1L꺣Z}8nN~ suvv"?6[5gx,S#SS-t<{ ڶv1Lrt˒IM`1᫷?ff5b:HKoOj&hZ,hi9?ՒP>HKvՒ>tCnõhq0[>=5}RF=f~XbrQʻh%b}ggJq_ <%ڭ+':4'n}S Ö=D\{ R ʘ;9%'x̘yG!.ҳ9߮m*ddcM%cMp:RNU|UW'#J*jNg͛VNEؔ(99R m?wm{Lv'!Lc?& gO'潢M`//58!(@.M!eQx4 ~NQPK-VxI[QĨf[2iWM]-ok -}~w{{>׋` #/_x>_uwR o Hy]gfUƉj9 6'x7NО*,N&$R|9+SN(r}81K%nLg~yļjӜL,aHl $w*4eE/jdr pvNڳ!N x4Qbl:L> @%Q&q)ʉ-@no_wWuU-1'[x\ /%'#$w vN3'rc8;Ә} N!AYWR27eHN 8%49]0ic8#YEOuثu)K I(amI%IFY_OFfST-d$ԼW\N6Ү%\WNڳ!ëʑ|`sg2'ԬSJE7pN!} #SWCTK<"ϿZW\9k."z^aKzuq/y͈/ygߌ+یkیל'o3RI޿?Oy;Kz[{V$"ϚƇyZ=-.9 (ٔr*EPd6_WI~]ujzg=rz\ ` wrsuw{u~9Fߟ׻t߾k?!~ugLUa̠pbDªgLl4 pt9e7ED)UM h O2 [?K"S˩Ʊyo] 9{,=I,N$ ȧbIe@YSn/GPN\I'o8&&*jbni Ug)b(7Z?X(eZS&bIDۙ =aAo)E |E\J O f2#*aVq"!![S$,00UabHPኜrf-ҎpOZL gbRk *Pc J bH eAf} lp: ]N%dTKEnW[o`Ĺ1Z,W5ޞ_;~F86`}\ mbyqY/>>f}sZm&dvh ?jwTH2%NRT{nM+]kT%I1ȏ1W:۳]tX-dgWh;~;h~%>dĺu!kS-<#;Wgʯ$+`~"ez9,-!ږ'jIy*(>I^r )MA1`р-sSd* < gIcӮ Pr2NRa:_~nʌe.x(m[㐘ExOw+c{(2>AĦْ Sƍ{b?$]_{d̚W/?/?yf~exsuXt]CЉ>CQ'tVtf~/yo pԽ#8;xOOO>]]sqz7_}5XG `ȶ]?Y{kU3bQ_/  ڴnbfy?./.&mWwkX[j׿X;o!9QIv1$$?030'>`怇i[&8cQNE1vTW`V L]C\%`ƎVքXD <1eX'+S$T$$ 0<#OLkwQiѯ!Z1DrD@ c*)2I\0XA;6K0bTE ) Z4 XTSzE,Rc%:՜@+T!KiGe!*&[ Wyb@KKS\!IXR۠D&RB*vOB4A[Nl5,eERJ˄ܟ fD6[jlʫ=y)?9$>a߽Wn͗;,&ߤAkz@Yg9f5əJOsgS}vQuPB.MvrL=6.)9h"L=Z1K"Q@%zR&i.]n#߳)fnUA5.{SI2O 7#LijlST<{`zmʒX lPĸh[w ]8y%Z0*nzisYhv${R/!Nl \А*){P-.90T5g`NP3R&mZS[9W*9Te,a%PId֏QV"%^&VR6$М &JHLd@@:qKBVQ2!M|=$A|m%-/cčȨ NP"$ c*`_Xx/ǟqHm-KXc@р44'ĻTX /v6$*&%2S%@6O=|m$sTl )Ғ(0=!|tTDG'q|z쏍HI 6<3,4<1R*'FNb::0NsbJyH!DѐCb`Cb JU)ÎJ9+<9R;*eت3{q6C݁`wP{?}^?}WX;peg-e-1.3.2/icons/oxygen/scalable/view-refresh.svgz000066400000000000000000000163461435730362100222430ustar00rootroot00000000000000}[sȑ .bLyݙ؈v9ZdSd4#ɿ~Q@7[ԇM[!ȺWYYCH`~yruz~_#?mՅm۳lyS~m냈5e;;i6Oyڿ|r뿘.>>9!=.nc ;vl-ok F®Q3dmr9VݔoZ,w]; 1lx,ó[(|3{4_` adg{vQ`0vKSQʓQ&SAs|2/)j#߀Ia %0Q0냁l 9L;{-->,5ϟOB(8W9=7 meYCq ҄BL 7S017_ GSTlM~[)Y̖P˄w|)9D̛ Xiu'r+WLسu00^ .$`.$&Ӻ<`<LnHI)ȔSHzdD`zG_u)x i01)A "'S 2qlǷvp~[;>?K_V`g4\IAO$ \e$0DG1WKJ٠g'*A!=]J#Ф V() qlU})јf PTSQBxP3tf\KhI%zz!+DJ]|vUo~V4srJͲ>y}\ƁV@y1i~U"XaX)44:ry1[-g>*p51h&gW J (ڃέEΟ̏ ]|ߏ Sgi _ZL<8%hg=cFF;DF FLˣm#n[hC+'w3Ʋ4o7Xl?ffa"e33xIOp]l fwu~A8F8eb~HLRA;%$qg#}DA*%xxX_[(e&BiZ2dX$teyc~vIi(V ܀ <$Lt;HOqJ!!ɚ&v1ؗ/{p6{[O-c?pwv|'w;W]';ݣSyoفzSj"f={6%LʻKLm~& W(w9cEY+I9ff8df&/XyIO1#O}?“fH':~4 DSlx/%xG9,z`"}9¤^3B}3~,|*˙~~iܓ/xzLxeb *6pM/y'g9ä("{bC=g=&KTh =\k)az|F6} "LvlSg4 MG|a&ڨ1 %y G!1#`F~VC0QО? RX o^jt cQٓܓ ('Ί=TĨfCrdU~︨牲alH\ +N¨@ǁ*BjvI$PzP=-^T#CذYSy4epԒZS/cǻMҩg. &gQ%Q&3sþzv~/#Ҥ/ArhwPDxNFyҍo(OhlCy89]mŘo&Q.=&lL\oe%2rɐU5D97cքBj?dlijSXGlx/(bFS6I: YN[_dwIȬ2W=) 5=pHMt{y9@95VY [ŜPW\{hFצfSŞf"cf8Lh⃸ZO˜Ɇ-4l/Ȓ0|&4yOB"0|R Bb%&e '8=$R(` v1 .KaK}bL ΀_<]T aPDiR\ %ElR5J=)0ћ͠:T?n~Y믟*\ ]hp=[mK׷wWӣfer>jBGGz_/n/O7Op^ ׼n޷D!e7_=eǵ>8Bd* jG, 2N,aB`ʐe3iQ9! T sZQzKNϯوHouNO7!@2bXyY1&0'"ݗ3f-q@1nP!Sb29S눓(UBCT#`+',lFdٶn]#ȷ%'@ Μ~ .ajځDĨaޒy㩙 d?if;I+8Aq%&H;YȰLIs~~"=+-T-;S簕^'zS'KIE"$iȷ즹xa~cnk{;[_͛0ZG|zVPSZj{?y?;~uUpz_geg7aGˣ+9fۺʎ/W}{i0/0E7/p /<*ZVւE.|9;-g)_-~鬥0^]݌7OO^uZo~}>}{c.N%t.7Wzbz\^>>txWWR:e=4smY ܽ@x1{;xs󋋫WNn5J|A`w7̈́_m=02};p`fPn_U8pXZDk5H hrqn@]tSc]z0g4'PBRHlm,bRa#+} G {%$XԅKM٣6SDXa&5J XAS :*$ȡ̀BFH"RS:' be(z/=QO ^<.rQd jB M0& ,^䋓|qE 3Y.'x/<4 H$VʯE9Ћڋ}/^ ^tm4=+K?O3NߎLf`A`K04!7d5Z^pTy"9J34`h]* ,N?Kd[<4QNnjȆ_4*b֤$TR_G~c_$2!`Obz!Lv>ApIdKU_܂?n֢YpErEYxMn[2Ղ:.0;R2nP(!H] dH9<2Y\JzvvJ.)Qٽܕ"D9s!gw)FR&io{’fR=,O{{Kh P#J3BuI0+SZM6.)sbQhM%Z]LNsoI"x%I@X$jLVj&rc3 [lZ`ZV bnVHE;- QmԎEip";Fvж q@RFX gvmk")Z3k9!'y&.gdjŤY62uKB.Yפ.XE9 n0{ *fHiIR*0m4(-(WdLnWr]r0v5"HV6HOBFHɋL#'bc6VBƮh1ߌM<2E@]ĸA.-e'l-_6Sl.)Ŗe3[6g9T6Ծ鹴8@; O+Ⱥ׬W~_K/#peg-e-1.3.2/icons/peg-e.appdata.xml000066400000000000000000000311221435730362100167600ustar00rootroot00000000000000 peg-e.desktop CC0-1.0 GPL-3.0+ Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E Peg-E పెగ్-ఇ Peg-E Peg-E Jump pegs to eliminate them Sprung zu Heringen, um sie zu beseitigen Μετάβαση σε γόμφους για να εξαλειφθούν Saltu sur pegojn por ilin elimini Salta sobre los pegs para eliminarlos Sautez les pions pour les éliminer. קפוץ מעל גולות כדי לסלק אותן Peršokite per kamštelius, kad juos pašalintumėte Langkau pepaku untuk menyingkirnya Verwijdern staafjes door er overheen te springen Przeskocz kołki, aby je usunąć Salte com os pinos para os eliminar Sari peste pioni pentru a-i eliminna Перепрыгивайте через шашки, чтобы убрать их Hoppa över pinnar för att eliminera dem వాటిని తొలగించడానికి పెగ్స్ ని ఎగరవేయి 跳过棋子,消除它!

Peg-E is a peg solitaire game in which you jump over pieces in order to remove them from the board, ultimately trying to eliminate all but one. The boards are randomly generated, with 100 levels of difficulty. The game auto-saves, and has undo-redo capability. Pieces can move horizontally, vertically, and diagonally.

Peg-E ist ein Solitär-Spiel, in dem Sie über Stücke, um sie vom Brett zu entfernen springen und schließlich versuchen, alle bis auf einen zu beseitigen. Die Platten werden nach dem Zufallsprinzip erzeugt mit 100 Schwierigkeitsstufen. Das Spiel wird automatisch speichert und hat eine zurücksetzen-Redo-Funktion. Stücke können horizontal bewegt werden aber auch vertikal und diagonal.

Το Peg-E είναι ένα παιχνίδι πασιέντζας γόμφων, στο οποίο πρεπει να πηδηξετε πάνω από τα κομμάτια για να τα αφαιρέσετε από την περιοχη του παιχνιδιου, και να προσπαθησετε να εξαλειφθούν όλα. Οι πίνακες δημιουργούνται με τυχαίο τρόπο, με 100 επίπεδα δυσκολίας. Το παιχνίδι αποθηκευτε αυτοματα. Τα κομμάτια μπορουν να κινηθουν οριζόντια, κάθετα και διαγώνια.

Peg-E estas ludo kiel solitaire, en kiu vi devas salti sur pacojn por forigiilin. plej bone estis se vi detruus ĉiujn samtempe. Eksistas 100 de malfaciloniveloj kaj la tabuloj hazarde generitas. La ludu konservas aŭtomate kaj havas la eblecon de malfari-refari. Pacoj povas moviĝi horizontale, vertikale kaj diagonale

Peg-E es un juego tipo solitario en el que saltas sobre fichas para eliminarlas del tablero hasta que solo quede una. Los tableros se generan al azar, contando con 100 niveles de dificultad. El juego se puede autoguardar y tiene una función para deshacer-rehacer movimientos. Las fichas se pueden mover en horizontal, vertical o diagonal.

Peg-E est un jeu de solitaire dans lequel vous sautez par dessus des pions dans le but de les enlever du plateau de jeu, pour essayer au final de les éliminer tous, sauf un. Les plateaux de jeu sont générés aléatoirement, avec cent niveaux de difficulté. Le jeu se sauvegarde automatiquement, et a la compétence annuler/rétablir (undo-redo). Les pions peuvent bouger horizontalement, verticalement et en diagonale.

Peg-E הינו משחק סוליטר מחשבת בו עליך לקפוץ מעל גולות כדי להסירן מתוך הלוח, בסופו של דבר לנסות להסיר את כולן למעט אחת. הלוחות מופקים באופן אקראי, עם 100 שלבי קושי. המשחק נשמר אוטומטית, ויש לו אפשרות ביטול וחזרה על צעדים. גולות ניתנות להזזה באופן מאוזן, מאונך, ובאלכסון.

Peg-E yra kamštelių žaidimas, kuriame peršokate per kamštelius, siekdami pašalinti iš žaidimo plokštės visus kamštelius, išskyrus vieną. Žaidimo plokštės yra atsitiktinai kuriamos, su 100 sunkumo lygių. Žaidimas automatiškai išsaugo žaidimo eigą ir turi anuliavimo ir perdarymo galimybes. Kamšteliai gali būti perkeliami horizontaliai, vertikaliai ir įstrižai.

Peg-E merupakan permainan solitaire pepaku yang mana anda perlu lompat di atas pepaku untuk membuang kesemuanya dari papan permainan kecuali satu pepaku. Papan dijana secara rawak, dengan 100 aras kesukaran. Permainan dalam mod auto-simpan, dan mempunyai keupayaan buat asal - buat semula. Pepaku boleh dialih secara mengufuk, menegak atau mengikut pepenjuru.

Peg-E is een solitair spel waarbij je over stukken heen moet springen om ze te verwijderen net zolang totdat je nog meer 1 over hebt. De borden worden willekeurig gegenereerd met 100 niveaus van moeilijkheid. Het spel bewaard automatisch en je kunt zetten terugnemen. Stukken kunnen horizontaal, verticaal en diagonaal bewegen.

Peg-E to gra typu solitaire, w której przeskakujesz przez części, aby usunąć je z planszy, w końcu próbujesz usunąć wszystkie, oprócz jednego. Plansze generowane są losowo, przy 100 poziomach trudności. Gra automatycznie zapisuje stan i ma opcję cofania ruchu. Części mogą poruszać się poziomo, pionowo i na ukos.

O Peg-E é um jogo do tipo solitário em que se salta sobre as peças por forma a removê-las do tabuleiro, por forma a tentar remover todas até restar apenas uma. Os tabuleiros são gerados aleatoriamente, com 100 níveis de dificuldade. O jogo grava automaticamente e tem a funcionalidade de desfazer as jogadas. As peças podem-se mover na horizontal, vertical e diagonal.

Peg-E este un joc cu pioni în care sa sari peste piese pentru a le elimina de pe tablă, încercînd, în cele din urmă, a le elimina pe toate cu excepţia uneia. Tablele sunt generate aleator, cu 100 de niveluri de dificultate. Jocul salvează automat şi are capacitatea de a face/reface. Piese se pot deplasa orizontal, vertical şi pe diagonală.

Peg-E – это вариант игры в пасьянс, в котором вам необходимо перепрыгивать через шашки, для того, чтобы убрать их все с доски, кроме одной. Расклады создаются случайным образом и имеют 100 уровней сложности. Состояние игры автоматически сохраняется, также присутствует возможность отмены/возврата ходов. Шашки можно перемещать по вертикали, горизонтали и диагонали.

Peg-E är ett solitairespel där du hoppar över bitar för att ta bort dem från brädet, i slutändan för att eliminera alla utom en. Banorna genereras slumpmässigt i 100 svårighetsgrader. Spelet sparas automatiskt och har ångra-gör-om-funktioner. Bitarna kan röra sig horisontellt, vertikalt och diagonalt.

పెగ్-ఇ అనేది ఒక పెగ్ సాలిటైర్ ఆట, దీనిలో మీరు వాటిని బోర్డు నుండి తొలగించడానికి ముక్కల మీద దూకుతారు, చివరికి ఒకటి తప్తేపి అన్నింటినీ తొలగించడానికి ప్రయత్నిస్తారు. బోర్డులు యాదృచ్ఛికంగా ఉత్పత్తి చేయబడతాయి, కష్టమైన 100 స్థాయిలు ఉంటాయి. ఆట స్వయంచాలకంగా సేవ్ చేస్తుంది మరియు అన్డు-పునరావృత సామర్థ్యాన్ని కలిగి ఉంటుంది. ముక్కలు అడ్డంగా, నిలువుగా మరియు వికర్ణంగా కదలగలవు.

Peg-E 是一款孔明棋游戏。一颗棋子跳过另一颗后,该棋子就会被消除,游戏的目的是最终只剩下一颗棋子。本游戏的棋盘自动生成,有100种不同难度可供选择。游戏会自动保存,并具有撤销(悔棋)、重做功能。棋子可以横向、纵向和斜向移动。

https://gottcode.org/peg-e/screenshots/appdata.png https://gottcode.org/peg-e/ https://gottcode.org/peg-e/bugs/ https://gottcode.org/tip/ https://www.transifex.com/projects/p/peg-e/ Graeme Gott graeme@gottcode.org peg-e peg-e peg-e.desktop HiDpiIcon ModernToolkit
  • Added portable mode
  • Improved Linux deployment
  • Replaced deprecated code
  • Translation updates: Russian
  • Switched to Qt 6
  • Translation updates: Esperanto, French
  • Added support for Qt 6
  • Refactored code
  • Removed XPM icon
  • Translation updates: Esperanto, Telugu
  • FIXED: Did not load locales with underscores
  • Improved Windows deployment
  • FIXED: Was not loading KDE icon theme
  • FIXED: Window icon didn't work in Wayland
  • Improved loading locales
  • Improved Windows deployment
  • Replaced deprecated code
  • FIXED: Automatic high DPI support
  • Replaced deprecated code
  • Extra warnings only shown in debug build
  • Improved Linux deployment
  • Improved macOS deployment
  • Improved Windows deployment
  • Translation updates: Chinese, Portuguese
peg-e-1.3.2/icons/peg-e.desktop000066400000000000000000000043321435730362100162230ustar00rootroot00000000000000[Desktop Entry] Name=Peg-E Name[cs]=Peg-E Name[de]=Peg-E Name[el]=Peg-E Name[eo]=Peg-E Name[es]=Peg-E Name[fr]=Peg-E Name[lt]=Peg-E Name[ms]=Peg-E Name[nl]=Peg-E Name[pl]=Peg-E Name[pt]=Peg-E Name[ro]=Peg-E Name[ru]=Peg-E Name[sv]=Peg-E Name[te]=పెగ్-ఇ Name[tr]=Peg-E Name[zh]=Peg-E GenericName=Peg Elimination Game GenericName[cs]=Peg eliminační hra GenericName[de]=Peg Elimination Spiel GenericName[el]=Peg παιχνίδι εξάλειψης GenericName[eo]=Pega eliminoludo GenericName[es]=Juego de eliminación tipo Peg GenericName[fr]=Jeu d'élimination de pions. GenericName[he]=משחק לוח מחשבת GenericName[lt]=Kamštelių šalinimo žaidimas GenericName[ms]=Permainan Penyingkiran Pepaku GenericName[nl]=Pinnetjes verwijder spel GenericName[pl]=Gra eliminacji Peg GenericName[pt]=Jogo de Eliminação Peg GenericName[ro]=Peg - joc de eliminare GenericName[ru]=Peg — игра, в которой нужно очистить игровое поле GenericName[sv]=Peggelimineringsspel GenericName[te]=పెగ్ తొలగించే ఆట GenericName[tr]=Peg eleme oyunu GenericName[zh]=孔明棋游戏 Comment=Jump pegs to eliminate them Comment[de]=Sprung zu Heringen, um sie zu beseitigen Comment[el]=Μετάβαση σε γόμφους για να εξαλειφθούν Comment[eo]=Saltu sur pegojn por ilin elimini Comment[es]=Salta sobre los pegs para eliminarlos Comment[fr]=Sautez les pions pour les éliminer. Comment[he]=קפוץ מעל גולות כדי לסלק אותן Comment[lt]=Peršokite per kamštelius, kad juos pašalintumėte Comment[ms]=Langkau pepaku untuk menyingkirnya Comment[nl]=Verwijdern staafjes door er overheen te springen Comment[pl]=Przeskocz kołki, aby je usunąć Comment[pt]=Salte com os pinos para os eliminar Comment[ro]=Sari peste pioni pentru a-i eliminna Comment[ru]=Перепрыгивайте через шашки, чтобы убрать их Comment[sv]=Hoppa över pinnar för att eliminera dem Comment[te]=వాటిని తొలగించడానికి పెగ్స్ ని ఎగరవేయి Comment[zh]=跳过棋子,消除它! TryExec=peg-e Exec=peg-e Icon=peg-e Terminal=false Type=Application Categories=Qt;Game;BoardGame; Keywords=game;board; peg-e-1.3.2/icons/peg-e.icns000066400000000000000000003526551435730362100155240ustar00rootroot00000000000000icnsխic07'PNG  IHDR>asRGB pHYs  'IDATx} mWUn^j)ERc+X `PK$T bbH `BLjѤ(j *P)(P yc5s9|轫{9\s=S5a9f䍱fD}1ȏ91[ y+A!_ ,p " >yᎍd?}bî鯇E$՟v"<!>bAG1ܗj([{`.R]¹Y kGD8+{qg}wPqT@:zX{+B 2T|ƲޒN\qٗRD"w|3AN%=*QY mءKz8#W$f V a&9pv(@|`3.GUx<{_{/V|yE|uEgEnƴ_ͳϓ"UdW$D]aqO@# &vT?q-?\ %f@SO^t/ݳqfԧ< ǩS|R^'#gG!]}Wp?h*Qg3]n£t$/J>ybuEׅA9%==䓷M΃׻;O;j"xR -/#jqwo.W1 -}vJ]w?~wwWqŧzھW}Go}e9lB[P|AM ~D(ē+~9+/:{D:}ʀ}/w]({pW "V|p%`k;_ U+ӟ3E OGXl8{?ÿսx&^5G]iZ  ;,uz˯_ԝb+Ege躺`ͺxW}끽K a~~Eq[V 7~{GG7 NYO{'=9ㅁ8>`ppڶ;=x{YV۽˺7ܥi.v8憶*)<336KSV'm @>aOz'^=/%y ٬ʑ6>ImUD\RՑd9(&f7w/8a@EPnǫ-/dc>#\h^'hTN$&rKOšXHkygu罋O;Ax\魼1IHD%!LAr&AVΓc9c]H;ۮ6=ݵdzӨ" ?"ؒU; X#U?НSrjKdIH+7VD o#5vMlx/ْp4UvqoGo1[~%w!'>D~6۶l"_}~O$ijȓ7 YWVȚ0P(G( MM'VOчwU lM?~_;A# MM67a@)`@s䝬TGI5 8x r}GwѿBn=ClK%[pmO>w}3=F6~.}`[! }U*L$Ó^x`n.^qoyk-fhW?Çg;W8+wkݛ_C~sx38Z`8<τq*1DH3=P,epS>wwoЎ>a'`1_ rU ky='~Cr /mA)(A3땏n`$Eg Q܈m1{ƽ3 ȷEb b{/+plmp'mBEZw٧׷cV4jC܌F!imSd³ =PX!ٌWýCې"k>ۆ rd~o9.~޶g.Dk1W㘌ac9 #h,FioD7Hx/"H66$BhX2eCxM xOJ$n?竅dݶ un~f Rp?4LWtI3f0CC9q]; \ D$qRǼ;1Mid1H@0͉;dptOWso| `@+?s 10Ppy-5|%mbk>I݁CZBlLQAm_X Eɂ38Z $sv]A2\%Z}tџ/H[{7]+AF+]6n* ǫ,nls#R DZSl0CPq3o,%ipf0x8L6K=! xIm@6ӈ0ہu?_ԇ?%vG:XLDS o:ԟ|G -QwMYvC}$U t=ql=F:9](fW":K _l&8K?y;ig>.SekeA#|% 11JUkBc1 J|&3>[rʼ1_nK6 N,m> -÷m\'~2}{Et͗IF۶2&~0C#lJRf 1* 0hE} :zϥ½}~ Cp?z3s?M> aaz Xy}w߱/(m~<hM]1Y,Jxnǘ3gsG))lH|lK$R$"bIc6Qtll eCS ?ӖO9Pydoi &PΓ" #=+FKm6;-N6BL$Sg`svގ{կ! Jf?**l,AϘ_}?rfORjg#GXln"L7sN}"?0(wEg~6Wx`uFѾ{4zcVEΖ[^c1ޣ^9Xv8v>-A)ɤ9$fE՜] z`T#i"T-&R?xl߁ _~[_\~,G,ч:|`~\l6BsЈ | 캻]]gv'|Ţ[Wn*ؗSE>(L>)#y hJ7I #zIW8̓g~p6qhy| yHFGq4vA\"968tG<7-c{OoěO,o\Br^w`o aca;fccu*f̅pH%?I<1@9J\{"r Ca+\n%![drs29靼x>x@iڷI; bc`BJG斾8*&@LX̕nhb_R͟*=7e;Q;R. jǪ$#BL*{"Ҋm] ];Ʊߚq4*Q7raeK/8Z%FH k}Mr^aI͇ƹܪ1ʧ؁[pZ;:Sr74ɼEs>cW0?g̶%I%,XÖ́c1V(yBͳHL q>\Z Bl/41 >K~gSᓥL2A8*W~¬0.\g^tI"!p%px ?;1O&uqG3I) f}6)%)sO-?w{9&m:bq,@cE,rzߘlJ:\Mk+@wiTK.Xbcl؃,4?F6~6)CXuŻ/H8yyWMs^3yR[pk86eXؤ  \'rī$s.%9)ݎeShU?S+, WL?lԶRwϝ`#1u+mBՏ8f;Vx\ɔ`HXĨdzZ;xos{ǾOjm@}5&Z*/MpZb#.Kax\Es0>?bÅ9%DBGGĸw;eby>RlVWi+@I>ᢖM8-HE1m|[e"^LrWYfR|=Hkr_ɅoÈ c~mBƲތ ݎh2N]7ۻnnߦ+m37Z)s젃u6S9Qr>+ٟhC7LyRyG.f+ paMY2IڂX_Q-/%ӕ_#*1H`DlN ?|9OS(`_ [o?*dAY\7܇}[>N y3֯zI[~3pFAZJ4}>1W hCm>XݧAk~,Rz/}J37c"ݡ^Ё01<$'f?F4%7=I[87.Gu6ʥ9x`>S7Kn~كfp,; ~Λ{\la$h(#XU: vųۼd(3EUs"-Z/sA4,c4܍cSmSw oή.բ9QmCZ[ S|]Ǯv##[X cd?s/15N؟.{O66$0=<{s eO]$(%. :swuy ;8mypf(k@IyyV]řV'y#xC~èA!5e@`5$t"I2&$~G3*-ɡvVANE|&@Z>W&YXL[~YB#} [T]AùnٶPoū"ɫ)īP6 })5']wn19ƹ4]#ɒ)<ϗz1h;^ʛE-q'y-Int#9(]7!ܜDReRq#= pNو˅0[Ͽ~7HhJ~TDhPB $_j2.ٌɮ_Ou,cJrbHdSwFCdP5 1f L7; >Nl}F1ǻ *^o45Nˊ gpM/f܏Adaǣ=! `=".܉)( zU$C Kt6 4jOxbQ'q' 8&K?Q' 8߁|'' 8߁|'y/]JmIENDB`ic08m2PNG  IHDR\rfsRGB pHYs  @IDATx vYUz)*.(C!#Vn`S" HI|Lj>_}PgPQRbDQPS4B}S}wߚ묹|~ηךk5?nv+pv9giz 6}[xvY|w[v+pn8/w+vnmgߝnvحY ,S߭n8W`wm{`g 6N} `wV,^p_ݩV+p_bgrb;b]];svm?m޽ww턯+hE~- .ǩ7;}6ـפֿpQNd7W`5ӊkxg[ʎq;Ն-!$e_1!=vɎ7Vn~׎ 6crAỵ@9vmЏjpm ~ljӱ tij},+̾C,B_Clf MǛglCR!6fco `:0 ^wnsl_!,V1BɤWpYw\ zHk&:;^k:n8 l;O=rTu~d Uq&1o6 0*j2_kf Yp8늗ہP­ -kJXo…\U#LpGҭr[li ~6g kvm: ,\+gY(+rhms(fZ 8I |_s/{?oүsqm^^ f , .T %NhIgE*H!':.~ɻ$_fRzg{vJ$L{\J,vA\Ai`\,I[4@kբ`_hLS~f8ޮ_ `*U+|@?Eqj1]p%^aGIvK񚿩TkxQT~ט{ b#En_~γuϷBįZ7aጴ\Аix!.ԍ,,)Ф4r.x=J+xm:7vx4^?ϜZA>—wыF?? QԀZle!ֱ:Gygocf|*^jǫwo lnXZ_h _1q S=?…S$TY N}_US&gcu]n(#={ǯ̪[NY,*"lEZ9 SP`65+EiPi |ߌ g{?nzmǻVnW|+~ο5>a6{d W$~N.{ީ^wn_r};]]d.5Ύk>eGWugR?J1zAbf?`~hdv./s̊(n),lXs[pjؿw{v}Al >W}}3dlZTPULx:Se"{m#x'Xf Al.1%f}>gJ1UcǞs%ݗ= G}}~ A8137?ˏuvo{5DߴZM11 +MEێvoV_iwYQGp`9)Cx_=vX? M^g^G?׽6j믶 S*Y"F=K(_ >6?@ #suqk1>$v;{?~^_)_^w?/1>tWuA ΢E8{@ o Nfl#dmWgBW9 "*ǡ1v]=q߯Å] pӭɇ7؆o`gEF 땽B;fǃptg` ]~ ?spz)P̧\=K;5RnP7_ nw|A&1o(MGl`'zlV>%TR8+U|ww3Mr ko~ʿ~6w',h̩cxK{mg%vQ+N= J_,"6SNg TQX(\LE0Ot>~vg<{?z^}zxS%\\:q֙Op1|k~]k뻆)( C~ |~Ψ #V/:+(I •M[hhAr/I Hۻ~U&M 0C#`b|mLpI~8c6+~Y{ fE&E/?xL(,=nRsi>{-[}~Rp(#",y ܺ0>#6+;jaNL{9R/=]sM7)MkƞwŔMـk}{̯v i[ q:'~wUB 7}:޵{a_tϸKų7I,MS{K7ws& a$oFZ,8Do͋}lxCGڗeXk>,7`s؈utƜ1}NnH3F@9 W}sO]e'sq&[Ɵ+'WOw~` ts~w~2X5\k8HT:d2ӊpMMhwv? $:eX{ү(" #}D 9]O۾rBgz§Sq+7D%#S7: gG_J;=h(ww~6!X{~ɮPn?! bun%f~xe'Ŗf%ud<>B'ؗ[:f PSpTSc?bXz%o6D'bJ+߱K i_H\;CT ckA%"Ÿ+ORҘ\s">& ~OM,XcX<̊$`c}߳=3`F2>%1 Ri;} Oٴ5&m x.}~_so|ۇz;C?Vm}MXȱ o[=i'ؿ߾9ޢ-$z Zd GR(<̊n"mBg2FCp*jy'B?o bM rۛY詶 ۯ;?y?M^{./o~'B(0r"ÝJ߃=~%}ĒRk Gʉw\&Em#C-bFK<' Mᥙ̀y}~@l_IW?>n_Agk21+{V;hL-|?/)~^bxjTf!< AVCs*&VA w>`ɋ^߻J@C-_ FLJOWW`Ǫ;}o){ϯƍ7{Ǻ']OK;[h9`h`'4jцFs-Ӆ{2 s(5P0w+g1` /y,Ы7ecՎ`ŏ7E)Ž?t"j5,IX.\o+ BC13-"9$,$#Vš1ٽPM:q#OMDW;3_?nUv狺g?=&ppGCA#s !.zW hH"xS1ģrC!s8%h#<.zyG/_cHEKw?hhh_KYKyp5ym^Y0oogYz_~> <_O11b>|%^86]rn qza¶#?w]3Z5V2~ '4Y[x +4g3t6V[B!y.FY p9h!+~->/1ϙS/=Ö0?M~nz)~\kZ=0̧^/#T4q7{!hHG4FA.~LXsЁsS?7ljXi >P P;d*Aýïyy-ȝXXx`iݩ[!Ɔ‚Eo\hBgp"[,4()i-.F?r/ 02 9T~6 X-bS߃_#n}9?rn5ޣU;x\^-AYŚ؍^ocs*߿7B \ٵf^TЕ yq]B|-*(qb<G,4T}scՂƝOBDi1)hf >E{_|,`Xꈻ:+{#{WxںӾس >|uSޥV/f|:yg{_!؃.!:H,%gFDh{RM$(}#IzSj- L`7%W̞5 ,2j-t@9FO{P_uM3>mqa;g)X{vGN++~ܚQYln|aV,R&sCƺlH3?_!T݌ëdC8SҨ&R)g~M@&WC=o{Ky:Vrxm@i켞g 1c+>{V_`:k[ f"t$"1O#9F0a|%W>|JAsrIߚc 3|*5ΩXi+O,p vr89{q4mrq͋ Ќu/x 8vslu4]Ɛ7O i?E>i8_/ Mƨ }Z1(bZ#Ѷ~lG;`hQ&_,n\;;|?[La pĭA+/z{ OGyNw}8adC^l])s1-NzV_Qn+uS݅x Zrt9l-\;}#<#ge&bBZ7ri6FGt&1VFp"&~?8b(טAI8 P+g`/ilg-?"Bg G7 og;b1qXd n9W K. :0y{j HO8_ 0-/ :S8CL8bU#r'4q9."Mc9h/ F8Ԍ x)+OgkGj1sۺ 뿳+kn*S]L 9rU \u1ІFM؆.l4#G*N*㉹NJvSS4Ne+X^7b!d=&p䍊Yb>gwsbam,2vګr }ּ#!0w`~a<(A>sh: ]:HlǸKm!1ѫ.wO\{޴kx{՜^y]ڱWC0sGyVɈ/'6n/([]-g@'./6%/ltį̃c|&<'gLL1h끅J%zXkTgr8,KIu ;O$98z H*Sq]R?5nYezVx$ðJnp2^`p! |[l_|,~5bFh{hpÄ"Ωfr] \#F-XDȳ 7I/3c>]m ,-`́o)3vǙxp>c.H9.a֊~-<³]1.@kCXUI O}`Yѳp(罭7<%(X=Ո sP;_'n9 ۗcP{0 mU!:s~!Ar<#Z?U\# \`bz>:_h7Ś ?s)\&[O3g2hF$xW'_y] }ㄏ{oeޛCDF ^V®oLK <;rcݚs'o \bHhƅw5p`s W?XKDzy311rJÍVvC g]~IVl0c-q}^4ֻ)>ug‹k댥f` {U9}QK6u4?0_<ۦ,]O'C횚9]d? <? dq FߛΗ!|LPة)ɹ~M )tmD`@s&@%,x:iCơp9_pu3[]8ya{/8t͸~{ϛ?ɽe$%mE jݒs mTwͧno!X#~+y^>x;u'=pfN( ~3Vdñj|8+<}Bc5H^A?n.qeH x={o!3&^q_nKٙ?fY> C5ؼŏDk9HG-NN%q9$8'ߚUN&y$cq (t؇2Dzk_I+މuEԔ ?n;Wu3s'Ur>|* 9uaG^P*[uU*mฎRGb|<r25 oa^4[7h`JRS^͡Ϟ;VqYa!6 _7#y0 G`b>?+MYgA#G>wcpm`4W }Azϗ}]מC(qշ$5g9L $/3%7ڇlpOC}3 1k}u24Ny~?FEk)6cxg,rjo8`d 8/]1499ѻ>lO~NaѽI:44H&LGp '(b)OEL9:P<0s0& q1y7/~qr C4Fވh9X8rc!\ǫ>zm51 }4 @AM9xp1y Ρ$ԏ%RXۚ9G*s zHf[:ܬ} C }؄BX^bZc:P[~[ ?iʼn~c钻"sϱR`F1>smv!0׌aq~'M5D&ZOzU@'y]GJyjWLXBT|J5_}iG8O{տ9+sܻ}p;IYoC (a[Av;,x!E,Y4ҿI?XC8܄8M)< 00K0s;>"`a9.-c͆{!>$l`PcA,ugGjlG1|7t_h|]d/ޞژ^GjS7K PУM"C?ђX4k!P2cS\IA1 ‡K~ᣁr&};[~0a?<8@*UdMO٫w잖+Es)\h^S$ T E+Ġ6C{cSR#bNBh ,#Ќx+XafN0Eat:wpO79َ<\^3/5ã l3{o&N}ڊBٙn\X86ECp{%ӛE@n` ^"NMڙFݓP1NUŽV8dT}pSL!fz !֧6l|uR k>u}~.4'r~uh6ɋs~&ͷYX񟎆\+;^t~w;)Ƶf] )^5X0PAB~c\3Q89>'Hƈ^D$ҘVq sɷMG -r#1~&av`t޾_C |GңPkohYnU A^=w='0/fX<fW?2ji F<_RT'*4Od#xS?\3G|i::AaƠ G5 ˹ۦq_;OZLݑ 19lԞhcO]g7:]kYnRsp+|}=~~kt-I Zk.|Ҋ98)":ɊM{LT Ĥw8bR=xu:yP ^{sol A~g'mZv QcNA`7ɘfm[b4ńCxU,m,􁫯x)| hX`a5֘3B _ 0p ux(r#P6'ǼpٶyrЯ/\x(2A >,7EoWmnu20˽䅖7 ;fY+5kEƷ|\z'{KM,:\E,iN408)9gyb>GK =hDr6qbYdĭ9aD;\įcJqXAGohv\k;'M%6eh\]sCwKNuw_ V6""f 7oō7:1a kՑ"鴘3XN@Rө ْR8N 䅑I^C $1恀\ؿ/qӭ~oAC lOC1=,<9k˯Jv+M#:nW(^ g-:3$cѧx"'!=?}60o bX|`XƘ >szlg[?q9N# 7lEo+꫿lDǕ8e>򉛺{r  B@yn ;?nNjPwt]7slY FLYǼ/B> O~[{BCEa<(2rOM`L`;3|P ?P~GZbB2y$W}3q! >KwCB 1ćgZQ5vMlOd57-wڏ/_=5NgSWqUzicQ1/\: s}X6=\1[b n'LulƓk(J~Ծ*W>nQlǰcƟG>쁯Cc{(_Nﶍ^Fo:y/mtoy^]h_ 96msl͑sv#Ho u^}.u('9Qnn5)^Og)?5'Ԙjoyd mDG>fĜf`lh?ao tyύ_NݵBv3q 9 ͘aKafQ=< 0dï!kϽw0VhR0wIi< ē"q}ܿsrS\sG&7M>jҗbx_C*\NJ>^hPk~uŢ7ݺ~a_1-LL͛]b3hs`B7E 3($F:zo&ņa\?U~aaxw>yoz<{cN}"}$ll>5XM+kopg} /O~ bI9آ~JpG?Oo,hs,vH8bcN i3xV+Yd3"@̳>ӈ|S"MAbQ.fb⮷ݿ3EYc Vf=iDrRSBPjo?ocпmlfDy4 %*ڎQgEfons¹-"( v|=̩!Ly7ou+Rʠ}Ibo40fv@o] ~=k}#`8=gQKfSu)br+ 7Ԅb rU9SzJ`)j^1<7br Wq:1n @XYlᓣȆ(,DLpLFҒ'/|=agOv㙿o9蘴) 81%Zr~s+D1|[$.{ c95HaоNb/+yWF7CY@l҇&÷7'3T ԂSP0FZ|-^o #֧ F>Wuw'̍m,6_`:d*R<'8u]ٓ +JQ{$O=#t %/mAUwkJW} 5KO3 p׸cy:fr8=n{[̋\x4Dpl ?9bƱH><>,oO".OկQ\=u)ۥ17GcN7ܒlCAFSlW,R~X͋!cҰ&Y_ЇHZRڙd5I0_3Yα׈ 5$F:mQ O5A$D^́9?b9x@ c=2- ['g}`3>h%6U$ 'bB!,)po2.[cp|Or 1/p8WS[S8򔏜yJ)=uBOňsjyzчF~K]3>)h@0&WENI=%j+H͖D\!veUWiw/38hu@i酫Px[qٛF%`1b1V/1rРwuk 9qsn* zlbs}Q976MÿĹŶfQrV9d9TߋBt3fFƐGrSq*1> ѳ~!5sj;_s? -*<Ħ9>qUFl g$ԶxZ}n$Gaz T5Fj- ӊ#7"'7r|B/=kҞ: NH1iK;Ã@aaպ0"aYCmnЁkdmK82 l\ =0-廍="pBhA#.1m.7$M4 >D(T>CPqɼLƛ6x6={ h4 }m x8Fo)35{dF=fOqΐ°^C9$x k?4Z1җ0u59fbXxM٦ݚC= BP!RXk[!^cJ}T$_ |tl&``'MaCĦb> ͒%oj)<]Myl}a&=sGu*DJ;Arx`1FqHmŘ{C+Ci tjYN9$@mO T󎫟x,^|zX&LL/FDpMJ  H=}]cN hz~ 1LM3|?"%9. X| ~< n'љMpZ"Sdx+XO Kռu6^Pbaڕ^Mpb`p[].@,IDAT8YĚ#\7- V2֤<Ê{A˂xA@Z WNVkf2TZzNlǤZCw/&YVM:E= )xx|FSndq'jR3ܧ |Cc09@W>lO![>'b+>}MQY;'1:5&QsylK^%lC ~m'>U[Sm<ؑDx@Q_lS,LǸ~` +6{asY-"c6\-m{i@ p%ªr׊YMJƞfErǸC`Y`C'l&ѣcVq+.x@uﴰh-7Fsm|!c2p내.n<ܭ.vY 1ۂ 4,0 +'z3$|8L2{ nf U>ܚ̙@?̛I͍Jz6\֘- SM|+^2qcxzKM{U14NJW[7H!C`)Mup륖=8Xv437^z\FN6MZp l δ8V~9n DƐSZ oah-MZ`m"~< "M4 O+r \`![ؔ wʚ᭼G`Z&N#Vnu_ֶtˢ5(x}zS nkXN +1=~[ tFr#`DZšEe]h+@?{C ;WP'^q]5utg܇K .RF|!Ql1lUxΡMnZ.pGai5`xת-7M5'ܘo %xSx?\ O 5, ^b[ju/1;KVnyz ) k)2*1zK<#r Ui/)FZ;ś.xo 6ks"/s;(&i!h \’4mBIEEwv9{7^656])~k\ #Đ f"7mCֶҶ؇L&x1A k8p BH ?X-<7 6`k Z0YSkS)Ԛ{okܟ jr:9 Q6$?4D~ \™ǂʢ)Eb3@uяrTpS{s~irFN*HvP C׼~3V~b|}- 욷)Via~_Mq16f>+dNKz!qb>1¶ڶ7?}&'s1Zuܭ0T%]o 5Nb&mI>xE[GLMs` ¦zBS?15D0jlkm7XP'I60+Bsߘ fFEtfUajPoI~iBn䧌`-,` %ؕ}ͭn1:EobzM1w1!5)\sao«7 jX@Xl_ l?067Bo&cqh[!3 8T,S1!Tэ rʓs&&x3J4X}.|FVe3p9щXHFOHs薱֍Tәt'><`b>`ŵ9jkmGョ 2\Z7춱Z-`z8JŶkZ/IipٸV m ~:H`{k zmdja`-a9;ts򶅩 l}ms'㘓5HuK\Cjco8}5[e cb<T GVĺ3F:~4rRfJS=z>VŠ9oZ-ޡ`ռ} Cjt?gs ZZ1cC,x)KXhNob t%;lj\8FCQg`Ы!C10?4֘sGZ*tE0wyޮB-J; ^|7Y7^_\<'&0fr08~}Xs cQs!T7e=j [?P9"!(5[S\Oy+k3l H^d9dVc MbXaf1yqyn'69hE׸~<{GGߵw#\1ˁ$NK#p)~/xvh/16zuU/^/Yz,] ho CRg \03 Q zMUډArJg. nW}jP)h ?p5lCB&sbRq!ߋq}1!42W1 Ma-aYJ3y^;Ck ^l\\f_r*L򓷄Ŝ1S Gʴ0q7ѩ55 ,Olq`ϋVnܱ14ouZ6b>>^E~XD?N; 4|_CJޮ}@L5}\^.R^),p#L?1ba[w I܎8qșQ> _są84?gH{мa59F֜NbI$яX#1U9?bY5|(o-qr l?ͅ& nxUfcR/V9L-=E>ՑqŽB&𵐃W1Fpj||t.9.hS(|O{]|Grs`s`>zb k ?qC9}gs7ʋ{E %ːT,S 9y~bcOQN& 9|hR/Fm /+t4n {G\5#ȕ c :6sYbI@pSǓ|bG(=H6`'<51dĢxn`ĬOLwx#Ba~=v6jfC|`Rn7|p3'1FzSqx ^V<>S>bu1?=8ބ㵰-Q3!>Å3*nbt1' b!%QxԏscB'FɛlqE'5 KE-ū8 cquq`|U'pExĝ =sE'F PhKӛb Z$ ǜR<Škn n?+zaPkÎG`]GW8t(0xv&c7 1AE1F98ŏdkqTSKv ' '8&aMƹF~mC'jU7ъ'h:n3hί3W =.j^qjHڑ48ƫ],h4]`C#xSC2u*to<мA=ƚ,g`cVnjyG>B89Ƙ&h3?zjع.1B[ǫbh!?VN!MǮ!}s X}Qg/<a ,ύX-逃Sc#n1xŕ{Wya重 Y<'!8Fd|6klϗpXϸ@T>r&r={8ȋ)ӡF[j6P#G֎v6<bgaQ8EP^Wy9qSmK`h#^m d-4x,/{?gƠmuv_ s¥轸v!sayɛ"4ȥV=_ɍ5xYkEuA֊[PdR4ޫy$8<«ej }?>z}0e>k؏Ї6(5&ǹS99hCkj:r+9d פwHxrwzl7i?E_5}Žù+E.685HZU.ӹSs ~v.Q{OKOxLJF3Gom2D>2FSs!ΞG߲R=Mlx1Ü΁\,4FZS)9opy̭c&xaA#ΞkO5>b"'bazOWcm%xEh\XXؙF_‼ >6sq0>M#/ϑ:ŒE9QHw -Р^CƤXF)4R;ry'|r,qæ~j- NqʱO ZU<"y~8mn?vâqіX}q2Np ̚bj. W6Q4Q ~ SZ mb>u,}9<əƈ'2&|9K8DCm3Ԛw-?Ogz.'[ `1ǡja7zЎcrӯcq1U'7M{ܬc}b#*obl.Mmgysgy{o{M^[Ƿ}E:x3-?Z`6Mw]3ii+c?ӏA |xpO5hhxKbb"(bwJp {R䓊O |ȣq({}ZAy}h2 Ys`xbs"|exBcQ51';!b$pwir1b-;8SREnc~7+oV078nإKqJ&|36׹x4M=ьv54 H2́ޤPD4̫lwIx`Z,|tkh^aUN[#Vh8*d6OxMQ6?g?Yv,p!{pdA8E/ބk^͋:ͥv`Î"װj 8<ϗ 1bGM)O0?_blr~[ӇNhy\Ƭ/bWS \x-zS4MrGK̎[lg gp \5:Ŗ8ny`>E,<`MYX|;7x7]b'>/rΈ1^ǔd/ m,Dc.# ЖZevovpi3+7ݸ2?+0q>^g^i0z;Sѧqknlkޅ=}H<3VG_h4bK~rѯ_41Gڳqfǩ dV~`Ŵⳁ,(8沟x~F8\q~qj>Z{7qM#.}SYhY kGFyx!sՐ 'Y_9nX}/K zQ  kn!VLm>X{r3t2:c> X|Eη/x.xq 6gkjK/s3nq-~8~yٷOrO^VscYM9!D.Ì|?m~N@a=XgV瘟 g!QhG>p ڊif7rMc'ao.\vs/q^CgV[i٘uOV<W}nOؘRIt0pGK3 TĤbN`YK~8m/0 1H[>szm)̉}9kb‡qxmўOw)VXV;&n3hgti 9EA{@9ĢgJ/"-JwV>yg[%kU|U>F+_;݉ |=dQP,.>{An>1yDһL Rx܉%[Ӝ}WϷ?vj'n&̂%E>i]˝}<`E'(4g, w8\6qO| 8y0a" {/8ynXjhz6DoY ru{ ,s*nH2P 8 4  qVsV,D6K3/zwXUlO ' nY 0QD١ſ,qVLx1`|`Iq>Xz+j$=^HNOaix|ϱ?Z̓NW7ஏck2; <砾xrH& 872l4=zE clwB{O3Grx̓̏E;#6?3W),(d2?FZX`|w:GyEMINf E41#9Oa{Q!|#wWMؚK?4XjV98>{I}Ϗvl8){%;G~D8,L'mWɑxj>;2#F̉>G֊ݸGiCOڭ8bą,6w556E#W_u6~+~N=x%l#e!EE$Z1d9`Ym}C\c*E+w(:g*mb)X+-Vp6O[ǨcS9{'|pKpҶ ׆*2FQ2zOU߁D}fØ(84<0G-xIO[G& ne( #ҶMЀ]ljNW]I9cN̞Oֶ̯3v&? y+_:(8/,bkzmYELpW.Y٣6,ҐM]Xx8~_",+=>6|(/)*" Vmn/4j|Xmʩl/J¡2xIbtV|5vIgf}H:.5Qn`kzC5Ob8.}-LSvT0/(mV W,Y_~|eXM>ϱ?_Kyb&`!Y/M񹀳,´>V,0/.p+]jivE 9s~X[.EQȘnaB;v7"/_x%m#Šg+AѡjH{*x1Xu.}#.7QV'%f\|FrV 1hB{o_-VW}nM݁gzZPr#0?y]])|m|):1aRm!istiHBt qVt7C۬c96T~_V["Gn09?bZ0s0[… 1zbYl@aFO= U?+lwxoڇVhxBS!+~!|ִv?%97dGaeYC'4f@iozE mgl^p5_rkNӯ6VgKW@ ź}V UcEEw*rqթs$Yp4.vrE?|Wڤ_dy9mrm#3 Egq"sNġ;?Oͅvp3_|#nױ3] ŒBaTь'DMC4U}QF !.1d'F5r!wmi}z, (VjQk]yR \&|Ϯ%d*Qmi@^[s&d~ ՙnl^fϭ-#~uKMB06%gEHD1hW} _By7?n3ٮ+y<ڊUxܨ΢E1օVq[m`%Y%b#Fm/ReYS'90Ve+Db*Ԁ '} >=> v/ll6`-+BeZ+"Qg N{*Kbe4Yj\&'#_&v 2+7T۹XEK,\+gYq_,hpP"mYM"bs]gMba"1qbѷy|s]m_æmXH헊[Yя6`.B w^-NP߱XE! rN`|0goSM+|ίZQvV`lo-%b & ~ b#h-/kJ-m&n.N}[ۏd{w%u$ԄUj̦MAPCE^d HilI<-kc+bk'|%@wbPzkH!r1~N;TsH(N [CYIt.>gQk.B <-d4 @ ΍@G >CUܔD7> PqmOn[ %qnx =@he @Ov\[p @ #1kA@~jZoC*_>F$XS/b$w)@Ę :4A:߁:/n1*X=Aaygo Ӑ^c"Z^wD\ 7LK` iS8>A؆S6 8^|NPc(S'" ԉ{8Fx9u"@ 8^|NPc(S'"_l>IENDB`ic092PNG  IHDRxsRGB pHYs  @IDATx uWQ&L_y"LD0A`#诶 cKw8* "0hBګjתUk9w h+V@@[m Xh|)h+V@[hρm h++6+Sn+V@[mОm h+V`WmVAoV@[m= h+V @N@[m @{h+V@[\Xr[m hh+V@[+mz;m h+69V@[mVp`vm h+Vms@[m > h+V@@[m Xh|)h+V@[hρm h++6+Sn+V@[mОm h+V`WmVAoV@[m= h+V @N@[m Ӗ@[Pp;*}$~qspuFv=ܾn"m lصKl+}o8p;Eps]o#\km7_evM@[M\oWkB?,ᨛ=6f5ub]hpnÍ7}.iXv؀h XbVqpnh7|{>w[m n>nZVWmMj5W)pOۣ Xñ@C^fΥЦ!|J `6wMN^ɏn;4{|larO~5jl z!}0Mzm T@T,R @?\q<+bhu's(4 'm $ƛ `Cp"^ُo;+ ?8p{ }f?A 4S)?n Aomvz+Mܰ?nG 9hB}3@߬ c I.B;Z i7]hYV ;k`g=+6C|O6 7 6>$Z'9MոlZUmʖS[n4/on !Bp]ض]+\4~S|R~A_h>K ,uS# xjr`_FVl.ٛV`;@lGL+MH0n/ۙ5&w~n@Am6w`s׿e\hu^ 7ilGlSk#.&LjF\^$ &s{d%/۰yit2.q]?@Emܲ+6[i @ siXijqDCC'a#b<+d4_W;ZטF&%<~x[zs+6[Ah%+M|?#p;'`M0הsPCQ3`H.cU ٦9V{ ' h 9jx cmrG++j=hz5ܜ?m#||8T*sb*K\,D\@Gj͙gY= 6Gmyk2"} pYa:ؠ`,ĒLM.ƚ:ɕz@6mZhg3p/qkY Tp(I!V$6cx,bXUӘ:65_z:bM%~!8 '~k`#VmM'Yh5p{4R=23lCs:\\VOlhw;7v&Fps?{ ké9~6$mmEl @0x~n=Ňr |L`%s!B-Z.Ke(1~6avX Vˀm|^|1GJz#Fٚ#L7̭=uXnS̑ b/jyx'p#psnh)հ @Ƿ;n$ m^s|.p10\ҥ8BJ TZ{ZVۛ;˃U&j &,ċ9^jyXǗp sOM_hK׈~|4!! X<\nO9C9=;4R ɍpsw[uJn(%B,du| 0Mm5+650 @?2i^#s| S;8t nQF1zɩSZ'&MhuޢZK9 n] g?gGa#pyqZm,JsWAq04dx*;8J%XVwZ4D)X!FU-Sa5[IJzmx*7>w(7lnGvYY_vBҜ5;Ǘ0s}9 `RtѼ]w!:;:ƃط۽p۽>'1au} scn ~;r5Nt䜩L#5Fpż%n&;8HxĹ VM~p; @.Q@p{NQ"!%mgコc896㨱F >{`p-l  \K;iM=slIc+(-)*l3ƔY-O|s//a" +vȭ@V~WI4Y:M7ᠪ|.7/19xb5qru'ޝ~ʑCO>;=ܰ*vM7|F}o.mCx9*ċ9r򰎯kx>V8ៀoF첢Ei^Xt7ܤ!& kƗp0 .J{$Ȇ3xO9ic?N +pwu!Mon_5mzvL…XQy>HxXǗpC%MomО @ >g'i^c4 ]˅<ƺn}yݣ8{(T?џvݡKuY[nxJ^¼5PbIS8Z S% ^/6XhUx+;p{Xfl'x,`S!=t;8;ڌM['?]O_}k^|&bIcEN5\1$?mj@OgߟEW]Lӆ{AsD9$Wq h?/N>qg==6nyQs&,/pC@x-RL,i,wpvsQ3: ?v ?xςOvf(g)#Gð&s9>$WwGSǟ ?ߎw`үvg?ggtX`a\n³f/B6E&+mRp']{HmfQ`9B,e|.7E܉3pJ<;{Z{~K;?|y6qDe]2":*n b<ɳ'cpU0ߎma?۳lcmv I#;83 =/ɗ9p(4g{rIm>x_ /^m]덎?iUqTN'w@ kڳaVmVƷ \#iq(8J2<9>OAs/ sO[lM4%.p3p'>~i_80W%,SuPw&fhA_j~O1FfIcUOvr_sG=II~O; ]B!_B/HJ^Ǘ4Z:8ϗp-Q s[_' knN\؉9'h/Y'6[3_MtY_@)ܻ=1'vNwEMx6aTMFPȺ?7|ǯ.+=z'jv;Q,'B! `;v ~pԠF]_#ih(E,J<^])z/xCwjwr`D*+`zPV60@+7ѽ]voyO s:AcBK8f5̼[*r9fj\ؙ+6}~ n?tNg|h$.8ؽo'?~YF8lIw\ALm2ghr>k]e+=pjOC4Qx_é v} uC?S4Zݨ "x7}3Oԇt/p#[0 V F[$0)4]L2Gċb+kvhXҙ@o}BtjQCM#,Oœ&`<~jwyu7vytrmR&· _әO4yY">վ zl>Vpv 4/u/eW'>ѨF>K:G|w=,{~{=ƭ Xω1/o~2Mm0KZ?pN 6|low^4<)\85s:{guO<u -|6.6-䗻yE?_?LC؝6_p/iS쏠ֆM V~t*j揟[=:jQõgc@e68ǞLMcklǚsLYTKӞW.6ͯ6vpY~U05_D8o$6R+ `ݵ {̨bh灁;,:l6%¡kCfa-߽qZٝpH^=j"|Dm›]mtڋ\d¤ꮺmB_64&oڀ(YS3i 7CjpL1m VmdK2ՇM4kbrս!׽Y^3#ݟִ,V|̝ =j2[>ӽnPI\qU-ҥg~Ҧ[|`?@ֽ_RvԄfz^^5&xlVE7s@lFHܞ5l6]), L KSU?G^G>ÝXZNMM^S6e]/e__xo46X]ŋp67 [w`>6T4xͮEFZ7mc3im[{(/80RHk&1Kݪ9lJKu'҉X2wo|'[r1Ɛq,&XI; |\*h̨W7eHB"=4?|i|ᇘY8RfK}3rN(A+W6JB%427zW[G\lxBJU8yF(vxpo(юm?nw;w(_5bG=8='1.ղ5.Ku\ʶ|V/l:v}t/F|cč؜LlV_{ ;b+6[r?5|5ެnGz¡pqu`/~4|IL*F"uҖB[_5c]V4uK1.^|; >jx:m 鹶 o:Pw c@lǂ*.]wzۆY`,x]γx } əfJej-RVcs؊\ۘ6eZ v=!waAଦRZGٳng&Pd xh_@"/jºhX 1ߏ~cE֪YR|=~!TY|-/2` YO mǏ|?h jڸ ZGّ^-n6@>6AF;6`7Vh6ç&;# Jkq$j<㻟xG?ԇj("؀gƍYؘu,Cch#M]i_={o={XPT iٲL`.+ΛZ$YvJ"t<~ϞWo4nV/ z*l7o6И?~?+'7ťSs<; )wNWHahxEtN!C+oz(Lr4 oK~˧ҍpO%y6) h;u`?llfOQ#MG57vw=m%=V1 5N+*D_PHĻeW9T*PλUVbڎpK\ q .:m C`a1, -B}ߓxoMo*Қvw+f.y` UOҜ֥(V{><=44 q'Hn K18]/]'Վt&[+:G*ђo2o |}п;7y)$OAŰ 0)f.,nx@ yzt&]yGXWY'DVʨhG"03kS˪kjZ]ZzUu&KM!Tbl}__ܽ块# icme/Cp.Oڰh,yAY~ؿ5|([S~mpس$lL50.S,e*e&Rq?MMP+ŠAs&$*20w6sI+6KZH-A1_FBPh욂9]i"\G/ef^uݟ^Bd'"zqIG1BsD6kQFhb4{tŗ~5^6R~ma$4~ 6\pLd'uPSn7v>cNZdqe\Zsy,8_ r!m rTɄ:.ÊcK)z-tMws_pc "fR7\ӈOMQVmƅEOil#{̫ԝzrLc`l$ip&ʘK1csY:"h"kzʵPtFUS\:jz̥WԽ7>ݷpbS~np1 ;-~P|l_c xOXY//E N_9g>Ĭ^L*3!0^` F`rxTSZ'S]]mo䔚$Չ#&YMc kH$K[ïU7Wrѵ97'<9-:O碰F.N`+~;k%HE03KSC>QqhGqB5:r F{s 8Wu&T76X$K멝$ۆf5@ZT2א`'LŸ|(l0R9Wƺhu4 48#Fi'(xT(pO ;)Ӣ(@Ѧ`f8f(x?kٻ9llT_+ 4qT6 GB9\ίyu'_M[re4"Lt^4p6 EvV}YCi.n#hF|={wE?AL6BZL(I^/|3\8(&9̘;x뭢x̶C.r3 %qT^R8Xx kSPl<̍k3^W)4\\Op̊#7h>4B"o` />U+h#L $8X\ :W-S芶}X`($͔+bPAsC e&@aI@=.e{ v_Z(NA[]\J[b^n~gorctH] ,R^h6"\+VD&662*"Zn&*oΜ/`P4Qs~}}/|S—]yͭКʖ&|H\XupHQ88WY/.%F"7;"^ӰSu$$ġDJ1 _Ac8\eHB.S{$u1/E.uVUít&fCl`d }uopa]c7i?`fkg&@ h@毉, ^ v&^?v'ph?81~K#A9'0tbI\ 9qH*? ?HGq ơȒZ :USoi"9щ\S9|\ila1xmkԇ>es#U'bk6^%mh;rQx2麗4:TO'2~{wtܗ#i!bpS&ġ*),[QW et2nI-n'fN 050*413gOX$FBbHڛo_@w={&!϶Wݐ.E6h ( V#[ l:s`SBk.Rw w>v97(2*.z1sx k Y,`OOн#IhͣKLd~E{@tukĕ8r@ː㥘P6`ܚB"*+l_p*IqR @⺠V[;7~3U\'b'>][Iu\RiR\bXyDd< "1@ kA4%'=LBҤE;C4yD{u~:|7r?q' Îō&Mk98%WVo#rTN (m,MtaAOO !u25YnF ݔXQԜǵID0Nq ZP%\O^2&&xznZ/x aݸґt$FJxMkkhh;??Ϝ}'l~|#N-1?z(Cux?& )T1KZE HpK]W"x]k̈%Όp#G%FZ4aZҪro} ^wo&].\=^.v2ru^p%9WVA*J%+h^!QIFrܜ_ar~%l!FBKU̥ FL5\7+&'-XbPTc:Rc}sXBL QbBj[︧_nxQ+9KǵWPv{lm k+1@[6g~LwLxG|YB6С)Ӈh1/e6 <=EWt<LZ0_Lm%V̼ʝSš7J)Sbo:>W0iĽax-'%֘$kFq[t xSWyl?-z2DMDx&<ĔokSO<Eyt:}D1r| EkrvFG*L ẀN-W4EhgШNdJ< {]?&XPfN)6Kw,F7.f9/B$C0yD<*ĔO4".ÂGW"r@4\X%"]lqhDZG=/'ܮ;Ƈ)sqz?EmpżSJL6 `Lr˲KH ĕrcJ!>fC0+,.'˛ëT:W&K1ib,bGF-t_UVX 4u=4_lyp0K9>{ws4?"} vv+qp2@ 8Ϛ, qsZqFO^K0%Oyt09cLe)q:LݤG DAZQ;P#pGґ.Z^Q89?܀_k]qr~a<^c(]+ n:pcbN?A~2rdeOٟo|vK1Hy$|H~ φ{Xύv'N.O \ѵd6_KZ 0>=U|ejD85iNU*FY8D;ٮ9Izة,ÏѤ^CM0zc(`0/P+ëlWhCÚ<P'&18׍ȇûør*K/<3 G\v?>胺pӿpOa*0q3^ 0 %i41.I00)q&" XnE0T99Q25AW5)3pR.`bt B N#ib%^mx{8I~>gqs_ύk oa*+4x+@!>AvU 9]lp|{#uhnpK ѣbt_ fޘ*D.()XVan] i9u^)p$eF ).>m_ˇA6\sQ8+_=x᪌+w!4AvEm-\0[ O /{lwQ1x(/iEܙXBE+rKX$͸S6kqt*@'Sl!TijlRbυ,!,m&.V?vO Qu>/:c)Fp>JI 7(7^t!GĤɖb"S#ݿ;}o*OJ#c] ?%)]W!FL9j2mud1|M)=Břb2 4"73s< RMᶽ9I5G&[ Dh+ZxI#s2؜xk N{:>pZtn[+􏟮\6jN#sc$aXӍ9c?T5xcTk}q{| :~חòS`(rzihRNJX /Mpr@IDATzX5G+pFLcRbp6ubsIvSeN>?~ 180D.㧔P'fbSh8N(kG8 ӯ ;.d5޹ǪJk-q0g _ 1 K'&.1\i4Qd* ̞k;Zo_{FuW1FQcް=al`J3'9&ǂ𴞣MJNO˜-e] +:'|CaC|1eđx"nVOAxdw9G$Zܗ"<9̩-MO t)l81U.=~9g1gZZ<L `K,"^k.eZe+}I;#qۇ;G-:?#\X9䶱V!jp)%4pR>.Z ,7ި(Of$Q|\)J`X,pŖ׳NИk^nnHSYsG]z?NW3;moz0ᓄ`k sqNugztw>c\h(#>z؜pZJ aF K ::^?!ՖnQ_%SBjpcy4 q8$zudo\|Wi&xla}c}g5;Xw^ o.nsZ0 =՝t!Ot aykIGG㛬AB>/ З갞20tΜEre^vZ45'O:S\˂hB1&&51&p1Ns1W*)PX1Škŗ^<.t-YbQX{ Lv7ؽH?iQǣSR6̃G _<:C rQc}IFkqJHcI;[ * 0#B ~S xkԇi(d.͊ _|!U2jWB&t8NO_kt2Az-|hyQ8ߋw< coxd|(52lXIc=:~8M(@#GEzCJ Rɀ #pr9"ο\'UCr.F\F1<$FT[̝J|4x&d-VsZ:h8|uz@AexkwGX/> G1:l!R,`5#َ~Mx2m(;@oMC~z<V~cup 7{Ky ^ $2sjhzч`$x\C`biejM˜Gjr0/End^X0BH|=NopsV>e#@P>1;]6"i!/%}ԹÌcz^x Y|butX\G&=a_$Oftj۽|DQ":'7"R_f82\q`ud  /@1VV"I0jѬ[C1IZn,o%_p]u9k(2}0*b(_Mk_rm!|+=&`1ԥ5yd?^|,Ɏ?#(uXAыy?O#p1&x9PТMHCU'+Ij@.8Z V9i(JhۑBzץ\ N@Ȗ jEVI qUij\ jjw1Xk}TXN@cK1 1U<'㋚G*+b:S'NGZJ%qnywyvYuݏH#)4r|sx8XE `8>~Aik}g,ѕ4B[G Z4~.BT9FL1H6ik3>JP0!yRMND&VP=PaFp4  >ſPydG) Xc\6 sAO^,b N$MbqpstJ1i&1o{V0} R Q$2ЩrNeA.OGx6չ*mAqJbaa13԰:!wE;99QF#`R"&1y?2yG.wV~Q Q k_| `*ʩR܉ s91~F1KkXp|IRO|7~pN<ٯ\:fm)k[s7mtC3 )Y2>xK8 U s7HcGrÕCq(/T7> e桠R jȊ"j41j0x>!;%vBEH'W$VFGs<|y!YRs9,&X6ԋF E |V~eDϙ%nP6W]rllmBz.-u;j+YqjL' })Ƹ)o/À )jY! !|\7R-iU,:ODw.r4ch<&܎19h"/B k8FR F uօz9p 17l45<.[~``BH2{}O$PI.E*`#޲={ܖ EҰƃ~߇X‰QuxxlvFyP-'r/!60'\aOx`J V|-`Ů$G Z/}q!&hۘ)\9O<}*yr4rMxUt8M SbYG>-N7k D } er 7%G|qc?V 1kھN Wl'U5^~IλS_ / zzy«GD)~E)<(NBt=Nǚ*N/*TӒ +0&cLq٤|:mw?<[ukp;Gc5l 4{XMT)%]aran]:3HBN~x`LbZR xEktmRl+÷*=&zb~mx6{d5d|,Uq.ήNoXkbQ3W ׂqa.\0Kr#Nזc.JF1&>:Z12haC< {&#x/gE'ucd~@nظSŃVH@!h0|ײS֧󫘘bsxNツ !&Y!í^s5]ǝ䢐4C2 k9ƣ 9]|bC N)KR^ <.Db*?@ @_8#HOD9F xwSƣhJX >w"!jO޸Eh `"X40x \mk &&S1RHh ;繵S^#i_ȉ}}]4A<|8FCc ?@,цOa'v$}nxꣂ#zF7tλWk~bl GOL6IEf \xuMpgZ1Sɣ`SF·&kSq>IUWBM&!UJ8n0LAP.z: ..1B >&>@ۓO:!T ^ "M!׾CdX 0uM[9k/64v`Lx4#tF^~OkcA5S^[l(L$iYsq/iKLjC' s^V8WiYsydȏ Kx'f]VeH1jO5'p15BxApCtXRf}[k\`DIa9*&A>D͓P9 #ÜF㈟Ա ,Oէ' a\½?}ZԔ̋%<]Zi!Ѵ|$yxӘ'~R l1s@!`dk8'4R$S K=8IY35OW"L^i'?`:!.1l@'8 ~ 0z~[Orв*.n1Lcß2q<Gc,p ~}:གྷk{YXWS9>SQJ:aKz}{@$IC'91#cCeG <(wnn`Q=g/AϗN$pn=k{q\F#80dcOƣO#K5y\}s<ģiē1NEk` A x9o+X%΂GYf|N:|^93 zZ\1ms=JH@q9-1y*B`qv!0 `$Z5 $j,c8fگu2wB+qNpru%c9o|*.Ak0|A6f+9`}4s;Tp&Tu7Knpf9On8u!-rlEhtF0D)`nb;z2-vwE 6=W$.v"1`#qHv@F~;ߍO~~6BS ;cFY\6_۪H\EL|XP%D8"W+׎X!?5GjLj5hM2ev醓@Mri5l=j0 wC񥑳p-#t9`2S-x6in$ZnMk~oxrE$<˜`8VC2cZc`@VG21JNOȮE צO‹`l 9-0c@08o:ZNWq ^SS꠱t Gi[ 1 a@ay:cNwApbr~ p6I>H&Q"9Ψ_i,v=lcpd( F$3\AvE9Ms~3uG?fbȓ'iR.F\^-Xe5$J: W̧s5y9mzqQ8K: FBst;ntSXU1e<@y!;tl=:L)Al=,+#Fr-a"pm37<^놗!>#1;Z3waoKl,sm&8QʃqL@>& f>87Y0:> (RN{.!vb9(< GRaS&WCaHu(Tgs@@hbPcV[1 Nɴ7׺~%8%ٮ[ f g7c.G_l !Ex\؏rA{txS9?0SLL}ai/*vh;A] E4o8 c=u4Jȹ'QQ|Dh4־N< o뺦bm5m<շvg <Oi{,nR]IM@aA6hj.Vb3:%w$\.9/J+-eͯ'(鸶6f2"ƀDюNG `7b xuknl%r~\0+ ^g~|(5t[ndXþob63XS-ry d(Oz|"XN:d8O~.i[1KM (kb:^@#G|jHa#&dt-`BiZ֞]l8s 1v0tˢ@ Hlnk 4&؄I>ȹ(n1B`L`BaGΡkU1eȵ ͟j6xTk h2^==m$e(?Gg{M-RSI5ϹۺCWst(]DU<">CNm8`IbLg0(5 tX]t8I9? 9qEh.5Oċ X_3w4X*c.KH B1LZC(ФCP< 2rbxMJZ( !:k'̚a\=mf?&N>xQiߣaS {}@P8bAEΑ P1>Q<"FٔmtIb2r8Tnryː,v 0]#[E pl#59rʯDkd# #gR gYzN >v36nG b hq1&5JZ6hqڸ-9sY?Se6h|V LJܔ2ZPY'wsyۋ#H7;ɴn%y4>`DOŋp\+ %m2 c'8L"x>i0.@g0.W`he̜xF$ULL1zFʻkݕ/?0*``9im9u[?ni5n.ꮸAt&9 `/#?hL$GS4Hb ShjC.t^1au1!Ǥ('H)/dI!ID#Wgdݴ>?g=1a/ Y6!d G0'Wl¦D 6c<1 9$FnF`j0k_%lvm00wV3Ɍ< *7vOw#~3G1pJ7~ (<*qéEC<`ɋ(Ftt;ev;xNF\њ)^ pQԚ9kka:I ^ NF䇘vd9{Y(, !¨}d#ċi$̎0>l, ڦa02 H$ȈTq1@V8e]8NK82M7tx I\͉ jGsl"v"l(`B^c8=#yD)eGK1|u ?#`D9j$ vu7Boq8X0qx 3 CN>K9v=\ ")A^4 1$μ#28-i 퐃\گl4JNc12`QwapɁP#:܇vdZUE c Wsnz'ZMCxAەATb>_<])OrYZ!!.,&6\Tn˭Ɂ sL5fFUc&Oȋ#,l/ Y V NFBm#uD 8!.uc)a\ )~vEDhֳc* LQvԎ%Eb&_ ݸ,03 G{t_u{Ai2c*j 8q6(f:P"ʫqK:' rj 8F 1/`y 7k1 E|&1# Hs|+2b1PB'<|Da-EV@Xqն9y Xiؚ)- LfkӺ,:O## naلU)gPv?J'a,`fmb$kD}<G ~#/a#Z= ZQ@ 9O֨lqm-S1?ޮٚ4:==%5Ӡ &WD\q Dao@D@EGHkf4|:3+WzɧꩽkO[3ggʵV>U{:>o@`=#5uҕ[kɎpʂ@MFH#!mQT3sB $#Ng,\ƅ#- j5rHmY>zOʧ˖5」.ؤFfsR\zOcX#@>Ǹv+S»eo.'yŌ'y#~OS@ŕ5</-;lpX IQHza=rsŐ80/yY㺀#цl;5FK^. 'x4A|z Eßyq|3lV̧<{y`/o~#a?ϭߐV<2~c <=W9k0?ǕeF=@؋ap]2;iz kB= -e}re RG_?#G5R/>,ço~˙-Kxoh+O+!⍎>",<'7 BLffD%VZF*PZ[Ol|uWZ&u+Y8F>kF'f۲u#o=o~+gbKjs*[X\r_(##N(գqPXҥ 5f:ׄh^EssMfΠΰ1HC˘QF2`Q)D<Ŝ"T~KQesDKvmmqQ7^>ãߗcG g< Giq%`w+_Wտ _xZj!1 ,?QpQպ]>+rX -q4:BLJ%Ŗ4 $npPRMn@{V󏅴5psf8hA$Tl-wnp|f-hF~M rJcsL|&xIKz-GLi{ < |dQexN}!9.Ok?o>} hOZ#R)ii|r04:-SmF*_ O梡Z3\E=d#:m"h)jk˧[YU\W"w?@? pt հA};fPjQ,tfķcͧyQQ}e+/6CH f6D sBPrc*f/ VWˉc{d  9`|LeA~fy#z7o}/}DyҠ_i4=xy(cC1ׯ>䵝{f ^K9wʮ|j;{7.B׋EJG> ۿ7}֖=9FtS8Nx asG!HMd-MҐjDK%dhCq2MsFĬhVÓfq2AzvfOhsc[e4@q?cZ_{>czm0:oֱ'M򢷴~]q ӛ<>{XAffR bxQ`E}'Yy GYhm>x>8H5il[p? atGqcm-w +&Yޯ3i$ QL~͍)hY/u 9h_t5cziO =~O~lDjIliwk<].18xmd4/z}u{boo/.fLY#!*7PxJm.iHR/O27ـ2k5@&2Wi2xO&T^bG"1 8a"Lr\s=3h <(N_I543Glto} c_z/>~sM523Ÿxu]S{? CogT~汻85>-_|ߖ/ fRʞsB_d'*l He$BKSe$,\Fw{\3-:pa8IS*1p,8E22L\Kc{nMin(3GTOiNH(" hpr'~) !OEgMEh?w|O8 qx78A,o7GÖHT>_ӻ_^xS Ё]CԞbIneҴ6h2ƹM$QpmuqGsi,ڲRK1"YC:nuk_&,h;~2ҋ2ڍ CQ u<I|NZјũ1ֈa]1֨k/N#zsc-\EPsxwWz5 G$z/ݠE<31'MOoMO7B,R|i/( DEazb΢n9KTFFT< Gq%b G;{)TjVC tt@VRՇy #jwB­+/adukց!KM|n@)Լ`0k6d`00Q6$ZDKn'}|543C7Y_, R=Z&NhEQgڤdQM)ˋ2#* )M Kl+A;yٜkOf:Ԟn/:(V#%}=dٰD)Zi )1.+sc%{__ϫ埓zK=i6s3z\n4K o[{Ӛo~U~AP> -=kEp8#q<׀yXEb8":\Ke$Bu  )*SRdF6K\ Ҝܲ*aF:L <b45 }\# t}B%]Y!)'?_<Ik)՘ fRIc)պ)#KUuE@9Ͽ=' I1.Gď+Q$MP>=}z>i.t|5WLsi_7`A<}Ǻʄ A( 2lP.5C~+٣ʏp+}b!uUp?+1=ZqOuQVךY=u]knlԖ{rsGA{mu}p3ׄ]Z_t tBR$9^ Fd)bG|'35q]sҜ=r9^%ֱ \kZ||_K>3 x̵¾;9fJB m^!_QBɛ/"!,bA73q<2&aϹE;Q*ݜb)Z\DT+lk3#5 "ʋV  {+:達,GNʎ܈pṼkxXگE~' 8WcYGzksO+!*sÃNFS+'wQ :wZ@CzD[׃cp{9dM4a 1aA*zË7I롶{>,U>jktlFc<{5b[.ӧO|t:)5/#Q_axIkk<'ͭY[w1'#ً̘'ycjӗ8uI84+cÇ{o}W}WS\7DM¸!iއQk=r82.L[Q`Txo0YcTXlִO>\6듆@@TrzXjk|z>F}j:9f8.ꗘL/Koy97q>r qC$)ܽ).Wrs'rݧ}e)NjiMcsQLHcߝ&i7pnsLj\d56:qk-|RT&z)ģ2%S8bP$Z{/^cV&5>ëDcً!O^3 \D17`qZ~Ťr߀!Rk/ݿxo^+֡s]'vfxp6w-@6\tg?~7%zsYAׂ8Ѱn` <72Y}TЛϹr6l⁃5gkZM&Q6fnFxf2>_gI\SSh [m6ذOpưW_t$͏ӏ~ϥxṁ=Uڿog?P󈷖c\Է#\Yu];3Gn-ϊ}Co}Kr٥je+{6xAӾny̢ci"%2a!q<ڑcIxY9#JGZIZqi$GRϋv$K KnK [08^<z&@Xk=TqeC_/^C*~o`⢌}: xq>v@aeYyr5y8Yģt!`o^I~Q@*on̄Pnx˂x I3|zyij<Cy- uۮ#ۜN@ϔ< #pv;͞"FI Qˬg[~_}/,ZvY!l~/Gmn`4Z_[>\7(=sbnDJLpp]*}00s=DLkv,Z=] x>r5q#|& x rDhOy 51'msTLZ ><=?XLInyvv:*'2xA-;1?}㫯~ȩ ' p`b'R:zU^#tn r%2i>y&/4=ZАfhT7a\wڥhW dO15uNig̉Qڪ2%Z:HnТǟcqbJk]A!tfhBAF<4Ss6I.Gxos_M< ;}/ݠEQFUۺڠ/_=} rO4`S'%Cs*Nv> @`ڤ1Л Sm^NbS) 떩VDk xkMp `fQ{[ɘok>b,(¡9Jy[!o;8c.vMu}ڳlo.zXub^oYX30ʕ,sGcaacM(tup؟4~'['Nfܜn>Z{uyf2+$_0P;{}F>z40sJӊޑc{D嵹@HIH|Z|Xzΐ j9{ +$Xvu3Zeυ>tOס3VVp㡉35QnJHuM׼Zuk/NZ~yiY?aFIjnMk^nCڟ3mDŜο]ϗXm96)6-mLTTy =EqwvHy J25VrEw=".@լԋ2U\{P$bP8>-܈P{g&|ίc'|W<HkMGx?;'`)պ#9Ay's}?.ṶG`8rһ?""R@ȱ$#~ hO7xG9 9Vd(->ezacܵ&o>s=(7|-'AFlaPG|MM6yd7 nT+k`s56,"Y{FgsrUk Oi=b&+g-3?em|2lma<k6AIڲz'ixnu듶%tXuͱ#$}箈hg/ ~ݷFLX#%ae>"C.QS[ 0 Gd,J\(53qeF΋~$Vʃ0M[b%@kn`ՃX_c售ܿa<|*/>y iUaڝ r‚o#RT} g`oyp MGkTǍ~/@xP`mvg9w, {mU:%K˕sMR&q-9nh@뵆Xw( @Ï-HھUÚ,sRm|"aR%S2f9˞|axH>X1%9n{ IC+o#4l-:^X LבayAa QF Iz PT{_~)5?6sTvS96ES5E:A,bλJGhT_L.}z(qū\ns!I-nDw1Bdsj-']q\C, 4TDu FǪzLK :d?,IXD"f 0YJQr-`nS"א1GkI843'.`q_wsGOl8>9=!׾~p}4]>q{'(M [h Z@ #6o 엟'oٍ_ 8!Nj`)\V*0xkd-5֩*MzSU0*71~I "c bQ] UC}Ex^*%͓I%ZZ/r_??U<ڒ[ǘZ'_w 1B#dіp[TM `ڗ&ޢ| " HVJMJmЂ,+364XkX3F=M\IXw @:[Q{g9'9m"4>oCO\DO?+0h(|o4\7 +98\K[Gz˽A ]m3C8H<$ c\0+Ft>szs,lwIaiLJ`1 mY7-IvQLdw2pfCw~l='; l]Va .Z ?#hґ^1d$wQ~7j>zi Gi(Ť7f M^¬LX`]ܕrG|f?aXsxsOm+y/ 3,Ÿb~-bn]Y/ejf*7m^ճ_m}Fk74-bnYQ$\Olrz[~K/JT(@"Dnf@r.͎Dqʍ&ASC`}#% 0,ŨKƜ dN">xES%<}}#:V2yկ<3<ж(LMY+-Ÿ5N{)9,Ր%x)7ŸA/oJ6yF׾%< >'voM\Jz,N$|-Ih]f($jjq:J{50#,ȓ}̉U6<h ƭ:n̘>H8GBkg-z:[X[ZW}""P8>c;(/Y%# gbߦ~\uxOK6s%z<ߚ-wՂѬ,*!f b-,T~DžVyi8n1dx,{J@@\z]%MмO&p[̝LzX`6|-H@77?tyo3#.\D2- )HP:b/ݐ/!OTN0c<4Y[sۘUc['y52Ƀ7ck./sΨ@s-8\wvᗇO_mEuf\nlG! @Ħ9(pŦtFgqҺ˓}ê~P->IYϭx`E#jZcq~֓Oz`Aefbo9"y Wf窓yOC9_د GV1ύ@ʄXu7Jf/qP,ROf^dO2<.ׂ$[~~.pcF{+k9G9w< hE2 *<Á6`VDh <%ZJy'5Ӏ/ ٍ׆ r OX@_Ѿ 9:|p`hggsg3CمpN>+zKܮ`(R#>TEK@"{u$OJ۔4hkDnRZ|/R'N8Jdh8H>vn[q0WzJ`21YFl|sE^ڕxHCo:G;Vm=!GЊ<"ٱKHB7h>kthę^CXe$ 6GK(Ri!׮ /ډGgr-A&R6{̓|q]Oz1 rdh~hRdז+#UVf@ uT׾777}~/:p1ɯ8Q:4WcxxG4ͅ_pb\;ڠߋDިGɼ"8ܦz5=4Jc؃|xsŝ}Zi\Jm <~ƯP<">XE ;Dcpi~ hεzˆpZq\<)%nTu}.y)yɞ'M{97GlmPnL;9MkB)_>>CA.ni↍x (m Q7>P ZRi4DdqeHX8QF8ZJ/ښD9i~-c1 h Zx\-{󊜡8&/!B`W=pրUp^3wt )zankY~{g ::l$#Y*J(DB:9nM".Ҡ4Q Re$g~^77 c?7|+bQmǔfǩy&+!ZsNw[zgnCCߵ_ϣ-k`Ic:9kXhAh)(zEu 1ɣM`Fm@|(-/qoFe[\h# F[~oSyx <~}YkW78 ^ Djc06;d.c2|lsמo,i=Vo`yǁs>%D3đ,hT c} {ΊN~d,d_q .CqXL {<ϓq;¦=אI@Y7~}yA89wa gGFF")2Rzn 7Z[-y$x}$笒fA޸B9𩸌e^!B;#Q|`?1q;G4G7xkߛG{C\jDXs"JJy۪}Fwàn//x`^[YXcB Q_Hy^`94gE $iaeG[e{q@@kMζ#0&O sh%"%)PDQFB=LAM[yM5%e1g+/f F7KnvMNc͋cmNhc]9f_ &iˌ`:~ږ}?" ۏ:7Ю..dD9(X @I&i$GWk4+N&w]Çk?E 4geL6{)7i+DZϼ䃲ؐYxo=+"PoMFf׾GSAK?̙7 G&vlEÄCר׾oc{?/}7<Gf Y596j90|%5<WnKoD;U'50+58okc*}m  GT 0DE枑4l5#-N-׾G'Khzw]xvhLv>p)¢t44֬8:1Wk1\kQyWn6<;;#$4a/a>'>[D7% D̘#<.1Dfyךs}WG| ػd?ɇx42D@Gk+b)z]D )OTC a킟q5ҨŜ< u5|x˺UXCY \ R,u:^"p&yz };pwA;WNwv$QuDoIAIH*(9Z1b4,h#AT+ &Qx5%x f|̡iӷG 䠉^Q q+#\~@&#׾!Z>σU|w 7k.ъHv#y0ĪHQ^^zc?CH \qx] W=gZ: .<6IZ0DY5zD3Ý+'_ly11ȉOg~7Y"Nh,f¢k`C.P_ S (5}mm5AY8S\74Gh uX; í /ö/J0s`'% `>OHD^$ JUyLW/nx#2s7pZYqE}'jOրq L&@u& wC(%x}ڿvG"Nȉcu^p4;"+ȮHѪv..pA!W?s mWm壔^~%~ ¥ZfkV -~99:0K47]qRhI$m{)&#n=\|̯}[7Nh)=YiGIiD7X I!V=q+'ZDtt^>^w6,FXd.iЊLT4'"(ıZ y^kܳQnt=xrQ5{#kӴM&rhs65Ѫ.B]upo^UtË>UĚ0p|$M6ܗ'KBt8g<kK1Y^tv9M׼?ar~Gx>eDr 1 >9@\ֈ>X̍ s#n$];ZÇ=xV6,=#:J%  Myb0kbsÜcO|~Hwp?ر;>CD9pK")H8VH H#a31} ų5~4nx,7)7&cRDI>i{E 0J@Dpyn<:({Ng;~?sl{muwNH;-BF4H!/E"YIqW 9x8h~=mMڱ&7C]EJHϐ.cpEW ;e5G?+vľ;!{QnޯZ[TlQǰY%;vSi@%20! H2SxV[N I }SזzٛjMgK*1:C9hY:3/jAiК6(v (|e KxnjMqtG[z֜k{giLr'iG`8Dq4uEMќkX \oD"ȷMHG6mQ=6>DYւٚqFsQ_cik|{?5W@G_f'4i=`9ٱ8qA, Gd,OcREG\Pok*o5ɳ+gG1c 7<;9)\Ou-uZ׼g@ 'r$}&'t=q_|Gʯ W +7߹lOxb:pt&)i,?ҩFU[pgΝp5WY\Aexل7m+h@5Iyjs}hX8'DZfFJk.G$iZ+fPbbUWK8:3<3't~{,[a*~OZ{T vșK_ٻ \Qn;X5j IM5)/fD|v^A",yDh(sE(pDIJ XƗ8A^sY^\=C2 V@Kw Lz̬=Ι瀣^m.$֨xgM~-Qo 6Nzl6B_,B5#;ܝT/. yusWh +aQ_tm}0<=z'jtcK .>)ٝyFiNWfk݆Z 'kv6NBdRaԎ4Hu|m=GzhI7=.FRxJ#H7!T&5;t< Cy%|m.KYva#;ܡ>^>@}EU|ǪV#5*&f kcltwE Ku+lhB$qtQs4};܁HvbmcGyhDxkKz L]/=~܂1yc/Tƭ%gCW0>sŭSpt5V5z{ z<nA]=6`.wwӶ{g8 #ى8jpΕU>kOΟ7k *:ʯ3G.zDi1iͽA]lXȜu3U6΁!x*nC "F+[y7].d~ՓSa[U(Zl^ w[|n~ N;HaQFD Exx!婆ugi'FO8f2 gŀڟthvȸ{do]Q~5pl4VW8ƃ:.[VRWlid7ʣbEEr_XTǣ69CHpᘍA;<9kלk-_g<!%oК鼂Lۋ԰18@GQ_ai.eP*:U׊ Kmjao~_T_UOB%ٰ(b$3<:S*ߊ8ߚ]ngbqg8^ > Vorvrt<"JGxې3Y^~(:8[7U^Uמ [k܊8v-k.||:B[|9{syQaGW\yT؃ײ_sW=XɬG+6ʣ6MfQa4 wX0:3N^84{1޺Ђpy V,zoǩf+ר gKĀ?V ȇpQaCAzt77[{)|0g}+.yN"@ 솼ac`tk10w ,07adQ3HK@1{ͺ//Zg4+qB5Xȩ4%FjgNcߪQpIAzh ;|+,wRkZ^5לU]wG;;|fGza?b ɩ nh BT\s.X.gQa}uvW<*l8WYl˷Vo 3 [#ױ - u՝̗re+ְv53PD}QwXDWFR9w+,67aeVl'sX<_Lœ1D]+*htI#i$+3D`cVfQa01U\x\d ^-8hu1q;/L| +#B~ (j&;]f'5&pc,WZ'4~쁙^Tf]2=/K#v]a-z"LŌY,GX v@Tؾ{8VJc]Lk/|^1Q">jDv$^ߚE cHҥ:Pyb;];Z0bi@%k(akZ^TX3`Q]VwvN4ϘSkfj{M5kkj>%zbjUux^A?:8ì򨰭#Qg-ߪ7;+[1(@IDATflaWkfut-=7_{`GÚnuLC_ FG|PpE]E\A kTp`W_!I|qb<8 5g+X;m{><*lqaV`=Z#i>,Ocժw'*.*aFB&ؖD<:,ՖVb_Fo]{c.EdE Ə+!~WH-,6'$LH.ʯ5akZM l^s/>ת^5Le= 'rꉘf{N"3Waюf4:>;I7CFuUXEYVXXR^d~d9[wݳы:RHzϑ^VX,N:Inu6׫Lg1QiE5 mCx~1{Yyįex?]{Lg[gcĶ:{֬_j*Z5*m_Uؾ{˨|[F[\=.3K|_*-lw5^ëna̺FkJװܿny}Ξ?|5s֬9tFvhgh+:6q #tw75HhTzͬkS#5־gh/֏^V,69ڬ_ډUU,ڑgv˦_uͦʄ,VR*Evبv hW_;}Rylbլ02i/̊4:hle?nnfa}_ @wH>>:|^ףc8\ϊ}a~XFnΞR֎uVcr_f`gϺ -埚Ol:]5kEH\LFTk&cu % 3sc7߼N}F`IV/c`gx\3?it f Mȼ0ڛgWa3G&Xa? ,cY~6յ2ګ^Hlķ`Dh;H:08Dƪ)|kZxf0%ň'&v}y*_*↱'[Ig17[FX,0D< ,Yy!fcfg`ٕ%XIb߯Y^k߭|g~ͅyAW/UW8]wvM=N/cת?Ln? `8]yjw^юBfμfzcTX H\+'0'^5~ί0桱yoq\B.K^E:Bk ^xP30JĠa^uDX~:x˯#}ӘnY]gI۔^TktL~ڠDX'c~kXT>E=[x`f_{xGB#.+H:4ڎ::"ްB,vgGcX6 D5Xbo8/0pQR9< qMp+ax:+1zWi$56īh#}$I:9Dј0+/6i+lwƄGXcE Y =V㋹ߴG3z [U ÒiMX "֨Bx95ܣ28.tE/xb=02Kz+%̍F+=Z Qt=k<cgϚ{{DŮ3]?_ ?7C/81: \ڝw#N 6H_aGr@[7|V3(bhcc)#xP/C/ɦ^ c}*+Ssk27 \n%S+/ĚYȦ`#6Vk #sb)3 $רhڿkz㸗ONtdHVi2Q0ۓ17dGGH_ܚa_䈳G#yflĭpKg|&ry]ơq+__iaL">j` ƀӶ4ӲQJaoh-sK# x)/cFC#Sc¬LѷƬ]J˳#V{`=nMĚ_ v8@1zQD n/Y/GV dX5k0!Gh!c+^yTc=|$6}uTcЩ)V8(1߁;t8Œ|z';^/d;X! ZnocOlGu}-.=k]~&G,ȑ;-^G$ʗrkVocwY񒵉cs~# rj$S=w T赗r^y 6or &L9":7#"e7#q9bşH2bfuTFv+`c~,I8D&/#}7~hOnorCE0ke{ )|1VXblyB\'_8:5r%|r#3-DRp â!J9# wv 1nf$̖ QAQ6|+!${g=fyqީҵKax>qr# 7Fk4̳$O$YV}c~"~Q+In%cY@ܚz6^:!_؏w"_0 O -nQ*kmlr! q9"9Tg= ~'`?xʣ٭fr "UB[̪w#jX*|u8A\h۪=v&X9^Vø\^ ,aܨ0,y:bq T|ai- Ϸx[=:yk{;榃~ FOx1y`lZ$ !*\bG=\" &@Ty38J,q0t. olRkQqQ}4h38fD! zp5T%F (! rD3-lw78}'u]isLYЩg3jSImP"cCP$-ACS0kDDzw9Ea0/cC.WC1hV2&xq9"Jum`a%0(UFW 3t9?kc`{4sk ʃA ݨut}^UgviC5fwQz ]K[+$ #O"Rmƍ QXaME~AjG4̛(xPo_{?]_dOAl}6Z_C`H#Yw!&|,0&ǘ7[|! ƍi!*7r'?SO'M6E'J #q 薢|=lG-8Yޭ<]g%^VD0!G<ȼ28^j-ea-K1X I Pj?5b"Ԩ 6HBi )"FiFTHŀH lՂ x+ޖH-y}֬YkY;}gg{ߵ}bPFpá 1dƈoN.pĚXE*l/ÃujuBkM=^Y4sF [dy>׳:L7f? yK9ď+se}Joc gO^oFR3 9Ys:sKt9E7Czq[_B>y-59G1jNck#ܪ'pq f/̀  K\5Ѐ&ԧ\B-BͰ| ˌ_{ :HpyRs)FrGVsaw17Å#nV 37k0`[tF*[;׺I+r८M/#cb+(6W) y\.$ոE {7B0g|p:;AA38s acO7x'M%ր[,P_aQB Vs$߰γ; 4?Q= W>xr>l Vsa_SbX0V1߰>,A&+a)`j%|"T[ 9pg΍bְިlt~]:Q4؝սE)p1 C [,a`(`#G»wYK=u4ՊޜS_s2k-ψ),סZ2W!8TcE=4#XՇ_XmWg~{Xq7\P {l&ͮx'3:h0C.,|ԓ~5VSYOf>eyq Å#n8\xDA#n8"!~P8" j!lvMSbŭ0%iŢ1kdr:C(_7>xZmKw |WAmA&͹X5v^SKzV'D:U}5v2SrRa5v7 xnZ3I¢0.l!0 : v HxNij%6hk/u7:0Xܛ%Ʊի͹*VɾWQmB(6k߆vԤzACSYCsY 5nt+j4|G*7[aqU=WջׄV[xx4,VU/}/g??!)}st4FZ%*+r!G,pV}vr#\ij{7mwtJ.;+(y>V΁F39\E^m!N9Yγfm/NI$[#ԐpVá%殰5T kꍰjr5fEpSe.Z!&HLWz '{F˗Eۡ-*\M0EcУEP4P gP+1c pKz gO}}zlA <4(g}$6H3/Ǔ:ʛ}5Ћ9 Gf&Z Xs)~{|u@wBBl73cS; 5>3\\2MI<{>+YI}|h|P.);AuZi8."P$i8k?rqaHk^/{S =H?rk^Ьxεu_X Ε6<7!hh2#9+V\FApki%.{jrFUa{0kW%f -1Q`skP8U `5a{: 'g6{~`G?,t.h(KZ,r!G,ܨ{w)$`ȉ-\Tk4n{/Gs=@}5'8a[kmW}2)ųg+ k9MuMGµ]:^bͥ-W1.{>1 !<H*1 \-0XJMe-"Q\Gr։ 0 Xρp8M=zmpi!qnI*sP7cqG5ڰs*_Kna.SeՀsP V{v<sqU*iG׸F fܪzÜ$xM||؍sВ0+{k{z9<ʯY}*,=> UT}Bl8Յ G,ܨ2&1 7 X*"ɍ1ԝhܛ?QNK9rq&zi4}^UNT1ajqыl`rҸ)b'w惤m.`ĭz5zz4b9q)ϹDk}ψ꼈?/3P*+3pJV8O.&s^S͍bvõ&.:F\p>' K9¢N2O\}^3k0Ԅ܃6hVv[}6h^gP_/g y2VQMqqWӱG̗kOsr5@$ISjsk7Mb>%G^2s;呾O>0 FR~\uaf4_p Y [ig.J@pĖ܌k]Ƭ#iM E88^>[ C3➪Zu2-Ypu+|SnV3Һyj|ZߔZs{5so4GXjEh` GurM߻>oa=Oc~|`4>N>HTԡReIBC݅uKq=|p5l$6x(rƦ-qo ^:]Z9i޹ u\s-T8Z+[(ov1}Ą' ,bsɎz*-wʵbŵd{r볦ǀܚGVK*l\hײb~r /\.t:qP.pԘUIlp_X@1 ps 9Rl[vף*9͝%<5M:so/ǂꥼꪸ P\5x M|Ն_X:gTsS\{3ڷZk!3ќMKx6LB%4 k VaN0Z>>Q.x`MĤ.*8/)i '[w|Ek^/E7D܄͚YCdbcOG\Xs?\y=ޙWqYcYJW8 Nxv!UXsժn)a^KM/ 6Wqy::+Fj sq:.ivE{!E Nf.O!zk RӶ'8Ѭ0Сo{ /zq9_ cA [ts^1ZP.\8R=tªtKlprM=t'1ORl3\Z紲EM>t V/O0K#|` 1̞9傿U0ɰ&'wʡ?^| rč%LuF5µ]&(ޤgi|fkBa8CpOs{%Q!4I}r fdJsyN'pA^LA=Raa8(?>i7Ф\pĚXKЌu/bO\MWW0cTpo^o916Si ūvpw|T^J=7=rop^h?s';En :muzYf+7׆U`e/KDj~MwY+rvk4so{<7=֒<,@O^#Ei#U0A{ŘzuhfgVZՅf)5U&ͪyp4v4665xYUh̽~9 ?Ye[H*rKe>+Mz^]t\;ÍY3pF۟mq?:jK_ s1o'C<`}fd}bS[yt֨<.ꢾTy665EnTsa]gTZDL`lAs~Mƒø~Wь)/{˽^@N~?%s(rP9 gKʮ^hk!;ѷ[jP/Sr+ilg"n*8\. ^{awN^D^3jo0M ^a~ڨzUXO:؛u{F+4 kc^S+|v3J+-Dp8j(=||Z REs,Rx--poip` ~s s<7qІZp}úVLPk5KFz_:g@Nq>86A \UNDXጸ*2Ys)HQ蕺G4K5vr&2S 5ӤZgA9܏±v)mN֮bR=VUyLWs1TؽZ%.gpjO 4b+QO}B*c)VE/v@;}t*Ad;AztҾ aլ (5bͥZͬ5#k.M_jbx` ZIFޜ^C v?{41q* ?^ZWxcm91Y(o.3F[ b ox?Si j^e5 av\-s*+\#bCW{q5rQ\)kίK~wt֟ρYeyߖU$^a^gH~Zܗk2i&}C_̔l}h$|Wq$Q\Uu7-,D rBrؐ8!~+Tm%Qps)J︔ Q:6DP5qor-q8*Ƈp-6ib] ގp nY ws^?g!>zΰ8?}& ]#3+\N sF3Oys)F_]sU9P4յ!=7zj״Nz gv;:]4bnpDzZ6Ŭu35ؽQ~lC;T?٫C8\`5mp_c7~ ]L>@?dsa>d[zr=; n8 kp~.jĵ)6Q_>2fxhFܨ5yl zdބ^i ^_/e.]ZyƊSZV#le)#uL\ UR@qaì .oI}8gp44ͽ"5n9te7JDzNu p_~+cN1gnkWiY@nͅD(aSq_nYXkzP8d?kQq$'VEԤ (/vr-g0| fc v8:>%<6SϖcK !ޔ3qj9~-qw( \"<ŀkKzC,Q}*1pn :bCm]iDȩ߳uVq-ܨێɳbH8 ˤ.r^\LC pV]՜J(p+ \5b%{ Sk[Vcc^͹Z5Ւ梞 :NQl\lZɁ5 :{$+!$98s9IZ'r1Z~ؖv__ { ,Nepa%\DuU+~ Z>RE~\GJQh ~[ջnXSZK5vҽ|!;q>r Ю* (_ ken'[n^/_Rj&pR(6bwSiFHN8AC\q_lhp᪌ ZK,w ?0\__fկ @&g;=>VgdR?G23=Ml^p hPUzS޶>4= *M: pz f2Y,jp{TZ{\z> 4צ a݇PI-:y g2P@Uⶆ:^f*sL55QCƣX9Ry>",tk|m:o5G`.FG¡{7*XѰX#`37rW3HEh7'!75vJ~Gݽ ~G~AُVՏ+L|Rq H _/kxlR?zA1h NY<Bqyh3rpXE⋺KQl<8ᘹnG OjruAشPg4pɁ#U &l.ݫTk4i+t/_-QUYx`6MF$_o7Z|2FM(vkmO٬H< M?:l* ѵX/8T\qxT81 '6I`D_"(paU@&瘚S9hB/z_6N ixe58qFwɲ2X|~զZaJ DM.|8ɚv ,iY.JrBOXSg?dñlhxq pͦ\ Q̓( Ǚ8p!cf7ltaNgzGG;4\[}7W>ϐC/h9+\P#\mG›9iL:+^`Α*5T}/sSn/ꋜiI@w%zYc[͌|W]ŭͣV϶Z׺̛t q4<z V͸fǡ$K5+/w|G ])O>B\^Wʫ~]a#n%3g}KzZ4Ã;-D.i>i׋5=(cno;XnGdtCoqLq@N#-ŏ,bs]GM̂٦h)N3)ƢVw?%r-^ 9||w9! kz콴I&nNݾfW+qQp|3wőJ.Ά6A8xc bE7qSJ"q1tP8kR2䬛" v&lW[QM747E:>Y.݃Tk> 4Xֵߕm jrodތI\}#()F~:H ~kƳp2^IDATKuk$NGՑsA 3f|pԲ0/9j+c3>TOpk瘙A>`80hlUXs; dG`{)\zYm\6z;Zy403I6!/N7im/ gGc]&dGEbZUsӇ8:6kŵ[h"[̵}'ٛ9䣞z?ExZ\?i#AS GiFؚ}ܬ9j06ci86f'S/ Az;Үj\+_,fOY5|[~U!ٯ/.\+3\$|+a+4L5\{w=w׌J|Vs6|5,g>|fM%sk(  J'?Hś {;p}a. ߠiXcašP/\ d/Mt sWtC|].ʯa+',V~SoBW79\8L4KlWîĽT9Ǻ1V릔奺oIln@ ]S~l.Dr5&z3YGM8"GVڜP8XzR`33ƺ/w+V`[J%406 |ٺ S3YMɴ&<{8R5Ёomr/S]_Ǜ4ǓYcM z.!;cӘeF< D3汙AΪG<?p<~UsnOԌǜnyZ?~k*K 64"6_ʌi5-4tna]~q}vZ~hf :ryUrKu ^!G")a8T8"Ա2NTU}Y #/AԌyos_kd ?xjFe7M/rmOnNʣ'ۓF[̉Y:AybMe{c!|Jژ+`q9:Ţ`[H!&z:f?4F5rdUˮd fҞϭ߱jvX?Z)AC~E+, `ʺƯ&ZGdvw9^4ck9O<窰]H"W@P^҈3F9ǛtH 6xt8I$np`&_FI_X2cdW5Kw?_ɯԖz{K !@wX6S|#z[hdq-sMh6j 4W ] %W+7{Q jHYh{_MN09KT:γΆG=5y5l< (n<*3Y.ܟ;p5 /T_nmӫ!B[ҌѦ]ָ9+dԌO~v{AV`dY[Q9| %Y&*_g*~5ߊm<۴lG05j[93 rotLn 5(jAaM+/4t1+ K!X^=|'*r5&"n  u$n;Ν 1k%1uF5(*1o?$\Wr]pk(! lnCo0Z&Іm>E:]*W` im3{湞TjGvEX xD;#I|?g2>JoM]3y\ÑLTCK"p`ur5:jtHGz#\n5|+@zR6 qW[s ͮ9>BE*ߛ(rb녷HK Nې/{>CyrcjgT8m>t$p$9ɑ(Rau@b9TigʡAnmuw_ux5n:!@;K,me~Cv&!\Ao!!-} .4h phIy]QoEƮAAycaP X A# ' pZNV) ~z4˨{0hNfiUxٸs ?N6i!$YbëC@)0nd/k oXSplя0uCDXSΠ&Zc*1GMp9#\05LŌ޲(xnSs#N pZNIR$.`9/Xp pqb#>ӨCQvX:FRqI)dBP8i.#N6MmGiҟM4Yjn)E]uXWMgI77R|û x^]v9EH*9~YO\kkWu)KA֭pT\{0FSKr I>(x82W?B8JK#,Ą%pFprcߵ~_AL&y`ccFjD}Z[X}Xb]8r@^q~_?OZb 9𭲩Aedž/zgSZF.&hksp|R~ٗbkXnC*gLHџ[%p ESxi5L9֤53"Niy½8ɇ~ԂWbri\S*OZ' x 9||˂_nwUC U0܃BE9š<nfV buS]qBFÁ0Y.QU|gJxA>f|P‘,r\NU'ެTnN5# Ͽ)]ZuxBGCIds:k%&pfl{5\) cYz~g<% qBS @&'꣸(O.!I"n a8ISHsе u*E"Ji_d!YZuxZϣFo| oDlwkCԐn7cVsyKUyޛCZz*A/w7Fdj7PqBu^(%( %㏸ aY MUDjp7ˑv^θSszlu|:<#!@A=OhC(`5&or;3z1wz yrsX bsP83L?G/)_y@0!Q&Z-0ű9isɏ0p#X\ċ<0X$5‰>rI/kjWO^D %dXG}&6r{8kru#?t Zn GYNV=x2unnJ[xS]a8#9nC #qqùSFk p8kQznF5裣O˿xjϏ]^uxGC$s|VWQ.p#\+rԻ?rP Sy:ŨO?ÍRֶvk(MdpRMCl3Q␻Ut3A\.J~: p5{'4/6aU.GQ.p;Vu+ ~>troR6?h؀5F6r{8Վjt3amzpu}R^Mf6C@YttnCܦ 6ɮpN-74rH85yMr".nй#!hv]Ox ?hrtTxw1R^# b^$:$o#^Rs)Fq &|SÄw Xek`"S#?6EZp$#4*rYz {u5W}luV`HOfC'H y};B+{]59KGM>0[eÚ︓Hc]cv69T{uM=-y#ګJT`쬮. ]䭬5Bz <ʙf=Q}Ct<*˛LFiT`"(c9lJĦϴ#dz +fr.ߗn(huV`xϬXT,;տb@yCpe\Pw\ hĀ3WRC9z7G6z:asrZ/6[欑Q? ޼o33N^vԃoz\sU0<xPÁȎ=ߑ4ml g5TxI@/ɩ?~jF+Qs΃?y]cy<. ?;z*DM pCME$ɭFyǻtr3el'n5GNPqMgsWl?? ]g8oF$?+;6@8܏2?3:EyoI'j 0TfRIȽ< MhǓ|Ik67#sR<ϸ##(9ĽYai.dfͮe:ܥooe-h6>l&ˆ<0*OegT✯beoT:H܀y`7yc:U`"n&H}$פ9 ?6Og_6Ɲ,2W`^s/Z#ÌPnD04`"?͜F+Rlmwk+k"'Jpp"fO_g͌3 D'MαeC2末> !@<?m i m:|R 6qijA~hsN5sqP|ryP6sgA\q3&q5r Wrx眽*t A%G!64ޤ܏U39njY0/k;fm)Y#p=Z{M8+X`a)}k9C}"O.rw-oѺ C@/Y 㪼*i\I5CS[{!竸IV7jD;yA7`G: iUbup@nc9lJ.--8{U'eI[e9hkb b9/ܟ=o0Ϋ"ձpRMr6}S +l'%`Ǟuil\8X6LX;u& ]Cލ9{}Ȑ@6wZ+0Zu»#ubfS<DŽmf3b#LC[晚L @^7nGG?c7pIx76/zD߯V`0\V@ |?[MA6y ٟcvhus/YKReO*8v7YOreIf2 Smkx8{w}\6WֵV eZrPh;r VXe^ořiM|4q*$*:#d,oX3^d^7P)nzonj| yKYZ3+gVkq HF ?͙hYqs Z>k䦚&6SjixNgQҬ۫Kf3כ@//ޠo6I™pje^Ջ00} ȳ܇y6k (8j&S<^;|RWgk]uvVp fIAߓx"GŮYQ_KH˱Y6^cQ :NఝQb27 Q͆ǽ? V^S lfK AW Ųa}XmaFF~ r}ͦ&~gh6Q#~iR|lXqvj:>5 5UO/jC#TW&G{]=a6NWM͵\k~V׿e < cUly~ 5i(nxZM2Wc)8V7K ~{rڷZ ,稦;3/װ)Ou-IGj]l-jW@|͓w3ƞ:A5=0eWIU9G447#5m6H )x~\CK<ߘڟ_Z+W`^#Xv˃o\f O)gj)U+k\뽗P3 'S 6#fX4RXW9)n)y?czZ+dV`̣XT+ $gdW|t$o~KŔoPU J9{yNnӛ5̛gNe_`jS]Wy},[ekWV੬:<'昮>XW^!ؐ0o)n&fT7õUҵ^x=Ecش)N[NfEFuջڭ!Wc*Oy)?5[r%`5^S 6o)8]g4aG?5KlneHcZceN{EA}!" Ot>5 a%ހT#nh;%5(|JHnT;qpֻ#O{if9j1ӟJ_`]m椸܍jkeѝ-|S^uxOgvx0B4yODƘcjTب^5t69qnvѴ%ΰgUS`e}楸?elȦ=-,ph ֨+  yE;e%b/WIVmuu*Y/5.mޠ6f}JCi㜶:6^j (xQ^ηbYD=f?UhZnL()6]5F Q}:w(Uy馯(/V%:ħyr?D:ů`6YN: 5nG9sLo+5~NTůg^^uxя ȁ@"O ~~/FVynlA=~JJK^ȆYuV`UYZ ȁ@˂_#/= u-nG7zW6n o٫ȝ }]u8p`elPByH z1٠AӍ^/?-]b׵V`+W.*[+0[9?^J7ܡAVfuGM=nZp~ya~?# \uj.C_)/=}>T/Á±C1X6w(-walBkC:< /Vrh8 2Y9 ROreK^@^E&/x?~C›+7P[(6/Wc^ӿ/mX<ҿ_7x}ulZk @kk X++'eiX+V`ZOjI=5Zk xXYeZk <X'80k X+VqV`gWk X+V`XìX+V`ZYuxu^] X+V`ZuxRc V`ZkgqyuY+V`ZOjI=5Zk xXYeZk <X'80k X+VqV`gWk X+V`XìX+V`ZYuxu^] X+V`ZuxRc V`ZkgqyuY+V`ZOjI=5Zk xXYeZk <X'80k X+VqV`gWk X+V`XìX+V`ZYuxu^] X+V`ZuxRc V`ZkgqyuY+V`ZOjI=5Zk xXYeZk <X'80k X+VqV`gWk X+V`XìX+V`ZYuxu^] X+V`ZW1 IENDB`il32w 8}շ}8RR  ==\~\aja7V7B.  )*+*) )+,,--..--,,+))+,-\ŭ\-,+),+1qq1+,,+3ȅɀ3+,)+44+)+-aa-+ ),.| |.,) +-0 0-+ ),/1_z{|~~ ~~|{z_1/,)*-02EklnoqqssttssqqonlkE20-* +.036I^`bcefg fecb`^I630.+ +.1479DQTVWYZ YWVTQD9741.++.147:=?DHJLMNNMLJHD?=:741.+,/258;>@CFHJKLLKJHFC@>;852/,+.258;>ADGILMNNMLIGDA>;852.++.148;>ADGJMOQQOMJGDA>;841.+*-147:=ADGJMPSSPMJGDA=:741-*),0369=@CFIMPSSPMIFC@=9630,)+.258;>AEHKMOOMKHEA>;852.+)-0369@ABBA@><:742/,),,/2469:<=>>=<:9642/,,,,.13578987531.,,)+-/1345431/-+) )+-./0110/.-+) )*++,,++*)  ~~{ť{ڰɋ {߁ Ǎ{ ہ ѩ ~؁ ˹~ ց ƿ½Ŀ÷ǿ¹úĺ¹Ż~ǿ~ƿ{{{{ ~~ is32 n˯n$$kkU`U8.)+--+). *?վ?* *LL*.--.)/wdw/)+1JfilmmlifJ1+-38BMRTTRMB83--39?EJMMJE?93-+39?FLQQLF?93+)17=DJOOJD=71).-4:?DHHD?:4-. */49=??=94/* *.257752.*.)-..-).tt }ݾ} }ؚ}ttɾí˼ϾѾ˹t;t }} }}ttl8mk2ٿ2QQ@@@@QQ2222QQ@@@@QQ2ٿ2s8mk vv ==== vvvv ==== vv peg-e-1.3.2/icons/peg-e.ico000066400000000000000000002042071435730362100153270ustar00rootroot00000000000000 h h  N   ~#00&400 %B@@(vh@@ (B~ G( ++----..//112333445778999:==??BDDEFHJJLMML$OQRTf8i8l8m8wUɃ`Ѕ`Շ`և`kknҡ֢٣ڤصݾ±DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD  DDDDDDDDDDDD ## DDDD $**$ DDD "&++&" DD!$''$!DD(,--,(DD %./0110/.% DDD 2345665432 DDDD8:;<==<;:7DDDDD)>@ABBA@>)DDDDDDD9?CC?9DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD??(  t. )v-..-)vt. }*=.ݗ257752.}*=}*=/49=??=94/}*=t. -ݜ4:?DHHD?:4-t. )v17=DJOOJD=71)v+39?FLQQLF?93+-39?EJMMJE?93--38BMRTTRMB83-+1Jf8i8l8m8m8l8i8f8J1+)v/wUɃ`Ѕ`Շ`և`և`Շ`Ѕ`Ƀ`wU/)vt. -kҡ֢٣ڤڤ٣֢ҡk-t. }*=L$ص±±صL$}*=}*=?ྉnݾݾn?}*=t. )v+--+)vt. ??(0+++,----...//0001122234445566667899::::;;;;:;<==>>>??@ABBCCDEFEGGIJJJKKLMMM NN OOO RRSV.Z$\$^$_$`$b6k?m?mMn?p?q?q?pQrS|Y}YYπYӁYՂYփYȐt̑tГtӔtՔtוtؕtϤӥզاڨۨҫۺݻ޻༪Ἢ´õ   "'**'" )056650)  -4:<@@<:4-  (3:@CHHC@:3( !.6cdefghiihgfedc> SjklmnopponmlkjS+qrstuvvvvutsrq+axyz{{||{{zyxa\}}\bw~~wb??(0 +}(3+f+f}(3+~)i-΋./00/.-~)i{)+/13566531/+{)~)Q-0469;;;;9640-~)Q{)-148;>@AA@>;841-{)+048<?CEGGEC?<840+~)i.27;?CGJMMJGC?;72.~)i-Α049=AEJNRRNJEA=940-+-16:>BGKORROKGB>:61-+}(3.26:>CFJMOOMJFC>:62.}(3+f.26:>BEIKLLKIEB>:62.+f+f.26:=DJM N O O N M JD=:62.+f}(3-15;SZ$\$^$_$`$`$_$^$\$Z$S;51-}(3+-05b6k?m?n?p?q?q?q?q?p?n?m?k?b650-++΍/E|Y}YYπYӁYՂYփYփYՂYӁYπYY}Y|YE/+~)i-V.Ȑt̑tГtӔtՔtוtؕtؕtוtՔtӔtГt̑tȐtV.-~)i+:ϤӥզاڨۨۨۨۨڨاզӥϤ:+{),pQۺݻ޻༪༪ἪἪ༪༪޻ݻۺpQ,{)~)Q,mM´´mM,~)Q{)+2rSҫõõҫrS2+{)~)i+΅,----,+~)i+}(3+f+f}(3+??( @**++++,,,--...///000111112233334444 55566677778899:::;;<<====>>>?@@@AAAABBCCDDDD EEFFFEGGGHHHIJJJJIKKLLLMMMMNNOOPPQSQSTVWYZZ\8^._7`.b.a=c.e.f.g.g.kBlBnBoBqBqBqRsBsBtBzV{V|V|\~V~VVՀVրV׀VaƈjɊj͋jόjҌjԍj֎j׎jŕ}Ǘ˘~Θ~Й~Ӛ~՛~כ~؜~ٜ~ɝѨԩթת٪ګ۫ܫӭڸ۸ܹ޹ڹߺວŷȻȻȻɻɻ   #%%#  $)-/00/-)$  (/36:==:63/( !+16>AFHHFA>61+!  +19?GKQSSQKG?91+   '07?HPX\aa\XPH?70'  $.5>FOXahllhaXOF>5.$ '08@IR[fnqqnf[RI@80' +2;CKV^hossoh^VKC;2+  !-4=ELW]gmppmg]WLE=4-!  $-4=DKU[chjjhc[UKD=4-$ $-4>=<:9642/,,@{),/247:<>@ABBA@><:742/,{)+‹.147:=?BDFFFFDB?=:741.+~)Q-0369<?BEHJKKJHEB?<9630-~)Q+،.258;>AEHKMOOMKHEA>;852.+)2,0369=@CFIMPSSPMIFC@=9630,)2*-147:=ADGJMPSSPMJGDA=:741-*+.148;>ADGJMOQQOMJGDA>;841.++ٌ.258;>ADGILMNNMLIGDA>;852.+,/258;>@CFHJKLLKJHFC@>;852/,+.147:=?DHJLMNNMLJHD?=:741.++ً.1479D QTVWYZZZZYWVTQD 9741.++.036I^.`.b.c.e.f.g.g.g.g.f.e.c.b.`.^.I630.+*-02EkBlBnBoBqBqBsBsBtBtBsBsBqBqBoBnBlBkBE20-*)2,/1_7zV{V|V~V~VVՀVրV׀V׀VրVՀVV~V~V|V{VzV_71/,)2+؉-0aƈjɊj͋jόjҌjԍj֎j׎j׎j׎j׎j֎jԍjҌjόj͋jɊjƈja0-+~)Q,.|\˘~Θ~Й~Ӛ~՛~כ~؜~ٜ~ٜ~ٜ~ٜ~؜~כ~՛~Ӛ~Й~Θ~˘~|\.,~)Q+ˆ-a=Ѩԩթת٪ګ۫ܫܫܫܫ۫ګ٪תթԩѨa=-+{)+4 Ǘڸ۸ܹ޹ߺߺວວວວߺߺ޹ܹ۸ڸǗ4 +{),@+3ɝȻȻȻɻɻɻɻɻɻɻɻȻȻȻɝ3+,@,@+1qRڹڹqR1+,@{)+…,-\8ŕ}ӭŷŷӭŕ}\8-,+{)~)Q+؄,,--..--,,+~)Q)2*++ك+++ق+*)2??(0`+,-0/021 2674738899<>=>??@@A<CCAEHFDHDIFEJKLFLKQNPQMTVRPRTQPU Y QU5V%W'[\])`]-e_2c)d*c+d-c@e8f9eGi1h@h<k5iAl>l7lEm9mFmJoDr=oMqFs>t?tNuCsLtUtMxRwTzOyV{P|Q}SL}U~V^Wǁ\bȂ]Ƀ_хYʄ`d҆[҅cӇ\fԇfnjlώhɎnЎqďtяrؐmҐsّn˕{̖|ӗxǘ{͗}Ԙyՙzܛu֚{ʠѡˡѠҡ٢Ӣڣԩի֬׭ޮެԮٴڵڿǻȼ             $''$  '######'  $###(,,(###$  +#),,00,,)#+  '#(,00::00,(#'  $##(,2=88=2,(##$  $##,,055550,,##$  '##,,2:55:2,,##'  '##(,001100,(##'  $##),,0000,,)##$  $+##(,,,,,,(##+$  '###((,,((###'  !+###%%%%###+!  &*/.693333333396./*&  7;4?@<>"" OppO ??????(0` }*++x*++؃+++؂+*+x}*+}(-)+܅,--......--,+܀)}(-++,-./0011111100/.-,+++),-.0122344444432210.-,)+y$+†,./123456777777654321/.,+y$}(-+߈-/023567899::::998765320/-+}(-}(-+-/124678:;<<====<<;:876421/-+}(-y$+߈-/134689;<=>?@@@@?>=<;986431/-+y$++‡-/13468:<=?@ABCCCCBA@?=<:86431/-+€+),.02468:<>?ABDEEFFEEDBA?><:86420.,)++-02468:<>?ACEFGHIIHGFECA?><:86420-+++-/13579;=?ACEGHJKLLKJHGECA?=;97531/-+}(-,.02468:<?ACEGIKLNNNNLKIGECA?<:86420.,}(-),/13579;>@BDFHJLNPQQPNLJHFDB@>;97531/,)+܈-/1468:<>@CEGIKMORTTROMKIGEC@><:8641/-+}*+,.02469;=?ACEGJLNPRSSRPNLJGECA?=;96420.,}*++x,.03579;=?ADFHJLNOQRRQONLJHFDA?=;97530.,+x*-/13579;=?BDFHJKMOPQQPOMKJHFDB?=;97531/-*+-/13579;=?ACEGIKLMNOONMLKIGECA?=;97531/-++؈-/13579;=?ACEGHJKLMMMMLKJHGECA?=;97531/-++-/13579;=?ABDFGIJKKLLKKJIGFDBA?=;97531/-++-/13579;=>@BDFGIJJKKKKJJIGFDB@>=;97531/-++؈-/13578:<AG MNPQRSSSTTSSSRQPNMG A<:87531/-++-/02468:C SUVWXYZ[[\\\\[[ZYXWVUSC :86420/-+*,.02457G\+]+_+_+`+b+c+d+d+d+d+e+e+d+d+d+d+c+b+`+_+_+]+\+G75420.,*+x,.0135Kd8e8f8h8h8i8j8k8l8l8l8m8m8m8m8l8l8l8k8j8i8h8h8f8e8d8K5310.,+x}*++-/12= lDmEoEoEpEqErEsEtEtEtEuEuEuEuEuEuEtEtEtEsErEqEpEoEoEmElD= 21/-+}*++܇-.02\3wSwSySySzS{S|S}S}S}S~S~SSSSS~S~S}S}S}S|S{SzSySySwSwS\320.-+),./1sQ`ā`ǂ`Ƀ`˄`΄`Ѕ`х`ӆ`ԇ`Շ`և`և`և`և`և`և`Շ`ԇ`ӆ`х`Ѕ`΄`˄`Ƀ`ǂ`ā``sQ1/.,)}(-+-.0jŋnnjnʍn̍nΎnЎnҏnӐnԐnՐn֑nבnבnؑnؑnבnבn֑nՐnԐnӐnҏnЎnΎn̍nʍnnjnŋnj0.-+}(-+,-/gɕ{˕{͖{Η{З{Ҙ{ԙ{ՙ{֙{ך{ؚ{ؚ{ؚ{ٚ{ٚ{ؚ{ؚ{ؚ{ך{֙{ՙ{ԙ{Ҙ{З{Η{͖{˕{ɕ{g/-,+++-.tT͠ϠСҡԢբ֢ףأ٣ڤڤڤڤڤڤڤڤ٣أף֢բԢҡСϠ͠tT.-++),-AѩӪԫի׫ج٬ڭڭۭܭܭܭݭݭܭܭܭۭڭڭ٬ج׫իԫӪѩA-,)++…,-mM״صٵڵ۶ܶݶݶ޶߷߷߷߷߷߷߷߷޶ݶݶܶ۶ڵٵص״mM-,+€+y$+߅,-kKܿ±±±±ܿkK-,+y$}(-+,-hGȼʾʾ˾˾˾˾˾˾˾˾˾˾˾˾˾˾˾˾ʾʾȼhG-,+}(-}(-+߄,-U/̡̡U/-,+}(-y$+ƒ+,-DuuD-,++y$+)+,,-5 eC~aƗԮǺǺԮƗ~aeC5 -,,+)++++,,---......---,,+++}(-)+܃+,,,,,,,,,,++܀)}(-}*++x*++؁+++؂+*+x}*+??????(@+,-0/021 52677788:99<<=>??@?A<CED C GHKJJMGLIMOJ(GQLOSPL+QQURQNQ$VTQP(QX TPYT W$V8V'\[)d `"_6^1c$a%a1b)b6bCf,jg/e:f@j/h:j:i4j@n8lBoAp<p=nGpEoMqRrGt?sItQwDuVvPwTxYzO{P}Hya|W}U~ỲTh̀_ׄ[ńfkdžh·cˆhψd׊_؋`؊iǍmѐjяrҐsّn‘}ɓyʔzѕuҖwƕӗxڙtԙy̛̜ӝܟݠΤХ֦֥بئ٧ѫҬ׭ᰓ۰ֱٴڵᶞظܼ㽪ݽ侫߾øĹŵ                       """"""    """-""-"""    """%((((%"""    ""%(((22(((%""    ""%((229922((%""    ""%(22B77B22(%""    ""%((2B7<<7B2((%""    ""%((2B7<<7B2((%""    "-%((95777759((%-"    !"-%((22BBBB22((%-"!    ""$((22299222(($""    ""%%((222222((%%""    """$(((((((((($"""    """%((((((((%"""     """"$%%((%%$""""     """-"%%%%"-"""   '###*+????????????+*###'  &081==D66;;;;GG;;;;66D==180&   )AEEE@CCCHHHHHHHHHHHHHHCCC@EEEA)   4IIMMMMKKKOJJQQQQQQQQJJOKKKMMMMII4  >PPNRRWTTVVVVU\\\\\\\\UVVVVTTWRRNPP>  /ZZZY]]]_^^^^acabbbbbbaca^^^^_]]]YZZZ/  [``eddggihhhhkkkkmmmmkkkkhhhhiggdde``[ .jjnnpppppqrruruuuuuuuuuururrqpppppnnjj.XttvvvwyyyyzzzzzzzzzzzzzzzzzzyyyywvvvttXo{{{}}~~~~}}{{{oxxll::33SSffFF,,ssL||L??????(@ }(-)p*+++ق+++ق++*)p}(-U}(?)+݄,,,--------,,,+݀)}(?U3 )|+,,-..//////////..-,,+~+}3 U~+e+,-../00111222211100/..-,+~+eU)J+օ,-./00122334444443322100/.-,+ր)J*+-./012234455666666554432210/.-+*v' +,-./02334567788888888776543320/.-,+v' |,#+Յ,-/01234567899::::::::99876543210/-,+|,#|,#+,./013456789:;;<<<==<<<;;:987654310/.,+|,#v' +Ն,./02346789:;<==>>????>>==<;:98764320/.,+v' +,-/0234678:;<=>??@AAAAAA@??>=<;:8764320/-,+*,-/0234679:;<>?@AABCCCCCCBAA@?><;:9764320/-,*)J+-.0134679:;=>?@ACCDEEEEEEDCCA@?>=;:9764310.-+)JU+ֆ,./124578:;=>?ABCDEFGGHHGGFEDCBA?>=;:875421/.,+U~+e,-/023568:;=>?ABDEFGHIIJJIIHGFEDBA?>=;:865320/-,~+e3 +,.0134679;<>?ABDEFHIJKLLLLKJIHFEDBA?><;9764310.,+3 ~+},-/024578:<=?@BCEFHIJLMNNNNMLJIHFECB@?=<:875420/-,~+}U+,.0134689;<>@ACDFGIJLMOPPPPOMLJIGFDCA@><;9864310.,+U}(?+-/023578:;=?@BCEGHJKMOPQRRQPOMKJHGECB@?=;:875320/-+}(?),-/124679:<>?ABDFGIJLNOQSTTSQONLJIGFDBA?><:976421/-,)+݆,.0134689;<>@ACDFHIKLNPQSTTSQPNLKIHFDCA@><;9864310.,+}(-+-.023568:;=>@BCEFHIKMNOQRSSRQONMKIHFECB@>=;:865320.-+}(-)p,-/023578:;=?@BCEFHIKLNOPQRRQPONLKIHFECB@?=;:875320/-,)p*,-/124578:<=?@BCEFHIKLMNOPPPPONMLKIHFECB@?=<:875421/-,*),./124579:<=?@BCEFHIJKLMNOOOONMLKJIHFECB@?=<:975421/.,)+,./124679:<=?@BCDFGHJKLMMNNNNMMLKJHGFDCB@?=<:976421/.,++ن,./124679:;=>@ACDEGHIJKLLMMMMLLKJIHGEDCA@>=;:976421/.,++,./124578:;=>@ABCEFGHIJKKKLLKKKJIHGFECBA@>=;:875421/.,++,./124578:;<>?@BCDEFGHIIJJJJJJIIHGFEDCB@?><;:875421/.,++ن,./1245689;<=?DI J K L M N O P P Q Q Q Q Q Q P P O N M L K J I D?=<;9865421/.,++,./0235679:<CMOPRRSTTUVVWWWWWWVVUTTSRRPOMC<:9765320/.,+),-/0234678;ITUVWXYZ[[\\\]]]]]]\\\[[ZYXWVUTI;8764320/-,)*,-.0134579QZ)[)\)])^)_)`)`)a)a)b)c)c)c)d)d)d)d)c)c)c)b)a)a)`)`)_)^)])\)[)Z)Q9754310.-,*)p+-.012456Q"a3a3b3c3d3e3e3f3g3h3h3i3i3i3i3i3j3j3i3i3i3i3i3h3h3g3f3e3e3d3c3b3a3a3Q"654210.-+)p}(-+,./0234Lg=h=h=i=j=k=k=l=m=n=n=n=o=o=p=p=p=p=p=p=p=p=o=o=n=n=n=m=l=k=k=j=i=h=h=g=L4320/.,+}(-+݅,-/0136iBnGoGoGpGrGrGrGsGtGtGuGuGvGvGwGwGwGwGwGwGwGwGvGvGuGuGtGtGsGrGrGrGpGoGoGnGiB6310/-,+),-./12P$tQuQwQwQxQyQyQzQzQ{Q{Q|Q|Q}Q}Q}Q}Q}Q}Q}Q}Q}Q}Q}Q}Q|Q|Q{Q{QzQzQyQyQxQwQwQuQtQP$21/.-,)}(?+,./01fA|[}[~[~[[ɀ[ˀ[́[΁[ς[т[҃[Ӄ[Ԅ[Մ[ք[ք[ք[ք[ք[ք[ք[ք[Մ[Ԅ[Ӄ[҃[т[ς[΁[́[ˀ[ɀ[[~[~[}[|[fA10/.,+}(?U+,-.01xX„eĄeƅedžeɆeˇėeΈeψeЉe҉eӉeԊeՊeՊe֊e׊e׋e׋e׋e׋e׊e֊eՊeՊeԊeӉe҉eЉeψeΈėeˇeɆedžeƅeĄe„exX10.-,+U~+}+,./0jċonjoȌoɍoˍo͎oΏoЏoяoҐoӐoԐoՑo֑o֑oבoבoבoבoבoבoבoבo֑o֑oՑoԐoӐoҐoяoЏoΏo͎oˍoɍoȌonjoċoj0/.,+~+}3 +,-./cǓyɓyʔy̔yΕyϕyЖyіyҖyӗyԗy՗y֘yטyיyؙyؙyؙyؙyؙyؙyؙyؙyיyטy֘y՗yԗyӗyҖyіyЖyϕyΕy̔yʔyɓyǓyc/.-,+3 ~+e+,-/uUʛ̛͜ΜМѝҝӞԞ՞֟ן؟؟ٟ٠٠ڠڠڠڠ٠٠ٟ؟؟ן֟՞ԞӞҝѝМΜ̛͜ʛuU/-,+~+eU+ք,-.Q)ΣϤФҥӥԥե֦צئا٧٧ڧڧۨۨۨۨۨۨۨۨڧڧ٧٧ائצ֦եԥӥҥФϤΣQ).-,+U)J+,-.ĒzӫӬլլ׭׭ح٭ڮڮۮۮܯܯݯݯݯݯݯݯݯݯܯܯۮۮڮڮ٭ح׭׭լլӬӫĒz.-,+)J*+,-M&԰״ششٴڵ۵ܵܵݵݶ޶޶߶߶߶߶߶߶߶߶߶߶޶޶ݶݵܵܵ۵ڵٴشش״԰M&-,+*)+,-b?ڻۼܼܼݼ޽޽߽߽ཬཬྫྷᾬᾬᾬᾬᾬᾬᾬᾬᾬᾬྫྷཬཬ߽߽޽޽ݼܼܼۼڻb?-,+)v' +Ճ+,-qQ´ĶĶĶĶĶŶŶŶŶŶŶŶŶŶŶŶŶŶŶŶŶŶŶŶŶĶĶĶĶĶ´qQ-,++v' |,#++,-W2۾۾W2-,++|,#|,#+Ճ+,-?ŖŖ?-,++|,#v' )+,--K#ͤͤK#--,+)v' *+,,-->z\ظظz\>--,,+*)J*ւ+,,--.9^;jѫööѫj^;9.--,,+*ր)JU~+e++,,,---..........---,,,++~+eU3 )|+++,,,,--------,,,,+++~+}3 U}(?)+݂+++,,,,,,,,++++݀)}(?U}(-)p*)++ف+++ـ+)*)p}(-??????PNG  IHDR\rf IDATx}{mWUo}>K44' E*AG[+-uRv )Q ڡ`4Bk)(GHC!'zoD"7M}qkgw=\s=s>Z^zeu¬K/Nz襗U,=*zeKO'^zY@/b ^VK/Xz襗U,=*zeKO'^zY@/bY;ҍA  `3-f!0T4M<`{sdLRLB#fP;?s ӧ< NG<^ZJOs*fPp%k\ RdD7xpZ/ .G Wj|ЧE9#ϧPXzɒf$fPaki}RD+J?Ǟ]vXq KzJMqI iH6k>va`zi-=LA̠8 VO=N#zn1;,I뼗 ~%`]YmmdlŹL'Ydi;,g D c1n[Qޏ (#O^ \HRkQ;,;^t #15SmUDЏ-Z~EO%{aŔ!Ɛj'n+GCg)OTro(i^LB{oF >k)Z>{12@I-ȗ2z:z̎R ۀZDJۀr:vӥ'B0J ]ۀ]@dtwPNd # .=D +|Yw;}ĶMH>}@aq<^T1 ̿@?ۀ˂y1ۀB:kcs@W 78Tppwn֯37bYӰ̍Ӛq5ذ~ 6>ׯmtp_±8v| N,5cCس0<{I~=cǗqM6'ʞ/aq2U+=1%~7wz*.L\r­q pɅ[qSG4yyzzdv>,v=yދWt';vk /{/kBulY3|Ɵ|8v޾ ,f\ W%Aq6KE*s?mr*{x\W}y8uC>V*G-8{žt!k/?'xzX k{Bنkګ.[^W} faoa7^Xc{I| ;{&w* aqWǰRd@My/B^(L;k^78V3w} N -O/ ޙ;`+]SGo~%.gE,Ӝ;w_؅?!>zHwWoP0;D /?pzn6 Lc}<n ;p cz}Eowx~&3(8EvF\SOz]1kޑw{˜lvX|c9i o[燎\ ?O ?xnB&yK\i_+,H"o_a[a~$3(z?oX72×5F0]YU36ɱKGg 0m@\>u '[N 04;?z<_f7eMa4 َ#mܘ Z,-fYbI CPiʊ'3(#\z\w-_KLbA[i̤휲-*^܃vԱ=(1ؗ;yMb>M^zA zhW4R=Sw>TH5+9XP?1MM{=/=E@sѹR|[ɜoI3- ϿnV$j6Oz`_goqv;ƭGh'g $c7"zc?|n<4}n a%XI.?goZeY%rH:ks9M:_3<7Os: ml~O 5W"!l^yߍkNU9~- "Ud0r@狋oaf۬VTfA{?4K=j#u|砩RHn~U/<9ТΧ_모 ?^1P}<ڿrG!&*ݵo оN]?w "^~I` ?R@"Joq{~-/#>VFʓp/"GJK2Fxc?v9߿{!pOW2`oBks)sTo|/xͯ_6xr_$vV;ReL_ȓ)XB`o`)xݼmx. |o:Ww^e?«<ڲԛN!CuS"6bV*K+Fa?ʆ_i lw`zy}ڦ3%%a!ڈ7؉vY}$'ˎ!>NlT y{\x5-/Mmox1Yv[7W6P_ =KRhmLknMlrA6 /7v=-#Z=`D*?o s^KHזRp^=^9S/LJ L+'_Ph?sCOt?/[b$ͣ )y:(uoyG, Ccs̠x `1!Q[W\ ?'A/x}pRD*rژhkqVFLyrMo<{B{2UWь{J)+/_ђ:1OmY%<>JnC TOӅt#=ū8S 0Q9}-9*a`S7_ =: hxskj#Ռ(mjJ(Z"ald9$Tze/<{#|zj\ \m vXw<= 39F'?˝5O] ކ^`Љ{ȸǝV&".z͟~ E?yom;,G7-u~p;bdn\sJϟٮq:S#О/7MOtaj5(cʵeR=z6<.9̗'*}Û#sPb_,0 cwrqy{?2ų|UxK}Hub)eJyWH CtR$ٹ]_?DOe^i$00Nݞ%ky" T僛Rт$h8KzNh |P׏tyUOO^Aq,y=2(lBq94 􆈤1HK^] & ш  <|H۷@RՔo0w NiL[67TpnyvR7FFH~bh %ϊ7oMRyMFf\t# .ؾKK"yp潛)KdF _GDGb c vIe]z}o oLKr-zz)T7W|=] eg.ĕm_eU^Z{{UrlC3Gr=~Mh:b'7܃272 iGoE)sꕪ+#T P%z~*ӎdGjt*z{Dw%BI! 8ɔ$Rx2́:Mr >$S#j&dPOY˶sx%Fh|Xuƶ.7zP <1Q.S$VNiSA/MfP|bZw0/2iنk A _C*[! >jzimi m^ܔ>zVj6r7_S "|he>)4 +ܰ~N*.eB3!#t=V?H IhCl4Vg Iba藥D9DADdh„ B)7d"3(^羿0nB ږZR70#B@C44oگ)ȌBN 'Y撁൭TY:KWۨ6׭]p׭NWA;,w+ӊ#cKذn <ԗx@p7 C]}Z0Ż|B6YuvbĐIqĞ/}؉%xstlIQ{|0&G+;|t֮qOfsr r 6ܰ|U joB t*)ب`[!+٧8>Z=/ b]c+b܉L#Ө_$L,bi5 DMm>͓'xCLeDQH ֌87}œPGvynБEQd|^ G 7X`zU_;֙޿,?rt} Is@[I wN@r^H5kO8$`$'&4=#XH8ujſxظL:![$r*(%6&'Z  S%8_XNW r0k#$1҈ڲx$5{޺p JDM(1zɤ I1p;`G6 * Tb%y{םE!Zوs' ZLIrmH 0oK6`tZ?p\ʜ@>,aD0,!o{ ^Yoi]{ͥzQ9)9C% pNHwwUj7{߲rɻ+mz}gQf͈he?|gaLbkd6"U1;u֌;^ZLe->!Фq$o+V=+/ x`;~J8t9qb +N) hZ%>D{$$h8 5Q ͺ ǙYKҀ c~FB Idu&cG $o E" =y(U.8g܀DfP\ b9yyȴ;wj~$T#za!N\>'VSg3$*q/)l@og0c=6=qYQSqEMfP\jŃ fɤ"t}/Z{C07>80MA&P._o' E2D&Y!H/)N|TqHxC656"+8U:!HG4^gAʝ6#yўt4/ A/ٍK@(襰>Wɇ~ø{mò6:K?&<$:gy}88X = l -DŽPW: U_;DV.Fj7VJ$ Nudk-Ię"@Mt{ kW5z{=Gpʆꐜ𞀠'щ~JK^2f{>N<)8yZ?рxvI!7^C ѓ3bм5P2籸 V}ԗ=cEc@pmD&'98{#6o\><pB]nbJ^Kf_I[R+6dAꘃg$r{q8h ?+۲x#wsL[9C0lǙph]Q2=0DŽiSs"F]7. H;$" e{k J55.CDЮG@qйCJ;}/ "a]?eM݀>' /؂m/8/4g0;V!ԁ[HslucTw]GAy3 Zua<~o'>ح]X6u^1ַSS s03N,< 2ۑZ1% *6IߓFҺ#"O^ F;|d6Os: %颱. ,t%;=^t,IЄo4#1J/*_8!qPŹ-xyBL pH$ \PBp[y6D9mlh:Hվ*l1?⍏_~ ;6SO Q-DGur;>6kT'M:[4Mm6ʺ8z|id"F:B~{I`.2$e4gS쭧.g PڼjSN8ѐIdz_elMP;m$v G IDATfxD }^.(6hT*6cxz1<cw..6͠80`B:X@Ho .('e<0.ؾYzZv{2H]GfM8TgHSYf)+_mZ-Cȣf(+q3kN#2YX}:Gw&o DMoSH79MZ=Gp6S7]zA2C\+n^DmP=j,LhVG#>@ A`9 >4B# ȱE<爾!OGn_8qi1 4ZF\9gRE\ C v"v. S/@;t\U"WCV$OAyh(%r#'XvbގԔ6<2'0;ځ^$cO Hd?jo曆NxOmjw%'<$P 5wΉv$ZobbܤJ& `pI)"8~o(o`x}XV򨁃!7MA?ijj96Z6PW s81D78i 6mp ӭG}I@4b`vo']64)36`a̯؍Άo h2lFC`ey O'foۼ)-#e<ܱ!8e_߶v;,` "H#օ=zgcذ~ J xP':52 +9#!K!~O@':,[:cǗoפHdlOڟ=Qv9\,K.1^ZxxZl:m xpTM译[B7Fϩ/$ՉS7@6DB(n}J,aQ\j,E|hj 6Bh78tt -l\k 79 o½Q`=G0nدa㈚zdY3M.`(0r-:D]mXukϽ}]f|@R8!?'mh bPm{ZӓO;S;iSm)XhϼN,Z>%5JH' ;gmp'j0L#p8A@KQY^8xd kZlXfno%P?W79!P @CdBXDSyƯei*gt5EHhjd`sZ؟ 䖠;G6#Xb5k!'XL瀇U=5ɣӰ=`+\=By9p %XdIK+BzF@LrLZ\'KXfkטo2 uSP#AuR y;cC%?%(._\Zvh;%$wOj##/<{I2"h1TŋKX5 zO{n(允KkwxTrpd:aS:R?)bjlL3"ؒ",ȵK pۙ=MRf_r+Cz$2BLX@)`V sۀ#ަ^c!EZ,eeB 'E&cmCDolD!Q?cY 14rۻD M[ 6_-lt,'׼w'1xf.]b)&Bܩ}ik D@ PώH HdҏQo <ɘuܭI"ç`JXAIuwN{牗 "CH]W| yir:&ed/\D-%vS/rם)𦓢)$got(4J'#y>.zifGdI =bv!LwA:hF!H<'WG ^Ԡ98SsIwF'%cc`?3;hHIMi ze'){.'F(O5>p/=Ǒq7`K@7.rwik+m ^`Dqbq)mxTbʔ~ۦ}'4 oWsMDp\D3\0Dӧ7Uнo3hA s/ce`"ŻfLdjC u?L羴U V')6j?mvl ЙRSA"P>5Kj#q`14#$+K! BX7NT<դ#{9ygi@>UymEus9~|ZIyxݩ{P1g")cLPuV{7ČGDp:i^oxՁՃLv뻗D! 5SD0^ `m0oz䬝 ~Pw/$Y,d1^>:y6Աms<<zZ |@|HҏQ6/J3 HK ڙFqN`oH@:?3L,v,ѣKfFOeߧ%KPmd$A|qe_|Vh31a>f85jKT` $&AS'tr`( ꂀmޟW4wkk@ @QB Te) 4b ԓ35YeɞgZ:6'qSQB·!y"?_ڗ2I2<ŦJd)ƞqۀWuG 9biX s@: 5?n_>%&m1شyIaV\tDVE? UR#OC6=Ax) ٩i66J9H3bƟ8vtLܵ BD;ԚM}n :MK8;<ƨzD1NJuB]LΆ^7'B 5dn 6&96HLFj^1d^^t:9di?J 91hIрʫe`m)C4r $\'Nլf]r {?[Hhбt86CudouE%rM;Mo:!;,xi5D]mBΣiD)j@?(u%ǖ*_dRHDpX}Pe H\doхm%.ׅpZۀ1@>7sNRk&78@nZIrF 0YLiG^7"x%-9q{%:N e%Hc2AkCvLI^݃d!:tN̕iFcỈϚX\IMTۀ8h`#)m'Aԭ=|L 9Jf`Dt)jth0}qHwl:f0ߝX&AxU%M O8f0hԟ qM';QbS찰}:S0E]WnEtvI_% 0EįBV2n+?-öBg#:LPgH:LPg#:L_Ilo*-!;,ՑB8OuLP `vρrז@:@9/AVN8:IEm>餢)IJLVIG(\X&m,' Ku± pt9aS]yx`8Q&<$4b1Tߦb.61)Vh>r^M L}C!MKYNis;(4a `?˴q.t^bhr2%|o3tDURA,Cs6x;/W6s6Ul[AWׂ^I4]%v&+ӈ,Xz R;d/Nlַ,~ILM@1"Ď!|9Br )^#1L"{G.H}Q2)uh>)k-{bG ԱDGBllcΉθNqWbmceZ{x#Tg* M$ I)OJSyby|:iC0uP8o١2張"mE8mmϭL6 6')^ݚ`iڦIM^u'I-iЛ=#TC ۋA$J>!kC*5I"jm(2ZP}MXՒpNSp!9o\K't޷#F"OKco{'AIQUukM6o'['_M'Qduvh4c@ǗCaGr)&ބ"i5AZIJ91AYջmDP4yۉN |M5#2-N8!"h |tϘL*e_Jo !\$aN ui^m1{AݖF+LιNh3DSy%6*S''ޗ I'^j'i,.Sms@N-{z\|x7( pcCBQo}]W"V~..v*˕Lk=Qן8y_A-1*He-Ll~6f :bǃ cF_~}VZ7n9GEλyG"@؉pc1R Wʛ"MgPb`v2=g[ cŁ5vp <@4|Z6E,';RG#̉i\T⍵#PNI*BLM$"vAUƔ'6c׾U9J탗Yؚؠ >=>'kK-;`/ 05oC_\8vivͧlҧ<| K%h8?YiE!ͻ4Fr^$[לpσrỵ8\+0d̎9yI0YV b+妓lƈ W@#NLd.j1`w's٫=к^\҆Ǩ.tJ:$%4l KB59gFʾK+_?O"Waj2KZcofK'I^dzuG ^toks҆e/>듍O}fAz&DεJ!Zu<%@-5y}s10 }|b2s4xYe`WnR[ 4*q7?].9|2ST' :HgS"-3=k%@-fP Øs0;qtJRMI˸>G(AX_ X>B]D 3NTd. ̠0wP'hG@:N" 4]$CHc9 qw)'}2W{Tfoiϰ V't;L+n5gnImF(بmuB]8 yv6sh\w˼=*@yBkeH I+Y:o-Ҁk]AYXzc@JsAO#<۲62KZ̠؆r?`{ZH9izoNch^I;bEzR;$?~g/sOcNŦ߬񇀎~21’$2tAۍvOA`ś MOcV G !ذO [_!$2@&zF+DKQ;,>?ɳC`O7]ԧ %o/'-NiNHi88%'DZa[;?̠x`>0}9vcV,h>gM/b ['y|$M& xsOHV0f:z@xfUkzm.XVtNFA"+( [ۀg'`oYn˙TT Ϯ<%猃`e>%릭:$@$)uNLγ̠X Snv1J] 4O56b0@.89h< "u; Mxb ̠8 sU;e9yf$)z)Z yA^Ca"P% x6 ̠ J07]G Ryj&k>$B6Ry?w4f?h>ͿxHC]ʨیmfpIDAT+5cDEbe%{ZN P |0?1ʐ#AQv8 t3,mr b!L~WꚟIC`Kg| B2_Ck#)ޟ@Q xuڛ2waqҀ"Z"i by(-QHT`VU^7 {߳n)O~l7@lCbs#i^XVxYb$)?q"X?[IIK/}ZZC-{nlc#%]_YHU/ئ[W{IM?3@aI 0[N"D2HM8" ط#'=^*s]{+e@ OAڃkGmByPL"Z&;\?/BV n{}| D؀ٱ<7YHu> ITjP˷'%V;,qȪ!Z W@j$-mZ9ƍ| |<xNBV~w`@9B-൴dF(ȉNK{6t(!D`y'9?9ퟴJP?4.Y@(RE eM25 h+!OA=+IK69>,f<ɑUKTw >༉nI6z饼bbO/坹zo/!}?& nØ퀟B]S7e, 0GDK>;!pJz bKgGLѫyֈA\%@Yd@CЛ|i7`a7#\m fPcΩ4'Dlt2t^HDޜQBr 1plS;,nhJOAq_yY@U:'Q@k S Bkcs^ "fP\xe)c(@U%0'?7tA9;,ev z_uHyM#H 2:k}>ZoHORuzGR/(` z}G`"vn?Y3 T+x3`n҉˴rIzMy!c[/oV\-w)=!{7bQdVOo[3}^zH̠x #ocsWmZGwx_  c1n[l[mԹ >؏_Iy/ ~07xYWlF`s7O,`oi;,珹01,ome?5Ήm7ZcvX<4^ZKOS3(.p`G Ħ}b(@e~t@Шq6;,l9^ZHO3ej\[kx 5x;x7Kc}(_t|JO+H̠8v%N/r@_f́|y.,?CvXD/3N~`J `3-4$i!;W;WK/Xf=^zev@/b ^VK/Xz襗U,=*zeKO'^zY@/b ^VK/Xz襗U,=*zel쫣fIENDB`peg-e-1.3.2/icons/po/000077500000000000000000000000001435730362100142475ustar00rootroot00000000000000peg-e-1.3.2/icons/po/cs.po000066400000000000000000000025021435730362100152130ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2018-05-28 18:14+0000\n" "Last-Translator: Graeme Gott \n" "Language-Team: Czech (http://www.transifex.com/gottcode/peg-e/language/cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peg eliminační hra" peg-e-1.3.2/icons/po/de.po000066400000000000000000000033121435730362100151760ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Wasilis Mandratzis-Walz, 2015 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-21 13:54+0000\n" "Last-Translator: Wasilis Mandratzis-Walz\n" "Language-Team: German (http://www.transifex.com/gottcode/peg-e/language/" "de/)\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Sprung zu Heringen, um sie zu beseitigen" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E ist ein Solitär-Spiel, in dem Sie über Stücke, um sie vom Brett zu " "entfernen springen und schließlich versuchen, alle bis auf einen zu " "beseitigen. Die Platten werden nach dem Zufallsprinzip erzeugt mit 100 " "Schwierigkeitsstufen. Das Spiel wird automatisch speichert und hat eine " "zurücksetzen-Redo-Funktion. Stücke können horizontal bewegt werden aber auch " "vertikal und diagonal." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peg Elimination Spiel" peg-e-1.3.2/icons/po/description.pot000066400000000000000000000022231435730362100173150ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the Peg-E package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "" peg-e-1.3.2/icons/po/el.po000066400000000000000000000037601435730362100152150ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Wasilis Mandratzis-Walz, 2015 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-21 13:54+0000\n" "Last-Translator: Wasilis Mandratzis-Walz\n" "Language-Team: Greek (http://www.transifex.com/gottcode/peg-e/language/el/)\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Μετάβαση σε γόμφους για να εξαλειφθούν" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Το Peg-E είναι ένα παιχνίδι πασιέντζας γόμφων, στο οποίο πρεπει να πηδηξετε " "πάνω από τα κομμάτια για να τα αφαιρέσετε από την περιοχη του παιχνιδιου, " "και να προσπαθησετε να εξαλειφθούν όλα. Οι πίνακες δημιουργούνται με τυχαίο " "τρόπο, με 100 επίπεδα δυσκολίας. Το παιχνίδι αποθηκευτε αυτοματα. Τα " "κομμάτια μπορουν να κινηθουν οριζόντια, κάθετα και διαγώνια." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peg παιχνίδι εξάλειψης " peg-e-1.3.2/icons/po/eo.po000066400000000000000000000034111435730362100152110ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # David Colletti #EsperantoLives , 2022 # David Colletti #EsperantoLives , 2021 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2014-11-14 10:34+0000\n" "Last-Translator: David Colletti #EsperantoLives , " "2022\n" "Language-Team: Esperanto (http://www.transifex.com/gottcode/peg-e/language/" "eo/)\n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Saltu sur pegojn por ilin elimini " #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E estas ludo kiel solitaire, en kiu vi devas salti sur pacojn por " "forigiilin. plej bone estis se vi detruus ĉiujn samtempe. Eksistas 100 de " "malfaciloniveloj kaj la tabuloj hazarde generitas. La ludu konservas " "aŭtomate kaj havas la eblecon de malfari-refari. Pacoj povas moviĝi " "horizontale, vertikale kaj diagonale " #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Pega eliminoludo" peg-e-1.3.2/icons/po/es.po000066400000000000000000000032731435730362100152230ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Francisco Zamorano , 2014 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-21 13:54+0000\n" "Last-Translator: Francisco Zamorano \n" "Language-Team: Spanish (http://www.transifex.com/gottcode/peg-e/language/" "es/)\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Salta sobre los pegs para eliminarlos" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E es un juego tipo solitario en el que saltas sobre fichas para " "eliminarlas del tablero hasta que solo quede una. Los tableros se generan al " "azar, contando con 100 niveles de dificultad. El juego se puede autoguardar " "y tiene una función para deshacer-rehacer movimientos. Las fichas se pueden " "mover en horizontal, vertical o diagonal." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Juego de eliminación tipo Peg" peg-e-1.3.2/icons/po/fr.po000066400000000000000000000034711435730362100152230ustar00rootroot00000000000000# french translation Peg-E # Copyright (C) 2021 Debian French l10n team # This file is distributed under the same license as the Peg-E package. # # Translator: # Bruno Kerforn , 2021 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2021-11-16 12:02+0100\n" "Last-Translator: Bruno Kerforn \n" "Language-Team: French \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.0\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Sautez les pions pour les éliminer." #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E est un jeu de solitaire dans lequel vous sautez par dessus des pions " "dans le but de les enlever du plateau de jeu, pour essayer au final de les " "éliminer tous, sauf un. Les plateaux de jeu sont générés aléatoirement, avec " "cent niveaux de difficulté. Le jeu se sauvegarde automatiquement, et a la " "compétence annuler/rétablir (undo-redo). Les pions peuvent bouger " "horizontalement, verticalement et en diagonale." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Jeu d'élimination de pions." peg-e-1.3.2/icons/po/he.po000066400000000000000000000034701435730362100152070ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # GenghisKhan , 2014-2015 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-23 20:29+0000\n" "Last-Translator: GenghisKhan \n" "Language-Team: Hebrew (http://www.transifex.com/gottcode/peg-e/language/" "he/)\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "קפוץ מעל גולות כדי לסלק אותן" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E הינו משחק סוליטר מחשבת בו עליך לקפוץ מעל גולות כדי להסירן מתוך הלוח, " "בסופו של דבר לנסות להסיר את כולן למעט אחת. הלוחות מופקים באופן אקראי, עם 100 " "שלבי קושי. המשחק נשמר אוטומטית, ויש לו אפשרות ביטול וחזרה על צעדים. גולות " "ניתנות להזזה באופן מאוזן, מאונך, ובאלכסון." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "משחק לוח מחשבת" peg-e-1.3.2/icons/po/lt.po000066400000000000000000000033741435730362100152350ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Moo, 2014,2016 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-21 13:54+0000\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian (http://www.transifex.com/gottcode/peg-e/language/" "lt/)\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Peršokite per kamštelius, kad juos pašalintumėte" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E yra kamštelių žaidimas, kuriame peršokate per kamštelius, siekdami " "pašalinti iš žaidimo plokštės visus kamštelius, išskyrus vieną. Žaidimo " "plokštės yra atsitiktinai kuriamos, su 100 sunkumo lygių. Žaidimas " "automatiškai išsaugo žaidimo eigą ir turi anuliavimo ir perdarymo galimybes. " "Kamšteliai gali būti perkeliami horizontaliai, vertikaliai ir įstrižai." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Kamštelių šalinimo žaidimas" peg-e-1.3.2/icons/po/ms.po000066400000000000000000000032641435730362100152330ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # abuyop , 2014 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-21 13:54+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/gottcode/peg-e/" "language/ms_MY/)\n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Langkau pepaku untuk menyingkirnya" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E merupakan permainan solitaire pepaku yang mana anda perlu lompat di " "atas pepaku untuk membuang kesemuanya dari papan permainan kecuali satu " "pepaku. Papan dijana secara rawak, dengan 100 aras kesukaran. Permainan " "dalam mod auto-simpan, dan mempunyai keupayaan buat asal - buat semula. " "Pepaku boleh dialih secara mengufuk, menegak atau mengikut pepenjuru." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Permainan Penyingkiran Pepaku" peg-e-1.3.2/icons/po/nl.po000066400000000000000000000033231435730362100152210ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # RobertBorst , 2016 # RobertBorst , 2016 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2018-05-28 18:14+0000\n" "Last-Translator: Graeme Gott \n" "Language-Team: Dutch (http://www.transifex.com/gottcode/peg-e/language/nl/)\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Verwijdern staafjes door er overheen te springen" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E is een solitair spel waarbij je over stukken heen moet springen om ze " "te verwijderen net zolang totdat je nog meer 1 over hebt. De borden worden " "willekeurig gegenereerd met 100 niveaus van moeilijkheid. Het spel bewaard " "automatisch en je kunt zetten terugnemen. Stukken kunnen horizontaal, " "verticaal en diagonaal bewegen." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Pinnetjes verwijder spel" peg-e-1.3.2/icons/po/pl.po000066400000000000000000000034321435730362100152240ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # M T , 2015 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-21 13:54+0000\n" "Last-Translator: M T \n" "Language-Team: Polish (http://www.transifex.com/gottcode/peg-e/language/" "pl/)\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" "%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Przeskocz kołki, aby je usunąć" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E to gra typu solitaire, w której przeskakujesz przez części, aby usunąć " "je z planszy, w końcu próbujesz usunąć wszystkie, oprócz jednego. Plansze " "generowane są losowo, przy 100 poziomach trudności. Gra automatycznie " "zapisuje stan i ma opcję cofania ruchu. Części mogą poruszać się poziomo, " "pionowo i na ukos." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Gra eliminacji Peg" peg-e-1.3.2/icons/po/pt.po000066400000000000000000000032771435730362100152430ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Rui , 2018 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2018-04-20 14:52+0000\n" "Last-Translator: Rui \n" "Language-Team: Portuguese (http://www.transifex.com/gottcode/peg-e/language/" "pt/)\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Salte com os pinos para os eliminar" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "O Peg-E é um jogo do tipo solitário em que se salta sobre as peças por forma " "a removê-las do tabuleiro, por forma a tentar remover todas até restar " "apenas uma. Os tabuleiros são gerados aleatoriamente, com 100 níveis de " "dificuldade. O jogo grava automaticamente e tem a funcionalidade de desfazer " "as jogadas. As peças podem-se mover na horizontal, vertical e diagonal." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Jogo de Eliminação Peg" peg-e-1.3.2/icons/po/ro.po000066400000000000000000000033421435730362100152310ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Oprea Nicolae , 2014 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2017-09-23 20:29+0000\n" "Last-Translator: Oprea Nicolae \n" "Language-Team: Romanian (http://www.transifex.com/gottcode/peg-e/language/" "ro/)\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Sari peste pioni pentru a-i eliminna" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E este un joc cu pioni în care sa sari peste piese pentru a le elimina " "de pe tablă, încercînd, în cele din urmă, a le elimina pe toate cu excepţia " "uneia. Tablele sunt generate aleator, cu 100 de niveluri de dificultate. " "Jocul salvează automat şi are capacitatea de a face/reface. Piese se pot " "deplasa orizontal, vertical şi pe diagonală." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peg - joc de eliminare" peg-e-1.3.2/icons/po/ru.po000066400000000000000000000043111435730362100152340ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Andrei Stepanov, 2022 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2014-11-14 10:34+0000\n" "Last-Translator: Andrei Stepanov, 2022\n" "Language-Team: Russian (http://www.transifex.com/gottcode/peg-e/language/" "ru/)\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " "(n%100>=11 && n%100<=14)? 2 : 3);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Перепрыгивайте через шашки, чтобы убрать их" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E – это вариант игры в пасьянс, в котором вам необходимо перепрыгивать " "через шашки, для того, чтобы убрать их все с доски, кроме одной. Расклады " "создаются случайным образом и имеют 100 уровней сложности. Состояние игры " "автоматически сохраняется, также присутствует возможность отмены/возврата " "ходов. Шашки можно перемещать по вертикали, горизонтали и диагонали." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peg — игра, в которой нужно очистить игровое поле" peg-e-1.3.2/icons/po/sv.po000066400000000000000000000031631435730362100152420ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Åke Engelbrektson, 2021 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2021-02-18 04:56+0000\n" "Last-Translator: Åke Engelbrektson\n" "Language-Team: Swedish (http://www.transifex.com/gottcode/peg-e/language/" "sv/)\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "Hoppa över pinnar för att eliminera dem" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E är ett solitairespel där du hoppar över bitar för att ta bort dem från " "brädet, i slutändan för att eliminera alla utom en. Banorna genereras " "slumpmässigt i 100 svårighetsgrader. Spelet sparas automatiskt och har ångra-" "gör-om-funktioner. Bitarna kan röra sig horisontellt, vertikalt och " "diagonalt." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peggelimineringsspel" peg-e-1.3.2/icons/po/te.po000066400000000000000000000045471435730362100152310ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # Jagadeeshvarma, 2021 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2021-05-16 04:47+0000\n" "Last-Translator: Jagadeeshvarma\n" "Language-Team: Telugu (http://www.transifex.com/gottcode/peg-e/language/" "te/)\n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "పెగ్-ఇ" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "వాటిని తొలగించడానికి పెగ్స్ ని ఎగరవేయి" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "పెగ్-ఇ అనేది ఒక పెగ్ సాలిటైర్ ఆట, దీనిలో మీరు వాటిని బోర్డు నుండి తొలగించడానికి ముక్కల మీద దూకుతారు, " "చివరికి ఒకటి తప్తేపి అన్నింటినీ తొలగించడానికి ప్రయత్నిస్తారు. బోర్డులు యాదృచ్ఛికంగా ఉత్పత్తి చేయబడతాయి, కష్టమైన " "100 స్థాయిలు ఉంటాయి. ఆట స్వయంచాలకంగా సేవ్ చేస్తుంది మరియు అన్డు-పునరావృత సామర్థ్యాన్ని కలిగి ఉంటుంది. " "ముక్కలు అడ్డంగా, నిలువుగా మరియు వికర్ణంగా కదలగలవు." #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "పెగ్ తొలగించే ఆట" peg-e-1.3.2/icons/po/tr.po000066400000000000000000000023721435730362100152400ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2018-05-28 18:15+0000\n" "Last-Translator: Graeme Gott \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/gottcode/peg-e/" "language/tr_TR/)\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "Peg eleme oyunu" peg-e-1.3.2/icons/po/update-po.sh000077500000000000000000000021131435730362100165010ustar00rootroot00000000000000#!/bin/sh echo -n 'Preparing files...' cd .. rm -f peg-e.desktop.in cp peg-e.desktop peg-e.desktop.in sed -e '/^Name\[/ d' \ -e '/^GenericName\[/ d' \ -e '/^Comment\[/ d' \ -e 's/^Name/_Name/' \ -e 's/^GenericName/_GenericName/' \ -e 's/^Comment/_Comment/' \ -i peg-e.desktop.in rm -f peg-e.appdata.xml.in cp peg-e.appdata.xml peg-e.appdata.xml.in sed -e '/p xml:lang/ d' \ -e '/summary xml:lang/ d' \ -e '/name xml:lang/ d' \ -e 's/

/<_p>/' \ -e 's/<\/p>/<\/_p>/' \ -e 's/

/<_summary>/' \ -e 's/<\/summary>/<\/_summary>/' \ -e 's//<_name>/' \ -e 's/<\/name>/<\/_name>/' \ -i peg-e.appdata.xml.in cd po echo ' DONE' echo -n 'Updating translations...' for POFILE in *.po; do echo -n " $POFILE" msgmerge --quiet --update --backup=none $POFILE description.pot done echo ' DONE' echo -n 'Merging translations...' cd .. intltool-merge --quiet --desktop-style po peg-e.desktop.in peg-e.desktop rm -f peg-e.desktop.in intltool-merge --quiet --xml-style po peg-e.appdata.xml.in peg-e.appdata.xml echo >> peg-e.appdata.xml rm -f peg-e.appdata.xml.in echo ' DONE' peg-e-1.3.2/icons/po/update-pot.sh000077500000000000000000000014061435730362100166710ustar00rootroot00000000000000#!/bin/sh echo -n 'Preparing files...' cd .. rm -f peg-e.desktop.in cp peg-e.desktop peg-e.desktop.in sed -e '/^Name\[/ d' \ -e '/^GenericName\[/ d' \ -e '/^Comment\[/ d' \ -e '/^Icon/ d' \ -e '/^Keywords/ d' \ -i peg-e.desktop.in rm -f peg-e.appdata.xml.in cp peg-e.appdata.xml peg-e.appdata.xml.in sed -e '/p xml:lang/ d' \ -e '/summary xml:lang/ d' \ -e '/name xml:lang/ d' \ -e '// d' \ -i peg-e.appdata.xml.in cd po echo ' DONE' echo -n 'Extracting messages...' xgettext --from-code=UTF-8 --output=description.pot \ --package-name='Peg-E' --copyright-holder='Graeme Gott' \ ../*.in sed 's/CHARSET/UTF-8/' -i description.pot echo ' DONE' echo -n 'Cleaning up...' cd .. rm -f peg-e.desktop.in rm -f peg-e.appdata.xml.in echo ' DONE' peg-e-1.3.2/icons/po/zh.po000066400000000000000000000031341435730362100152310ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Graeme Gott # This file is distributed under the same license as the PACKAGE package. # # Translators: # 高垚鑫, 2018 # 高垚鑫, 2016 msgid "" msgstr "" "Project-Id-Version: Peg-E\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-14 20:54+0000\n" "PO-Revision-Date: 2018-03-24 07:06+0000\n" "Last-Translator: 高垚鑫\n" "Language-Team: Chinese (http://www.transifex.com/gottcode/peg-e/language/" "zh/)\n" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../peg-e.appdata.xml.in:6 ../peg-e.desktop.in:3 msgid "Peg-E" msgstr "Peg-E" #: ../peg-e.appdata.xml.in:7 ../peg-e.desktop.in:5 msgid "Jump pegs to eliminate them" msgstr "跳过棋子,消除它!" #: ../peg-e.appdata.xml.in:10 msgid "" "Peg-E is a peg solitaire game in which you jump over pieces in order to " "remove them from the board, ultimately trying to eliminate all but one. The " "boards are randomly generated, with 100 levels of difficulty. The game auto-" "saves, and has undo-redo capability. Pieces can move horizontally, " "vertically, and diagonally." msgstr "" "Peg-E 是一款孔明棋游戏。一颗棋子跳过另一颗后,该棋子就会被消除,游戏的目的是" "最终只剩下一颗棋子。本游戏的棋盘自动生成,有100种不同难度可供选择。游戏会自动" "保存,并具有撤销(悔棋)、重做功能。棋子可以横向、纵向和斜向移动。" #: ../peg-e.desktop.in:4 msgid "Peg Elimination Game" msgstr "孔明棋游戏" peg-e-1.3.2/mac/000077500000000000000000000000001435730362100132565ustar00rootroot00000000000000peg-e-1.3.2/mac/Info.plist.in000066400000000000000000000020441435730362100156330ustar00rootroot00000000000000 CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType APPL CFBundleDevelopmentRegion en CFBundleName Peg-E CFBundleIdentifier org.gottcode.Peg-E CFBundleIconFile peg-e.icns CFBundleExecutable ${MACOSX_BUNDLE_EXECUTABLE_NAME} CFBundleVersion ${PROJECT_VERSION} CFBundleShortVersionString ${PROJECT_VERSION} NSHumanReadableCopyright © ${project_copyright} LSMinimumSystemVersion ${CMAKE_OSX_DEPLOYMENT_TARGET} NSPrincipalClass NSApplication NSSupportsAutomaticGraphicsSwitching peg-e-1.3.2/mac/background.tiff000066400000000000000000004457301435730362100162640ustar00rootroot00000000000000MM*@4& !p|JC3PyZ?$r4zYdRcәD5/cT)a&Nf]3AQ 2ENI*5ֹ_XlV;$A9ee  v¬4&}\RˎႨKٱW;+xW\>vfNOߴֽW]yl\؝MVo%RJƢ59ͮ<=[Sq+cϤ9W{Xk -j>OֹO3w+oMD 5 K2/MA:ڳ,-+-T' ?pi 5! Ep%3TπJOL&oJ(rRlȲڶJo-)"'OC+K0,?M3q|B@XNMb20[>@3aΏC4B4\m/LHRoWJQL $.yZux|oC׼IhZ4=쾓^qPW$}צN,77PerL5e|ȳV[io,JkUD\JoxJ94y q%r٬GK lb3.q/Mn%&riZnqNxQlCZ}wv7^O5Fl9Ĺ5Ăs['fCc9+˶/7c'ޱtv}n^v--E.d 4et0JmMuj#N.XAыȅ y|PGU1Vp,V^}?T8qI>US[G(ΒqgN{P?_֓+V+QG (er|F0]4y>Mnj`:T8"ҦYSaRL#rm~GMǎ :Vu]MBdwr#ҁՙT:ZIm,UR(d*/:q-r֐RK Z=#6NȆn RJcb͌RB6# E6c@fpJASt{6kXmjDKh%;*]ԉv>KU.Er_ܩ+5jKxvʛ] .OYwM5ެqz^ۆf5ewjWg(E}T,Ƌalk+]- ]aK]m?"8:_ZQB6X_if*ƙd' |y68ѯȶxlN"rƦxOV&SoVLۗS:o8FJPs rF8Qq َvMW+dz" hl}diޑwH']@iU, SSRo G޺-']{#sٳXfSڥh/ﶥA(?傂ab6%ҘAǦ/?,~Fryr(Yq+Ҕ@`"JxJսb8">eŽ;7ٱ8ocl۳3BLnvj/Ewm+ 6o2=F܃ oj&PR &Y_PjWyޙD7Չ*=DpcՠHa(s-וȍ6>~Qn^9r<'3&Gy_@3ub{˨B[8>:KzX~|_HmWʼrO{| oP5HϫhZOTx.pm뺧ƤBE@ f,\(Z;LȰp On,*H4πm0kjVLjo(o*9Zwn6o (20z-S kX缩/T1,ގ# 0Кn KfJy J'lЭХ)*BtvZiE̅pL0Nvܦ/#No&f|?[ ? |ԯ. KN>Q -|= /AP4hRC#%,gu1nmO r!i_ bM>qSOvnq'gc t:)qap 1n!JSR& 1$"2@ǯۏTݍPb2b7/?B&ʙKW(G/e(oQ=' f*$.)+) m++$q,A.mo-R<$/ko52a+lB3 226cА18Iqh1S:H)]:n 0 rqm'ΪnpBď,'q6G-I6;1 $S`[  ﯴ2^ 7(K@V3Qp'/VOF.%DE q+ RXM\Oo>4y>j7- >23flHW5"@094-%@)@W$A8Nq%T "5CyD|ֳ1] 9ӿFQFTRoq<=RwP ȵ40NtɕSsLAs4pYмS}8rF BLb-GKNNPf~SruM3TWr{23;2jqFH^ҥRUh8S4jeD#,{TtQ]Vc82tTѸrQ/W4>BJoTGtKNgEFu')W(\ Yw(2 [a&QMԉvh;\ےR]7+u*5E?ϹB @ @`LGUT//-q/T4sWO lWv 6%OW[Yg ;3 QNZ9 RZ ~\sTvbDŔXTSQ#UII4B2hRS2LxQ_ceVt$]56c6ZvGEv:#(QcT|4 6NIZrT~3)s׎#*%Z"y(PoTTJtPE-lOUUml.K488e8 7jKj+OX`/5'Vc?cKw÷/ōڛzO{׽_KZØŵ=1[`UsQsKռjP Z34^}P^vA>ė*ׂ{<-q:9s}H[[žվ\ (_^j}a~\/V%tY>>DûtvtAxooY^M+or+zќu5Ags] 9y4_?!_ouSX1(<_+I<+?6~ C}f(I?#>={L  PXT" ?D(6+B9 :Gɤ-$|K2H1(bM8S V7[u*j|SUjhB[ª5{._٬_Z+mnuTֳ ,Wmcnu5,dar9< Uf/ 5躊W.ܤZT_aӧm@`ȧ c4C'[Mֲ7Ӯ'Fm?w>Cp8s˲+F+аK0+ )kC4>o164,  $\F2os).Ȕ/ bHּۤn(9 \8{y)ԥ.od;sa$I{%lcбdQ #0BStp2ДWAF$F,kr5k6,rum+ a# [JW06\Hc^HrĞHo|e1o[63< t<2,AMNRtO1< SSSFUEStZXakRR[œ5c'֙&K\yD&XWL!X|ؒ5(R涍aNLƇkY\uןf-~a+WH-݄kf7R PNU[_V&dT>Q?B S[am"wT d5Lreѕhz\yKs ƕjW&Zѣ^:fyqaXړlؽ]r}ݞW:[nU0rDPҙb9Utmd\O-LA=!&Klp պ@xL d[1=vQPRBB}a^;OgLݬζ5tn9wC@{z)-*dm}y~WSxm}=fz4_Fe2.uq͖WY{ ZiUOf뙭{w\zvNuʯk`:8cOj5OJFgfPZ^sx5һ~b> Y뼯)SG)vjCgk?T`vPV<񩜒5[2~F'51+- rkׯ.0u8$QF* K?J ;̩iྡྷ־#r@"i>k0& 9#C0ᬤ2[43^ pJ5;>C܀G̱dzOEE ʬ8#k.1RB ˙ÄYA NNč(F$`NيjvC{?$C<1Iƌ>Ϝσ<G 5;CěL Ą@^1ʔBlO1:ckwٴ4B/DKS< | K,7R7@r6θ~QЁNR%",!BDrAqãE"ts63VQeRV#4=hP޻k>g<]G+DZ$ N8a0HMWYUP|| `-pwhtdzxa a6S6S6NUaU>^R@~) ZT95]VlZ;'ٺOelMa lS[C5\'t ./UMe|B?GcKCK}EV>מ84CȴKwMRSNh N؜˱μ ܆z`xH*1*jXlc(@e@0h6X]X6YY} M!iZnc3Yo %f3q;Ƥ--^Lj+ھeL^SaM$~q4\-M?37[FP]9e4F<ŖFYa5m=SR̒V-jN%޴Bj j~knIݠF,VS6H2f˝\VأyXKU O_ |ʽyMuԄ}pKN}chRU=S NoU' XJX|\yyp+(= qjcVi`mmmfVWav]Yu &<Iu^S-gb̦%ꍣjݪּIjG3͜Z]o(hoNE4g^w7xg~8#&6A.{Wf6)~N}vN~#VFItVM ɇQ0w6!dgpi`8Tma!$݅&6$ydfcfBlfu-F\gnbVd^vAF+6En]s[Q6mKT_F_S[2=CtW#l1줎pT UL+p}^XՎ{zw;r2`t eY0OO>S] ,尥7# ,jrfRr),fڠfe2ew-2զfo,mha+Suegvp$Wd$.sH[m@g#r} Dy_O} tN1 MmS6Rhω{ܖIܝXptnh6N/hg/&XqO_%p%ՕVmr_=&E!5r)]ǫ^<5.j<0+ļe؃{w8gCoNs_80B|F AbP/c(.7dx6Ge1IBY2g"$s({?~S_{{>_W|鏪[Ҭ;-& 5iR]{TgtrKI^7-u9@P4 6X `@ h-&G@  $=sзqkD7<eˁn8|{nnOv;Gz= gmw~nw7w}>'s}O@-FHs$RK'6p w $  A)t) APPCviG )UEqRBkzGڹR   *Ҽ,L)ny\ @+8L F BS`팄 #?oc?89tu HO}Q/AQ]9@.LSUHO+Cԭ ] E8,@<_CtFHqՃWѝ0l[cG,UaCV|kgE%p#[7dױ|Bh5ʕ?- 2i9# #>+ɜc' j32L43tN;Fd46WmNՎ;H>O啥RO]%K[>SN9ՃW< 9kFW0mnzSWu[IZ{b]VkX m"Wqm_7tXqE[zQr[lQ[vm_ȫ<.aʡxg%N]v'!`j3l2 S{Bc#Ny+b"ޙ;ZjtE/SWjM"iNnCi]cShnJz~V{T}Cy]r0_+Hг&1"p׃xo y"[CZ 8 DLs7K9A>0yotC?Ʋ`*vIri@(d&Fx=羨+Cjqe=&\WqXQkgr1GC2}/ūaKy/썛yC(M@!ЄoEGob vlqx_\SRJIac> wBrSdLaLjbvʙ@bgؙbDH`D"-+YzQgeOwXt_}ɨOʥ2|OZjwO=艻r@D'%D 1$lmbi$d{wl!8FM%YԺBB#I%l$r)bxW&=1#) 2Una2LHMWfSy;DUg1A@OF*'B:oDiCTLZ54׷`}j.Xd಴1YFE2'ڟJHE(i0bZ8 -$R:SQAGsҲS))*`:AӥmH@r JN/w:dZ]Ɛp e& I8ha$As9Χlah4P D5rc)"gMxoWA{>OFf]&Z nZ=6L-hK;kb;ˊBPBRjNJu yY_,0a;81W6.Lc;V9Mug5:|7GCzO7_f|zBgmZ>0Mps;l?.[[K%ӺZHFiTDlkJ's$8 d 'k-<~B+.J̎;GHV ,흴 cPr e13 %6;LˬIJv@ԉ5h?P-Gj JPp -P ' n' Xpڧئ0儓lEKyoO.~+r&ؐbR.n `qYAhLvȃ>dwuSiـl?ًu \ 'AY%zB58l/R9 Img?}SlL#)3VI%bg90#U'DsnϠ Z$33N)Iq!2-4#^ՀɢJ  a2agI341@5s#X6%j&5:O475vn62%[(bSh6sssaO/S~ނuHkhİ8oEW/8+rӧ :$.gJ7˖-;&.L=E-> X9R*¤8 f jHI LM͇8vOM}e[?ə{k{0NZ{ kyUz迷4!5ɧmأ$7; 4!{34pԷ7w~*[ͽ~d#4A.-b.,ː JOØ7dK -Va_\./ʚh$2|KLcC>wNNxI#8u4 1Ƿ};lGtwtjsGC9{m nKʠ| |7XZh"]͝ԍ3GUtwoyd{ʨ7= ď7yI)h)lVnm$ ÜAAAw\vGhM8O)×x {myC}|sq~MSE2R&|C6 ڂFײ*xe]+ӍκqP=ΕGj}b"Q];+-j|,+A0 "6!~2vլMi[$6*`ƙ~"k64ҷ1{y|wuQ<;[mA~nyt?U!1}@ ;9:ͅ{Ȩ׭|$rt},;dtH\ $IIr*²t`rj P0 @ؘ@`( d2)0#J\DRg9Nw6N(4 މCz5"B4Y^KU'Tba֪fV%D_m+Ճyo~/QaPX<. CЈdRDQ.!y&-&d\z1'#2I [4LD+!e3Z;"N1*4J%ӊ}:VVh*VfE/M `Y&u h?֋~|]{= ,` q,< bx 7h1z9Rmlhխl5}~gmWw;M+{kimvlKC ox:{o^|}GvT\jT5I2Ī&Ikbl J|@֚A**^ZbjuCk\/A:EMF)Ro3*QBڢK^,I |" cL̩*JBJKP:=s;?3t!̳{oL|OjO4ͳOTC4&Nl8Q+EI)0D3G1Tn@`U _m]mgWWռ5qSa,; BVLb؊XrZսu>U aO73.4~#I2(rԾű=-M+@ 7\mkm3җ%%?3:5QϻvJ`=;JL8Xv;S=X[2%qEA\cT cB0 X+P[jÐښUSWk9guMTGٙDrHts N42I!0MraWˇaef3'rx Ls#Ha/v%>7SQm91f纺>/Yj6Uz^S[1>=eo1l%k[irκn "/—izu'0͙{TuvB,vN59wJN1uB \Y.@p}YTb}54a,q0arciaXvLCJB a+hJ0!pZ1W{Fj n)bLl16/ۙ5HrC3,pG͝4-P:-LP)he \}:@o2rNAduLB(Q+-*@N> Љ*ĆЕUh=wޫW1acE8h{oY1:ie)霵SU-p2NHI)B>´(|鑩+%j"{ΘKs$'lе`bftCD~\Qi,&*T'&nȇNZKPIW&sM g\UEG\]H+MI]=5c`"\h| KUE,yZSJa0e` {'S-DUe=h Uu]#u̢}։;V#{dJ0wGmHJ+g)|T!!rK)8j:_MD%kWL#e*"c x# ՌboWJUioe\1FW<pmnv~: [ aag2\(S BB]Z0۸2ڱSH&.ǃ[3¼4`Y:ZYg5Lǧ#Q婑idZkDčͼVN. [3{g Km#hYaiX]7Z3u|9r`< l?Z'%pgܮz+ngsh/mR ,~ʚ.ϰ֍dn,iohGIxD+䏘J-LːnZُ Obe ݮ+} P+QDϦwYi? ih֮ <.όN^r0glXM? 4fM@𐺩20:POeBڬe8Z{ ; 20Ȏ OY6̣.)p $(N&F,Q ̰nl,̌Eа)BQJ/0qͿO 1BhqZڍP0 YOp둄hHqrC p,{#L+F|̷%pi//˭ ҆| rPo[*)\r : !n"N*MBC#mI:pǑ%-ϙ$J@fܙ2j¸lrq+vq+Q_,R{0 O*qTP1]++Q!C,%Rξ$N7>˲KRoEm ӗpHr2%m3O s<,M"S&+O,FBR 3/ 2*2ҥ QA5SgK+Z6S6o77I7G7=.ӆQ$!B2i8P/Bw![n""/0eE,G1S,,oc2LWR(T88)Ow.#QwM$˳1#s!< TPj_FP#= u$(/ËTsVU=356h_TTS[Jb2(nyUK}L1VBTtN4#/`758RO+aNc-ZK';7[S αؓI{=Ua r)HR lP?p*_A?Q_p5t@uhUm77CM43bP6#aObLDYjrb?;6G&Rseq%?+5_9 HuREIC\f153G7 ڢi+hIjaj`bNkv6M@tPv=Wcd7g-iwW%Z5owp1\5rpQpi*^t47]#^3{W:׽APecK6s t6VMKX0wsXVZ_.Wum3Nrd7YrU0Qbxvy3exz`o t }qi+[׻U7T7'Ru;Wg)t 2$7Et 8l!fPWuVvA}aE5l'm$lZ5 mx%;Q}ro5G7JV`snF3XY],{)T4 ^!5]j7|22 b/(kVǑ~4X+Y;.OB/Ls -.È}WaA,gWT2[ܚ9jU>7WW֝xļb{-V93m1l]Q] d}"4|kSSOU"1R+oXIJKiLo*U5Ô̳3m`G20ז3Y_m$6dL-bM4jImlT:+BK0 3GPpE@AT\ w,{NlBߵQxX%AO5X WbqTָmVVԭKeu^utH+*VGeSZ?h͒|1ӵ=rq58̽7u+= y]~I%AO=`zk0?\x&t|WnQ[׊o{S qT}eZX{W<6qaGmWrJr[-c9yݩe3n*Q`WCrjߔC]x]nΤQ?oT_Nn#︴etOJ%V<չW9[YZsɲvv#ỏҲ@J4#ҝj.ʹn}] zsCڏ,B+llU_m| +SR=Ğ|,Q>f)U&ķbq.U^$X_H鉝2E e,@eK)ɺᣱn RyMz'=kbs&@X&GFXc"؋3kDk|\#h-_2XE߆GV!SyC!O xiB"+jp7ښfq P{C'd/)D{AI8$wh:֖g3Y12uo, Ձ[.hjnY3fyj;ɩK$vVhNv#8^9 ),9H[;dCI3>jQ6>눬2X95?SKޒVu1;nU?.&-3J&dtr;% &΄*EԙN,|ۧmƙ{5:RzH\؋Ց&}UdETF-UgVm`ƭfCKu#Hbn7@H]+uWKՁ#xS[%e=s55$EA,0 WeOVn Y;9j} ZTyLyV^='kbuy`櫨R^et"Sa69n8rQ@0Ż K5Z _‰k|7j]yi1׆S{ ؽxpdw!>CjR:/2 xKʣMH`Vb}67)n <W}Ei.g\EHs`V~9#l Wcu=7H %.T)5~9嬋v(kuU4^jN2ܼ;E6.rgrnc;Rt9cRut> ޜ/c(nMQ|/&X;ە%Z90~rZMp$k Uw"$l,Ps,ط^C_To@ۗ1fr=Mx\^ݓ?M 4;+(Yu\[.iu/Ii>riZo\R6arOck⎶autկn!VQ\-9^:xΩ%ldP0xn"B nWO}gKzj゚xwK,ɿ[U4^\7*43bV"z9:,[h>49" &L K(qш{<ҜqIx4N345sz9:嵄B=2d,11)[6lY+5A7.C=AȬ295S?3$!T/R+EdBCdT[;B69":F$pJLe<-$4Hc+<ɁnCY9 D[IqG+I|P{Qª=^ELV1$}G;'6E!)CD`=gE<$FHCuƒAdG#8 8K) DDk-yCBlhA'}DL!:Yɳʄԛ2)#dܭlBl,;J/1kkCVIlUH$ AJI2{FKf9쏦,I[z2{A|c\KӧR֢DrGTL"Ѿ)£6|LEJV0=mnjLJnDaNȘCKĉ̕D9ݧwAMTƤ:S6?Q@S9̉|CsHr3!MMD#T&Ĝm 9m ](SUL;3Q3EU5L"2*>3ϔ2=7ѴE^4 S"_J>L}OR$%zFDVjTRӧէlУ):}0I«}@D- {W5]=ŋӌSM,U^Õ:.V ?,sH-ԌԼt?MKK4,ңVˁӮR1Ot׵4$'\)M 7]@T6U ;ʍ|+{ћLosMոo[\cP[=FGD,%R3A;4M$"?mP=,NMwYۮS8WBĨYWb;:_̽āXT{erUUAZӎ!gUHkmOX$Xܱ]AKR}YR]C\#~$I3r}`׻;ylzU9=fC|5Z]f_mV-F_[T\nmŹѸɕtW\ w8^N ?&`D5׭ǝ`^^ Lz4GH=J eQ4]Jߜ[KųBWٷK'+`YeK>&Ԥ@Х:d& ^]-2fQba601T%tVuf=c%_գT]SU^RHXL=%%/Cf%b P(}4ubٶq\ `sb4B@;_Wc]܅+B8lX%\faJpi<=ed3&aZuuj˥VFK:f|bt&nCPO).P^.(i5\k2&x3N_ѽ32ZBZ5E@ZeT)(hUHC( pTUG/Fj]jƌK^FU`4Yż>!b.LfI8NY Pi~&vUUN7kԂӴ5]|cc{evh+o( :N&Tj_sN6GI:~EjfzH:ߴ5/[xiN*Ζ뮙\Vk 6Υ:5l+"ElDE"lue&.쮉v[|AhtD}n/.kD2fӭBLk8-mskqSvi{՞|kn<JNa~]_V cTcZ߆j1/nܕ?>duHfiRV-nbN݆dM7oDr={k%̆wNhZ%GnQ~pżmXѣO,8د kVdYu]Ɗomk["'fLEkFs6oT1۵}w%׳\Dc;Ke~zaE`9.j-@ 6^n'^qaHjh%Itof&R mmVmtct. LwUG|NZUnE_ZhXG-No1j'S=Yd.qޫ]P:nghbfGtiwoCϛvFR'#p/tf>L^3}o)kQQ]7 l70)6(7us.sUDbm mαUK~u8Vf^fOX0x[ޅ_ v&nfy7jetkm\]B(f:t܄Q@RQVmt|wwYWN]uCkvb]B5$xg@/f36ty.gr.NVSrcw?p {gT;9yƽDase"GZqvysjqvMwfx෧>O'qvxLze/hO|wcϵ}m#Ywf߾}a罈@0X$" A\:!CpZ.D`rE $Xl~U%I|51MfRILu;Ob%>Bht#?R4*}R*4]BZT"aRV!GYjedիjխ-g,u EoIrcNbw3r٤7?,㢒M(M4tI#x?U 6ZɴEQx{˦^p\]Ҿ*妿osy:vOnt+}ߗ[-ڽ l+/űC*l 2Д-ko$A5%-w DQ b8pXELtBq;r lGѬ~G*r3)2z&s<,ʒ'J$+ $Вn/l.+S<ߣ"ɷe>7̃cFL3MF tkETJ(8UNC1>r%YVΌUi5Jj3)HKl:l]>bA :V OK 5Y#1fAJM4SPipU^ ]3ہ{74-c~ ${RԸ$9!~!umXW27I9vU5J6hO9-iګͻ/6N5DO ,`FR6w1hD]!{_SKfU& O9>%չKvn;9UbW\d={fpgc4b֖dq8 ^M@x39'YeSf{<PB=)PEʭ[Kl>W{gkAfAk%Bv_scA˫'ao,?m*p|?7O&p̵$ñ~],QzvelDQn:] " #R9j+!Ie"uT-jZFr򧢇C V ;K!fW|g;t _l"Ż˟!ջANf,}C;V)(NƲA;ħR+owL̎گǘqi=?~oksuetޗ bYf,#^SWTfU숺go7/hcߎ@uODWe-{g\=v_Swj廎 i;490qru֝nkEN*z/X{a>vQ+AkvIRwkK˽?yNs-Ί8ם֐~O9~⷏QW3oQNk}Wˮ(MP=_OV-%rVBL X koNwp*ʏ6lVIjjސ2}<ÊҰC&&nόkDpq,ό7NࠩbHmɮ0 ǥW^/ҦLЮ&Ͼ%xnŢ   P & CtJ DmD290 YEB%ѺtR&* :5S'>6ޱ]êzoQr^~Cuf~1޼ǫBſLk+ =H A,8mkP*.ZD ҩʖEN> z'nO:#与Z-JH.Tgjh6t'pAk @/Pk4/5*B.D4L̽;R';L/@X}='8/ W[ݓ*Z&S 3-yks\ۜ?@~?PAmx`چʣwtQ%HO_F̍wr{Q]br{4Yփ+fY7hdӿdK^z7K-'{ 9Brd}hL4rO?5;GNvԛjA#T؛s`$ &+<\ ȰCn1BnǞ7%G+{e*%^|,> i_{E>7 Z- De$bz`_&ɨqŕ \j^vyB]tpR축C w2'od;sd+P{ΣʤeH j؍PJhȗ) VZɘ0:#Y[浱Gk:gpc9>Mgm<7DHb,IR'iyRӹ`,m>|8L&E+:,֔?ڵnee-_{[]mfʸQhZ)J}ד/qBR2~Ũ$Mۜ@,XZ')!yb}^Dx,Պi%_+ɟ_KG/ 2L hw:d[yHٛr+]4ƚ'vowkŒ̎XLWJ<,x^_Cnm(aI8wT}ViT:ʻىrW,ΙxQL}ۮC9'-Y7CӑRSHh]@L-hP$^vΌ;5ᪧN~:zv>l=6^7[04ym /i%hq}4z3N8[7VbR4iζ(fX~_gEeVo/F~tF4\C^ ؍WnOB젴J/lm: (Oh{?)|$p/uKNz !ڀߊiN06/"n0JI൏ lrیt쌎e P*@ܜVW$` RO(/ p ΂TF. o+0[mPQضo ?W0`ҿ7"L$h N|q f9:yO 3qPqXƪOL~lpl~^g-Z ޅ vi2ѱ({J"j)wZbꎍ+bЄm/ChNprhjZlQqt=1 p,-P֣菧*'ѲPa g k"9$J$$ʭ %j/T޴WrR11NP_qQipb)/+er g#RO+-2)+4qDG2 /$U%J0ymq(2qJ'1Lf^M5(ZS" 9)N4"*P0P?;Rr8+?455s%Tذ6g.;0͛'pq7Sm.R%3 =)Q;W) 1+R13T&IJ:[4S M=*lC=rPRQgp6/Ik0Qsc4tg@pL sIL%:ө3nv1JT;9;s<*D.4ğF/4PH8mSZ S(*)EeR@s u/g/I1O{;гB2kK0 6Դ!Ii,KNuH*a19M^fKeyF?qؐ?y2 "&Ԁ Ӗ†:Ֆ2V(琻GlQ*˗0T>atESUGLKTT46ڵa.G>}&Fo?Us^q7 '`/щ8,uZ;RKm,#!S~6F9d4d=U37YE>{>TgXU<.%P_O a*v?QT/bNqRQT%Z:M\-7){cEt٩ ,mF%.9DǹŲv[ 7X`])AZi,)b9uXNzSˠ9ctMˡϰ8M {mO%5 5~@;/'6M}\/E.ݻ~6\yw7zq3eU{ۻ eٵ9[|ќykH#`<{܃V˜u#x|Zяg;M/<)Tw9imWE; <ݹ[(+M፛GGF}- 5c[V\~]yx[SI؃¶BZt:5}%Ř<_l]?\}]Ke3q1c1fs4êS \$A!yZlQ8Y I7J PV<[zi*E>5wuKGy=|mj}JNUgry(;?d}R T-=#AѷJ˼]ƦGMIoLY[t[Nٱvun"}-SBʾ-|Pׇۦ;,<<~7x?tv[{}UvR}W{)]2B .K}A~'ڛ̲kޟ:\I^tc[ۣumw |>>蛻*}9~。\4C+Q;=ݓn'?3!7xMXvqh}\!OMOӷ+q@+7cڍ  AOD.C@,J! E":1#y EbhJO*JarL'1MbryԊy%eĂ_(qa4چ@]JA*n!P+u\X4j]Y)վ3^Uq{YKn+eX/<=cl%(У1L75?yZK]&-<t=r\ >[L_qWʭ k_2:Wk =>_ռ;> ^G^?еLXݴP:}AFA*L$5jS9; C= S)֦=K;ћJd=ϴxΤsȯK ># I(?IJ<@#+2 30q<ı;Z467;6/ТU? $Tδ,i%QJ*EƻJ)0J6ITH>O1\-T}cVT 1=31m97rI3m %8Mb3-oaMD͆ie dʜ=XHe,Tq&SCp9sEוK _5eS)ɯ[}֘& 0^̻AWլjaMM'bLf69֓1Z?B)-l7ڿ\e!ݯ5$]XzޙQUMx:6E+f5f V8RSԱlmY1yL°}9DgVXѳTg{ݎe|6zփtr<>xG2N*j||[޽כ3ibu9VۭY)=wyيP]l7D;ujsrWz~jW晪Rѯ; VoQk_ZG?EZx쁲efKlQ CW/ t:R+y_u Htnö|&CT~m.CZutṱb#y' <'؟/@3`N)7GCP%3]tBhBQsf$ltc"lKl:'k06FDYBsnM,3q§ i|rƸnE}a;NfALtZ6Hɠ՝\C OI&)Zn@W ,,dxWw<|M%BhNeQ|/Lu/' &c.fȑTM9<כ@ g쨣rvj9J" *+ygcSJi@h˙HRaԹsn;L:PDzp)#T@*-YweS<$'.K@b{P Iڥ*Jc[dtFyyU)ɍh H*4ښ*ƪ(^j='b mJC5iLnSgl)mXӦsDSKd݂+J &|g2[C7e}B !Ygl<º>Ȱ;'u>%h/ՀziZ2:9[_orSkg;mi#GpnVu,5͖*~j]]{1w LAE3Q7"cyWZ]% 4xʒ_0܊krd#kПuò:e|C40ĵWjA٪sKy صvuU]&~d eə;+hjɶ2VYvM!m\ bsmVZMW+rlzVn9D4/hQ9z{fgT&W4Iua =vd9Ws0jVlySIg8$loN]8ql㮳:Yw͛UΔ`kN~c]p)xcka %^e#SZ[nOcػ{ĽrS|,)*tØS:Atђ!񊇒(?pj(Y} QgQ NiNp"r'cҍ׫y^j_4\xkի>^KF𾳸F}?^z׈wVTnW^Z{a#&wGy<:newk^Se5yb_SN5hӴӚ;?Ѷcoo_ÑNܮOuv>K{G S[xox5AK#* b]<ۦS漊#.ϲS>м.=Z?"!?*?c+ حX-s〓+A'#~C+29@+å.,#;E84E9 m3M8&:A;Q.3)"C+z=WC#ۥ"B8WK;3»pDCI۬ *>I@+s?!=A#<9S2;Z8{;܉CUt;sy|>4@!s)Cd#&, 8d 4Č*<|MBtL)DQ Oql&D+*AC_"E.[qs=C][2!>;DDlHF2'ML'D> $L&si5ATnTRp-4?%cⶫ,$%FǴ|J<)FKD ¬k@4Bl;"ȫ=D=5N peJSC;޿Ail{|^\~,g1~gJ"J,DÃ$d3V!JvACLrG|ԋGLJ9SK?tKL$::,F <;4#E<Ĵ@ӫD<䌫 LrIE[HË{LuLD%,O1M,2GBD0جf,BȴMB ݶTJDJ=Ó?dvϦ7lۖCL̒G.G|"itS¬fσMϴOkNLL05SKP3rsJ۔&K ͵l_*R|4J7 m0VdKF5 GKESQӖI07C\5%@JuY vU=1|C.YU.4bWE|fTC0ӍYGԴY <͙Š`5 ׿$Lc"NI6~#8 =PU)TSE}|~<ܚ4DibQR mʳO~]]Iy\\.(W$YA]ӰF6U%^%#e]ۆ!]` :YUMQ GΤe;l,ɕNIL K<eL-֕eT.f8h楂ȤZ-ݖ].=bUcĎ[v>]_VJFOGMu)f(` ^84Ji7 }ckeM?S?=^X]UMN݃RNCM$`@ *m (1:=S$s HJ=HH?4%?tbackground.pngtiffutil v301.1 HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km  L2CbxN ¢Ѹv9ģ1~E!CRG,9|'5F$q=Liށ9%LMd]J\"ieSEBmKW΅t^oW07 `x,27fV2Jdlu1gu}.!sk5u2{M&']ƯykUx>FN0w~=uM|H JJt B Bu' '0.2/IJNsum_k܆/۷znX$pDM;5b_˓pn,[7,$ L \΀  G 45>JY=rՕB.2^Ӡ&"&c $=hYCA ^Q=P⻴*!7B2!" U%eDkm=#j'k~p Fc3kj >0 M-?r5+VNCyrx i3_ ddl~(iBbg/ ;i+X60LK"|JP]Kb,Mq"OKؖ^bҜRRVX2(faq/I #Zrr69or Fik}R!>KM6'i DxChIAHcrjN2g'C'cTiarvVEG/řt^Zâ.)thq)I)ǥ L\ԘJgb4Bqr͙SXr=etq~ʅH"!Ýt g3рNckJjeeUDIgUunp@k~ZSȴ麋3B BX҆wJ$R֜u)K%5MԟjgSji4D;CO%2ȘJ6-EBAZbjk:˜ZMZNܻ`EϬrFq8LZQ7\כbXfUK蔨mvn_b*=(A?\:o}ORKi Zխb[upbtSN̮?m:I-ΝOgefћƲ ϰB$Z vop}4_nE?Tko(1~e)G\m\띭uWZ".]oؐq ]i>R9ϲT.Oor5^cnm=\{JD7CbKalҎSwkqZ#| eTXx.훡Ez[cc"婸uE7 w Ǒ\>P9kvՓy=_<ǖ|Ȧ]} 9>X_ASdΣ;:Ӝ={Ӷ}/Fx դ0{|Q}E|ZC~NOLY r [V׉h*.R匪PPp^oL oꮏd"JΎ.؈0!l.XP"oF`nOFn$:v⎸ybB&|jPvԎY} oOq 'Z f0̐rF+ɬõONٰi8-,C(7 N5 A0΋&ϒϩ&B$?lp :Vϖw5 nwCʐgbkH% xpN1-5| rE 1Zl#Ѡ85*Rǰ pL1 Jqf/?205 Jtߍ4WPY-(Q!-;4Q?kV1ZXp0 Бw%YPq&i" } LQҊr )HПp% r]}i+P.K V2>ґ6Qp+( %SL_.q%R&Qk}?23Lo4 AA%BY+GANoFq8܏(5uOTP6r~oE}QRr1Oj 2 #@Hf->T!f Q= 2aJijWS? E@3r_W0T/9&!؛3dr4kG DB-o0,̯r2?*4ZKS{^2l*N,3y,l L9bISBeM1e.5!Nsat4“/5JTJX5.S; t?Ms3@T2SZvqEˋt[/(*7NP-|,AQg!P/O5F6S6_O_98Reho,K8i`Esݖ)3mĵ]LdGm{fScpTԕaGkKv=I3qWWWYg&P\/g75N/ NP[TPC[E7q]VlWC\֩5QuCp ,?\o_^5w?R֭(t9vM" UnVEomNaU^S#-;ci!uo0ՔRw { 쵁q-c2ye<Dƻf7iv Z t6)6olj4\w)xYQV֧O MD#i 9ΗP"|LG1r=jwmm eW2^zxV՛b(b5=rs6sZGD|xtOc%t )OehUv^s+vrvPv3e+mii^/]^j]r "{v.ecV0Undr 4<؀Xcpt1n18v'd,:XYi_:kU檲Ռ ۀ/lC68pl_ه^)CowqU!k\ FǚE`b|W϶yUonN{bS2:Lg}Xrz+~om#7qØyAH_Yv[ͧ<9 5ٹxyVP58vֳ8U uA>*4~iacUUI~}y߾Kz0]]θõ]i^̸ER#c˞X ^-Z͙ఝ_Γ["8f>U5uX͸ AhD, Ȕ>!ChdFcPX.I#YDvO"Kdp4W3ҩSQJMCҙIKDj}UϪjuf\W`Yd6{M+[-7t]׈evQw#yq;j/؛t.ُc+7<\ij;^ItA9F Rtis=&'l3l5E5S*n:Bk7;s?Jݚ)4^r89Jz^7Ƈ&L{4ه?'O>Cʲ,O>pB { 0PA:tN^ĊKF. ۊ7LS͸hnHs7IɱvJKe$Ƴ/ 3W)Jͳj쾼8L)CL/ <,4ONL0Ol QO+=x-!bӝO]_$}O$vccy~0cYVk pi5탧^ߋmbD^k. pඖ{sۂ^%\S9pk{v[}7nysAf\#f;ijM\L}aEb9Njg<ICh)WDsYIt5DbxoMNZvu5 ;=XhjOˏz]ƭ{_kG_/!/ˮJᄇ#xpw 6f{~}N=@djmq |#Py5 2pr`rNtAK:O+z(q' 3(еB;F~[h.} |VolBt)v+7")'ˑ N_(#c#Rne6$ g6A3 b8?[od:HDx{}F87 o 0iAK:[ ,Zr*xr(DqxvBT,'OW,gj.Cɕ&f-dwe4YWȯ&ܚkNh:CoA9(#\GxӓJrFG< 쓲JcS\(I7Wt4@}fR~H$e脄)h6DbS  *{ [U0b{'ΙG8{K3X2aM-N#E8 y Y8sҚ*dӪ4Dd,nk/PاQ΃\}K@`$3CHBzzD&r5a#ZX+%Icb1ɲ~)Zz;S,#p7cT丫hr- 0k]l[6[wUj9ue\xYk{Ub5kOZof/~X;Ǵ |1aku]=l/ѫCI#/ڑ٪}<Xel| MtmlKrMNԶښ)Й MQ:Jqٻ5aLVKM4MX+!ŗA[ڝw&Ŷ<(dd/>={/N=Ѿ`C HB/Gcnъ,eoBK1dzW2_zg0,:h(e{MM9w~2r3k1 6 d?sU#\U|"e'qd\ϲqYgglۙknWht?߆S4`\նIj{\'.5 3 HߙhWvrd2'kIMU5,bdYmf`yVFwS"-{{qyv`ڹalzїjm͵m{s(;]}0/7l}.;ftf -#x}uŧp%9&sn8=CT gyI L! }hp7w*7j䈃]h[vwx>酡GհqW۳ow:߰Ӯ=E}m`!~O]{5P71ӸR枊}e_G/1S[;{쪃?ֵӸ+%i9[=r05=3Q:3|A |0c{ v[6i);>7+wꀰ k@[K;qAJ )]< Ӽ4ʱ9R[@R[C!{Pbr51R@36=89ɿd2j%CBBI8D$)$aD+I7ɃlnC*ܸMIԥyGd4$P8KWbCy@dMNһ̻'E䕜`O O# P,%;BJģ%J{1lSXҔ мݡ޼1̯NiN" G|GmNn2B,Bet=] NF˵ ${: σ\R;lOTOc>H) :="̭,ȵ1HB.HD#t?#oF3j 9+ 1R@?K-Š9B$G%DdzYHx;/MX5'N1];-3St\7UEՙĮQVUXM:_ά3eDZu;mvMg}`pW p,+*RbYF1#1u-5ѬM ]&ewP\)8+{v|.O/en;\8x4 i]mJ冽]oT'/斦A*‚IgBE-)A+9Bʂ ?O /s°NFjDsDz HrȒ Zͺt{I):*;{һ5R;+ J|;.lLһ/d༎:rI 5Q;25\N45=,.hFKTCQ*tM\CW?p )q2CBTdhDqAg+IXYgelٱչo E0UqKGsϷUMnC]D7ԍ IM3-'~M@Or;85 a/SyMlvnEtи.#~aaثя^*63u%idGم/ecqecSV5cb&U=mMiWgyƟֱD'hg/ř_k{ӱ#W$mM!wܷ]3l%`$˟܆Qq-71X/`!zԜQ-'-\^O?G9^lG\9ywx镬#P陸Y=n6G>zkchT?ooݸ?uos7&L5BqvJCdvz$d9d-+rΊ XXuZ \,*}tԃf σ~*6&Y?H^+&;֦'VMjQQ;ۄ`|I>6{qER9S!aJ^D as} rj07 !tY6I^a~Ԓ C U+$G[.a E?&-vuWTifڸ+tfݹ6dA&Xn&Z=t]e`[g}Ӕn Ўs\.q2 v?+FngG+.^5' ӜT)nΘB|'m,ooɦ/ U 됵1ⱘ/ P9 o.f0bON/(qcNTD-TP;Q pE/s ,`h>5O5aOV2{FCAG5Fu# S8O1)d ' bC+5KUPFu;F9LMbPTSTV:;1IPyK/ tKSY.LI?)e#Mls(fHZO]61t%grbjh OJ =C7,m_I_u_ a4`_.]UVVVs4uVlVGv9l27$dM&Y"J0[/QqJ3g5;&t/0e71s0SZeh4د3U3svIirM%jnO(r)lE^W l`C_u+lm 17n*Hx R%DU)7cVcDVB71+WtfE!V[}Xa0350u1svxT4U#OWT{@S/uaMw3 %X7J˃Tw *  UU)BO p5W)+_1P[EP3TwaaSp37 |a3b5WW58`8~Ww$Tr//WmVcutfsǵg8'Mi&fxEuSGwAu015VC~Is|kw{myqY}l._bZծiVXGB27-=`xȼnWe7u՛"UO8mhWC&qAtY9!?J[iÀt!SGT #BQ WE6%߄ב)'SU{tl*FRGQ}oTecQ#׳_BpFޘ6KrcY|xRX2hT={/4t$ǜXwcKߘ=M8㞹3Y ؖ8a65Skof5W7k8x{`3VxYU+0#dߥT,fTuWoA=\}*յs}驸v N݂$c[zڪI{Gx1ߴ?k-Y9QZQ;hmVmk_:Z9:8j؉Z `]їMmaDN?YM#[YfGIV[=sMw]vۺX<3Z[k~oMWsNhcĕҐ䡚V1xD[%{( }In[*+>OM|!7Oq6\9y.YDU:ip  `Ј4 ap|>hƣ n9##)4~CIɄbS3f\m ̧Z F>Jӊ,uCJzFoJiѸ=Wk2eY;Il[Q;q\.{y@Ѽ A7"6o|ay<.Kt܅9hs7&Q-w[[,UiQ|wGlw]:{wlɽ:ܫSS8͗ZV< .sz5mOc/z>Jn(< =b]oc;b+0PCT8I8$BdUCR 'p3NpFG ,!Lsֵ {j2#:봒S-L۞Ҕ.lġ$M2LĿ#G{V^c,#ypuxQ |;yB3oV?n7Wԣo@FW 1(ݒJfuFWLq&-{/ /.9 ꋔ"sLIѧoP]B4ra!dA(C Omۮ2TEg@i`y<[ {3_"<2iA"ũ劯՜ 9$C·W9Uh5@2(d@W_t}]5 !ztAhխ Q+5CۻeԂN(@e4Za/tM:l&t39,]Nu8ڇ1_ċ $]s.Um](nȣӥH+`I[++]+󢍓F]絠gkpk2OLzX| Y[DkСs5>0ZEoei\9o4h'naʻ4Mt VkS|G:#!4M@xDp;Yv*1ez_h*F`:T)cNl )~pvlx<;%j&ာZ թV1f}TJZ9{"7=dCim7f4~(O02GNN,tH]Fz|[-[9T..j7>X2o-l{.G|Ν7-źbPCי5?U=}56 ok>m3bVVg ã=yƏ׽`${p>ibPȿħ^,> O W|;ӍoA\ %#k CC2[,K:S9=(AӘa::ZR,;B0' 2ż3+!4Y7c m/º4J>Ej%Ϳ=1/B4;|> 7;7}Cs(8Zl.46kDD,HB- |@ (Dt3I1{KԹc2b=\f57#ޱa2ijCU)\T=4VEK$-g"$[7!F<> $6L2 -t?TEFC;cJF,l\bGyDxICH8$sƻ4lh}4LƜvDl ;Jtz+7Dܯs/B3W4,N8J 9C$-G͔+ˤT<@~uYKROE3&dRυB=. [3T>s|Hc#̙LP4Dʢlt]|M 4HbP9m?3#YD}HpB}K#QSҭJU 5ʢUu?J`?"U4$aK[$E#GDcURV UM~KS].OJOМHc2 IM4䙒RvTW7SU6Sn@DCO*B&T=u•iYtTIM{ClY4XV΂+044KQ͍UNu:8,p?b\GJRk-(AVC5+dWO10։/VX<5Oե-p۽DEd̼%HwP]zɽ@PWմ}^u/e[33X+żM҂D?R;Xԯ^KcXyRX[Ŋ\U\Ν`%Z]Iݝ]-g%Iu}^tLev"mZI\7%(-S]%B,EolLޝ-|S a *C1d.%1H,*/Bd+㱩LZU-d;6)ĒY;(R٬}Fhz:htC%ʻ9Ji ¯_finVj\i{2}]8 & N30㰙(.R$9l%A SIN|G QW[mUnGypeOؾ7xgv:\/Yrv'[x?5(%䯦T%pj/­$PԱƉ <0.ܭ,D20 - %qL`AQBrPt-F|Gqċ ?#J,Dh;rM4>.13+:n4MsMӺM \Mn|LNSP>\6P{yK@5mTS8rr-+t- òL W o'k]V,)őaI%Yg%YFVyG ֝fݖĩwEtcx^iկ.tߘ ]7%+902STĺH5] MUVO3R FLx;F. QKS#SE,oW.gNwPӳ7=^9cF?k"YnX^k=e&갎wWzBn<]Z֧r^׻nQзi{Wڗ xjZ^/i_=q=-`-7ʳt~~t:lL ۊ9~Mezs;~&-b]{Om34D[\Ӯmbk e8_\s鱷W.ȫy~ R@7#Pa\X!aA4s.YͰf(_SKf)p;i/;n󌻺x.lL}N#E"؊:F74_e>^Ev/2<'{j|eMF_VбsY2I/9R1 DLX: YPM?W \r~I.Y\KBx7\R9m"䚆L8ra䀇# LuĘfsf 5akM4vOMc7TQFtq^ӝ3dqp)f (z4/ +eqJgEf$(BVܷtF\ɪ2 Z*tI"X% ԰nW_%® 얄U R [.K)ja%1=Q, LvYv*D7YA)v#cUZ&1vO'ubd%F U'TT+VJc5jyVE-~qڇ)ݥ^z{3Iݜ\*+hCQkT%Ҋ-*wh56[47ʉ'mBEI~RM`MU2c1rPDjϯ*f~yydUaP*:^mdӂWb9L^Sf]dQQvURK1FL#n)ӻe, V~J{j)-JmQ+q5#gn"_B pzb4㻢K.VcL5tёY$ݽYw-v4홯.2g!XcVqSWȢ=-Xa}d9L*ZaI>M[=A$B\2KX!Q~'K}Fmc)hQl7"H}H2n,ʕk1uv؛k,۵`cf|4^hA2}`էKn\VXt:c7WbL,nC/܇ta[Ͻ4vRw'ijϗ/䒧孷Yϻ|pۄ<|p]}KVm3޾|6w O}+Wwgk|Dϣ;7}CpK4Aݍq>كMĜ(?\=y~~}lڭguYt(ʺar=qЮwZ{r=[bn>%gc:{ג͔3opҽxeWά{ xSt}C $&OO JfO؟j# BkNO; @20v`QBpb>;.q0ةm#Ro zL,͡G/2ąӘs 8鳛",13s1.s]%?O,Ч4soqrwҠRe4022gOi1{p 6CM7S,C1_/A:u+_31,;,}F> @%,_.<-"*gH=0Ϯ4dEIS"ө>tA4 CqB) 6K?5 i@)S4.o*2C5)c'l Af6T' T,T5NnQC pN8-}tkg,NETZ(Z4.R)-,sT--470iJ*8-Gu_NtB=T'//5Қ3D 5Nէter5OAU ?(\'ynvsKq[ 5GrRa;\pSc.2`/R3`eW1Uf/)mbq %Ic@%/Uy,?J v'>Sr^=N (.O-ZCPzii oCTLC'3Z)vYOM`a_oi"|Г8Mlb=v:s<:naG/ISMnИE5StY9RUJ6 Sa`W%e0m?RMhu?|2USi%hQCNk 4A\jWL KW>i^?]wTL j{8GG@S".[{ p3{z,H>&KacwXicHTֱYalTwU 5'U6}'`TwkqxqQ]fS\V6EYh2t}pfַKU2O /amW;roXt@;pqWv5n_'`CTa؊wya8q81Tw8rz~x$xoSv7Zs%f/g+t(sfw3sxi^wm'w֓l1xS]kM5o)Bv  8q{SG9qDث{Fw9|{qu}YuGet~~Wsq}ٍW0r5|VU٢(2Lj 6SYu7GOvg6h|0Y vqu#;wŅ7k,.ްx  YQ_GUmwzx80t/].Q91XTך#:6-EkcˏV4m6_QSE5KxuaYC9yipڇx xv݆f7S7y[3iב4.6Vc -1y)Mxv &8 !smNyN;nR1`zYc+m8͗6X3:'VkSX0{E"5:MWGCpV\N2C%k swAI6ڦTSNT&yuYV{fQ:Zhgi3i9:^wQ L/fGYyF[#%{x/;4o ZoG{X_F7QOT1Mn[t֛{t|8BA[i2ysɁ%D;rm4uhgɫ5C{h#BiGYӷ ŵ'{}?8wԫY3@z И9\܃ؼ$UٻA' v3tp#:!`!} Cn/\ ڌw|k?m{$ /,y uU=>vΝ㔜3ݧVC>h#a~1 #_ľ1e}eY䙵T;=Q)EgXY=Pcw<>,֯86xQP(z>鯕 {m/6r=4Um9Svzgݿ=Ŗ!p:3+OߓXXt  ?OC~CotI? G@@8~E#dѨjU+F`ti5MZs=M so< L锊|^wBjtjVWUESJelXQ=K׬Xe{Q-=ι/8+ |r5Zј1ӊىL& |e8-g?n=O|yߕ2n^uV~7kN{|Gxv~fYy_m>Nk>* +Ao; )J Gi:JOq?E DPHQ ")52"#/<%HT-r\J63ξԏ,+)2/+kƻ &8MRK':,ڨK,r:,3E;B/L*@ϴ' SPSHAqSM?GQ8cPVVUғ3NXʉE Y$eL,Qy//P٢-F?9 şǫz՜RY?z:w*tIR-pٶS[;i<qVJ{YV%~6cmoCѵ>pRU𐅹_<{7)E[pnDA)ڂZ)z"fq@0 (v `XF4e[Gu뭘Y^Q.Ϧhy։&!\@m7>[}-T1ӼKTk-21w)1j_&VSI6M[i\ιѡCoΜ,7umQoB [rΈڹ!ۍhDTga3OJj9˷LIy/ŤBf S|Y30d̀iy(hA0TqQ)]FHޡgpK(F7;T47Ѫ|JB~:l>R.APJ)G ###*Khers3Oh_@ 4!>]4wP cPf q1&II&4ye= HXdbPKkWJƈlSvhW$:mMA:MiZOqWBlEx>L&h-6, 8#a$4ʬQx M#şeç=G T|ŋz4PÚqod-sJWtn]з湺Nhk\vS*Mu( )tV$*m! J˕1d.$>w{Q<Lj !T3?3@bt9\ go~,EU/Zڸ8<>LnSE7Sk|l~bC ^Ky<`M A!5h~3 ^OQmtXq##CkZ0خ8b뭍PIe -8׌fj;$nϭ 6A)f d>( >;kvZal, \7t yQc(pQpN5Pa%WcaD$ZU;Uo恋 [. _l{o>,V@WdV7\/\io+`xD4k$dg]wP9s@;Qo }/ѪWz#-Ð};ywjW>.(ĥ8#~5ҡ@ypxhu1*`t eYXy0*0iYЏ1ҳ3)-ӬKy]8R\< K77!B * %&+={>C<(7; 8[2=B,cв> k'7>C:sG9?ikzۜBD:0=4QC"a]GD3๹h?D땕7>11%:\H.@PWaw{z@w8t2LJkxbXb$AR 0Yji)RE*2C{skB{2s&+7=+8ᠽ#13ȥѸ C*ǫ9Jg8L4, r&d #<33=ùi>kD>Q(SKH'.>F:霃dO?H4Q>qS?ӗ:JDU\c5$:DcE4RɱE D82*S8:Ű;+YڠAytb2U zeu@q6@6Ce0HMAy mAD:=N3JҎNAuE]5yۯӳ @ v@+8>Hnf8AKd= FJƪMCmD2+dsH/s>ޭTz”3zQɼQ#B ڽ̼Bl~&G|< ȓի̈Gd$|89cM翃ACIO&I\}3/S>ΌD26NJTN\cʵ=k JR#LJE  ;H\EJ;[PPt4 ~g8\meˣei« A67ŲG;uHU*L~Q"ǒԲ 3M0!֕*7ҧTK*҅!elW]+CW=wH0d<3r.$53'=OlNcNF(}CS4DXTӣO4=-ԵD]A;O8TɘO(J*t5 Z\A`A@ƍ bM邶l m1(s$zLjRel[yRm'QR)=MҬ|WUj։5Mw̚ ץ})M&4&rWm}ې-/ٹ9*}58qnՎDCΔE:U >L#N.]MCX\ٜ)UNu;J5C8S]:LK)ErE%5쯹i;<@ t6\e kpb[e<6ka 1+o [tۅq}M t\+]M`GԲѲRZ\`\m#LkW%W֥Hp&%m=SXeD^#>u*3]L OݜO-:E??>T47I,) D횾śgaِ ?"O?d5[VK @/CߨXxhYpp0Ce;ۿ$HMK3̏1:q(-2Ya)LUۦ"7Ϳz),}|\L۸\kavf&\RRfr>%wW5 "b4࿴V&-T|(cv*t݄<ӐD5NKԝ2N3?-^%.gc>E[Ͻ@4=h@si*39^J=  PV%KeeE١Mak{VݽSf=~ׄR\Uv[R^fBAhej\(e &qzu־:w9ݭỤ;HxAT,M-?9O8l&5Bcih~NG\=* ;ũڝJ}/xxu(;E];iUceaiV;×3ūBSveLr^ܑS`ȎjƺGnM kFp卞. {aj&LF\j k͎7.tlKyfl)O>YN{gkC9͐0@g5烬^Tg%.6g4Ke\\#|hEH'QrmiYyUa~$ [h5Ln}`td.C Z #iFQ,nFfd ꦹp. O +.f]ѕLk Ffvm\Yu'CRFtu kAFlfwbI3l4bvcF,h^bE'l>6_$N(hZM'?uN`6GU6^ןp:N*v547:'^n>ylG"tNe8ŏil_{OqŝgfƭI]9+&/@b=, E| p}@ccmf-.+/zPչy/=Yg7dKOI̾t H9ߗ;WFGXFpt`yw̗YyFpW)1~Tfu?az$ azvq_cA@$" ¡0<ĢxOzĂKap|F'p*`l 3p&t`0ZFUT*6?7M.܏?{}?> ?HcpD@pCp=nhF*LE)jʄJn(B+jGQuŪ~(qh蒄rʬH ]%*Qz#Jjt R~2lH.j|4LI2MH $Ǔtrֶr޸y# #F}!HIe|1rqF0PLKH4uP m[R5-pַ-h71wΫ @/B CZ.1XE~Du/`0լ$+YwMpL5v]a>0]Pn_rð.m>};(Q  0<. áP#ĢQLn3G!'Ad?,%Ԧ/1F$9)$ȧxGh9DAQY"/UZVGSg5ʭv&Z":֥V=e?P[`}/xY`^fsYw=F%{@pP0  @ m{&[ DT2 %=.R֘!r)w7"_9ǃz<'lܪ?30[@o*<0S/&B1C0 <<-Bq iJ&˲G"q↕ȩT*r|'KbhI ָro,K̏3L1(+1Jԓ4Ļ4JL5+"'r\>Oȿ/~ь+ğ i{2GuӔ=O <yk  kdx  +l܀ ހ` 8KIEZ?l i?ŧB{j=lķ ]Bj=ݐqSr1m^]]omu\ea-ܑ^S߆X;{ho1)D2rn?JӄՎlTK|} wz^oOi#ޟQјnOZ}sIvҙDdY_gHQI9\PTڙ0'MW]mC`Qclc5Cxvo"DX8bdYq 3jlW.Q'0T`Xe,\+9#c[c.-&|Qz'py^:ڍq^ЎW#]diw&r3iX t^rU/h]{d1AX CG>h- ea˔ DkҹA=1T2@W3!T b&Vǖ9{4RjMqMS %P'E?{ce km5CGTPR? Pp H 5d@ `܀S~X(rf}=$nwr# %7kA#)Q4m y; (dӺeJ>uڈRѝ.BMikԪj+=26OI{p%;wJz[Po3ޭlMr2_݋"c_*H~ bJХ_[lVOYt$Xu<.p?r-w g=m=2c+pp3FiQR Qp)XUh"ʫW[>EO .c7ƤߗCX0бUi 5ٻkOuZ9gqjy{鮜]MH,yyաGZL6X& Zv$h )`>"[33&RcFcÌ g=pl45mS=]C `LsPG J}0E ͥU8p8@ݽR.Z5S MW޺~LhyڵJ9 9<7h̤ϫZ!k9W^Xtyz"n [~!L["lĒ%Fnove6mG1x'.1Ҁkt0a^ـțl̝irjZ}=w]ݿXz;` >]1,bd\IYj=FU㑺^^"t_Iš uT}7FhyOt-VJ}p,v/a[դ>V~ u_/S]tz>auǛ?Vd4ڌ|D.~,_/"H-Еۯ,+ON)0*MɓP<ۏ6& #POX0p"!r! +CpGWN<Ϯ>姐`O.q ϜLrʼO u̩K.N ,({-6+b hKliWލGMki6 ,8p?Qe Nxbf0,0Ao$ Ћ!!5L6eb%f'&D!h󥖫 ?%+篯N / AQ)!.ӥʫ'Hr0- wM7"od +Y$D*&E&LftPpZͺf|-q}Qv*nM'MR:I<Qѣqf1-ͬ4n6%b67nOX%XRDD 0HޕNN1|1iW3K3Gf>l(/'!E95'!{S̡2Z2k(S& N%у(H2-&q)k1*2yҒk- RU;O6 &qQ.?\ᡘaja"5 .Vej6R8%j0$ǖ1B֒ s 33s6pDI)7G"03#%5k)-6_.3x&}3=2S&H#;4*$Mܯ2@(Li<fݰE;=(t5O|iԹ)s_RNSЮnpAo)m҇+O9d+,2ajC--V+c9szRaT/%llXeNHsugVPZ,uOifs/Cuz4[WE3N~mFa "Xt mG5VZzNԷr)>jf-+k;Įs)ҎٔKmqVnlvR|i`o: 0>VL[a+'`,`fa-bW3bsEj/Aa +(vRs5H#*f6fq5nUg2IU WWV׵z2H jvNQwL%g5|ݐ<\2LWZo~Tj]MCnn3տt8uO'O %O.-r3rx6G58IyH1ARaqCreV| Oe-jwcJV{ط6|4WWvfnvՁz#2?Xiwxuu]x4$Na8[XՀ3ҫ\X ~2W}7~onː|`wo q:  &Wiym氝r/>A?12۔EeBR!!e)ںH3v'2k YfcfNa9uٵ 7UyVi:wiy}FJY5GZ0$Y+k:7l E|l}s Ϣn3pK{^/_KXKW:*ɐ2%o=7>7,;Q'?zC= c8ZV_BÍ9k33CUlh7xbiyY{ݨ[yJhɛ:WWX;eyZYùہl=ZǠ!չIӠs}X7ҡwYD߁ԭo-MNsܷ[+Zk[&85o19QA<4!!AH1wOu(ukrB %oryUwsv{UgeFw-qYXi:ڿ7[pl׽,k؜{՟:x˫IƘJ:]T٬l5OX#<$=w7})<>6=dEAJl8u@s;_vT3qR=yt:փh|_iڀXy{!}{Xu|z<@<L<<ϻղ5ۗX';se]  Mܙ#^z]͋q|`P'<-}+8ER5'R 6Dc\n*/=F8uD$[v]ֲU:o[f}{X\}u:u;0s%"}giR7ޏ=׹6ݭZqYk}0c~omQ/~6š9k?߼NP5E_!Q@ A4qҹg6+h>.P;w13{J1I}}ͭ(\|?A~[| !$CaT2#Ţ09?I"~?_S{=ޯ7v9&by=OEQqb5 ` `T@p  c@0 mA. tb1@`ؘq6^rZ&G'frW RL^!iuVpuu_Y;A"~_2XP]~}y Ay KQ>_[*/'>, #l"P h ' p BP4 EQBN1VF([#$L%GX& h' ҕ'I)JrId꺲,kbе-ܸ!b9i R1N"|8[OYA9Ô2>NuTCwKP ?Ѵ+yBR(J-?7C:nEQL8Խ;є} WueT5gMQ1T!^t ïj1]dVeGpOeh\O<F5eYQt^5pCqƐ]kvްͿrt$QE HIJVxY, 쭓dFSei|)ppF J0j3j6P N3ނ3u;_9ãC׵nCX3z63֚/HǬZ~vR3mFqu\e}o--GUHvW8]t}>\F.UsGO۝v%yC7gw_E?Esu8݅x&OȸܑdI}~hnrxPWJh,VZZ#G-i9414Mƶl վ)em!oAP!!m=+Fܡ.捼B|aU)WQ~YJktKFmЁ9] ^%> x(Y7^Q](k4 eXC̎L ݽd:6uS\:FX$BzhbAvZqRHQČAJe#{%<+p%ԣʑ2!@ |J>*L!ii9؝fyp  Rmq:% l1n͙ՌReziovH)aҧ.xNi!j;&ӌpQ #IDX<ů%ޕaV2Q:c\zsѪ7oV!qSaL`;hh]v$dM(Fź5Q[bvOJ D?%$vA0{ՖVyhGNz>X:fU a|0`ilY=t*32+i[5:7챖f[\wn]k ubթcy2B#dAMnK{rr^S :w[>mVےo|P;8M4q Ei 1.4#;u\J_{{9Jѵ)/=v]'-wF~to5+덼K5A M^^RrQgu)$R~ǐ):;,@ x`au0q8B_1 @Ze S{p8[&,m *H3@".[CC߾s4v>5[> >:[JC?"*F3J>3)ʇ$}?{:ux.|E@9C#IԇC;đ>슝E/|C>B#5\>S,VK0,K뫇Rh%4LJ8qP`૦pE63 Ji6٦r06GLuBkA-',,hAdzFrF,PF@ַí *#3 ۼ{Kq!WGxFds-} ߸¢d/II䯪>GãDQxA?s|<4$܍>MS*lc9C򯜌N4IkT͛Xɨ~C5x"0JDOb9HY2T@16Y8t1aA$+/ACqKB<"LkF!Ƥ%.K| $P83$=e z{lvP놽YL1"kD8 b$ĀLND>CkCʕM9ȓ9dHCHDR{,A;M>{E5SD)\G 0IZP;0Xz@@*%l}&$҄QNIQkMhRR(kV3+Tք n׻$ N A#?ӓh| H}%ɲNPǰN%:Ta$K):zyI<"\a.Pt%J`@f 41T `@F 0 Tw\,c,Ks1UQaGuQ%XQ=V˒zTyTռ)[JGE P-KA\cCCc=erC P9@:j9EkHlD$WSF$amfYb}^*LɭԤc CP dgXEwX2H!|UŨJLKDjiܑ8!dmVQ&He56mlYڕL}嫽NHA<'ۆVUǨVle]Qf\` [f_(`[gC~bCJN%#G$ W ιlt4@-qfoARu[BbV[wW/cF4 ]V|9 ϳ=;4* XC:˭9S۴?+į,1d@ΛiFZUߣ2+sԬK 6F|U.U\KXgNVum&\\~ak|Hdӛ*Nkg"UzѬ:n#o4x]|Xf(ݻ&!Dλb׉5vH/xC@D8qOPe٪eKtoe5ZdoM`j[cm6dis&`! " GnV[oYKee>^` >`| NojHQfgLefMž5oWfaE' SBEpU lR&dRZM?BulUq-6x!\֯GSzQ k]B6"^}Bخ^^ i5D6ɨ&>W.sn9Ksx=7fnEs j@w6C5e} rWAOBj(?FG?oetjf~&֏GP?\y}Q\̈RQ_OHZuOu[M"bI$^)"5SNُ5w@,H@, e=JoctY7_m6+/Ppxzw\w|Bo3BZx6nwߎRxLgʡnLsg';[>e꿍t=olkYyQ}aDy'zWdl\GTuI,.?Zϯoס.slzE_5 MaL⋩:N{vjig.&P @4:" @,\ FQ 0+L_+e97瓩T.ڝ> >/=<k+ #|Ի* [(î% ,'~~'{zGqv">C2Yn)s@ PJ0`2D2J$)TД%#޽+ȵ7̫,91&5>PM1LgB4+PPJ DٰT?S9cEm8 ENՔ}=Q4͵JV,g\4mY)N Ӎ>q+dA(YO:pMOYV]lgoEd =n$hPgEQMr<NZ]v^Ven=vܑ%~>׌Mwx]}C婄5`'y⨰F[dGq'{e'!i*Ԗ`gQq,6:)F3TИM Q7ҍQ?BR]_VusKT;>,=3` 鶯UM$k{vͰbbQו?VF]sZ\NM^_.<~Xno9d.v#yCJQdk{ATJ*['&?8g!S@F=#nUйA <\*1-*Zs^)bcΆENXB;x>/=dv?!Luك>WxHǗ!yɅ\M2^bU&wg YNOc~@uRd#@Pxu#A0cćĨșe.q!%)TOo=hgc_37C"S`RKKMLKTh ^SAmɈ@!#l e6R1?jZ<ؒkpB'3Gp3b[9 mCB6 ڔ͵GvtPZoi8>\0Ѯ40t_Rnf,ebYFYz>T~Of>1Ww.섎opH ݒ0ώlRK$dt{FIʩ,ϣz-eD\h YTgm05?K§:PЙh"BbB=DUߛQF.4jвvLx\`p,n¨1,ř:F0~7o:7Ucc~hæ8lgBq5r_Q J|%~>DK:OfBc3GMQ82 :N;@QɈ1,Ʃ YmExN38qMo"\/lTj*.@TUzTXIZqZ"u>ݻ̍4~2rOV!L]ث;0Q]'WHJKUDJRh̲ 4k 83d" VN<r@8Kcp3Gfms\0G!8k+ϻ^,kI)F@T1>w;TaԜ mRJPojZ0(ѻ3ʩss̻OZ|%-~F[RzzU*srQ]h#Sf Ռ_6Y^4Di8d^X:N;v Y~VI%V 9u}]y뭜pD n0kóYCZxADTdJor4^Wv{ٜn 8g;mnїUCϛzS1>;&Vзrfh:/EhOw|m櫫jft42zJ NX#$KSj}YnJo+r{[V|E4N2IX$5@ {NU2C u*0:0.v2)o(ї6.lZ4u9Iq<έ YGQQ'+4-AHl&-2<ҝ/-ޔ)BħT>ICS!2e!M1o!M)!:cT0Mqj>̯i#M5TOs+B+4>@=bhm9ҩJSt,3;t70|~IN0TTSJ,PְN 4sT_TsqSqFX.b/T:1KYSY'@MN-0MC/{E42+.& O4M # rS!0N?u[03I[1[ B%ZA 1K(!ԡT7KTk- bv..dUб8T s <Vf8XԗSuXqUYqg6uRs/K!Z Qu?%MU U@x \uԤi y!OVt-&gOGhMPSXo `w2nX-SFsWsfWf/\66ʯ4{ HUUyJu,STpwtwIYUitt]0 cwVQ4;DQpAWug!p+O_cA]^5s-"P 3Nmk׌ !O`YKw( [EПHNF/tn bAYwKVPVFڒFӳ|Ww;<#}vMb c*Чu!_KwIv'Z#66^+n?uU0T'RJrY"8*u yt)1 wQ˕jxc WUU1o3o-=IX03Ym75 3's6K|tVnSiWꟘ׷!|'oHoX8q8gt P֣xiLֳN˭[W]my8L]gN:E+w@ui6z+vxˇ*g\%Q A;ryf(RRQ/} 0zΝy>Ҿ=˫|{jbV'f)S{8({e >C upK׿ )Wv/Xˁ?#щY ;*y\K=eҽ$Y gZ~i\7ފ%A~A%y^=%H].&NQ]1~*= TV5_wS?%?P{>QvAb AH<.aPlFE"xJ9ãX|ɤRI Q,@IlB_#fxnk/#^EQe41JiʅFUSUj}fW֫ d,%hڮ*;M]ntu_ZX.i+>i:@sؤ>K\DP ?B\PDZ+ cW4. 4M>[0R}2 GSZG Jj'32rݫlvJnF2d*;O/E3.ƍT67b5S,1KS3Nkh8n,,?0COET :Ԃ'E42KIDjNRnNh T}J'IZ|1T%X?ãFDu\AWWUVE[C&oygXrDÖm32D3$6Q{93Ow$nF4 S ˲%Io^,1w~ oL}\4aU_8]|]NxNsKmT%+KXukWpL<ϕg։SW(7cVyAѺ{fe9T5:oYVŋԪ.VEkaE;Gv:麝Q4gnYnqEXn;pطM'rdn\avU-=LqܤSQȶMv}==tvOxK.V廆_lzglRVDrYogUhͺl iwŴYӫ?Cν;=GJfLv܅3z{MG`co .yT\+u).7x*LF4Xq0m§N0)2]iw1v](u!u*h }i!)!_cx^Dx)̣R$.>gTt:\9o,K.IdKyS2Zy!dJ1Ml$ӕp@Gk"E2#42~?!v(cc͝WIsIGmel.y }s (Co7%d k/֌JuGT攴DhnJٕinNRS[LSɇbWU0i]Q)>1:e})PTP\؛sX)ާ9-η(hYE=TU?Ϸ]Mv=L7;#bT*Qh{(rjJI c||tX@6#TjT5(l6 ٚ_l`i\1m5ʾ)6 B`幽yK-ڽU]J޷U:S<=t0 КҮ۩aS .jgkKѺÄq$kޮQ$k,f5ZZ%IXkѬLz2Z;QBo٪&9H"읏g:pj[FalkR-{ݧ8Jpe@*欼Ork Iȗ>2HݴBUk4i7VƮ乷"MPW#_ QjG7,'A(aҹלLxuljqrZjz2%o:l1^[V/kpEx JpX#\՘Mf7 \7W*2nv({̎Vbpe I.cݛ]x:mqYpH&sX7 8 n H =YCR{E_x#aZQW}?Itu!? q qbֶ$kͮ|;KcۜPjGذt\e番] ?yfs:ΕZ6]Ss4vPr1?vn#wksU=1Vejg0e+ { Y?zC0?oGiEOA\/(nIT<>B8ưK;9?A;#Ÿs̿28[C\!DL"pŌ,TĜKwxS5{Q?<90T0#1C|;C34$5+$PCyǃQ<.%,,J Ŭģ2sbE\Qڵ^[H9gEE| ["3{h2,E2I'$_: OD)\+7,eqt? /0ǪGFu;)pGT6;L,|Gt>;ZʄASnj62d:"E]:DĘI[ IT#|e3fIF~M?/2F̥I,\1$J4MCy0̴>K VdНv;APT^[- ̰5F]XͼCM>8A[UWXGRR\|]%cҕĺ>uD\LLLL5;{]\L<.eBjrB]]Bu=,cщH%3^EU^T}Vm谽G=-MbIM|G)4F>mBhZ(4 3MdڡRZJbu De1HP\ GMgT庿K5W^([Tv"jJ%_VTn*&ai,3RN/܎dM$,`9>5l\]rHlETV^q2nI7f1gRrV:N>QHr Jö|,g/dX&%[agb1[͇N[CQhlJ_& .^.1eul߲dftYS18Đj}qjFnݍjdRdp]gcjjTM Ba ,*"0x>%B1Xf9C#2Z?!#x2Y$!r|J)NsNqCCy:=ѤTiHfZ2Vv>)%[fVʝekv`pX<&b.&2d08+j1XxF;Y>[E;>붚-{oڽZpN'k6o9{g8uWzU s$«$ZAP\; Pd"/ Dғe5ᔖӓc^U5H5R};>8EEfT>duF qo( CYzMqfBZNj"" Y5XEΙj=Ͳ%pD2!Tݣs66hi݁{&VU]^\Occ'aa\z;M2+v){噧5ٷ/eɔvW+dW-ݻ'aF kdMɲ9lSjfI6RvN~ջj޶[歳\$ev_2:lOqߕ|鹾_I+7ד_,RH)Ĭz,Z"DfPLŸ0C@Ĩm}L7-LJAtZ5*lwFsF$_,eKWd{]R*!d2o4&}x y#QId0JOI ((䡛m&B.f3bcK)[4*^Ӹo4LYӽ>1K$ɍUI)y'E˾e[ *n9cmj4֡kwTś W[RcaQ;"ͻqF97^e[k2kpYxVLvgIiˠ ,Ԃ<`v PkpTY P%t N3k uV+*,+h}%YmrSTg9Ր:Oy%.I7 -7*\usmź6]n:3i-ջQRӇwv̏4ߧn[w9V*1PZ'+, Ep0yO27}{<=ZjVg.G!UW+8V[ U1c_bd-vebnp,Ude3%ȧ4ǨlmbfoSN\r͛:](f%Ћh&GO8Nq~TRU,o"i¯'ѩo*#~5įW)CIyY@&w*'e}ج#U{+RѐB /'BË><oIn9PdjnLnv#D.VnNg&*c({9PL"=H:(1jwNۭR\θ݅ kM "C P0Cn  K6 Og// H00qpH%8X1o` m/JPĠs3̌.% /-w 1ڑRVP \Qo+Α*OD l2AQ / / 1h FO 5 Gr0kK ?հP^,ἠ*.g!6qD找o+ekc˃ OtrQ!R{"[#q_#ihKm*rE j[ 'l9 '␭0A(p(-2})uo*g/,'p',2njYJ*7-O.2˲=Q04x*܋%S #Qg&#)/ %μ1у?O341?.4I6sTp4W#)Bp3!$6k)SwD0Dh.1ƺҙӫ+oA8+.Q/+"g-:M͚'O!-lLQprګ</y=d9r>?>.$HLC$Aq4p-22Vn ( 8Tc%6t?>lQPEQr}G Y8+oEtsQZc䢻03GDHTsʭJs-qsEɞM;BG/EG>ܫK2oQ.5sXf 54@s7& t #4PoO4*}ѨsPSFR6/7/QTNfsR,]EU֕,KFgFQtkq;,rRR eHCZE.M9Ntx k/sGWuJ KuKY GA u Ny&u]m)Zfpc'ճ?MReMO>dTг_PU [y%5⳩C^U57K/iCS +ְ'=7$m2teg Z/hvh-6T\ ]4#\Bb6]of,Uk7VH)SR3"o*6 U1,TL.O9bwb;SI .idzwofX5XW!jϝ>-Ot?rsvoM=K4pU@euqA't ֛1KlIw# U~r! Wl5{U7<_yǵ9I}nxxj6}T-6%I;ҵMVOn2˖=_wpqh;~W~hrh-1m>X[4&xNgatOA3AчhrMmgU 8xuxO^QyolL_˅Ǒ v 9n3_P V'c47}.d.\UK}/}Q~vT vGˌ9qel eNMyXu*<3XvuhVak1[y\wGkWńo!4a9y+l*yU9^?f~գz:܊IXӽ<tet v2ႫS%4y\7EI<72׍³Ѫ&|[k`A,7a׷-|zm9s'yW/:+IY2Ї$˷ue|s'Ws|$[ʘLտv_Y4!}"X#Q7\qY_ŝakcE:U7Fy/9W[wS:ΕzŕXM] f%\VP-b+[YXXA!O7Qsߴہ󌹷o{5N|uWJ| i\ձ ټry9MN5*EMaݹ5"Zaw7zz~]8=B[rw¥"g]U[PA#YLSKw>GH}A7 tEܹ=*k%cg1c:ĘWnQ_=VnP;'s Q#  ^5ǽ^M~ZOٕ͜i;V͒^ݛXc;{cFѝ  ?D ¡|.!ш4B-c/ԂC8^O,JQIW)D9-̧sDf (IiTjLޟ TM}%DV k5t.֋} j^o7%|vˌ/>+]`sk r|u+h28M-k}Nr6ze#o{ q+qsgQCSP;9پS?_wkj[*siBT㪽)OjδoLЊ*0@/cjn L41[H1;v7<7NЈkoaE\FѼG"8 JGszȲmI5KQܱ%I4̳f̳3lMΌg Қ9Л Ot,0>ЉK:/F i Mpʋ ҉==UEQ/$=XCUGZ>T+R-X1v/4rtJ#7-te!̭;#SEIvlvcvąnWc[̛(YN*vҤ.N0Yw{o,]6_s;axf:G4+?Et?P5uj8V5ND)cC,eP5VCM[OzeiT?vF (ٺi|`,FY:_N8EZ~ZF]zĤnUl j\>ѦLF5^:a3;fS-y^AC}/EiNt+eYhqR4ۗS=7b>>wwׇgϥi}p?7bVZgf7e_cr0:m{0h ˩Ƕ(#rA\#D˞[t,^=΅óV3H^u2Cן^3ym4nJN sS3vD%oaEu  g`w}ˁڵZNJ3h#"1kA<ܤ+ ' `w! E8t$+(땓>BiQ*NKNLN'4kyLle*[I_# jQVZa1"#cg.bl'jm(řyOI臯N1F(^F5^U26Ʃ##W^rV<ILOće!T" Ց& FA\# 475E 9@6@eU+4T3͗32QTpZ S!~zZDTe>>'̒,5@Ae`1, JT4Ut8#(z@c8ȚGgN@Y5bmsMzlaȭ2Ү(nJU*m',M fUVw:V! C5bԊlڦ~uE Zx-_h]BݪpJP!`홱mvAKg=w&ak4f0 I-[Xf?Z]Kjӫ=w:* ֌u{3mwe˛xo$z\y+4yz3ѭ~nm-ѽ 0&eI٭,׈5u{7g%V&Z*j(V JR٤}$F,t{,iZK 14Z?xE\*|z.5X1ƣR%qƭ;ܣZZU/D=RJji(W .<ۢ+3t7f{0nXc?'p,hmCǝ#}s(>7׊U 2ƺqۧNuimșޮ\lyr2ʈs 7YKeݖKiPl8տGdnwls_طVsa=OB@^xWg|a}席 3O@lIpvWhi+|_x}wo %Yu5,:= wwڗ%IỎ.;sW='->9%Շd¢:fۙP&j_Iu߃F{Ӿ>{4o̴kwNt_=Iֳ ĸ[IL?.9e<=9I"5 9{Ϲ5d+"-K&Sc@{2 8k& e*.:h:{:/ 3@7rѠc3yۉ8s@1?d<$8zOL?J>CcC V ?ȝkǡɐ_@J.Ó̹<㖵,Ct 1 =1 [6Z3ٹ:)ض=xD+.֢ @/Po4kz> 3\N? $+vS'h7$$$0;[¡arH>QGE`M?[qAw¼[1F$;%597*[2*C\HA>+#[ѽ "22)CD 6C*C QDk y@oA3Vb mDSOEPdQF#8ECutVAh;V;L"ýA)/WEKg-*#(络ɢ(ƢGK354*UrA$ Fq4$FRdHӸU>ǯ?+0lһ#Ft+u0D ,$SPTMҘ} @lC:+ӫJ<6M5t8%1GI=9=M9фͬ:%DMNQ.TUNL=1= ;%'|Ȥ$ɩqvӀº+L;>OO/:m6R1;6A7ӄ˓k=SCУU,Jj5CǜGБ6 OML<\)GN"&CάЪ(Aii@04 /pz P/? 9#,sEocDq|oFq} #깑%<2;'p @7҄)2/3r$r#W5IC2399.js:Kk,M:;t6El:0 9>HGS/t/nA\,pP* %C܂pD8׼tpC(;$*c J9\S0>(OcNCVd9ieq=(j̉rK{:"hc F6w"V ^NvlS^:Myn~S;6匜~r a\ Fe(G?,RqtB'Ęa1);HP^\/.jVi*atvZ¯;s-,/;w@D=8o$YR-gF98ќ\-OWg'9NSq:$WI2zz#>[e2CWtIhw5>ԌRVGCM$tRQ ("v5ٷšm|qPW*xU?jD6U*HLginҭMNzNICpwmb")VV]oE鏵-J`S]wyP*^l%63/,-՛g섓trYS<%|,b*BX`>^;khŬU6k0g; ܆Yۺu+S].jU9Q_ivqN}-:o62LEޙWQ^;y_PYo-s)<7``khַ8h吥gCcQ>p&8ngK!s7>L1EHb܌#,Kwia++.mA5!ꖫ:V9Yt|y"8E߰\ysffL*gfɥMHkT[Ch.vܬp R~:Mh?5Ajy~*Lq7jzfhwxeU"߳\֭9:,kTu!*|Vbs<]ܷn&+d~Wqf3&歳 x&58ygO؆:ޚ*H=bp[;A z[ 'ZWpu.+O:R4X7djY#.xbx}71w@]N_X2<#[>kN=>~G#Q{Q!t ={_w ߛуg;dO${kζg7G:lԆsv~p)>{Sћ>opo\wʈ؇nKVgvZO3,\U tEɥwٛt wglLY`#jvɽyś/K>5-KEz|˔9'MvKX]2':>CEqüQN Ϻ7'Mڹ5^Y]\2Tt#5Sy2>A~yۧS>1F 5-5K>wzi"A!]_Hn1gY *PCm/զwK(?+B7!͚ǹ~9sZۡwx]}Ik[Pޙ_ܹ;_ɥ_AU APHD. P<#Bb1X> n%I!9DU%y6aiD(oepZAhM&(C) ]QT*jXիrJJMXkEGZzo.{=H^-wWpUU6&L_z6kD<{I4ڝLރk:ίgL96q#ΤymCK7/U"?ѣ2Gfq{\s[̛z<ȷSI鼶"Ͳc(,K3CJ4@/l @4+2P92,0l?1#-ElKJ ƫ,d4L$A)MS'ƑHRTI҂m"c)J)?5N73.T܁lol89S{C39P*s5r5yt1DGpAOaREEN 8bR;GэY# 5 ejXՍ1]DZgMLVmHݷo[*wvLĐO{V]#fN.GocEX >K/wO<|[ꇹ=h'A[UuXTv;U$d6ASMX_eu]fټ!dB6}lVYh9GyMjkZU\ñlm\K{WFنL3)RM}8n!{^21;Jώ1Qϓc<`?b'Tf_{\w's|^ޔ R;^B ahZ΃]:.Icv ٬[lwOvYiv헩EO'36nhZ{ðo=l<<]!$_$Ϲ 9='(;.¿uJ#** ;ϥD HP4L"iؼ>^{ BD!Yg,";zace- 3 ӥWC#YJ&=DmIMm_[u>c`_RIM(5ܣT%:w.bI e`Dm`ԉqFqoE?KdP#÷ax0HXKJO؎YBF+m ǖJRRTr\IZbB"Ӛ&7H"TlI(Fxs̰\S~3x,ڃ3):c`2G*`flA%I,ӈIHh4Pi̝|feT+(IX&$K(p΍Lr&(3/^OKls^ PIgk)jG( [LUy%XjMθ: lR:t3H1Yy炄ךm[삕q'b%6c,D**]l&h쫢)-ixdS+mJ61|5%Q F&Tˁ6DݎuJFwַ`W6ըcs_sF*4_}1 u4-7rs7F)$*VNZD-ue;+c& бPY[R,Ѥvb2PN'_CnHmv(ۉj&sBݭpnީ{7N4¸jx^'dRwϏpMՐ/dWBۯuV^N['[%dn#hp>(e{aH귦,O ,ahPf&L\WK4DEKR1eMLkt3%ànq s];o.HڳߘmҨelq#=G3&YGT787ao酌GTnh(%R[}g*Y%J1itHYvtz{J̝xk-=w. rXʺQd8yNpݾ7Wq3뜟r\R;9}.c t+=!6 GhO:"(6$s*:+v}Z`M0"XFoG~t҅o8O oUn6$e'OYqkS_>s{YeP{6rM3PZ<(y=bvMNt#*uXD.AoJt-̿yvm}P}D(8P3t }l"m<[n\KLO6^U=go2ddV~Kǧry[+gB82\ :=Rؖ =ťk 3{q0]:{;!;Z;{z=:2=c>ckD!#̛ @:s?G8k< ?s"+J5R?۽2>r?4Cr2cq<64 \ JRpc &\?aC9m0- D4+v>Bs>3 ;P>{# "ِ? >1DTxDMǫG>-~ECgU>y;TV[% TZۻ[YE<^F# XT46 [lŌi9;9dI21+bt)?[;JHDܯ7O!;TRdS˃&\$#*F;?E=#PH<LJ|K qHLo}L˓stஜ@DNN L]#I#ŲkILcȗy.cN5㌿̻@zɘ B`ЈT6A8B)xr5cШ̊GGt.xW iLzy-OpMEJTIME N%HG+vON2,V9UdVKw+_,a|V# 24ܞ2<ܱ773+t:,u[#gm]D+7sH6]k Ki'jMᴻω}>vǥt8x,\k)hK,_lXk 7̾#obot@zT ژA .PC? t?DpLGLTZø1r0mtː/q4*GȎKG2j&92y)7T%rt4o1.d#6Mc9Cp³ )L.0販 L-0;ooCte(F+C R CR/=FOUEIXu&DrV`ͲY^JYr ܯmg27̖i eXM8s=:\}\cgRN.4NU_S8#B•[ U*5Q(]løF3- <&A<^Lk[dx;09]Xq1y~w{s6aź ld]-4Zr[,&h5wk-/ؗM6m33vzȗš}j`uUᙦ+fYU!UmtU -tXWCC]a/?i}y{8X[{/鲿mk l0:>n:rN's)ꞥsxۯ||#/:Q?IQ9WY/.$.> ;#uYR$}]?A`u͙9 .u CAy#Cj]Od|tko$=֍޳Lmn&?Q{}7%Xo9f:~.Ɔk2(N},p(U{r9ǓDsBS'eWuW |P B>͘+iJ7Eҩ+H9p%4R}xk.r҈E1c]EE0_bjO<ˋɎ5D٠fٮzq\h \}+LA H7:R.O] I$qɩ옠PO%d0nIy %dIOI gAQE<|:ty<9߄pyM#h&LNcK("l]ĺGy2т!EXl/Js4 +"9F 9L>~G%F INKܥgNԥmI[s޺8hg6X ]*UkO촚rK`NE!>_yU->65HS:XQO-+խC+1I^1 Q ۽2:joWNjRm%*Y-?>mh. 5L3\EḾ,\n+*-ÑٺiEHxc(Mԫ"*9 jH;Fr]'JXȬL%_u$<͙aF/_)njfFyY]qJBZK'n, ¸[#.MU߇{s60@VUsYuܫϐnLzHQidP-vYE̮taf,sP`,44V_~Ojb,tx>g:Y-.9a 3/-54V`LPΆno=FSDu]ZOܯ atFS)c3@xM_7ˌkͮc_q*v9MS_Zk6S#΂x;l6Џϩꮑ'FGk:Wwv]A4 :_%3f exFNϑ[ȔԔ oU;.W;$Rw˾Ίǟn:~zM~?}?S&JlGjD~^)ݽ{z|];eH^^x%'~.wӻ޸=$j(v`-, y'kQlOx\w*.EMNOA+lꦢE.Z\jjG&o~F|P,H)-.,:!OO/ LMP$od毰cN8ll nhALbRrNB /5gwLGKp>ήlt*-,[iĉ![.1C}nP -^$,ի6 /OǤ p0"Sl/0 0FOQ'| ν#]OLk8nk8 o!3[xFr2PSA+: 5/Qt55,Rgn5'E5O`l7W?sU!V37Ai*L#44 YUM4'Ҋmԗ3-bqcm(߭{R\P F -r[ I'Q!9ufbJEU3RO;t[[N|Sw(;[W_Րc3sy:o@;?N<4:UF;YD9M9#rgkXguu+Z<\=5/½{X[}<\Q|?|C ;yVjEmxH>kQq@-yx={ ϳY}=Mv#;eE{^Տr]%W!z;ᾱ^~'_ՠZ/^EHb>[_U^!_W%R'}ރuT6{={AK2  AH4 tBH,j"1>-c2iG)I)_3E%щu9\5L(tY.8Sh 7;*LNYQ՚"Pi{ElX_Rs][xo{01`P}T Ltҩ۝Qi6n+ZT{jot|gV;=s>Ҥ>Ȼ:NP+AD P+ A .CNJ «>5?6;E.XEJklw73Gmo 5t~n<2R"GCҷ32dF幯г*?)kΊ /t6> $H 4p={IAP}AI3 8SBUIq1SÍlE1dI+s"2-ƱW"]&֕ܫ_H=xV՛$Y{*XM_6JH|/9*>\B3+sr7@ 9ӷCO\L)Ԅ,^ԽQWҗJz`XSӞ1OITACTNVP[bGU,W.]]pe{f5X66Xcp>iəuov{cWeR6qhZğ/S\Վ_>O:17wm.CvSBkp[sad!9d^-QhWD6=.6Ց˺Uiguuݧ>zn0v:;_6`}mE;P$~{?5XpX7تC9B;yr гdC`xfӮ"|ѕD[\XqquA}\lpMsp8H'`N Axz!R vr&<6d[ n#Hx?jɘxRK× dNI,!8nAP]~V 3bF6IS F⋒G4{xѽGW $R*g;8<1w9 #]rƮ2ݦvt { lGg,]RP#Ը9{k\]5J F=avv\P[#RoVǛP zIyqqV+T0O,-A%+e]yx~ď/%ޯz^QzB]EW|Dj6lOeR:|ٗ4g#6Lj?amO6ۛk8O!q3JJY 9x]:{m;t˙"RcIaAǹ(=O-۱2·D{H_d9#΅δ誃 M8sr`gͳk΍5IE(%^ޒΠ;)Q6HܷB5[U C茪\:4o]ȼ_}&G:lKpg=fm1Q1&gg9KI3vt)]j׫BM5|viG$:1Zk^jF|7aeMY,'_xk(]_ckvܖr{!7>_U#8m//3[JhǠB{[8mofᇹ9[O']^rw1pZػޟeX^ƍ=|g$5㸝Z&kϫaG'O9g?P!z=30{cڦKxBὡLӻ@ y( *KTÇ,K8Y/K8|(Ӿ#\,;#;Yk?;ɩSs*[9B9ж4D(*4jj#3q9=oL,= *KsBGت&c4l:=9>49$گ@;3N8 $Ak粫~]!n><3';k2/DJA  8 A0\& !Ј2'"QXtƢ9CId3H*vߟ\9Dʺ>{}7Rc̰t%xSw0r-!T,\Zi(D0p-~C4QT)5WXR=fE^2őIZeekf]QmofUͅYu쯑ۙmזr؆-ux}\lzޘ]twvlm3Otw Pn뗆Bs{ |5\o:!wz~kV竟+jx% Gf6t29Mhm}6iWxf*j̛e=>>f+<Nrl~_hfy`GQp_ _L59S3<ó.2SE!g`ü6R;hHxn T뙳0 4NKƂewrzm< PŽ=Ca.1?~I} P@H[zS I?Dic5+r2.@+Cı)%}gDJ\T}WoTrF+$$ӬH{ŤֻZ녔q:RFR`\B$Jecq$jόExIGDU=mysJjF5AX8Rd#*J;mH9dHSH8'zU<9&ajKH*r+J"k%C>:[KG0tƤ ]0Kt}V0GJi\r,l^+=~ &ej콱+Mh&_@X b3wҐ5rbj\mm O`|u Bu=~WU氢Rm$rDe~wp;7P(KlIbqV #!LN(^N6QQХ !GF ')!# ,BeΒ+(¬" #=iRXH&pM p亱&Q.莒1nVzMҳ)1mAOSϵ*o r*ܾ5I, B2p3q*5#4e3%m1I0N@3r9y%N&Q<rNcm;W"0.\1Ƣ*+S{/'u+7m}6 uG/8'!C 93e[.J#$1Q:rCD3=iVro&;Fγ%03P=2S ` '3 +6R2*GA>n* 67++QEO5#BB!CL%Mљ-tO s3 aDQ}:0@I0Q%O$ ;EPPuEb- sFMHIJҚ5qhnK~VWt!SXtX09\L[Nՠc\9E[IHgeU[vs;O:c 5&Ե*jjr4'U-aA^e34 oo t&6iWMVQc6O5tNO{FNtnZΓePIeNb%'RW& 2wq^j)w^ԝL7pU?U?uVV@A_Bu0W-*5iA87kW7#jw#xJxTKvQr6QE TmoTU:x(:Eζ/}X&: SRYJx5\wJ;}[zؓi5KLͱzw {6: Ǹa:w}լ-:)#yf|8]m{'0ݹy޺Q{ve1 Bg[{VEĐ{&{zy[݁{iu>o{A_BM8bcXNoʓs<'qy˸=]Efm÷̜1Cgs9Y=beWZuNF1(sƐn{uڧ܁cǝ%Z7;[MMɇ!yv;<u|+oWy5ͻ˘c};0操]7ԇ/w}_SֵZى[ގ黍}sѯ/"^'Iw^.彗6O^lz>[戲 /ҧkm e]똼Y[ͼ;pVM Q>}_Q4[0!?QI y-* `HL. @ؔ&Dh27c8D$<+K!2Exs:ϧ-}3Qi)5MS NUU\Wo^YD0}nsڬ3봢u_d*ŚM`!= !xc8fv_4<^gIehsu44tj/JR1&G̪cExFSsjT)jdz}^̲r;{{s}4L/ Jl00{60c4Al*@pSK/CHδ- 11K!m[Zz(6k81lJv2`4y$;D'H.dҵ&RuasYݞuVtN73ZٖccNS6Y{(TjLybLvoNe!6߫kl*b7CC])Rۀ^Px-EBm D8+]FGp9'ӿ>TWsdI9gZ丛\9:dƇ`sDu /)^xV볷ķUOܿn[~Ǽ鄯OtOw<[Uſ|?_S}ƽOuNm@ 0u.| eּX IvpQp;e`Wsj:!j}4AT1<0=n|[44zA?W|5>hE|1wvXCE'\Cu10 "XJ1w*c"45 F!:gUrL{)Ax5WvvPFxM$f߀+5bw.{XT۵bn*7vuرbkh."8-L\lU8Ek 9Ci5S D`cʓgjn2neϨ;m]`|8^z!&R?^7К#h=wnd'WɌYyQys ӭ PD2 Cap|F- Ģј,r7#7%G \~MHe $AM1lc3gPp CQ*NMU RFU9j\Wkv%EYVekm;svK׋U~0[alL:y6|Y2Hf9gwSr׫!l"}+"`-~Cn"(%fOIbzl^bҹq;%cQP9=N_̙K,һ?jI4M߼e֮ޱ ش@P, m4ҷ3(2TB0o BqCg;&0N 5L[ 1s~D[z2 8FQ{Gnoԛ'*/9{;i?O"J)9ˮ.@s0ϊy4Kr8K +:6M ϔ=.1CrEt H1r,CO9ьE%#0=T)Uq UTiTHQOQS-7X s`WlUXM&P+=]ڪkٓBqK5]‚[k*s@۳KPݷ%mN7s `KAE]t!$TՍ\Vtx}S,#dV%AZEGQ5XY\Ӫic ~7]7%US9Pg)s@ȟڎ7]Vvjk2Z~;6O߭|/ Wd]t_WrO`g̩J.Y:4<` rՉv-ﴥZ` 5i]kp/%^wRB[l-d@Љ=AnD؝#oE(p_Nj,m1@fM("rO)( +FHs(K󲃰g'U!c_prGwrȈa$#͈ô d|l>)CnGFeDPR+g $u?*1 zģSN&+K_g1=># }g1bGäiF#4&V@$4h"OG$OL!E!!JW\$!?28Ǐ;Hj*T& toKJ-E |/ lTk@5X=r}iwgCj& ζA nTF$@*TB%U$9-dk]c|*ъHU,P2lj(zFP|tޢT'A3歁thkqeޗSgQ*Tv?hRJ{U9R4:y)CNY&MU8s-\B[x-_HarJ⸖t-<8U]uo%OS"]=w2phU^+Eo .%}1݊EJY!@k/Iy5Ӫ3K/y3We іnh6Jzдjl f#leWRԽ*7,}t҅PyRaN/g(AHewy=J_{ק﵇*&eCM+SMC9n(vgSs~ƚ?H(qUaJcGnQ!u}-@(2涞 ,q ǫֿNMԷq*~xx>F $v%ۭ7 y//7C(m (6s CUAv힊b<}#zi%j h5OߜYM:vR{em-iW.n#WwVW6L !.}zxh<+m+^c%1wls>'ѼwP}=ooݮz]?/zrbJk;7ֲ ]{ڰ%uw>˓lȤγj ~:Rz":6[˧'_7)LΏZ-.OXKDDa ,OxՎKlz8{ lnI $.m!PdðH@O2Q\m k %N0&NR`oh, pܛp2 n#LM`zBF~~+D&FaĢۑ-O`I

CHү??9T4е+s?ԡ8m"qu5y9KQA8p#Cqh$#Cu=1%zP]6Ge}Hd\ѹ6 iTj |U2Vv]Qjs_9g4TJbTAhUkeq,ʹ[YvSYdZU_'wiOeu[pwzw4j5gT5!^6ȑMTv v`3ks40gUQhA8j7k9rvV#BwZIuV&&$.ntY:W d4^)pPK)olCf Cg(r|Q Tq;r8]};5iJ4PU{i+u+WtEQtp̖jM'w7w0QWsNx*NynP}cyjԺ83USx_usR~qu{rT WiKK8mUuA6m#+!u4wH98Skgvd xio99Y*&7mC KYO1Z<]81ooy=oX6w\qTsf1dxqr f s-m91i1~Bdgv:9<!o[s1ޡ5k67ˁ1ykwXy yy:yxe8SKyryyuwc-|~iI Ob5lvYX Yx7cPcc2yX18۟ӌڝU]W9xS7sM =@QBv4/B0ZIU\q)~9S؂aueG:Ds-tRM n8H7Q&*Dz=r[O|ɪڱףz{t:͆ ypqYWuBpVkY"cٜFw)m{w[!9鹹Z[Ղ:H[Ǫ[K2+1N˵|a[xs}!++'wAwm BYK.[z;G7Š;{9ƹS蛴.U)ewΉd| };_ZɆ]k5< 2ǚ[:;C4ӎh5z8".X!t; /{N5={wg2{YI-be3x0];?ڿ_q4}~IqX]ܟcwKT7~} PFޓ<єɕ)מݖpQ3؟Bk#ݩ>8  A@D. "N)hn9GI%Io\Q- ]1&iw-Of)QbD"KSh|JD*(:`f8W"6*zf*)6ڈFcCdW ǰ M4!ob`3<,^zK A=.MtKixT~%°GkәʢP=3vsFY{{3{<&~Ns%O>2"LKf۵-V($L 6PBBAУyA#4 E$TN3R'%]DitgDqӕD!Hr$<3>nɏ/;J-IO Nܝ+Jr3M'.L,6Jڶ.9@0P!2 ϱ}̵TQF- QDE%E9Bme!F MEծ57N.U+ZVs$]toT?M`Gҭ{16Y;ٶL:+vU>r|򮦹u8_-=[YY.Ϋ;uZ'/}7_WW\v]GEeݩ?ΐ=o ѴwDU՗!^Gp^ V[ }3nٳF?p usf.:v;]Ft:y`3xy s.T }%*F!<טCnl9>_ 0HϿ'Hp/1߄;uPbUs IQq!K 8 SkW;¸S3NpGy3j9b'6zh/%TZ1J)ŃuQo*"4 P1IЬ{/C'"^,h&\db|9*BzI=DI*cAHR$;iǹ4frԞuҺK5!LLPeeBlӉcHi|ڛBSL3x?gZ}Q6N) fzEZ=;{Nd "tfZ,"Hjit֧ԗ8&́X4I,*ݑTM*؊c#g|,MqZcT$`~Uj)ŶÈmrj= 2>] XrqL5Pu]uodrE[AKז^gd*[N 6$bW+D:m|T:M @0d6 C(VF"1XZ/GM%ȡM/J9\a-M#456JgtuD"{AӤJ>UmriUTņgZmVeɮ6{uC/x`/˭iܫ81LNNu7Ȯk5vgiX6W^r@%BOҸ:t xɔəqsDP;TSEWm5nUֻ^mcv?g}_ SJ6{ ZcT5BA* C0|*C) %t<شC!$(QT'$,o6ѬSҔ .|ȳz24Jk#KC.08#s:+?R580$ʷM;oO1Eϱa@FJij @+ 6R44Eұ/DS44H5u-U%;EtCU_͏7#V(}ZHnZIHQrff2MnX>yf~TÜ|;J7f`;9~^XzǗ]B>^G씬]aGtүl-RUYUl;dcVJ]Vd.fVqjhy-7ziݥb8vHֲfE3a bdgwtR;Js8c@=n|t-3Ջwf:gD}C5.ZKz[~U-" 3?w_vH[j˫T5s][r03kvΖlvnlqݺ5iw5ko49[$'Z7G}C0{cbH4'/:wMZzq)Ӏ 3Wήq-ۛ7bɮh)3>{ϰ{{Y-l5\}֝D>O,eR;exVu%E<DePkLՄb`aWgqQW/gB]|wO~V_.\C$[K }<{ß?GɲFު?z(mX3tMN X.&*nzKoO!&ot+Oۭ<oʲrfw8R 8ӮzGj%0n}n$3r駠&:-,~PS :n PC 0,ϫY.. d|, K- .) Ѐ ?/ȍP q8l}/  I"0)0HI.8p h.Ew] 0|p~gNi wp-1  8T. nǏI<PRzVLA$U(OJj9q/niQ i & 1.j0ɢ 11-U~Qp&p6MZ0%[ #2qp2(z҃\125Ϟ(j;!P$U"0KUC-3"WW& %R0k*  M ҎQ06raq-1qK 172d2p*IL_-qnlLgC,Q$RA*MR0+. e&ѹ//&ˏ;( 19xQ[;3qI/&Q3R)2v31Q 3 m SCH Np\"%"26>ؘi!27-dz{D-8Pw@4/<20w9:0C'=Sڪԫ3<k3a.D۲sM@]( @$"Y@$NtT-c$T)?CtLD;&([%}$lTU1419N-Eo/E52iMSl9Ehu3H 5+#TpYR15u*pQSeOK R5U/L4/LtV4MCӓ)[M;A;QNs: tOq!NnF uEfbQ5.U4E+'55--t;@%J-/ IS\cRU!(8B)VUJ_WPLDRGQ4DYs3# XEY;s7X/=T<`5u>KUW^UY2euS"O6 \]R8TkT5a6gc_5uh 9/MmQOUn{[iU3GD+Y6+j%(lV;G~ Gԇ"t-Q{?2!mQѐVf=5-AAUYg4KquU֓8 r,Ww(|VBx6`;cv PY4L#XsOP'in#W,%zv!pwqrΖW6ZMǓ6w^WAmTf,^ r,׹'{cmwbs11cV}_~ wl7]v|Z/q6krwrB6Ug5ωpYo2o5\wfwIqtwzKބ4I|T"V?Lm/Dt7Տ}} 朷k+F5чG9&)@x neeReO8@X?6SezO]Crt!qC$QՅaX趿ukmFai)RFTS=b~ω oPa-㷟YY?pwxryJxhX_aTE[ٓXᎹyt39w|mXqusCWVs%:jcWXtwvֹؖB@wYSYafIPژ/,pwA7ϚQ*055hRokT>MUyMؽܛպEYc=O8=SYwal5g~~Z.Y`޵ٗA'F>ŜUAJH훃ܣޙ \K+}ߞ<ֹ?<'/C\~e_v׉B^ߟɵ7> ApT. pH2%EXb9BPy zI$ǤXA*Gei5My=N%GhLzEB t"ϪjfYSU]oݬ(|_4)*W&FvJ,#%KfS&{eY$_Gyocbzso4qqW/s:BR.KMSo@/'cZ+ߢ| 5O.!kģnKnL~KgBp.8p$p,0>ǧP1 ]BͪrAʛvFp %lHGQ˟$#H댊'҄Ij)L-K-I.4P2;0+̹AIGͤm14,B- ]!UI&ti1EIqbPtkPU$SuJyVcXKΝe:=,[@O۽W36=6 웽R:سzf֓~Y639KҬm:3ӻ>S _?6Tru]57T=QxUw"Eu!QxXvR5WѥwwbX~%VVyn9Ғ[ccyJevm3ZfefpmcW恑gVq8=ɥCL1B_4z^Q6J"xix^F^|_p sa^:{Wɋ{&KXک{pg3L9g͜|[9esϤfS7OSѫ۔#u{jѵ'w}]jvRuQ9ئ{Y?N]?p0?~IV\=[8DT޻"m( z<|cl,<! #(O91Xz7OzhqYL:7 V;e xcJ? kQBD_W}mLA(0)W3QKKW;t NRzܯycԧ)w2ȢzS^<È8]$Aܒ:|jw=O^<ߧ~bzJf?8 V2BX*L?L4A0J@[4Ф Eqk!M9o\fƎ8J;ѻ>NHjDr;2/Tҫ"Ib-*ܯ 4KS<5͓l0 #_8>t΋|E+C1Q>(00>4EC?A4єLuK.7$4<2O!T]kT2e]TUWNyTKol2+j4[W|aYkLlLSv?;tdQBt+p4-LtYOD-w Sn[+EД~=Edؖ_U׎կ!͍G]+ZL5Bʏ}a9U/׍a_cag` &̓>lqޔKi ևP4^_z6%㦨Q?k9ݷ4nWW>eY/Zf>9*yKfQq Y{{_1V2YDFyg$Q/i3+Y>.fq?(b[LjHc…QZF/l_Q]F ZS2B{"!̨dR1QUiuqUv3;Yku|`&D*N¹YzUrt=WZ#4d۫e;7-stKQY.XN!&=ç4}Uw]IEkJ'מڨj}W{WUTLׁſs2^ \Qhj:IEM v'8[,Ƹ2be2=Slfj`+09WA % kMӺ2]ymqxb=^bH{/Uj#brwz+{ B,,˝fhey2^Pzk)dlk'`MK5Cwa- dƷ8jIH-/ꎫ֞Cw',;l7]-v Im<꣟'O_˙w:ʖɫ:?&v;\j߼lۺk7.hĶ灖m}qŔK>-*ܙ.U|{pfS6#ڀdɛs\>+:[̷V՗Komue̶֏Stsԣ cIe )ͣiK@f6xL>}֗usiRmo~(ϓ-MF.ro6Oo$pB3E8L4B-<.W,2=ESH-A62r3G@9H7i@-&ABEhH*B*1qw'wB =!c!?tK31E4G[ET-G2sb>tYNDSJ0H P@mK&) jME9790OJ6MB:-HbACL *qMQ44=pJcP11G%UNjYCH]PՌ\Qk(!R4N{R&3ߴYAKᔒ=MX5PT=TMtqwN3n]^mOu>?X uU5:s@QVԡ&)0(U0C9Krb%S@PP\]2'WT{3yU UEvWT]V[,_]uUG_g`g8i4acu?IIեboJMoJ1T5(+\f>h24Teȫ.%UTe=m=1hQH1 WѿWxm$vO`um_5c&U\QCԉ0'-9IA)ӥS W#lVvTufQAn5fogW,e6wwPma6jjW@]r0v)ikS//@-[[6!3S35c7WwvTfِwhv{jf4w}_W78lvZkvdHӵs5GLWK9y||[}4u-pt_xv߀i~x7ux]A}xwwW!es.yad/07Zx eTLl5i7ba$b񋎑tiMVہW]qR-iiK+npYFVYW4knM8{nqpQW87zC%R mzԗXOVCc8ƣ˄h8+PHo%w^v7y<5XFxpUO؁~wq/bUzx-1W[hAc}r dW8˹PVg6T=co2~Yi4 F},YyۙzRY7/hy%ױ6/wH1uQ}CZo"˝4|X[5T~8Z+Yw٦ق 9:r'rGDG-r9kz ?d3'JQU"vGgMc#Z~uVxYr6r_XZmzS9=%嬄78?J͓ty;:cZE1{l{4Zb}:aI:i箹Dz_/_fgy:%:D qZS[@qGK[ =Z/)s&i>ՙ V0 韧lռmWϚ)}}HZi)ۛ?=[7J;Io  ? ?n ?86 ?>>(1?=S?hs H?"$,2k&#b!@,\"dMtGsW*background@2x.pngtiffutil v301.1 HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Kmpeg-e-1.3.2/mac_deploy.sh000077500000000000000000000064521435730362100152000ustar00rootroot00000000000000#!/bin/bash APP='Peg-E' BUNDLE="$APP.app" VERSION='1.3.2' # Locate deployment script BIN_DIR=$(pwd) cd $(dirname "${BASH_SOURCE[0]}") # Remove any previous disk folder or DMG echo -n 'Preparing... ' rm -f "${APP}_$VERSION.dmg" if [ -e "/Volumes/$APP" ]; then hdiutil detach -quiet "/Volumes/$APP" fi rm -Rf "$APP" echo 'Done' # Create disk folder echo -n 'Copying application bundle... ' mkdir "$APP" cp -Rf "${BIN_DIR}/${BUNDLE}" "$APP/" strip "$APP/$BUNDLE/Contents/MacOS/$APP" cp COPYING "$APP/License.txt" echo 'Done' # Create ReadMe echo -n 'Creating ReadMe... ' cp README "$APP/Read Me.txt" echo >> "$APP/Read Me.txt" echo >> "$APP/Read Me.txt" echo 'CREDITS' >> "$APP/Read Me.txt" echo '=======' >> "$APP/Read Me.txt" echo >> "$APP/Read Me.txt" cat CREDITS >> "$APP/Read Me.txt" echo >> "$APP/Read Me.txt" echo >> "$APP/Read Me.txt" echo 'NEWS' >> "$APP/Read Me.txt" echo '====' >> "$APP/Read Me.txt" echo >> "$APP/Read Me.txt" cat ChangeLog >> "$APP/Read Me.txt" echo 'Done' # Copy Qt translations echo -n 'Copying Qt translations... ' TRANSLATIONS="$APP/$BUNDLE/Contents/Resources/translations" cp $QTDIR/translations/qt_* "$TRANSLATIONS" cp $QTDIR/translations/qtbase_* "$TRANSLATIONS" rm -f $TRANSLATIONS/qt_help_* echo 'Done' # Copy frameworks and plugins echo -n 'Copying frameworks and plugins... ' macdeployqt "$APP/$BUNDLE" rm -Rf "$APP/$BUNDLE/Contents/Frameworks/QtSvg.framework" rm -Rf "$APP/$BUNDLE/Contents/PlugIns/iconengines" rm -Rf "$APP/$BUNDLE/Contents/PlugIns/imageformats" echo 'Done' # Copy background echo -n 'Copying background... ' mkdir "$APP/.background" cp mac/background.tiff "$APP/.background/background.tiff" echo 'Done' # Create disk image echo -n 'Creating disk image... ' hdiutil create -quiet -srcfolder "$APP" -volname "$APP" -fs HFS+ -format UDRW 'temp.dmg' echo 'Done' echo -n 'Configuring disk image... ' hdiutil attach -quiet -readwrite -noverify -noautoopen 'temp.dmg' echo ' tell application "Finder" tell disk "'$APP'" open tell container window set the bounds to {400, 100, 949, 458} set current view to icon view set toolbar visible to false set statusbar visible to true set the bounds to {400, 100, 800, 460} end tell set viewOptions to the icon view options of container window tell viewOptions set arrangement to not arranged set icon size to 80 set label position to bottom set shows icon preview to true set shows item info to false end tell set background picture of viewOptions to file ".background:background.tiff" make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"} set position of item "'$BUNDLE'" of container window to {90, 90} set position of item "Applications" of container window to {310, 90} set position of item "Read Me.txt" of container window to {140, 215} set position of item "License.txt" of container window to {260, 215} close open update without registering applications delay 5 end tell end tell ' | osascript chmod -Rf go-w "/Volumes/$APP" >& /dev/null sync hdiutil detach -quiet "/Volumes/$APP" echo 'Done' echo -n 'Compressing disk image... ' hdiutil convert -quiet 'temp.dmg' -format UDBZ -o "${APP}_${VERSION}.dmg" rm -f temp.dmg echo 'Done' # Clean up disk folder echo -n 'Cleaning up... ' rm -Rf "$APP" echo 'Done' peg-e-1.3.2/src/000077500000000000000000000000001435730362100133055ustar00rootroot00000000000000peg-e-1.3.2/src/board.cpp000066400000000000000000000133261435730362100151050ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2020 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "board.h" #include "hole.h" #include "movement.h" #include "peg.h" #include "puzzle.h" #include #include #include #include #include //----------------------------------------------------------------------------- Board::Board(QUndoStack* moves, QWidget* parent) : QGraphicsView(parent) , m_color(QSettings().value("Appearance", "#0055ff").toString()) , m_status(0) , m_moves(moves) { QGraphicsScene* scene = new QGraphicsScene(this); setScene(scene); // Configure view setCacheMode(QGraphicsView::CacheNone); setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing); setFrameStyle(QFrame::NoFrame); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setMinimumSize(300, 300); } //----------------------------------------------------------------------------- bool Board::isHole(const QPoint& hole) const { return m_holes.contains(hole) ? !m_holes[hole]->hasPeg() : false; } //----------------------------------------------------------------------------- bool Board::isPeg(const QPoint& hole) const { return m_holes.contains(hole) ? m_holes[hole]->hasPeg() : false; } //----------------------------------------------------------------------------- Hole* Board::hole(const QPoint& hole) const { return m_holes.contains(hole) ? m_holes[hole] : nullptr; } //----------------------------------------------------------------------------- void Board::generate(int seed, int difficulty, int algorithm) { // Remove old board m_status = 0; m_moves->clear(); m_holes.clear(); scene()->clear(); setInteractive(true); // Create puzzle Puzzle* puzzle = nullptr; switch (algorithm) { case 2: puzzle = new PuzzleBranch; break; case 3: puzzle = new PuzzleLine; break; case 1: default: puzzle = new Puzzle; break; } puzzle->generate(seed, difficulty); // Create scene setSceneRect(QRectF(puzzle->position() * 20, puzzle->size() * 20).adjusted(-10,-10,10,10)); fitInView(sceneRect(), Qt::KeepAspectRatio); QHash holes = puzzle->holes(); QHashIterator i(holes); while (i.hasNext()) { i.next(); QPoint position = i.key(); Hole* hole = new Hole(position); scene()->addItem(hole); m_holes.insert(position, hole); if (i.value()) { Peg* peg = new Peg(position, this); peg->setAppearance(m_color); hole->setPeg(peg); scene()->addItem(peg); } } delete puzzle; } //----------------------------------------------------------------------------- void Board::move(const QPoint& old_hole, const QPoint& new_hole) { // Move peg Movement* movement = new Movement(old_hole, new_hole, this); m_moves->push(movement); // Handle finishing the game if (checkFinished()) { setInteractive(false); scene()->update(); m_moves->clear(); QSettings().remove((m_status == 2) ? "Current" : "Current/Moves"); } } //----------------------------------------------------------------------------- void Board::setHighlight(const QList& holes, bool highlight) { for (const QPoint& hole : holes) { Q_ASSERT(m_holes.contains(hole)); m_holes[hole]->setHighlight(highlight); } } //----------------------------------------------------------------------------- void Board::setAppearance(const QColor& color) { m_color = color; QSettings().setValue("Appearance", m_color.name()); QHashIterator i(m_holes); while (i.hasNext()) { Peg* peg = i.next().value()->peg(); if (peg) { peg->setAppearance(m_color); } } } //----------------------------------------------------------------------------- void Board::drawBackground(QPainter* painter, const QRectF& rect) { QLinearGradient gradient(sceneRect().topLeft(), sceneRect().bottomRight()); gradient.setColorAt(0, QColor(241, 208, 178)); gradient.setColorAt(1, QColor(193, 146, 70)); painter->fillRect(rect, gradient); } //----------------------------------------------------------------------------- void Board::drawForeground(QPainter* painter, const QRectF&) { if (m_status) { QString message((m_status == 2) ? tr("Success") : tr("Game Over")); QFontMetrics metrics(QFont("Sans", 24)); int w = metrics.boundingRect(message).width(); int h = metrics.height(); int ratio = devicePixelRatio(); QPixmap pixmap(QSize(w + h, h * 2) * ratio); pixmap.setDevicePixelRatio(ratio); pixmap.fill(QColor(0, 0, 0, 0)); { QPainter pixmap_painter(&pixmap); pixmap_painter.setPen(Qt::NoPen); pixmap_painter.setBrush(QColor(0, 0, 0, 200)); pixmap_painter.setRenderHint(QPainter::Antialiasing, true); pixmap_painter.drawRoundedRect(0, 0, w + h, h * 2, 10, 10); pixmap_painter.setFont(QFont("Sans", 24)); pixmap_painter.setPen(Qt::white); pixmap_painter.setRenderHint(QPainter::TextAntialiasing, true); pixmap_painter.drawText(h / 2, h / 2 + metrics.ascent(), message); } painter->save(); painter->resetTransform(); painter->drawPixmap((width() - (pixmap.width() / ratio)) / 2, (height() - (pixmap.height() / ratio)) / 2, pixmap); painter->restore(); } } //----------------------------------------------------------------------------- void Board::resizeEvent(QResizeEvent* event) { fitInView(sceneRect(), Qt::KeepAspectRatio); QGraphicsView::resizeEvent(event); } //----------------------------------------------------------------------------- bool Board::checkFinished() { int pegs = 0; for (Hole* hole : qAsConst(m_holes)) { if (hole->hasPeg()) { pegs++; if (hole->peg()->canMove()) { return false; } } } m_status = (pegs == 1) ? 2 : 1; return true; } //----------------------------------------------------------------------------- peg-e-1.3.2/src/board.h000066400000000000000000000054611435730362100145530ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_BOARD_H #define PEGE_BOARD_H class Hole; class Peg; #include #include #include class QUndoStack; /** * Game board. * * This class controls all of the game objects, as well as setting the color * of the pegs. */ class Board : public QGraphicsView { Q_OBJECT public: /** * Constructs an empty game board. * * @param moves where to store the history of peg movements * @param parent the game board's parent widget */ explicit Board(QUndoStack* moves, QWidget* parent = nullptr); /** Returns @c true if there is only one peg left. */ bool isFinished() const { return m_status; } /** * Returns @c true if @p hole exists and is empty. * * @param hole the hole to check */ bool isHole(const QPoint& hole) const; /** * Returns @c true if @p hole exists and has a peg. * * @param hole the hole to check */ bool isPeg(const QPoint& hole) const; /** * Returns the Hole located at @p hole. * * @param hole the hole to fetch */ Hole* hole(const QPoint& hole) const; /** * Creates a new puzzle layout. * * @param seed the seed passed to the random number generator * @param difficulty how hard of a layout to create * @param algorithm which Puzzle to use to lay out holes and pegs */ void generate(int seed, int difficulty, int algorithm); /** * Moves a peg from @p old_hole to @p new_hole. * * @param old_hole the source hole * @param new_hole the destination hole */ void move(const QPoint& old_hole, const QPoint& new_hole); /** * Highlights holes that can be jumped to. * * @param holes which holes are valid moves * @param highlight whether to add or remove highlight */ void setHighlight(const QList& holes, bool highlight = false); /** * Changes the appearance of the pegs. * * @param color the color to use */ void setAppearance(const QColor& color); protected: /** Override parent function to draw background gradient. */ void drawBackground(QPainter* painter, const QRectF& rect) override; /** Override parent function to draw status message. */ void drawForeground(QPainter* painter, const QRectF& rect) override; /** Override parent function to scale board when resized. */ void resizeEvent(QResizeEvent* event) override; private: /** * Determine if there is only one peg left on the board. * * @return @c true if game is over; @c false otherwise */ bool checkFinished(); private: QHash m_holes; /**< holes on board */ QColor m_color; /**< peg color */ int m_status; /**< status of game. @li @c 0 game is active @li @c 1 game is lost @li @c 2 game is won */ QUndoStack* m_moves; /**< history of peg movements */ }; #endif // PEGE_BOARD_H peg-e-1.3.2/src/hole.cpp000066400000000000000000000017041435730362100147420ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "hole.h" #include #include #include //----------------------------------------------------------------------------- Hole::Hole(const QPoint& position, QGraphicsItem* parent) : QGraphicsEllipseItem(0, 0, 16, 16, parent) , m_peg(nullptr) { QRadialGradient gradient(QPointF(8,8), 8); gradient.setColorAt(0, QColor(0, 0, 0, 0)); gradient.setColorAt(1, QColor(0, 0, 0, 64)); setBrush(gradient); setPen(Qt::NoPen); setZValue(1); setPos(position.x() * 20 + 2, position.y() * 20 + 2); setFlag(QGraphicsItem::ItemIsMovable, false); } //----------------------------------------------------------------------------- void Hole::setHighlight(bool highlight) { setPen(!highlight ? Qt::NoPen : QPen(Qt::yellow, 2)); } //----------------------------------------------------------------------------- peg-e-1.3.2/src/hole.h000066400000000000000000000021611435730362100144050ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_HOLE_H #define PEGE_HOLE_H class Peg; #include /** * %Hole that can contain a Peg. * * This class represents a hole on a game board. It stores a reference to any * peg that rests in it. It also handles drawing itself as well as a highlight * if it is the target for a valid jump. */ class Hole : public QGraphicsEllipseItem { public: /** * Constructs a hole. * * @param position the location of the hole * @param parent the parent item of the hole */ explicit Hole(const QPoint& position, QGraphicsItem* parent = nullptr); /** Returns @c true if the hole has a peg. */ bool hasPeg() const { return m_peg; } /** Returns the peg contained by the hole. */ Peg* peg() const { return m_peg; } /** Sets the peg contained by the hole. */ void setPeg(Peg* peg) { m_peg = peg; } /** Sets the highlighted status of the hole. */ void setHighlight(bool highlight); private: Peg* m_peg; /**< peg contained by the hole */ }; #endif // PEGE_HOLE_H peg-e-1.3.2/src/locale_dialog.cpp000066400000000000000000000111171435730362100165700ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2010-2020 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "locale_dialog.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include //----------------------------------------------------------------------------- QString LocaleDialog::m_current; QString LocaleDialog::m_path; QString LocaleDialog::m_appname; //----------------------------------------------------------------------------- LocaleDialog::LocaleDialog(QWidget* parent) : QDialog(parent, Qt::WindowTitleHint | Qt::MSWindowsFixedSizeDialogHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint) { QString title = parent ? parent->window()->windowTitle() : QString(); setWindowTitle(!title.isEmpty() ? title : QCoreApplication::applicationName()); QLabel* text = new QLabel(tr("Select application language:"), this); m_translations = new QComboBox(this); m_translations->addItem(tr("")); const QStringList translations = findTranslations(); for (QString translation : translations) { if (translation.startsWith("qt")) { continue; } translation.remove(m_appname); m_translations->addItem(languageName(translation), translation); } int index = std::max(0, m_translations->findData(m_current)); m_translations->setCurrentIndex(index); QDialogButtonBox* buttons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, this); connect(buttons, &QDialogButtonBox::accepted, this, &LocaleDialog::accept); connect(buttons, &QDialogButtonBox::rejected, this, &LocaleDialog::reject); QVBoxLayout* layout = new QVBoxLayout(this); layout->setSizeConstraint(QLayout::SetFixedSize); layout->addWidget(text); layout->addWidget(m_translations); layout->addWidget(buttons); } //----------------------------------------------------------------------------- void LocaleDialog::loadTranslator(const QString& name, const QString& datadir) { m_appname = name; // Find translator path m_path = datadir + "/translations/"; // Find current locale m_current = QSettings().value("Locale/Language").toString(); if (!m_current.isEmpty()) { QLocale::setDefault(QLocale(m_current)); } const QString locale = QLocale().name(); // Load translators static QTranslator translator; if (translator.load(m_appname + locale, m_path)) { QCoreApplication::installTranslator(&translator); const QString path = QLibraryInfo::path(QLibraryInfo::TranslationsPath); static QTranslator qtbase_translator; if (qtbase_translator.load("qtbase_" + locale, m_path) || qtbase_translator.load("qtbase_" + locale, path)) { QCoreApplication::installTranslator(&qtbase_translator); } static QTranslator qt_translator; if (qt_translator.load("qt_" + locale, m_path) || qt_translator.load("qt_" + locale, path)) { QCoreApplication::installTranslator(&qt_translator); } } } //----------------------------------------------------------------------------- QString LocaleDialog::languageName(const QString& language) { QString name; const QLocale locale(language); if (language.contains('_')) { if (locale.name() == language) { name = locale.nativeLanguageName() + " (" + locale.nativeCountryName() + ")"; } else { name = locale.nativeLanguageName() + " (" + language + ")"; } } else { name = locale.nativeLanguageName(); } if (name.isEmpty() || name == "C") { if (language == "eo") { name = "Esperanto"; } else { name = language; } } if (locale.textDirection() == Qt::RightToLeft) { name.prepend(QChar(0x202b)); } return name; } //----------------------------------------------------------------------------- QStringList LocaleDialog::findTranslations() { QStringList result = QDir(m_path, "*.qm").entryList(QDir::Files); result.replaceInStrings(".qm", ""); return result; } //----------------------------------------------------------------------------- void LocaleDialog::accept() { int current = m_translations->findData(m_current); if (current == m_translations->currentIndex()) { return reject(); } QDialog::accept(); m_current = m_translations->itemData(m_translations->currentIndex()).toString(); QSettings().setValue("Locale/Language", m_current); QMessageBox::information(this, tr("Note"), tr("Please restart this application for the change in language to take effect."), QMessageBox::Ok); } //----------------------------------------------------------------------------- peg-e-1.3.2/src/locale_dialog.h000066400000000000000000000033271435730362100162410ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2010-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_LOCALE_DIALOG_H #define PEGE_LOCALE_DIALOG_H #include class QComboBox; /** * Dialog to set application language. * * This class handles setting the application language when the application is * launched, as well as allowing the user to choose a different language for * future launches. */ class LocaleDialog : public QDialog { Q_OBJECT public: /** * Construct a dialog to choose application language. * * @param parent the parent widget of the dialog */ explicit LocaleDialog(QWidget* parent = nullptr); /** * Load the stored language into the application; defaults to system language. * * @param appname application name to prepend to translation filenames * @param datadir location to search for translations */ static void loadTranslator(const QString& appname, const QString& datadir); /** * Fetch native language name for QLocale name. * * @param language QLocale name to look up * @return translated language name */ static QString languageName(const QString& language); public Q_SLOTS: /** Override parent function to store application language. */ void accept() override; private: /** * Fetch list of application translations. * * @return list of QLocale names */ static QStringList findTranslations(); private: QComboBox* m_translations; /**< list of found translations */ static QString m_current; /**< stored application language */ static QString m_path; /**< location of translations; found in loadTranslator() */ static QString m_appname; /**< application name passed to loadTranslator() */ }; #endif // PEGE_LOCALE_DIALOG_H peg-e-1.3.2/src/main.cpp000066400000000000000000000041761435730362100147450ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2022 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "locale_dialog.h" #include "window.h" #include #include #include #include #include /** * Program entry point. * * @param argc amount of command line arguments * @param argv command line arguments * @return @c 0 on successful exit */ int main(int argc, char** argv) { QApplication app(argc, argv); app.setApplicationName("Peg-E"); app.setApplicationVersion(VERSIONSTR); app.setApplicationDisplayName(Window::tr("Peg-E")); app.setOrganizationDomain("gottcode.org"); app.setOrganizationName("GottCode"); #if !defined(Q_OS_WIN) && !defined(Q_OS_MAC) app.setWindowIcon(QIcon::fromTheme("peg-e", QIcon(":/peg-e.png"))); app.setDesktopFileName("peg-e"); #endif app.setAttribute(Qt::AA_DontShowIconsInMenus, true); // Find application data const QString appdir = app.applicationDirPath(); const QString datadir = QDir::cleanPath(appdir + "/" + PEGE_DATADIR); // Handle portability #ifdef Q_OS_MAC const QFileInfo portable(appdir + "/../../../Data"); #else const QFileInfo portable(appdir + "/Data"); #endif if (portable.exists() && portable.isWritable()) { QSettings::setDefaultFormat(QSettings::IniFormat); QSettings::setPath(QSettings::IniFormat, QSettings::UserScope, portable.absoluteFilePath() + "/Settings"); } // Load application language LocaleDialog::loadTranslator("pege_", datadir); // Handle commandline QCommandLineParser parser; parser.setApplicationDescription(Window::tr("Peg elimination game")); parser.addHelpOption(); parser.addVersionOption(); parser.process(app); // Set location of fallback icons QStringList paths = QIcon::themeSearchPaths(); paths.prepend(datadir + "/icons"); QIcon::setThemeSearchPaths(paths); // Set up icons #if defined(Q_OS_MAC) || defined(Q_OS_WIN) QIcon::setThemeName("hicolor"); #else if (QIcon::themeName() == "hicolor") { QIcon::setThemeName("Hicolor"); } QIcon::setFallbackThemeName("hicolor"); #endif // Create main window Window window; window.show(); return app.exec(); } peg-e-1.3.2/src/movement.cpp000066400000000000000000000034111435730362100156420ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "movement.h" #include "board.h" #include "hole.h" #include "peg.h" #include //----------------------------------------------------------------------------- Movement::Movement(const QPoint& start_hole, const QPoint& end_hole, Board* board) : m_start_hole(start_hole) , m_jumped_hole(start_hole + ((end_hole - start_hole) / 2)) , m_end_hole(end_hole) , m_board(board) { Q_ASSERT(m_board->isPeg(m_start_hole)); Q_ASSERT(m_board->isPeg(m_jumped_hole)); Q_ASSERT(m_board->isHole(m_end_hole)); m_peg = m_board->hole(start_hole)->peg(); m_jumped_peg = m_board->hole(m_jumped_hole)->peg(); } //----------------------------------------------------------------------------- void Movement::redo() { m_board->hole(m_start_hole)->setPeg(nullptr); m_board->hole(m_jumped_hole)->setPeg(nullptr); m_board->hole(m_end_hole)->setPeg(m_peg); m_jumped_peg->hide(); m_peg->move(m_end_hole); QStringList moves = QSettings().value("Current/Moves").toStringList(); moves += QString("%1x%2 to %3x%4").arg(m_start_hole.x()).arg(m_start_hole.y()).arg(m_end_hole.x()).arg(m_end_hole.y()); QSettings().setValue("Current/Moves", moves); } //----------------------------------------------------------------------------- void Movement::undo() { m_board->hole(m_start_hole)->setPeg(m_peg); m_board->hole(m_jumped_hole)->setPeg(m_jumped_peg); m_board->hole(m_end_hole)->setPeg(nullptr); m_peg->move(m_start_hole); m_jumped_peg->show(); QStringList moves = QSettings().value("Current/Moves").toStringList(); moves.removeLast(); QSettings().setValue("Current/Moves", moves); } //----------------------------------------------------------------------------- peg-e-1.3.2/src/movement.h000066400000000000000000000025161435730362100153140ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_MOVEMENT_H #define PEGE_MOVEMENT_H class Board; class Hole; class Peg; #include #include #include /** * %Movement of a Peg. * * This class represents a move that has been made. It tracks references to * the pegs that were moved or removed, as well as their positions on a game * board. */ class Movement : public QUndoCommand { public: /** * Constructs a movement. * * @param start_hole the hole the peg jumped from * @param end_hole the hole the peg jumped to * @param board the board that contains the holes */ Movement(const QPoint& start_hole, const QPoint& end_hole, Board* board); /** Move the peg from the start hole to the end hole, removing the peg in the hole between them. */ void redo() override; /** Move the peg from the end hole to the start hole, restoring the peg in the hole between them. */ void undo() override; private: Peg* m_peg; /**< peg that was moved */ Peg* m_jumped_peg; /**< peg that was removed */ QPoint m_start_hole; /**< start position of moved peg */ QPoint m_jumped_hole; /**< position of removed peg */ QPoint m_end_hole; /**< end position of moved peg */ Board* m_board; /**< game board */ }; #endif // PEGE_MOVEMENT_H peg-e-1.3.2/src/peg.cpp000066400000000000000000000050241435730362100145650ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "peg.h" #include "board.h" #include #include //----------------------------------------------------------------------------- Peg::Peg(const QPoint& hole, Board* board, QGraphicsItem* parent) : QGraphicsEllipseItem(0, 0, 20, 20, parent) , m_hole(hole) , m_board(board) { setPen(Qt::NoPen); QGraphicsEllipseItem* gloss = new QGraphicsEllipseItem(3, 1.5, 14, 9, this); QLinearGradient gradient2(0, 0, 0, 9); gradient2.setColorAt(0, QColor(255, 255, 255)); gradient2.setColorAt(1, QColor(255, 255, 255, 0)); gloss->setBrush(gradient2); gloss->setPen(Qt::NoPen); setZValue(2); setPos(hole.x() * 20, hole.y() * 20); setFlag(QGraphicsItem::ItemIsMovable, true); setCursor(Qt::OpenHandCursor); } //----------------------------------------------------------------------------- void Peg::mousePressEvent(QGraphicsSceneMouseEvent* event) { findHoles(); m_board->setHighlight(m_holes, true); setZValue(3); setCursor(Qt::ClosedHandCursor); QGraphicsEllipseItem::mousePressEvent(event); } //----------------------------------------------------------------------------- void Peg::mouseReleaseEvent(QGraphicsSceneMouseEvent* event) { m_board->setHighlight(m_holes, false); QPoint hole = ((mapToScene(boundingRect().center()) / 20.f) - QPointF(0.5f, 0.5f)).toPoint(); if (m_holes.contains(hole)) { m_board->move(m_hole, hole); } move(m_hole); setZValue(2); if (!m_board->isFinished()) { setCursor(Qt::OpenHandCursor); } else { unsetCursor(); } QGraphicsEllipseItem::mouseReleaseEvent(event); } //----------------------------------------------------------------------------- void Peg::move(QPoint hole) { m_hole = hole; setPos(m_hole.x() * 20, m_hole.y() * 20); } //----------------------------------------------------------------------------- void Peg::setAppearance(const QColor& color) { QRadialGradient gradient(QPointF(10,10), 10, QPoint(10,13)); gradient.setColorAt(0, color); gradient.setColorAt(1, color.darker()); setBrush(gradient); } //----------------------------------------------------------------------------- void Peg::findHoles() { m_holes.clear(); for (int r = -1; r < 2; ++r) { for (int c = -1; c < 2; ++c) { QPoint direction(c, r); QPoint hole = m_hole + (direction * 2); if (m_board->isHole(hole) && m_board->isPeg(m_hole + direction)) { m_holes.append(hole); } } } } //----------------------------------------------------------------------------- peg-e-1.3.2/src/peg.h000066400000000000000000000033301435730362100142300ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_PEG_H #define PEGE_PEG_H class Board; #include class QColor; /** * %Peg movable by the player. * * This class represents a peg on a game board. It can be dragged by the * player, or moved between holes by calling move(), but only if the peg * determines that it is a valid jump. It tracks what hole it is currently * resting in to make it faster to determine if it can move. */ class Peg : public QGraphicsEllipseItem { public: /** * Constructs a peg. * * @param hole the hole containing the peg * @param board the board containing the peg * @param parent the parent item of the peg */ Peg(const QPoint& hole, Board* board, QGraphicsItem* parent = nullptr); /** Returns @c true if the peg can move; @c false otherwise */ bool canMove() { findHoles(); return !m_holes.isEmpty(); } /** * Moves the peg. * * @param hole where to move the peg */ void move(QPoint hole); /** * Change the peg appearance. * * @param color what color is used to draw peg */ void setAppearance(const QColor& color); protected: /** Override parent function to check if there are valid moves. */ void mousePressEvent(QGraphicsSceneMouseEvent* event) override; /** Override parent function to handle completing a jump. */ void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override; private: /** Search game board for valid jumps to make. */ void findHoles(); private: QPoint m_hole; /**< position of hole containing peg */ QList m_holes; /**< holes that can complete valid jumps */ Board* m_board; /**< game board */ }; #endif // PEGE_PEG_H peg-e-1.3.2/src/puzzle.cpp000066400000000000000000000105221435730362100153420ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2014 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "puzzle.h" #include //----------------------------------------------------------------------------- Puzzle::Puzzle() { m_directions = QList() << QPoint(-1,0) << QPoint(-1,-1) << QPoint(0,-1) << QPoint(1,-1) << QPoint(1,0) << QPoint(1,1) << QPoint(0,1) << QPoint(-1,1); } //----------------------------------------------------------------------------- Puzzle::~Puzzle() { } //----------------------------------------------------------------------------- QHash Puzzle::holes() const { return m_holes; } //----------------------------------------------------------------------------- QPoint Puzzle::position() const { return m_top_left; } //----------------------------------------------------------------------------- QSize Puzzle::size() const { return QSize((m_bottom_right.x() - m_top_left.x()) + 1, (m_bottom_right.y() - m_top_left.y()) + 1); } //----------------------------------------------------------------------------- void Puzzle::generate(int seed, int difficulty) { m_random.seed(seed); difficulty = qBound(1, difficulty, 101); difficulty += 5; generate(difficulty); } //----------------------------------------------------------------------------- void Puzzle::generate(int pegs) { QPoint start(0, 0); setHasPeg(start, true); findMoves(start, pegs); } //----------------------------------------------------------------------------- bool Puzzle::isAvailable(const QPoint& hole) const { return hasPeg(hole) != 1; } //----------------------------------------------------------------------------- void Puzzle::shuffle(QList& pegs) { std::shuffle(pegs.begin(), pegs.end(), m_random); } //----------------------------------------------------------------------------- bool Puzzle::findNextMove(const QPoint& start_hole, QPoint& jumped_hole, QPoint& end_hole) { std::shuffle(m_directions.begin(), m_directions.end(), m_random); for (const QPoint& direction : qAsConst(m_directions)) { jumped_hole = direction + start_hole; end_hole = (direction * 2) + start_hole; if (isAvailable(jumped_hole) && isAvailable(end_hole)) { setHasPeg(start_hole, false); setHasPeg(jumped_hole, true); setHasPeg(end_hole, true); return true; } } return false; } //----------------------------------------------------------------------------- QPoint Puzzle::findMoves(const QPoint& start, int loops) { QList pegs; pegs.append(start); QPoint jumped_hole, end_hole; for (int i = 0; i < loops; ++i) { shuffle(pegs); for (const QPoint& start_hole : qAsConst(pegs)) { if (findNextMove(start_hole, jumped_hole, end_hole)) { pegs.removeOne(start_hole); pegs.append(jumped_hole); pegs.append(end_hole); break; } } } return pegs.last(); } //----------------------------------------------------------------------------- int Puzzle::hasPeg(const QPoint& hole) const { return m_holes.contains(hole) ? m_holes.value(hole) : -1; } //----------------------------------------------------------------------------- void Puzzle::setHasPeg(const QPoint& hole, bool value) { m_top_left.setX(std::min(m_top_left.x(), hole.x())); m_top_left.setY(std::min(m_top_left.y(), hole.y())); m_bottom_right.setX(std::max(m_bottom_right.x(), hole.x())); m_bottom_right.setY(std::max(m_bottom_right.y(), hole.y())); m_holes[hole] = value; } //----------------------------------------------------------------------------- void PuzzleBranch::generate(int pegs) { QPoint start_hole(0, 0); setHasPeg(start_hole, true); int loops = pegs; while (loops > 0) { int group_loops = std::min(10, loops); start_hole = findMoves(start_hole, group_loops); loops -= group_loops; QPoint jumped_hole, end_hole; int branch_loops = std::min(10, loops); for (int i = 0; i < branch_loops; ++i) { if (findNextMove(start_hole, jumped_hole, end_hole)) { start_hole = end_hole; loops--; } } } } //----------------------------------------------------------------------------- bool PuzzleLine::isAvailable(const QPoint& hole) const { return hasPeg(hole) == -1; } //----------------------------------------------------------------------------- void PuzzleLine::shuffle(QList&) { } //----------------------------------------------------------------------------- peg-e-1.3.2/src/puzzle.h000066400000000000000000000064531435730362100150170ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2014 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_PUZZLE_H #define PEGE_PUZZLE_H #include #include #include #include /** * Contains the layout of holes and pegs. * * This class generates and contains a board layout. When it generates a * layout it tracks which holes are the furthest left and up, right and down * so that the size of the layout can be quickly retrieved. */ class Puzzle { public: /** Constructs an empty layout. */ explicit Puzzle(); /** Destroys the layout. */ virtual ~Puzzle(); /** Returns the layout as a hash of points describing the holes. */ QHash holes() const; /** Returns the top left corner of the layout. */ QPoint position() const; /** Returns the size of the layout. */ QSize size() const; /** * Creates a layout. * * @param seed the seed passed to the random number generator * @param difficulty how hard of a layout to create */ void generate(int seed, int difficulty); protected: /** * Creates a layout with a single group of pegs. * * @param pegs how many pegs to create */ virtual void generate(int pegs); /** * Returns @c true if @p hole has no peg. * * @param hole the hole to check */ virtual bool isAvailable(const QPoint& hole) const; /** * Randomly shuffles a list of pegs. * * @param pegs the pegs to shuffle */ virtual void shuffle(QList& pegs); /** * Determines where to move next. * * @param start_hole the hole that is moved from * @param jumped_hole the hole between the start and end holes * @param end_hole the hole that is moved to */ bool findNextMove(const QPoint& start_hole, QPoint& jumped_hole, QPoint& end_hole); /** * Creates a group of pegs. * * @param start initial peg * @param loops how many pegs to create */ QPoint findMoves(const QPoint& start, int loops); /** * Returns whether or not the @p hole has a peg. * * @param hole the hole to check * @return @li @c 0 if the hole is empty * @li @c 1 if the hole has a peg * @li @c -1 if the hole doesn't exist */ int hasPeg(const QPoint& hole) const; /** * Sets if the @p hole has a peg. * * @param hole the hole to specify * @param value what to put at the hole */ void setHasPeg(const QPoint& hole, bool value); private: QHash m_holes; /**< hash of holes */ QList m_directions; /**< list of directions to check */ QPoint m_top_left; /**< top left hole */ QPoint m_bottom_right; /**< bottom right hole */ std::mt19937 m_random; /**< random number generator */ }; /** Puzzle that has branches between groups of pegs. */ class PuzzleBranch : public Puzzle { protected: /** * Creates a layout with branches between the groups. * * @param pegs how many pegs to create */ void generate(int pegs) override; }; /** Puzzle that doesn't reuse or shuffle any holes. */ class PuzzleLine : public Puzzle { protected: /** * Returns true if @p hole does not exist yet. * * @param hole the hole to check */ bool isAvailable(const QPoint& hole) const override; /** * Override parent function to prevent shuffling the pegs. * * @param pegs the pegs to shuffle */ void shuffle(QList& pegs) override; }; #endif // PEGE_PUZZLE_H peg-e-1.3.2/src/window.cpp000066400000000000000000000245151435730362100153270ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2023 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #include "window.h" #include "board.h" #include "locale_dialog.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //----------------------------------------------------------------------------- Window::Window() : m_seed(0) , m_difficulty(QSettings().value("Difficulty", 5).toInt()) , m_algorithm(QSettings().value("Algorithm", 1).toInt()) { // Create board QUndoStack* moves = new QUndoStack(this); m_board = new Board(moves, this); m_seed = QSettings().value("Current/Seed").toInt(); setCentralWidget(m_board); // Create menubar QMenu* game_menu = menuBar()->addMenu(tr("&Game")); QAction* new_action = game_menu->addAction(QIcon::fromTheme("document-new"), tr("&New"), this, &Window::newGame); new_action->setShortcut(QKeySequence::New); QAction* restart_action = game_menu->addAction(QIcon::fromTheme("view-refresh"), tr("&Restart Game"), this, &Window::restartGame); restart_action->setShortcut(QKeySequence::Refresh); game_menu->addAction(tr("&Details"), this, &Window::showDetails); game_menu->addSeparator(); QAction* quit_action = game_menu->addAction(QIcon::fromTheme("application-exit"), tr("Quit"), this, &Window::close); quit_action->setShortcut(QKeySequence::Quit); quit_action->setMenuRole(QAction::QuitRole); QMenu* move_menu = menuBar()->addMenu(tr("&Move")); QAction* undo_action = move_menu->addAction(QIcon::fromTheme("edit-undo"), tr("&Undo"), moves, &QUndoStack::undo); undo_action->setShortcut(QKeySequence::Undo); undo_action->setEnabled(false); connect(moves, &QUndoStack::canUndoChanged, undo_action, &QAction::setEnabled); QAction* redo_action = move_menu->addAction(QIcon::fromTheme("edit-redo"), tr("&Redo"), moves, &QUndoStack::redo); redo_action->setShortcut(QKeySequence::Redo); redo_action->setEnabled(false); connect(moves, &QUndoStack::canRedoChanged, redo_action, &QAction::setEnabled); QMenu* appearance_menu = menuBar()->addMenu(tr("&Appearance")); QMap colors; colors.insert(tr("Blue"), "#0055ff"); colors.insert(tr("Charcoal"), "#3d3d3d"); colors.insert(tr("Green"), "#00aa00"); colors.insert(tr("Midnight"), "#00007f"); colors.insert(tr("Plum"), "#aa007f"); colors.insert(tr("Red"), "#ff0000"); colors.insert(tr("Yellow"), "#ffff00"); QString selected_color = QSettings().value("Appearance", "#0055ff").toString(); m_colors = new QActionGroup(this); QMapIterator i(colors); while (i.hasNext()) { i.next(); QAction* color_action = appearance_menu->addAction(i.key()); color_action->setData(i.value()); color_action->setCheckable(true); m_colors->addAction(color_action); if (i.value() == selected_color) { color_action->setChecked(true); } } connect(m_colors, &QActionGroup::triggered, this, &Window::changeAppearance); appearance_menu->addAction(tr("Custom..."), this, &Window::changeAppearanceCustom); QMenu* settings_menu = menuBar()->addMenu(tr("&Settings")); settings_menu->addAction(tr("Application &Language..."), this, &Window::setLocale); QMenu* help_menu = menuBar()->addMenu(tr("&Help")); QAction* about_action = help_menu->addAction(tr("&About"), this, &Window::about); about_action->setMenuRole(QAction::AboutRole); QAction* about_qt_action = help_menu->addAction(tr("About &Qt"), qApp, &QApplication::aboutQt); about_qt_action->setMenuRole(QAction::AboutQtRole); // Create toolbar QToolBar* toolbar = new QToolBar(this); toolbar->setIconSize(QSize(22, 22)); toolbar->setFloatable(false); toolbar->setMovable(false); toolbar->setToolButtonStyle(Qt::ToolButtonFollowStyle); toolbar->addAction(new_action); toolbar->addAction(restart_action); toolbar->addSeparator(); toolbar->addAction(undo_action); toolbar->addAction(redo_action); addToolBar(toolbar); setContextMenuPolicy(Qt::NoContextMenu); // Restore size and position resize(400,400); restoreGeometry(QSettings().value("Geometry").toByteArray()); // Restore current game loadGame(); } //----------------------------------------------------------------------------- void Window::closeEvent(QCloseEvent* event) { QSettings().setValue("Geometry", saveGeometry()); QMainWindow::closeEvent(event); } //----------------------------------------------------------------------------- void Window::newGame() { QDialog dialog(this); dialog.setWindowTitle(tr("New Game")); // Create options QComboBox* algorithms_box = new QComboBox(&dialog); algorithms_box->addItem(tr("Original"), 1); algorithms_box->addItem(tr("Branch"), 2); algorithms_box->addItem(tr("Line"), 3); algorithms_box->setCurrentIndex(algorithms_box->findData(m_algorithm)); QSpinBox* difficulty_box = new QSpinBox(&dialog); difficulty_box->setRange(1, 100); difficulty_box->setValue(m_difficulty); QSpinBox* seed_box = new QSpinBox(&dialog); seed_box->setRange(0, INT_MAX); seed_box->setValue(0); seed_box->setSpecialValueText(tr("Random")); // Create dialog buttons QDialogButtonBox* buttons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, &dialog); connect(buttons, &QDialogButtonBox::accepted, &dialog, &QDialog::accept); connect(buttons, &QDialogButtonBox::rejected, &dialog, &QDialog::reject); // Lay out options QFormLayout* options_layout = new QFormLayout; options_layout->addRow(tr("Algorithm:"), algorithms_box); options_layout->addRow(tr("Difficulty:"), difficulty_box); options_layout->addRow(tr("Seed:"), seed_box); // Lay out dialog QVBoxLayout* layout = new QVBoxLayout(&dialog); layout->addLayout(options_layout); layout->addSpacing(18); layout->addWidget(buttons); if (dialog.exec() == QDialog::Accepted) { startGame(seed_box->value(), difficulty_box->value(), algorithms_box->itemData(algorithms_box->currentIndex()).toInt()); } } //----------------------------------------------------------------------------- void Window::restartGame() { if (m_board->isFinished() || QMessageBox::question(this, tr("Question"), tr("Do you want to restart?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { m_board->generate(m_seed, m_difficulty, m_algorithm); QSettings().remove("Current/Moves"); } } //----------------------------------------------------------------------------- void Window::showDetails() { QString algorithm; switch (m_algorithm) { case 2: algorithm = tr("Branch"); break; case 3: algorithm = tr("Line"); break; case 1: default: algorithm = tr("Original"); break; } QMessageBox::information(this, tr("Details"), tr("

Algorithm: %1
Difficulty: %2
Seed: %L3

").arg(algorithm).arg(m_difficulty).arg(m_seed)); } //----------------------------------------------------------------------------- void Window::setLocale() { LocaleDialog dialog; dialog.exec(); } //----------------------------------------------------------------------------- void Window::about() { QMessageBox::about(this, tr("About Peg-E"), QString( "

%1 %2
%3
%4
%5

" "

%6
%7

") .arg(tr("Peg-E"), QCoreApplication::applicationVersion(), tr("Peg elimination game"), tr("Copyright © 2009-%1 Graeme Gott").arg("2023"), tr("Released under the
GPL 3 license").arg("\"http://www.gnu.org/licenses/gpl.html\""), tr("Uses icons from the Oxygen icon theme").arg("\"http://www.oxygen-icons.org/\""), tr("Used under the LGPL 3 license").arg("\"http://www.gnu.org/licenses/lgpl.html\"")) ); } //----------------------------------------------------------------------------- void Window::changeAppearance(QAction* action) { m_board->setAppearance(action->data().toString()); } //----------------------------------------------------------------------------- void Window::changeAppearanceCustom() { QColor color = QColorDialog::getColor(QSettings().value("Appearance").toString(), this); if (!color.isValid()) { return; } QString selected_color = color.name(); const QList actions = m_colors->actions(); for (QAction* action : actions) { action->setChecked(action->data().toString() == selected_color); } m_board->setAppearance(color); } //----------------------------------------------------------------------------- void Window::loadGame() { // Load board QSettings settings; int seed = settings.value("Current/Seed", m_seed).toInt(); int difficulty = settings.value("Current/Difficulty", m_difficulty).toInt(); int algorithm = settings.value("Current/Algorithm", m_algorithm).toInt(); QStringList moves = settings.value("Current/Moves").toStringList(); if (settings.value("Current/Version").toInt() != 2) { moves.clear(); } startGame(seed, difficulty, algorithm); // Load moves const QRegularExpression parse("^(-?\\d+)x(-?\\d+) to (-?\\d+)x(-?\\d+)$"); for (const QString& move : qAsConst(moves)) { const QRegularExpressionMatch match = parse.match(move); if (!match.hasMatch()) { continue; } QPoint old_hole(match.captured(1).toInt(), match.captured(2).toInt()); QPoint new_hole(match.captured(3).toInt(), match.captured(4).toInt()); if (m_board->isPeg(old_hole) && m_board->isHole(new_hole)) { m_board->move(old_hole, new_hole); } else { qWarning("Invalid move: %dx%d to %dx%d", old_hole.x(), old_hole.y(), new_hole.x(), new_hole.y()); } } } //----------------------------------------------------------------------------- void Window::startGame(int seed, int difficulty, int algorithm) { if (seed == 0) { seed = QRandomGenerator::system()->bounded(INT_MAX); } m_seed = seed; m_difficulty = difficulty; m_algorithm = algorithm; m_board->generate(m_seed, m_difficulty, m_algorithm); QSettings settings; settings.setValue("Difficulty", m_difficulty); settings.setValue("Algorithm", m_algorithm); settings.setValue("Current/Version", 2); settings.setValue("Current/Seed", m_seed); settings.setValue("Current/Difficulty", m_difficulty); settings.setValue("Current/Algorithm", m_algorithm); settings.remove("Current/Moves"); } //----------------------------------------------------------------------------- peg-e-1.3.2/src/window.h000066400000000000000000000036721435730362100147750ustar00rootroot00000000000000/* SPDX-FileCopyrightText: 2009-2013 Graeme Gott SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef PEGE_WINDOW_H #define PEGE_WINDOW_H class Board; #include class QAction; class QActionGroup; /** * Main window of the game. * * This is the main window. It defines the menubar and toolbar. It also * controls starting a game, as well as fetching details of the running game. */ class Window : public QMainWindow { Q_OBJECT public: /** Constructs the main window. */ explicit Window(); protected: /** Override parent function to save window geometry. */ void closeEvent(QCloseEvent* event) override; private Q_SLOTS: /** * Start a new game. * * Shows a dialog of options that the player can adjust. */ void newGame(); /** Restart the current game. */ void restartGame(); /** Show the current game details. */ void showDetails(); /** * Changes the appearance of the board. * * @param action the color to set the pegs */ void changeAppearance(QAction* action); /** * Changes the appearance of the board. * * Shows a dialog that allows the player to choose the peg color. */ void changeAppearanceCustom(); /** Allows the player to change the application language. */ void setLocale(); /** Show the program details. */ void about(); private: /** Starts the previous game. */ void loadGame(); /** * Starts a new game. * * @param seed the seed passed to the random number generator * @param difficulty how hard of a layout to create * @param algorithm which Puzzle to use for the layout */ void startGame(int seed, int difficulty, int algorithm); private: Board* m_board; /**< game board */ QActionGroup* m_colors; /**< actions to set peg color */ int m_seed; /**< seed passed to the random number generator */ int m_difficulty; /**< how hard of a layout was created */ int m_algorithm; /**< which Puzzle was used for the layout */ }; #endif // PEGE_WINDOW_H peg-e-1.3.2/translations/000077500000000000000000000000001435730362100152375ustar00rootroot00000000000000peg-e-1.3.2/translations/pege_cs.ts000066400000000000000000000141021435730362100172120ustar00rootroot00000000000000 Board Success Úspěch Game Over Konec Hry LocaleDialog Select application language: Vyberte jazyk aplikace: <System Language> <Systémový Jazyk> Note Poznámka Please restart this application for the change in language to take effect. Prosíme restartujte tuto aplikaci aby se změna jazyka projevila. Window Peg-E Peg-E &Game &Hra &New &Nová Hra &Restart Game &Restartovat Hru &Details &Detaily Quit Konec &Move &Tah &Undo &Zpět &Redo &Opakovat &Appearance &Vzhled Blue Modrá Charcoal Uhlová Green Zelená Midnight Půlnoční Plum Švestková Red Červená Yellow Žlutá Custom... Vlastní... &Settings &Možnosti Application &Language... &Jazyk Aplikace &Help &Pomoc &About O hř&e About &Qt O &Qt New Game Nová Hra Original Původní Branch Větev Line Čára Random Náhodné Algorithm: Algoritmus: Difficulty: Obtížnost: Seed: Jádro: Question Otázka Do you want to restart? Chcete restartovat hru? Details Detaily <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritmus:</b> %1<br><b>Obtížnost:</b> %2<br><b>Jádro:</b> %L3</p> About Peg-E O Peg-E Peg elimination game Peg eliminační hra Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Vydáno pod licencí <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Používá ikony z <a href=%1>Oxygen</a> sady ikon Used under the <a href=%1>LGPL 3</a> license Používané pod licencí <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_de.ts000066400000000000000000000141301435730362100171760ustar00rootroot00000000000000 Board Success Erfolgreich Game Over Spiel verloren LocaleDialog Select application language: Sprache wählen: <System Language> <System Sprache> Note Hinweis Please restart this application for the change in language to take effect. Bitte starten Sie die Anwendung neu um die Sprache zu aktivieren. Window Peg-E Peg-E &Game &Spiel &New &Neu &Restart Game &Spiel wiederholen &Details &Details Quit Beenden &Move Z&ug &Undo &Zurück &Redo &Vor &Appearance &Optik Blue Blau Charcoal Kohle Green Grün Midnight Mitternacht Plum Zwetschge Red Rot Yellow Gelb Custom... Eigene... &Settings &Einstellungen Application &Language... &Anwendungssprache... &Help &Hilfe &About &Über About &Qt Über &Qt New Game Neues Spiel Original Original Branch Zweig Line Linie Random Zufällig Algorithm: Algorithmus: Difficulty: Schwierigkeit: Seed: Level: Question Frage Do you want to restart? Wollen Sie neu starten? Details Details <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algorithmus:</b> %1<br><b>Schwierigkeit:</b> %2<br><b>Level:</b> %L3</p> About Peg-E Über Peg-E Peg elimination game Peg Elimination Spiel Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Freigegeben unter der <a href=%1>GPL 3</a> Lizenz Uses icons from the <a href=%1>Oxygen</a> icon theme Dargestellte Icons sind aus dem <a href=%1>Oxygen</a> Icon Themen Paket Used under the <a href=%1>LGPL 3</a> license Verwendet unter der <a href=%1>LGPL 3</a>.Lizenz peg-e-1.3.2/translations/pege_el.ts000066400000000000000000000152701435730362100172140ustar00rootroot00000000000000 Board Success Επιτυχία Game Over Τέλος παιχνιδιού LocaleDialog Select application language: Επιλέξτε γλώσσα εφαρμογής: <System Language> <Γλωσσα συστηματος> Note Παρατηρηση Please restart this application for the change in language to take effect. Παρακαλώ κάντε επανεκκίνηση την εφαρμογή αυτή για αλλαγή στη γλώσσα να τεθεί σε ισχύ. Window Peg-E Peg-E &Game Παιχνιδι &New Νεο &Restart Game Επανεκινηση παιχνιδιου &Details Λεπτομερειες Quit Αποχωρηση &Move Μετακινηση &Undo Αναιρεση &Redo Επανάληψη &Appearance Εμφάνιση Blue Μπλε Charcoal Κάρβουνο Green Πρασινο Midnight Μεσανυχτα Plum Δαμάσκηνο Red Κοκκινο Yellow Κιτρινο Custom... Τροποποιηση &Settings Ρυθμισεις Application &Language... Γλωσσα εφαρμογης... &Help Βοηθεια &About Σχετικα About &Qt Σχετικα με το Qt New Game Νεο παιχνιδι Original Αυθεντικο Branch Κλάδος Line Γραμμη Random Τυχαία Algorithm: Αλγορυθμος: Difficulty: Δυσκολια: Seed: Σπόρος: Question Ερωτηση Do you want to restart? Θέλετε να κάνετε επανεκκίνηση; Details Λεπτομερειες <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Αλγορυυμος:</b> %1<br><b>Δυσκολια:</b> %2<br><b>Καρπος:</b> %L3</p> About Peg-E Σχετικα με το Peg-E Peg elimination game Peg παιχνίδι εξάλειψης Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Released under the <a href=%1>GPL 3</a> license Uses icons from the <a href=%1>Oxygen</a> icon theme Χρησιμοποιηση εικονιδιων απο το <a href=%1>Oxygen</a> icon theme Used under the <a href=%1>LGPL 3</a> license Χρησιμοποιηση κατα την <a href=%1>LGPL 3</a> αδεια χρησης peg-e-1.3.2/translations/pege_en.ts000066400000000000000000000140661435730362100172200ustar00rootroot00000000000000 Board Success Game Over LocaleDialog Select application language: <System Language> Note Please restart this application for the change in language to take effect. Window Peg-E &Game &New &Restart Game &Details Quit &Move &Undo &Redo &Appearance Blue Charcoal Green Midnight Plum Red Yellow Custom... &Settings Application &Language... &Help &About About &Qt New Game Original Branch Line Random Algorithm: Difficulty: Seed: Question Do you want to restart? Details <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> About Peg-E Peg elimination game Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Uses icons from the <a href=%1>Oxygen</a> icon theme Used under the <a href=%1>LGPL 3</a> license peg-e-1.3.2/translations/pege_eo.ts000066400000000000000000000135131435730362100172150ustar00rootroot00000000000000 Board Success Sukceson! Game Over Malsukceson LocaleDialog Select application language: Elektu lingvon de programo: <System Language> <System Language> Note Noto Please restart this application for the change in language to take effect. Bonvolu rekomencu ĉi tiun programon, tial la lingvo sanĝiĝas. Window Peg-E Peg-E &Game Ludo &New Nova &Restart Game Rekomenci la ludon &Details Detaloj Quit Fini &Move Movi &Undo &Redo Refari &Appearance Aspekto Blue Blua Charcoal Lignokarbo Green Verda Midnight Mezonokta Plum Pruna Red Roĝa Yellow Flava Custom... Kotimo &Settings Agordoj Application &Language... Lingvo de programo &Help Helpo &About Pri About &Qt New Game Nova ludo Original Branch Line Random Hazarda Algorithm: Difficulty: Seed: Question Do you want to restart? Ĉu vi volas rekomenci Details <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> About Peg-E Pri Peg-E Peg elimination game Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Uses icons from the <a href=%1>Oxygen</a> icon theme Used under the <a href=%1>LGPL 3</a> license peg-e-1.3.2/translations/pege_es.ts000066400000000000000000000141701435730362100172210ustar00rootroot00000000000000 Board Success Éxito Game Over Fin del juego LocaleDialog Select application language: Selección de idioma: <System Language> <Idioma del Sistema> Note Nota Please restart this application for the change in language to take effect. Por favor reinicia la aplicación para que se produzca el cambio de idioma. Window Peg-E Peg-E &Game &Juego &New &Nuevo &Restart Game &Reiniciar juego &Details &Detalles Quit Salir &Move &Mover &Undo &Deshacer &Redo &Rehacer &Appearance &Apariencia Blue Azul Charcoal Carbón Green Verde Midnight Medianoche Plum Ciruela Red Rojo Yellow Amarillo Custom... Personalizar... &Settings &Configuración Application &Language... &Idioma de la aplicación &Help &Ayuda &About &Acerca de About &Qt Acerca de &Qt New Game Nuevo juego Original Original Branch Rama Line Línea Random Aleatorio Algorithm: Algoritmo: Difficulty: Dificultad: Seed: Semilla: Question Pregunta Do you want to restart? ¿Quieres volver a empezar? Details Detalles <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritmo:</b> %1<br><b>Dificultad:</b> %2<br><b>Semilla:</b> %L3</p> About Peg-E Acerca de Peg-E Peg elimination game Juego de eliminación tipo Peg Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Distribuido bajo licencia <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Utiliza los iconos del tema <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Distribuido bajo licencia <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_fr.ts000066400000000000000000000143031435730362100172170ustar00rootroot00000000000000 Board Success Succès Game Over Partie terminée LocaleDialog Select application language: Sélectionner la langue de l'application : <System Language> <Langue du système> Note Remarque Please restart this application for the change in language to take effect. Veuillez relancer l'application pour que la modification prenne effet. Window Peg-E Peg-E &Game &Jeu &New &Nouveau &Restart Game &Redémarrer la partie &Details &Détails Quit Quitter &Move &Déplacer &Undo &Annuler &Redo &Rétablir &Appearance &Apparence Blue Bleu Charcoal Marron Green Vert Midnight Bleu nuit Plum Prune Red Rouge Yellow Jaune Custom... Personnalisée... &Settings &Paramètres Application &Language... &Langue de l'application… &Help &Aide &About À &propos de… About &Qt À propos de &Qt New Game Nouveau jeu Original Original Branch Branche Line Ligne Random Aléatoire Algorithm: Algorithme : Difficulty: Difficulté : Seed: Grain : Question Question Do you want to restart? Voulez-vous redémarrer ? Details Détails <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algorithme : </b> %1<br><b>Difficulté : </b> %2<br><b>Grain : </b> %L3</p> About Peg-E À propos de Peg-E Peg elimination game Peg, un jeu d'élimination Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Distribué sous licence GNU <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Utilise les icônes du thème <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Distribué sous licence GNU <a href=%1>GPL 3</a> peg-e-1.3.2/translations/pege_he.ts000066400000000000000000000143561435730362100172140ustar00rootroot00000000000000 Board Success הצלחה Game Over המשחק נגמר LocaleDialog Select application language: בחר שפת יישום: <System Language> <שפת מערכת> Note הערה Please restart this application for the change in language to take effect. אנא אתחל את יישום זה כדי להחיל את השינוי בשפה. Window Peg-E &Game &משחק &New &חדש &Restart Game &התחל מחדש &Details &פרטים Quit יציאה &Move &צעד &Undo &בטל &Redo בצ&ע שוב &Appearance &מראה Blue כחול Charcoal פחם Green ירוק Midnight חצות Plum שזיף Red אדום Yellow צהוב Custom... מותאם... &Settings &הגדרות Application &Language... &שפת יישום... &Help &עזרה &About &אודות About &Qt אודות &Qt New Game משחק חדש Original מקורי Branch מסועף Line שורה Random אקראי Algorithm: אלגוריתם: Difficulty: קושי: Seed: זרעים: Question שאלה Do you want to restart? האם ברצונך להתחיל מחדש? Details פרטים <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>אלגוריתם:</b> %1<br><b>קושי:</b> %2<br><b>זרעים:</b> %L3</p> About Peg-E אודות ‫Peg-E Peg elimination game משחק לוח מחשבת Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license משוחרר תחת הרשיון ‫<a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme סמלים נלקחו מתוך פרויקט <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license בשימוש תחת הרשיון <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_lt.ts000066400000000000000000000142441435730362100172330ustar00rootroot00000000000000 Board Success Sėkmė Game Over Žaidimas baigtas LocaleDialog Select application language: Pasirinkite programos kalbą: <System Language> <Sistemos kalba> Note Pastaba Please restart this application for the change in language to take effect. Kad įsigaliotų kalbos pakeitimai, prašome paleisti programą iš naujo. Window Peg-E Peg-E &Game Žai&dimas &New &Naujas &Restart Game Žaisti iš naujo &Details Iš&samiau Quit Baigti &Move &Judesiai &Undo An&uliuoti &Redo Pe&rdaryti &Appearance Išv&aizda Blue Mėlyna Charcoal Anglies Green Žalia Midnight Vidurnakčio Plum Slyvos Red Raudona Yellow Geltona Custom... Tinkinta... &Settings Nu&statymai Application &Language... Programos ka&lba &Help &Pagalba &About &Apie About &Qt Apie &Qt New Game Naujas žaidimas Original Originalus Branch Šaka Line Linija Random Atsitiktinis Algorithm: Algoritmas: Difficulty: Sunkumas: Seed: Išdėstymas: Question Klausimas Do you want to restart? Ar norite pradėti iš naujo? Details Išsamiau <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritmas:</b> %1<br><b>Sunkumas:</b> %2<br><b>Išdėstymas:</b> %L3</p> About Peg-E Apie Peg-E Peg elimination game Kamštelių šalinimo žaidimas Copyright &copy; 2009-%1 Graeme Gott Autorių Teisės &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Išleista pagal <a href=%1>GPL 3</a> licenciją Uses icons from the <a href=%1>Oxygen</a> icon theme Naudoja piktogramas iš <a href=%1>Oxygen</a> piktogramų temos Used under the <a href=%1>LGPL 3</a> license Panaudota pagal <a href=%1>LGPL 3</a> licenciją peg-e-1.3.2/translations/pege_ms.ts000066400000000000000000000141261435730362100172320ustar00rootroot00000000000000 Board Success Berjaya Game Over Permainan Tamat LocaleDialog Select application language: Pilih bahasa aplikasi: <System Language> <Bahasa Sistem> Note Nota Please restart this application for the change in language to take effect. Sila mulakan semula aplikasi ini supaya perubahan bahasa berkesan. Window Peg-E Peg-E &Game &Permainan &New &Baru &Restart Game &Mulakan Semula Permainan &Details P&erincian Quit Keluar &Move &Gerakan &Undo Buat &Asal &Redo Buat &Semula &Appearance Pe&nampilan Blue Biru Charcoal Arang Green Hijau Midnight Tengah Malam Plum Plum Red Merah Yellow Kuning Custom... Suai... &Settings &Tetapan Application &Language... &Bahasa Aplikasi... &Help Ba&ntuan &About Perih&al About &Qt Perihal &Qt New Game Permainan Baru Original Asal Branch Cabang Line Baris Random Rawak Algorithm: Algoritma: Difficulty: Kesukaran: Seed: Pilihan: Question Soalan Do you want to restart? Anda hendak mulakan semula? Details Perincian <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritma:</b> %1<br><b>Kesukaran:</b> %2<br><b>Pilihan:</b> %L3</p> About Peg-E Perihal Peg-E Peg elimination game Permainan penyingkiran pepaku Copyright &copy; 2009-%1 Graeme Gott Hakcipta &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Dikeluarkan dibawah lesen <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Guna ikon dari tema ikon <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Digunakan bawah lesen <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_nl.ts000066400000000000000000000141211435730362100172170ustar00rootroot00000000000000 Board Success Gelukt Game Over Einde spel LocaleDialog Select application language: Selecteer programma taal: <System Language> <Systeemtaal> Note Noteren Please restart this application for the change in language to take effect. Herstarten van programma is nodig om van taal te veranderen. Window Peg-E Peg-E &Game &Spel &New &Nieuw &Restart Game &Herstart Spel &Details &Informatie Quit Einde &Move &Verplaats &Undo &Ongedaan maken &Redo &Opnieuw &Appearance &Uiterlijk Blue Blauw Charcoal Houtskool Green Groen Midnight Donkerzwart Plum Paars Red Rood Yellow Geel Custom... Gebruik... &Settings &Instelling Application &Language... Programma &Taal... &Help &Help &About &Over About &Qt Over &Qt New Game Nieuw Spel Original Orgineel Branch Afdeling Line Lijn Random Willekeurige Algorithm: Algoritme: Difficulty: Moeilijkheid: Seed: Seed: Question Vraag Do you want to restart? Wil je herstarten? Details Informatie <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritme:</b> %1<br><b>Moeilijkheid:</b> %2<br><b>Seed:</b> %L3</p> About Peg-E Over Peg-E Peg elimination game Peg eliminatie spel Copyright &copy; 2009-%1 Graeme Gott Auteursrecht &copy;2012-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Uitgebracht onde de <a href=%1>GPL 3</a> overeenkomst Uses icons from the <a href=%1>Oxygen</a> icon theme Gebruik iconen van de <a href=%1>Oxygen</a> icon onderwerp Used under the <a href=%1>LGPL 3</a> license Gebruikt onder de <a href=%1>OLGPL 3</a> overeenkomst peg-e-1.3.2/translations/pege_pl.ts000066400000000000000000000141161435730362100172250ustar00rootroot00000000000000 Board Success Sukces Game Over Koniec gry LocaleDialog Select application language: Wybierz język programu: <System Language> <Język systemowy> Note Uwaga Please restart this application for the change in language to take effect. Proszę ponownie uruchomić ten program, aby zastosować zmianę języka. Window Peg-E Peg-E &Game &Gra &New &Nowa &Restart Game &Uruchom ponownie grę &Details &Szczególy Quit Zakończ &Move &Ruch &Undo &Cofnij &Redo &Powtórz &Appearance &Wygląd Blue Niebieski Charcoal Węgiel Green Zielony Midnight Północ Plum Śliwka Red Czerwony Yellow Żółty Custom... Własny... &Settings &Ustawienia Application &Language... &Język programu... &Help &Pomoc &About &O About &Qt O &Qt New Game Nowa gra Original Oryginalny Branch Gałąź Line Linia Random Przypadkowo Algorithm: Algorytm: Difficulty: Trudność: Seed: Poziom: Question Pytanie Do you want to restart? Czy chcesz ponownie zacząć? Details Szczegóły <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algorytm:</b> %1<br><b>Trudność:</b> %2<br><b>Poziom:</b> %L3</p> About Peg-E O Peg-E Peg elimination game Gra eliminacji Peg Copyright &copy; 2009-%1 Graeme Gott Prawo autorskie &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Wydano na licencji <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Wykorzystane ikony z motywu ikon <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Wydano na licencji <a href=%1>GPL 3</a> peg-e-1.3.2/translations/pege_pt.ts000066400000000000000000000141471435730362100172410ustar00rootroot00000000000000 Board Success Sucesso Game Over Fim do Jogo LocaleDialog Select application language: Selecione o idioma da aplicação: <System Language> <Idioma do Sistema> Note Nota Please restart this application for the change in language to take effect. Por favor reinicie a aplicação para a alteração ao idioma surtir efeito. Window Peg-E Peg-E &Game &Jogo &New &Novo &Restart Game &Reiniciar Jogo &Details &Detalhes Quit Sair &Move &Mover &Undo &Desfazer &Redo &Refazer &Appearance &Aparência Blue Azul Charcoal Carvão Green Verde Midnight Meia-Noite Plum Ameixa Red Vermelho Yellow Amarelo Custom... Personalizado... &Settings D&efinições Application &Language... &Idioma da Aplicação &Help &Ajuda &About S&obre About &Qt Sobre o &Qt New Game Novo Jogo Original Original Branch Ramo Line Linha Random Aleatório Algorithm: Algoritmo: Difficulty: Dificuldade: Seed: Semear: Question Questão Do you want to restart? Quer reiniciar? Details Detalhes <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritmo:</b> %1<br><b>Dificuldade:</b> %2<br><b>Semear:</b> %L3</p> About Peg-E Sobre o Peg-E Peg elimination game Jogo de eliminação Peg Copyright &copy; 2009-%1 Graeme Gott Direitos de autor &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Lançado sob a licença <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Usa ícones do tema de ícones <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Usado sob a licença <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_ro.ts000066400000000000000000000141521435730362100172320ustar00rootroot00000000000000 Board Success Succes Game Over Joc terminat LocaleDialog Select application language: Selectaţi limba aplicaţiei: <System Language> <Limbaj Sistem> Note Notă Please restart this application for the change in language to take effect. Vă rugăm reporniţi această aplicaţie pentru ca schimbarea limbii să aibă efect. Window Peg-E Peg-E &Game &Joc &New &Nou &Restart Game &Restart Joc &Details &Detalii Quit Ieşire &Move &Mută &Undo Anulează &Redo Reface &Appearance &Aspect Blue Albastru Charcoal Cărbune Green Verde Midnight Miezul nopţii Plum Prună Red Roşu Yellow Galben Custom... Personalizat... &Settings &Setări Application &Language... &Limbă aplicaţie... &Help &Ajutor &About &Despre About &Qt Despre &Qt New Game Joc nou Original Original Branch Ramificaţie Line Linie Random Aleator Algorithm: Algoritm Difficulty: Dificultate: Seed: Sămînţă: Question Întrebare Do you want to restart? Doriţi să reporniţi? Details Detalii <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritm:</b> %1<br><b>Dificultate:</b> %2<br><b>Sămînţă:</b> %L3</p> About Peg-E Despre Peg-E Peg elimination game Peg - joc de eliminare Copyright &copy; 2009-%1 Graeme Gott Toate drepturile rezervate &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Lansat sub licenţă <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Foloseşte iconuri din tema <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Folosit sub licenţă <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_ru.ts000066400000000000000000000152351435730362100172430ustar00rootroot00000000000000 Board Success Вы выиграли Game Over Игра закончена LocaleDialog Select application language: Выберите язык приложения: <System Language> <Язык системы> Note Заметка Please restart this application for the change in language to take effect. Пожалуйста, перезапустите программу, чтобы изменение используемого языка вступило в силу. Window Peg-E Peg-E &Game &Игра &New &Новая &Restart Game &Перезапустить игру &Details &Детали Quit Выйти &Move &Движение &Undo &Отменить &Redo &Вернуть &Appearance &Цвет Blue Голубой Charcoal Угольный Green Зелёный Midnight Ночной Plum Сливовый Red Красный Yellow Жёлтый Custom... Произвольный... &Settings &Настройки Application &Language... &Язык приложения... &Help &Помощь &About &О программе About &Qt О &Qt New Game Новая игра Original Оригинальный Branch Веточный Line Линейный Random Случайное Algorithm: Алгоритм: Difficulty: Сложность: Seed: Зерно: Question Вопрос Do you want to restart? Хотите перезапустить игру? Details Детали <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Алгоритм:</b> %1<br><b>Сложность:</b> %2<br><b>Зерно:</b> %L3</p> About Peg-E О Peg-E Peg elimination game Peg — игра, в которой нужно очистить игровое поле Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Эта программа выпущена под <a href=%1>GPL 3</a> Uses icons from the <a href=%1>Oxygen</a> icon theme Используются иконки из темы иконок <a href=%1>Oxygen</a> Used under the <a href=%1>LGPL 3</a> license Используются под <a href=%1>LGPL 3</a> peg-e-1.3.2/translations/pege_sv.ts000066400000000000000000000140161435730362100172410ustar00rootroot00000000000000 Board Success Succé Game Over Slutspelat LocaleDialog Select application language: Välj programspråk: <System Language> <Systemspråk> Note Notis Please restart this application for the change in language to take effect. Starta om programmet för att byta språk. Window Peg-E Peg-E &Game &Spel &New &Nytt &Restart Game &Starta om spelet &Details &Detaljer Quit Avsluta &Move &Flytta &Undo &Ångra &Redo &Upprepa &Appearance &Utseende Blue Blå Charcoal Kol Green Grön Midnight Midnatt Plum Plommon Red Röd Yellow Gul Custom... Anpassa... &Settings &Inställningar Application &Language... Program&språk... &Help &Hjälp &About &Om About &Qt Om &Qt New Game Nytt spel Original Original Branch Gren Line Linje Random Slumpmässigt Algorithm: Algoritm: Difficulty: Svårighet: Seed: Slumptal: Question Fråga Do you want to restart? Vill du starta om? Details Detaljer <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritm:</b> %1<br><b>Svårighet:</b> %2<br><b>Slumptal:</b> %L3</p> About Peg-E Om Peg-E Peg elimination game Peggelimineringsspel Copyright &copy; 2009-%1 Graeme Gott Copyright &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license Publicerat under <a href=%1>GPL 3</a>- licensen Uses icons from the <a href=%1>Oxygen</a> icon theme Använder ikoner från <a href=%1>Oxygen</a> ikontema Used under the <a href=%1>LGPL 3</a> license Använt under <a href=%1>LGPL 3</a> -licensen peg-e-1.3.2/translations/pege_te.ts000066400000000000000000000162161435730362100172250ustar00rootroot00000000000000 Board Success విజయం Game Over ఆట సమాప్తం LocaleDialog Select application language: అనువర్తన భాషను ఎంచుకోండి: <System Language> <System Language> Note గమనిక Please restart this application for the change in language to take effect. భాషలో మార్పు అమలులోకి రావడానికి దయచేసి ఈ అనువర్తనాన్ని పునఃప్రారంభించండి. Window Peg-E పెగ్-ఇ &Game &ఆట &New &కొత్త &Restart Game &ఆటను పునఃప్రారంభించు &Details &వివరాలు Quit నిష్క్రమించు &Move &కదులు &Undo &అన్ డూ &Redo &రీడు &Appearance &స్వరూపం Blue నీలం Charcoal బొగ్గు Green ఆకుపచ్చ Midnight అర్ధరాత్రి Plum ప్లం Red ఎరుపు Yellow పసుపు Custom... కస్టమ్... &Settings &సెట్టింగులు Application &Language... అనువర్తనం &భాష... &Help &సహాయం &About &గురించి About &Qt &Qt గురించి New Game కొత్త ఆట Original అసలైనది Branch శాఖ Line గీత Random పద్ధతి లేకుండా Algorithm: అల్గోరిథం Difficulty: కష్టం Seed: విత్తనం: Question ప్రశ్న Do you want to restart? మీరు పునఃప్రారంభించాలనుకుంటున్నారా? Details వివరాలు <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>అల్గోరిథం:</b> %1<br><b>కష్ట్టం:</b> %2<br><b>విత్తనం:</b> %L3</p> About Peg-E పెగ్-ఇ గురించి Peg elimination game పెగ్ తొలగించే ఆట Copyright &copy; 2009-%1 Graeme Gott కాపీరైట్ &కాపీ; 2009-%1 గ్రేమ్ గాట్ Released under the <a href=%1>GPL 3</a> license <a href=%1>GPL3</a> లైసెన్స్ కింద విడుదల చేయబడింది Uses icons from the <a href=%1>Oxygen</a> icon theme <a href=%1>ఆక్స్సిజన్</a> చిహ్నం థీమ్ నుండి చిహ్నాలను ఉపయోగిస్తుంది Used under the <a href=%1>LGPL 3</a> license <a href=%1>LGPL3</a> లైసెన్స్ కింద ఉపయోగించబడినది peg-e-1.3.2/translations/pege_tr.ts000066400000000000000000000142321435730362100172360ustar00rootroot00000000000000 Board Success Başarılı Game Over Oyun Bitti LocaleDialog Select application language: Uygulama dilini seçin: <System Language> <Sistem Dili> Note Not Please restart this application for the change in language to take effect. Dil değişikliğinin etkin olması için lütfen bu uygulamayı yeniden başlatın. Window Peg-E Peg-E &Game &Oyun &New &Yeni &Restart Game &Oyunu Yeniden Başlat &Details &Ayrıntılar Quit Çık &Move &Hamle &Undo &Geri Al &Redo &Yinele &Appearance &Görünüm Blue Mavi Charcoal Kömür Siyahı Green Yeşil Midnight Gece Mavisi Plum Erik Moru Red Kırmızı Yellow Sarı Custom... Özel... &Settings &Ayarlar Application &Language... Uygulama &Dili &Help &Yardım &About &Hakkında About &Qt &Qt Hakkında New Game Yeni Oyun Original Orijinal Branch Dal Line Çizgi Random Rastgele Algorithm: Algoritma: Difficulty: Zorluk: Seed: Çekirdek: Question Soru Do you want to restart? Yeniden başlamak istiyor musunuz? Details Ayrıntılar <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>Algoritma:</b> %1<br><b>Zorluk:</b> %2<br><b>Çekirdek:</b> %L3</p> About Peg-E Peg-E Hakkında Peg elimination game Peg eleme oyunu Copyright &copy; 2009-%1 Graeme Gott Telif hakları saklıdır &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license <a href=%1>GPL 3</a> lisansı altında yayınlanmıştır Uses icons from the <a href=%1>Oxygen</a> icon theme <a href=%1>Oxygen</a> simge temasından simgeler kullanılıyor Used under the <a href=%1>LGPL 3</a> license <a href=%1>GPL 3</a> lisansı altında kullanılıyor peg-e-1.3.2/translations/pege_zh.ts000066400000000000000000000141151435730362100172320ustar00rootroot00000000000000 Board Success 恭喜你,你赢了! Game Over 游戏结束 LocaleDialog Select application language: 选择本游戏的语言: <System Language> <系统语言> Note 提示 Please restart this application for the change in language to take effect. 请重启本程序使语言设置生效。 Window Peg-E Peg-E &Game &游戏 &New &新游戏 &Restart Game &重新开始 &Details &本局游戏详情 Quit 退出程序 &Move &移动 &Undo &悔棋(撤销) &Redo 重做 &Appearance 棋子颜色 Blue Charcoal 碳灰 Green 绿 Midnight 深蓝 Plum 紫红 Red Yellow Custom... 自定义... &Settings &设置 Application &Language... 程序 &语言... &Help &帮助 &About &关于 About &Qt 关于 &Qt New Game 新建游戏 Original 原始 Branch 分支 Line 线性 Random 随机 Algorithm: 算法: Difficulty: 难度: Seed: 种子: Question 问题 Do you want to restart? 你想要重新开始本局吗? Details 本局游戏详情 <p><b>Algorithm:</b> %1<br><b>Difficulty:</b> %2<br><b>Seed:</b> %L3</p> <p><b>算法:</b> %1<br><b>难度:</b> %2<br><b>排序:</b> %L3</p> About Peg-E 关于 Peg-E Peg elimination game 一款孔明棋游戏 Copyright &copy; 2009-%1 Graeme Gott 版权所有 &copy; 2009-%1 Graeme Gott Released under the <a href=%1>GPL 3</a> license 基于 <a href=%1>GPL 3</a> 协议发布 Uses icons from the <a href=%1>Oxygen</a> icon theme 使用 <a href=%1>Oxygen</a> 风格图标 Used under the <a href=%1>LGPL 3</a> license 在 <a href=%1>LGPL 3</a> 协议下授权用户使用 peg-e-1.3.2/windows/000077500000000000000000000000001435730362100142105ustar00rootroot00000000000000peg-e-1.3.2/windows/installer.nsi000066400000000000000000000163221435730362100167240ustar00rootroot00000000000000;-------------------------------- ;Definitions !define APPNAME "Peg-E" !define VERSIONMAJOR 1 !define VERSIONMINOR 3 !define VERSIONPATCH 2 !define APPVERSION "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONPATCH}" !define ABOUTURL "https://gottcode.org/peg-e/" ;-------------------------------- ;Includes !include "MUI2.nsh" !include "FileFunc.nsh" !include "TextFunc.nsh" ;-------------------------------- ;General ;Use highest compression SetCompressor /SOLID /FINAL lzma ;Name and file Name "${APPNAME}" OutFile "${APPNAME}_${APPVERSION}.exe" ;Default installation folder InstallDir "$PROGRAMFILES64\${APPNAME}" InstallDirRegKey HKLM "Software\${APPNAME}" "" ;Request application privileges for Windows Vista RequestExecutionLevel admin ;-------------------------------- ;Variables Var StartMenuFolder ;-------------------------------- ;Interface Settings !define MUI_ICON "..\icons\peg-e.ico" !define MUI_UNICON "..\icons\peg-e.ico" !define MUI_ABORTWARNING !define MUI_LANGDLL_ALLLANGUAGES ;-------------------------------- ;Language Selection Dialog Settings ;Remember the installer language !define MUI_LANGDLL_REGISTRY_ROOT "HKLM" !define MUI_LANGDLL_REGISTRY_KEY "Software\${APPNAME}" !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language" ;-------------------------------- ;Start Menu Folder Page Settings !define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKLM" !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\${APPNAME}" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder" ;-------------------------------- ;Finish Page Settings !define MUI_FINISHPAGE_RUN "$INSTDIR\${APPNAME}.exe" !define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\ReadMe.txt" ;-------------------------------- ;Pages !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE "..\COPYING" !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;first language is the default language !insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "SpanishInternational" !insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Japanese" !insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Italian" !insertmacro MUI_LANGUAGE "Dutch" !insertmacro MUI_LANGUAGE "Danish" !insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Norwegian" !insertmacro MUI_LANGUAGE "NorwegianNynorsk" !insertmacro MUI_LANGUAGE "Finnish" !insertmacro MUI_LANGUAGE "Greek" !insertmacro MUI_LANGUAGE "Russian" !insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "PortugueseBR" !insertmacro MUI_LANGUAGE "Polish" !insertmacro MUI_LANGUAGE "Ukrainian" !insertmacro MUI_LANGUAGE "Czech" !insertmacro MUI_LANGUAGE "Slovak" !insertmacro MUI_LANGUAGE "Croatian" !insertmacro MUI_LANGUAGE "Bulgarian" !insertmacro MUI_LANGUAGE "Hungarian" !insertmacro MUI_LANGUAGE "Thai" !insertmacro MUI_LANGUAGE "Romanian" !insertmacro MUI_LANGUAGE "Latvian" !insertmacro MUI_LANGUAGE "Macedonian" !insertmacro MUI_LANGUAGE "Estonian" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Lithuanian" !insertmacro MUI_LANGUAGE "Slovenian" !insertmacro MUI_LANGUAGE "Serbian" !insertmacro MUI_LANGUAGE "SerbianLatin" !insertmacro MUI_LANGUAGE "Arabic" !insertmacro MUI_LANGUAGE "Farsi" !insertmacro MUI_LANGUAGE "Hebrew" !insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Mongolian" !insertmacro MUI_LANGUAGE "Luxembourgish" !insertmacro MUI_LANGUAGE "Albanian" !insertmacro MUI_LANGUAGE "Breton" !insertmacro MUI_LANGUAGE "Belarusian" !insertmacro MUI_LANGUAGE "Icelandic" !insertmacro MUI_LANGUAGE "Malay" !insertmacro MUI_LANGUAGE "Bosnian" !insertmacro MUI_LANGUAGE "Kurdish" !insertmacro MUI_LANGUAGE "Irish" !insertmacro MUI_LANGUAGE "Uzbek" !insertmacro MUI_LANGUAGE "Galician" !insertmacro MUI_LANGUAGE "Afrikaans" !insertmacro MUI_LANGUAGE "Catalan" !insertmacro MUI_LANGUAGE "Esperanto" !insertmacro MUI_LANGUAGE "Asturian" ;-------------------------------- ;Reserve Files !insertmacro MUI_RESERVEFILE_LANGDLL ;-------------------------------- ;Installer Functions Function .onInit !insertmacro MUI_LANGDLL_DISPLAY FunctionEnd ;-------------------------------- ;Installer Section Section "install" ;Remove previous installs !include removeprevious.nsh ;Copy files SetOutPath "$INSTDIR" File /r "..\${APPNAME}\*" ;Registry information for add/remove programs WriteRegStr HKLM "Software\${APPNAME}" "" "$INSTDIR" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayName" "${APPNAME}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "Publisher" "Graeme Gott" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "UninstallString" "$\"$INSTDIR\Uninstall.exe$\"" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "QuietUninstallString" "$\"$INSTDIR\Uninstall.exe$\" /S" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "InstallLocation" "$\"$INSTDIR$\"" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayIcon" "$\"$INSTDIR\${APPNAME}.exe$\"" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "URLInfoAbout" "$\"${ABOUTURL}$\"" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayVersion" "${APPVERSION}" WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "VersionMajor" ${VERSIONMAJOR} WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "VersionMinor" ${VERSIONMINOR} WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "NoModify" 1 WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "NoRepair" 1 ${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2 IntFmt $0 "0x%08X" $0 WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "EstimatedSize" "$0" ;Create uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" ;Create shortcut SetShellVarContext all !insertmacro MUI_STARTMENU_WRITE_BEGIN Application CreateDirectory "$SMPROGRAMS\$StartMenuFolder" CreateShortCut "$SMPROGRAMS\$StartMenuFolder\${APPNAME}.lnk" "$INSTDIR\${APPNAME}.exe" !insertmacro MUI_STARTMENU_WRITE_END SetShellVarContext current SectionEnd ;-------------------------------- ;Uninstaller Functions Function un.onInit !insertmacro MUI_UNGETLANGUAGE FunctionEnd ;-------------------------------- ;Uninstaller Section Section "Uninstall" ; Remove from registry DeleteRegKey HKLM "Software\${APPNAME}" DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" ;Remove files !include files.nsh Delete "$INSTDIR\Uninstall.exe" ;Remove directories !include dirs.nsh RMDir "$INSTDIR" ;Remove shortcut SetShellVarContext all !insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder Delete "$SMPROGRAMS\$StartMenuFolder\${APPNAME}.lnk" RMDir "$SMPROGRAMS\$StartMenuFolder" SetShellVarContext current SectionEnd peg-e-1.3.2/windows/removeprevious.nsh000066400000000000000000000040451435730362100200170ustar00rootroot00000000000000Delete "$INSTDIR\COPYING.txt" Delete "$INSTDIR\CREDITS.txt" Delete "$INSTDIR\libgcc_s_dw2-1.dll" Delete "$INSTDIR\mingwm10.dll" Delete "$INSTDIR\Qt5Core.dll" Delete "$INSTDIR\Qt5Gui.dll" Delete "$INSTDIR\Qt5Widgets.dll" Delete "$INSTDIR\QtCore4.dll" Delete "$INSTDIR\QtGui4.dll" Delete "$INSTDIR\translations\qtbase_bg.qm" Delete "$INSTDIR\translations\qtbase_ca.qm" Delete "$INSTDIR\translations\qtbase_cs.qm" Delete "$INSTDIR\translations\qtbase_da.qm" Delete "$INSTDIR\translations\qtbase_de.qm" Delete "$INSTDIR\translations\qtbase_en.qm" Delete "$INSTDIR\translations\qtbase_es.qm" Delete "$INSTDIR\translations\qtbase_fi.qm" Delete "$INSTDIR\translations\qtbase_fr.qm" Delete "$INSTDIR\translations\qtbase_gd.qm" Delete "$INSTDIR\translations\qtbase_he.qm" Delete "$INSTDIR\translations\qtbase_hu.qm" Delete "$INSTDIR\translations\qtbase_it.qm" Delete "$INSTDIR\translations\qtbase_ja.qm" Delete "$INSTDIR\translations\qtbase_ko.qm" Delete "$INSTDIR\translations\qtbase_lv.qm" Delete "$INSTDIR\translations\qtbase_pl.qm" Delete "$INSTDIR\translations\qtbase_ru.qm" Delete "$INSTDIR\translations\qtbase_sk.qm" Delete "$INSTDIR\translations\qtbase_uk.qm" Delete "$INSTDIR\translations\qt_gl.qm" Delete "$INSTDIR\translations\qt_help_cs.qm" Delete "$INSTDIR\translations\qt_help_da.qm" Delete "$INSTDIR\translations\qt_help_de.qm" Delete "$INSTDIR\translations\qt_help_fr.qm" Delete "$INSTDIR\translations\qt_help_gl.qm" Delete "$INSTDIR\translations\qt_help_hu.qm" Delete "$INSTDIR\translations\qt_help_it.qm" Delete "$INSTDIR\translations\qt_help_ja.qm" Delete "$INSTDIR\translations\qt_help_ko.qm" Delete "$INSTDIR\translations\qt_help_pl.qm" Delete "$INSTDIR\translations\qt_help_ru.qm" Delete "$INSTDIR\translations\qt_help_sk.qm" Delete "$INSTDIR\translations\qt_help_sl.qm" Delete "$INSTDIR\translations\qt_help_uk.qm" Delete "$INSTDIR\translations\qt_help_zh_CN.qm" Delete "$INSTDIR\translations\qt_help_zh_TW.qm" Delete "$INSTDIR\translations\qt_lt.qm" Delete "$INSTDIR\translations\qt_pt.qm" Delete "$INSTDIR\translations\qt_sl.qm" Delete "$INSTDIR\translations\qt_sv.qm" peg-e-1.3.2/windows_deploy.bat000066400000000000000000000033531435730362100162600ustar00rootroot00000000000000@ECHO ON>..\peg-e\windows\dirs.nsh @ECHO ON>..\peg-e\windows\files.nsh @ECHO OFF SET SRCDIR=..\peg-e SET APP=Peg-E SET VERSION=1.3.2 ECHO Copying executable MKDIR %SRCDIR%\%APP% COPY %APP%.exe %SRCDIR%\%APP%\%APP%.exe >nul ECHO Copying translations SET TRANSLATIONS=%SRCDIR%\%APP%\translations MKDIR %TRANSLATIONS% COPY *.qm %TRANSLATIONS% >nul CD %SRCDIR% ECHO Copying icons SET ICONS=%APP%\icons\hicolor MKDIR %ICONS% XCOPY /Q /S /Y icons\oxygen\hicolor %ICONS% >nul ECHO Copying Qt %QTDIR%\bin\windeployqt.exe --verbose 0 --no-opengl-sw --no-system-d3d-compiler --no-svg %APP%\%APP%.exe RMDIR /S /Q %APP%\imageformats ECHO Creating ReadMe TYPE README >> %APP%\ReadMe.txt ECHO. >> %APP%\ReadMe.txt ECHO. >> %APP%\ReadMe.txt ECHO CREDITS >> %APP%\ReadMe.txt ECHO ======= >> %APP%\ReadMe.txt ECHO. >> %APP%\ReadMe.txt TYPE CREDITS >> %APP%\ReadMe.txt ECHO. >> %APP%\ReadMe.txt ECHO. >> %APP%\ReadMe.txt ECHO NEWS >> %APP%\ReadMe.txt ECHO ==== >> %APP%\ReadMe.txt ECHO. >> %APP%\ReadMe.txt TYPE ChangeLog >> %APP%\ReadMe.txt ECHO Creating installer CD %APP% SETLOCAL EnableDelayedExpansion SET "parentfolder=%__CD__%" FOR /R . %%F IN (*) DO ( SET "var=%%F" ECHO Delete "$INSTDIR\!var:%parentfolder%=!" >> ..\windows\files.nsh ) FOR /R /D %%F IN (*) DO ( TYPE ..\windows\dirs.nsh > temp.txt SET "var=%%F" ECHO RMDir "$INSTDIR\!var:%parentfolder%=!" > ..\windows\dirs.nsh TYPE temp.txt >> ..\windows\dirs.nsh ) DEL temp.txt ENDLOCAL CD .. makensis.exe /V0 windows\installer.nsi ECHO Making portable MKDIR %APP%\Data COPY COPYING %APP%\COPYING.txt >nul ECHO Creating compressed file CD %APP% 7z a -mx=9 %APP%_%VERSION%.zip * >nul CD .. MOVE %APP%\%APP%_%VERSION%.zip . >nul ECHO Cleaning up RMDIR /S /Q %APP% DEL windows\dirs.nsh DEL windows\files.nsh