babiloo-2.0.11/run.py0000644000017300007100000000576311445134342014331 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. programFolder = None import sys, os, platform if os.path.isdir(sys.path[0]): #for Linux is /program_folder/ programFolder = sys.path[0] else: #for Windows is the /program_folder/run.py programFolder = os.path.dirname(sys.path[0]) if platform.system() == "Windows": sys.stderr = open(os.path.join(programFolder,"babiloo.log"), "w") #The EXE file in windows will think that outputs here are errors, and it will show annoying mesage about run.exe.log import logging from optparse import OptionParser import core.modules.configuration as conf # # Initial path #sys.path.insert(0, os.path.dirname(os.path.realpath(__file__))) # parser = OptionParser(description=conf.General.description, version=conf.General.version, option_list=conf.Terminal.option_list) (options, args) = parser.parse_args() if options.mode == 'gui': import qt.main #elif options.mode == 'cli': # import cli.main logging.basicConfig(level=options.logging, format=conf.Logging.log_format, datefmt='%y-%m-%d %H:%M', #uncomment next two lines if we want logging into a file filename=conf.Logging.log_path, filemode=conf.Logging.log_mode, ) # add a console logging handler if verbosity is turned on if options.verbose: # define a Handler which writes INFO messages or higher to the sys.stderr console = logging.StreamHandler() console.setLevel(options.logging) # set a format which is simpler for console use if options.output == "nerd": formatter = logging.Formatter("%(levelname)s::%(name)s # %(message)s") elif options.output == "human": formatter = logging.Formatter("%(message)s") # tell the handler to use this format console.setFormatter(formatter) # add the handler to the root logger logging.getLogger('').addHandler(console) # create a logger named 'babiloo.run' # consequent ones should follow its parent as. 'babiloo.package.foo' log = logging.getLogger("run") if __name__ == "__main__": log.info('Babiloo started.') if options.mode == 'gui': qt.main.main(options) log.info('Babiloo ended.') babiloo-2.0.11/__init__.py0000644000017300007100000000154111445134342015252 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ''' src package ''' babiloo-2.0.11/README0000644000017300007100000000026211443252104014013 0ustar kmoskmos00000000000000README for Babiloo Running To launch the GUI (Graphical User Interface), the only file you'll need to call is run.py. Common example: python run.py --help babiloo-2.0.11/ChangeLog0000755000017300007100000000022711443252102014707 0ustar kmoskmos00000000000000To check our changes, you can view them online from our repository. ChangeLog: http://bazaar.launchpad.net/~babiloo-developers/babiloo/trunk/changes babiloo-2.0.11/COPYING0000644000017300007100000010451311443252101014167 0ustar kmoskmos00000000000000 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 . babiloo-2.0.11/babiloo.desktop0000644000017300007100000000056711443252102016143 0ustar kmoskmos00000000000000[Desktop Entry] Version=1.0 Name=Babiloo Comment=Application to view dictionaries Comment[en_US]=Application to view dictionaries Comment[pt_PT]=Aplicação para ver dicionários Exec=babiloo Icon=babiloo Path=/usr/share/babiloo StartupNotify=false Terminal=false X-DCOP-ServiceType=unique X-KDE-SubstituteUID=false X-KDE-Username= Type=Application Categories=Qt;KDE;Office; babiloo-2.0.11/babiloo.10000644000017300007100000000227611443252101014630 0ustar kmoskmos00000000000000.TH BABILOO 1 "2008-06-02" .\" -------------------------------------------------------- .SH NAME babiloo - dictionary viewer with multi-languages support .\" -------------------------------------------------------- .SH SYNOPSIS .B babiloo [\-h] [\--help] [\-g] [\--gui] [\-d] [\--debug] [\-T] [\--test] [\--version] .\" -------------------------------------------------------- .SH DESCRIPTION .B Babiloo is a Free Open Source tool written in Python for view dictionaries files like Sdictionary, StarDict, etc .\" -------------------------------------------------------- .SH OPTIONS .B "-h --help" .RS Show Babiloo command-line options. .RE .B "-g, --gui" .RS Run application in GUI mode. This is the default. .RE .B "-d, --debug" .RS Print debug messages to stout and logfile. .RE .B "-T, --test" .RS Used by developers for testing. .RE .B --version .RS Show program's version number and exit. .RE .\" -------------------------------------------------------- .SH SEE ALSO .BR http://www.babiloo-project.org .\" -------------------------------------------------------- .SH AUTHORS Ivan Garcia .BR Marco Ferreira .BR Marco Rodrigues .BR babiloo-2.0.11/core/__init__.py0000644000017300007100000000154111445134342016202 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ''' src package ''' babiloo-2.0.11/core/net/downloader.py0000644000017300007100000000135611445134342017373 0ustar kmoskmos00000000000000#!/usr/bin/env python __author__="Andrew Pennebaker (andrew.pennebaker@gmail.com)" __date__="3 Nov 2005 - 14 Feb 2007" __copyright__="Copyright 2006 2007 Andrew Pennebaker" __license__="GPL" __version__="0.5" __URL__="http://snippets.dzone.com/posts/show/2887" from urllib import urlopen import os import sys from getopt import getopt def getURLName(url): directory=os.curdir name="%s%s%s" % ( directory, os.sep, url.split("/")[-1] ) return name def createDownload(url, proxy=None): instream=urlopen(url, None, proxy) filename=instream.info().getheader("Content-Length") if filename==None: filename="temp" return (instream, filename) def download(instream, outstream): outstream.write(instream.read()) outstream.close() babiloo-2.0.11/core/net/__init__.py0000644000017300007100000000154111445134342016770 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ''' net package ''' babiloo-2.0.11/core/net/xmlrpc.py0000644000017300007100000002740311445134342016543 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # see . from xmlrpclib import Transport,ServerProxy import base64, httplib, os import StringIO, gzip, zlib import logging import threading, thread log = logging.getLogger("babiloo.WebService") from core.modules import APP_TITLE, APP_VERSION DEFAULT_SDDB_SERVER = "http://sddb.subdownloader.net/xmlrpc/" DEFAULT_PROXY = 'http://w2.hidemyass.com/' USER_AGENT = "%s %s"% (APP_TITLE, APP_VERSION) #"""This class is useful to let the server know who we are, good for statistics, # so we can separate the traffic from normal Web visitors""" #class GtkTransport (Transport): # user_agent = "Babiloo " + APP_VERSION def test_connection(url, timeout=15): import socket, urllib2 defTimeOut=socket.getdefaulttimeout() socket.setdefaulttimeout(timeout) connectable=True try: urllib2.urlopen(url) except (urllib2.HTTPError, urllib2.URLError, socket.error, socket.sslerror): connectable=False socket.setdefaulttimeout(defTimeOut) return connectable class TimeoutFunctionException(Exception): """Exception to raise on a timeout""" pass class TimeoutFunction: def __init__(self, function, timeout=30): self.timeout = timeout self.function = function def handle_timeout(self): raise TimeoutFunctionException() def __call__(self, *args): #old = signal.alarm(signal.SIGALRM, self.handle_timeout) #signal.alarm(self.timeout) t = threading.Timer(self.timeout, self.handle_timeout) try: t.start() result = self.function(*args) finally: #signal.signal(signal.SIGALRM, old) t.cancel() pass #signal.alarm(0) del t return result """The XMLRPC can use a Proxy, this class is need for that.""" class ProxiedTransport(Transport): """ Used for proxied connections to the XMLRPC server """ def __init__(self): #self.log = logging.getLogger("babiloo.OSDBServer.ProxiedTransport") self._use_datetime = True # annoying -> AttributeError: Main instance has no attribute '_use_datetime' def set_proxy(self, proxy): self.proxy = proxy #self.log.debug("Proxy set to: %s"% proxy) def make_connection(self, host): #self.log.debug("Connecting to %s through %s"% (host, self.proxy)) self.realhost = host h = httplib.HTTP(self.proxy) return h def send_request(self, connection, handler, request_body): connection.putrequest("POST", 'http://%s%s' % (self.realhost, handler)) def send_host(self, connection, host): connection.putheader('Host', self.realhost) class OnlineService(object): """ Contains the class that represents the OSDB and SDDB RPC Servers. Encapsules all the XMLRPC methods. Consult the OSDB API methods at http://trac.opensubtitles.org/projects/opensubtitles/wiki/XMLRPC Consult the SDDB API methods at https://sddb.subdownloader.net/xmlrpc/ If it fails to connect directly to the XMLRPC server, it will try to do so through a default proxy. Default proxy uses a form to set which URL to open. We will try to change this in later stage. """ def __init__(self, server = None, proxy = None ): self.log = logging.getLogger("babiloo.xmlrpc.service") self.log.debug("Creating Server with server = %s and proxy = %r" %(server, proxy)) self.timeout = 30 self.user_agent = USER_AGENT self.language = '' if server: self.server = server else: self.server = DEFAULT_SDDB_SERVER self.proxy = proxy self.logged_as = None self.xmlrpc_server = None self._token = None #Let's connect with the server XMLRPC #OSConnection.__init__(self) try: self.create_xmlrpcserver(self.server, self.proxy) except Exception, e: raise e def create_xmlrpcserver(self, server, proxy): self.log.debug("Creating XMLRPC server connection...") try: return self.connect(server, proxy) except Exception, e: raise e def connect(self, server, proxy): try: self.log.debug("Connecting with parameters (%r, %r)" %(server, proxy)) connect = TimeoutFunction(self._connect) return connect(server, proxy) except TimeoutFunctionException, e: self.log.error("Connection timed out. Maybe you need a proxy.") raise e #except Exception, e: #import sys #self.log.error("Unexpected error: %s", sys.exc_info()) def _connect(self, server, proxy): try: if proxy: self.log.debug("Trying proxied connection... (%r)"% proxy) self.proxied_transport = ProxiedTransport() self.proxied_transport.set_proxy(proxy) self.xmlrpc_server = ServerProxy(server, transport=self.proxied_transport, allow_none=1) #self.ServerInfo() self.log.debug("...connected") return True elif test_connection(server): self.log.debug("Trying direct connection...") self.xmlrpc_server = ServerProxy(server) #self.ServerInfo() self.log.debug("...connected") return True else: self.log.debug("...failed") self.log.error("Unable to connect. Try setting a proxy.") return False except Exception,e: self.log.debug("Connection to the server failed") raise e def is_connected(self): """ This method checks to see whether we are connected to the server. It does not return any information about the validity of the connection. """ return self._token != None def ServerInfo(self): ServerInfo = TimeoutFunction(self._ServerInfo) try: a = ServerInfo() return a except TimeoutFunctionException: self.log.error("ServerInfo timed out") except Exception, e: #print type(e) # the exception instance #print e.args # arguments stored in .args #print e # __str__ allows args to printed directly self.log.error("ServerInfo error connection.") raise e """This simple function returns basic server info, it could be used for ping or telling server info to client""" def _ServerInfo(self): try: return self.xmlrpc_server.ServerInfo() except TimeoutFunctionException: raise def login(self, username="", password=""): login = TimeoutFunction(self._login) try: return login(username, password) except TimeoutFunctionException: self.log.error("login timed out") def _login(self, username="", password=""): """Login to the Server using username/password, empty parameters means an anonymously login Returns True if login sucessful, and False if not. """ self.log.debug("----------------") self.log.debug("Logging in (username: %r)..."% username) info = self.xmlrpc_server.LogIn(username, password, self.language, self.user_agent) self.log.debug("Login ended in %s with status: %s"% (info['seconds'], info['status'])) if info['status'] == "200 OK": self.log.debug("Session ID: %s"% info['token']) self.log.debug("----------------") self._token = info['token'] return True else: # force token reset self.log.debug("----------------") self._token = None return False def logout(self): logout = TimeoutFunction(self._logout) try: return logout() except TimeoutFunctionException: self.log.error("logout timed out") def _logout(self): """Logout from current session(token) This functions doesn't return any boolean value, since it can 'fail' for anonymous logins """ self.log.debug("Logging out from session ID: %s"% self._token) info = self.xmlrpc_server.LogOut(self._token) self.log.debug("Logout ended in %s with status: %s"% (info['seconds'], info['status'])) # force token reset self._token = None def CheckSoftwareUpdates(self, app=None): CheckSoftwareUpdates = TimeoutFunction(self._CheckSoftwareUpdates) try: return CheckSoftwareUpdates(app) except TimeoutFunctionException: self.log.error("CheckSoftwareUpdates timed out") def _CheckSoftwareUpdates(self, app=None): """Returns latest info on the given application if available """ self.log.debug("----------------") self.log.debug("CheckSoftwareUpdates RPC method starting...") if not app: app = APP_TITLE.lower() info = self.xmlrpc_server.CheckSoftwareUpdates(app) # we have something to show self.log.debug("Latest Babiloo Version Found: %s"% info['latest_version']) return info def GetDictionaries(self, version=None): GetDictionaries = TimeoutFunction(self._GetDictionaries) try: return GetDictionaries(version) except TimeoutFunctionException: self.log.error("GetDictionaries timed out") def _GetDictionaries(self, version=None): """Returns latest info on the given application if available """ self.log.debug("----------------") self.log.debug("GetDictionaries RPC method starting...") if not version: version = APP_VERSION dictionaries = self.xmlrpc_server.GetDictionaries(version) return dictionaries def NoOperation(self): NoOperation = TimeoutFunction(self._NoOperation) try: return NoOperation() except TimeoutFunctionException: self.log.error("NoOperation timed out") def _NoOperation(self): """This method should be called every 15 minutes after last request to xmlrpc. It's used to keep current session alive. Returns True if current session token is valid and False if not. """ self.log.debug("----------------") self.log.debug("NoOperation RPC method starting...") info = self.xmlrpc_server.NoOperation(self._token) self.log.debug("NoOperation finished in %s with status %s."% (info['seconds'], info['status'])) if info['status'] != "200 OK": return False return True def BaseToFile(self, base_data, path): """This will decode the base64 data and save it as a file with the given path """ compressedstream = base64.decodestring(base_data) gzipper = gzip.GzipFile(fileobj=StringIO.StringIO(compressedstream)) s=gzipper.read() gzipper.close() subtitle_file = file(path,'wb') subtitle_file.write(s) subtitle_file.close() babiloo-2.0.11/core/modules/compressed.py0000644000017300007100000000541611450216170020260 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import sys, os import tarfile, zipfile, tempfile class CompressedFile: def __init__(self, file_path): self.file_path = file_path self.compressed_file = None if tarfile.is_tarfile(file_path): self.compressed_file = tarfile.open(file_path) self.compressed_file_content = self.compressed_file elif zipfile.is_zipfile(file_path): self.compressed_file = zipfile.ZipFile(file_path) self.compressed_file_content = self.compressed_file.namelist() # compression type not supported else: return self.extracted_members = [] def extract(self): extract_path = tempfile.gettempdir() print "extracting '%s' to:" % self.file_path, extract_path self.extracted_members = [] for member in self.compressed_file_content: self.extract_member(member, extract_path=extract_path) return self.extracted_members def extract_member(self, member, extract_path): if isinstance(self.compressed_file, tarfile.TarFile): self.extracted_members.append(os.path.join(extract_path, member.name)) self.compressed_file.extract(member, path=extract_path) elif isinstance(self.compressed_file, zipfile.ZipFile): fd, tempFilePath = tempfile.mkstemp() self.extracted_members.append(os.path.join(extract_path, tempFilePath)) extract_member = os.path.join(extract_path, tempFilePath) if not os.path.isdir(os.path.dirname(extract_member)): print "mkdir:", os.path.dirname(extract_member) os.makedirs(os.path.dirname(extract_member)) if not os.path.isdir(extract_member): outfile = open(extract_member, 'wb') outfile.write(self.compressed_file.read(member)) outfile.close() if __name__ == "__main__": cf = CompressedFile(sys.argv[1]) print cf.extract() babiloo-2.0.11/core/modules/__init__.py0000644000017300007100000000163511450222352017651 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ''' MODULES package ''' APP_TITLE = "Babiloo" APP_VERSION = "2.0.11" babiloo-2.0.11/core/modules/utils.py0000644000017300007100000000474511445134342017264 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import unicodedata def compVer(ver1,ver2): #Checks to see if ver1 >= ver2 vl1 = ver1.split('.') vl2 = ver2.split('.') if vl1 == vl2: return 0 while 1: if int(vl1[0]) > int(vl2[0]): return 1 elif int(vl1[0]) == int(vl2[0]): del vl1[0] del vl2[0] if len(vl1) >= 1 and len(vl2) == 0: true = 1 for each in vl1: if int(each) <> 0: true = 0 return true elif len(vl1) == 0 and len(vl2) >= 1: true = 1 for each in vl2: if int(each) <> 0: true = 0 return true elif len(vl1) == 0 and len(vl2) == 0: return 1 else: continue elif int(vl1[0]) < int(vl2[0]): return 0 def randomSerialKey(): import string from random import Random d = ''.join( Random().sample(string.letters+string.digits, 16) ) serialkey = "-".join([d[0:4], d[4:8], d[8:12], d[12:]]).upper() print serialkey def normalized_comparison(x, y): x = normalize(x) y = normalize(y) if x>y: return 1 elif x==y: return 0 else: # x should be unicode' % word) return word babiloo-2.0.11/core/modules/progressbar.py0000644000017300007100000003116411445134342020450 0ustar kmoskmos00000000000000#!/usr/bin/python # -*- coding: iso-8859-1 -*- # # progressbar - Text progressbar library for python. # Copyright (c) 2005 Nilton Volpato # # 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.1 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, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """Text progressbar library for python. This library provides a text mode progressbar. This is tipically used to display the progress of a long running operation, providing a visual clue that processing is underway. The ProgressBar class manages the progress, and the format of the line is given by a number of widgets. A widget is an object that may display diferently depending on the state of the progress. There are three types of widget: - a string, which always shows itself; - a ProgressBarWidget, which may return a diferent value every time it's update method is called; and - a ProgressBarWidgetHFill, which is like ProgressBarWidget, except it expands to fill the remaining width of the line. The progressbar module is very easy to use, yet very powerful. And automatically supports features like auto-resizing when available. """ __author__ = "Nilton Volpato" __author_email__ = "first-name dot last-name @ gmail.com" __date__ = "2006-05-07" __version__ = "2.2" # Changelog # # 2006-05-07: v2.2 fixed bug in windows # 2005-12-04: v2.1 autodetect terminal width, added start method # 2005-12-04: v2.0 everything is now a widget (wow!) # 2005-12-03: v1.0 rewrite using widgets # 2005-06-02: v0.5 rewrite # 2004-??-??: v0.1 first version import sys, time from array import array try: from fcntl import ioctl import termios except ImportError: pass import signal class ProgressBarWidget(object): """This is an element of ProgressBar formatting. The ProgressBar object will call it's update value when an update is needed. It's size may change between call, but the results will not be good if the size changes drastically and repeatedly. """ def update(self, pbar): """Returns the string representing the widget. The parameter pbar is a reference to the calling ProgressBar, where one can access attributes of the class for knowing how the update must be made. At least this function must be overriden.""" pass class ProgressBarWidgetHFill(object): """This is a variable width element of ProgressBar formatting. The ProgressBar object will call it's update value, informing the width this object must the made. This is like TeX \\hfill, it will expand to fill the line. You can use more than one in the same line, and they will all have the same width, and together will fill the line. """ def update(self, pbar, width): """Returns the string representing the widget. The parameter pbar is a reference to the calling ProgressBar, where one can access attributes of the class for knowing how the update must be made. The parameter width is the total horizontal width the widget must have. At least this function must be overriden.""" pass class ETA(ProgressBarWidget): "Widget for the Estimated Time of Arrival" def format_time(self, seconds): return time.strftime('%H:%M:%S', time.gmtime(seconds)) def update(self, pbar): if pbar.currval == 0: return 'ETA: --:--:--' elif pbar.finished: return 'Time: %s' % self.format_time(pbar.seconds_elapsed) else: elapsed = pbar.seconds_elapsed eta = elapsed * pbar.maxval / pbar.currval - elapsed return 'ETA: %s' % self.format_time(eta) class FileTransferSpeed(ProgressBarWidget): "Widget for showing the transfer speed (useful for file transfers)." def __init__(self): self.fmt = '%6.2f %s' self.units = ['B','K','M','G','T','P'] def update(self, pbar): if pbar.seconds_elapsed < 2e-6:#== 0: bps = 0.0 else: bps = float(pbar.currval) / pbar.seconds_elapsed spd = bps for u in self.units: if spd < 1000: break spd /= 1000 return self.fmt % (spd, u+'/s') class RotatingMarker(ProgressBarWidget): "A rotating marker for filling the bar of progress." def __init__(self, markers='|/-\\'): self.markers = markers self.curmark = -1 def update(self, pbar): if pbar.finished: return self.markers[0] self.curmark = (self.curmark + 1)%len(self.markers) return self.markers[self.curmark] class Percentage(ProgressBarWidget): "Just the percentage done." def update(self, pbar): return '%3d%%' % pbar.percentage() class CurrTotal(ProgressBarWidget): "Returns someting like: 54/100 (54 from a total of 100)" def update(self, pbar): return "%i/%i"% (pbar.currval, pbar.maxval) class Bar(ProgressBarWidgetHFill): "The bar of progress. It will strech to fill the line." def __init__(self, marker='>', left='[', right=']'): self.marker = marker self.left = left self.right = right def _format_marker(self, pbar): if isinstance(self.marker, (str, unicode)): return self.marker else: return self.marker.update(pbar) def update(self, pbar, width): percent = pbar.percentage() cwidth = width - len(self.left) - len(self.right) marked_width = int(percent * cwidth / 100) m = self._format_marker(pbar) bar = (self.left + (m*marked_width).ljust(cwidth) + self.right) return bar class ReverseBar(Bar): "The reverse bar of progress, or bar of regress. :)" def update(self, pbar, width): percent = pbar.percentage() cwidth = width - len(self.left) - len(self.right) marked_width = int(percent * cwidth / 100) m = self._format_marker(pbar) bar = (self.left + (m*marked_width).rjust(cwidth) + self.right) return bar default_widgets = [Percentage(), ' ', Bar()] class ProgressBar(object): """This is the ProgressBar class, it updates and prints the bar. The term_width parameter may be an integer. Or None, in which case it will try to guess it, if it fails it will default to 80 columns. The simple use is like this: >>> pbar = ProgressBar().start() >>> for i in xrange(100): ... # do something ... pbar.update(i+1) ... >>> pbar.finish() But anything you want to do is possible (well, almost anything). You can supply different widgets of any type in any order. And you can even write your own widgets! There are many widgets already shipped and you should experiment with them. When implementing a widget update method you may access any attribute or function of the ProgressBar object calling the widget's update method. The most important attributes you would like to access are: - currval: current value of the progress, 0 <= currval <= maxval - maxval: maximum (and final) value of the progress - finished: True if the bar is have finished (reached 100%), False o/w - start_time: first time update() method of ProgressBar was called - seconds_elapsed: seconds elapsed since start_time - percentage(): percentage of the progress (this is a method) """ def __init__(self, maxval=100, widgets=default_widgets, term_width=None, fd=sys.stderr): assert maxval > 0 self.maxval = maxval self.widgets = widgets self.fd = fd self.signal_set = False if term_width is None: try: self.handle_resize(None,None) signal.signal(signal.SIGWINCH, self.handle_resize) self.signal_set = True except: self.term_width = 79 else: self.term_width = term_width self.currval = 0 self.finished = False self.prev_percentage = -1 self.start_time = None self.seconds_elapsed = 0 def set_maxval(self, maxval): self.maxval = maxval def handle_resize(self, signum, frame): h,w=array('h', ioctl(self.fd,termios.TIOCGWINSZ,'\0'*8))[:2] self.term_width = w def percentage(self): "Returns the percentage of the progress." return self.currval*100.0 / self.maxval def _format_widgets(self): r = [] hfill_inds = [] num_hfill = 0 currwidth = 0 for i, w in enumerate(self.widgets): if isinstance(w, ProgressBarWidgetHFill): r.append(w) hfill_inds.append(i) num_hfill += 1 elif isinstance(w, (str, unicode)): r.append(w) currwidth += len(w) else: weval = w.update(self) currwidth += len(weval) r.append(weval) for iw in hfill_inds: r[iw] = r[iw].update(self, (self.term_width-currwidth)/num_hfill) return r def _format_line(self): return ''.join(self._format_widgets()).ljust(self.term_width) def _need_update(self): return int(self.percentage()) != int(self.prev_percentage) def update(self, value=None, *k): if not value: return -1 "Updates the progress bar to a new value." assert 0 <= value <= self.maxval self.currval = value if not self._need_update() or self.finished: return if not self.start_time: self.start_time = time.time() self.seconds_elapsed = time.time() - self.start_time self.prev_percentage = self.percentage() if value != self.maxval: self.fd.write(self._format_line() + '\r') else: self.finished = True self.fd.write(self._format_line() + '\n') def start(self): """Start measuring time, and prints the bar at 0%. It returns self so you can use it like this: >>> pbar = ProgressBar().start() >>> for i in xrange(100): ... # do something ... pbar.update(i+1) ... >>> pbar.finish() """ self.update(0) return self def finish(self): """Used to tell the progress is finished.""" self.update(self.maxval) if self.signal_set: signal.signal(signal.SIGWINCH, signal.SIG_DFL) if __name__=='__main__': import os def example1(): widgets = ['Test: ', Percentage(), ' ', Bar(marker=RotatingMarker()), ' ', ETA(), ' ', FileTransferSpeed()] pbar = ProgressBar(widgets=widgets, maxval=10000000).start() for i in range(1000000): # do something pbar.update(10*i+1) pbar.finish() print def example2(): class CrazyFileTransferSpeed(FileTransferSpeed): "It's bigger between 45 and 80 percent" def update(self, pbar): if 45 < pbar.percentage() < 80: return 'Bigger Now ' + FileTransferSpeed.update(self,pbar) else: return FileTransferSpeed.update(self,pbar) widgets = [CurrTotal(),' <<<', Bar(), '>>> ', Percentage(),' ', ETA()] pbar = ProgressBar(widgets=widgets, maxval=126) # maybe do something pbar.start() for i in range(126): # do something pbar.update(i+1) time.sleep(0.2) pbar.finish() print def example3(): widgets = [Bar('>'), ' ', ETA(), ' ', ReverseBar('<')] pbar = ProgressBar(widgets=widgets, maxval=10000000).start() for i in range(1000000): # do something pbar.update(10*i+1) pbar.finish() print def example4(): widgets = ['Test: ', Percentage(), ' ', Bar(marker='0',left='[',right=']'), ' ', ETA(), ' ', FileTransferSpeed()] pbar = ProgressBar(maxval=500) pbar.start() for i in range(100,500+1,50): time.sleep(0.2) pbar.update(i) pbar.finish() print # example1() example2() # example3() # example4() babiloo-2.0.11/core/modules/configuration.py0000644000017300007100000001260611445134342020766 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from optparse import make_option import logging import os.path import user from core.modules import progressbar """ Logging levels: CRITICAL 50 ERROR 40 WARNING 30 INFO 20 DEBUG 10 NOTSET 0 """ class Terminal(object): option_list = [ # internal application options make_option("-g", "--gui", dest="mode", action="store_const", const="gui", #default="cli", help="Run applicatin in GUI mode. This is the default"), make_option("-c", "--cli", dest="mode", action="store_const", const="cli", default="gui", help="Run applicatin in CLI mode"), make_option("-d", "--debug", dest="logging", default=logging.INFO, action="store_const", const=logging.DEBUG, help="Print debug messages to stout and logfile"), make_option("-q", "--quiet", dest="verbose", action="store_false", default=True, help="Don't print status messages to stdout"), make_option("-T", "--test", dest="test", action="store_true", default=False, help="Used by developers for testing"), make_option("-H", "--human", dest="output", action="store_const", const="human", help="Print human readable messages. Default for CLI mode"), make_option("-n", "--nerd", dest="output", action="store_const", const="nerd", default="human", help="Print messages with more details"), # user application options make_option("-D", "--download", dest="operation", action="store_const", const="download", help="Download a subtitle. Default for CLI mode"), make_option("-U", "--upload", dest="operation", action="store_const", const="upload", default="download", help="Upload a subtitle"), make_option("-L", "--list", dest="operation", action="store_const", const="list", default="download", help="List available subtitles without downloading"), make_option("-V", "--video", dest="videofile", metavar="FILE/DIR", default=os.path.abspath(os.path.curdir), help="Full path to your video(s). Don't use '~'"), make_option("-l", "--lang", dest="language", default='all', help="Used in subtitle download and upload preferences"), make_option("-i","--interactive", dest="interactive", action="store_true", default=False, help="Prompt user when decisions need to be done"), make_option("--sol", dest="overwrite_local", action="store_true", #default=False, help="'Server Over Local' overwrites local subtitle with one from server. This is in cases when local subtitle isn't found on server, but server has subtitles for the movie."), make_option("--los", dest="overwrite_local", action="store_false", default=False, help="'Local Over Server' keeps local subtitles, even if another is found on server. This is the default"), make_option("-u", "--user", dest="username", default='', help="Opensubtitles.com username. Must be set in upload mode. Default is blank (anonymous)"), make_option("-p", "--passwd", dest="password", default='', help="Opensubtitles.com password. Must be set in upload mode. Default is blank (anonymous)"), # misc options make_option("-s", "--server", dest="server", default=None, help="Server address of Opensubtitles API"), make_option("-P", "--proxy", dest="proxy", default=None, help="Proxy to use on internet connections") ] progress_bar_style= [progressbar.Bar(), progressbar.Percentage(), ' ', progressbar.ETA()] class Graphical(object): pass class General(object): name = "Babiloo" description = "%s is an open source free OS independent dictionary application."% name version = "%s v2.0"% name # rpc_server = "http://www.opensubtitles.org/xml-rpc" class Logging(object): log_level = logging.DEBUG log_format = "[%(asctime)s] %(levelname)s::%(name)s # %(message)s" log_dir = user.home # leave blank to use current path log_name = "%s.log"% General.name.lower() log_path = os.path.join(log_dir, log_name) log_mode = "a" babiloo-2.0.11/core/dictionary/engine.py0000644000017300007100000001312011450215614020047 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import logging import traceback import os from core.dictionary import Dictionary from core.dictionary.dictionary import DictionaryType from core.modules.compressed import CompressedFile import core.modules.utils as utils log = logging.getLogger("babiloo.core.dictionary.engine") class DictionaryEngine(object): def __init__(self): self.dictionaries = {} self.lastFilter = {} self.words = {} self.caseSensitive = False self.ignoreAccents = False def loadDictionaries(self, dictionaries): new_dicts = [] for mydict in dictionaries: new_dict = self.loadDictionary(mydict) if new_dict: new_dicts.append(new_dict) return new_dicts def loadDictionary(self, dictionary): try: cf = CompressedFile(dictionary) if cf.compressed_file: extracted_file_list = cf.extract() extracted_file_sizes = [(os.path.getsize(f), f) for f in extracted_file_list] extracted_file_sizes.sort() dictionary = extracted_file_sizes[-1][1] new_dict = Dictionary(dictionary) if not isinstance(new_dict, DictionaryType): return { 'loaded':False , 'error': 'BAD_TYPE', 'file_path': dictionary} else: dictId = new_dict.getUniqueId() if not self.dictionaries.has_key(dictId): self.dictionaries[dictId] = new_dict return {'dict': new_dict, 'loaded':True } else: return { 'loaded':False , 'error': 'ALREADY_INSTALLED', 'file_path': dictionary} except : traceback.print_exc() return { 'loaded':False , 'error': 'EXCEPTION', 'file_path': dictionary} def loadIndexes(self, mydict = None): log.debug('Engine::CreateIndexes() START') words = [] normalizedWords = [] for word in self.dictionaries[mydict].getWords(): words.append(word) normalizedWords.append(utils.normalize(word)) #the list of words will not be sorted, we guess the dictionaries indexes will be sorted already self.words = words self.normalizedWords = normalizedWords log.debug('Engine::CreateIndexes() END') def getHistory(self): return self.history def getWords(self, dictId = None): return self.words def filter(self, wordFilter, dictId = None, caseSensitive = False, ignoreAccents = False): if wordFilter: #log.debug("Filtering by %s ..." % wordFilter) # if self.lastFilter.has_key(wordFilter): # return self.lastFilter[wordFilter] # # filtersToDelete = [key for key in self.lastFilter.keys() if len(key) >= len(wordFilter)] # for filter in filtersToDelete: # del self.lastFilter[filter] # # if len(wordFilter): # wordFilterOneLess = wordFilter[:-1] # if not wordFilterOneLess or not self.lastFilter.has_key(wordFilterOneLess): # words = self.wordsOriginal # self.lastFilter = {} # else: # words = self.lastFilter[wordFilterOneLess] filtered = [] normalized_wordFilter = utils.normalize(wordFilter) for num, word in enumerate(self.normalizedWords): if word.startswith(normalized_wordFilter): filtered.append(self.words[num]) #if the filter contains some accented character if normalized_wordFilter != wordFilter: accented_filtered = [] for word in filtered: if word.startswith(wordFilter): accented_filtered.append(word) filtered = accented_filtered return filtered else: #if the search is blank #self.lastFilter = {} return self.getWords() def search(self, word, dictId = None): log.debug('Searching for %s ...' % word) word, definition = self.dictionaries[dictId][word] return definition def getDictionary(self, dictId): if self.dictionaries.has_key(dictId): return self.dictionaries[dictId] else: raise IndexError def getDictionaries(self): return self.dictionaries.values() def deleteDictionary(self, dictId): if self.dictionaries.has_key(dictId): del self.dictionaries[dictId] return True else: raise IndexError babiloo-2.0.11/core/dictionary/sdictem.py0000755000017300007100000003125311445134342020246 0ustar kmoskmos00000000000000#!/usr/bin/python # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import os import sys import zlib import struct import time from dictionary import DictionaryType, DictFormatError, Definition #prinfo = lambda x: sys.stdout.write(x+"\n") #prerror = lambda x: sys.stderr.write(x+"\n") prinfo = lambda x: 0 prerror = lambda x: 0 COMPRESSOR_NONE = 'none' COMPRESSOR_GZIP = 'gzip' COMPRESSOR_BZIP2 = 'bzip2' SDICT_SIG = 'sdct' SDICT_HEADER_SIZE = 43 SDICT_SEARCH_FORWARD = 15000 SDICT_SHORT_NDX_LEN = 3 W_LANG_POS = 4 A_LANG_POS = 7 COMPRESSOR_POS = 0x0a WORDS_TOT_PTR_POS = 0x0b SINDEX_TOT_PTR_POS = 0x0f TITLE_PTR_POS = 0x13 COPYRIGHT_PTR_POS = 0x17 VERSION_PTR_POS = 0x1b SINDEX_PTR_POS = 0x1f FINDEX_PTR_POS = 0x23 ARTICLES_PTR_POS = 0x27 PyDICT_SIG = 'pydict' class SDictionary(DictionaryType): def __init__(self, file_name, encoding = "utf-8"): self.init = False self.curr_file = None DictionaryType.__init__(self, file_name) def __len__(self): return self.header['words_total'] def __getitem__(self, key): if isinstance(key, int): key = self.index_cache[key] pos = self.wordList_cache[key] return (key, Definition(self.read_pos(pos))) def get_words(self,patt): return (self.search_word(patt,True) or []) def search_word(self,word,listonly=False): prinfo("Searching for %s"%repr(word)) search_pos = -1 ln = len(word) subw = word[:3] list = [] for i in range(1,4): if i == 1: ref = self.sindex_1 elif i == 2: ref = self.sindex_2 else: ref = self.sindex_3 for j in ref: (wo, ndx) = j #print i, j, wo, ndx, subw if wo[:i] == subw[:i]: #print 'found in ', i, ' wo: ', wo, ' ndx: ', ndx search_pos = ndx #continue break if search_pos < 0: prinfo("Not found") return None prinfo("Scanning from pos %d"%search_pos) findes_saved = self.f_index_pos_cur self.f_index_pos_cur = search_pos + self.f_index_pos for x in range(1,SDICT_SEARCH_FORWARD): prev_pos = self.f_index_pos_cur nw = self.get_next_word() if nw is None: self.f_index_pos_cur = findes_saved prinfo("Not found") return None if listonly: #print 'lo:', repr(word), repr(nw) if word == nw[:ln]: list.append(nw) continue else: return list #print repr(word), repr(nw) if word[:3] != nw[:3]: prinfo("Not found") return None if word == nw: art = self.read_unit(self.cur_word_pos + self.articles_pos) return art prinfo("Not found") return None def load_dictionary_fast(self,file_name): prinfo("Try to load '%s'"%file_name) self.infile = file_name prinfo('Reading header') if not self.read_header(): return False # prinfo('Reading short index fast') # if not self.read_short_index_fast(): # return False self.f_index_pos_cur = self.f_index_pos return True def get_next_word(self): file_name = self.infile_handler fpos = self.f_index_pos_cur file_name.seek(fpos) hdr = file_name.read(8) # next = struct.unpack('H', hdr[:2])[0] (next,prev,aptr) = struct.unpack('=HHL', hdr) if not next: prinfo('Last word reached') return None # aptr = struct.unpack('L', hdr[4:])[0] # wlen = next - 4 - 2 - 2 wlen = next - 8 if wlen < 0: prerror('File format error') sys.exit(1) word = file_name.read(wlen) self.cur_word = word self.cur_word_pos = aptr self.f_index_pos_cur += wlen + 8 #return word.decode('utf-8') return (word, aptr+self.articles_pos) def unload_dictionary(self): prinfo('Unloading dictionary') self.infile_handler.close() self.words_list = None self.words_hash = None self.sindex_hash = None self.header = None self.sindex_1 = None self.sindex_2 = None self.sindex_3 = None self.infile = None self.init = False return True def read_header(self): infile = self.infile try: file_name = open(infile, 'rb') hdr = file_name.read(SDICT_HEADER_SIZE) if hdr[:4] != SDICT_SIG: prerror("Wrong signature file '%s'"%infile) return False except: return False self.infile_handler = file_name w_lang = hdr[W_LANG_POS:W_LANG_POS+3].strip("\0") a_lang = hdr[A_LANG_POS:A_LANG_POS+3].strip("\0") compr = int(hdr[COMPRESSOR_POS:COMPRESSOR_POS+1]) if compr == 0: compr_method = COMPRESSOR_NONE elif compr == 1: compr_method = COMPRESSOR_GZIP else: prerror("Wrong compression type '%s'"%compr) return False self.compressor = compr_method (tot_words, sindex_total, title_ptr, copyr_ptr, version_ptr, sindex_pos, f_index_ptr, articles_ptr) = struct.unpack('=LLLLLLLL', hdr[WORDS_TOT_PTR_POS:]) title = self.read_unit(title_ptr) if title is None: prerror('Unable to read title') return False copyright = self.read_unit(copyr_ptr) if copyright is None: prerror('Unable to read copyright') return False version = self.read_unit(version_ptr) if version is None: prerror('Unable to read version') return False prinfo('Dictionary information:') prinfo(" Title: '%s'"%title) prinfo(" Copyright: '%s'"%copyright) prinfo(" Version: '%s'"%version) prinfo(" Langs: %s/%s"%(w_lang,a_lang)) prinfo(" Words: %s"%tot_words) prinfo(" Short index: %s"%sindex_total) prinfo(" Compression: %s"%compr_method) prinfo(' ') prinfo(" Short index offset: 0x%x"%sindex_pos) prinfo(" Full index offset : 0x%x"%f_index_ptr) prinfo(" Articles offset : 0x%x"%articles_ptr) prinfo(' ') self.init = True self.f_index_pos = f_index_ptr self.articles_pos = articles_ptr self.header = {} self.header['title' ] = title; self.header['copyright' ] = copyright; self.header['version' ] = version; self.header['w_lang' ] = w_lang; self.header['a_lang' ] = a_lang; self.header['words_total' ] = tot_words; self.header['sindex_total'] = sindex_total; self.header['sindex_ptr' ] = sindex_pos; self.header['f_index_pos' ] = f_index_ptr; self.header['articles_pos'] = articles_ptr; return True def read_unit(self,fpos,raw=False): file_name = self.infile_handler file_name.seek(fpos) unit = file_name.read(4) art = file_name.read(struct.unpack('=L',unit)[0]) if raw: return art if self.compressor == COMPRESSOR_NONE: return art.decode('utf-8') if self.compressor == COMPRESSOR_GZIP: return zlib.decompress(art).decode('utf-8') prerror('Wrong compression type') return None def load(self,file_name): self.curr_file = file_name self.wordList_cache = {} self.index_cache = [] if self.init: self.unload_dictionary() if not self.load_dictionary_fast(file_name): raise DictFormatError, "Not a valid SDict dictionary" self.wordList() self._DictionaryType__keys = self.get_index() def reload(self): return self.load(self.curr_file) def rewind(self): self.f_index_pos_cur = self.f_index_pos def wordList(self): if not self.wordList_cache: self.rewind() result = {} while 1: next_word = self.get_next_word() if not next_word: break word, pos = next_word result[word.decode('utf8')] = pos self.wordList_cache = result return self.wordList_cache def get_index(self): if not self.index_cache: self.rewind() while 1: word_pos = self.get_next_word() if not word_pos: break self.index_cache.append(word_pos[0].decode('utf8')) return self.index_cache def get_word_pos(self, word): if not self.wordList_cache: while 1: next_word = self.get_next_word() if not next_word: break _word, pos = next_word if _word == word: return pos return None return self.wordList_cache[word] def lookup(self, word): pos = self.get_word_pos(word) return self.read_pos(pos) def read_pos(self, pos): return self.read_unit(pos) def close( self ): return self.unload_dictionary() def getTypeStr(self): return "SDictEm" def getName(self): return self.header['title'] def getCopyright(self): return self.header['copyright'] def getVersion(self): return self.header['version'] def t1(func): timing = time.time() func() print 'timing:', time.time() - timing def t2(func, args): timing = time.time() func(args) print 'timing:', time.time() - timing if __name__ == '__main__': sd = Sdict() try: sd.load(sys.argv[1]) except: print "Usage", sys.argv[0], ".dct" sys.exit(1) print "Get..." poses = {} list = [] while True: word = sd.get_next_word() if word is None: break pos = word[1] if poses.get(pos): continue poses[pos] = True list.append(word) print "Sort..." def sort_func(x,y): x = x[0].decode('utf-8').lower() y = y[0].decode('utf-8').lower() if x < y: return -1 if x > y: return 1 return 0 list.sort(sort_func) print "Compile..." pid = os.getpid() b_file_name = "%d.b"%pid w_file_name = "%d.w"%pid a_file_name = "%d.a"%pid b = open(b_file_name,'wb') w = open(w_file_name,'wb') a = open(a_file_name,'wb') wrong = 0 for x in list: (word,apos) = x art = sd.read_unit(apos,True) if len(art) > 0xffff: wrong += 1 continue if len(word) > 255: word = word.decode('utf-8')[:128].encode('utf-8') bitem = struct.pack('LLHB',w.tell(),a.tell(),len(art),len(word)) b.write(bitem) w.write(word) a.write(art) print "Create pydict file..." dict_file_name = os.path.basename(sys.argv[1]).replace('.dct','.pd') hdr_len = len(PyDICT_SIG) + struct.calcsize('=LLL') hdr = PyDICT_SIG + struct.pack('=LLL', len(list)-wrong, b.tell()+hdr_len, b.tell()+w.tell()+hdr_len) b.close() w.close() a.close() b = open(b_file_name,'rb') w = open(w_file_name,'rb') a = open(a_file_name,'rb') d = open(dict_file_name,'wb') d.write(hdr) d.write(b.read()) d.write(w.read()) d.write(a.read()) d.close() b.close() w.close() a.close() os.unlink(b_file_name) os.unlink(w_file_name) os.unlink(a_file_name) print "Done" sys.exit(0) babiloo-2.0.11/core/dictionary/__init__.py0000644000017300007100000000324311445134342020350 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ''' core package ''' from dictionary import DictFormatError from SlowoDictionary import SlowoDictionary #from psdict import SDictionary from sdictem import SDictionary from pystardict import StarDict import traceback def Dictionary(dict_path): print "Loading %s ... " % dict_path try: dict = StarDict(dict_path) print "(Stardict) type detected" return dict except DictFormatError, e: print e pass try: dict = SDictionary(dict_path) print "(SDictionary) type detected" return dict except DictFormatError, e: #print e pass try: dict = SlowoDictionary(dict_path) print "(SlowoDictionary) type detected" return dict except DictFormatError, e: #print e pass print "No type detected" return None babiloo-2.0.11/core/dictionary/pystardict.py0000644000017300007100000004407411445134342021006 0ustar kmoskmos00000000000000# -*- coding: utf-8 -*- """ Copyright 2008 Serge Matveenko This file is part of PyStarDict. PyStarDict 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. PyStarDict 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 PyStarDict. If not, see . @author: Serge Matveenko """ import gzip import re import os from struct import unpack from dictionary import DictionaryType, DictFormatError, Definition import core.modules.utils as utils try: from hashlib import md5 new_hash = md5 except ImportError: # Pre-2.5 Python has no hashlib module. import md5 new_hash = md5.new class _StarDictIfo(): """ The .ifo file has the following format: StarDict's dict ifo file version=2.4.2 [options] Note that the current "version" string must be "2.4.2" or "3.0.0". If it's not, then StarDict will refuse to read the file. If version is "3.0.0", StarDict will parse the "idxoffsetbits" option. [options] --------- In the example above, [options] expands to any of the following lines specifying information about the dictionary. Each option is a keyword followed by an equal sign, then the value of that option, then a newline. The options may be appear in any order. Note that the dictionary must have at least a bookname, a wordcount and a idxfilesize, or the load will fail. All other information is optional. All strings should be encoded in UTF-8. Available options: bookname= // required wordcount= // required synwordcount= // required if ".syn" file exists. idxfilesize= // required idxoffsetbits= // New in 3.0.0 author= email= website= description= // You can use
for new line. date= sametypesequence= // very important. """ def __init__(self, dict_prefix, container): ifo_filename = '%s.ifo' % dict_prefix try: _file = open(ifo_filename) except IOError: raise Exception('.ifo file does not exists') # skipping ifo header _file.readline() _line = _file.readline().split('=') if _line[0] == 'version': self.version = _line[1] else: raise Exception('ifo has invalid format') _config = {} for _line in _file: if _line and _line <> "\n": try: _line_splited = _line.split('=') _config[_line_splited[0]] = _line_splited[1] except: print "Unrecognized paramater in IFO file at line: %s" % _line self.bookname = _config.get('bookname', None).strip() if self.bookname is None: raise Exception('ifo has no bookname') self.wordcount = _config.get('wordcount', None) if self.wordcount is None: raise Exception('ifo has no wordcount') self.wordcount = int(self.wordcount) if self.version == '3.0.0': try: _syn = open('%s.syn' % dict_prefix) self.synwordcount = _config.get('synwordcount', None) if self.synwordcount is None: raise Exception('ifo has no synwordcount but .syn file exists') self.synwordcount = int(self.synwordcount) except IOError: pass self.idxfilesize = _config.get('idxfilesize', None) if self.idxfilesize is None: raise Exception('ifo has no idxfilesize') self.idxfilesize = int(self.idxfilesize) self.idxoffsetbits = _config.get('idxoffsetbits', 32) self.idxoffsetbits = int(self.idxoffsetbits) self.author = _config.get('author', '').strip() self.email = _config.get('email', '').strip() self.website = _config.get('website', '').strip() self.description = _config.get('description', '').strip() self.date = _config.get('date', '').strip() self.sametypesequence = _config.get('sametypesequence', '').strip() class _StarDictIdx(): """ The .idx file is just a word list. The word list is a sorted list of word entries. Each entry in the word list contains three fields, one after the other: word_str; // a utf-8 string terminated by '\0'. word_data_offset; // word data's offset in .dict file word_data_size; // word data's total size in .dict file """ def __init__(self, dict_prefix, container): idx_filename = '%s.idx' % dict_prefix idx_filename_gz = '%s.gz' % idx_filename try: file = open(idx_filename, 'rb') except IOError: try: file = gzip.open(idx_filename_gz, 'rb') except IOError: raise Exception('.idx file does not exists') # check file size self._file = file.read() if file.tell() != container.ifo.idxfilesize: raise Exception('size of the .idx file is incorrect') # prepare main dict and parsing parameters self._idx = {} idx_offset_bytes_size = int(container.ifo.idxoffsetbits / 8) idx_offset_format = {4: 'L', 8: 'Q',}[idx_offset_bytes_size] idx_cords_bytes_size = idx_offset_bytes_size + 4 # parse data via regex record_pattern = r'([\d\D]+?\x00[\d\D]{%s})' % idx_cords_bytes_size matched_records = re.findall(record_pattern, self._file) # check records count if len(matched_records) != container.ifo.wordcount: raise Exception('words count is incorrect') # unpack parsed records for matched_record in matched_records: c = matched_record.find('\x00') + 1 record_tuple = unpack('!%sc%sL' % (c, idx_offset_format), matched_record) word, cords = record_tuple[:c-1], record_tuple[c:] self._idx[word] = cords def __getitem__(self, word): """ returns tuple (word_data_offset, word_data_size,) for word in .dict @note: here may be placed flexible search realization """ if isinstance(word, unicode): word = word.encode('utf8') return self._idx[tuple(word)] def __contains__(self, k): """ returns True if index has a word k, else False """ return tuple(k) in self._idx def __eq__(self, y): """ returns True if md5(x.idx) is equal to md5(y.idx), else False """ return new_hash(self._file).digest() == new_hash(y._file).digest() def __ne__(self, y): """ returns True if md5(x.idx) is not equal to md5(y.idx), else False """ return not self.__eq__(y) def __len__(self): return len(self._idx) class _StarDictDict(): """ The .dict file is a pure data sequence, as the offset and size of each word is recorded in the corresponding .idx file. If the "sametypesequence" option is not used in the .ifo file, then the .dict file has fields in the following order: ============== word_1_data_1_type; // a single char identifying the data type word_1_data_1_data; // the data word_1_data_2_type; word_1_data_2_data; ...... // the number of data entries for each word is determined by // word_data_size in .idx file word_2_data_1_type; word_2_data_1_data; ...... ============== It's important to note that each field in each word indicates its own length, as described below. The number of possible fields per word is also not fixed, and is determined by simply reading data until you've read word_data_size bytes for that word. Suppose the "sametypesequence" option is used in the .idx file, and the option is set like this: sametypesequence=tm Then the .dict file will look like this: ============== word_1_data_1_data word_1_data_2_data word_2_data_1_data word_2_data_2_data ...... ============== The first data entry for each word will have a terminating '\0', but the second entry will not have a terminating '\0'. The omissions of the type chars and of the last field's size information are the optimizations required by the "sametypesequence" option described above. If "idxoffsetbits=64", the file size of the .dict file will be bigger than 4G. Because we often need to mmap this large file, and there is a 4G maximum virtual memory space limit in a process on the 32 bits computer, which will make we can get error, so "idxoffsetbits=64" dictionary can't be loaded in 32 bits machine in fact, StarDict will simply print a warning in this case when loading. 64-bits computers should haven't this limit. Type identifiers ---------------- Here are the single-character type identifiers that may be used with the "sametypesequence" option in the .idx file, or may appear in the dict file itself if the "sametypesequence" option is not used. Lower-case characters signify that a field's size is determined by a terminating '\0', while upper-case characters indicate that the data begins with a network byte-ordered guint32 that gives the length of the following data's size(NOT the whole size which is 4 bytes bigger). 'm' Word's pure text meaning. The data should be a utf-8 string ending with '\0'. 'l' Word's pure text meaning. The data is NOT a utf-8 string, but is instead a string in locale encoding, ending with '\0'. Sometimes using this type will save disk space, but its use is discouraged. 'g' A utf-8 string which is marked up with the Pango text markup language. For more information about this markup language, See the "Pango Reference Manual." You might have it installed locally at: file:///usr/share/gtk-doc/html/pango/PangoMarkupFormat.html 't' English phonetic string. The data should be a utf-8 string ending with '\0'. Here are some utf-8 phonetic characters: θʃŋʧðʒæıʌʊɒɛəɑɜɔˌˈːˑṃṇḷ æɑɒʌәєŋvθðʃʒɚːɡˏˊˋ 'x' A utf-8 string which is marked up with the xdxf language. See http://xdxf.sourceforge.net StarDict have these extention: can have "type" attribute, it can be "image", "sound", "video" and "attach". can have "k" attribute. 'y' Chinese YinBiao or Japanese KANA. The data should be a utf-8 string ending with '\0'. 'k' KingSoft PowerWord's data. The data is a utf-8 string ending with '\0'. It is in XML format. 'w' MediaWiki markup language. See http://meta.wikimedia.org/wiki/Help:Editing#The_wiki_markup 'h' Html codes. 'r' Resource file list. The content can be: img:pic/example.jpg // Image file snd:apple.wav // Sound file vdo:film.avi // Video file att:file.bin // Attachment file More than one line is supported as a list of available files. StarDict will find the files in the Resource Storage. The image will be shown, the sound file will have a play button. You can "save as" the attachment file and so on. 'W' wav file. The data begins with a network byte-ordered guint32 to identify the wav file's size, immediately followed by the file's content. 'P' Picture file. The data begins with a network byte-ordered guint32 to identify the picture file's size, immediately followed by the file's content. 'X' this type identifier is reserved for experimental extensions. """ def __init__(self, dict_prefix, container): """ opens regular or dziped .dict file """ self._container = container dict_filename = '%s.dict' % dict_prefix dict_filename_dz = '%s.dz' % dict_filename try: self._file = open(dict_filename, 'rb') except IOError: try: self._file = gzip.open(dict_filename_dz, 'rb') except IOError: raise Exception('.dict file does not exists') def __getitem__(self, word): """ returns data from .dict for word """ # getting word data coordinats cords = self._container.idx[word] # seeking in file for data self._file.seek(cords[0]) # reading data bytes = self._file.read(cords[1]) return bytes def __len__(self): return len(self.keys()) def keys(self): return self._container.idx._idx.keys() class _StarDictSyn(): def __init__(self, dict_prefix, container): syn_filename = '%s.syn' % dict_prefix try: self._file = open(syn_filename) except IOError: # syn file is optional, passing silently pass class StarDict(DictionaryType): """ Dictionary-like class for lazy manipulating stardict dictionaries All items of this dictionary are writable and dict is expandable itself, but changes are not stored anywhere and available in runtime only. We assume in this documentation that "x" or "y" is instances of the StarDictDict class and "x.{ifo,idx{,.gz},dict{,.dz),syn}" or "y.{ifo,idx{,.gz},dict{,.dz),syn}" is files of the corresponding stardict dictionaries. Following documentation is from the "dict" class an is subkect to rewrite in further impleneted methods: """ def __init__(self, filename_prefix): """ filename_prefix: path to dictionary files without files extensions initializes new StarDictDict instance from stardict dictionary files provided by filename_prefix @todo: option to init from path to folder not from prefix """ DictionaryType.__init__(self, filename_prefix) def load(self, filename_prefix): if filename_prefix.endswith('.dict.dz'): filename_prefix = filename_prefix[:-len(('.dict.dz'))] elif filename_prefix.endswith('.dct.dz'): filename_prefix = filename_prefix[:-len(('.dct.dz'))] elif filename_prefix.endswith('.dict'): filename_prefix = filename_prefix[:-len(('.dict'))] elif filename_prefix.endswith('.dct'): filename_prefix = filename_prefix[:-len(('.dct'))] elif filename_prefix.endswith('.idx'): filename_prefix = filename_prefix[:-len(('.idx'))] elif filename_prefix.endswith('.ifo'): filename_prefix = filename_prefix[:-len(('.ifo'))] self.filename_prefix = filename_prefix #We want to have the same __hash value for the .idx .dz and .ifo files self._DictionaryType__filepath = "%s.ifo" % filename_prefix try: # reading somedict.ifo self.ifo = _StarDictIfo(dict_prefix=filename_prefix, container=self) # reading somedict.idx or somedict.idx.gz self.idx = _StarDictIdx(dict_prefix=filename_prefix, container=self) # reading somedict.dict or somedict.dict.dz self.dict = _StarDictDict(dict_prefix=filename_prefix, container=self) except Exception, e: raise DictFormatError, e # reading somedict.syn (optional) self.syn = _StarDictSyn(dict_prefix=filename_prefix, container=self) # initializing cache self._dict_cache = {} #Sorting keys self._DictionaryType__keys = self.keys() self._DictionaryType__keys.sort(utils.normalized_comparison) # print self.idx._idx.keys() def keys(self): """ raises NotImplemented exception """ keys = [] for tupled_word in self.dict.keys(): try: keys.append("".join(tupled_word).decode(self.encoding)) except: print "Error with index ", tupled_word return keys def getTypeStr(self): return "StarDict" def getFilePath(self): dict_filename = '%s.dict' % self.filename_prefix dict_filename_dz = '%s.dz' % dict_filename dict_ifo = '%s.ifo' % self.filename_prefix dict_idx = '%s.idx' % self.filename_prefix return [dict_idx, dict_ifo, dict_filename, dict_filename_dz] def getName(self): return self.ifo.bookname.decode('utf-8') def __contains__(self, k): """ returns True if x.idx has a word k, else False """ return k in self.idx def __delitem__(self, k): """ frees cache from word k translation """ del self._dict_cache[k] def __getitem__(self, k): """ returns translation for word k from cache or not and then caches """ if isinstance(k, int): if len(self._dict_cache) > k: k = self._dict_cache.keys()[k] else: k = self.dict.keys()[k] if k in self._dict_cache: result = self._dict_cache[k] else: value = self.dict[k] self._dict_cache[k] = value result = value #print result return (k, Definition(result)) def __len__(self): """ returns number of words provided by wordcount parameter of the x.ifo """ return self.ifo.wordcount def __repr__(self): """ returns classname and bookname parameter of the x.ifo """ return "StarDict <%s (%s)>" % (self.ifo.bookname, self.__len__()) def clear(self): """ clear dict cache """ self._dict_cache = dict() def get(self, k, d=''): """ returns translation of the word k from self.dict or d if k not in x.idx d defaults to empty string """ return k in self and self[k] or d def has_key(self, k): """ returns True if self.idx has a word k, else False """ return k in self.keys() babiloo-2.0.11/core/dictionary/dictionary.py0000644000017300007100000001461111445134342020757 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import bisect # not available on S60 import os import core.modules.utils as utils try: from hashlib import md5 new_hash = md5 except ImportError: # Pre-2.5 Python has no hashlib module. import md5 new_hash = md5.new import traceback def getDictHash(fpath): if fpath.endswith('.dict.dz'): fpath = fpath.split('.dict.dz',1)[0] + '.ifo' elif fpath.endswith('.dct.dz'): fpath = fpath.split('.dct.dz',1)[0] + '.ifo' elif fpath.endswith('.idx'): fpath = fpath.split('.idx',1)[0] + '.ifo' # elif fpath.endswith('.ifo'): # fpath = fpath.rstrip('.ifo') return new_hash(open(fpath,mode='rb').read()).hexdigest() class DictFormatError(Exception): def __init__(self, value): self.value = value def __str__(self): return repr(self.value) class DictionaryType(object): """ Main Dictionary Class """ def __init__(self, dictionary=None): """Initialize variables and load dictionary if requested""" self.__keys = [] self.__dict = {} self.encoding = 'UTF-8' self.version = 'unknown' self.__filepath = None self.__hash = None if dictionary is not None: if isinstance(dictionary, DictionaryType): self.__dict = dictionary.__dict.copy() self.__keys = dictionary.__keys[:] elif isinstance(dictionary, str) or isinstance(dictionary, unicode): #if os.path.isfile(dictionary): #if it points to a file, determine which format is encoded and load that file using the specific Dictionary subclass #print "Loading %s" % dictionary self.__filepath = dictionary self.load(self.__filepath) try: self.__hash = new_hash(file(self.__filepath,mode='rb').read()).hexdigest() except: traceback.print_exc() pass else: self.__dict = dict(dictionary).copy() self.__keys = sorted(self.__dict.keys()) def getAt(self, index): try: return self[self.keys()[index]] except IndexError: return None except Exception, e: traceback.print_exc() def setAt(self, index, value): self[self.keys()[index]] = value def __getitem__(self, key): if isinstance(key, int): word = self.__dict.keys()[key] n_key = self.__keys[key] return (n_key, self.__dict[n_key]) return (key, self.__dict[key]) def __setitem__(self, key, value): if key not in self.__dict: bisect.insort_left(self.__keys, key) self.__dict[key] = value def __delitem__(self, key): i = bisect.bisect_left(self.__keys, key) del self.__keys[i] del self.__dict[key] def get(self, key, value=None): return self.__dict.get(key, value) def setdefault(self, key, value): if key not in self.__dict: bisect.insort_left(self.__keys, key) return self.__dict.setdefault(key, value) def pop(self, key, value=None): if key not in self.__dict: return value i = bisect.bisect_left(self.__keys, key) del self.__keys[i] return self.__dict.pop(key, value) def popitem(self): item = self.__dict.popitem() i = bisect.bisect_left(self.__keys, item[0]) del self.__keys[i] return item def has_key(self, key): return key in self.__dict def __contains__(self, key): return key in self.__dict def __len__(self): return len(self.__dict) def keys(self): return self.__keys def values(self): return [self.__dict[key] for key in self.__keys] def items(self): return [(key, self.__dict[key]) for key in self.__keys] def __iter__(self): return iter(self.__keys) def iterkeys(self): return iter(self.__keys) def itervalues(self): for key in self.__keys: yield self.__dict[key] def iteritems(self): for key in self.__keys: yield key, self.__dict[key] def copy(self): dictionary = DictionaryType() dictionary.__keys = self.__keys[:] dictionary.__dict = self.__dict.copy() return dictionary def clear(self): self.__keys = [] self.__dict = {} def getVersion(self): return self.version def getName(self): return self.getFileName() def getHash(self): return self.__hash def getFileName(self): return os.path.basename(self.__filepath) def getFilePath(self): return self.__filepath def setFilePath(self, filepath): self.__filepath = filepath def getUniqueId(self): return self.getHash() def save(self, filePath): pass def getWords(self): return self.__keys def getTypeStr(self): return "" class Definition(object): def __init__(self, content, comments=None, encoding="utf-8"): # print "%r, %r" % (content, type(content)) try: self.__content = content.decode(encoding) except: self.__content = content # print "%r, %r" % (self.__content, type(self.__content)) self.__comments = comments def __repr__(self): return "Definition <(%r, %r)>"% (self.__content, self.__comments) def content(self): return self.__content def comments(self): return self.__comments babiloo-2.0.11/core/dictionary/SlowoDictionary.py0000644000017300007100000000643711445134342021752 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from __future__ import with_statement # not available on S60 from dictionary import DictionaryType, Definition, DictFormatError import bisect # not available on S60 class SlowoDictionary(DictionaryType): def __init__(self, filePath): DictionaryType.__init__(self, filePath) def __repr__(self): return "SlowoDictionary (%d definitions)" % len(self._DictionaryType__dict) def load(self, filePath): """Load dictionary into memory""" if not filePath.endswith('.dwa'): raise DictFormatError, "Not a valid slowo dictionary" self.filePath = filePath self.units = [] with open(filePath) as fd: for line in fd: content = '' try: line = unicode(line, self.encoding) except Exception, e: raise Exception, "Unable to encode text in %s" % self.encoding word, end = line.split('=') word = word.strip() chunks = end.split(';') for chunk in chunks: chunk = chunk.strip() if not chunk: continue try: trans, comment = chunk.split('//') except: trans = chunk comment = None trans = trans.strip() if comment: comment = comment.strip() content += "%s //%s
" % (trans , comment) #self._Dictionary__keys.append(word) bisect.insort_left(self._DictionaryType__keys, word) # try: # self._DictionaryType__dict[word].append(Definition(content)) # except: self._DictionaryType__dict[word] = Definition(content) def save(self, filePath=None): """Write data to disk""" if not filePath: filePath = self.filePath with open(filePath, 'w') as fd: for word in self._Dictionary__keys: outstr = "%s = " % word chunks = [] for definition in self._DictionaryType__dict[word]: chunks = definition._Definition__content.split('\n') outstr += u' ; '.join(chunks) outstr = outstr.encode(self.encoding) print >> fd, outstr def getTypeStr(self): return "Slowo" babiloo-2.0.11/core/dictionary/psdict.py0000644000017300007100000003012511445134342020076 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # psdict.py: SDictionary reader #################################### # SdiQt -- SDictionary viewer based on Qt library # Copyright (C) 2006 Dmitri Brechalov # # This file is borrowed from the project SDict Viewer # (http://sdictviewer.sourceforge.net/) # with minor modifications. # # Copyright (C) Igor Tkach, 2006 # # 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. # The full license is in the file COPYING, distributed as part of # this software. #################################### try: import zlib except: pass try: import bz2 # not available on S60 except: pass import struct from dictionary import DictionaryType, DictFormatError, Definition """ +--------+------------+-----------+--------------------------------------------+ | Offset | Len, bytes | Content | Description | +--------+------------+-----------+--------------------------------------------+ | 0x0 | 4 | uint8_t[] | Signature, 'sdct' | | 0x4 | 3 | uint8_t[] | Input language | | 0x7 | 3 | uint8_t[] | Output language | | 0xa | 1 | uint8_t | Compression method : (bytes 0-3)| | | | | and index levels : (bytes 4-7)| | 0xb | 4 | uint32_t | Amount of words | | 0xf | 4 | uint32_t | Length of short index | | 0x13 | 4 | uint32_t | Offset of 'title' unit | | 0x17 | 4 | uint32_t | Offset of 'copyright' unit | | 0x1b | 4 | uint32_t | Offset of 'version' unit | | 0x1f | 4 | uint32_t | Offset of short index | | 0x23 | 4 | uint32_t | Offset of full index | | 0x27 | 4 | uint32_t | Offset of articles | +--------+------------+-----------+--------------------------------------------+ """ class GzipCompression: def __str__( self ): return "gzip" def decompress( self, string ): return zlib.decompress( string ) class Bzip2Compression: def __str__( self ): return "bzip2" def decompress( self, string ): return bz2.decompress( string ) class NoCompression: def __str__( self ): return "no compression" def decompress( self, string ): return string def read_raw( s, fe ): return s[fe.offset:fe.offset + fe.length] def read_str( s, fe ): raw = read_raw( s, fe ) return raw.replace('\x00', ''); def read_int( s, fe = None): if fe: raw = read_raw( s, fe ) else: raw = s return struct.unpack( '> 4 self.num_of_words = read_int( str, self.f_num_of_words ) self.title_offset = read_int( str, self.f_title ) self.copyright_offset = read_int( str, self.f_copyright ) self.version_offset = read_int( str, self.f_version ) self.articles_offset = read_int( str, self.f_articles ) self.short_index_offset = read_int( str, self.f_short_index ) self.full_index_offset = read_int( str, self.f_full_index ) compressions = {0:NoCompression(), 1:GzipCompression(), 2:Bzip2Compression()} #class DictFormatError(Exception): # def __init__(self, value): # self.value = value # def __str__(self): # return repr(self.value) class SDictionary(DictionaryType): def __init__( self, file_name, encoding = "utf-8"): print "* DictionaryType.__init__" DictionaryType.__init__(self, file_name) print "* self.version = self.read_unit" self.version = self.read_unit(self.header.version_offset) def __len__(self): return self.header.num_of_words def __getitem__(self, key): if isinstance(key, int): key = self.__keys[key] # nguy nga return (key, Definition(self.lookup(key))) def load(self, file_name): #self.encoding = encoding self.file_name = file_name self.file = open( file_name, "rb" ); self.header = Header() self.header.parse( self.file.read( 43 ) ) self.compression = compressions[self.header.compressionType] self.title = self.read_unit( self.header.title_offset ) self.version = self.read_unit( self.header.version_offset ) self.copyright = self.read_unit( self.header.copyright_offset ) self.size =self.header.num_of_words self.current_pos = self.header.full_index_offset self.read_short_index() self.__keys = self.getWordList() self._DictionaryType__keys = self.__keys self.cache = {} def read_unit( self, pos ): self.file.seek( pos ); record_length= read_int(self.file.read( 4 )) s = self.file.read( record_length ) s = self.compression.decompress( s ) #return s return s.decode(self.encoding) def read_short_index(self): self.short_index = {} self.short_list = [] self.file.seek(self.header.short_index_offset) s_index_depth = self.header.short_index_depth short_index_str = self.file.read((s_index_depth*4 + 4)*self.header.short_index_length) short_index_str = self.compression.decompress( short_index_str ) for i in range(self.header.short_index_length): entry_start = i* (s_index_depth+1)*4 short_word = unicode("") for j in range(s_index_depth): uchar_code = read_int(short_index_str[entry_start+j*4:entry_start+(j+1)*4]) if uchar_code != 0: short_word += unichr(uchar_code) pointer_start = entry_start+s_index_depth*4 pointer = read_int(short_index_str[pointer_start:pointer_start+4]) short_word_len = len(short_word) if not self.short_index.has_key(short_word_len): self.short_index[short_word_len] = {} self.short_index[short_word_len][short_word.encode(self.encoding)] = pointer if short_word_len == s_index_depth: self.short_list.append(pointer) def get_search_pos_for(self, word): search_pos = 0 starts_with = "" s_index_depth = self.header.short_index_depth for i in range(1, s_index_depth + 1): index = self.short_index[i] try: #u_word = word.decode(self.encoding) u_word = word u_subword = u_word[:i] subword = u_subword #subword = u_subword.encode(self.encoding) if index.has_key(subword): search_pos = index[subword] starts_with = subword except UnicodeDecodeError, ex: print ex return search_pos, starts_with def lookup( self, word ): search_pos, starts_with = self.get_search_pos_for(word) if search_pos > -1: next_word = None next_ptr = search_pos current_pos = self.header.full_index_offset index_item = None i = -1 while next_word != word: i += 1 current_pos += next_ptr index_item = self.read_full_index_item(current_pos) next_word = index_item.word next_ptr = index_item.next_ptr #if not next_word.startswith(starts_with): #if this is commented, it finds all the words #break if next_ptr == 0: break if index_item != None and index_item.word == word: return self.read_article(index_item.article_ptr) return None def getWordList(self, start_word='', n=None): search_pos, starts_with = self.get_search_pos_for(start_word) word_list = [] if search_pos > -1: next_word = None next_ptr = search_pos current_pos = self.header.full_index_offset index_item = None while True: current_pos += next_ptr index_item = self.read_full_index_item(current_pos) next_word = index_item.word next_ptr = index_item.next_ptr if not next_word.startswith(starts_with) or next_ptr == 0: break elif next_word.startswith(start_word): # try: # next_word = next_word.decode(self.encoding) # next_word = unicode(next_word) # except Exception, e: ## pass # print e word_list.append(next_word) if n and len(word_list) == n: break return word_list def get_words_from_pointer(self, pointer): words = [] current_pos = self.header.full_index_offset while pointer != 0: current_pos += pointer index_item = self.read_full_index_item(current_pos) words.append(index_item.word) pointer = index_item.next_ptr return words def read_full_index_item(self, pointer): if (pointer >= self.header.articles_offset): print 'Warning: attempt to read word from illegal position in dict file' return None if (self.file.tell() != pointer): self.file.seek( pointer ) next_word = read_short(self.file.read( 2 )) prev_word = read_short(self.file.read( 2 )) article_pointer = read_int(self.file.read(4)) if next_word != 0: word_length = next_word - 8 word = self.file.read( word_length ) #word = word.decode(self.encoding) else: word = '' return FullIndexItem(next_word, prev_word, word, article_pointer) def read_article(self, pointer): return self.read_unit(self.header.articles_offset + pointer ) def close( self ): self.file.close() def getTypeStr(self): return "SDict" def getName(self): return self.title # end of psdict.py babiloo-2.0.11/core/test/test_dictionary.py0000644000017300007100000000743711445134342020640 0ustar kmoskmos00000000000000# # Babiloo # Copyright (c) 2008-2010 Ivan Garcia """ Unit tests for dictionary.py """ import unittest import os import sys sys.path.append('..') from core.dictionary import DictionaryType from core.psdict import SDictionary from core import * class TestDictionary(unittest.TestCase): """Dictionary test""" def test_loadPlainDictionary(self): """Dictionary should load dictionary from file""" test_dict = DictionaryType() self.assertEquals(len(test_dict), 0) sample_dict = Dictionary("data/sampledict.dwa") self.assertEquals(len(sample_dict), 7) self.assert_(isinstance(sample_dict, SlowoDictionary)) #self.assertEquals(sample_dict.getParser() == DWAParser) def test_loadSDictionary(self): """Dictionary should load dictionary from file""" #See this http://sdict.com/en/format.php #and get the code from the sdiqt source in our babiloo bzr sdict = Dictionary("data/Catalan_English.dct") self.assertEquals(len(sdict), 1040) self.assert_(sdict['ulleres'] != None) self.assert_(sdict[0] != None) self.assert_(type(sdict) == SDictionary) #self.assertEquals(sdict.getParser() == PlainTextParser) self.assertEquals(sdict.getVersion(),"1.0") self.assertEquals(sdict.getName(),"Catalan-English dictionary") def test_loadStarDictDictionary(self): """Dictionary should load dictionary from file""" sdict = Dictionary("data/stardict-qu-BO_es-1.0.zip") #self.assertEquals(len(sdict), 1040) #self.assert_(sample_dict['ulleres'] != None) #self.assert_(sample_dict[0] != None) self.assertEquals(type(sdict) == StarDictDictionary) #self.assertEquals(sdict.getParser() == PlainTextParser) #self.assertEquals(sdict.getVersion() == "1.0") #self.assertEquals(sdict.getName() == "Catalan-English dictionary") def test_save(self): """Dictionary should correctly write dictionary to disk""" sample_dict = Dictionary("data/sampledict.dwa") self.assertEquals(len(sample_dict), 7) sample_dict.save("data/__output.dwa") sample2_dict = Dictionary("data/__output.dwa") self.assertEquals(len(sample2_dict), len(sample_dict)) os.remove("data/__output.dwa") def test_getArticle(self): """getUnit() should return desired Translation object""" sample_dict = Dictionary("data/sampledict.dwa") self.assert_(sample_dict['du'] != None) self.assert_(sample_dict[0] == 'vienas') # def test_addUnit(self): # """addUnit() should add new translation unit or update old one""" # # editor = dicteditor.Editor() # editor.load("data/sampledict.dwa") # oldCount = len(editor.getUnits()) # # newUnit = dicteditor.Translation() # newUnit.setWord("test") # newUnit.addTranslation("utiutiu") # # editor.addUnit(newUnit) # # self.assertEquals(len(editor.getUnits()), oldCount + 1) # # # def test_removeUnit(self): # """removeUnit() should add new translation unit or update old one""" # # editor = dicteditor.Editor() # editor.load("data/sampledict.dwa") # oldCount = len(editor.getUnits()) # # unit = editor.getUnit('vienas') # editor.removeUnit(unit) # # self.assertEquals(len(editor.getUnits()), oldCount - 1) # # # def test_unicode(self): # """All the strings must be unicode objects""" # # editor = dicteditor.Editor() # editor.load("data/sampledict.dwa") # # for unit in editor.getUnits()[:10]: # for trans in unit.getTranslations().keys(): # self.assertEquals(type(trans), type(u'')) # if __name__ == "__main__": unittest.main() babiloo-2.0.11/core/languages/__init__.py0000644000017300007100000000152411445134342020151 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # see . ''' FileManagement package ''' babiloo-2.0.11/core/languages/availablelanguages.py0000644000017300007100000010460211445134342022222 0ustar kmoskmos00000000000000# -*- coding: UTF-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. """ This file contains a list of language and country names. >>> languages == getLanguages() True >>> len(languages) == len(getNativeLanguageNames()) True >>> combined == getCombined() True >>> len(combined) == len(getCombinedLanguageNames()) True >>> len(countries) == len(getCountries()) True """ def locale2name(locale): languages = getLanguages() if not languages.has_key(locale): languages = getCombined() locale = locale.replace('_','-').lower() if not languages.has_key(locale): print locale, "not found locale into table" return '' name = languages[locale]['english'] if languages[locale].has_key('native'): native = languages[locale]['native'] name += '/ %s' % native return name def getLanguages(): """ Get all languages""" return languages.copy() def getNativeLanguageNames(): """ Get all native language names""" native_languages = {} for lc in languages: native_languages[lc] = languages.get(lc).get('native') return native_languages def getCombined(): """ Get all combined languages""" return combined.copy() def getCombinedLanguageNames(): """ Get all combined language names""" combined_languages = {} for lc in combined: combined_languages[lc] = combined.get(lc).get('english') return combined_languages def getCountries(): """ Get all countries""" return countries # This is a dictionary of dictonaries: # # 'langcode-variation' : {native : 'Native name', english : 'English name', flag : 'flag-*.gif'} # # The current structure is to have language codes following ISO639-1 and to # have flags which are named according to country codes following ISO3166-1. # languages = { 'aa' : {'native' : u'магIарул мацI', 'english' : u'Afar', 'flag' : 'flag-dj.gif'}, 'ab' : {'native' : u'бызшәа', 'english' : u'Abkhazian', 'flag' : 'flag-ge.gif'}, 'af' : {'native' : u'Afrikaans', 'english' : u'Afrikaans', 'flag' : 'flag-za.gif'}, 'am' : {'native' : u'አማርኛ', 'english' : u'Amharic', 'flag' : 'flag-et.gif'}, 'ar' : {'native' : u'العربية', 'english' : u'Arabic', 'flag' : 'flag-ly.gif'}, 'as' : {'native' : u'অসমিয়া', 'english' : u'Assamese'}, 'ay' : {'native' : u'Aymara', 'english' : u'Aymara', 'flag' : 'flag-bo.gif'}, 'az' : {'native' : u'Azəri Türkçəsi', 'english' : u'Azerbaijani', 'flag' : 'flag-az.gif'}, 'ba' : {'native' : u'Bashkir', 'english' : u'Bashkir'}, 'be' : {'native' : u'Беларускі', 'english' : u'Belarussian', 'flag' : 'flag-by.gif'}, 'bg' : {'native' : u'Български', 'english' : u'Bulgarian', 'flag' : 'flag-bg.gif'}, 'bh' : {'native' : u'Bihari', 'english' : u'Bihari'}, 'bi' : {'native' : u'Bislama', 'english' : u'Bislama', 'flag' : 'flag-vu.gif'}, 'bn' : {'native' : u'বাংলা', 'english' : u'Bengali'}, 'bo' : {'native' : u'བོད་སྐད་', 'english' : u'Tibetan'}, 'bs' : {'native' : u'Bosanski', 'english' : u'Bosnian', 'flag' : 'flag-ba.gif'}, 'br' : {'native' : u'Brezhoneg', 'english' : u'Breton'}, 'ca' : {'native' : u'Català', 'english' : u'Catalan', 'flag' : 'flag-cat.gif'}, 'ch' : {'native' : u'Chamoru', 'english' : u'Chamorro'}, 'co' : {'native' : u'Corsu', 'english' : u'Corsican'}, 'cs' : {'native' : u'Čeština', 'english' : u'Czech', 'flag' : 'flag-cz.gif'}, 'cy' : {'native' : u'Cymraeg', 'english' : u'Welsh', 'flag' : 'flag-cym.gif'}, 'da' : {'native' : u'Dansk', 'english' : u'Danish', 'flag' : 'flag-dk.gif'}, 'de' : {'native' : u'Deutsch', 'english' : u'German', 'flag' : 'flag-de.gif'}, 'dz' : {'native' : u'རྫོང་ཁ', 'english' : u'Bhutani', 'flag' : 'flag-bt.gif'}, 'el' : {'native' : u'Ελληνικά', 'english' : u'Greek', 'flag' : 'flag-gr.gif'}, 'en' : {'native' : u'English', 'english' : u'English', 'flag' : 'flag-gb.gif'}, 'eo' : {'native' : u'Esperanto', 'english' : u'Esperanto', 'flag' : 'flag-eo.gif'}, 'es' : {'native' : u'Español', 'english' : u'Spanish', 'flag' : 'flag-es.gif'}, 'et' : {'native' : u'Eesti', 'english' : u'Estonian', 'flag' : 'flag-ee.gif'}, 'eu' : {'native' : u'Euskara', 'english' : u'Basque', 'flag' : 'flag-eu.gif'}, 'fa' : {'native' : u'فارسی', 'english' : u'Persian', 'flag' : 'flag-ir.gif'}, 'fi' : {'native' : u'Suomi', 'english' : u'Finnish', 'flag' : 'flag-fi.gif'}, 'fj' : {'native' : u'Fiji', 'english' : u'Fiji', 'flag' : 'flag-fj.gif'}, 'fo' : {'native' : u'Føroyska', 'english' : u'Faroese', 'flag' : 'flag-fj.gif'}, 'fr' : {'native' : u'Français', 'english' : u'French', 'flag' : 'flag-fr.gif'}, 'fy' : {'native' : u'Frysk', 'english' : u'Frisian'}, 'ga' : {'native' : u'Gaeilge', 'english' : u'Irish Gaelic', 'flag' : 'flag-ie.gif'}, 'gd' : {'native' : u'Gàidhlig', 'english' : u'Scottish Gaelic'}, 'gl' : {'native' : u'Galego', 'english' : u'Galician'}, 'gn' : {'native' : u'Guarani', 'english' : u'Guarani', 'flag' : 'flag-py.gif'}, 'gu' : {'native' : u'ગુજરાતી', 'english' : u'Gujarati'}, 'gv' : {'native' : u'Gaelg', 'english' : u'Manx Gaelic'}, 'ha' : {'native' : u'هَوُس', 'english' : u'Hausa'}, 'he' : {'native' : u'עברית', 'english' : u'Hebrew', 'flag' : 'flag-il.gif'}, 'hi' : {'native' : u'हिंदी', 'english' : u'Hindi', 'flag' : 'flag-in.gif'}, 'hr' : {'native' : u'Hrvatski', 'english' : u'Croatian', 'flag' : 'flag-hr.gif'}, 'hu' : {'native' : u'Magyar', 'english' : u'Hungarian', 'flag' : 'flag-hu.gif'}, 'hy' : {'native' : u'Հայերէն', 'english' : u'Armenian', 'flag' : 'flag-am.gif'}, 'ia' : {'native' : u'Interlingua', 'english' : u'Interlingua'}, 'id' : {'native' : u'Bahasa Indonesia', 'english' : u'Indonesian', 'flag' : 'flag-id.gif'}, 'ie' : {'native' : u'Interlingue', 'english' : u'Interlingue'}, 'ik' : {'native' : u'Inupiak', 'english' : u'Inupiak'}, 'is' : {'native' : u'Íslenska', 'english' : u'Icelandic', 'flag' : 'flag-is.gif'}, 'it' : {'native' : u'Italiano', 'english' : u'Italian', 'flag' : 'flag-it.gif'}, 'iu' : {'native' : u'ᐃᓄᒃᑎᑐᑦ', 'english' : u'Inuktitut', 'flag' : 'flag-it.gif'}, 'ja' : {'native' : u'日本語', 'english' : u'Japanese', 'flag' : 'flag-jp.gif'}, 'jbo': {'native' : u'lojban', 'english' : u'Lojban'}, 'jw' : {'native' : u'Basa Jawi', 'english' : u'Javanese', 'flag' : 'flag-id.gif'}, 'ka' : {'native' : u'ქართული', 'english' : u'Georgian', 'flag' : 'flag-ge.gif'}, 'kk' : {'native' : u'ﻗﺎﺯﺍﻗﺸﺎ', 'english' : u'Kazakh', 'flag' : 'flag-kz.gif'}, 'kl' : {'native' : u'Greenlandic', 'english' : u'Greenlandic', 'flag' : 'flag-gl.gif'}, 'km' : {'native' : u'ខ្មែរ', 'english' : u'Cambodian/Khmer', 'flag' : 'flag-kh.gif'}, 'kn' : {'native' : u'ಕನ್ನಡ', 'english' : u'Kannada', 'flag' : 'flag-in.gif'}, 'ko' : {'native' : u'한국어', 'english' : u'Korean', 'flag' : 'flag-kr.gif'}, 'ks' : {'native' : u'काऽशुर', 'english' : u'Kashmiri', 'flag' : 'flag-in.gif'}, 'ku' : {'native' : u'Kurdí', 'english' : u'Kurdish'}, 'kw' : {'native' : u'Kernewek', 'english' : u'Cornish', 'flag' : 'flag-con.gif'}, 'ky' : {'native' : u'Кыргыз', 'english' : u'Kyrgyz'}, 'la' : {'native' : u'Latin', 'english' : u'Latin', 'flag' : 'flag-va.gif'}, 'lb' : {'native' : u'Lëtzebuergesch', 'english' : u'Luxemburgish', 'flag' : 'flag-lu.gif'}, 'li' : {'native' : u'Limburgs', 'english' : u'Limburgish'}, 'ln' : {'native' : u'Lingala', 'english' : u'Lingala'}, 'lo' : {'native' : u'ພາສາລາວ', 'english' : u'Laotian', 'flag' : 'flag-la.gif'}, 'lt' : {'native' : u'Lietuviskai', 'english' : u'Lithuanian', 'flag' : 'flag-lt.gif'}, 'lv' : {'native' : u'Latviešu', 'english' : u'Latvian'}, 'mg' : {'native' : u'Malagasy', 'english' : u'Madagascarian', 'flag' : 'flag-mg.gif'}, 'mi' : {'native' : u'Maori', 'english' : u'Maori', 'flag' : 'flag-nz.gif'}, 'mk' : {'native' : u'Македонски', 'english' : u'Macedonian', 'flag' : 'flag-mk.gif'}, 'ml' : {'native' : u'മലയാളം', 'english' : u'Malayalam'}, 'mn' : {'native' : u'Монгол', 'english' : u'Mongolian', 'flag' : 'flag-mn.gif'}, 'mo' : {'native' : u'Moldavian', 'english' : u'Moldavian', 'flag' : 'flag-md.gif'}, 'mr' : {'native' : u'मराठी', 'english' : u'Marathi'}, 'ms' : {'native' : u'Bahasa Melayu', 'english' : u'Malay', 'flag' : 'flag-my.gif'}, 'mt' : {'native' : u'Malti', 'english' : u'Maltese', 'flag' : 'flag-mt.gif'}, 'my' : {'native' : u'Burmese', 'english' : u'Burmese', 'flag' : 'flag-my.gif'}, 'na' : {'native' : u'Nauru', 'english' : u'Nauruan', 'flag' : 'flag-nr.gif'}, 'ne' : {'native' : u'नेपाली', 'english' : u'Nepali'}, 'nb' : {'native' : u'Bokmål', 'english' : u'Norwegian Bokmal', 'flag' : 'flag-no.gif'}, 'nl' : {'native' : u'Nederlands', 'english' : u'Dutch', 'flag' : 'flag-nl.gif'}, 'no' : {'native' : u'Norsk', 'english' : u'Norwegian', 'flag' : 'flag-no.gif'}, 'nn' : {'native' : u'Nynorsk', 'english' : u'Norwegian Nynorsk', 'flag' : 'flag-no.gif'}, 'oc' : {'native' : u'Languedoc', 'english' : u'Occitan', 'flag' : 'flag-fr.gif'}, 'om' : {'native' : u'Oromo', 'english' : u'Oromo'}, 'or' : {'native' : u'ଓଡ଼ିଆ', 'english' : u'Oriya'}, 'pa' : {'native' : u'ਪੰਜਾਬੀ', 'english' : u'Punjabi'}, 'pl' : {'native' : u'Polski', 'english' : u'Polish', 'flag' : 'flag-pl.gif'}, 'ps' : {'native' : u'پښتو', 'english' : u'Pashto'}, 'pt' : {'native' : u'Português', 'english' : u'Portuguese', 'flag' : 'flag-pt.gif'}, 'qu' : {'native' : u'Runa Simi', 'english' : u'Quechua'}, 'rm' : {'native' : u'Rumantsch', 'english' : u'Rhaeto-Romance'}, 'rn' : {'native' : u'Kirundi', 'english' : u'Kirundi'}, 'ro' : {'native' : u'Română', 'english' : u'Romanian', 'flag' : 'flag-ro.gif'}, 'ru' : {'native' : u'Русский', 'english' : u'Russian', 'flag' : 'flag-ru.gif'}, 'rw' : {'native' : u'Kiyarwanda', 'english' : u'Kiyarwanda'}, 'sa' : {'native' : u'संस्कृत', 'english' : u'Sanskrit', 'flag' : 'flag-in.gif'}, 'sd' : {'native' : u'Sindhi', 'english' : u'Sindhi', 'flag' : 'flag-pk.gif'}, 'se' : {'native' : u'Northern Sámi', 'english' : u'Northern Sámi'}, 'sg' : {'native' : u'Sangho', 'english' : u'Sangho', 'flag' : 'flag-cf.gif'}, 'sh' : {'native' : u'Serbo-Croatian', 'english' : u'Serbo-Croatian'}, 'si' : {'native' : u'Singhalese', 'english' : u'Singhalese'}, 'sk' : {'native' : u'Slovenčina', 'english' : u'Slovak', 'flag' : 'flag-sk.gif'}, 'sl' : {'native' : u'Slovenščina', 'english' : u'Slovenian', 'flag' : 'flag-si.gif'}, 'sm' : {'native' : u'Samoan', 'english' : u'Samoan'}, 'sn' : {'native' : u'Shona', 'english' : u'Shona'}, 'so' : {'native' : u'Somali', 'english' : u'Somali', 'flag' : 'flag-so.gif'}, 'sq' : {'native' : u'Shqip', 'english' : u'Albanian', 'flag' : 'flag-al.gif'}, 'sr' : {'native' : u'српски', 'english' : u'Serbian', 'flag' : 'flag-cs.gif'}, 'ss' : {'native' : u'Siswati', 'english' : u'Siswati'}, 'st' : {'native' : u'Sesotho', 'english' : u'Sesotho'}, 'su' : {'native' : u'Sudanese', 'english' : u'Sudanese', 'flag' : 'flag-sd.gif'}, 'sv' : {'native' : u'Svenska', 'english' : u'Swedish', 'flag' : 'flag-se.gif'}, 'sw' : {'native' : u'Kiswahili', 'english' : u'Swahili'}, 'ta' : {'native' : u'தமிழ', 'english' : u'Tamil'}, 'te' : {'native' : u'తెలుగు', 'english' : u'Telugu'}, 'tg' : {'native' : u'Тоҷики', 'english' : u'Tadjik', 'flag' : 'flag-tj.gif'}, 'th' : {'native' : u'ไทย', 'english' : u'Thai', 'flag' : 'flag-th.gif'}, 'ti' : {'native' : u'ትግርኛ', 'english' : u'Tigrinya'}, 'tk' : {'native' : u'түркmенче', 'english' : u'Turkmen', 'flag' : 'flag-tm.gif'}, 'tl' : {'native' : u'Tagalog', 'english' : u'Tagalog', 'flag' : 'flag-ph.gif'}, 'tn' : {'native' : u'Setswana', 'english' : u'Setswana', 'flag' : 'flag-bw.gif'}, 'to' : {'native' : u'Lea faka-Tonga', 'english' : u'Tongan'}, 'tr' : {'native' : u'Türkçe', 'english' : u'Turkish', 'flag' : 'flag-tr.gif'}, 'ts' : {'native' : u'Tsonga', 'english' : u'Tsonga'}, 'tt' : {'native' : u'татарча', 'english' : u'Tatar'}, 'tw' : {'native' : u'Twi', 'english' : u'Twi'}, 'ug' : {'native' : u'Uigur', 'english' : u'Uigur'}, 'uk' : {'native' : u'Українська', 'english' : u'Ukrainian', 'flag' : 'flag-ua.gif'}, 'ur' : {'native' : u'اردو', 'english' : u'Urdu', 'flag' : 'flag-pk.gif'}, 'uz' : {'native' : u'Ўзбекча', 'english' : u'Uzbek', 'flag' : 'flag-uz.gif'}, 'vi' : {'native' : u'Tiếng Việt', 'english' : u'Vietnamese', 'flag' : 'flag-vn.gif'}, 'vo' : {'native' : u'Volapük', 'english' : u'Volapük'}, 'wa' : {'native' : u'Walon', 'english' : u'Walloon'}, 'wo' : {'native' : u'Wolof', 'english' : u'Wolof'}, 'xh' : {'native' : u'isiXhosa', 'english' : u'Xhosa', 'flag' : 'flag-za.gif'}, 'yi' : {'native' : u'ײִדיש', 'english' : u'Yiddish', 'flag' : 'flag-il.gif'}, 'yo' : {'native' : u'Yorùbá', 'english' : u'Yorouba'}, 'za' : {'native' : u'Zhuang', 'english' : u'Zhuang'}, 'zh' : {'native' : u'中文', 'english' : u'Chinese', 'flag' : 'flag-cn.gif'}, 'zu' : {'native' : u'isiZulu', 'english' : u'Zulu'} } combined = { 'ar-ae' : {'english' : u'Arabic (United Arab Emirates)', 'flag' : 'flag-ae.gif'}, 'ar-bh' : {'english' : u'Arabic (Bahrain)', 'flag' : 'flag-bh.gif'}, 'ar-dz' : {'english' : u'Arabic (Algeria)', 'flag' : 'flag-dz.gif'}, 'ar-eg' : {'english' : u'Arabic (Egypt)', 'flag' : 'flag-eg.gif'}, 'ar-il' : {'english' : u'Arabic (Israel)', 'flag' : 'flag-il.gif'}, 'ar-iq' : {'english' : u'Arabic (Iraq)', 'flag' : 'flag-iq.gif'}, 'ar-jo' : {'english' : u'Arabic (Jordan)', 'flag' : 'flag-jo.gif'}, 'ar-kw' : {'english' : u'Arabic (Kuwait)', 'flag' : 'flag-kw.gif'}, 'ar-lb' : {'english' : u'Arabic (Lebanon)', 'flag' : 'flag-lb.gif'}, 'ar-ly' : {'english' : u'Arabic (Libya)', 'flag' : 'flag-ly.gif'}, 'ar-ma' : {'english' : u'Arabic (Morocco)', 'flag' : 'flag-ma.gif'}, 'ar-mr' : {'english' : u'Arabic (Mauritania)', 'flag' : 'flag-mr.gif'}, 'ar-om' : {'english' : u'Arabic (Oman)', 'flag' : 'flag-om.gif'}, 'ar-ps' : {'english' : u'Arabic (Palestinian West Bank and Gaza)'}, 'ar-qa' : {'english' : u'Arabic (Qatar)', 'flag' : 'flag-qa.gif'}, 'ar-sa' : {'english' : u'Arabic (Saudi Arabia)', 'flag' : 'flag-sa.gif'}, 'ar-sd' : {'english' : u'Arabic (Sudan)', 'flag' : 'flag-sd.gif'}, 'ar-so' : {'english' : u'Arabic (Somalia)', 'flag' : 'flag-so.gif'}, 'ar-sy' : {'english' : u'Arabic (Syria)', 'flag' : 'flag-sy.gif'}, 'ar-td' : {'english' : u'Arabic (Chad)', 'flag' : 'flag-td.gif'}, 'ar-tn' : {'english' : u'Arabic (Tunisia)', 'flag' : 'flag-tn.gif'}, 'ar-ye' : {'english' : u'Arabic (Yemen)', 'flag' : 'flag-ye.gif'}, 'bn-bd' : {'english' : u'Bengali (Bangladesh)', 'flag' : 'flag-bd.gif'}, 'bn-in' : {'english' : u'Bengali (India)', 'flag' : 'flag-in.gif'}, 'bn-sg' : {'english' : u'Bengali (Singapore)', 'flag' : 'flag-sg.gif'}, 'ch-gu' : {'english' : u'Chamorro (Guam)', 'flag' : 'flag-gu.gif'}, 'ch-mp' : {'english' : u'Chamorro (Northern Mariana Islands)', 'flag' : 'flag-mp.gif'}, 'da-dk' : {'english' : u'Danish (Denmark)', 'flag' : 'flag-dk.gif'}, 'da-gl' : {'english' : u'Danish (Greenland)', 'flag' : 'flag-gl.gif'}, 'de-at' : {'english' : u'German (Austria)', 'native' : u'Deutsch (Österreich)', 'flag' : 'flag-at.gif'}, 'de-be' : {'english' : u'German (Belgium)', 'flag' : 'flag-be.gif'}, 'de-ch' : {'english' : u'German (Switzerland)', 'flag' : 'flag-ch.gif'}, 'de-de' : {'english' : u'German (Germany)', 'flag' : 'flag-de.gif'}, 'de-dk' : {'english' : u'German (Denmark)', 'flag' : 'flag-dk.gif'}, 'de-li' : {'english' : u'German (Liechtenstein)', 'flag' : 'flag-li.gif'}, 'de-lu' : {'english' : u'German (Luxembourg)', 'flag' : 'flag-lu.gif'}, 'el-cy' : {'english' : u'Greek (Cyprus)'}, 'el-gr' : {'english' : u'Greek (Greece)', 'flag' : 'flag-gr.gif'}, 'en-ag' : {'english' : u'English (Antigua and Barbuda)', 'flag' : 'flag-ag.gif'}, 'en-ai' : {'english' : u'English (Anguilla)', 'flag' : 'flag-ai.gif'}, 'en-as' : {'english' : u'English (American Samoa)', 'flag' : 'flag-as.gif'}, 'en-au' : {'english' : u'English (Australia)', 'flag' : 'flag-au.gif'}, 'en-bb' : {'english' : u'English (Barbados)', 'flag' : 'flag-bb.gif'}, 'en-bm' : {'english' : u'English (Bermuda)', 'flag' : 'flag-bm.gif'}, 'en-bn' : {'english' : u'English (Brunei)', 'flag' : 'flag-bn.gif'}, 'en-bs' : {'english' : u'English (Bahamas)', 'flag' : 'flag-bs.gif'}, 'en-bw' : {'english' : u'English (Botswana)', 'flag' : 'flag-bw.gif'}, 'en-bz' : {'english' : u'English (Belize)', 'flag' : 'flag-bz.gif'}, 'en-ca' : {'english' : u'English (Canada)', 'flag' : 'flag-ca.gif'}, 'en-ck' : {'english' : u'English (Cook Islands)', 'flag' : 'flag-ck.gif'}, 'en-cm' : {'english' : u'English (Cameroon)', 'flag' : 'flag-cm.gif'}, 'en-dm' : {'english' : u'English (Dominica)', 'flag' : 'flag-dm.gif'}, 'en-er' : {'english' : u'English (Eritrea)', 'flag' : 'flag-er.gif'}, 'en-et' : {'english' : u'English (Ethiopia)', 'flag' : 'flag-et.gif'}, 'en-fj' : {'english' : u'English (Fiji)', 'flag' : 'flag-fj.gif'}, 'en-fk' : {'english' : u'English (Falkland Islands)', 'flag' : 'flag-fk.gif'}, 'en-fm' : {'english' : u'English (Micronesia)', 'flag' : 'flag-fm.gif'}, 'en-gb' : {'english' : u'English (United Kingdom)', 'flag' : 'flag-gb.gif'}, 'en-gd' : {'english' : u'English (Grenada)', 'flag' : 'flag-gd.gif'}, 'en-gh' : {'english' : u'English (Ghana)', 'flag' : 'flag-gh.gif'}, 'en-gi' : {'english' : u'English (Gibraltar)', 'flag' : 'flag-gi.gif'}, 'en-gm' : {'english' : u'English (Gambia)', 'flag' : 'flag-gm.gif'}, 'en-gu' : {'english' : u'English (Guam)', 'flag' : 'flag-gu.gif'}, 'en-gy' : {'english' : u'English (Guyana)', 'flag' : 'flag-gy.gif'}, 'en-ie' : {'english' : u'English (Ireland)', 'flag' : 'flag-ie.gif'}, 'en-il' : {'english' : u'English (Israel)', 'flag' : 'flag-il.gif'}, 'en-io' : {'english' : u'English (British Indian Ocean Territory)', 'flag' : 'flag-io.gif'}, 'en-jm' : {'english' : u'English (Jamaica)', 'flag' : 'flag-jm.gif'}, 'en-ke' : {'english' : u'English (Kenya)', 'flag' : 'flag-ke.gif'}, 'en-ki' : {'english' : u'English (Kiribati)', 'flag' : 'flag-ki.gif'}, 'en-kn' : {'english' : u'English (St. Kitts-Nevis)', 'flag' : 'flag-kn.gif'}, 'en-ky' : {'english' : u'English (Cayman Islands)', 'flag' : 'flag-ky.gif'}, 'en-lc' : {'english' : u'English (St. Lucia)', 'flag' : 'flag-lc.gif'}, 'en-lr' : {'english' : u'English (Liberia)', 'flag' : 'flag-lr.gif'}, 'en-ls' : {'english' : u'English (Lesotho)', 'flag' : 'flag-ls.gif'}, 'en-mp' : {'english' : u'English (Northern Mariana Islands)', 'flag' : 'flag-mp.gif'}, 'en-ms' : {'english' : u'English (Montserrat)', 'flag' : 'flag-ms.gif'}, 'en-mt' : {'english' : u'English (Malta)', 'flag' : 'flag-mt.gif'}, 'en-mu' : {'english' : u'English (Mauritius)', 'flag' : 'flag-mu.gif'}, 'en-mw' : {'english' : u'English (Malawi)', 'flag' : 'flag-mw.gif'}, 'en-na' : {'english' : u'English (Namibia)', 'flag' : 'flag-na.gif'}, 'en-nf' : {'english' : u'English (Norfolk Island)', 'flag' : 'flag-nf.gif'}, 'en-ng' : {'english' : u'English (Nigeria)', 'flag' : 'flag-ng.gif'}, 'en-nr' : {'english' : u'English (Nauru)', 'flag' : 'flag-nr.gif'}, 'en-nu' : {'english' : u'English (Niue)', 'flag' : 'flag-nu.gif'}, 'en-nz' : {'english' : u'English (New Zealand)', 'flag' : 'flag-nz.gif'}, 'en-pg' : {'english' : u'English (Papua New Guinea)', 'flag' : 'flag-pg.gif'}, 'en-ph' : {'english' : u'English (Philippines)', 'flag' : 'flag-ph.gif'}, 'en-pk' : {'english' : u'English (Pakistan)', 'flag' : 'flag-pk.gif'}, 'en-pn' : {'english' : u'English (Pitcairn)', 'flag' : 'flag-pn.gif'}, 'en-pr' : {'english' : u'English (Puerto Rico)', 'flag' : 'flag-pr.gif'}, 'en-pw' : {'english' : u'English (Palau)', 'flag' : 'flag-pw.gif'}, 'en-rw' : {'english' : u'English (Rwanda)', 'flag' : 'flag-rw.gif'}, 'en-sb' : {'english' : u'English (Solomon Islands)', 'flag' : 'flag-sb.gif'}, 'en-sc' : {'english' : u'English (Seychelles)', 'flag' : 'flag-sc.gif'}, 'en-sg' : {'english' : u'English (Singapore)', 'flag' : 'flag-sg.gif'}, 'en-sh' : {'english' : u'English (St. Helena)', 'flag' : 'flag-sh.gif'}, 'en-sl' : {'english' : u'English (Sierra Leone)', 'flag' : 'flag-sl.gif'}, 'en-so' : {'english' : u'English (Somalia)', 'flag' : 'flag-so.gif'}, 'en-sz' : {'english' : u'English (Swaziland)', 'flag' : 'flag-sz.gif'}, 'en-tc' : {'english' : u'English (Turks and Caicos Islands)', 'flag' : 'flag-tc.gif'}, 'en-tk' : {'english' : u'English (Tokelau)', 'flag' : 'flag-tk.gif'}, 'en-to' : {'english' : u'English (Tonga)', 'flag' : 'flag-to.gif'}, 'en-tt' : {'english' : u'English (Trinidad and Tobago)', 'flag' : 'flag-tt.gif'}, 'en-ug' : {'english' : u'English (Uganda)', 'flag' : 'flag-ug.gif'}, 'en-us' : {'english' : u'English (USA)', 'flag' : 'flag-us.gif'}, 'en-vc' : {'english' : u'English (St. Vincent and the Grenadi)', 'flag' : 'flag-vc.gif'}, 'en-vg' : {'english' : u'English (British Virgin Islands)', 'flag' : 'flag-vg.gif'}, 'en-vi' : {'english' : u'English (U.S. Virgin Islands)', 'flag' : 'flag-vi.gif'}, 'en-vu' : {'english' : u'English (Vanuatu)', 'flag' : 'flag-vu.gif'}, 'en-ws' : {'english' : u'English (Western Samoa)', 'flag' : 'flag-ws.gif'}, 'en-za' : {'english' : u'English (South Africa)', 'flag' : 'flag-za.gif'}, 'en-zm' : {'english' : u'English (Zambia)', 'flag' : 'flag-zm.gif'}, 'en-zw' : {'english' : u'English (Zimbabwe)', 'flag' : 'flag-zw.gif'}, 'es-ar' : {'english' : u'Spanish (Argentina)', 'flag' : 'flag-ar.gif'}, 'es-bo' : {'english' : u'Spanish (Bolivia)', 'flag' : 'flag-bo.gif'}, 'es-cl' : {'english' : u'Spanish (Chile)', 'flag' : 'flag-cl.gif'}, 'es-co' : {'english' : u'Spanish (Colombia)', 'flag' : 'flag-co.gif'}, 'es-cr' : {'english' : u'Spanish (Costa Rica)', 'flag' : 'flag-cr.gif'}, 'es-cu' : {'english' : u'Spanish (Cuba)', 'flag' : 'flag-cu.gif'}, 'es-do' : {'english' : u'Spanish (Dominican Republic)', 'flag' : 'flag-do.gif'}, 'es-ec' : {'english' : u'Spanish (Ecuador)', 'flag' : 'flag-ec.gif'}, 'es-es' : {'english' : u'Spanish (Spain)', 'flag' : 'flag-es.gif'}, 'es-gq' : {'english' : u'Spanish (Equatorial Guinea)', 'flag' : 'flag-gq.gif'}, 'es-gt' : {'english' : u'Spanish (Guatemala)', 'flag' : 'flag-gt.gif'}, 'es-hn' : {'english' : u'Spanish (Honduras)', 'flag' : 'flag-hn.gif'}, 'es-mx' : {'english' : u'Spanish (Mexico)', 'flag' : 'flag-mx.gif'}, 'es-ni' : {'english' : u'Spanish (Nicaragua)', 'flag' : 'flag-ni.gif'}, 'es-pa' : {'english' : u'Spanish (Panama)', 'flag' : 'flag-pa.gif'}, 'es-pe' : {'english' : u'Spanish (Peru)', 'flag' : 'flag-pe.gif'}, 'es-pr' : {'english' : u'Spanish (Puerto Rico)', 'flag' : 'flag-pr.gif'}, 'es-py' : {'english' : u'Spanish (Paraguay)', 'flag' : 'flag-py.gif'}, 'es-sv' : {'english' : u'Spanish (El Salvador)', 'flag' : 'flag-sv.gif'}, 'es-us' : {'english' : u'Spanish (USA)', 'flag' : 'flag-us.gif'}, 'es-uy' : {'english' : u'Spanish (Uruguay)', 'flag' : 'flag-uy.gif'}, 'es-ve' : {'english' : u'Spanish (Venezuela)', 'flag' : 'flag-ve.gif'}, 'fr-ad' : {'english' : u'French (Andorra)', 'flag' : 'flag-as.gif'}, 'fr-be' : {'english' : u'French (Belgium)', 'flag' : 'flag-be.gif'}, 'fr-bf' : {'english' : u'French (Burkina Faso)', 'flag' : 'flag-bf.gif'}, 'fr-bi' : {'english' : u'French (Burundi)', 'flag' : 'flag-bi.gif'}, 'fr-bj' : {'english' : u'French (Benin)', 'flag' : 'flag-bj.gif'}, 'fr-ca' : {'english' : u'French (Canada)', 'flag' : 'flag-ca.gif'}, 'fr-cd' : {'english' : u'French (Democratic Republic of Congo)', 'flag' : 'flag-cd.gif'}, 'fr-cf' : {'english' : u'French (Central African Republic)', 'flag' : 'flag-cf.gif'}, 'fr-cg' : {'english' : u'French (Congo)', 'flag' : 'flag-cg.gif'}, 'fr-ch' : {'english' : u'French (Switzerland)', 'flag' : 'flag-ch.gif'}, 'fr-ci' : {'english' : u'French (Cote d\'Ivoire)', 'flag' : 'flag-ci.gif'}, 'fr-cm' : {'english' : u'French (Cameroon)', 'flag' : 'flag-cm.gif'}, 'fr-dj' : {'english' : u'French (Djibouti)', 'flag' : 'flag-dj.gif'}, 'fr-fr' : {'english' : u'French (France)', 'flag' : 'flag-fr.gif'}, 'fr-ga' : {'english' : u'French (Gabon)', 'flag' : 'flag-ga.gif'}, 'fr-gb' : {'english' : u'French (United Kingdom)', 'flag' : 'flag-gb.gif'}, 'fr-gf' : {'english' : u'French (French Guiana)', 'flag' : 'flag-gf.gif'}, 'fr-gn' : {'english' : u'French (Guinea)', 'flag' : 'flag-gn.gif'}, 'fr-gp' : {'english' : u'French (Guadeloupe)', 'flag' : 'flag-gp.gif'}, 'fr-ht' : {'english' : u'French (Haiti)', 'flag' : 'flag-ht.gif'}, 'fr-it' : {'english' : u'French (Italy)', 'flag' : 'flag-it.gif'}, 'fr-km' : {'english' : u'French (Comoros Islands)', 'flag' : 'flag-km.gif'}, 'fr-lb' : {'english' : u'French (Lebanon)', 'flag' : 'flag-lb.gif'}, 'fr-lu' : {'english' : u'French (Luxembourg)', 'flag' : 'flag-lu.gif'}, 'fr-mc' : {'english' : u'French (Monaco)', 'flag' : 'flag-mc.gif'}, 'fr-mg' : {'english' : u'French (Madagascar)', 'flag' : 'flag-mg.gif'}, 'fr-ml' : {'english' : u'French (Mali)', 'flag' : 'flag-ml.gif'}, 'fr-mq' : {'english' : u'French (Martinique)', 'flag' : 'flag-mq.gif'}, 'fr-nc' : {'english' : u'French (New Caledonia)', 'flag' : 'flag-nc.gif'}, 'fr-pf' : {'english' : u'French (French Polynesia)', 'flag' : 'flag-pf.gif'}, 'fr-pm' : {'english' : u'French (St. Pierre and Miquelon)', 'flag' : 'flag-pm.gif'}, 'fr-re' : {'english' : u'French (Reunion)', 'flag' : 'flag-re.gif'}, 'fr-rw' : {'english' : u'French (Rwanda)', 'flag' : 'flag-rw.gif'}, 'fr-sc' : {'english' : u'French (Seychelles)', 'flag' : 'flag-sc.gif'}, 'fr-td' : {'english' : u'French (Chad)', 'flag' : 'flag-td.gif'}, 'fr-tg' : {'english' : u'French (Togo)', 'flag' : 'flag-tg.gif'}, 'fr-vu' : {'english' : u'French (Vanuatu)', 'flag' : 'flag-vu.gif'}, 'fr-wf' : {'english' : u'French (Wallis and Futuna)', 'flag' : 'flag-wf.gif'}, 'fr-yt' : {'english' : u'French (Mayotte)', 'flag' : 'flag-yt.gif'}, 'hr-ba' : {'english' : u'Croatian (Bosnia-Herzegovina)', 'flag' : 'flag-ba.gif'}, 'hr-hr' : {'english' : u'Croatian (Croatia)', 'flag' : 'flag-hr.gif'}, 'hu-hu' : {'english' : u'Hungarian (Hungary)', 'flag' : 'flag-hu.gif'}, 'hu-si' : {'english' : u'Hungarian (Slovenia)', 'flag' : 'flag-si.gif'}, 'it-ch' : {'english' : u'Italian (Switzerland)', 'flag' : 'flag-ch.gif'}, 'it-hr' : {'english' : u'Italian (Croatia)', 'flag' : 'flag-hr.gif'}, 'it-it' : {'english' : u'Italian (Italy)', 'flag' : 'flag-it.gif'}, 'it-si' : {'english' : u'Italian (Slovenia)', 'flag' : 'flag-si.gif'}, 'it-sm' : {'english' : u'Italian (San Marino)', 'flag' : 'flag-sm.gif'}, 'ko-kp' : {'english' : u'Korean (Korea, North)', 'flag' : 'flag-kp.gif'}, 'ko-kr' : {'english' : u'Korean (Korea, South)', 'flag' : 'flag-kr.gif'}, 'ln-cd' : {'english' : u'Lingala (Democratic Republic of Congo)', 'flag' : 'flag-cd.gif'}, 'ln-cg' : {'english' : u'Lingala (Congo)', 'flag' : 'flag-cg.gif'}, 'ms-bn' : {'english' : u'Malay (Brunei)', 'flag' : 'flag-bn.gif'}, 'ms-my' : {'english' : u'Malay (Malaysia)', 'flag' : 'flag-my.gif'}, 'ms-sg' : {'english' : u'Malay (Singapore)', 'flag' : 'flag-sg.gif'}, 'nl-an' : {'english' : u'Dutch (Netherlands Antilles)', 'flag' : 'flag-an.gif'}, 'nl-aw' : {'english' : u'Dutch (Aruba)', 'flag' : 'flag-aw.gif'}, 'nl-be' : {'english' : u'Dutch (Belgium)', 'flag' : 'flag-be.gif'}, 'nl-nl' : {'english' : u'Dutch (Netherlands)', 'flag' : 'flag-nl.gif'}, 'nl-sr' : {'english' : u'Dutch (Suriname)', 'flag' : 'flag-sr.gif'}, 'pt-ao' : {'english' : u'Português (Angola)', 'flag' : 'flag-ao.gif'}, 'pt-br' : {'native' : 'Português (Brasil)', 'english' : u'Brazilian Portuguese', 'flag' : 'flag-br.gif'}, 'pt-cv' : {'english' : u'Português (Ilhas Cabo Verde)', 'flag' : 'flag-cv.gif'}, 'pt-gw' : {'english' : u'Português (Guiné-Bissau)', 'flag' : 'flag-gw.gif'}, 'pt-mz' : {'english' : u'Português (Moçambique)', 'flag' : 'flag-mz.gif'}, 'pt-pt' : {'english' : u'Português (Portugal)', 'flag' : 'flag-pt.gif'}, 'pt-st' : {'english' : u'Português (São Tomé e Príncipe)', 'flag' : 'flag-st.gif'}, 'sd-in' : {'english' : u'Sindhi (India)', 'flag' : 'flag-in.gif'}, 'sd-pk' : {'english' : u'Sindhi (Pakistan)', 'flag' : 'flag-pk.gif'}, 'sr-ba' : {'english' : u'Serbian (Bosnia-Herzegovina)', 'flag' : 'flag-ba.gif'}, 'sr-yu' : {'english' : u'Serbian (Yugoslavia)', 'flag' : 'flag-yu.gif'}, 'ss-sz' : {'english' : u'Swati (Swaziland)', 'flag' : 'flag-sz.gif'}, 'ss-za' : {'english' : u'Swati (South Africa)', 'flag' : 'flag-za.gif'}, 'sv-fi' : {'english' : u'Swedish (Finland)', 'flag' : 'flag-fi.gif'}, 'sv-se' : {'english' : u'Swedish (Sweden)', 'flag' : 'flag-se.gif'}, 'sw-ke' : {'english' : u'Swahili (Kenya)', 'flag' : 'flag-ke.gif'}, 'sw-tz' : {'english' : u'Swahili (Tanzania)', 'flag' : 'flag-tz.gif'}, 'ta-in' : {'english' : u'Tamil (India)', 'flag' : 'flag-in.gif'}, 'ta-sg' : {'english' : u'Tamil (Singapore)', 'flag' : 'flag-sg.gif'}, 'tn-bw' : {'english' : u'Tswana (Botswana)', 'flag' : 'flag-bw.gif'}, 'tn-za' : {'english' : u'Tswana (South Africa)', 'flag' : 'flag-za.gif'}, 'tr-bg' : {'english' : u'Turkish (Bulgaria)', 'flag' : 'flag-bg.gif'}, 'tr-cy' : {'english' : u'Turkish (Cyprus)', 'flag' : 'flag-cy.gif'}, 'tr-tr' : {'english' : u'Turkish (Turkey)', 'flag' : 'flag-tr.gif'}, 'ur-in' : {'english' : u'Urdu (India)', 'flag' : 'flag-in.gif'}, 'ur-pk' : {'english' : u'Urdu (Pakistan)', 'flag' : 'flag-ur.gif'}, 'zh-cn' : {'english' : u'Chinese (China)', 'native' : u'简体中文(中国)', 'flag' : 'flag-cn.gif'}, 'zh-hk' : {'english' : u'Chinese (Hongkong)', 'native' : u'繁體中文(香港)', 'flag' : 'flag-hk.gif'}, 'zh-sg' : {'english' : u'Chinese (Singapore)', 'native' : u'简体中文(新加坡)', 'flag' : 'flag-sg.gif'}, 'zh-tw' : {'english' : u'Chinese (Taiwan)', 'native' : u'繁體中文(臺灣)', 'flag' : 'flag-tw.gif'} } # countries list from http://alioth.debian.org/projects/pkg-isocodes/ countries = { 'AD':'Andorra', 'AE':'United Arab Emirates', 'AF':'Afghanistan', 'AG':'Antigua and Barbuda', 'AI':'Anguilla', 'AL':'Albania', 'AM':'Armenia', 'AN':'Netherlands Antilles', 'AO':'Angola', 'AQ':'Antarctica', 'AR':'Argentina', 'AS':'American Samoa', 'AT':'Austria', 'AU':'Australia', 'AW':'Aruba', 'AX':'Åland Islands', 'AZ':'Azerbaijan', 'BA':'Bosnia and Herzegovina', 'BB':'Barbados', 'BD':'Bangladesh', 'BE':'Belgium', 'BF':'Burkina Faso', 'BG':'Bulgaria', 'BH':'Bahrain', 'BI':'Burundi', 'BJ':'Benin', 'BM':'Bermuda', 'BN':'Brunei Darussalam', 'BO':'Bolivia', 'BR':'Brazil', 'BS':'Bahamas', 'BT':'Bhutan', 'BV':'Bouvet Island', 'BW':'Botswana', 'BY':'Belarus', 'BZ':'Belize', 'CA':'Canada', 'CC':'Cocos (Keeling) Islands', 'CD':'Congo, The Democratic Republic of', 'CF':'Central African Republic', 'CG':'Congo', 'CH':'Switzerland', 'CI':"Cote d'Ivoire", 'CK':'Cook Islands', 'CL':'Chile', 'CM':'Cameroon', 'CN':'China', 'CO':'Colombia', 'CR':'Costa Rica', 'CS':'Serbia and Montenegro', 'CU':'Cuba', 'CV':'Cape Verde', 'CX':'Christmas Island', 'CY':'Cyprus', 'CZ':'Czech Republic', 'DE':'Germany', 'DJ':'Djibouti', 'DK':'Denmark', 'DM':'Dominica', 'DO':'Dominican Republic', 'DZ':'Algeria', 'EC':'Ecuador', 'EE':'Estonia', 'EG':'Egypt', 'EH':'Western Sahara', 'ER':'Eritrea', 'ES':'Spain', 'ET':'Ethiopia', 'FI':'Finland', 'FJ':'Fiji', 'FK':'Falkland Islands (Malvinas)', 'FM':'Micronesia, Federated States of', 'FO':'Faroe Islands', 'FR':'France', 'GA':'Gabon', 'GB':'United Kingdom', 'GD':'Grenada', 'GE':'Georgia', 'GF':'French Guiana', 'GH':'Ghana', 'GI':'Gibraltar', 'GL':'Greenland', 'GM':'Gambia', 'GN':'Guinea', 'GP':'Guadeloupe', 'GQ':'Equatorial Guinea', 'GR':'Greece', 'GS':'South Georgia and the South Sandwich Islands', 'GT':'Guatemala', 'GU':'Guam', 'GW':'Guinea-Bissau', 'GY':'Guyana', 'HK':'Hong Kong', 'HM':'Heard Island and McDonald Islands', 'HN':'Honduras', 'HR':'Croatia', 'HT':'Haiti', 'HU':'Hungary', 'ID':'Indonesia', 'IE':'Ireland', 'IL':'Israel', 'IN':'India', 'IO':'British Indian Ocean Territory', 'IQ':'Iraq', 'IR':'Iran, Islamic Republic of', 'IS':'Iceland', 'IT':'Italy', 'JM':'Jamaica', 'JO':'Jordan', 'JP':'Japan', 'KE':'Kenya', 'KG':'Kyrgyzstan', 'KH':'Cambodia', 'KI':'Kiribati', 'KM':'Comoros', 'KN':'Saint Kitts and Nevis', 'KP':"Korea, Democratic People's Republic of", 'KR':'Korea, Republic of', 'KW':'Kuwait', 'KY':'Cayman Islands', 'KZ':'Kazakhstan', 'LA':"Lao People's Democratic Republic", 'LB':'Lebanon', 'LC':'Saint Lucia', 'LI':'Liechtenstein', 'LK':'Sri Lanka', 'LR':'Liberia', 'LS':'Lesotho', 'LT':'Lithuania', 'LU':'Luxembourg', 'LV':'Latvia', 'LY':'Libyan Arab Jamahiriya', 'MA':'Morocco', 'MC':'Monaco', 'MD':'Moldova, Republic of', 'MG':'Madagascar', 'MH':'Marshall Islands', 'MK':'Macedonia, the former Yugoslavian Republic of', 'ML':'Mali', 'MM':'Myanmar', 'MN':'Mongolia', 'MO':'Macao', 'MP':'Northern Mariana Islands', 'MQ':'Martinique', 'MR':'Mauritania', 'MS':'Montserrat', 'MT':'Malta', 'MU':'Mauritius', 'MV':'Maldives', 'MW':'Malawi', 'MX':'Mexico', 'MY':'Malaysia', 'MZ':'Mozambique', 'NA':'Namibia', 'NC':'New Caledonia', 'NE':'Niger', 'NF':'Norfolk Island', 'NG':'Nigeria', 'NI':'Nicaragua', 'NL':'Netherlands', 'NO':'Norway', 'NP':'Nepal', 'NR':'Nauru', 'NU':'Niue', 'NZ':'New Zealand', 'OM':'Oman', 'PA':'Panama', 'PE':'Peru', 'PF':'French Polynesia', 'PG':'Papua New Guinea', 'PH':'Philippines', 'PK':'Pakistan', 'PL':'Poland', 'PM':'Saint Pierre and Miquelon', 'PN':'Pitcairn', 'PR':'Puerto Rico', 'PS':'Palestinian Territory, occupied', 'PT':'Portugal', 'PW':'Palau', 'PY':'Paraguay', 'QA':'Qatar', 'RE':'Reunion', 'RO':'Romania', 'RU':'Russian Federation', 'RW':'Rwanda', 'SA':'Saudi Arabia', 'SB':'Solomon Islands', 'SC':'Seychelles', 'SD':'Sudan', 'SE':'Sweden', 'SG':'Singapore', 'SH':'Saint Helena', 'SI':'Slovenia', 'SJ':'Svalbard and Jan Mayen', 'SK':'Slovakia', 'SL':'Sierra Leone', 'SM':'San Marino', 'SN':'Senegal', 'SO':'Somalia', 'SR':'Suriname', 'ST':'Sao Tome and Principe', 'SV':'El Salvador', 'SY':'Syrian Arab Republic', 'SZ':'Swaziland', 'TC':'Turks and Caicos Islands', 'TD':'Chad', 'TF':'French Southern Territories', 'TG':'Togo', 'TH':'Thailand', 'TJ':'Tajikistan', 'TK':'Tokelau', 'TL':'Timor-Leste', 'TM':'Turkmenistan', 'TN':'Tunisia', 'TO':'Tonga', 'TR':'Turkey', 'TT':'Trinidad and Tobago', 'TV':'Tuvalu', 'TW':'Taiwan', 'TZ':'Tanzania, United Republic of', 'UA':'Ukraine', 'UG':'Uganda', 'UM':'United States Minor Outlying Islands', 'US':'United States', 'UY':'Uruguay', 'UZ':'Uzbekistan', 'VA':'Holy See (Vatican City State)', 'VC':'Saint Vincent and the Grenadines', 'VE':'Venezuela', 'VG':'Virgin Islands, British', 'VI':'Virgin Islands, U.S.', 'VN':'Viet Nam', 'VU':'Vanuatu', 'WF':'Wallis and Futuna', 'WS':'Samoa', 'YE':'Yemen', 'YT':'Mayotte', 'ZA':'South Africa', 'ZM':'Zambia', 'ZW':'Zimbabwe', } babiloo-2.0.11/core/languages/Languages.py0000644000017300007100000001541611445134342020325 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # see . import core.languages.autodetect_lang as autodetect_lang import re import os.path import logging log = logging.getLogger("babiloo.languages.Languages") import __builtin__ __builtin__._ = lambda x : x LANGUAGES = [{'locale':'sq', 'ISO639': 'sq', 'SubLanguageID': 'alb', 'LanguageName': _('Albanian')}, {'locale':'ar', 'ISO639': 'ar', 'SubLanguageID': 'ara', 'LanguageName': _('Arabic')}, {'locale':'hy', 'ISO639': 'hy', 'SubLanguageID': 'arm', 'LanguageName': _('Armenian')}, {'locale':'ms', 'ISO639': 'ms', 'SubLanguageID': 'may', 'LanguageName': _('Malay')}, {'locale':'bs', 'ISO639': 'bs', 'SubLanguageID': 'bos', 'LanguageName': _('Bosnian')}, {'locale':'pt_BR', 'ISO639': 'pb', 'SubLanguageID': 'pob', 'LanguageName': _('Brazilian')}, {'locale':'bg', 'ISO639': 'bg', 'SubLanguageID': 'bul', 'LanguageName': _('Bulgarian')}, {'locale':'ca', 'ISO639': 'ca', 'SubLanguageID': 'cat', 'LanguageName': _('Catalan')}, {'locale':'eu', 'ISO639': 'eu', 'SubLanguageID': 'eus', 'LanguageName': _('Basque')}, {'locale':'zh_CN', 'ISO639': 'zh', 'SubLanguageID': 'chi', 'LanguageName': _('Chinese')}, {'locale':'hr', 'ISO639': 'hr', 'SubLanguageID': 'hrv', 'LanguageName': _('Croatian')}, {'locale':'cs', 'ISO639': 'cs', 'SubLanguageID': 'cze', 'LanguageName': _('Czech')}, {'locale':'da', 'ISO639': 'da', 'SubLanguageID': 'dan', 'LanguageName': _('Danish')}, {'locale':'nl', 'ISO639': 'nl', 'SubLanguageID': 'dut', 'LanguageName': _('Dutch')}, {'locale':'en', 'ISO639': 'en', 'SubLanguageID': 'eng', 'LanguageName': _('English')}, {'locale':'en_GB', 'ISO639': 'en', 'SubLanguageID': 'bre', 'LanguageName': _('British English')}, {'locale':'eo', 'ISO639': 'eo', 'SubLanguageID': 'epo', 'LanguageName': _('Esperanto')}, {'locale':'et', 'ISO639': 'et', 'SubLanguageID': 'est', 'LanguageName': _('Estonian')}, {'locale':'fi', 'ISO639': 'fi', 'SubLanguageID': 'fin', 'LanguageName': _('Finnish')}, {'locale':'fr', 'ISO639': 'fr', 'SubLanguageID': 'fre', 'LanguageName': _('French')}, {'locale':'gl', 'ISO639': 'gl', 'SubLanguageID': 'glg', 'LanguageName': _('Galician')}, {'locale':'ka', 'ISO639': 'ka', 'SubLanguageID': 'geo', 'LanguageName': _('Georgian')}, {'locale':'de', 'ISO639': 'de', 'SubLanguageID': 'ger', 'LanguageName': _('German')}, {'locale':'el', 'ISO639': 'el', 'SubLanguageID': 'ell', 'LanguageName': _('Greek')}, {'locale':'he', 'ISO639': 'he', 'SubLanguageID': 'heb', 'LanguageName': _('Hebrew')}, {'locale':'hu', 'ISO639': 'hu', 'SubLanguageID': 'hun', 'LanguageName': _('Hungarian')}, {'locale':'id', 'ISO639': 'id', 'SubLanguageID': 'ind', 'LanguageName': _('Indonesian')}, {'locale':'it', 'ISO639': 'it', 'SubLanguageID': 'ita', 'LanguageName': _('Italian')}, {'locale':'ja', 'ISO639': 'ja', 'SubLanguageID': 'jpn', 'LanguageName': _('Japanese')}, {'locale':'kk', 'ISO639': 'kk', 'SubLanguageID': 'kaz', 'LanguageName': _('Kazakh')}, {'locale':'ko', 'ISO639': 'ko', 'SubLanguageID': 'kor', 'LanguageName': _('Korean')}, {'locale':'lv', 'ISO639': 'lv', 'SubLanguageID': 'lav', 'LanguageName': _('Latvian')}, {'locale':'lt', 'ISO639': 'lt', 'SubLanguageID': 'lit', 'LanguageName': _('Lithuanian')}, {'locale':'lb', 'ISO639': 'lb', 'SubLanguageID': 'ltz', 'LanguageName': _('Luxembourgish')}, {'locale':'mk', 'ISO639': 'mk', 'SubLanguageID': 'mac', 'LanguageName': _('Macedonian')}, {'locale':'no', 'ISO639': 'no', 'SubLanguageID': 'nor', 'LanguageName': _('Norwegian')}, {'locale':'fa', 'ISO639': 'fa', 'SubLanguageID': 'per', 'LanguageName': _('Persian')}, {'locale':'pl', 'ISO639': 'pl', 'SubLanguageID': 'pol', 'LanguageName': _('Polish')}, {'locale':'pt', 'ISO639': 'pt', 'SubLanguageID': 'por', 'LanguageName': _('Portuguese')}, {'locale':'ro', 'ISO639': 'ro', 'SubLanguageID': 'rum', 'LanguageName': _('Romanian')}, {'locale':'ru', 'ISO639': 'ru', 'SubLanguageID': 'rus', 'LanguageName': _('Russian')}, {'locale':'sr', 'ISO639': 'sr', 'SubLanguageID': 'scc', 'LanguageName': _('Serbian')}, {'locale':'sk', 'ISO639': 'sk', 'SubLanguageID': 'slo', 'LanguageName': _('Slovak')}, {'locale':'sl', 'ISO639': 'sl', 'SubLanguageID': 'slv', 'LanguageName': _('Slovenian')}, {'locale':'es_ES', 'ISO639': 'es', 'SubLanguageID': 'spa', 'LanguageName': _('Spanish')}, {'locale':'sv', 'ISO639': 'sv', 'SubLanguageID': 'swe', 'LanguageName': _('Swedish')}, {'locale':'th', 'ISO639': 'th', 'SubLanguageID': 'tha', 'LanguageName': _('Thai')}, {'locale':'tr', 'ISO639': 'tr', 'SubLanguageID': 'tur', 'LanguageName': _('Turkish')}, {'locale':'uk', 'ISO639': 'uk', 'SubLanguageID': 'ukr', 'LanguageName': _('Ukrainian')}, {'locale':'vi', 'ISO639': 'vi', 'SubLanguageID': 'vie', 'LanguageName': _('Vietnamese')}] def ListAll_xx(): temp = [] for lang in LANGUAGES: temp.append(lang['ISO639']) return temp def ListAll_xxx(): temp = [] for lang in LANGUAGES: temp.append(lang['SubLanguageID']) return temp def ListAll_locale(): temp = [] for lang in LANGUAGES: temp.append(lang['locale']) return temp def ListAll_names(): temp = [] for lang in LANGUAGES: temp.append(lang['LanguageName']) return temp def xx2xxx(xx): for lang in LANGUAGES: if lang['ISO639'] == xx: return lang['SubLanguageID'] def xxx2xx(xxx): for lang in LANGUAGES: if lang['SubLanguageID'] == xxx: return lang['ISO639'] def xxx2name(xxx): for lang in LANGUAGES: if lang['SubLanguageID'] == xxx: return lang['LanguageName'] def locale2name(locale): for lang in LANGUAGES: if lang['locale'] == locale: return lang['LanguageName'] def xx2name(xx): for lang in LANGUAGES: if lang['ISO639'] == xx: return lang['LanguageName'] def name2xx(name): for lang in LANGUAGES: if lang['LanguageName'].lower() == name.lower(): return lang['ISO639'] def name2xxx(name): for lang in LANGUAGES: if lang['LanguageName'].lower() == name.lower(): return lang['SubLanguageID'] def CleanTagsFile(text): p = re.compile( '<.*?>') return p.sub('',text) babiloo-2.0.11/core/languages/autodetect_lang.py0000644000017300007100000001231511445134342021554 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2006 Thomas Mangin #This program is distributed under Gnu General Public License #(cf. the file COPYING in distribution). Alternatively, you can use #the program under the conditions of the Artistic License (as Perl). #This program is free software; you can redistribute it and/or modify #it under the terms of the GNU General Public License as published by #the Free Software Foundation; either version 3 of the License, or #(at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from exceptions import KeyboardInterrupt import os, re, sys import glob nb_ngrams = 400 class _NGram: def __init__ (self,arg={}): t = type(arg) if t == type(""): self.addText(arg) self.normalise() elif t == type({}): self.ngrams = arg self.normalise() else: self.ngrams = dict() def addText (self,text): ngrams = dict() text = text.replace('\n',' ') text = re.sub('\s+',' ',text) words = text.split(' ') for word in words: word = '_'+word+'_' size = len(word) for i in xrange(size): for s in (1,2,3,4): sub = word[i:i+s] #print "[",sub,"]" if not ngrams.has_key(sub): ngrams[sub] = 0 ngrams[sub] += 1 if i+s >= size: break self.ngrams = ngrams return self def sorted (self): sorted = [(self.ngrams[k],k) for k in self.ngrams.keys()] sorted.sort() sorted.reverse() sorted = sorted[:nb_ngrams] return sorted def normalise (self): count = 0 ngrams = dict() for v,k in self.sorted(): ngrams[k] = count count += 1 self.ngrams = ngrams return self def addValues (self,key,value): self.ngrams[key] = value return self def compare (self,ngram): d = 0 ngrams = ngram.ngrams for k in self.ngrams.keys(): if ngrams.has_key(k): d += abs(ngrams[k] - self.ngrams[k]) else: d += nb_ngrams return d #The LM class were obtained from the libtextcat project, get the latest one from there. class NGram: def __init__ (self): if os.path.isdir(sys.path[0]): #for Linux is /program_folder/ program_folder = sys.path[0] else: #for Windows is the /program_folder/run.py program_folder = os.path.dirname(sys.path[0]) folder = os.path.join(program_folder,'languages','lm') ext='.lm' self.ngrams = dict() folder = os.path.join(folder,'*'+ext) size = len(ext) count = 0 for fname in glob.glob(os.path.normcase(folder)): count += 1 lang = os.path.split(fname)[-1][:-size] ngrams = dict() file = open(fname,'r') for line in file.readlines(): parts = line[:-1].split('\t ') if len(parts) != 2: raise ValueError("invalid language file %s line : %s" % (fname,parts)) try: ngrams[parts[0]] = int(parts[1]) except KeyboardInterrupt: raise except: raise ValueError("invalid language file %s line : %s" % (fname,parts)) if len(ngrams.keys()): self.ngrams[lang] = _NGram(ngrams) file.close() if not count: raise ValueError("no language files found") def classify (self,text): ngram = _NGram(text) r = 'guess' langs = self.ngrams.keys() r = langs.pop() min = self.ngrams[r].compare(ngram) for lang in langs: d = self.ngrams[lang].compare(ngram) if d < min: min = d r = lang return min,r class Generate: def __init__ (self,folder,ext='.txt'): self.ngrams = dict() folder = os.path.join(folder,'*'+ext) size = len(ext) count = 0 for fname in glob.glob(os.path.normcase(folder)): count += 1 lang = os.path.split(fname)[-1][:-size] n = _NGram() file = open(fname,'r') for line in file.readlines(): n.addText(line) file.close() n.normalise() self.ngrams[lang] = n def save (self,folder,ext='.lm'): for lang in self.ngrams.keys(): fname = os.path.join(folder,lang+ext) file = open(fname,'w') for v,k in self.ngrams[lang].sorted(): file.write("%s\t %d\n" % (k,v)) file.close() babiloo-2.0.11/qt/main.ui0000644000017300007100000004214511443252102015046 0ustar kmoskmos00000000000000 MainWindow 0 0 647 476 Babiloo :/icons/babiloo64.png:/icons/babiloo64.png Qt::Horizontal QFrame::StyledPanel QFrame::Raised QTabWidget::West 0 Qt::ElideNone :/icons/edit-find.png:/icons/edit-find.png Articles 0 QLayout::SetDefaultConstraint 0 Clear the search box Clear :/icons/clear-right.png:/icons/clear-right.png Qt::ToolButtonIconOnly :/icons/system-search.png:/icons/system-search.png Qt::ToolButtonTextBesideIcon 0 0 0 16 false QAbstractItemView::SingleSelection false Qt::NoPen false false :/icons/clock.png:/icons/clock.png History 0 0 0 16 false QAbstractItemView::SingleSelection false Qt::NoPen false false :/icons/system-search.png:/icons/system-search.png Search 0 QLayout::SetDefaultConstraint 0 Clear the search box Clear :/icons/clear-right.png:/icons/clear-right.png Qt::ToolButtonIconOnly Qt::StrongFocus :/icons/system-search.png:/icons/system-search.png Qt::ToolButtonTextBesideIcon QAbstractItemView::SingleSelection false false 0 false ... :/icons/process-stop.png:/icons/process-stop.png 0 0 QFrame::StyledPanel QFrame::Raised <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> 0 0 647 24 &File &Help &Settings Dictionaries :/icons/system-log-out.png:/icons/system-log-out.png &Quit :/icons/dialog-information.png:/icons/dialog-information.png &About Babiloo :/icons/preferences-system.png:/icons/preferences-system.png &Configure Babiloo true false &Scan :/icons/dictionary-new.png:/icons/dictionary-new.png Install from file... Import Import :/icons/system-installer.png:/icons/system-installer.png Manage Dictionaries... :/icons/go-home.png:/icons/go-home.png Visit HomePage :/icons/bug.png:/icons/bug.png Report A Problem :/icons/preferences-desktop-locale.png:/icons/preferences-desktop-locale.png Translate This Application... :/icons/internet-web-browser.png:/icons/internet-web-browser.png Download Dictionaries DefinitionView QTextBrowser
definitionView.h
MyLineEdit QLineEdit
gui_widgets.h
babiloo-2.0.11/qt/Qt2Po.py0000644000017300007100000000222511445134342015104 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. import sys import re text = re.sub('QtGui\.QApplication\.translate\(\".*?\",\s(.*),\sNone,\sQtGui\.QApplication\.UnicodeUTF8\)',r'_(\1)',sys.stdin.read()) ignore = ['#000000','%','B','I','U','...','Alt','Shift','Win','Control','Babiloo'] for w in ignore: text = text.replace('_("%s")' %w, '"%s"' %w) print text babiloo-2.0.11/qt/__init__.py0000644000017300007100000000333711445134342015703 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. """ The GUI to libprs500. Also has ebook library management features. """ __docformat__ = "epytext" __author__ = "Ivan Garcia " import sys, os, re, StringIO, traceback from core.modules import APP_TITLE, APP_VERSION error_dialog = None def extension(path): return os.path.splitext(path)[1][1:].lower() def installErrorHandler(dialog): global error_dialog error_dialog = dialog error_dialog.resize(600, 400) error_dialog.setWindowTitle(APP_TITLE + " - Error") error_dialog.setModal(True) def _Warning(msg, e): print >> sys.stderr, msg if e: traceback.print_exc(e) def Error(msg, e): if error_dialog: if e: msg += "
" + traceback.format_exc(e) msg = re.sub("Traceback", "Traceback", msg) msg = re.sub(r"\n", "
", msg) error_dialog.showMessage(msg) error_dialog.show() babiloo-2.0.11/qt/SplashScreen.py0000644000017300007100000000535211445134342016535 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. """ Module implementing a splashscreen """ import os.path from PyQt4.QtCore import Qt from PyQt4.QtGui import QApplication, QPixmap, QSplashScreen, QColor class SplashScreen(QSplashScreen): """ Class implementing a splashscreen for babiloo. """ def __init__(self): """ Constructor """ img_path = os.path.join(os.getcwd(), 'images', 'splash.png') pixmap = QPixmap(img_path) self.labelAlignment = Qt.Alignment(Qt.AlignBottom | Qt.AlignRight | Qt.AlignAbsolute) QSplashScreen.__init__(self, pixmap) self.setMask(pixmap.mask()) self.show() QApplication.flush() def showMessage(self, msg): """ Public method to show a message in the bottom part of the splashscreen. @param msg message to be shown (string or QString) """ QSplashScreen.showMessage(self, msg, self.labelAlignment, QColor(Qt.white)) QApplication.processEvents() def clearMessage(self): """ Public method to clear the message shown. """ QSplashScreen.clearMessage(self) QApplication.processEvents() class NoneSplashScreen(object): """ Class implementing a "None" splashscreen for babiloo. This class implements the same interface as the real splashscreen, but simply does nothing. """ def __init__(self): """ Constructor """ pass def showMessage(self, msg): """ Public method to show a message in the bottom part of the splashscreen. @param msg message to be shown (string or QString) """ pass def clearMessage(self): """ Public method to clear the message shown. """ pass def finish(self, widget): """ Public method to finish the splash screen. @param widget widget to wait for (QWidget) """ pass babiloo-2.0.11/qt/chooseLanguage_ui.py0000644000017300007100000001060011445134342017554 0ustar kmoskmos00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'chooseLanguage.ui' # # Created: Tue Apr 28 13:12:48 2010 # by: PyQt4 UI code generator 4.4.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_ChooseLanguageDialog(object): def setupUi(self, ChooseLanguageDialog): ChooseLanguageDialog.setObjectName("ChooseLanguageDialog") ChooseLanguageDialog.setWindowModality(QtCore.Qt.ApplicationModal) ChooseLanguageDialog.resize(282, 337) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(ChooseLanguageDialog.sizePolicy().hasHeightForWidth()) ChooseLanguageDialog.setSizePolicy(sizePolicy) ChooseLanguageDialog.setModal(True) self.verticalLayout = QtGui.QVBoxLayout(ChooseLanguageDialog) self.verticalLayout.setObjectName("verticalLayout") self.label = QtGui.QLabel(ChooseLanguageDialog) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) self.languagesList = QtGui.QListWidget(ChooseLanguageDialog) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.languagesList.sizePolicy().hasHeightForWidth()) self.languagesList.setSizePolicy(sizePolicy) self.languagesList.setObjectName("languagesList") self.verticalLayout.addWidget(self.languagesList) self.line = QtGui.QFrame(ChooseLanguageDialog) self.line.setFrameShape(QtGui.QFrame.HLine) self.line.setFrameShadow(QtGui.QFrame.Sunken) self.line.setObjectName("line") self.verticalLayout.addWidget(self.line) self.label_2 = QtGui.QLabel(ChooseLanguageDialog) self.label_2.setTextFormat(QtCore.Qt.RichText) self.label_2.setOpenExternalLinks(True) self.label_2.setObjectName("label_2") self.verticalLayout.addWidget(self.label_2) self.line_2 = QtGui.QFrame(ChooseLanguageDialog) self.line_2.setFrameShape(QtGui.QFrame.HLine) self.line_2.setFrameShadow(QtGui.QFrame.Sunken) self.line_2.setObjectName("line_2") self.verticalLayout.addWidget(self.line_2) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") spacerItem = QtGui.QSpacerItem(158, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.OKButton = QtGui.QPushButton(ChooseLanguageDialog) self.OKButton.setObjectName("OKButton") self.horizontalLayout.addWidget(self.OKButton) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(ChooseLanguageDialog) QtCore.QMetaObject.connectSlotsByName(ChooseLanguageDialog) def retranslateUi(self, ChooseLanguageDialog): ChooseLanguageDialog.setWindowTitle(QtGui.QApplication.translate("ChooseLanguageDialog", "Choose language:", None, QtGui.QApplication.UnicodeUTF8)) self.label.setText(QtGui.QApplication.translate("ChooseLanguageDialog", "Available languages:", None, QtGui.QApplication.UnicodeUTF8)) self.label_2.setText(QtGui.QApplication.translate("ChooseLanguageDialog", "\n" "\n" "

Click here to help us to translate

\n" "

Babiloo into your language.

", None, QtGui.QApplication.UnicodeUTF8)) self.OKButton.setText(QtGui.QApplication.translate("ChooseLanguageDialog", "OK", None, QtGui.QApplication.UnicodeUTF8)) babiloo-2.0.11/qt/definitionView.py0000644000017300007100000000610011445134342017116 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtGui import QTextBrowser, QKeyEvent from core.dictionary.dictionary import Definition from PyQt4.QtCore import Qt class DefinitionView(QTextBrowser): def __init__(self, parent): QTextBrowser.__init__(self, parent) self._frame = parent self._main = None def getMainApp(self): return self._main def keyPressEvent(self, event): if type(event) == QKeyEvent: #here accept the event and do something if event.modifiers() == Qt.NoModifier: text = event.text() if text: self.getMainApp().articlesText.setFocus() self.getMainApp().articlesText.keyPressEvent(event) event.ignore() return QTextBrowser.keyPressEvent(self, event) def setIntroduction(self): self.setHtml('

%s

  • %s
  • \n
  • %s
  • %s
' % (_("Short Usage Information:"), _("To start using dictionary, select one from the Dictionaries menu."), _("To install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab."), _("To install a new dictionary from file, select Install from file... from the Dictionaries menu."))) def setDefinition(self, word, definition = None, dictionaryName = None): if dictionaryName == None: dictionaryName = self.getMainApp().engine.getDictionary(self.getMainApp().activeDictionary).getName() word_header = '
%s%s

' % (word, dictionaryName) if definition == None: self.setHtml(word_header + _('The word %s is not found.') % word) else: if isinstance(definition, Definition): self.setHtml(word_header + definition.content()) else: self.setHtml(word_header + definition) babiloo-2.0.11/qt/onlineDictionariesView.py0000644000017300007100000003732011450222303020607 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import Qt, SIGNAL import PyQt4.QtCore as QtCore from PyQt4.Qt import QApplication, QString, QFont, QAbstractListModel, \ QVariant, QAbstractTableModel, QTableView, QListView, \ QLabel, QAbstractItemView, QPixmap, QIcon, QSize, \ QSpinBox, QPoint, QPainterPath, QItemDelegate, QPainter, \ QPen, QColor, QLinearGradient, QBrush, QStyle, \ QByteArray, QBuffer, QMimeData, \ QDrag, QRect, QFileDialog, QMessageBox from PyQt4.QtGui import QProgressDialog, QPixmap, QSplashScreen, QErrorMessage, QLineEdit, \ QMessageBox, QFileDialog, QIcon, QDialog, QInputDialog,QDirModel, QItemSelectionModel #import languages.Languages as languages import images_rc import logging log = logging.getLogger("babiloo.gui.OnlineDictionariesView") import os, urllib, traceback, tempfile import core.net.downloader as downloader from core.languages import Languages, autodetect_lang, availablelanguages from core.modules import APP_TITLE, APP_VERSION class Node: def __init__(self, data, parent=None): self.data=data self.checked = False self.parent=parent self.children=[] def addChild(self, data): node=Node(data, self) self.children.append(node) return node def row(self): if self.parent: return self.parent.children.index(self) else: return 0 class OnlineDictionariesModel(QtCore.QAbstractItemModel): def __init__(self, parent=None): QtCore.QAbstractItemModel.__init__(self, parent) self.root=Node(QtCore.QVariant("")) self.selectedNode = None self._main = parent self.engine = parent.engine self.window = None #self.window = self._main.settingsDialog #check the list of dicts from registry self.dicts = self.engine.getDictionaries() def setDictionaries(self,dictionaries): self.clearTree() for lang, dicts in dictionaries.items(): languageName = availablelanguages.locale2name(lang) if not languageName: languageName = lang lang_item = {'type':'lang','nameLanguage': languageName} langNode = self.root.addChild(lang_item) for dict in dicts: dictNode = langNode.addChild(dict) #dictNode.setCheckable(True) def getMainApp(self): return self._main def clearTree(self): self.selectedNode = None self.languageFilter = None del self.root self.root=Node(QtCore.QVariant("")) self.reset() #Better than emit the dataChanged signal def unselectDictionaries(self): for lang in self.root.children: for dict in lang.children: dict.checked = False def columnCount(self, parent): if parent.isValid(): return 1 #Only 1 column else: # header return 1 #len(self.root.data) def getIndexFromLanguage(self, lang): #TODO for langItem in self.root.children: #self.index(langItem.row(),0, langItem.parent) print langItem.data print langItem def data(self, index, role): if not index.isValid(): return QVariant() data = index.internalPointer().data if data["type"] == "lang": #It's a SUBTITLE treeitem. lang = data # if role == QtCore.Qt.ForegroundRole: # if already in locale # return QVariant(QColor(Qt.red)) if role == QtCore.Qt.FontRole: return QVariant(QFont('Arial', 9, QFont.Bold)) if role == QtCore.Qt.DisplayRole: #Constructing the row text to show in the TreeView line = "[%s]" % lang["nameLanguage"] return QVariant(line) return QVariant() elif data["type"] == "dict": dict = data if role == QtCore.Qt.ForegroundRole: return QVariant(QColor(Qt.blue)) if role == QtCore.Qt.FontRole: return QVariant(QFont('Arial', 9, QFont.Bold)) if role == QtCore.Qt.CheckStateRole: if index.internalPointer().checked: return QVariant(Qt.Checked) else: return QVariant(Qt.Unchecked) if role == QtCore.Qt.DisplayRole: return QVariant(dict["name"]) return QVariant() def flags(self, index): if not index.isValid(): return Qt.ItemIsEnabled data = index.internalPointer().data if data["type"] == "dict": return QtCore.Qt.ItemIsUserCheckable | QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable elif data["type"] == "lang": return QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable def getTopNodes(self): return [self.index(parentItem.row(), 0) for parentItem in self.root.children] def getSelectedItem(self, index = None): if index == None: #We want to know the current Selected Item return self.selectedNode if not index.isValid(): return None else: self.selectedNode = index.internalPointer() return self.selectedNode def getCheckedDictionaries(self): checkedDicts = [] for lang in self.root.children: for dict in lang.children: if dict.checked: checkedDicts.append(dict.data) return checkedDicts def headerData(self, section, orientation, role): # if orientation == QtCore.Qt.Horizontal and role == QtCore.Qt.DisplayRole: # return self.root.data[section] return QtCore.QVariant("") #Hide headers def index(self, row, column, parent): if row < 0 or column < 0 or row >= self.rowCount(parent) or column >= self.columnCount(parent): return QtCore.QModelIndex() if not parent.isValid(): parentItem = self.root else: parentItem = parent.internalPointer() if row > len(parentItem.children) -1 : return QtCore.QModelIndex() childItem = parentItem.children[row] if childItem: return self.createIndex(row, column, childItem) else: return QtCore.QModelIndex() def parent(self, index): if not index.isValid(): return QtCore.QModelIndex() childItem = index.internalPointer() parentItem = childItem.parent #if parentItem == None: #return QtCore.QModelIndex() if parentItem == self.root: return QtCore.QModelIndex() return self.createIndex(parentItem.row(), 0, parentItem) def rowCount(self, parent): if parent.column() > 0: return 0 if not parent.isValid(): parentItem = self.root else: parentItem = parent.internalPointer() return len(parentItem.children) def downloadFile(self, link, dest_file): #Downloading.... self.window.status_progress = QProgressDialog(_("Downloading files..."), _("&Abort"), 0, 0, self.window) self.window.status_progress.setWindowTitle(_("Downloading")) self.window.setCursor(Qt.BusyCursor) self.window.status_progress.show() self.window.progress(-1) try: outfile=open(dest_file, "wb") fileName=outfile.name.split(os.sep)[-1] proxies = None #TODO: take from options url, length=downloader.createDownload(link, proxies) if int(length) == 0: return False self.window.progress(0, _("Starting the download (%s bytes) ...") % (length)) log.debug("Downloading (%s bytes) to temporary file %s..." % (length, dest_file) ) if length!="?": length=float(length) bytesRead=0.0 self.window.status_progress.setMaximum(100) bytesCounter = 0 for line in url: bytesRead+=len(line) bytesCounter += 1 if bytesCounter == 1024: bytesCounter = 0 if not self.window.progress(): log.debug('Download canceled') self.window.setCursor(Qt.ArrowCursor) return False if length!="?": self.window.progress(100*bytesRead/length, "%s %.02f KB of %.02f KB" % ( 'Downloaded', bytesRead/1024.0, length/1024.0 )) else: self.window.progress(-1) outfile.write(line) url.close() outfile.close() except Exception, e: QMessageBox.about(self.window,_("Error"),_("Unable to download file %s") % link) log.error("Error downloading %s" % link) traceback.print_exc() return False finally: self.window.status_progress.close() self.window.setCursor(Qt.ArrowCursor) return True def installLink(self, tempFilePath): dictionary = self.engine.loadDictionary(tempFilePath) if not dictionary['loaded']: if dictionary['error'] != 'ALREADY_INSTALLED': return False, dictionary['error'] #QMessageBox.about(self.window,_("Error"),_("Error trying to load the dictionary.\nFile corrupted or not supported.")) else: return True, dictionary['error'] #QMessageBox.about(self.window,_("Alert"),_("The dictionary is already installed.")) else: dictionary = dictionary['dict'] self.getMainApp().loadDictionary(dictionary) filename = dictionary.getFileName() try: self.getMainApp().dictFileManager.saveDictionaryFile(dictionary) #QMessageBox.about(self.window,_("Info"), _("Dictionary successfully installed:\n %s") % filename) return True, filename except: return False, filename #QMessageBox.about(self.window,_("Error"),_("Dictionary that couldn't be installed:\n %s") % filename) def onButtonDownloadFromLink(self): self.window = self.getMainApp().settingsDialog link = unicode(self.window.ui.downloadLinkEdit.text()) if not link: QMessageBox.about(self.window,_("Error"),_("Link address is empty")) return fd, tempFilePath = tempfile.mkstemp() if self.downloadFile(link, tempFilePath): if not self.installLink(tempFilePath): QMessageBox.about(self.window,_("Error"),_("Dictionary selected couldn't be installed.")) self.window.dictionariesModel.emit(SIGNAL("layoutAboutToBeChanged()")) self.window.dictionariesModel.dicts = self.engine.getDictionaries() self.window.dictionariesModel.emit(SIGNAL("layoutChanged()")) def onButtonDownloadFromList(self): self.window = self.getMainApp().settingsDialog dicts = self.getCheckedDictionaries() if not dicts: QMessageBox.about(self.window,_("Error"),"Please select some dictionaries first") else: failed_installations = [] for dict in dicts: link = dict['link'] fd, tempFilePath = tempfile.mkstemp() if self.downloadFile(link, tempFilePath): if not self.installLink(tempFilePath): failed_installations.append(tempFilePath) self.window.dictionariesModel.emit(SIGNAL("layoutAboutToBeChanged()")) self.window.dictionariesModel.dicts = self.engine.getDictionaries() self.window.dictionariesModel.emit(SIGNAL("layoutChanged()")) else: failed_installations.append(dict['name']) if failed_installations: QMessageBox.about(self.window,_("Error"),_("Dictionary that couldn't be installed:\n %s") % failed_installations) def onButtonInfoOnlineDict(self): dict = self.getSelectedItem().data QMessageBox.about(self.window,_("Info"),"Language Origin: %s\nLanguage Destination: %s\nName: %s\nLink: %s\n" % (dict['lang_orig'], dict['lang_dest'], dict['name'], dict['link'])) def onButtonRefreshOnlineDict(self): self.window = self.getMainApp().settingsDialog if hasattr(self.window, 'status_progress'): del self.window.status_progress else: self.window.status_progress = QProgressDialog(_("Rescanning dictionaries..."), _("&Abort"), 0, 0, self.window) self.window.status_progress.setWindowTitle(_("Info")) self.window.setCursor(Qt.BusyCursor) self.window.status_progress.show() self.window.progress(-1) self.refreshOnlineDict() self.window.ui.onlineDictionariesView.expandAll() self.window.status_progress.close() self.window.setCursor(Qt.ArrowCursor) def refreshOnlineDict(self): #dictionaries = [{'lang_orig':'vi','lang_dest':'en', 'link':'http://code.launchpad.net/babiloo/trunk/2.0.3/+download/babiloo_2.0.3.1-3_all.deb', 'name':'Vietnamese-English'}] dictionaries = self.getMainApp().OnlineService.GetDictionaries(APP_VERSION) dictionaries_per_lang = {} for dict in dictionaries: lang_orig = dict['lang_orig'] lang_dest = dict['lang_dest'] new_dict = dict new_dict['type'] ='dict' if dictionaries_per_lang.has_key(lang_orig) : dictionaries_per_lang[lang_orig].append(new_dict) else: dictionaries_per_lang[lang_orig] = [new_dict] if lang_orig != lang_dest: if dictionaries_per_lang.has_key(lang_dest) : dictionaries_per_lang[lang_dest].append(new_dict) else: dictionaries_per_lang[lang_dest] = [new_dict] #The english category will only contain those dictionary JUST in english-to-english #avoiding to have a long list of repeated dictionaries hanging from this category. if dictionaries_per_lang.has_key('en'): dictionaries_per_lang['en'] = [dict for dict in dictionaries_per_lang['en'] if dict['lang_orig'] == dict['lang_dest']] if not len(dictionaries_per_lang['en']): del dictionaries_per_lang['en'] self.emit(SIGNAL("layoutAboutToBeChanged()")) self.setDictionaries(dictionaries_per_lang) self.emit(SIGNAL("layoutChanged()")) self.emit(SIGNAL("updatedOnlineDictionaries()")) babiloo-2.0.11/qt/chooseLanguage.py0000644000017300007100000000516311445134342017067 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4 import QtCore, QtGui from PyQt4.QtCore import Qt, SIGNAL from core.languages import Languages, autodetect_lang, availablelanguages from chooseLanguage_ui import Ui_ChooseLanguageDialog import logging log = logging.getLogger("babiloo.gui.chooseLanguage") class chooseLanguageDialog(QtGui.QDialog): def __init__(self, parent, user_locale): QtGui.QDialog.__init__(self) self.ui = Ui_ChooseLanguageDialog() self.ui.setupUi(self) self._main = parent self.connect(self.ui.languagesList, SIGNAL("activated(QModelIndex)"), self.onOkButton) self.connect(self.ui.OKButton, SIGNAL("clicked(bool)"), self.onOkButton) languages = {} for lang_locale in self._main.interface_langs: languageName = availablelanguages.locale2name(lang_locale) if not languageName: languageName = lang_locale languages[languageName] = lang_locale langs = languages.keys() langs.sort() for lang in langs: item = QtGui.QListWidgetItem(lang) item.setData(Qt.UserRole, QtCore.QVariant(languages[lang])) self.ui.languagesList.addItem(item) try: if lang == user_locale: self.ui.languagesList.setCurrentItem(item, QtGui.QItemSelectionModel.ClearAndSelect) except: print "Warning: Please upgrade to a PyQT version >= 4.4" def onOkButton(self): if not self.ui.languagesList.currentItem(): QtGui.QMessageBox.about(self,"Alert","Please select a language") else: choosen_lang = str(self.ui.languagesList.currentItem().data(Qt.UserRole).toString().toUtf8()) self._main.choosenLanguage = choosen_lang self.accept() babiloo-2.0.11/qt/dictionariesview.py0000644000017300007100000001332011445137546017516 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import QSettings, Qt, SIGNAL from PyQt4.Qt import QVariant, QAbstractTableModel, QTableView from PyQt4.QtGui import QProgressDialog, QMessageBox, QFileDialog class DictionariesView(QTableView): def __init__(self, parent): QTableView.__init__(self, parent) class DictionariesModel(QAbstractTableModel): def __init__(self, parent): QAbstractTableModel.__init__(self, parent) self._headers = [_("Type"), _("Dictionary name"), _("Total articles")] self._main = parent self.window = None self.rowSelected = None self.engine = parent.engine #check the list of dicts from registry self.dicts = self.engine.getDictionaries() def flags(self, index): flags = QAbstractTableModel.flags(self, index) if index.isValid(): if index.row() == 0: flags |= Qt.ItemIsDropEnabled return flags def getMainApp(self): return self._main def getTotalRows(self): return len(self.engine.getDictionaries()) def rowCount(self, index): return len(self.engine.getDictionaries()) def columnCount(self, parent): return len(self._headers) def headerData(self, section, orientation, role): if role != Qt.DisplayRole: return QVariant() text = "" if orientation == Qt.Horizontal: text = unicode(self._headers[section]) return QVariant(text) else: return QVariant() def data(self, index, role): row, col = index.row(), index.column() if role == Qt.DisplayRole: if self.dicts[row] != None: if col == 0: text = self.dicts[row].getTypeStr() elif col == 1: text = self.dicts[row].getName() elif col == 2: text = len(self.dicts[row]) else: text = "Unknown" return QVariant(text) return QVariant() def onButtonRefreshDict(self): self.window = self.getMainApp().settingsDialog self.window.status_progress = QProgressDialog(_("Rescanning dictionaries..."), _("&Abort"), 0, 0, self.window) self.window.status_progress.setWindowTitle(_("Info")) self.window.setCursor(Qt.BusyCursor) self.window.status_progress.show() self.window.progress(-1) self.getMainApp().dictFileManager.loadDirectory() self.dicts = self.engine.getDictionaries() self.window.status_progress.close() self.window.setCursor(Qt.ArrowCursor) def onButtonInfoDict(self): if self.rowSelected != None: QMessageBox.about(self.getMainApp().window, _("Error"), self.dicts[self.rowSelected].getName()) def onButtonMoveDownDict(self): pass def onButtonMoveUpDict(self): pass def onButtonDeleteDict(self): if self.rowSelected != None: self.emit(SIGNAL("layoutAboutToBeChanged()")) dictId = self.dicts[self.rowSelected].getUniqueId() dict = self.engine.getDictionary(dictId) self.getMainApp().dictFileManager.removeDictionaryFile(dict) self.engine.deleteDictionary(dictId) menuItem = self.getMainApp().menuCheckDictionaries[dictId] self.getMainApp().menuDictionaries.removeAction(menuItem) del self.getMainApp().menuCheckDictionaries[dictId] self.dicts = self.engine.getDictionaries() self.emit(SIGNAL("layoutChanged()")) if self.getMainApp().activeDictionary == dictId: self.getMainApp().onActivateDictionary(dictId, False) self.getMainApp().definitionView.setIntroduction() self.getMainApp().activeDictionary = None self.getMainApp().onArticlesClearButton() self.getMainApp().settingsDialog.dictSelectionModel.clear() self.getMainApp().settingsDialog.updateButtonsDictionaries() self.getMainApp().updateActiveDictionary() def onButtonImportDict(self): self.getMainApp().onMenuImportDictionary() self.emit(SIGNAL("layoutAboutToBeChanged()")) self.dicts = self.engine.getDictionaries() self.emit(SIGNAL("layoutChanged()")) def onButtonExportDict(self): exportWildCard = "Slowo dictionaries (*.dwa);;" \ "Mova dictionaries (*.mova);;" \ "DICT dictionaries (*.dz)" settings = QSettings() currentDir = settings.value("mainwindow/workingDirectory", QVariant()) fileName = QFileDialog.getSaveFileName(None, _("Export dictionary as..."), currentDir.toString(), exportWildCard) type = None #TODO: Get the type of the dictionary choosen if fileName: QMessageBox.about(self.window, _("Error"), "Function not implemented yet.") #self.engine.exportDictionary(fileName, type) babiloo-2.0.11/qt/wordlistmodel.py0000644000017300007100000000641011445134342017027 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import Qt, SIGNAL from PyQt4.Qt import QAbstractTableModel, QVariant, QModelIndex class WordListModel(QAbstractTableModel): def __init__(self, parent): QAbstractTableModel.__init__(self, parent) self._headers = ["Word"] self._main = parent self.rowSelected = None self.engine = parent.engine #check the list of dicts from registry self.wordlist = [] def flags(self, index): flags = QAbstractTableModel.flags(self, index) #if index.isValid(): #if index.row() == 0: #flags |= Qt.ItemIsDropEnabled return flags def getMainApp(self): return self._main def rowCount(self, parent=QModelIndex()): return len(self.wordlist) def columnCount(self, parent): return len(self._headers) def getWordFromIndex(self, index): row = index.row() if self.wordlist[row] != None: return self.wordlist[row] else: raise IndexError def headerData(self, section, orientation, role): if role != Qt.DisplayRole: return QVariant() text = "" # if orientation == Qt.Horizontal: # text = self._headers[section] # return QVariant(self.trUtf8(text)) # else: return QVariant() def data(self, index, role): if index.isValid() and role == Qt.DisplayRole: row, col = index.row(), index.column() if self.wordlist[row] != None: text = self.wordlist[row] else: text = "Unknown" return QVariant(text) return QVariant() def clear(self): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist = [] self.emit(SIGNAL("layoutChanged()")) def addWord(self, word): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist.append(word) self.emit(SIGNAL("layoutChanged()")) def setWordList(self, words): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist = words self.emit(SIGNAL("layoutChanged()")) def getWordList(self): return self.wordlist def updateSelection(self): selected = self.getMainApp().wordListSelectionModel.selection() if selected.count(): self.rowSelected = selected.last().bottomRight().row() else: self.rowSelected = None babiloo-2.0.11/qt/about.py0000644000017300007100000000247211445134342015255 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4 import QtCore, QtGui from about_ui import Ui_AboutDialog import webbrowser import logging log = logging.getLogger("babiloo.gui.about") class aboutDialog(QtGui.QDialog): def __init__(self, parent): QtGui.QDialog.__init__(self) self.ui = Ui_AboutDialog() self.ui.setupUi(self) #OPTIONS events self.connect(self.ui.buttonClose, QtCore.SIGNAL("clicked(bool)"), self.onButtonClose) def onButtonClose(self): self.accept() babiloo-2.0.11/qt/main.py0000644000017300007100000010413711445137207015073 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.Warning """ Create and launch the GUI """ import sys, re, os, traceback, tempfile import time, thread import webbrowser import urllib2 import base64, zlib import commands import platform import os.path import zipfile from PyQt4 import QtCore, QtGui from PyQt4.QtCore import Qt, SIGNAL, QObject, QCoreApplication, QSettings, \ QVariant, QSize, QEventLoop, QString, QModelIndex, QFileInfo, QPoint from PyQt4.QtGui import QPixmap, QSplashScreen, QErrorMessage, QMessageBox, \ QFileDialog, QIcon, QItemSelectionModel, QToolBar, \ QItemSelection, QActionGroup, QFont, QMainWindow, \ QApplication, QTableView from SplashScreen import SplashScreen, NoneSplashScreen from core.languages import Languages as languages import locale, gettext # create splash screen and show messages to the user app = QApplication(sys.argv) splash = SplashScreen() splash.showMessage("Loading...") QCoreApplication.flush() from qt import installErrorHandler, Error, _Warning, extension from main_ui import Ui_MainWindow from settings import settingsDialog from about import aboutDialog from chooseLanguage import chooseLanguageDialog from wordlistmodel import WordListModel from historylistmodel import HistoryListModel from contentSearchModel import ContentSearchModel from dictfilemanager import DictFileManager from core.modules import * import core.modules.utils as utils import core.dictionary.engine as engine from core.dictionary.dictionary import Definition import logging import functools #xmlrpc methods accessor from core.net.xmlrpc import OnlineService, TimeoutFunctionException log = logging.getLogger("babiloo.qt.main") class Main(QMainWindow, Ui_MainWindow): def report_error(func): """ Decorator to ensure that unhandled exceptions are displayed to users via the GUI """ def function(*args, **kwargs): try: return func(*args, **kwargs) except Exception, e: Error("There was an error calling " + func.__name__, e) raise return function def SetupInterfaceLang(self): if platform.system() == "Linux": if self.programFolder == '/usr/share/babiloo': localedir = '/usr/share/locale/' else: localedir = 'locale' else: localedir = 'locale' #Get the local directory since we are not installing anything #local_path = os.path.realpath(os.path.dirname(sys.argv[0])) #print local_path #localedir = 'locale' #remove log.debug('Scanning translation files .mo in folder: %s' %localedir) self.interface_langs = [] for root, dirs, files in os.walk(localedir): if re.search(".*locale$", os.path.split(root)[0]): _lang = os.path.split(root)[-1] if 'babiloo.mo' in files: self.interface_langs.append(_lang) log.debug('Found these translations languages: %r' % self.interface_langs) #Check the default locale lc, encoding = locale.getdefaultlocale() if not lc: user_locale = 'en' #In case of language not found else: if lc in languages.ListAll_locale(): user_locale = lc else: user_locale = lc.split('_')[0] interface_lang = self.settings.value("settings/interfaceLang", QVariant()) if not len(self.interface_langs): interface_lang = 'en' else: if interface_lang == QVariant(): #Use system default locale interface_lang = user_locale self.settings.setValue("settings/interfaceLang", QVariant(user_locale)) else: interface_lang = str(interface_lang.toString().toUtf8()) log.debug('Interface language: %s' % interface_lang) gettext.translation(domain = "babiloo", localedir = localedir, languages = [interface_lang], fallback = True).install(unicode = True) def chooseInterfaceLanguage(self, user_locale): self.choosenLanguage = 'en' #By default dialog = chooseLanguageDialog(self, user_locale) dialog.exec_() return self.choosenLanguage def __init__(self, options): splash.showMessage(_("Building main dialog...")) super(Main, self).__init__() QCoreApplication.setOrganizationName("Babiloo") QCoreApplication.setApplicationName(APP_TITLE) self.menuCheckDictionaries = {} #To keep all the menus to swap dictionaries self.options = options self.settings = QSettings() self.engine = engine.DictionaryEngine() self.activeDictionary = None self.calculateProgramFolder() self.SetupInterfaceLang() self.setupUi(self) self.createTray() self.actionGroupDictionaries = QActionGroup(self.menuDictionaries) self.actionGroupDictionaries.setExclusive(True) self.setWindowTitle(APP_TITLE + " "+APP_VERSION) self.setWindowIcon(QIcon(":/icon")) #self.read_settings() self.wordListModel = WordListModel(self) self.historyListModel = HistoryListModel(self) self.contentSearchModel = ContentSearchModel(self) self.wordList.setModel(self.wordListModel) self.historyList.setModel(self.historyListModel) self.contentSearchList.setModel(self.contentSearchModel) self.wordListSelectionModel = QItemSelectionModel(self.wordListModel) self.wordList.setSelectionModel(self.wordListSelectionModel) self.historyListSelectionModel = QItemSelectionModel(self.historyListModel) self.historyList.setSelectionModel(self.historyListSelectionModel) self.contentSearchListSelectionModel = QItemSelectionModel(self.contentSearchModel) self.contentSearchList.setSelectionModel(self.contentSearchListSelectionModel) QObject.connect(self.actionAbout, SIGNAL("triggered()"), self.onMenuHelpAbout) QObject.connect(self.actionVisit_HomePage, SIGNAL("triggered()"), self.onMenuHelpHomePage) QObject.connect(self.actionReport_A_Problem, SIGNAL("triggered()"), self.onMenuHelpReportProblem) QObject.connect(self.actionTranslate_This_Application, SIGNAL("triggered()"), self.onMenuHelpTranslate) QObject.connect(self.actionSettings, SIGNAL("triggered()"), self.onMenuSettings) QObject.connect(self.actionQuit, SIGNAL("triggered()"), self.quit_app) QObject.connect(self.actionImport_Dictionary, SIGNAL("triggered()"), self.onMenuImportDictionary) QObject.connect(self.actionManage_Dictionaries, SIGNAL("triggered()"), self.onMenuManageDictionaries) QObject.connect(self.actionDownload_Dictionaries, SIGNAL("triggered()"), self.onMenuDownloadDictionaries) QObject.connect(self.wordList, SIGNAL("clicked(QModelIndex)"), self.onClickWordList) QObject.connect(self.wordList, SIGNAL("activated (const QModelIndex&)"), self.onClickWordList) QObject.connect(self.historyList, SIGNAL("clicked(QModelIndex)"), self.onClickHistoryList) QObject.connect(self.historyList, SIGNAL("activated (const QModelIndex&)"), self.onClickHistoryList) QObject.connect(self.historyListSelectionModel, SIGNAL("selectionChanged(QItemSelection, QItemSelection)"), self.onHistorySelectionChanged) QObject.connect(self.articlesText, SIGNAL("textEdited (const QString&)"), self.onArticlesTextEdited) QObject.connect(self.articlesText, SIGNAL("returnPressed()"), self.onArticlesTextActivated) QObject.connect(self.articlesSearchButton, SIGNAL("clicked(bool)"), self.onArticlesSearchButton) QObject.connect(self.articlesClearButton, SIGNAL("clicked(bool)"), self.onArticlesClearButton) self.connect(self.articlesText, SIGNAL("downOrUpKeyPressed (QEvent)"), self.onArticlesTextDownUpKey) self.wordList.keyPressEvent = self.onWordListKeyPressed #ContentSearch QObject.connect(self.contentSearchText, SIGNAL("returnPressed()"), self.onContentSearchTextActivated) QObject.connect(self.contentSearchButton, SIGNAL("clicked(bool)"), self.onContentSearchButton) QObject.connect(self.contentSearchClearButton, SIGNAL("clicked(bool)"), self.onContentSearchClearButton) QObject.connect(self.stopContentSearchButton, SIGNAL("clicked(bool)"), self.onStopContentSearchButton) self.connect(self.contentSearchText, SIGNAL("downOrUpKeyPressed (QEvent)"), self.onContentSearchTextDownUpKey) QObject.connect(self.contentSearchList, SIGNAL("clicked(QModelIndex)"), self.contentSearchModel.onClick) QObject.connect(self.contentSearchList, SIGNAL("clicked(QModelIndex)"), self.contentSearchModel.onClick) QObject.connect(self.contentSearchList, SIGNAL("activated (const QModelIndex&)"), self.contentSearchModel.onClick) #Status bar self.status_label = QtGui.QLabel("v"+ APP_VERSION,self.statusbar) self.status_label.setIndent(10) self.donate_button = QtGui.QPushButton(" " + _("Help us with a donation")) #self.donate_button.setIndent(10) icondonate = QtGui.QIcon() icondonate.addPixmap(QtGui.QPixmap(":/icons/love.png"), QtGui.QIcon.Normal, QtGui.QIcon.On) self.donate_button.setIcon(icondonate) self.statusbar.insertWidget(0,self.status_label) self.statusbar.addPermanentWidget(self.donate_button, 0) QObject.connect(self.donate_button, SIGNAL("clicked(bool)"), self.onMenuHelpDonation) #Own signals QObject.connect(self, SIGNAL("SoftwareUpdateDetected(QString,QString)"), self.OnSoftwareUpdateDetected) self.definitionToolbar = QToolBar(self) self.definitionToolbar.setIconSize(QSize(22, 22)) self.definitionView._main = self #That way we can use getMainApp from definitionView self.actionBackward = QtGui.QAction(QIcon(":/icons/go-previous.png"),_("Go to &previous article"),self) QObject.connect(self.actionBackward, SIGNAL("triggered()"), self.onActionBackward) self.actionBackward.setEnabled(False) self.definitionToolbar.addAction(self.actionBackward) self.actionForward = QtGui.QAction(QIcon(":/icons/go-next.png"),_("Go to &next article"),self) self.actionForward.setEnabled(False) QObject.connect(self.actionForward, SIGNAL("triggered()"), self.onActionForward) self.definitionToolbar.addAction(self.actionForward) self.actionDefinitionSaveAs = QtGui.QAction(QIcon(":/icons/document-save-as.png"),_("&Save to file"),self) QObject.connect(self.actionDefinitionSaveAs, SIGNAL("triggered()"), self.onActionDefinitionSaveAs) self.definitionToolbar.addAction(self.actionDefinitionSaveAs) self.actionDefinitionSaveAs.setEnabled(False) self.actionPrint = QtGui.QAction(QIcon(":/icons/document-print.png"),_("Prin&t article"),self) QObject.connect(self.actionPrint, SIGNAL("triggered()"), self.onActionPrint) self.definitionToolbar.addAction(self.actionPrint) self.actionPrint.setEnabled(False) self.actionSpeak = QtGui.QAction(QIcon(":/icons/speaker.png"),_("Speak &word"),self) QObject.connect(self.actionSpeak, SIGNAL("triggered()"), self.onActionSpeak) self.definitionToolbar.addAction(self.actionSpeak) self.actionSpeak.setEnabled(False) self.verticalDefinitionLayout.insertWidget(0, self.definitionToolbar) self.splitter.setSizes([250, 500]) self.definitionView.setIntroduction() self.contentSearchText.setFocus() self.articlesText.setFocus() vh = self.wordList.verticalHeader().setVisible(False) hh = self.wordList.horizontalHeader() hh.setStretchLastSection(True) hh.setVisible(False) #font = QFont("KhmerOS", 8) #self.wordList.setFont(font) vh = self.historyList.verticalHeader().setVisible(False) hh = self.historyList.horizontalHeader() hh.setStretchLastSection(True) hh.setVisible(False) vh = self.contentSearchList.verticalHeader().setVisible(False) hh = self.contentSearchList.horizontalHeader() hh.setStretchLastSection(True) hh.setVisible(False) if not options.test: thread.start_new_thread(self.establishServerConnection, ()) self.dictFileManager = DictFileManager(self, splash) settingsDictsDirectory = self.dictFileManager.getSettingsDictionaryDirectory() if settingsDictsDirectory == None: if platform.system() == "Linux": defaultDictsDirectory = self.dictFileManager.getHomeUserDictionariesDirectory() else: defaultDictsDirectory = self.dictFileManager.getRelativeDictionariesDirectory() self.settings.setValue("settings/dictsDefaultDirectory", QVariant(defaultDictsDirectory)) log.debug('Autodetected dictionaries directory at %s' % defaultDictsDirectory) else: defaultDictsDirectory = settingsDictsDirectory log.debug('Detected dictionaries directory from settings at %s' % defaultDictsDirectory) if defaultDictsDirectory != None: self.dictFileManager.loadDirectory() else : #testdict = self.engine.installDictionary('dicts/sampledict.dwa') #testdict = self.engine.installDictionary('dicts/Catalan_English.dct') #testdict = self.engine.installDictionary('dicts/vi_en.dct') #testdict = self.engine.installDictionary('dicts/ChuonNath.dct') testdict = self.engine.loadDictionary('own_dicts/dictionaries-bolivia/es_qu-laime/DicQuechuaBolivia-es.dict.dz') if testdict['loaded']: self.loadDictionary(testdict['dict']) splash.finish(self) self.recallWinSize() self.show() def createTray(self): self.systray = QtGui.QSystemTrayIcon(QIcon(":/icons/babiloo64.png"), self) trayIconMenu = QtGui.QMenu(self) trayIconMenu.addAction(self.actionQuit) self.systray.setContextMenu(trayIconMenu) self.connect(self.systray, QtCore.SIGNAL("activated(QSystemTrayIcon::ActivationReason)"), self.__icon_activated) self.systray.show() def recallWinSize(self): self.settings.beginGroup("mainWindow") self.resize(self.settings.value("size", QVariant(QSize(640, 480))).toSize()) self.move(self.settings.value("pos", QVariant(QPoint(200, 200))).toPoint()) self.settings.endGroup() def writeWinSize(self): self.settings.beginGroup("mainWindow") self.settings.setValue("size", QVariant(self.size())) self.settings.setValue("pos", QVariant(self.pos())) self.settings.sync() self.settings.endGroup() def onMenuHelpDonation(self): webbrowser.open( "http://www.babiloo-project.org/donations.html", new=2, autoraise=1) def establishServerConnection(self): try: log.debug('Connecting to the Babiloo XMLRPC Server') self.OnlineService = OnlineService(self.options.server, self.options.proxy) if platform.system() in ("Windows", "Microsoft"): self.detect_software_updates() return True except TimeoutFunctionException: log.error('Unable to connect to the Babiloo XMLRPC Server') #AutoUpdate alert methods def OnSoftwareUpdateDetected(self, new_version, update_link): warningBox = QMessageBox(_("New Version Detected"), _("A new version of Babiloo has been released.\n\nNew Version: %s\nCurrent Version: %s\n\n" \ "Would you like to download the new version now?") %(new_version, APP_VERSION) , QMessageBox.Information, QMessageBox.Yes | QMessageBox.Default , QMessageBox.Cancel | QMessageBox.Escape, QMessageBox.NoButton, self) answer = warningBox.exec_() if answer == QMessageBox.Yes: webbrowser.open( update_link, new=2, autoraise=1) elif answer == QMessageBox.Cancel : return def detect_software_updates(self): #try: log.debug('Checking the Software Updates of Babiloo') result = self.OnlineService.CheckSoftwareUpdates('Babiloo') if utils.compVer(result['latest_version'], APP_VERSION) == 1: #if APP_VERSION is < than latest_version self.emit(SIGNAL("SoftwareUpdateDetected(QString,QString)"),result['latest_version'], result['link']) #except: # log.debug('Error while asking server CheckSoftwareUpdates()') #Interface methods def onWordListKeyPressed(self, event): if type(event) == QtGui.QKeyEvent: #here accept the event and do something if event.modifiers() == Qt.NoModifier: text = event.text() if text: self.articlesText.setFocus() self.articlesText.keyPressEvent(event) event.ignore() return QTableView.keyPressEvent(self.wordList, event) def onContentSearchTextDownUpKey(self, event): if self.contentSearchModel.getWordList(): self.contentSearchList.keyPressEvent(event) #self.contentSearchList.setFocus() def onArticlesTextDownUpKey(self, event): if self.wordListModel.getWordList(): self.wordList.keyPressEvent(event) # self.contentSearchList.setFocus() def calculateProgramFolder(self): if os.path.isdir(sys.path[0]): #for Linux is /program_folder/ self.programFolder = sys.path[0] else: #for Windows is the /program_folder/run.py self.programFolder = os.path.dirname(sys.path[0]) def onArticlesTextActivated(self): self.wordListModel.updateSelection() if self.wordListModel.rowSelected != None: word = self.wordListModel.wordlist[self.wordListModel.rowSelected] self.searchWord(word) elif len(self.wordListModel.getWordList()): word = self.wordListModel.getWordList()[0] self.searchWord(word) firstWordSelection = QItemSelection(self.wordListModel.createIndex(0, 0),self.wordListModel.createIndex(0, 0)) self.wordListSelectionModel.select(firstWordSelection, self.wordListSelectionModel.ClearAndSelect) #self.onArticlesTextEdited() else: word = unicode(self.articlesText.text()) if word: self.searchWord(word) def onArticlesTextEdited(self): if self.activeDictionary: word = unicode(self.articlesText.text()) self.wordListSelectionModel.clearSelection() if self.settings.value("settings/autoComplete", QVariant(True)).toBool(): self.wordList.scrollTo(self.wordList.currentIndex()) caseSensitive = self.settings.value("settings/caseSensitive", QVariant(False)).toBool() ignoreAccents = self.settings.value("settings/ignoreAccents", QVariant(True)).toBool() filteredWords = self.engine.filter(word, self.activeDictionary,caseSensitive , ignoreAccents) self.wordListModel.setWordList(filteredWords) if len(filteredWords) and self.wordListModel.getWordList()[0] == word or len(filteredWords) == 1: #select the first word firstWordSelection = QItemSelection(self.wordListModel.createIndex(0, 0),self.wordListModel.createIndex(0, 0)) self.wordListSelectionModel.select(firstWordSelection, self.wordListSelectionModel.ClearAndSelect) #self.wordList.selectRow(0) def onArticlesSearchButton(self): self.wordListModel.updateSelection() if self.wordListModel.rowSelected != None: word = self.wordListModel.wordlist[self.wordListModel.rowSelected] else: word = unicode(self.articlesText.text()) if word: self.searchWord(word) def onArticlesClearButton(self): self.articlesText.setText('') if self.activeDictionary: self.wordListModel.setWordList(self.engine.getWords(self.activeDictionary)) else: self.wordListModel.clear() def onClickWordList(self, index): word = self.wordListModel.getWordFromIndex(index) #TODO: emit a signal to search the word #self._main.emit(SIGNAL('searchWord(QString)'),selection["id"], selection["title"], "search") self.searchWord(word) def searchWord(self, word): definition = None if not self.activeDictionary: QMessageBox.about(self,_("Error"),_("Please load a dictionary first.")) else: if self.historyListModel.findWord(word, self.activeDictionary): log.debug("Found word %s in history" % word) definition = self.historyListModel.getDefinition(word) else: try: definition = self.engine.search(word, self.activeDictionary) except: QMessageBox.about(self,_("Error"),_("Error while loading the word %s") % word) return dictionaryName = self.engine.getDictionary(self.activeDictionary).getName() dictId = self.activeDictionary if definition == None: self.definitionView.setDefinition(word, None, None) log.debug('No definition found for %s' % word) else: if isinstance(definition, list): for defin in definition: self.definitionView.setDefinition(word, defin.content(), None) self.addWordToHistory(word, defin, dictionaryName, dictId) elif isinstance(definition, Definition): #print definition.content() self.definitionView.setDefinition(word, definition.content(), None) self.addWordToHistory(word, definition.content(), dictionaryName, dictId) else: self.definitionView.setDefinition(word, definition, None) self.addWordToHistory(word, definition, dictionaryName, dictId) self.articlesText.setText(word) def onMenuHelpAbout(self): dialog = aboutDialog(self) dialog.ui.label_version.setText(APP_VERSION) dialog.exec_() QCoreApplication.processEvents(QEventLoop.ExcludeUserInputEvents) def onMenuHelpHomePage(self): webbrowser.open( "http://www.babiloo-project.org/", new=2, autoraise=1) def onMenuHelpReportProblem(self): webbrowser.open( "https://bugs.launchpad.net/babiloo", new=2, autoraise=1) def onMenuHelpTranslate(self): webbrowser.open( "http://www.babiloo-project.org/translate.html", new=2, autoraise=1) def onMenuSettings(self): self.settingsDialog = settingsDialog(self) self.settingsDialog.exec_() QCoreApplication.processEvents(QEventLoop.ExcludeUserInputEvents) def onMenuManageDictionaries(self): self.settingsDialog = settingsDialog(self) self.settingsDialog.show() self.settingsDialog.changeTab(self.settingsDialog.TAB_DICTIONARIES) self.settingsDialog.ui.tabInstallDictionaries.setCurrentIndex(self.settingsDialog.TAB_MANAGE_DICTIONARIES) self.settingsDialog.exec_() QCoreApplication.processEvents(QEventLoop.ExcludeUserInputEvents) def onMenuDownloadDictionaries(self): self.settingsDialog = settingsDialog(self) self.settingsDialog.changeTab(self.settingsDialog.TAB_DICTIONARIES) self.settingsDialog.ui.tabInstallDictionaries.setCurrentIndex(self.settingsDialog.TAB_DOWNLOAD_DICTIONARIES) self.settingsDialog.exec_() QCoreApplication.processEvents(QEventLoop.ExcludeUserInputEvents) def onMenuImportDictionary(self): importWildCard = "All files (*.*);;" \ "Slowo dictionaries (*.dwa);;" \ "Mova dictionaries (*.mova);;" \ "DICT dictionaries (*.dz)" currentDir = self.settings.value("mainwindow/workingDirectory", QVariant()) fileNames = QFileDialog.getOpenFileNames(None, _("Import one or more dictionaries"), currentDir.toString(), importWildCard) fileNames = [str(file.toUtf8()) for file in fileNames] if fileNames: self.settings.setValue("mainwindow/workingDirectory", QVariant(QFileInfo(fileNames[0]).absolutePath())) dictionaries = self.engine.loadDictionaries(fileNames) if len(dictionaries) == len([dict for dict in dictionaries if not dict['loaded'] and dict['error'] != 'ALREADY_INSTALLED' ]): QMessageBox.about(self,_("Error"),_("Error trying to load the dictionary.\nFile corrupted or not supported.")) return successfully_installed = [] unsuccessfully_installed = [] result_message = u'' # installing selected dictionaries for newdict in dictionaries: if not newdict['loaded']: if result_message: result_message += "\n" result_message += _("%s was not loaded: %s") % (os.path.basename(newdict['file_path']), newdict['error']) continue newdict = newdict['dict'] self.loadDictionary(newdict) filename = newdict.getFileName() try: self.dictFileManager.saveDictionaryFile(newdict) successfully_installed.append(filename) except: unsuccessfully_installed.append(filename) if len(successfully_installed): result_message += _("Dictionary successfully installed.") if len(unsuccessfully_installed): result_message += "\n" + _("Dictionary selected couldn't be installed.") QMessageBox.about(self,_("Info"),result_message) def loadDictionary(self, mydict): log.debug('main::Loading dictionary: %s' % mydict.getName()) self.itemDictionary = QtGui.QAction(mydict.getName(),self) self.itemDictionary.setCheckable(True) dictId = mydict.getUniqueId() if not len(self.menuCheckDictionaries): self.menuDictionaries.addSeparator() self.menuCheckDictionaries[dictId] = self.itemDictionary functionDictionary = functools.partial(self.onActivateDictionary, dictId) QObject.connect(self.itemDictionary, SIGNAL("toggled (bool)"), functionDictionary) self.actionGroupDictionaries.addAction(self.itemDictionary) self.menuDictionaries.addAction(self.itemDictionary) print self.activeDictionary if not self.activeDictionary: self.itemDictionary.setChecked(True) self.onActivateDictionary(dictId, True) def onActivateDictionary(self, dictId, toggle): log.debug('main::onActivateDictionary dictId: %s,' % (dictId)) if toggle: if self.activeDictionary != dictId: self.activeDictionary = dictId self.wordList.scrollTo(self.wordList.currentIndex()) menuItem = self.menuCheckDictionaries[dictId] menuItem.setChecked(True) self.engine.loadIndexes(dictId) self.wordListModel.setWordList(self.engine.getWords(dictId)) self.wordList.horizontalHeader().setStretchLastSection(True) def updateActiveDictionary(self): #check if the active dictionary is still there loadedDictIds = self.menuCheckDictionaries.keys() if len(loadedDictIds): if self.activeDictionary in loadedDictIds: self.onActivateDictionary(self.activeDictionary, True) else: first_dict = loadedDictIds[0] self.onActivateDictionary(first_dict, True) else: self.wordListModel.clear() ##### HISTORY ACTIONS ###### def onClickHistoryList(self, index): word = self.historyListModel.getWordFromIndex(index) self.definitionView.setDefinition(word, self.historyListModel.getDefinition(word), self.historyListModel.getDictionaryName(word)) self.updateHistoryButtons() def onHistorySelectionChanged(self, selected, unselected): index = selected.last().bottomRight() word = self.historyListModel.getWordFromIndex(index) self.definitionView.setDefinition(word, self.historyListModel.getDefinition(word), self.historyListModel.getDictionaryName(word)) self.updateHistoryButtons() def addWordToHistory(self, word, definition, dictionaryName = None, dictId = None): self.historyListModel.addWord(word, definition, dictionaryName, dictId) firstRowSelection = QItemSelection(self.historyListModel.index(0, 0),self.historyListModel.index(0, 0)) self.historyListSelectionModel.select(firstRowSelection, self.historyListSelectionModel.ClearAndSelect) self.updateHistoryButtons() def updateHistoryButtons(self): if self.historyListModel.canBackward(): self.actionBackward.setEnabled(True) else: self.actionBackward.setEnabled(False) if self.historyListModel.canForward(): self.actionForward.setEnabled(True) else: self.actionForward.setEnabled(False) #Search Content actions def onContentSearchTextActivated(self): word = unicode(self.contentSearchText.text()) if word: self.searchContent(word) def onContentSearchButton(self, activated): word = unicode(self.contentSearchText.text()) if word: self.searchContent(word) def searchContent(self, word): self.contentSearchModel.stopSearch() self.contentSearchModel.clear() self.contentSearchProgress.setValue(0) self.stopContentSearchButton.setEnabled(True) thread.start_new_thread(self.contentSearchModel.search, (word, )) #self.contentSearchModel.search(word) def onContentSearchClearButton(self): self.contentSearchText.setText('') self.contentSearchModel.clear() def onStopContentSearchButton(self): self.contentSearchProgress.setValue(0) self.contentSearchModel.stopSearch() self.stopContentSearchButton.setEnabled(False) def onActionBackward(self): self.actionForward.setEnabled(True) (word,definition) = self.historyListModel.getBackward() self.definitionView.setDefinition(word, definition, None) log.debug('main::History Backward to %s' %word ) self.updateHistoryButtons() def onActionForward(self): self.actionForward.setEnabled(True) (word, definition) = self.historyListModel.getForward() self.definitionView.setDefinition(word, definition, None) log.debug('main::History Forward to %s' %word ) self.updateHistoryButtons() # def onActionStop(self): # self.entry.Enable(1) # self.SetStatusText(_("Stopped")) # self.timerSearch.Stop() # self.timerLoad.Stop() # # if self.search: # self.search.stop() # self.search = None # # if self.load: # self.load.stop() # self.load = None # # wx.EndBusyCursor() # self.buttonStop.Disable() def onActionDefinitionSaveAs(self): print "onActionDefinitionSaveAs" def onActionPrint(self): print "onActionPrint" def onActionSpeak(self): print "onActionSpeak" """Pronouce word using external software.""" def closeEvent(self, event): self.writeWinSize() self.hide() event.ignore() def quit_app(self): self.writeWinSize() QtGui.qApp.quit() def __icon_activated(self, reason): if reason & (QtGui.QSystemTrayIcon.DoubleClick | QtGui.QSystemTrayIcon.Trigger\ & (~QtGui.QSystemTrayIcon.Context)): if self.isVisible(): self.writeWinSize() self.hide() else: self.recallWinSize() self.setVisible(True) # word = self.entry.GetValue().strip() # if word: # cmd = self.app.config.get('pronunciationCommand') or prefswin.PRON_COMMAND # # if self.app.config.get('pronounceTrans') == 'True': # word = html2text(self.htmlCode) # # import locale # localeCharset = locale.getpreferredencoding() # # try: # word = word.replace('(', '').replace(')', '').replace('\n', # '').replace('\r', '').replace('"', '\\"') # cmd = (cmd % word).encode(localeCharset) # Process(os.system, cmd) # except Exception, e: # traceback.print_exc() # title = _("Error") # msg = _("Unable to decode text using your locale charset %s" \ # % localeCharset) # errorwin.showErrorMessage(title, msg) def main(options): log.debug("Building main dialog") window = Main(options) installErrorHandler(QErrorMessage(window)) log.debug("Showing main dialog") return app.exec_() babiloo-2.0.11/qt/about_ui.py0000644000017300007100000004003111445134342015743 0ustar kmoskmos00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'about.ui' # # Created: Sun Mar 21 10:49:29 2010 # by: PyQt4 UI code generator 4.7 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_AboutDialog(object): def setupUi(self, AboutDialog): AboutDialog.setObjectName("AboutDialog") AboutDialog.setWindowModality(QtCore.Qt.WindowModal) AboutDialog.resize(400, 416) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Maximum) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(AboutDialog.sizePolicy().hasHeightForWidth()) AboutDialog.setSizePolicy(sizePolicy) AboutDialog.setMinimumSize(QtCore.QSize(400, 400)) AboutDialog.setMaximumSize(QtCore.QSize(400, 600)) AboutDialog.setAutoFillBackground(False) self.verticalLayout = QtGui.QVBoxLayout(AboutDialog) self.verticalLayout.setObjectName("verticalLayout") spacerItem = QtGui.QSpacerItem(20, 16, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) self.verticalLayout.addItem(spacerItem) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label_sd = QtGui.QLabel(AboutDialog) font = QtGui.QFont() font.setFamily("Tahoma") font.setPointSize(10) font.setWeight(75) font.setItalic(True) font.setBold(True) self.label_sd.setFont(font) self.label_sd.setObjectName("label_sd") self.horizontalLayout.addWidget(self.label_sd) self.label_version = QtGui.QLabel(AboutDialog) font = QtGui.QFont() font.setFamily("Tahoma") font.setPointSize(10) font.setWeight(75) font.setItalic(True) font.setBold(True) self.label_version.setFont(font) self.label_version.setAlignment(QtCore.Qt.AlignBottom|QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft) self.label_version.setObjectName("label_version") self.horizontalLayout.addWidget(self.label_version) self.verticalLayout.addLayout(self.horizontalLayout) self.lblIcon = QtGui.QLabel(AboutDialog) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.lblIcon.sizePolicy().hasHeightForWidth()) self.lblIcon.setSizePolicy(sizePolicy) self.lblIcon.setObjectName("lblIcon") self.verticalLayout.addWidget(self.lblIcon) self.tabs = QtGui.QTabWidget(AboutDialog) self.tabs.setEnabled(True) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.tabs.sizePolicy().hasHeightForWidth()) self.tabs.setSizePolicy(sizePolicy) self.tabs.setSizeIncrement(QtCore.QSize(5, 5)) self.tabs.setFocusPolicy(QtCore.Qt.WheelFocus) self.tabs.setObjectName("tabs") self.tab = QtGui.QWidget() self.tab.setObjectName("tab") self.gridlayout = QtGui.QGridLayout(self.tab) self.gridlayout.setObjectName("gridlayout") self.txtAbout = QtGui.QTextBrowser(self.tab) self.txtAbout.setAcceptDrops(False) self.txtAbout.setFrameShape(QtGui.QFrame.NoFrame) self.txtAbout.setOpenExternalLinks(True) self.txtAbout.setObjectName("txtAbout") self.gridlayout.addWidget(self.txtAbout, 0, 0, 1, 1) self.tabs.addTab(self.tab, "") self.tab_2 = QtGui.QWidget() self.tab_2.setObjectName("tab_2") self.gridlayout1 = QtGui.QGridLayout(self.tab_2) self.gridlayout1.setObjectName("gridlayout1") self.txtAuthors = QtGui.QTextBrowser(self.tab_2) self.txtAuthors.setAcceptDrops(False) self.txtAuthors.setFrameShape(QtGui.QFrame.NoFrame) self.txtAuthors.setObjectName("txtAuthors") self.gridlayout1.addWidget(self.txtAuthors, 0, 0, 1, 1) self.tabs.addTab(self.tab_2, "") self.tab_3 = QtGui.QWidget() self.tab_3.setObjectName("tab_3") self.gridlayout2 = QtGui.QGridLayout(self.tab_3) self.gridlayout2.setObjectName("gridlayout2") self.txtLicense = QtGui.QTextBrowser(self.tab_3) self.txtLicense.setAcceptDrops(False) self.txtLicense.setFrameShape(QtGui.QFrame.VLine) self.txtLicense.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.txtLicense.setLineWrapMode(QtGui.QTextEdit.WidgetWidth) self.txtLicense.setObjectName("txtLicense") self.gridlayout2.addWidget(self.txtLicense, 0, 0, 1, 1) self.tabs.addTab(self.tab_3, "") self.verticalLayout.addWidget(self.tabs) self.hboxlayout = QtGui.QHBoxLayout() spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.hboxlayout.addItem(spacerItem1) self.buttonClose = QtGui.QPushButton(AboutDialog) self.buttonClose.setObjectName("buttonClose") self.hboxlayout.addWidget(self.buttonClose) self.verticalLayout.addLayout(self.hboxlayout) self.retranslateUi(AboutDialog) self.tabs.setCurrentIndex(0) QtCore.QMetaObject.connectSlotsByName(AboutDialog) def retranslateUi(self, AboutDialog): AboutDialog.setWindowTitle(_("About Babiloo")) self.label_sd.setText(QtGui.QApplication.translate("AboutDialog", "\n" "\n" "

Babiloo

", None, QtGui.QApplication.UnicodeUTF8)) self.label_version.setText(QtGui.QApplication.translate("AboutDialog", "\n" "\n" "

2.0.0

", None, QtGui.QApplication.UnicodeUTF8)) self.txtAbout.setHtml(QtGui.QApplication.translate("AboutDialog", "\n" "\n" "

Homepage:

\n" "

http://www.babiloo-project.org

\n" "

\n" "

Bugs and new requests:

\n" "

https://bugs.launchpad.net/babiloo

\n" "

IRC: irc.freenode.net - #babiloo

\n" "

Donations:

\n" "

Our paypal account

", None, QtGui.QApplication.UnicodeUTF8)) self.tabs.setTabText(self.tabs.indexOf(self.tab), _("&About")) self.txtAuthors.setHtml(QtGui.QApplication.translate("AboutDialog", "\n" "\n" "

Ivan Garcia <ivangarcia@gmail.com>

\n" "

Marco Ferreira <mferreira@devion.org>

\n" "

Marco Rodrigues <gothicx@gmail.com>

", None, QtGui.QApplication.UnicodeUTF8)) self.tabs.setTabText(self.tabs.indexOf(self.tab_2), _("A&uthors")) self.txtLicense.setHtml(QtGui.QApplication.translate("AboutDialog", "\n" "\n" "

Copyright (c) 2008-2010, Babiloo Developers

\n" "

\n" "

The team would like to thank these 3 GPL projects where Babiloo has used part of their codes:

\n" "

\n" "

- QStardict

\n" "

- OpenDict

\n" "

- Sdiqt

\n" "

\n" "

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.

\n" "

\n" "

\n" "

This program is distributed in the hope that it will

\n" "

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.

\n" "

\n" "

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc.,

\n" "

59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

\n" "

", None, QtGui.QApplication.UnicodeUTF8)) self.tabs.setTabText(self.tabs.indexOf(self.tab_3), _("&License Agreement")) self.buttonClose.setText(_("&Close")) babiloo-2.0.11/qt/historylistmodel.py0000644000017300007100000001161011445134342017553 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import Qt, SIGNAL from PyQt4.Qt import QAbstractTableModel, QVariant, QModelIndex from PyQt4.QtGui import QItemSelection class HistoryListModel(QAbstractTableModel): def __init__(self, parent): QAbstractTableModel.__init__(self, parent) self._headers = ["Word"] self._main = parent self.rowSelected = None self.engine = parent.engine #check the list of dicts from registry self.wordlist = [] self.wordDicts = {} self.definitions = {} self.dictionaryNames = {} def flags(self, index): flags = QAbstractTableModel.flags(self, index) return flags def getMainApp(self): return self._main def rowCount(self, parent=QModelIndex()): return len(self.wordlist) def columnCount(self, parent): return len(self._headers) def getWordFromIndex(self, index): row = index.row() if self.wordlist[row] != None: return self.wordlist[row] else: raise IndexError def headerData(self, section, orientation, role): return QVariant() def data(self, index, role): if index.isValid() and role == Qt.DisplayRole: row, col = index.row(), index.column() if self.wordlist[row] != None: text = self.wordlist[row] else: text = "Unknown" return QVariant(text) return QVariant() def getBackward(self): if self.canBackward(): nextRow = self.rowSelected + 1 word = self.wordlist[nextRow] rowSelection = QItemSelection(self.index(nextRow, 0),self.index(nextRow, 0)) self.getMainApp().historyListSelectionModel.select(rowSelection, self.getMainApp().historyListSelectionModel.ClearAndSelect) return {'word':word, 'definition': self.getDefinition(word) , 'dictionaryName': self.getDictionaryName(word)} def canBackward(self): self.updateSelection() return self.rowSelected < self.rowCount() - 1 def getForward(self): if self.canForward(): previousRow = self.rowSelected - 1 word = self.wordlist[previousRow] rowSelection = QItemSelection(self.index(previousRow, 0),self.index(previousRow, 0)) self.getMainApp().historyListSelectionModel.select(rowSelection, self.getMainApp().historyListSelectionModel.ClearAndSelect) return {'word':word, 'definition': self.getDefinition(word) , 'dictionaryName': self.getDictionaryName(word)} def canForward(self): self.updateSelection() return self.rowSelected def clear(self): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist = [] self.definitions = {} self.wordDicts = {} self.emit(SIGNAL("layoutChanged()")) def getDefinition(self, word): return self.definitions[word] def findWord(self, word, dictId): return self.wordDicts.has_key(word) and self.wordDicts[word] == dictId def getDictionaryName(self, word): return self.dictionaryNames[word] def addWord(self, word, definition, dictName, dictId): self.emit(SIGNAL("layoutAboutToBeChanged()")) try: del self.wordlist[self.wordlist.index(word)] except: pass self.wordlist.insert(0, word) self.definitions[word] = definition self.wordDicts[word] = dictId self.dictionaryNames[word] = dictName self.emit(SIGNAL("layoutChanged()")) def setWordList(self, words): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist = words self.emit(SIGNAL("layoutChanged()")) def getWordList(self): return self.wordlist def updateSelection(self): selected = self.getMainApp().historyListSelectionModel.selection() if selected.count(): self.rowSelected = selected.last().bottomRight().row() else: self.rowSelected = None babiloo-2.0.11/qt/contentSearchModel.py0000644000017300007100000001251411445134342017722 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import Qt, SIGNAL, QString from PyQt4.Qt import QAbstractTableModel, QVariant, QModelIndex from PyQt4.QtGui import QItemSelection import traceback import time class ContentSearchModel(QAbstractTableModel): def __init__(self, parent): QAbstractTableModel.__init__(self, parent) self._headers = ["Words"] self._main = parent self.rowSelected = None self.engine = parent.engine #check the list of dicts from registry self.wordlist = [] self.definitions = {} self.searched_word = '' self.status = "stopped" self.connect(self, SIGNAL("percentageChanged(int)"), self.setPercentage) def flags(self, index): flags = QAbstractTableModel.flags(self, index) return flags def getMainApp(self): return self._main def rowCount(self, parent=QModelIndex()): return len(self.wordlist) def columnCount(self, parent): return len(self._headers) def getWordFromIndex(self, index): row = index.row() if self.wordlist[row] != None: return self.wordlist[row] else: raise IndexError def headerData(self, section, orientation, role): return QVariant() def data(self, index, role): if index.isValid() and role == Qt.DisplayRole: row, col = index.row(), index.column() if self.wordlist[row] != None: text = self.wordlist[row] else: text = "Unknown" return QVariant(text) return QVariant() def clear(self): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist = [] self.definitions = {} self.searched_word = '' self.emit(SIGNAL("layoutChanged()")) def addWord(self, word, content): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist.append(word) self.definitions[word] = content self.emit(SIGNAL("layoutChanged()")) def setWordList(self, words): self.emit(SIGNAL("layoutAboutToBeChanged()")) self.wordlist = words self.emit(SIGNAL("layoutChanged()")) def getWordList(self): return self.wordlist def search(self, text): dict = self.engine.getDictionary(self.getMainApp().activeDictionary) #TODO: clone the dictionary to not have thread bug when accessing the content at the same time #dict = dict.copy() while self.status == "stopping" or self.status == "running": time.sleep(1) self.status = 'running' self.searched_word = text words = dict.getWords() percentage = 0 for count, word in enumerate(words): try: word, definition = dict[word] content = definition.content() if text in content : self.addWord(word, content) except: print word traceback.print_exc() if self.status == "stopping": self.status = "stopped" return if int(count/ 100) > percentage: percentage += 1 self.emit(SIGNAL("percentageChanged(int)"), percentage) self.status = "stopped" self.emit(SIGNAL("percentageChanged(int)"), 100) self.getMainApp().stopContentSearchButton.setEnabled(False) def setPercentage(self, number): if self.getMainApp().contentSearchProgress.value() < number: self.getMainApp().contentSearchProgress.setValue(number) def stopSearch(self): if self.status == "running": self.status = "stopping" self.emit(SIGNAL("percentageChanged(int)"), 0) def onClick(self, index): word = self.getWordFromIndex(index) content = self.definitions[word] highlighted_content = self.highlight(self.searched_word, content) self.getMainApp().definitionView.setDefinition(word, highlighted_content) self.getMainApp().addWordToHistory(word, content) def highlight(self, word, content): highlighted = content.replace(word, '%s' % word) return highlighted def updateSelection(self): selected = self.getMainApp().historyListSelectionModel.selection() if selected.count(): self.rowSelected = selected.last().bottomRight().row() else: self.rowSelected = None babiloo-2.0.11/qt/dictfilemanager.py0000644000017300007100000001124311445134342017255 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia capiscuas@gmail.com # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.Warning import sys, os, platform from core.dictionary import * from PyQt4.QtCore import QSettings, QDir, QVariant import logging import shutil log = logging.getLogger("babiloo.gui.DictFileManager") class DictFileManager(object): def __init__(self, parent, splash): self._main = parent self.defaultDictsFolder = None self.splash = splash self.settings = QSettings() def getRelativeDictionariesDirectory(self): relative_dir = os.path.join(self.getMainApp().programFolder, "dicts") if os.path.exists(relative_dir): return relative_dir return None def getHomeUserDictionariesDirectory(self): home = unicode(QDir.homePath()) user_home_dictionary = os.path.join(home, ".babiloo","dicts") return user_home_dictionary def getSettingsDictionaryDirectory(self): settingsDictsDirectory = self.settings.value("settings/dictsDefaultDirectory", QVariant()) if settingsDictsDirectory == QVariant(): return None else: return unicode(settingsDictsDirectory.toString()) def loadDirectory(self, dirname= None): #cleaning the menus with dictionaries first for dictId, dictItem in self.getMainApp().menuCheckDictionaries.items(): self.getMainApp().menuDictionaries.removeAction(dictItem) self.getMainApp().engine.deleteDictionary(dictId) dirs = [] dirname = self.getSettingsDictionaryDirectory() if dirname: dirs.append(dirname) dirs.append(self.getRelativeDictionariesDirectory()) self.getMainApp().engine.dictionaries = {} for dirname in dirs: if os.path.exists(dirname): for f in os.listdir(dirname): fullpath = os.path.join(dirname, f) if os.path.isfile(fullpath): self.loadDictionary(fullpath) elif os.path.isdir(fullpath): for file in os.listdir(fullpath): self.loadDictionary(os.path.join(fullpath, file)) self.getMainApp().updateActiveDictionary() def loadDictionary(self, file): self.splash.showMessage(_("Loading %s...") % os.path.basename(file)) testdict = self.getMainApp().engine.loadDictionary(file) if testdict['loaded']: self.getMainApp().loadDictionary(testdict['dict']) def saveDictionaryFile(self, dict, dirname = None): log.debug('DictFileManager::saveDictionaryFile') dictsFolder = self.getSettingsDictionaryDirectory() if not dictsFolder: dictsFolder = self.getRelativeDictionariesDirectory() new_folder = os.path.join(dictsFolder, dict.getFileName()) if not os.path.isdir(new_folder): try: log.debug('Creating folder %s' % new_folder) os.makedirs(new_folder) except: log.info('Error creating the folder: %s' % new_folder) return files = dict.getFilePath() if not isinstance(files, list): files = [files] for file in files: new_path = os.path.join(new_folder, os.path.basename(file)) dict.setFilePath(new_path) if os.path.exists(file): try: shutil.copy(file, new_path) except: log.info('Error copying file to: %s' % new_path) def removeDictionaryFile(self, dict): filepath = dict.getFilePath() if isinstance(filepath, list): filepath = filepath[0] log.debug('Removing the folder %s'% os.path.dirname(filepath)) shutil.rmtree(os.path.dirname(filepath)) return True def getMainApp(self): return self._main babiloo-2.0.11/qt/Makefile0000644000017300007100000000141611443252102015217 0ustar kmoskmos00000000000000all: main_ui.py images_rc.py settings_ui.py about_ui.py chooseLanguage_ui.py main_ui.py : main.ui pyuic4 main.ui | sed -s s/^.*Margin.*// | sed -e s/^.*boxlayout\.setObjectName.*// |python Qt2Po.py > main_ui.py settings_ui.py : settings.ui pyuic4 settings.ui | sed -s s/^.*Margin.*// | sed -e s/^.*boxlayout\.setObjectName.*// |python Qt2Po.py> settings_ui.py chooseLanguage_ui.py : chooseLanguage.ui pyuic4 chooseLanguage.ui | sed -s s/^.*Margin.*// | sed -e s/^.*boxlayout\.setObjectName.*// > chooseLanguage_ui.py about_ui.py : about.ui pyuic4 about.ui | sed -s s/^.*Margin.*// | sed -e s/^.*boxlayout\.setObjectName.*// |python Qt2Po.py> about_ui.py images_rc.py : ../images/images.qrc pyrcc4 ../images/images.qrc > images_rc.py clean : rm -f *_ui.py images_rc.py babiloo-2.0.11/qt/settings.ui0000644000017300007100000011124011445134462015765 0ustar kmoskmos00000000000000 SettingsDialog 0 0 584 518 Babiloo Settings true true 4 Global settings 75 true Interface Language: 0 0 150 0 Translate this Application... :/icons/preferences-desktop-locale.png:/icons/preferences-desktop-locale.png Case sensitive AutoComplete true Ignore accents true 6 0 false Pronounce words using this command: Qt::PlainText false Qt::Vertical 369 171 Dictionaries true 1 :/icons/drive-harddisk.png:/icons/drive-harddisk.png Installed Dictionaries QAbstractItemView::DropOnly true QAbstractItemView::ExtendedSelection QAbstractItemView::SelectRows false ... :/icons/list-add.png:/icons/list-add.png true ... :/icons/list-remove.png:/icons/list-remove.png Qt::Vertical true Move up Up :/icons/arrow-up.png:/icons/arrow-up.png true Move down Down :/icons/arrow-down.png:/icons/arrow-down.png Qt::Vertical Show information about dictionary Show info :/icons/dialog-information.png:/icons/dialog-information.png ... :/icons/document-save-as.png:/icons/document-save-as.png ... :/icons/view-refresh.png:/icons/view-refresh.png Qt::Horizontal 40 20 Directory storing the dictionaries: Browse... :/icons/internet-web-browser.png:/icons/internet-web-browser.png Download Dictionaries From link: Download dictionary Download dictionary :/icons/download.png:/icons/download.png From list: true Download dictionary Download :/icons/download.png:/icons/download.png Qt::Vertical Show information about dictionary Show info :/icons/dialog-information.png:/icons/dialog-information.png ... :/icons/view-refresh.png:/icons/view-refresh.png Qt::Horizontal 40 20 false Plugins QAbstractItemView::DropOnly true QAbstractItemView::ExtendedSelection QAbstractItemView::SelectRows false ... :/icons/list-add.png:/icons/list-add.png false ... :/icons/list-remove.png:/icons/list-remove.png Qt::Vertical Show information about dictionary Show info :/icons/dialog-information.png:/icons/dialog-information.png ... :/icons/view-refresh.png:/icons/view-refresh.png Qt::Horizontal 40 20 false Popup window 9 6 false Behavior 9 6 6 0 Pronounce the word 6 0 Timeout before hide after mouse over Don't hide seconds 1 0.000000000000000 10.000000000000000 0.100000000000000 0.500000000000000 6 0 false Show only if modifier pressed false Alt Control Shift Win Scan selection true Show if word not found false Apperance 9 6 6 0 Transparency % 0 100 0 6 0 Default width 96 9999 320 6 0 Default height 96 9999 240 Qt::Vertical 20 101 false Appearance false Preview true Element Select element Title Explanation Abbreviation Example Transcription Select font Foreground Background Click to select color #000000 Click to select color #000000 Select font size 4 150 2 10 75 true Bold B true 50 true false Italic I true 50 false true Underline U true Size Font Qt::Horizontal 40 20 Ok Cancel speechCmdEdit tabWidget moveUpDictButton moveDownDictButton infoDictButton useScanBox showIfNotFoundBox useScanModifierBox modifierKeyBox timeoutBeforeHideSpin pronounceWordBox popupDefaultWidthSpin popupDefaultHeightSpin popupOpacitySpin useScanModifierBox toggled(bool) modifierKeyBox setEnabled(bool) 165 140 273 137 babiloo-2.0.11/qt/images_rc.py0000644000017300007100000315564411445134342016111 0ustar kmoskmos00000000000000# -*- coding: utf-8 -*- # Resource object code # # Created: Mon Jun 1 04:37:24 2010 # by: The Resource Compiler for PyQt (Qt v4.5.0) # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore qt_resource_data = "\ \x00\x00\x2f\xd2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\x08\ \x11\x22\x10\x64\x4a\xdc\xda\x00\x00\x20\x00\x49\x44\x41\x54\x78\ \xda\xed\x7d\x77\x94\x1c\xc7\x7d\xe6\x57\x55\x9d\xbb\x27\xec\xcc\ \x6c\xc6\x22\x10\x00\x05\x82\x14\x83\x98\x14\x4f\x14\xa9\x60\x5a\ \xa4\x6c\x91\x82\x45\x50\x12\xcd\xa4\x04\xd0\x27\x4b\xbe\x53\xf0\ \xd9\x4f\xb4\x9f\xf5\xee\x39\xf0\x3d\x4b\xbe\x7b\xb6\x9e\x2d\xcb\ \xb2\x15\x2c\xe1\x24\x5b\xc9\xb2\xf4\x28\x89\x14\x4d\xc9\x0a\x14\ \x73\x4e\x00\x88\xb0\xd8\x3c\xbb\x93\x3a\x55\xdd\x1f\xdd\xd3\xd3\ \x3d\xd3\x33\xb3\xd8\xc5\x02\x4b\x0b\x85\x37\x98\x9e\xea\xb0\xd5\ \xf5\xfb\xea\x97\xab\x8a\xe0\xc5\x54\xae\x84\x8a\x01\xbc\x17\x04\ \xbb\x01\xbc\x14\x80\xb9\x4e\x5a\x56\x05\xf0\x30\x04\xbe\x84\x79\ \x7c\x1a\xdf\x81\xfd\x62\xe9\x52\xf2\xa2\x21\xfe\x75\xd8\x0c\x86\ \x6f\x02\x38\x87\x50\x82\xcc\x60\x06\x8a\xa9\x80\x83\xc3\x87\x0f\ \x2e\x38\x38\x38\xb8\x68\xfb\x0d\x0e\x88\xf0\x19\x02\xc9\xe3\x6e\ \xdf\xcb\xb9\x26\x7e\xad\x03\xa0\x16\xd5\x3f\x02\x1f\x57\xe3\x9f\ \xb1\xff\x34\x00\x4e\x54\xd9\x05\x0b\x0a\x7e\x06\xe0\xac\x1d\x97\ \xec\xc0\xd9\x57\x9c\x0d\xa1\x0b\x34\x78\x03\x0d\xd1\x40\x9d\xd7\ \xa3\xe3\x06\x0f\x7f\x87\xc7\x0d\xd1\x00\x38\x5a\x1f\x3f\x24\x54\ \xfc\x9b\xaf\xe2\xd3\xbc\xdf\x01\xb0\x1f\xc0\x24\x00\xe0\x71\x38\ \xb8\x04\xfb\x50\x59\xef\x5d\x2b\xbd\x28\x00\x20\xe3\x77\x01\x9c\ \x75\xde\xab\xce\xc3\x45\xbf\x7e\x11\xea\xbc\x0e\x01\x81\xf3\xcd\ \xf3\x61\x31\x0b\x8e\x70\xe0\x72\x17\x1e\x3c\xb8\xc2\x85\xc3\x9d\ \xe8\xd8\x15\x6e\x6b\xa4\x72\x24\x8f\x11\xab\x8b\x9f\x13\xcb\xaf\ \x3b\xb8\x78\x10\x3f\x38\xf4\x03\x38\x92\x03\x9c\x11\x0e\xa9\xa3\ \x38\x2b\x6c\xf3\x9f\x9c\x06\xc0\x89\x28\x14\x37\xca\x8a\x8c\x4b\ \xdf\x70\x29\x7c\xf8\x38\x53\x3b\x13\xef\x1f\x7c\x3f\x86\xa4\xa1\ \x75\xd1\xbc\x07\x67\x1f\xc4\xf5\x77\x5e\x8f\xc7\x66\x1f\x03\x26\ \x00\x4c\x01\xe0\xb8\xf1\xc5\x00\x00\xba\xee\x89\xff\x1e\x18\x10\ \xd8\x3a\xb6\x71\x0c\xb2\x2a\x23\xc3\x32\xf8\xe0\xd0\x07\xd7\x0d\ \xf1\x01\xe0\xbc\xe2\x79\xf8\xea\x9b\xbe\x0a\x5d\xd2\x83\x1e\xb5\ \x00\x08\x6c\xc5\x2e\xe8\xa7\x01\xb0\xda\xd2\x40\x09\x00\x0c\xd3\ \x00\x00\xbc\xd6\x7a\x2d\xb2\x2c\xbb\xee\x9a\xb9\x23\xbf\x03\xbb\ \xb6\xee\x4a\xf2\x55\x1d\x83\xa7\x01\x70\x82\xcb\x88\x3c\xb2\x6e\ \xdb\x76\x66\xfe\xcc\x17\x5b\x77\xbe\xf8\x00\x40\xd6\xb1\xe1\xc2\ \x08\x3b\x0d\x80\xd3\xe5\xc5\x55\xa4\x17\x5b\x83\x45\xf8\x6f\xbd\ \xb6\xed\x34\x00\xd6\xb8\x70\xc1\xe1\x09\xaf\x6f\xe7\xa7\x12\x43\ \x9c\x30\x4a\xa7\x16\x9f\xfb\xa7\x01\xb0\xe6\x00\x00\x87\x2f\xfc\ \x88\xc0\xed\xdf\x1d\x75\x62\xe5\x04\x3d\xde\xeb\x7c\x71\x1a\x00\ \x6b\x5e\x7c\xe1\xc3\x15\x6e\x82\xc8\x1d\x60\x10\x22\x15\x18\x3d\ \x89\x28\x56\x40\xf4\xb6\x73\x69\x9c\xe9\x34\x00\xd6\x80\x03\x78\ \xf0\xa2\xd1\x2d\xd2\xfe\x89\x4e\x70\xa4\x12\xf2\x44\xd6\x89\xd3\ \x22\xe0\xe4\x70\x00\xf8\xf0\x84\x17\x11\x3a\x8d\xf8\xed\xff\xd2\ \x88\x75\xc2\x7e\x8b\xd3\x22\xe0\x94\x28\x81\x71\x82\x73\xf0\x0e\ \x00\xc4\xeb\xba\x11\xac\xeb\xf1\x0a\xaf\x3b\x0d\x80\x93\xc8\x01\ \x22\x02\xc7\x00\xc0\xc1\x93\xbf\x05\x4f\x17\x01\x69\xc7\xc7\x0b\ \x92\x94\xfb\x3c\x7e\x5a\x07\x58\x9b\x42\x10\x65\x2e\x34\x39\x40\ \x9c\xe8\x4d\x42\xc7\x01\x10\x3f\x4e\x25\xd8\x72\x41\x70\x1c\x75\ \x11\x07\x88\xb5\xf7\x34\x00\x4e\x14\x00\xe2\x1c\x00\x5e\x82\xe8\ \xf1\xec\x9f\xe6\x71\x1c\x08\xcb\x22\x66\xbf\xef\x65\x5c\x93\x10\ \x01\xbf\xea\x00\xb8\xfc\xf2\x1b\xc6\x09\xf1\x2e\x13\x02\xa3\x00\ \x56\xec\x24\x2f\x4f\xcd\xe4\xef\x1b\xfa\x5e\x2a\x07\x88\xa7\x81\ \xb5\x03\x60\x55\x29\x61\xc7\x03\x00\x91\x62\x05\x84\x1c\xe0\xc2\ \xa9\x37\xbe\x3f\x77\x79\x69\x61\xc5\xb8\x27\xd4\x05\xc4\x41\x49\ \x72\x7e\xf0\xdd\xef\xee\x9b\x7b\x51\x00\xe0\xf5\xaf\xbf\x61\x23\ \xa5\xe2\x53\x9e\xe7\xbf\x45\x51\x35\x37\x93\xcd\x70\x42\xe8\x8a\ \xc7\x83\x49\x74\x72\x1f\x6d\x8d\xa8\xb8\x0e\xe0\x0b\x3f\x3d\x0f\ \xb0\xf9\x3b\x3c\x5e\x0e\xf1\x8e\x0b\x20\x5d\xea\x22\x3f\x00\x01\ \x40\x81\xb1\xc2\xc4\x87\x0c\x91\x5d\xb1\xff\x91\xfb\x9e\x28\x97\ \x2b\xcc\xf3\x08\xbd\xe2\x8a\x77\x7e\x86\x10\xfb\xc3\x77\xde\xb9\ \xaf\xbc\x6e\x01\x70\xc5\x15\xbb\xcf\x25\x04\x77\x97\x86\x86\x8d\ \xd7\xbd\xf1\x72\x32\xb1\x69\x42\x01\xe9\xa4\xbd\x24\x31\x18\x9a\ \x02\x59\xa2\x20\xe1\x79\xd2\x76\x5d\xf3\xe7\xb1\xa5\x23\xf8\xe6\ \xa7\x3f\xd3\xc1\x01\xe2\x04\x6f\x02\xa1\xdb\x77\x82\x70\xab\x01\ \xc2\x71\x72\x80\x8f\x7c\xec\x36\x65\x3c\x3f\x91\x78\x9f\xe6\x7b\ \x34\xa3\x9a\x5c\x08\x54\x6b\x36\xa6\x66\x97\xe0\xb8\x9d\x4a\x24\ \xe7\x1c\xcf\x3e\xf5\x0c\xbe\xff\x9d\xef\xdf\x58\xad\x2c\xbd\xe1\ \x35\xaf\x79\xe7\xab\xee\xb9\xe7\xf3\x47\xd7\x1d\x00\xae\xbc\xf2\ \x1d\x59\xcf\xa3\xdf\x3b\x63\xfb\xb6\xcc\x5b\x76\xfd\x26\x63\x2c\ \x3d\xd0\x28\xcb\x0c\x59\x4b\x0f\xfa\x28\x46\x74\x12\xef\x18\x12\ \xeb\x47\x4a\x12\xf2\x94\x23\x09\x00\x1f\x7e\x2a\xe1\xe3\xe7\xbb\ \x12\x71\x39\x84\x3e\x8e\xe3\x76\x1d\x80\x31\x0a\x4a\x49\x6c\x0c\ \x90\xc4\x78\x20\x04\x60\xa0\x18\xc8\x1a\xc8\x5a\x1a\x9e\x39\x30\ \xdd\x01\x02\x4a\x29\xb6\xef\x38\x13\x13\x9b\x37\x29\x5f\xfe\xdc\ \x17\xc7\x67\xa6\xa6\xbe\x7e\xfb\xed\xb7\xbf\xfc\xf6\xdb\x6f\xe7\ \xeb\x0a\x00\xb6\x8d\x0f\x5b\x19\x63\xe0\xea\x6b\xdf\xd2\x95\xf8\ \x04\x80\x65\xa8\x20\x00\x0e\x1e\x38\x84\x7a\xbd\x0a\x10\x8a\xf1\ \xf1\x31\x64\x32\x16\x08\x09\xbc\x77\xcd\xd1\x21\x00\x40\x88\x84\ \x56\xed\x89\x20\xd9\x33\x4e\xe8\xf8\x77\x13\x20\xf1\xf3\x1d\x89\ \x9d\xe8\x03\x84\xe3\x21\x7c\xac\x2e\x21\x02\x48\x52\x75\x68\xbe\ \x91\x10\x01\x08\xa6\xa7\x66\x71\xe0\x85\x23\x20\x04\x18\x1a\x2c\ \x62\xd3\xc6\x71\x6c\x18\xc9\xe3\xb9\x17\x66\x52\xfb\x4e\xd3\x54\ \xbc\xf5\xed\xd7\x28\x7f\xfb\x57\x7f\x73\xc1\x8f\x7e\xf4\xd4\x3b\ \x00\xfc\xd3\xba\x01\xc0\xed\xb7\xdf\x4e\x7f\xfc\xe3\xe7\xde\x73\ \xe9\xab\x5e\xa1\x48\x72\xf7\x47\xca\x32\x03\xa5\x14\x3f\xba\xeb\ \x1e\xf8\xf6\x1c\x14\x39\xa8\x7f\xfc\xe1\x07\x70\xc1\x25\x2f\xc7\ \xe6\x4d\x1b\x03\x10\x08\x11\x71\x07\xd1\xd6\xa1\x02\xa2\x83\xe8\ \x4d\x8e\x90\x00\x44\xec\xb8\x2f\xa1\x8f\x17\x0c\x5d\x9e\xd1\x2e\ \x02\x9a\x2e\x69\x08\x40\x90\x16\x08\x1e\x7c\xe0\x31\xd4\xec\x06\ \xb6\x6f\xdb\x0c\x42\x80\x43\x87\x26\xf1\xdc\xb3\x07\xf0\xba\xd7\ \xbd\x12\xaa\x22\xc1\x76\xd2\xfd\x09\xd9\x7c\x0e\xe7\xbd\xec\x02\ \xf6\xe0\xfd\x0f\xec\x5d\x57\x00\xb8\xfb\xee\x67\xb6\x13\x22\x06\ \xb7\xed\xd8\xd6\xfb\x8f\x49\x0c\x33\xd3\x33\xf8\xc1\x9d\xdf\xc6\ \xb3\x4f\x3d\x88\x62\x69\x14\x17\x5c\x78\x29\x26\xb6\x6c\xc3\xf3\ \xcf\x1d\xc4\xe6\x4d\x1b\x83\x01\x4f\x12\xc3\x26\x69\x06\x86\x04\ \xf7\xe0\x25\x08\xed\x09\xaf\x2b\x28\x7a\x12\x9d\x63\x65\x00\x49\ \xb9\x3f\xcd\x0c\x8c\xc0\x1c\x03\xc1\xb3\xfb\x0f\x21\x57\xcc\xe3\ \xa7\xf7\x3d\x0a\xb7\x51\x07\x65\x0c\x95\x4a\x0d\x0d\xdb\x81\x65\ \x6a\xb0\x9d\xee\xd3\x09\xb6\xef\x7c\x09\xb9\xff\x17\xbf\xbc\xf8\ \xb2\xcb\x6e\xd4\xee\xba\xeb\x1f\x1a\xeb\x02\x00\x94\x62\x0b\xa1\ \x8c\xe7\x72\xb9\x9e\x19\x46\x94\x10\x68\x9a\x8a\x9d\x3b\xcf\xc3\ \xc5\x17\x5d\x8a\xb3\xce\x79\x29\x34\x33\x03\x02\x82\xc9\x23\x47\ \xdb\x3c\xac\x02\x44\x84\xbd\x48\x11\xe5\x2e\x35\x59\x7c\x1c\x00\ \xcd\xe3\x26\xd1\x9b\x60\x68\xfe\xee\x4b\xf0\x7e\x84\x5e\xce\x39\ \x11\xf3\x04\xc6\xda\x1b\xbd\x0b\x5a\x20\x90\x28\x05\x71\x3d\x94\ \xf2\x59\x68\xc6\x18\x84\x00\xa6\x26\x27\x21\x31\x06\x99\xf5\x4e\ \xd2\x2a\x0d\x96\x20\x84\xa0\x80\xbf\x0d\xc0\x23\xeb\x44\x07\x10\ \xc3\xaa\xaa\xba\x20\x44\xed\x6d\xd7\x12\x98\x96\x85\x57\xbf\xf6\ \xb5\xb0\x34\x0b\xe3\x1b\x46\xe1\xba\x1e\x9e\x79\xe6\x39\x6c\xdb\ \x7e\x46\x34\xec\x9b\x5c\x20\xf2\xe3\xb7\x71\x00\x57\xb8\x09\x42\ \xbb\x70\x5b\x04\x6f\xe3\x10\x1e\xbc\x9e\x44\x5b\x09\xa1\x13\xd7\ \xf0\xee\x4a\xa0\x88\x29\x01\x82\xb4\x40\x70\xc9\xc5\xe7\x62\x66\ \x6a\x09\x9b\xb6\x6c\x04\xa3\x0c\x87\x0f\x1f\xc1\xd6\x2d\x13\x60\ \x12\x85\x24\xf5\x76\x99\x98\xa6\x01\x80\x80\x52\x0c\xad\x1b\x11\ \xc0\xb9\x28\x18\xa6\xce\xfb\x73\x8a\xa0\x03\x46\xc6\x46\x21\x7c\ \x1f\xb3\xf3\xb3\x00\x01\xc6\x37\x8d\x81\x90\x16\xe1\x23\xdd\x8f\ \x74\xea\x00\x11\xe1\xd1\x22\xb4\x27\x5a\x9f\x76\x80\x44\x8a\x59\ \xda\x8c\xa0\xe5\x70\x84\xe3\xf8\x74\x28\x81\xb1\x30\x84\xef\x79\ \x90\x24\x09\x04\x04\x43\xc3\x43\x18\x1a\x2e\xa1\x5a\xad\xc3\xf3\ \x39\xb6\x9c\x31\x0a\x49\x96\x20\x04\x20\x49\xb4\x9f\x77\x08\xaa\ \x2a\x3b\xb6\x6d\x17\xd7\x0d\x00\x08\x21\x05\xc3\x30\xe8\x32\xae\ \x6b\x1d\x33\x06\x99\xb1\xa4\x0d\x88\x36\x05\x50\x74\x89\x05\x20\ \x39\xd2\x5d\xe1\x26\x40\xd0\x0e\x8c\x13\x41\xdc\xe5\x7c\xda\x95\ \xc0\x40\xeb\x07\x8e\x4c\x4e\x62\x7a\x6e\x0e\x67\xbf\xe4\x4c\xc8\ \xb2\x14\x5a\x39\x14\x96\x65\x76\x28\x39\x12\xeb\xef\x34\x55\x34\ \x8d\xdb\xb6\xb3\x7e\x00\x00\xa0\xa4\x1b\x66\xcf\x67\xf9\xdc\xc5\ \x37\x9e\xfc\x32\xee\xde\xff\x3d\x1c\x5e\x3c\x08\x97\xbb\xcb\x7a\ \xb0\xcf\xbd\x0e\x3f\x40\x73\x94\xc7\x09\x1d\x07\x81\x2b\xdc\xee\ \x00\x48\xe3\x00\xab\x21\x7c\xec\xfe\x76\x11\xb0\xeb\x0b\x57\x83\ \x12\x0a\xc7\x09\xde\x95\x7e\x9f\x40\x96\xe5\x0e\xa7\x17\x00\xc8\ \x54\xc6\xe6\xc2\x16\xbc\x61\xfb\x95\x38\xc7\xbc\x0c\x12\x95\xbb\ \xf6\x89\x61\xe8\x58\x2a\x97\x4b\xeb\x06\x00\x94\xd2\x21\xc3\xd4\ \xbb\x42\xf7\x48\xe5\x20\xfe\xe0\x9e\xf7\xe1\xc8\xd2\x41\x00\x40\ \xc1\x2c\xc0\xd4\xcc\x28\x68\xd3\x2f\xa9\x23\x5f\xc8\xc3\xb0\x8c\ \x84\x0e\x10\x27\x74\xe2\x77\xfb\x77\x5c\x07\x58\xee\x04\xd0\x65\ \x10\x3b\xad\x2e\x52\x02\x65\x00\x0a\x70\xa4\x71\xa8\x33\x9e\xd0\ \xbe\x72\x40\x4c\x9f\x78\x76\xee\x69\x7c\xff\x99\xef\x61\x2c\xb3\ \x11\x7f\xf2\x9a\xbf\xc1\x98\xb5\x31\x1d\x00\xa6\x41\x01\x5a\x58\ \x4f\x00\x18\xd6\x0d\x23\x3d\x98\x63\xcf\xe3\xf7\x7e\xf8\x2e\xcc\ \xdb\xb3\xb8\xf5\x35\xb7\x62\xcf\x15\x7b\x90\xb7\xf2\x68\xf0\x06\ \x1c\x04\xb3\x7a\x1d\xe1\xa0\x21\x1a\xb0\xb9\x0d\x5b\xd8\x68\xf0\ \x06\x6c\x11\x1c\xdb\xdc\x4e\x9c\x93\x88\xd4\x1a\xf9\x6d\xa3\x3f\ \xfe\x1d\x1d\xc3\xed\x3e\x2b\x18\xc7\x09\x86\x3e\x00\x30\x65\x13\ \x13\xd6\x44\xb0\x6c\x45\xfb\x34\x72\xd1\xf9\x9b\x7b\x1c\x73\xb5\ \x39\xd4\x1b\xf5\xd6\x54\x75\x0f\x38\x52\x3d\x88\xdf\xfb\xe1\xbb\ \xf0\x37\x6f\xfc\x57\xe4\xd4\x81\x14\x00\x58\xb2\x10\x62\x5d\x01\ \xa0\xa4\xe9\x5a\xea\xb9\xbf\x7b\xf8\x2f\x30\xef\xcc\xe2\x13\x57\ \x7f\x02\x7b\x2e\xdb\x83\xba\xa8\xc3\xe6\x36\x4c\x66\xc2\x82\x05\ \x97\xba\x11\xc1\x9a\x44\x73\x44\x38\xbd\x9b\x87\xf5\x70\x83\x63\ \x84\xe7\xc3\xe9\xdf\xdd\x88\xee\x08\x27\x51\xbf\x1a\xa2\xf6\x05\ \x47\x8c\xb8\x9b\x33\x9b\xb1\xd9\xda\x7c\x5c\xf7\x70\xc1\x71\xef\ \xf3\xf7\xe2\xd1\xc9\x47\x5b\x26\xa4\x00\xe6\x9d\x59\xfc\xdd\xc3\ \x77\xe0\xf7\x2e\xfa\x93\x34\x11\x40\x24\x49\x1a\x5d\x37\x00\xf0\ \x7d\xbf\xa8\x1b\x9d\x13\x61\xab\x5e\x05\x3f\x3c\xf4\x6d\x9c\x35\ \x72\x16\x3e\x70\xd9\x07\x82\xd1\x08\x40\xa3\x1a\x84\x10\x70\xe1\ \x22\x16\xc8\x6d\xc5\xf7\xe3\x6e\xde\x14\xaf\x5f\xbb\xe2\x17\x07\ \x50\xda\xa7\x2b\x11\xd0\x83\xc0\x7c\x99\xa0\x58\x0e\x58\x78\x77\ \x00\x3c\x3e\xfd\x38\x9e\x98\x7e\xa2\xd3\x67\x2e\x80\xbb\x0f\x7d\ \x07\xbf\xf3\xb2\x3f\x84\x42\x93\xd6\xb5\xa6\x6b\xa0\x94\xac\x1f\ \x33\x50\x08\x9e\xd5\xf5\x4e\x00\x3c\xb7\xf0\x04\x3c\xe1\xe1\xea\ \x73\xae\x06\xa3\x0c\x2e\x77\x41\xc3\x7f\x4d\xe2\x47\x39\x7c\x82\ \xb7\x3c\x7b\x6d\x9f\x0e\x0d\x3f\x46\xf8\xe6\x68\x8f\x1f\x3b\xdc\ \x49\x70\x8d\xf6\x4e\xef\xbb\x40\x44\x2f\x02\xf2\x65\x80\x60\x19\ \xcf\x72\x3c\x07\x3f\x3d\xf0\x53\x1c\x5c\x38\xd8\x6a\x4b\x1b\x08\ \x1c\x61\xe3\xa9\xf9\x47\x70\x4e\xf1\xc2\xc4\x29\xdd\x30\xb0\x6e\ \x44\xc0\x2b\x5e\xb1\x4b\xe7\x5c\x28\x69\x00\x70\xb8\x03\x10\xc0\ \x52\xad\x84\x16\x6f\x0b\x3b\x4a\xe9\x6e\x4f\xe9\x8a\xff\xeb\x18\ \xfd\xe8\x04\x40\x57\x0e\x80\x10\x10\xed\x3a\x80\x58\x26\xb1\x96\ \x7b\xbc\x82\x7b\x0e\x2e\x1c\xc4\x43\x93\x0f\x05\xb2\xbf\xab\xcd\ \x8c\xae\x59\x45\xba\xae\x41\x08\x91\x5f\x17\x00\xd0\x75\xbd\x00\ \xf8\x48\x13\x01\x23\xe6\x38\x40\x80\x87\x8e\x3e\x94\x14\x19\xc2\ \x47\x83\x37\x02\x17\x29\x21\xa9\xd9\x3c\xed\xe1\xde\xb8\x67\xaf\ \xdd\xce\x4f\x03\x80\x03\x27\xe2\x0a\x1d\x04\xc3\x32\x40\xc0\x97\ \x79\x9e\x2f\xff\xbe\xc5\xc6\x22\x1e\x3e\xf6\x30\x66\x2a\x33\xe9\ \xa3\x3e\x05\x00\x45\xad\x93\xd3\x6b\xba\x0e\xdf\xf7\x33\x49\x77\ \xd3\x29\x02\x00\xe7\xde\x20\xa5\x04\x69\x4a\xe0\xb8\xb9\x09\x1b\ \x33\x67\xe0\xeb\x8f\x7d\x1d\x4f\x4e\x3d\x89\x4d\xa5\x4d\xc9\x10\ \xb2\xb0\xd1\xf0\x1b\x20\x84\x80\x82\x76\x84\x78\x13\x3e\xfd\x36\ \x51\xe0\xa2\x8d\xed\x0b\x27\x5a\x2b\xc8\x16\x76\xa2\xbe\x9f\x1c\ \x5e\x16\x81\xbb\x9d\x5b\xc6\xf5\x35\xa7\x86\xe7\xe7\x9f\xc7\xa1\ \x85\x43\x10\x7c\x99\xf4\xa2\xc0\xb6\xdc\x4e\x8c\x9a\x13\x9d\x83\ \xce\xd0\x00\x80\x5c\x71\xc5\x0d\x85\xef\x7f\xff\x1f\x67\x4f\x29\ \x00\x28\x65\x05\x80\x0b\x4d\xd7\x53\x19\xd6\x8d\x3b\x3f\x80\x3f\ \xfe\xc5\x07\x70\xed\x3f\x5e\x8b\x6f\xdd\xfa\x2d\xe4\x32\xb9\x8e\ \xa0\x4f\x9d\x07\x96\x01\x05\x05\x23\x2c\xe0\x04\x22\xa9\x0c\x26\ \x46\x3d\x92\x1e\xbf\xc4\xc8\x6f\xd3\x09\x1c\xe1\x74\x12\x0c\x3d\ \x74\x80\x95\x00\xa0\xcb\x3d\x15\xbb\x82\x03\x0b\x07\x30\x55\x99\ \x5a\x3e\xe1\x43\x3f\x02\xa1\x04\x37\x9e\xf5\xdf\xd3\xb9\x6e\x68\ \x72\x53\xea\x15\x00\x9c\x5a\x00\x10\xc2\x0b\x8a\xaa\xba\x84\x10\ \x25\xed\xfc\x2b\x47\xae\xc0\xdb\xb7\xbf\x1b\x5f\x7e\xe6\x6f\x71\ \xf5\x67\xae\xc6\xbe\x5b\xf6\x21\x67\xe6\x3a\x15\x49\x08\x54\x79\ \x15\xb6\xb0\x21\x20\xc0\x08\x83\x10\x22\x35\xce\xdf\xce\x09\xda\ \xc5\x40\x93\xf0\x11\x00\x96\xeb\xe0\xe1\x2b\x18\xe9\xed\xb6\x3d\ \xe7\x98\xad\xcd\xe2\x58\xe5\x18\x16\xea\x0b\xfd\x59\x7d\x1a\x45\ \x08\xb0\x7b\xfb\x7b\x71\xd1\xd0\xab\xbb\x88\xdd\x00\x00\x9e\xc7\ \x0a\xa7\x5c\x07\xe0\x5c\x14\x14\x4d\xed\xf9\x9a\x37\xef\xf8\x5d\ \x50\xc6\xf1\xa5\xa7\x3e\x83\x6b\xff\xfe\x5a\x7c\xe1\xc6\x2f\xa4\ \x82\x20\xce\x11\x1a\xa2\x01\x4f\x78\x20\x20\x61\xa0\x48\x74\xca\ \x7e\xb8\x3d\x95\x41\x87\x3b\x70\xe0\x74\xd7\xfe\x71\x9c\x44\x4e\ \x3b\x17\xae\x37\xb8\x64\x2f\x61\xa6\x36\x83\xb9\xda\x1c\x7c\xdf\ \x3f\x7e\xc2\x03\x41\xee\x34\x01\xde\x7d\xfe\x5e\x5c\x3b\xf6\xfe\ \xee\x44\x93\x25\x30\x46\x7d\xcf\xf3\x8b\xa7\x1c\x00\x84\x90\x41\ \x43\x37\xfa\x05\xb0\xf0\xc1\x0b\xff\x00\x63\xc3\x79\xdc\xf1\x1f\ \x77\xe0\xfa\xcf\x5d\x8f\xcf\xbe\xeb\xb3\xc8\x5a\xbd\x17\x7b\xf2\ \x84\x17\x2c\xfc\x28\xea\x01\x18\x9a\x89\x15\x10\x3d\x47\xbc\xc3\ \x1d\xd8\x08\xf4\x80\xa6\xc5\xd1\xd7\xc1\xc3\x97\x41\xf8\xd8\xb1\ \xeb\xbb\x58\xb2\x97\xb0\xd4\x58\xc2\x92\xbd\xd4\x22\xfa\x4a\x55\ \xb2\x30\x94\xf6\x9e\x0b\xf6\xe2\xf7\x5f\xf9\x47\x78\x6a\xff\x31\ \xf0\x1e\x62\x43\x51\x35\xcf\xf3\xea\xa5\x53\x0e\x00\x21\x44\xdf\ \x48\x20\x21\x04\xb2\xcc\xf0\x17\xbf\xfe\x17\xb0\x3d\x0f\xff\xe7\ \xa7\x9f\xc4\x8d\x9f\xbf\x11\x9f\x7e\xc7\xa7\x61\x99\xd6\xb2\xfe\ \x4e\x13\x0c\xcd\x8f\x0f\x3f\x8a\x15\xf8\x22\xb0\x18\xe2\x8a\xa1\ \x03\xa7\x53\x07\x10\x5d\x82\x40\xbc\x37\xd1\x39\xe7\x68\x78\x0d\ \x34\xdc\xf0\xe3\x35\x60\xbb\x76\x72\xe5\xd1\x15\x77\x60\x8b\xf8\ \xef\x3e\x7f\x2f\x3e\xf6\xca\x3f\x8a\xa2\x82\x4e\x8f\xa9\x66\xba\ \xae\xf3\x7a\xad\x56\x58\x0f\x1c\xa0\x60\x58\xa6\xdc\x0f\x00\xf5\ \x86\x83\x85\xa5\x3a\xfe\xea\x2d\x7f\x09\x55\x91\x70\xc7\x7f\xdc\ \x81\xf7\x7c\xf1\x3d\xf8\xd4\xee\x4f\x2d\x1b\x04\x71\x31\xe1\x08\ \x27\xb1\x54\xac\xcd\xed\xc8\x54\x8c\xa2\x81\x3c\x10\x19\x54\x50\ \x50\x4e\x41\x04\x01\x15\x34\x22\xae\x10\x02\xdc\xe7\x10\x5c\x40\ \x70\x01\xdf\xf7\xe1\xfb\x3e\x3c\xdf\x8b\x3e\xae\xef\xc2\xf5\xdc\ \x4e\xdf\xfe\x89\x2a\xa1\xea\xfc\xee\xf3\xf6\xe2\xf7\x5f\x71\x3b\ \x20\x04\x04\x21\x90\x24\x0a\xa7\x47\xc0\xd4\xb0\x0c\x32\x3f\x37\ \x73\xea\x01\xc0\x98\x3c\x6a\x18\x3a\xe9\x27\x02\xb8\x10\x78\xf4\ \xe9\xc3\x60\x94\xe2\xb7\xc6\xf6\x62\xf2\x25\x8b\xf8\xc2\x53\x7f\ \x8b\xdb\xbe\x74\x1b\xee\xb8\xee\x0e\x98\xc6\xea\x16\xfe\x6e\x8a\ \x85\x35\x59\x2b\x78\x2d\x0b\x09\x88\xff\xb1\x97\xdf\xde\x4a\x7e\ \x12\x80\xd4\x27\x35\x4c\xd7\x0d\x19\x20\xab\xd6\x01\x56\xbd\x4a\ \x18\xa5\x18\xee\x16\x08\x8a\x73\x80\x28\x6d\x8a\x73\x78\x1e\xc7\ \x9e\xb3\x3f\x82\xdd\x67\xde\x82\x17\x16\x5e\xc0\x87\xbe\xfc\x21\ \xcc\x55\xe7\xf0\x2b\x55\x42\xd6\xff\xee\xf3\xf7\xe0\xa3\x97\x7e\ \x1c\xc9\x49\xcc\x02\xac\x0f\x00\x4c\xcb\x60\x84\x90\xe1\x53\x0e\ \x00\x21\x44\xa1\x5b\x28\xb8\x2d\xb6\xd1\x21\x2b\x6f\x3b\xfb\x63\ \xd8\xbd\xfd\x16\x1c\x5a\x38\x84\x8f\xee\xfb\xe8\xaf\x0e\x08\x78\ \xd0\x29\xb7\xbe\x74\x0f\x3e\x72\xf1\xed\x11\x07\x8b\x83\xa0\x5f\ \x66\x90\x6e\xe8\xa0\x74\xf5\xeb\xe5\x9e\x08\x00\xe4\xd3\xdc\xc0\ \x1d\x1c\x20\x06\x82\xf8\xba\x3d\xb7\xed\xfc\x18\x76\x6f\xbb\x05\ \x87\x17\x0e\xe3\xe3\x5f\xfd\x38\xe6\xab\xf3\xff\xb5\x47\x7d\x8c\ \xf8\x1f\xbd\xe4\xf6\x8e\xd3\xcd\xae\x61\x7d\x45\x80\x0e\x10\x51\ \x3a\xd5\x00\x20\xbe\xef\x67\x34\xbd\x1f\x00\x10\x4b\xf0\xeb\x0e\ \x82\x23\xe5\x23\xf8\xc4\xbf\x7c\x02\x0b\xd5\x85\xff\xba\xc4\x07\ \xb0\x6b\xe3\xbb\xf0\x91\x8b\x3e\xde\x5a\xcb\x48\xc4\x35\x99\xe5\ \xe9\x00\x9a\xae\x01\x82\x14\x4e\x29\x00\xae\xb8\xe2\x86\x02\x00\ \xa2\x69\x7d\x74\x80\xd6\xb4\x9e\x64\xaa\x74\x1c\x04\x67\x7d\x0c\ \xbb\xb7\xde\x82\xa3\xe5\xa3\xf8\xf3\x6f\xfc\x39\xca\xd5\xf2\x7f\ \x2d\xe2\x87\xe9\x82\xaf\xcf\xbf\x05\x37\x6d\xde\x9b\xc2\x49\x93\ \x20\x60\x7d\x01\xa0\x83\x73\x3f\x7f\x4a\x01\x10\xfa\xa2\x61\x9a\ \xe6\xb2\xfa\x00\xd1\xca\x5e\x49\xed\xbd\x59\x7e\x67\x67\x00\x82\ \x63\xe5\x63\xf8\xe4\x37\x3f\x89\xc5\xea\xe2\x7f\x0d\xe2\x87\xe6\ \xdc\x55\x83\xbb\x70\xcd\xc0\x0d\xf0\x7c\x3f\x2e\x42\x53\x41\xc0\ \x68\x6f\xd2\x18\xa6\x01\xce\xb9\x7a\xe5\x95\x57\xaa\xa7\xcc\x0c\ \xf4\x3c\x56\x20\x84\xa3\x97\x15\x40\x08\x89\x26\x79\x36\xec\x06\ \x7c\xd7\x85\xcf\x03\x0f\x0c\x89\xd9\xc1\x4d\x2e\xf1\xae\xd1\xf7\ \xc1\x76\x6c\x7c\xed\xc8\xe7\xf1\xd7\xdf\xf9\x6b\xdc\x7c\xe5\xcd\ \x90\x34\xe9\xc5\x0b\x00\x2f\x18\x66\xef\xd8\x7c\x13\x2e\x13\x57\ \x61\x6e\xa1\x8c\x39\x55\xc1\xdc\x5c\x21\x11\xee\xa7\x94\x82\x32\ \x0a\x59\x56\xa0\xeb\x1a\x18\x23\x3d\x63\xbd\x9a\x16\x88\xdd\x4a\ \xa5\x58\x00\x70\xf4\x94\x00\x00\xf0\x8b\x4c\x92\x7c\x49\xee\x35\ \x9d\x45\x60\xb1\xbc\x80\xa5\xc5\x72\x34\xda\x63\xb3\xa5\x13\x9d\ \xd0\x04\xc1\x6f\xe5\x7f\x1b\xf5\x7a\x0d\xdf\x59\xf8\x1a\x3e\xf3\ \x9d\xcf\xe0\xfa\x5f\xbb\x1e\xb2\x2a\xbf\xf8\x46\xbe\x13\x1c\xbe\ \x6d\xec\x7a\xdc\x30\x72\x2b\x9e\x7c\xf6\x39\x54\x2b\x15\x2c\x48\ \x0c\xe5\x85\x79\x24\x3b\xa3\xf5\xfe\x94\x52\xe4\xf3\x79\x50\x4a\ \xc2\xc1\xd2\x45\x07\x00\xa0\x28\xfe\xe0\x6a\x00\xb0\x4a\x25\x90\ \x96\x14\x45\xed\xb9\x34\xd6\xdc\xcc\x34\xca\xe5\x05\x70\x91\xbe\ \x6c\xab\x48\x71\xe8\x3c\xf5\xdc\x73\x30\xef\xdb\x88\x33\xcb\x17\ \x62\x66\x69\x06\x9f\xff\xee\xe7\x51\xa9\x57\x5e\x94\xc4\xbf\x76\ \xec\x7a\xdc\xba\x71\x6f\x60\xf6\x33\x0a\x2e\x04\x3c\x1e\xf3\x1f\ \x8b\x4e\x71\xc8\x39\xc7\xfc\xfc\x1c\xca\xf3\xb3\x3d\xcd\xc0\x10\ \x36\xab\x72\x06\xad\x0a\x00\x84\xf4\x9e\x12\xe6\xd8\x36\x1a\x76\ \x3d\x12\x6e\x22\x45\x11\x8c\xf7\x41\xdd\xb6\x71\xcf\x7f\xfe\x0c\ \xbf\x7c\xe8\x11\x0c\x0d\x0e\xe2\x7f\x5d\xf0\xc7\xb8\xaa\xf8\x36\ \xcc\x2d\xcd\xe1\x2b\x77\x7e\x05\xd5\x7a\xf5\xc5\x45\xfc\xd1\xeb\ \x71\xeb\x86\xbd\x91\x6c\x67\x94\x01\x42\xc0\xf7\xfc\x1e\x2b\xd3\ \xb6\x2c\x03\xc7\x69\xc0\x71\xec\xae\xa2\x55\x51\x15\x87\xf3\xd5\ \xcd\x0f\x58\x35\x00\x74\xc3\x20\xdd\x95\x44\x1a\x73\x02\xf5\x06\ \xc1\xfc\xc2\x22\x7e\x70\xcf\xbd\x98\x99\x9b\xc3\x45\xe7\x9d\x87\ \xd7\x5c\x72\x31\x54\x45\xc1\x3b\x07\xdf\x8b\xab\x0a\x6f\xc3\xfc\ \xd2\x3c\xfe\xf5\x07\xff\x8a\x5a\xbd\xb6\xbe\x89\x6f\x07\xdf\xd7\ \x8e\xec\xc6\xad\xe3\x7b\x13\xe7\x18\x63\x81\xcb\xda\xf3\x92\x56\ \x90\x48\x07\x01\xa5\x04\x94\x74\x27\x91\xaa\xa9\x9c\x10\x71\xea\ \x00\x00\x90\x62\xe0\x93\xee\xa2\x60\xc8\x32\x32\xd9\x5c\xd2\x0a\ \x48\x01\xc1\xb1\xa9\x29\xfc\xe4\x17\xbf\x00\x21\xc0\xab\x2f\xbd\ \x04\x5b\x37\x6f\x4c\x98\x8e\x01\x08\x76\x61\x61\x69\x01\xff\xf6\ \xc3\x7f\x43\xbd\x5e\x5f\x9f\xc4\xaf\x87\xc4\x1f\xde\x8d\x5b\xc6\ \xf7\x76\x7a\xf7\x24\x06\x16\xf7\xf0\x09\xa4\x8a\x82\x66\x29\x14\ \x8a\x90\xe4\x1e\x53\xc4\x74\x03\x42\xa0\x74\x0a\x39\x00\x19\x36\ \x2d\xa3\xa7\xcf\x32\x3f\x50\x40\xa9\x34\x04\x49\x92\x42\x26\x20\ \x12\xef\x3b\x35\x33\x83\xfb\x1f\x79\x1c\x8a\x2c\xe3\x95\x97\x5c\ \x8c\xc1\x62\xa1\xc3\x3c\x04\x80\x77\x96\xde\x83\xab\x0a\xbb\x50\ \xae\x95\x71\xe7\x3d\x77\xa2\x51\x6f\xac\x1f\xe2\x73\x00\x8d\x40\ \xa1\xbb\x66\x78\x37\x6e\x1e\xdb\x1b\xa3\x6b\xeb\x3d\x64\x26\x81\ \x31\x96\xd0\xee\x45\x0a\x08\x64\x49\xc6\xf0\xf0\x08\x8a\xc5\xde\ \x83\x5b\x37\x4d\x4a\x08\x4e\x9d\x0e\x40\xa9\x34\xd4\x3f\x0e\x40\ \xa0\xeb\x06\x46\x46\xc7\x91\x1f\x28\x80\x92\xd6\xeb\xcf\x2d\x2c\ \xe0\x91\x27\x9f\x82\xaa\xca\xb8\xf0\xbc\x73\x91\xb5\xac\x74\x1f\ \x41\xf8\xf5\xce\xe2\x7b\x70\x55\x7e\x17\x96\xaa\x4b\xf8\xd1\xbd\ \x3f\x42\xa3\xd1\x58\x3f\xc4\x17\xc0\x35\x43\xbb\x71\xcb\xe8\x9e\ \xce\xc1\x1d\x8a\x3f\xc6\x18\x24\x46\xa3\xa9\xf0\xed\x20\x20\x94\ \x62\x60\xa0\x88\xf1\x0d\x13\xd0\x0d\x23\xc9\x2d\x52\x8a\x69\x19\ \x32\x70\x2a\x45\x00\xc1\x60\xbf\x48\x60\x93\x90\x04\x04\x99\x4c\ \x16\x23\x63\x1b\x60\x59\x19\xd8\x8e\x83\xa7\x9e\x7d\x06\x12\x63\ \xd8\xb9\xfd\x4c\xe4\x73\xb9\xae\x96\x41\x1a\x08\x2a\xd5\x0a\x7e\ \xfa\x93\x9f\xc2\x6e\xd8\xa7\x96\xf8\x21\xdb\xbf\x66\x70\x37\x6e\ \x1e\xd9\xd3\x29\xea\x62\xed\xb7\x4c\x13\xaa\xa2\x80\x31\x86\xf9\ \xf2\x42\x42\xa1\xb3\xb2\x39\x6c\xd8\x30\x81\x5c\x2e\x1f\xd9\x86\ \xac\xcf\xf2\x8a\xba\xae\x13\x49\x5a\xdd\x36\x6a\xab\x02\x40\x10\ \x09\x5c\xde\xde\x88\x4d\x79\x48\x29\x43\x2e\x5f\xc0\xfc\x52\x15\ \x9a\xaa\x63\x6c\x78\x18\xc3\x83\xa5\x84\x4d\x9c\x5c\x1a\x28\xb9\ \x4a\x18\x08\xf0\xae\x10\x04\xd5\x6a\x15\xf7\xff\xe7\xfd\x70\x6c\ \xe7\xd4\xc8\xfc\x5a\x93\xf8\xd7\xe1\xe6\x91\x3d\x1d\x17\x24\x67\ \x81\x0b\xc8\xb2\x8c\x8d\xe3\x1b\xc0\x18\xc3\xe4\xd4\x34\x6c\xdb\ \x81\x6e\x98\x18\xdf\x30\x81\x62\xa1\x04\xca\x58\x02\x36\xcb\x71\ \x07\x13\xb2\xba\x29\x62\xab\x02\x00\xf7\x79\x4e\xef\x11\x08\x22\ \x6d\x23\xba\x09\x82\x63\x53\x53\xf0\x5c\x0f\x23\x23\x63\xb8\xf8\ \xc2\x8b\x21\x29\x72\xc7\xb2\x6a\x81\x97\x88\xa0\x63\x61\xbd\xb0\ \xfe\x5d\xc5\xf7\xe2\xaa\xfc\x2e\xd4\x6a\x35\x3c\xfa\xb3\x47\xe1\ \xda\xee\xc9\x1d\xf9\x95\xe0\xfb\x9a\xd2\x75\xb8\x79\x78\x6f\x27\ \xb3\x6a\x7a\x40\x9b\x75\xe1\x7b\x64\x2c\x0b\x03\xd9\x2c\x54\x45\ \x81\xa0\x14\x43\xc3\xc3\x60\x92\x1c\xdd\x18\x17\x0b\xcb\x8a\x08\ \xe2\x14\xe9\x00\x97\x5d\x76\xa3\x26\x04\x57\x7b\x01\xa0\xb5\xde\ \x4b\xcc\x33\xca\x7d\x1c\x9b\x99\x81\xa2\x2a\xd8\x38\x31\x01\x2b\ \x63\x61\x74\x6c\x03\x0a\xc5\x12\x98\x24\x47\x59\xc0\xad\x95\x35\ \x93\x40\x20\x21\x08\x08\x08\x6e\x28\xbc\x0f\x57\xe7\x76\xa1\x51\ \x6d\xe0\xe9\x5f\x3c\x0d\xcf\xf6\x4e\x0e\xf1\x97\x00\xf8\xc0\x35\ \xc5\xdd\x6d\xc4\x6f\xb6\x9d\xb4\x06\x40\xd8\xf6\xe6\xeb\x30\x49\ \xc2\x59\x67\xed\xc4\xe8\xd8\x38\xb8\x00\x96\x2a\x95\xa4\xaa\x18\ \x33\x0f\x09\x48\xb0\xac\x4e\x57\x25\xd0\x80\xcf\x79\xfe\x94\x00\ \x40\x96\x1b\x85\xa4\x47\xaa\x17\xaf\x6c\x05\x3a\xe6\x16\xe6\x21\ \x31\x06\x5d\xd3\x30\x54\x2a\x46\xee\x60\xcb\xca\x60\x74\x6c\x0c\ \xd9\x81\x01\xd0\x66\x20\x84\xc4\xf8\x41\x84\x01\x11\x31\x02\x10\ \xe0\x86\xe2\xfb\x70\x75\x7e\x17\xec\xaa\x8d\x03\xf7\x1d\x80\x6f\ \xfb\x6b\x4b\xfc\x72\x93\xf8\xd7\xe1\xe6\xe1\x3d\x6d\x1c\x4f\x24\ \xb9\x5f\xb3\xbd\xa1\x4d\x9f\x1f\x18\xc0\x86\x0d\x1b\x50\x28\x14\ \x30\x90\xcf\x43\x96\x24\x2c\x94\x17\x3b\x2d\xc1\x98\x06\xd9\x2b\ \x28\xa4\xeb\x2a\x04\xe7\x99\x53\x02\x00\xce\x49\x29\xee\x93\xee\ \x26\x02\x44\x1b\x08\xea\xb5\x1a\x54\x45\xc6\x60\xa9\x08\x42\x29\ \x20\x48\xd8\x45\x04\x94\x30\xe4\x72\x79\x8c\x8e\x4d\xc0\xb4\xb2\ \xc1\x9a\x6a\x4d\x4d\x40\xb4\xa8\xde\x8a\x9a\x05\xf7\xbe\xa6\x72\ \x15\xb6\x4f\xbd\x0c\x4e\xd5\xc1\xd1\x5f\x1e\x05\x77\xf8\xda\x10\ \x7f\x21\x20\xfe\x5b\x0b\xbb\x3b\xd8\x7e\xb3\x2d\x2d\x62\x92\xa8\ \xfd\x56\x26\x83\xf1\x0d\x13\xc8\xe7\x07\x40\x68\xa0\xd9\xe7\x73\ \x39\x48\x92\x04\xcf\xf3\x60\x3b\x4e\xd2\x51\x16\xb3\x0c\x7a\xe5\ \x05\x68\xba\x0e\x21\x04\xbb\xec\xb2\x1b\xf3\x27\x1d\x00\x81\x0f\ \x9a\xa0\xb7\x08\x48\xca\x35\xd7\xb1\x41\x09\x85\xa6\xa8\xc8\x5a\ \x56\x38\x92\x63\x51\xc1\x90\x1b\x30\x46\x51\x28\x95\x30\x3a\x36\ \x1e\x44\xbd\x08\x40\x48\x3b\x27\x08\xbe\x8f\x4d\x4f\xe1\xde\x9f\ \xdf\x87\x57\x56\xae\xc4\x95\xd6\x35\x70\xeb\x2e\xe6\xee\x9f\x3b\ \xb1\x20\xe0\x00\xe6\x42\xe2\x17\xaf\xc3\x2d\x23\xef\xef\x2e\xf1\ \xa2\xb6\x09\xe8\x86\x8e\xb1\xf1\x0d\x28\x95\x06\xc1\x24\x29\x7c\ \xbf\xe0\x3d\x74\x4d\x85\x22\x49\x90\x25\x09\x8d\x46\x23\xcd\x6e\ \x88\xe2\x07\x7d\x74\x00\x50\x5a\x5f\xb1\x1e\x20\xad\x9c\x03\xd0\ \x82\xa6\x2b\x0e\xba\x4c\x09\x6b\xca\x30\x11\xd0\x18\x82\x08\x78\ \xbe\x0f\x4d\x51\x20\x08\x81\xaa\xe9\xc9\x55\xc3\x42\xea\xc7\x23\ \x85\xb2\xaa\x62\x78\x64\x14\xf5\x5a\x0d\xf3\x0b\xb3\xf0\x3d\x2f\ \xea\xe1\xe6\x92\xb2\xf7\x3d\xf8\x30\x20\x38\x2e\xbd\xe0\x7c\x14\ \xf2\xaf\x03\x63\x0c\xdf\x5a\xdc\x87\xca\x03\x15\xc8\xe7\xca\xc1\ \x7a\x3d\xab\x29\x3e\x80\x99\xe0\xfb\xdc\xc5\x57\xe0\x72\xeb\x37\ \xd0\x1e\xc3\x8c\xab\x3b\x00\xa0\xc8\x0a\x06\x8a\x05\x18\x86\x99\ \x5c\x28\x3a\x61\xe9\x04\xfe\x11\xc7\x75\x82\x49\x25\x68\x2e\x8d\ \x17\x5b\x2d\xb9\x4f\x66\x90\x1e\xee\xa8\x4e\x88\x54\x00\xf0\xec\ \x49\x05\x00\x21\xfd\xa7\x84\xb5\xc3\x99\x00\x50\x15\x25\x8c\x7d\ \x87\xe0\x20\x49\x5f\x81\x48\x84\x88\x83\x1c\x79\xdd\x34\xa0\x19\ \x3a\xaa\x95\x25\x2c\x96\x17\xe0\x73\x0e\x01\x60\x76\x6e\x0e\x4b\ \xd5\x2a\xc6\x47\x47\x51\xc8\xe7\x01\x08\xbc\x33\xff\x5e\x00\xc0\ \xb7\x16\xf7\xc1\x79\xc8\x01\x5e\xba\x8a\xb7\x8c\x11\xff\xcd\xd6\ \xb5\x18\x3d\xb0\x13\xcf\xbb\x07\xb1\x65\x62\x43\xac\x23\x44\x24\ \xfd\x25\x46\x91\x1f\x28\xc0\xca\x64\x02\x1f\x3e\x69\x5b\x28\x3a\ \xa6\x0c\x0a\x00\xaa\xaa\x80\x0b\x3f\x98\x0b\xd0\x5c\x17\xb1\x0d\ \x04\xbd\x74\x00\x59\x96\x41\x19\xe3\xbe\xe7\x15\x4e\xba\x08\x10\ \x02\x25\x43\x37\xc4\x32\x69\x1f\x6a\xc0\x0c\x9a\xaa\x42\x53\xd5\ \x18\x2b\x27\x91\xe6\x1f\x71\x80\xa6\xe6\xdc\xec\x30\x42\x40\x29\ \x45\x26\x9b\xc3\xe8\xf8\x04\xb2\xb9\x1c\x28\x21\xa8\xdb\x0e\x86\ \x8b\x25\x6c\x18\x1d\x49\x68\x50\xef\xcc\xbf\x17\x57\x65\x77\x41\ \xd4\x05\xf0\x30\xa2\xe8\xdc\x71\x13\x7f\x0a\x80\x07\xfc\x46\xfe\ \xed\xb8\x75\xe4\x36\x98\xba\x01\xd7\xf5\x42\xcf\x1e\x89\x78\x3e\ \x21\x04\xb9\x5c\x0e\xe3\x13\x1b\x91\xc9\xe6\x22\xe2\xc7\xf8\x43\ \xc2\x12\x08\x5e\x8f\x40\x92\x24\x48\x4c\x02\x93\x24\x08\xc1\x3b\ \x62\x04\x22\x54\x1e\x7b\x15\x55\x55\x5c\x4a\x57\x1e\x0f\x58\x05\ \x07\x40\x51\x37\x0c\xb6\x1c\xa4\x34\x6d\x62\x55\x96\x83\x4e\xa0\ \x24\xc1\xea\xdb\x59\x28\x41\x6b\xc9\xd0\x96\x33\x88\x44\xfa\xc1\ \xc0\x40\x01\xd9\x6c\x16\xd5\x5a\x1d\x8b\xc5\x32\x2c\xd3\x04\x61\ \x24\xa1\x7d\xdf\x50\x7c\x1f\x08\x01\xbe\xb9\xb8\x0f\x78\x14\xc0\ \x4e\x2c\x7f\xe3\x1a\x1f\xc0\xb1\xe0\xfb\x37\x0b\x6f\xc7\x8d\xa5\ \xf7\x43\x08\x60\x20\x9f\x83\xf0\xfd\x50\x5f\x09\x40\x60\x9a\x26\ \x0a\xc5\x02\xa4\xd0\x96\x27\x6d\xce\xac\x96\x25\xd0\x7e\x42\x80\ \x52\x0a\x59\x96\x92\x73\x15\x9b\x5c\x23\xfc\xaf\xbf\x2f\xc0\xe0\ \xb5\x6a\xed\xe4\xeb\x00\x80\x28\x98\x7d\xa6\x84\x35\xc1\x4c\x42\ \x10\x28\xb2\x0c\x4a\x03\x6d\xd9\x6f\x93\xf7\xb1\x2e\x8a\x89\x81\ \xa4\x48\x10\x68\xa5\x98\x33\x49\xc6\xd6\x6d\xdb\xa0\xa9\x1a\xea\ \xf5\x3a\x9a\xbb\xd2\xc4\xf5\x8a\xdf\x2e\xbd\x1f\x84\x10\x7c\xa3\ \xfc\x15\xe0\x31\x00\x3b\x96\xc1\xf3\x7c\x00\x93\xc1\xc8\x0f\x88\ \xbf\x07\x04\x80\xe7\xb9\x18\xc8\x64\x20\x2b\x32\x08\xa1\x50\x55\ \x15\x03\x85\x42\xe0\x8d\x8b\x46\x79\x8b\xe5\x8b\xb6\xb6\xb4\xc4\ \x5d\x4b\xf4\x31\x4a\x20\x33\xa9\xb5\xbc\x7c\xdb\x5e\x09\x64\x39\ \xce\x20\x43\x27\x84\xac\x3c\x27\x60\xc5\x00\x90\x24\x79\xc4\x30\ \x74\xd2\x73\x77\x2c\x12\x43\x34\x04\x14\x59\x8e\x26\x3c\x54\x3d\ \xa7\x4d\x8d\x12\x88\xe5\x0f\xb7\x38\x81\x48\xee\x20\xd2\xe4\x28\ \x04\x80\xa2\x28\xd8\xb2\x71\x33\x84\xf0\x51\xb7\x1d\x2c\x94\xe7\ \xe0\xfb\x5e\x62\xa0\xdd\x38\xb8\x07\x20\x04\xdf\x58\xf8\x32\xf0\ \x04\x80\xed\x3d\xde\xda\x03\x70\x04\x80\x0b\xbc\xb5\x70\x1d\x6e\ \x1a\xda\x13\xb5\xc9\xf7\x38\x0a\xf9\x3c\xb2\xb9\x0c\x06\x87\x06\ \x61\x9a\x99\xe4\x80\x4e\x40\x38\x41\xf6\xf4\xeb\x04\x40\x09\x85\ \x2c\x49\x21\x87\x24\x09\x5d\xa8\x39\x10\x18\xa5\x3d\x77\x20\x33\ \x33\x86\xb4\x9a\x80\xd0\x2a\x44\x00\x19\xd6\x74\xad\xef\xee\x68\ \x71\xbf\x3e\x65\x12\xb4\x70\x97\x08\x9b\xfb\xf0\x63\x72\xaf\x43\ \x5b\x6e\x0d\xaa\x44\x90\x80\x24\xdb\x00\xd5\x50\x31\x60\x5a\xf0\ \xb9\x8f\xd9\x7c\x16\x8b\x8b\xf3\x28\x97\xcb\x10\x9c\x47\xf7\xdc\ \x3c\xbc\x07\x84\x02\x5f\x9f\xff\x32\xf0\x34\x80\xad\x29\xe2\xc0\ \x0d\x89\xef\x01\x6f\x2d\xee\xc6\x2d\x21\xf1\x41\x02\x33\x30\x6b\ \x99\xc8\x6d\x18\x43\x26\x3f\x90\xd4\x57\x52\xac\x80\xf6\x6d\x6f\ \xe2\xb2\x29\xfe\x9b\x51\x0a\xc2\x68\x90\x38\xec\xf3\xb8\x4e\x19\ \x1d\x33\x4a\x9a\x4b\x07\x76\x13\x01\x12\xa5\x74\xe8\x14\x88\x00\ \x14\x0d\xd3\x40\xda\xa6\x50\x48\xb0\xf6\x56\x66\x30\xe7\x02\xcd\ \x39\x04\x0d\xe1\xa3\xda\x68\x24\xbc\xc5\x24\x7e\x4f\x42\x1c\x88\ \xce\x48\x51\x38\x5a\x6c\xdf\x43\xdd\x77\x31\x31\x54\x44\x36\x6b\ \x61\x52\x95\x90\xcb\x66\x51\x9e\x9f\x47\xa5\xb2\x14\x35\xe4\xdd\ \x43\xb7\x41\xa2\x0c\x5f\x9d\xfd\x22\xf0\x24\x80\x02\x00\x3d\xb4\ \xf1\x6b\xa1\x93\x87\x03\x6f\x2b\xbe\x23\xe1\xe1\xd3\x64\x05\xa3\ \xc3\xc3\xc8\x64\x72\x28\x37\x6a\x41\x6e\x63\x82\xad\xb7\xac\x80\ \x56\xfb\x93\xa3\x38\x21\x08\x48\x0b\x30\x72\xe8\x1b\xe0\x5c\x44\ \x00\x48\x58\x0a\xe1\xbd\x54\x62\xf0\xfd\x74\x83\xcb\x30\x0d\x50\ \xca\x46\x4e\x3a\x00\xb8\x10\x79\xcd\xe8\x1f\x08\x8a\x53\xb7\xe1\ \x38\x50\x15\x19\x00\x41\x81\x52\xd4\xec\x46\x87\xdc\x26\xc9\xff\ \x52\x53\xc7\xdb\x39\xc1\x62\xad\x8a\x43\x33\x1c\x9b\x47\x8b\xc8\ \x65\x86\x70\x6c\x6e\x09\x9a\xaa\x62\xc0\x29\x60\x7e\x6e\x0e\xf5\ \x30\x8d\xec\xd6\x91\xbd\xd8\xa4\x6e\xc1\x67\xa6\xfe\x2f\xca\xd3\ \xc9\xd9\x47\x39\x29\x8f\x5b\x47\xf7\xe2\x8d\x03\x6f\x0e\x3a\x86\ \x31\x8c\x0e\x0d\x62\xd3\xc4\x38\x1c\x4f\xe0\xe8\xdc\x42\xb0\x92\ \x79\xca\xa8\xef\xdd\xe6\x94\x06\x23\x48\x0e\x91\x69\xd0\xfd\x0d\ \xd7\x89\xcd\x0c\x8e\x99\x8b\xa2\x25\x06\xba\x01\x20\x98\x23\x78\ \x0a\xac\x00\xee\xfb\x19\x3d\x52\x80\xba\x00\x40\xc4\xfc\xf7\x82\ \xc0\x0e\x5f\xd4\xd0\x54\x68\x42\x81\x5e\xd3\xd1\x38\x0e\x10\x90\ \x1e\xce\x97\x72\xa5\x81\xc7\xf7\x4f\x62\xb4\x98\xc5\x48\x31\x8b\ \xd2\x40\x06\xe5\x4a\x1d\xb9\xac\x89\x72\x79\x09\x73\x73\xb3\xf0\ \x5c\x17\xbf\x56\xbc\x0a\xaf\x1b\x78\x03\x7e\x59\xf9\x19\x0e\xd8\ \xcf\x03\x00\x36\x69\x5b\xf0\x32\xeb\x12\x68\x4c\x83\xae\xca\xc8\ \x67\x2c\x6c\x9a\x18\x83\xa2\xe9\x98\x9e\xaf\x60\x7e\xa9\x16\x82\ \x8f\xa4\x8a\xa1\x0e\xd0\x93\xde\xa2\x8c\x10\x40\x97\xd5\x20\x39\ \x86\x00\x4b\xb5\x7a\xa7\xee\xd3\xbc\x56\x00\x12\x23\x70\xbb\x04\ \x3b\x35\x4d\x07\x17\x27\x59\x07\x78\xd3\x9b\x76\x15\x5c\x57\x50\ \xdd\xe8\x27\x02\x5a\x1a\x6f\x53\xc5\x9b\x5b\x5c\x44\xc6\xd4\x01\ \x10\x8c\x0e\xe4\x71\xe0\xd8\x64\x8a\x1e\xd0\x72\xa7\x76\x28\x51\ \x29\x22\xa1\x79\xce\xf3\x7c\x1c\x9a\x5a\xc0\xd4\xdc\x12\x8a\x79\ \x13\x79\xcb\x40\x29\x67\xc2\x1d\x1c\x80\xed\x8c\x62\x66\x6e\x1e\ \xb3\xb3\xb3\x70\x5c\x15\xaf\xb7\x5e\x0f\x4a\x08\x28\x21\x60\x8c\ \x42\x91\x18\x0c\x5d\x43\xa1\x58\x00\x93\x35\x2c\x54\x1b\x58\x9c\ \x9e\x86\x10\x22\x30\x1c\xda\xdb\x42\x92\xca\x6b\x27\x30\x92\x5b\ \x9d\x90\xd8\x33\x74\x45\x09\x39\x21\x60\xbb\x6e\xa4\x0b\x91\x78\ \x9f\xc5\xc2\xc8\x8c\x31\x80\xa4\x47\x3a\x35\x43\x87\xef\xaf\x3c\ \x22\xb8\x22\x00\xd8\xb6\x5a\xa0\x54\xc0\x34\x8d\xbe\x46\x40\xb2\ \xef\x04\x66\xe6\xcb\xd8\x30\x5c\x80\x22\xcb\xc8\x9a\x1a\x72\x96\ \x89\xc5\x6a\x2d\x01\x1a\x92\x12\x51\x5e\x0e\x7b\x6d\x5e\xea\x78\ \x3e\x26\x67\x97\x30\x39\xbb\x04\x55\x91\x60\xaa\x0a\x34\x55\x46\ \xa1\x90\xc7\x50\xa9\x00\xd7\x75\xe0\x3a\x2e\x1c\xc7\x09\x3a\x9f\ \x50\x00\x0c\x9c\x50\x4c\xce\x37\xc0\x45\x3d\x1a\xdd\x69\x7b\x1b\ \xb6\x8b\x23\xb4\x91\xba\x13\xc8\xad\x0a\x46\x29\xf2\x56\x26\xba\ \x7f\xae\xbc\xd8\xee\x1e\xe8\xf0\x89\xb0\x30\xbb\x3a\xd5\x0a\x30\ \x74\x08\xce\xf5\x5d\xbb\x76\x29\xfb\xf6\xed\x73\x4e\x0a\x00\x28\ \xe5\x05\x80\x40\x33\xb4\x3e\x9b\x24\x8b\x24\xa2\x09\xe0\x0b\x8e\ \x83\xc7\xa6\xf1\x92\x4d\x63\x00\x80\x8d\x43\x45\x3c\x75\xc8\x0d\ \x52\xa5\x53\x3a\xac\x9f\x8c\xed\xa5\x1b\x10\x42\xe0\xb8\x3e\x1c\ \xb7\x0e\x52\xa9\xb7\x11\x2c\xfe\x00\x0e\xd2\x9c\xba\xdb\x16\xbf\ \x6f\x6f\x53\x87\x03\x0b\xa4\x07\x07\xeb\x14\x6b\x85\x4c\x26\xf2\ \xef\x57\x6b\x75\x34\x1c\xa7\xad\x8f\x44\xd2\x27\x02\x80\x31\xd2\ \x7d\xd9\x58\x33\xd0\xc3\xa6\xa7\xcd\x42\xe8\xc1\x58\x7b\x57\x30\ \x21\xb4\xc0\x24\xe6\xcb\xb2\xd2\x32\xf6\x53\x3e\x22\x66\x04\xc6\ \xc3\xa3\xd3\x73\x4b\x28\x57\x2a\x90\x24\x40\x55\x29\xce\x18\x2f\ \x82\x86\x2f\x19\x8f\xf9\x13\x12\x4b\x02\x0a\xd9\x6a\xf2\x77\xf3\ \x13\x5e\x9f\x70\xb5\xb6\x9c\xd0\xf1\xfc\x01\x12\x67\xc7\xcd\xfb\ \xe3\xf7\xc5\x5b\x4d\xda\xf2\x10\xd0\xfb\x39\x71\x6a\xa7\xfd\xfd\ \x9c\x69\xc0\xd0\x14\x50\x0a\x08\xf8\x98\x29\x2f\xc6\xfe\x5a\xd3\ \x84\x20\xc9\xb8\xa0\x40\x98\x1f\x91\xde\xc7\xcd\xa4\x5c\xc6\xdc\ \x15\xe9\x01\x2b\x02\x80\x10\x7c\x50\x55\x54\x2f\xde\x41\xdd\x3e\ \xe8\x42\xb8\x27\xf6\x4f\xc2\x71\x5d\x50\x0a\x64\x0c\x15\x5b\xc7\ \x07\xc1\x28\x8d\xe4\x72\x33\xef\x27\xfa\x4d\x82\x98\x01\x0d\x3c\ \xc9\xb1\xdf\xcd\x58\x42\xf0\x5c\x4a\x5a\xb1\x85\xe0\xde\x56\x77\ \x45\xcf\x69\xde\x4b\x5a\x7e\x79\x12\xbb\x2f\x78\x4e\x14\xa5\x88\ \xb5\xa1\xcb\x73\xda\xc0\x42\x63\x99\x41\xcd\x7b\xb2\x86\x8e\x42\ \xd6\x04\x63\x00\xa5\xc0\xe4\xec\x02\x3c\x9f\xb7\x01\x47\x24\x45\ \x4a\xf8\x3c\xc6\x68\xd7\xfe\x6d\x26\xe4\x70\xce\x07\x4f\x1a\x00\ \x08\xa1\x05\xdd\x34\x8e\x2b\x12\xd8\x9e\x29\xeb\x79\x3e\x1e\x7e\ \xfa\x30\x3c\x2f\x08\x85\xe6\x4c\x0d\x67\x8c\x95\x02\xb4\x93\xce\ \xb4\xb0\x48\x1e\x93\x38\xc1\x49\x2a\xf1\x08\x41\xa4\xb5\xc7\xaf\ \x89\xcb\xf5\x78\x6a\x59\x92\xd3\x90\xd0\x91\x43\xda\x46\x76\x2b\ \x40\x85\x76\x4e\x13\x7f\x56\x42\x27\x09\xfe\x65\x4d\x1d\xa5\x01\ \x0b\x94\x06\xc4\x9f\x9e\x2f\xa3\x56\x0f\xa6\x10\x25\xd6\xcd\xe8\ \x9c\x28\x19\x88\x80\x1e\x01\x21\x4a\x29\x14\x45\x71\x57\xea\x0e\ \x5e\x11\x00\xc2\x6d\xe2\x48\x0f\xee\x9f\xf8\x08\x92\x44\x78\x73\ \x2b\xb8\x4a\xdd\xc6\x83\x4f\x1f\x86\x1f\x7a\xed\x72\x96\x86\xed\ \x13\x83\xa1\x7f\x3c\x49\xdc\x44\xbe\x5d\x14\x85\x43\xc4\x52\xe2\ \xd7\x21\x06\x84\x38\xe1\x92\xc4\x6b\x7b\x56\x2c\x22\xd9\x09\x04\ \x12\x13\x15\x71\x20\x90\xa4\x49\xda\xf6\x3c\x10\xa0\x98\x37\x31\ \x38\x60\x45\xdc\x66\x7a\x7e\x09\xb3\xe5\x6a\x6c\x3b\x3c\xd1\xe6\ \x38\x13\x91\x13\xa8\x09\x24\xca\x68\xcf\xfe\x55\x0d\xd5\x5f\xe9\ \x14\xb1\x15\x72\x00\x51\x30\x4d\x53\x22\x58\xfe\x3f\x80\x80\x88\ \x58\x4d\x78\xbc\x54\x69\xe0\x81\x27\x0e\x45\xbb\x66\x1b\x9a\x82\ \x97\x6c\x1a\x44\xd6\x54\x63\x89\xc1\x22\x91\x05\x94\x10\x2f\x4d\ \x93\xab\x45\xfb\xa4\xcc\x27\xbd\x65\x7a\x87\x9e\x11\x11\xb3\xa5\ \x57\x24\xef\xef\xf6\xbc\x50\x7f\x08\x7f\x4b\x12\xc5\x58\x29\x87\ \xbc\xa5\x47\x9c\xef\xe8\x74\x19\x53\x73\x4b\x91\x78\x83\x20\x49\ \x65\x54\xb4\x94\xca\x38\x2e\x28\x82\x39\x82\xdd\xfa\xd6\xd0\x4d\ \xac\x74\x92\xe8\x0a\xad\x00\x36\x6c\x98\x86\xd4\x37\x10\x90\x1a\ \x1a\x11\x1d\xb6\xee\x52\xad\x81\x5f\x3e\xf1\x02\x5e\xba\x75\x0c\ \xa6\xa1\x42\x96\x18\xce\x18\x2b\x61\xb6\x5c\xc5\xb1\xb9\x25\x70\ \xce\x13\x8a\x52\x9a\xeb\x81\x10\xa4\xd8\xdd\xcb\x31\xdb\xfa\x59\ \x1e\xbd\xac\x0f\xa4\xfa\x00\x32\x86\x86\x62\xce\x8c\x62\xf9\x9c\ \x0b\xbc\x70\x6c\x1e\x8b\xd5\x46\x2c\x52\xd8\xe9\x42\x4e\xf4\x55\ \x22\x0a\x2a\xc0\x18\x81\xe7\x8b\x6e\xde\x40\x4a\xa9\x18\x3c\x89\ \x00\xa0\xc3\x46\x1f\x1f\x40\xef\x00\x51\xa7\x83\xc7\xb6\x5d\xdc\ \xff\xc4\x0b\xd8\xb2\xa1\x84\xf1\xa1\xc0\xaf\x51\xcc\x99\xc8\x59\ \x3a\x8e\xcd\x2d\x62\xa1\x52\x6f\x8b\x88\xa4\xd8\xdb\x6d\x44\xeb\ \x4a\xb0\x15\x03\xa1\xb7\xfd\xaf\x2a\x12\x4a\x39\x13\xaa\xd2\xea\ \xd6\x5a\xc3\xc1\xa1\xc9\x79\x38\xae\x97\x34\x25\xc3\x78\x6f\x7c\ \x12\x6c\xcb\x72\x20\x1d\x5b\xe6\xf6\x72\x07\x5b\x99\x8c\xcc\x3c\ \x7f\x7e\xcc\x00\x00\x0f\x46\x49\x44\x41\x54\x39\x39\x99\x1c\x80\ \x94\xfa\x7a\x01\xfb\x71\x02\x82\x8e\x11\xe0\x0b\x81\x67\x5f\x98\ \xc1\xdc\x62\x0d\xdb\x26\x06\xa1\xab\x32\x24\x46\x31\x3e\x98\xc7\ \x60\xde\xc2\x4c\xb9\x82\x72\xa5\x11\x66\xe4\x88\xd4\x0d\x18\x49\ \xb2\x87\x7b\x27\x67\xa4\xda\xef\x22\xa1\xc8\x75\x07\x42\xcc\x1b\ \xa7\xc8\x18\xc8\xea\xd0\x55\x25\xa6\xd0\x09\x1c\x9b\x5d\xc2\xf4\ \x42\x25\x7a\xe1\xb4\xbc\x86\x64\x10\x89\xa4\x70\x83\xa0\x2d\x8c\ \x51\xc0\x23\x5d\x02\x42\x1a\x91\x65\x3a\x7c\xd2\x00\xc0\x39\x8a\ \x4d\x07\xc4\x4a\x4b\x33\xf7\x0d\xb1\xc4\xd1\x26\x81\xe6\xcb\x35\ \xdc\xb7\x78\x10\x1b\x46\xf2\x98\x18\x1e\x08\x5c\xb5\xb2\x84\xb1\ \x52\x1e\x83\x79\x1f\x8b\x95\x06\xe6\xab\x75\xb8\xae\xd7\x47\x24\ \x20\x25\x1e\x9f\x1e\x57\x48\xa1\x79\x3a\x37\x08\x0f\x28\x21\xb0\ \x74\x15\x19\x53\x83\x2a\x27\xbb\x71\x61\xa9\x8e\xc9\x99\x32\x1c\ \xcf\x8f\x79\xf8\xda\x92\x5b\x44\x72\xde\x4c\x33\x03\x48\x80\x44\ \x7d\x21\x62\x39\x11\xb4\xd7\xfc\x00\xc3\x00\x59\x61\x48\x78\x85\ \x00\xf0\xf3\x86\xa1\xaf\x94\x01\xa4\xfa\xc7\x93\x3e\xf6\x40\x17\ \x7e\x61\x72\x1e\x93\x33\x8b\x18\x1f\xca\x61\x74\x30\x0f\x89\x51\ \xc8\x12\x43\x31\x6f\xa2\x98\x37\x51\xb7\x5d\x54\xea\x36\x2a\x35\ \x1b\xae\xe7\xf7\xe0\x06\xe8\xc2\x0d\x8e\x4f\x34\x50\x42\x60\x68\ \x0a\x0c\x5d\x81\xae\xca\xe1\x4c\xe7\x16\x11\x17\x2b\x75\x1c\x9b\ \x5b\x42\x23\x9c\xa6\xd6\x8d\xf3\x90\x76\x0e\x45\x3a\x81\xdb\x7e\ \x2f\x63\xa4\x6b\x7f\xeb\x86\x0e\x88\x93\xa4\x03\x5c\x79\xe5\x95\ \xaa\x6d\x73\x55\x37\x4c\x00\xab\x43\x40\x72\xe4\xc7\xd6\x12\x8c\ \x99\x5c\xae\xc7\x71\xe0\xe8\x3c\x0e\x4f\x95\x31\x58\xc8\x60\xa4\ \x98\x81\xa9\x07\x2b\xa3\xe9\xaa\x0c\x5d\x95\x31\x98\xb7\xe0\x7a\ \x3e\x1a\xb6\x8b\xba\xed\xc2\x76\x3d\x38\x9e\x1f\xad\xb7\xbf\x1c\ \x20\xa4\x45\x1a\x25\x89\x41\x95\x19\x34\x45\x86\xa6\x48\x50\xe4\ \xce\xee\xf2\x7c\x8e\xb9\x72\x15\x73\xe5\x1a\x6c\xd7\x4b\xfc\xbd\ \x28\xc7\x49\xb4\xe7\x31\xa4\x25\x52\x91\x04\x67\x68\xbf\x37\x58\ \x29\x24\xbd\xbf\x4d\xcb\x5c\xf1\x2e\x62\xc7\x0d\x80\x4a\xa5\x58\ \x90\x65\x11\xec\xe5\xdb\x87\xfe\x95\xa5\x0a\xa6\x27\x8f\x41\x37\ \x2c\x0c\x8f\x0d\x82\xa4\x2c\x77\xb2\x9c\x44\x10\x01\xc0\xe3\x1c\ \x47\x67\xca\x38\x3a\x53\x86\x65\x68\x18\x1c\x30\x51\xcc\x99\x51\ \x86\x91\x2c\x31\xc8\x12\x43\xc6\x6c\xcd\x54\xf2\x3c\x1f\x8e\xcf\ \xc3\x65\xe0\x39\x7c\x2e\xa2\x84\x0e\xce\x79\xa8\xa5\x13\x30\x1a\ \xd8\xf5\x12\x63\x60\x8c\x40\xa2\x0c\xb2\x44\x53\x75\x0c\x20\x58\ \xf0\x7a\xb1\xd2\xc0\xc2\x52\x1d\x8b\xd5\x46\x22\x01\x24\xfd\x3d\ \xda\x75\x1f\x91\x90\xf7\x71\x7b\xa0\x61\x37\xf0\xc2\x81\xc3\x60\ \x8c\x62\xc3\xc6\x31\x68\xaa\x16\xfa\x02\xba\xc7\x03\xc2\x88\x60\ \xe6\xa4\x00\x80\x31\x52\x04\x04\xf4\x1e\xe9\x60\xae\xeb\xe2\xc1\ \x5f\x3c\x80\x33\xb7\x8e\xe3\xd5\x97\x9c\x8d\xf9\xf2\x12\x1e\x7c\ \xe8\x31\xe8\x66\x16\x13\x5b\x36\x76\x55\x0a\x12\x8e\x1a\xd1\x45\ \x2e\x03\xa8\xd6\x1a\xa8\xd6\x6d\x1c\x38\x32\x07\x43\x53\x90\xcb\ \xe8\xc8\x9a\x1a\xb2\x86\x06\x59\x6e\xe5\x7a\x49\x12\x83\x24\x31\ \xac\x76\x76\x08\xe7\x02\xd5\x86\x83\x6a\x2d\x10\x37\x95\xba\x9d\ \xa2\x6f\xb4\x04\x37\x49\xc9\x61\x6c\xd7\x4d\x49\x8a\x32\xf9\x93\ \x7b\x7f\x0a\xc3\xd0\x70\xee\x39\x67\x42\x08\x81\x47\x1e\x7d\x02\ \x9e\x0f\x5c\x74\xf1\xf9\x60\xa4\x7b\xfa\xa5\x11\xec\x23\x28\x5d\ \x76\xd9\x2e\xeb\xae\xbb\xf6\x55\xd6\x14\x00\x92\x24\x4a\x9c\x93\ \x20\x0a\xd5\xa5\x45\xbf\xf8\xc9\xcf\x71\xde\xf9\x3b\x20\x4b\x0c\ \x07\x0e\x1f\xc3\x62\x79\x09\xe0\x1c\x47\x0f\xbd\x80\xd2\xe8\x60\ \xf7\xe9\x64\x24\x3e\x8d\xa2\xc9\x0a\xbb\x8d\xae\x20\x73\xa6\x66\ \x3b\xa8\xd9\x0e\x8e\xce\x94\x41\x08\xa0\xca\x52\x20\xa7\x35\x05\ \xba\xaa\x40\x96\x29\x14\x49\x82\x22\xb3\x9e\x2b\x70\x73\xce\xe1\ \xb8\x3e\x3c\x9f\xc3\x71\x3d\xd8\xae\x87\xba\xed\xa2\xe1\xb8\x68\ \x38\x5e\x07\xe1\x90\xaa\xc9\x27\x79\xbd\x48\xc9\x19\x40\xcc\xb6\ \x27\x31\x7f\xc8\x7d\x3f\x7b\x00\xa6\x65\xa2\x54\x1a\xc0\xd1\xa9\ \x39\xd8\xb6\x8b\xca\x52\x05\xb6\xed\xe2\xb1\x47\x9e\xc0\x8e\xb3\ \xcf\xec\x11\x11\x0c\x02\x42\x8a\xa2\x0d\x22\x98\xb8\xbe\x76\x00\ \xf0\x7d\x5e\xd0\x74\xd5\xa1\x84\x2a\xdd\xaf\xf1\x71\xf0\xf0\x34\ \x2a\x8b\x8b\x90\x69\x30\xf3\x97\xe9\x06\x4c\xc2\x70\xe4\xc0\x61\ \x6c\xdb\xb1\xbd\x57\xf4\x38\xa1\x0f\x90\x78\xd8\xb5\xbd\x1f\xdb\ \xcc\x2b\x08\x84\xe1\xdf\x06\x16\x96\x1a\x5d\x33\x72\xa4\xd0\xb5\ \x4a\xc2\xd1\x2d\xba\x58\x0f\x1d\xb9\x07\xb1\xa9\x4c\xa4\x4f\x7b\ \x03\x3c\x90\xbe\xf7\x37\xff\xc8\xc2\xc2\x22\x14\xcb\xc4\xb1\xe9\ \xe7\xe0\xbb\x36\x74\x55\x85\x95\xcf\x43\x48\x0e\xa6\xa6\x66\xb0\ \xf3\x9c\x1d\xe8\xc6\x03\x9a\x4b\xf5\xba\xae\x5f\x00\xf0\xfc\x9a\ \x02\x80\x10\x5a\x50\x35\xdd\xef\x25\xff\x33\x96\x05\x4b\x62\xd8\ \x72\xd6\x76\x30\xa6\x04\x63\x98\x00\xfb\xf7\x1f\xc4\xe8\xc4\x58\ \x4f\xdd\x21\xee\x25\x6b\xf7\x91\x93\x36\xee\x10\x1b\x4b\x6d\xc9\ \xa5\x9d\x79\x08\xf1\x27\x7a\x82\x27\x5c\xad\xe8\xb8\xbf\x2d\x2e\ \xdf\xc6\x79\xe2\xcf\x4e\x6d\x6f\x4a\x9b\xdb\x50\xdb\xc1\x0d\xf2\ \xf9\x2c\xb8\xef\x62\x74\xc3\x08\xcc\x6c\x0e\x22\x5c\x56\xbe\x5e\ \xad\xc3\xf5\xea\x81\x22\xc8\x48\xea\x46\x52\x8a\xa6\x80\x32\xc6\ \x05\xe7\xc7\xed\x0c\x5a\x41\x2c\x80\x17\x8d\x3e\x3e\x80\xb3\xcf\ \x3f\x1b\x1e\x27\x28\x0e\x0c\x62\xf3\xc6\x8d\xd8\x34\x3e\x86\xda\ \x52\x15\xd9\xc2\x00\x4c\x6b\x19\x0b\x4b\xb7\x47\x0f\x53\x56\xdc\ \xea\x9c\x47\xdb\xfe\x4b\x74\x9c\x8e\x2f\x3a\xd5\x7e\x87\x10\x69\ \xc1\x4b\x91\xbe\x92\x9b\xe8\xd3\xde\x94\xbf\x29\x44\xf7\xbf\x07\ \x00\x17\x5c\x7c\x1e\x54\xd5\xc0\x40\xbe\x80\xcd\xe3\x1b\x70\xc6\ \xc6\x09\x30\x0e\xd8\x8d\x1a\x76\x9e\x73\x56\x34\x8f\xa0\x5b\xd1\ \x34\xd5\x5d\xc9\xfc\x80\x15\xf8\x01\x68\xc9\xb2\x32\x94\xf4\x70\ \x02\x28\x9a\x86\x33\x76\x6e\xc7\x62\xa3\x8a\xca\xb1\x2a\xb8\x10\ \xc8\x0e\x97\x90\x67\xf4\x38\xb9\x4d\xba\x6f\xbf\x57\x06\x50\x5f\ \x67\x50\x8f\x7c\xfe\xf8\x33\xba\x66\xfe\x90\xde\x71\x00\x82\x36\ \x36\xdf\xfe\x37\xbb\xa4\x90\x11\x42\x70\xee\x85\xe7\xc0\xb5\x1d\ \xcc\x2f\xce\x41\x00\x28\x8d\x16\x30\xba\x69\x38\xba\x98\x31\x1a\ \x45\x4e\x3b\x7d\x01\x1a\xaf\x55\xeb\x83\x6b\x0e\x00\x42\x44\xc1\ \xb4\x4c\x65\x39\x1e\x00\x39\x9c\x03\xc0\xb0\xc2\xd2\xc5\x32\x88\ \xcf\xae\x49\xea\x04\xa2\x43\x27\x20\xed\x0e\x1f\x81\x64\x62\x69\ \xca\x33\x12\x40\x8a\x67\x36\xb7\xc9\x92\xf8\xcc\x25\xd2\xa5\xdd\ \x49\x59\x2f\x12\x7a\x41\xda\x33\x14\x55\x81\xa2\x2a\x09\xdd\x22\ \x5a\x5e\x86\xf6\xb0\x04\x0c\x93\xcc\x91\xb9\xb5\xe7\x00\x94\xb2\ \x61\xc3\xea\x33\x25\xec\x44\x96\x76\xcb\xa0\x4f\xe4\x2c\x6d\x1a\ \x76\x5a\x04\xb2\x7d\xc2\x49\x7b\xf4\x2d\x8d\xc3\xb5\xd1\xae\xc3\ \x57\x41\x7a\x68\xf9\x69\x3e\x82\x76\x84\x88\x94\xb8\x44\xbc\xdd\ \x94\x76\xf7\x05\x58\x59\x4b\x12\xe2\x24\x88\x00\xc2\xd8\xb0\x61\ \x18\x38\x69\x08\x10\x29\xa1\xde\x8e\x51\x4b\x3a\xac\x83\xae\x7e\ \xfc\xb6\x51\xd5\xeb\x19\x20\x6d\x49\x9f\x31\x04\x92\x54\x7d\x8e\ \x74\xe8\x7b\x89\x91\x2c\x52\x22\x8b\x29\x96\x4d\x3a\x07\x22\x60\ \x61\x4e\x40\x7a\x40\xc8\x90\x28\x65\xa5\xb5\x07\x00\x44\xc9\xb4\ \x8c\x0e\xd9\x19\x2c\x6c\xbc\x76\xa0\xe8\x15\xef\xef\x15\xa2\x4d\ \x97\xd1\x9d\x7a\x41\x9b\xf1\xd7\x37\xdd\x9b\xb4\x29\x1a\xbd\xb2\ \x85\x3b\x1d\x5a\x29\xcf\x22\xe9\x6e\xea\x78\x8d\x2c\x53\xc8\x2e\ \x05\x8f\x79\x34\x63\x00\x00\x93\xd8\xf8\x9a\x03\x80\xfb\x3c\xaf\ \x87\x73\x02\xf3\x96\x8e\x91\x62\x16\x59\x53\xeb\xbb\xc9\xd1\xe9\ \x72\x62\x8b\xeb\xf9\x28\x57\x1a\x38\x3a\x5b\xc6\x52\xcd\x86\x61\ \x1a\x80\x20\x6b\xcf\x01\x38\xe7\x19\xd3\x34\xb0\x6d\x43\x09\x43\ \x03\x99\xd3\x94\x38\x45\x45\x96\x18\x4a\x79\x13\xa5\xbc\x89\xc3\ \x53\x0b\xf8\x65\x90\x1e\xbe\xb6\x3a\x40\xb0\x1c\x99\xcb\xb6\x6d\ \x1a\x89\x88\x3f\x3d\xbb\x80\xc3\x93\x33\xa8\xd6\xea\x1d\x6c\xe9\ \x74\x59\x9b\x42\x29\x45\xc6\xd0\x31\x31\x3e\x8c\x81\x9c\x85\xf1\ \xa1\x3c\x26\xc6\x4a\x10\xc2\xcf\xad\x29\x00\x28\x15\x45\x42\x28\ \xce\xd8\x38\x8a\xb9\x85\x45\xdc\x79\xcf\x7d\x38\x74\x74\xfa\x34\ \x45\x4e\x61\xd9\xba\x69\x0c\x97\xbf\xfa\x42\x6c\x99\x18\x06\xe7\ \xc2\x5c\x53\x00\x10\x42\x0a\x24\x0c\xc0\x7c\xeb\xdb\x77\xc3\x76\ \xdc\xd3\x14\x38\xc5\xe5\xd9\x03\x47\x30\x39\x3d\x87\x57\xbf\x6c\ \x27\xc8\x0a\x94\xf0\xe3\x02\x80\x2c\xfb\x05\x49\x52\xf0\x83\x7b\ \xef\x07\xe7\x22\x58\xe0\xe0\x74\x39\xe5\xc5\x71\x3c\xfc\xec\x81\ \x27\xfb\xae\x28\x76\x02\x38\x80\x5c\xd2\x0d\x13\x0d\xdb\x85\x94\ \x42\xfc\x03\xcf\x3e\x8d\xc9\x43\x87\xa3\x49\x12\x24\x66\xf2\x90\ \xf8\x52\x69\x31\x9f\x76\x90\xea\x16\x9b\xa9\x43\xda\x16\x8d\x8c\ \x66\x08\x35\xed\x2b\x9a\xea\x7a\x4d\x4e\x04\x41\x72\xa6\x10\x48\ \x6b\x11\xa9\x94\x48\x7c\xa7\x3b\xb8\xcd\x83\x40\x3a\x8d\x61\xd2\ \xe9\xcd\x89\x2e\x93\x15\x86\xd2\xf0\x08\x24\xdd\x3a\x69\x20\xa8\ \x39\x5e\x6a\xc2\xcd\x09\x06\x80\x28\x6a\x9a\xda\x75\xe4\xcf\x1e\ \x9b\xc2\x81\xe7\x9e\x8e\x88\x49\x69\x7c\x6a\x16\x8d\x08\xd4\xac\ \x0f\x9e\x19\x64\xde\xc4\xeb\x9a\x93\x21\x29\x8d\x5f\x13\x89\xa1\ \x36\x22\xc4\xa7\x84\x25\x9f\x1b\x3c\x47\xc0\xf7\xfd\xf0\xf9\x14\ \xb2\x2c\x47\xd7\x3b\x31\x11\x16\xdf\xcf\xc7\xf3\x7c\xf8\xbe\x1f\ \xcc\xf3\xa3\x34\x04\x3b\x01\xe7\x3c\x5a\x84\x0a\x00\x14\x45\x8d\ \xbc\x35\x8e\xe3\x44\xed\x33\x4c\x15\xa3\xa3\x83\xa9\x83\x64\x2d\ \x8b\xa6\xab\x62\x4d\x01\x40\x29\x2b\x28\xaa\xdc\x15\x00\xa5\xc1\ \x21\x1c\x78\xee\x99\x60\x25\xd0\xd4\x0f\x89\x8e\x9b\x04\x6a\xff\ \x74\xab\x8f\x67\xc5\xa6\xcd\xf5\x6b\xdd\x1f\x1c\x33\xc6\x40\x29\ \xc5\xfc\xfc\x2c\xee\xba\xeb\xbb\x21\x40\x28\xde\xfc\xe6\x6b\x91\ \xcf\x0f\x00\x00\xbe\xf2\x95\x7f\x84\xeb\x06\x84\xbb\xf8\xe2\x57\ \x61\xfb\xf6\x1d\x00\x80\x7b\xef\xfd\x21\x9e\x7f\xfe\x19\x00\xc0\ \xf8\xf8\x46\xbc\xee\x75\x6f\x02\x00\xec\xdf\xff\x2c\x7e\xfc\xe3\ \x7b\xa3\x76\x5c\x7f\xfd\xad\xc1\xe8\xab\x55\xf0\xb5\xaf\x7d\x31\ \xaa\xbf\xf9\x96\x5b\x30\x34\x3c\x88\xa5\x06\x3d\xd9\x00\xc0\x1a\ \x03\x40\x64\x54\x4d\x85\x24\xa7\xdf\x36\x38\x3c\x8c\x5c\x6e\x20\ \xec\x54\xd1\x46\xd0\x20\xdf\x2e\x49\x68\x16\x12\xab\x13\x00\x4d\ \x02\x36\x41\xd3\x64\x6f\xdd\x26\x7b\xc6\x01\xd0\xbc\x97\x31\x86\ \x46\xa3\x0e\x5d\x37\xa2\x6b\x0c\xc3\x80\x61\x04\xca\xb2\x69\x1a\ \x70\x1c\x39\x3c\x36\xa3\x7a\x5d\x6f\x5d\x63\x18\x66\xec\xd8\x48\ \xec\x93\xdc\xac\x17\x42\x40\xd7\x5b\xf5\xa6\x65\x42\x55\x55\xd4\ \xfd\x93\x6b\x16\x6b\xea\x1a\x03\x40\x08\x7a\xb4\x51\xb3\x85\x2c\ \x49\xa9\xda\x46\x36\x97\x43\xa9\x34\x12\xec\x8f\x27\x38\x3c\xcf\ \x85\xeb\xba\xf0\x3c\x37\x04\x04\x89\x88\xde\x02\x05\x4d\xfc\x6e\ \x1e\x27\x01\xc0\x22\x0e\x10\xd7\x15\x9a\xe2\x22\x0e\x80\xf8\xfd\ \x8c\x31\xd8\x76\x03\xa6\x69\x45\xd7\x98\xa6\x05\xd3\xb4\x42\xa2\ \x67\x20\xcb\x4e\x48\xcc\x56\xbd\x65\x65\x62\xc7\xc9\xeb\x33\x99\ \x96\xf3\xab\x59\xdf\xbc\xae\x59\x32\x99\x0c\x34\x4d\x83\x7c\x92\ \xad\x24\xdb\x76\xd7\x5a\x04\xd0\xfd\xd5\xea\x52\x57\x11\xa0\xeb\ \x1a\x24\xc9\x05\xc0\xc0\x98\x0c\x55\xd5\x42\x22\x33\x10\x42\xc0\ \xb9\x07\xce\x7d\x70\xee\xc3\xf3\xfc\x70\xee\x3b\x6b\x03\x03\xeb\ \x00\x47\x30\x3f\x9e\x45\x0a\x5a\xa7\xac\xef\x04\x80\x24\x49\x1d\ \x00\x60\x8c\xc1\x30\x2c\x18\x46\x8b\xa0\x8a\xe2\x44\x04\x6c\xd6\ \x5b\x56\x06\x99\x4c\x36\x22\x72\xab\xde\x8a\xea\x9b\xa0\x69\x01\ \xa0\x05\x8c\x8c\x95\x81\xa6\x6a\x90\xa5\xe3\xa3\xc7\xf4\xd4\x24\ \x1e\x7b\xe4\x41\x08\xc1\x71\xe6\x8e\x73\x30\x36\x3e\xb1\xec\x7b\ \x7d\x9f\xa3\x51\xaf\xd3\x35\x05\x00\x21\xe4\xa0\x63\xbb\x44\x88\ \x60\x03\xa4\xf6\x62\x65\x2c\x48\x12\x87\x2c\x07\x5b\x66\xc7\x76\ \x49\x0f\xd7\xc5\xd5\xa2\x91\x49\x29\x0b\x89\x28\x20\x84\x80\x10\ \x3c\xda\x5e\x2d\x0e\x80\x16\x87\x60\x6d\xf2\xbf\xa9\x30\x76\x1f\ \xfd\x92\x24\xc1\x71\x6c\x58\x56\x36\x02\x52\x30\xa2\xcd\x68\xa4\ \xba\xe1\xf2\x5b\x01\x67\x30\x63\x23\x3d\x1b\x5e\x93\x4b\x5c\x1f\ \xec\xea\x85\x48\x6c\x84\xca\x31\x32\x99\x5c\xac\x1f\x02\x0e\x10\ \x0c\x86\xe5\x70\x56\x81\x7f\xff\xd6\x3e\x7c\xfb\xe9\x7d\xa8\x6d\ \xaa\x41\x92\x24\xc8\x5f\x95\xf1\xfa\x0d\x57\xe3\x37\x77\xdd\xb0\ \x2c\xfb\xbe\x5a\x29\xaf\x88\x6b\x1c\xa7\x1f\x40\x7e\xde\xf7\x3d\ \x34\xaa\x0d\x18\x25\xbd\xcb\xe3\x02\xcd\x5b\x55\x01\x59\x26\xf0\ \x7d\x0a\xd7\x25\x5d\x5d\x9a\x4d\x62\xb5\x03\xa3\x35\xd2\x5b\xe6\ \x1d\xe7\x22\x71\xae\x05\x96\xb8\x08\x21\x11\xf1\x19\x93\xe0\xba\ \x0e\xb2\xd9\x5c\xc8\x45\x28\x4c\xb3\xc5\xde\x73\xb9\x81\x48\x7b\ \xb7\xac\x6c\x54\x9f\xcd\x66\x91\xcd\xe6\x63\x00\xb0\xa2\x6b\x06\ \x06\x06\x3a\x44\x00\x21\x24\x01\x80\x8c\x95\x81\xa4\xa8\x90\xa5\ \xe5\xed\x70\xfa\xe0\x2f\x7f\x82\xbb\xf0\x6f\xd8\x7d\xc7\x6e\x5c\ \x3b\x71\x2d\x54\xaa\xe2\xce\x63\x77\xe2\xb3\x7f\xfd\x59\x6c\xfe\ \xf9\x16\x5c\xf2\xca\xcb\xfb\x3e\xa3\x51\xab\x83\x52\xe6\xaf\x29\ \x00\xf6\xed\xfb\xab\xe9\x5d\xbb\x6e\x73\xeb\xb5\x9a\x2c\x4b\xe9\ \xd9\x47\x4c\x92\x10\x5f\x1b\x47\xd7\x29\x72\x39\x05\x9e\x47\x51\ \xaf\x73\x2c\x27\x5c\x90\x04\x06\x8d\x80\x91\x32\x76\x22\x13\x33\ \x6e\x69\x04\xf7\x49\xe1\x96\x2c\x01\x00\x9a\xcf\x8c\x2b\x75\x99\ \x4c\x2e\xd4\x4f\x02\x16\xde\xac\xb7\xac\x6c\x34\xd2\x33\x99\x4c\ \xec\xfa\x4c\x02\x00\xcd\xfa\x00\x4c\xf9\x84\x0e\x20\x9a\xeb\x00\ \x2f\x63\xf4\x1f\x98\x7e\x0c\xe3\x6f\x1b\x47\x29\x57\xc2\xdd\x8b\ \x77\x07\xa6\xa8\xe2\x61\xe0\x37\x06\xf0\xf4\xd7\x1f\xc4\xcb\xc9\ \x15\x7d\x37\x91\xac\xd7\xea\x90\x15\x69\x7a\x4d\x01\x00\x00\x8a\ \xaa\x1e\xab\x55\xeb\x1b\x9a\xcb\xa3\x77\x00\x80\xc9\x10\xdc\x69\ \x17\x1d\x30\x0c\x09\xb9\x9c\x0c\xcf\x23\xa8\x54\x5c\x78\x2b\xdc\ \xe0\xab\xdd\x0a\x68\x67\xfd\xcd\x6f\x49\x0a\x00\xe0\xba\x3a\x32\ \x99\x6c\xa4\x8b\xe8\xba\x01\x35\x9c\x6d\x93\xc9\x64\xe1\x85\x0d\ \x31\x0c\x33\xaa\x0f\x44\x40\x2e\x3a\x6e\xd6\x1b\x86\x99\x00\x40\ \xb3\x9e\x73\x1e\x71\x8c\xa6\x15\xe1\x71\xa0\x5b\x1f\xc5\x8b\xeb\ \xda\x98\x2f\xcd\x61\xc6\x9a\xc1\x37\xe7\xbf\x09\x08\x60\xd2\x9e\ \xc4\xfe\xca\x7e\x38\xdc\xc1\xc0\xf0\x00\x20\x7c\x48\x92\xd6\x47\ \x04\xd4\xc0\x28\x7d\x7a\xcd\x01\x20\x38\x9e\xaa\xd7\xaa\x1b\xba\ \xa1\x5b\x51\x14\xd8\x0d\xa7\x2b\xf1\x4c\x53\x41\x2e\xa7\xc3\xb6\ \x39\xea\x75\x0f\xb6\xbd\xb6\xa6\x12\xa5\x0c\xba\x6e\x86\x9c\x44\ \x4a\xb8\x4b\x0d\xc3\x8c\x00\x10\x77\xda\xa8\xaa\x0a\x5d\x37\xa2\ \xe3\x96\xb3\x48\x4a\x98\x81\x71\x8e\xd5\xbc\xbe\xa9\x97\x30\x90\ \x65\x71\x00\x59\x62\x38\x67\xfc\x1c\xfc\xf3\xd2\x3f\x07\x13\x98\ \x9a\xdd\x21\x03\xf0\x81\xad\x43\x5b\x43\x25\xb6\x37\x07\xa8\x55\ \xab\x70\x5d\xef\x89\x35\x07\x00\xe7\xde\x93\x95\x4a\xe5\xf2\x6e\ \x2f\xa7\xaa\x1a\xec\x46\xbf\xc9\x29\x04\x9a\x26\x41\xd7\x03\xaf\ \x9c\xeb\x02\x9e\xd7\xfa\x9c\x58\x00\x10\x68\x9a\x1e\x71\x85\xb8\ \xbb\x54\xd3\xf4\xc8\xb3\x17\x1f\xad\x8a\xa2\xc0\x30\xa2\xd9\x36\ \x7d\x01\x00\x90\x84\x38\xa0\x84\x42\x50\x2c\x3b\x56\x72\xed\x45\ \xbb\xf1\xe3\x87\x7f\x8c\xd9\x9d\xb3\x49\xb3\xfa\x89\x2c\x6e\xba\ \xf4\xdd\x68\xd4\xfa\xdb\xf7\x4b\x8b\x8b\x9c\x52\xba\x7f\xcd\x01\ \x00\x88\x87\x8e\x1e\x3e\xca\x25\x89\xa5\xa6\x86\xe7\x72\x79\x48\ \x8c\x43\x51\x14\x28\x8a\x04\x49\x92\xa1\x28\x2a\x24\x49\x82\xa2\ \xc8\x90\x65\x19\x8c\x49\xad\xe5\xd8\x3a\x4c\x3e\x09\x42\x50\x08\ \x41\x20\x04\x05\x40\xe1\xba\x3e\x7c\x5f\xac\xc8\x0a\x90\x24\x82\ \xd1\xd1\x91\xc8\x34\x34\x0c\x15\x8a\x12\x8c\xa6\xe1\xe1\x21\x70\ \xee\x87\xe2\xc0\x8c\xea\x0b\x85\x3c\x64\x99\x86\x5c\x22\x13\xd5\ \x5b\x96\x01\x60\x28\x06\x14\x16\xb6\x41\xc1\xc8\xc8\x70\x4c\x59\ \x96\x40\xb8\x08\x76\x03\x59\x96\x15\x20\xe1\x93\xaf\xfa\x14\xfe\ \xe5\xf1\xaf\x81\x59\x81\x12\xec\x56\x5c\xbc\xf9\xe2\xab\x20\xd5\ \x07\xe0\xcb\x6e\x9f\xfb\x39\xe6\xe6\xe6\x41\x08\x79\x6c\xcd\x01\ \x20\x49\xe4\x87\xf5\x7a\x83\xce\xcd\xce\x61\x78\xa4\x73\x51\x8a\ \xf3\xce\x3b\x07\xff\xed\x35\x97\xac\xb3\x78\xd9\xce\xd4\xda\x1d\ \x3b\x86\x8e\xab\x3e\x28\x5b\x52\x6b\xcf\x39\x67\x2c\x69\xd3\xcf\ \x54\x96\x1d\x0b\xf0\x39\x40\x97\x32\xb8\xe5\xfc\xbd\xf0\x50\x07\ \xe7\x3e\x54\x66\x61\x7a\xa6\x02\xc7\xf3\xfb\x3e\xe7\xe0\x81\x17\ \xe0\x7b\x3e\x91\x24\xe9\xc7\xc7\xad\x53\xad\xa4\x3b\x6f\xba\xe9\ \xc3\x3f\x3f\xfb\xa5\x3b\x2f\xbc\xea\xea\x5f\xef\xb8\xdf\xf3\x5c\ \xb8\xb6\x1d\xb0\xda\xb6\x00\x0e\x21\x24\x3d\xda\x86\xf6\xcd\x91\ \x48\x87\xb9\xd7\xab\xc9\x84\xa4\xbf\x56\x5a\x6e\xfd\x49\x29\x04\ \xe0\x82\x44\x7e\x8d\xb5\x2e\x5f\xf9\xf2\x57\xc5\xb3\xcf\x3c\x7f\ \xe7\xe7\xfe\xe1\xcf\xde\x78\x12\x44\x00\xe0\xfb\xde\x87\x1f\x7a\ \xe0\xe1\xef\x9f\x7f\xde\xb9\xd8\x72\xc6\xe6\x36\xa5\x46\x82\xae\ \xe9\xf8\x55\x2f\x27\x2b\x0c\xf4\xf8\xe3\x4f\xe2\x99\xa7\x9e\x01\ \xc0\xff\x60\x85\x58\x5d\x59\xb9\xe9\xa6\xff\xf9\xa7\x92\x24\x7d\ \xe8\xba\x77\xfc\x96\xb4\x6d\xeb\x56\x9c\x2e\x27\xbf\x3c\xfa\xe8\ \x63\xf8\x7f\x5f\xf9\x9a\xef\xfb\xe2\x7f\x7f\xee\x73\x7f\xfe\x87\ \x6b\xee\x09\x8c\x97\x4d\x9b\xcc\x8f\xed\xdf\xdf\x20\xff\xf4\x0f\ \x5f\xfa\x1f\xdb\x5f\xb2\x55\xec\xdc\xb9\x83\xe6\x72\xd9\x35\x9d\ \x1b\x70\xba\x00\x1e\x17\x28\xcf\x97\xf1\xc8\x23\x8f\x7a\xcf\x3f\ \x77\x80\x11\x42\x3e\xf1\xb9\xcf\xfd\xd9\xed\xab\x90\x56\xab\x2b\ \x37\xdf\xfc\xe1\x8b\x28\x95\x3e\x48\x08\xde\xe0\xfb\x7e\x01\xab\ \x98\x0a\x78\xba\x2c\xcb\x11\xe6\x33\x26\x4d\xfb\xbe\xf7\xef\x42\ \x88\xbf\xfc\xfb\xbf\xff\xd3\x07\x57\xf3\xbc\xff\x0f\xcf\x27\x46\ \xd9\xd3\x2d\x23\xba\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x0f\xb2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2a\x1c\x1b\xb4\x2e\xb3\x00\x00\x0f\x32\x49\x44\x41\x54\x68\ \xde\xed\x9a\x7f\x70\x5c\xd5\x75\xc7\xbf\xe7\xbe\x5f\xda\xb7\x3f\ \xa4\xd5\xae\x56\x3f\x76\x25\x63\xcb\x92\xdd\x40\x62\x3b\x76\x41\ \xc4\xc1\x71\x09\xc4\x18\xf3\xab\x4c\x03\x71\x69\x86\xf0\x4f\xfb\ \x4f\x86\xce\x24\x63\x87\xbf\x1a\x4d\xe8\xb8\x01\x63\x86\x99\x34\ \x65\x92\x69\x26\x43\xa7\x69\x49\x18\x17\x18\x12\x1b\x63\x07\xe4\ \x10\x5a\xc6\x41\xd4\xc5\xf8\x07\xd8\x2b\x59\x5a\xcb\x92\x56\xda\ \xdf\xab\xdd\xf7\xeb\xde\xd3\x3f\x6c\x53\xe2\xda\x40\xb0\x92\xb4\ \x33\xb9\xb3\x67\xde\xdd\x3b\xef\xde\x39\x9f\x7b\xee\xbb\xe7\xdc\ \xf3\x1e\xf0\x87\xf2\xfb\x2d\xf4\x71\x3a\x31\x33\xed\xda\xb5\xeb\ \xd3\x52\xca\xdb\x89\x68\x15\x80\x5e\x00\x31\x00\x35\x00\xf3\xcc\ \x7c\x8c\x99\x5f\x74\x1c\xe7\x95\xe1\xe1\x61\xef\xff\x0c\xc0\xce\ \x9d\x3b\x53\xcc\xfc\x75\x5d\xd7\xef\xbb\xe6\x9a\x6b\xd2\x03\x03\ \x03\x68\x6d\x6d\x85\x65\x59\xd0\x75\x1d\xbe\xef\xc3\x75\x5d\x94\ \xcb\x65\xbc\xf3\xce\x3b\x38\x71\xe2\x44\x55\x4a\xf9\x3c\x80\xc7\ \xb6\x6d\xdb\xf6\xd6\xef\x0d\x60\x78\x78\x38\x12\x0e\x87\xbf\xde\ \xd6\xd6\xf6\xd0\x17\xbe\xf0\x85\x96\x74\x3a\x0d\xcf\xf3\xd0\x68\ \x34\xe0\xfb\x3e\xa4\x94\x90\x52\x42\xd3\x34\xe8\xba\x0e\xcb\xb2\ \x60\xdb\x36\x88\x08\xb9\x5c\x0e\x07\x0e\x1c\x40\xb5\x5a\x7d\x4a\ \x4a\xf9\x37\x0f\x3d\xf4\xd0\xe4\xef\x14\xe0\xd1\x47\x1f\x1d\x10\ \x42\xbc\xb0\x79\xf3\xe6\x15\x2b\x56\xac\x40\xad\x56\x43\xb9\x5c\ \x86\x94\x12\x63\x33\x0b\x18\x9f\x5d\x40\xb1\xe6\xa1\xee\x04\x68\ \x0b\x1b\x48\xc4\x2c\x7c\xa2\x37\x8a\x64\xcc\x82\x69\x9a\x68\x6f\ \x6f\x87\x69\x9a\x38\x7a\xf4\x28\x5e\x79\xe5\x15\x3f\x08\x82\xbb\ \xb6\x6f\xdf\xbe\xe7\x77\x02\xf0\xc8\x23\x8f\x7c\xde\xb6\xed\xe7\ \xb7\x6e\xdd\x1a\xb6\x6d\x1b\xf9\x7c\x1e\xa5\x9a\x83\xe7\x5e\x3f\ \x8b\x83\x6f\xcf\xb3\x20\xf2\x22\x91\x96\xaa\x69\xe8\x9e\xa6\x09\ \xdf\x0f\x94\xe9\x79\xbe\x59\x2c\x2f\xb4\x25\xa2\xa6\x76\xcb\xda\ \x4e\xba\x79\x4d\x17\xc2\x76\x08\xa9\x54\x0a\xf9\x7c\x1e\xcf\x3e\ \xfb\x2c\x9a\xcd\xe6\xd7\xb7\x6d\xdb\xf6\xf8\x6f\x15\xe0\xdb\xdf\ \xfe\xf6\x27\x23\x91\xc8\x1b\x5f\xf9\xca\x57\x4c\x29\x25\xe6\xe7\ \xe7\xb1\x6f\x74\x1a\xff\x3c\x92\xe3\xce\x64\x74\xbe\x33\x95\x78\ \xab\x3f\x13\xf7\x7b\x13\xa1\x98\x6d\x69\x86\x20\xa2\x4a\x33\x70\ \xf2\x15\xb7\x31\x39\x5f\xaf\x17\x0a\xd5\xd4\xf4\x4c\xf1\x6a\x52\ \xb2\xf5\xab\xb7\xf7\x8b\x4f\x5e\x15\x47\x57\x57\x17\x9a\xcd\x26\ \x9e\x79\xe6\x19\x54\x2a\x95\xfb\xb7\x6f\xdf\xfe\x4f\xbf\x15\x80\ \x1d\x3b\x76\x74\x58\x96\x75\xe8\xfe\xfb\xef\xbf\x4a\xd3\x34\xe4\ \xe7\xe6\xf1\xfd\xbd\xe3\x38\x3c\x51\xf5\x56\x2c\xcf\xbc\x76\xed\ \xca\x94\x76\xdd\x60\x72\x49\xac\x45\xb7\x19\xcc\x81\x64\x25\x19\ \x32\x90\x52\x49\x09\x59\x69\xfa\xce\xf1\x33\xd5\xd9\x63\xb9\xea\ \xfc\xcc\x5c\x25\x93\x3d\x3d\xbd\xf6\xfe\x1b\xfb\xf4\x9b\x57\x77\ \xa2\xa7\xa7\x07\x85\x42\x01\xbb\x77\xef\x86\xe3\x38\xd7\x7f\xe3\ \x1b\xdf\x78\xfd\x4a\x00\xb4\x4b\x35\xde\x72\xcb\x2d\x7f\x7f\xeb\ \xad\xb7\xfe\x49\x32\x99\x44\x3e\x9f\xc7\xf7\xf6\x8e\xe1\x9d\x19\ \xa7\xb6\xea\xea\x65\x2f\xdf\x73\xc3\x55\x7d\xeb\x96\xc7\x97\xda\ \x2d\x86\x25\x34\x21\x40\x0c\x9c\xfb\x41\x31\x31\x83\x59\x13\x42\ \x74\xb4\xb6\x44\xba\xda\x5a\xec\x8a\xa3\xce\x46\xa3\xe1\xdc\xcb\ \x6f\x4e\xa6\x13\x51\xc3\x48\x86\x81\xee\xee\x6e\x44\xa3\x51\x8c\ \x8d\x8d\x7d\x76\xfd\xfa\xf5\xdf\x1b\x19\x19\x51\x8b\x06\xb0\x73\ \xe7\xce\x6b\x12\x89\xc4\xf7\x37\x6c\xd8\x80\xd9\xd9\x59\xbc\x38\ \x3a\x8d\x5f\x1c\x2f\x39\x57\xaf\x58\x76\xe0\x4b\x37\xf4\xfe\x51\ \xa6\xdd\x6e\xd7\x34\x12\xba\x20\x8d\xe8\x9c\xfa\xcc\x0c\x06\x29\ \x66\xb0\x62\xb0\x62\x66\x56\x60\xcb\x10\x7a\xaa\xcd\x0a\xe7\xab\ \xfe\x7c\x38\x62\x4f\xed\x3b\x34\xd1\xb7\xea\xaa\x56\x2d\x6c\x9e\ \x83\x98\x9e\x9e\x4e\x3a\x8e\x73\x76\xff\xfe\xfd\xa3\x1f\x17\x40\ \x5c\xc2\x49\x7d\x6b\xe3\xc6\x8d\xa8\x56\xab\xa8\xd4\x5d\xec\xfe\ \xf7\x29\xb5\x72\xb0\x6f\xe4\xa6\x35\x1d\x7d\x89\x58\x4b\x84\x71\ \x4e\x41\xa9\x58\x49\xa5\x14\x00\xc9\x80\xa4\x73\x12\x10\xf8\x7c\ \x9d\x15\x03\x1c\xb1\x0c\xd3\xd4\x85\x88\x84\x43\x0b\x4b\xfb\xba\ \xde\xf8\x87\x3d\x59\xaf\xd1\x68\x80\x88\x70\xdd\x75\xd7\x81\x88\ \x86\x87\x87\x87\xcd\x45\x01\xd8\xb9\x73\x67\xaa\xb5\xb5\xf5\x8e\ \x8e\x8e\x0e\xd4\xeb\x75\xfc\xf8\xd5\x33\xe8\x4e\xc5\xa7\xd2\x89\ \x28\x2f\x4b\x45\x93\x8a\x99\x25\xb3\x52\x0a\x41\xc0\xca\x93\x92\ \x3d\x29\x39\x00\xe0\x31\xe0\x33\xa9\x80\x04\x79\x04\xf6\x49\x90\ \x07\xc0\x67\x66\x7f\xc1\xf3\x5d\x00\xe8\x48\xb6\x4d\xd7\x1d\x2e\ \xbf\x71\xaa\x84\x52\xa9\x84\x64\x32\x89\x74\x3a\xdd\x15\x0e\x87\ \xb7\x2c\x0a\x80\x52\x6a\xcb\xf2\xe5\xcb\x35\xd7\x75\xe1\x7a\x01\ \x0e\xbe\x3d\xc7\x89\x54\xe2\xf0\x35\x4b\x62\x29\xc9\xac\x02\xc9\ \x4a\x31\xfc\x40\xb1\x27\x25\x5c\x05\xb8\x52\xb1\xcb\x0c\x8f\xc1\ \x1e\x40\x2e\x2b\x78\x00\x79\x00\x3c\x10\x7b\xa5\x05\xbf\x28\x15\ \x39\x80\x0a\x00\xa0\xa3\x23\x7e\xf2\xb9\xd7\xcf\x7a\x8e\xe3\x40\ \xd7\x75\x64\x32\x19\x00\xb8\x73\x51\x00\x88\xe8\xce\x4c\x26\x03\ \xc7\x71\xf0\x5f\xa7\x2b\x68\x8f\xb5\xd4\x0d\x4d\xf3\x53\xad\x56\ \x24\x90\x4a\xb1\x62\x2f\x90\xd2\x0f\xa4\xf2\x94\x52\x6e\x20\x95\ \xab\x98\x9d\x40\xb1\xa3\x14\x1c\x56\x70\x99\xd9\x25\x41\x8e\x62\ \xf6\x08\xe4\xe6\x0a\x0b\xb3\x04\x76\x08\xe7\x20\x92\xc9\x58\x7e\ \x7c\xa6\x4e\x0b\x4e\x80\x66\xb3\x89\x4c\x26\x03\x22\xba\xfd\x27\ \x3f\xf9\x89\x76\xc5\x00\x9a\xa6\x0d\x45\x22\x11\x04\x41\x80\x63\ \x93\x55\x44\xa2\xe1\x72\xcc\x36\x0c\x22\x41\x4a\xc1\xf3\x99\x3d\ \xa9\xe0\x2a\x86\xe3\x4b\x76\x15\xa3\xa9\x24\x1c\x56\x70\x14\x2b\ \x47\x31\x3b\x0c\x38\x52\x2a\x97\x19\x4e\xc3\x93\xd5\x89\xf9\xc6\ \x34\x40\x8e\x62\xb8\x60\x72\x75\x12\x7e\x24\xdc\x52\x7c\xe7\x4c\ \x0d\xbe\xef\xc3\x34\x4d\x44\xa3\xd1\xf6\xc9\xc9\xc9\x81\x8f\x03\ \xa0\xbf\x6f\xfd\x87\x4d\xd3\xec\x3c\xbf\x94\x30\x5f\xf5\xa0\x1b\ \x56\xa3\x45\xd7\xb4\x40\xca\x80\x20\x24\x02\x62\x12\xa4\x58\x23\ \x25\x04\x49\x25\x59\x11\x48\x02\x08\x18\x50\xcc\x2c\xc1\x90\x0c\ \x52\x04\x56\xc7\x73\xe5\x93\x81\xcf\x4d\x22\x48\x10\x01\xc4\x82\ \x01\x61\x18\x86\x53\xaa\x7b\x08\x82\x00\x42\x08\x84\xc3\x61\x54\ \x2a\x95\xab\x00\x9c\xf8\xd8\x00\x4a\xa9\x56\xd3\x34\xa1\x94\x02\ \x33\xa3\xda\xf4\x61\xd8\x76\xc3\x93\x81\x92\x8a\x7d\x8d\x10\x48\ \x28\x45\xa4\x49\x96\x90\xac\x58\x09\x5d\x04\xc4\x08\x40\x2c\x01\ \x48\x56\x90\x12\xac\xc0\xac\x26\xe6\x17\xce\xbe\x3b\xbd\x30\x05\ \x90\x05\x66\xd0\x39\x6b\x6b\x20\x68\x9a\x10\x6e\xa5\x71\x2e\x08\ \x24\x22\x18\x86\x01\x22\x6a\xbf\x22\x0b\x08\x21\x02\xa5\x14\x84\ \x10\x20\x22\x44\x43\x3a\xea\x81\x6a\xa9\x37\x7d\x27\x08\xd8\x03\ \x29\xa9\x33\x05\xcc\x4a\xea\xba\x08\x40\x14\x40\xaa\x80\x18\x92\ \x04\xf9\x00\x4b\x06\x24\x98\xd4\x4c\xd9\xc9\xff\xf2\x58\xe1\x5d\ \x22\x36\x89\x40\x0a\x2c\x98\x49\x23\x26\x03\xe0\x40\x4a\x5f\x8f\ \x86\x0c\x00\x40\x10\x04\x08\x82\x00\x00\x9a\x57\x04\x60\x59\x56\ \xc5\xf7\x7d\x45\x44\x42\xd3\x34\x24\x22\x26\x8a\x73\x7e\xd8\x67\ \xf8\xa5\xba\x5f\x89\x47\x4d\x03\x1a\x02\x22\x04\x90\x2a\x60\x26\ \x5f\x10\x02\x01\xf2\x01\xf8\x44\x1c\x30\x23\x18\xcb\x2f\x9c\x1a\ \x79\x7b\x36\x07\x26\xeb\xbd\xb9\x01\xe9\x20\x15\x30\x10\x10\x84\ \xf4\x7d\x69\xb5\x45\x8c\x0b\x7e\x07\x8e\xe3\x40\x29\x35\x75\x45\ \x0f\xf1\x83\x0f\x3e\xe8\x3a\x8e\x33\x19\x04\x01\x74\x5d\xc7\xca\ \xde\x28\x16\x1a\x8d\x18\x18\x6a\xb2\x50\x2f\x7a\x81\xf4\x7d\xa9\ \x3c\x2f\x50\xae\x2f\xd9\xf1\x25\x3b\x41\xc0\x4d\x09\x5e\x60\xc5\ \xf5\xb9\xaa\x93\x7d\xf1\xf0\xf4\xbe\x83\x6f\xe7\x8f\x42\x08\x17\ \x04\x1f\x04\x9f\x99\x02\x10\x02\x66\x92\x04\x92\x4a\xb1\x5a\x68\ \x7a\xc9\x15\xe9\x28\x74\x5d\x07\x33\xa3\x5e\xaf\xb3\x94\x72\xfc\ \x8a\x2c\x70\x7e\x1b\x7d\x65\x76\x76\xf6\x81\xfe\xfe\x7e\xac\x5e\ \x16\xc7\x77\x7f\x96\x8d\x29\x25\xc5\xf8\x6c\xa3\x5c\xaa\x05\x85\ \xae\xb8\x25\x5a\x6d\x03\x21\x4b\x53\x42\x88\x86\xe7\xcb\x5a\xd3\ \xe5\xb9\x53\xf9\xd2\x99\x4a\x5d\x56\x04\x0b\x29\x48\x98\x4a\xb2\ \x60\x41\x06\x31\x24\x13\x2b\x56\x50\x2c\x58\x41\x11\xe7\xe7\xca\ \xdd\xdd\xed\x21\x19\xb3\x0d\x98\xa6\x89\x99\x99\x19\x94\xcb\xe5\ \xff\xfc\xe6\x37\xbf\x39\x77\xc5\x00\x00\x9e\x1f\x1f\x1f\x7f\x60\ \xe5\xca\x95\x08\xb7\x18\x18\x5a\x91\x14\xb3\xf9\xd2\xaa\xae\xae\ \xc4\xab\x65\xc7\x73\x2a\x53\x5e\x83\x08\x0d\x06\x1a\x00\x16\x88\ \xd0\x50\x44\x0d\x21\xe1\x82\x34\xc5\x14\x04\x2c\x34\x43\x30\xb3\ \x04\x81\x19\x4c\x60\x7e\x2f\xe8\x25\xe6\xfc\x7c\xf9\x93\xf7\xdd\ \xd0\x65\x5b\x96\x05\x29\x25\x72\xb9\x1c\x1c\xc7\xf9\xe9\xa2\x38\ \x32\x4d\xd3\x5e\x9a\x9e\x9e\x5e\xa8\xd5\x6a\x88\xc5\x62\xf8\xf3\ \xcf\x65\x30\x35\x5d\x1a\xf4\x3c\xd5\x42\x0c\x62\x3a\x27\xc4\x44\ \x60\x12\x60\x16\x42\x2a\x8d\x04\xeb\x60\x69\x09\xd6\x6d\x66\x18\ \x52\x41\x07\x2b\x01\x90\x80\x20\x71\xa1\x4f\x7e\xae\x9a\x36\x84\ \xea\x59\xff\x89\x0e\x84\xc3\x61\x34\x1a\x0d\x1c\x39\x72\x44\xb9\ \xae\xfb\xa3\x45\x01\xf8\xda\xd7\xbe\xd6\x74\x5d\xf7\x1f\x8f\x1c\ \x39\x02\xdb\xb6\x91\x8a\x87\x71\xeb\xba\x4e\xfd\x54\x36\x77\x1b\ \x14\x69\xc0\x39\xa5\x19\xac\x31\xb1\xc6\x10\x06\x00\x83\x99\x2c\ \x90\x16\x52\x60\x1b\x8a\x43\x44\x30\x89\x85\x4e\xc4\x3a\x31\x74\ \x01\xd6\x16\x9a\x5e\x6c\x7c\x62\xfa\xae\xaf\x6e\x59\x66\x47\x22\ \x61\x48\x29\x71\xf4\xe8\x51\x14\x0a\x85\x1f\x3f\xfe\xf8\xe3\xef\ \x2e\x5a\x34\x4a\x44\x3b\x8e\x1d\x3b\x56\x9f\x9b\x9b\x43\x77\x77\ \x37\xfe\x6c\x7d\x2f\x96\x24\xad\xc4\xbb\xd9\x89\xbb\x58\x29\x13\ \x10\x06\x11\xeb\x04\x98\x0c\x65\x32\x91\x05\xe2\x10\x31\xdb\x2c\ \x60\x83\x38\x44\xe0\x16\x16\xca\x02\xc1\x54\xc4\x7a\x7d\xc1\x6d\ \x3b\x76\xfc\xf4\x97\xb7\x6e\xe8\xb3\xaf\x59\x9a\x40\x5b\x5b\x1b\ \xf2\xf9\x3c\x5e\x7b\xed\x35\x6e\x36\x9b\x7f\xbb\xa8\x07\x9a\xfd\ \xfb\xf7\x2f\xdc\x74\xd3\x4d\xa2\x52\xa9\xdc\xd8\xdb\xdb\x8b\x78\ \x3c\x8e\x95\x5d\x3a\xde\x1e\xaf\xc4\xde\x3d\x9d\x5f\x19\x89\x85\ \x4e\xea\xa6\xee\x0a\x22\x26\x10\xc0\x2c\x88\x49\x30\x48\x27\xb0\ \x41\x10\x26\x11\x59\x00\x2c\x30\x59\xf9\x7c\xa5\xff\xf8\xa9\x33\ \x7f\x79\xd7\x75\x3d\xb1\x3f\x5d\xdf\x2b\xba\xbb\xbb\x51\x28\x14\ \xf0\xd2\x4b\x2f\x61\x72\x72\x92\x1c\xc7\xa9\x0c\x0c\x0c\xfc\xf2\ \xd8\xb1\x63\x72\xd1\x4e\x64\xeb\xd7\xaf\xff\x8f\x66\xb3\xf9\x59\ \xdf\xf7\x97\x66\x32\x19\x24\xda\xe3\x58\xbd\x24\x44\xf5\x86\x17\ \x7a\xf5\xf0\x99\xb5\x6e\xd3\x8b\xdb\x96\x71\x56\x37\xcc\x80\x40\ \x04\x62\x0d\x02\x3a\x03\x06\x98\x4c\x02\x9b\x85\x62\x2d\x73\xf2\ \x54\xee\x4b\xf3\xa5\xca\x4d\x0f\xde\xd6\x1f\xba\x6d\xa8\x8f\xba\ \xbb\xbb\x51\x2e\x97\x01\x00\xcb\x97\x2f\x47\x6f\x6f\x2f\xca\xe5\ \xf2\x0d\x53\x53\x53\xeb\xfb\xfb\xfb\x5f\x38\x79\xf2\xa4\xb3\x68\ \x87\xfa\x1d\x3b\x76\x24\x2c\xcb\x7a\x7d\xd5\xaa\x55\xcb\x57\xaf\ \x5e\x8d\xd6\xd6\x56\xcc\xcf\xcf\x63\x62\xba\x88\xa7\x7f\x91\xc3\ \xeb\xef\x96\x82\x48\x8b\x5e\x08\xd9\xd6\x24\x91\x5e\x64\xa2\x22\ \xb1\x6c\xf7\xfd\x20\x59\x5f\x70\x96\x01\x08\xdf\xba\xb6\xcb\xb8\ \x63\x28\x4d\x9d\xc9\x38\xda\xda\xda\x30\x3b\x3b\x0b\x4d\xd3\x30\ \x35\x35\x85\x83\x07\x0f\x42\xd7\x75\xb4\xb7\xb7\x23\x97\xcb\xe1\ \xe0\xc1\x83\x47\x85\x10\x5b\xf6\xec\xd9\x33\xb1\x68\x69\x95\x5d\ \xbb\x76\xf5\x06\x41\xf0\xfc\xe0\xe0\xe0\x9a\x6b\xaf\xbd\x16\x89\ \x44\x02\xcc\x8c\x52\xa9\x84\x5a\xbd\x81\x23\x13\x65\x64\xa7\xff\ \x27\x2f\x14\x0f\x1b\x48\xc6\x2c\x7c\xa2\x2f\x86\x81\x74\x0c\xe1\ \x70\x18\xf1\x78\x1c\xae\xeb\x62\x66\x66\x06\x13\x13\x13\x18\x18\ \x18\xc0\xe8\xe8\x28\xaa\xd5\x2a\x8a\xc5\x22\x82\x20\x40\x4f\x4f\ \x0f\xf2\xf9\x3c\x0e\x1c\x38\x30\xc3\xcc\xb7\xef\xd9\xb3\xe7\x8d\ \x45\x4b\x6c\xed\xdc\xb9\x33\xcc\xcc\x3f\x88\xc7\xe3\xf7\x7e\xea\ \x53\x9f\xc2\x92\x25\x4b\x10\x8b\xc5\x60\x59\x16\x9a\xcd\x26\x7c\ \xdf\x47\x10\x04\x50\x4a\xbd\x97\x99\x33\x4d\x13\x96\x65\xa1\xd1\ \x68\xa0\x52\xa9\x20\x9b\xcd\xe2\xe7\x3f\xff\x39\x52\xa9\x14\x36\ \x6e\xdc\x88\xd1\xd1\x51\x84\xc3\x61\xb8\xae\x8b\x42\xa1\x00\xc7\ \x71\x90\x4e\xa7\x51\x2e\x97\xb1\x7f\xff\xfe\x86\xeb\xba\x5f\xda\ \xbb\x77\xef\x0b\x8b\x9a\x1b\x7d\xe4\x91\x47\x3e\x4f\x44\x8f\xf6\ \xf4\xf4\x7c\x7a\xc9\x92\x25\xe8\xea\xea\x42\x34\x7a\x2e\x1c\xd0\ \x75\x1d\x42\x08\x48\x29\x11\x04\x01\x3c\xcf\xc3\xc2\xc2\x02\xa6\ \xa7\xa7\xf1\xe6\x9b\x6f\x62\x72\x72\x72\xb4\xd1\x68\x3c\xac\x94\ \xfa\x97\x7b\xee\xb9\xc7\x76\x5d\x17\x73\x73\x73\xb0\x6d\x1b\xcc\ \x8c\x62\xb1\x88\x5a\xad\x86\x9e\x9e\x1e\x34\x1a\x0d\x8c\x8c\x8c\ \xc8\x62\xb1\xf8\xd7\xfb\xf6\xed\xfb\xee\xa2\x26\x77\x99\x99\x1e\ \x7b\xec\xb1\xdb\x94\x52\x7f\xa1\x69\xda\xe6\xae\xae\xae\x68\x2c\ \x16\x43\x28\x14\x82\x61\x18\x70\x5d\x17\x8e\xe3\xa0\x52\xa9\x20\ \x97\xcb\x2d\xd4\x6a\xb5\x97\x1c\xc7\xf9\xc1\x13\x4f\x3c\xf1\x33\ \x00\xb8\xf7\xde\x7b\xff\xaa\xb5\xb5\xf5\xc9\x0d\x1b\x36\x50\x22\ \x91\xc0\xec\xec\x2c\x2c\xcb\x82\x61\x18\x28\x14\x0a\xa8\x54\x2a\ \x48\xa5\x52\xf0\x7d\x1f\x87\x0e\x1d\x42\x2e\x97\x7b\x7c\x68\x68\ \x68\xdb\xf0\xf0\xb0\x5a\xd4\xf4\xfa\xf9\x84\xaf\x19\x0a\x85\x3e\ \x07\x60\x35\x11\xf5\x02\xb0\x00\xd4\x98\xf9\x4c\xb3\xd9\x3c\x06\ \xe0\x17\xc3\xc3\xc3\xff\x6b\x57\xd9\xbc\x79\xf3\x7d\xb1\x58\xec\ \x87\x9b\x36\x6d\x32\xba\xbb\xbb\x91\xcf\xe7\xa1\xeb\x3a\x6c\xdb\ \x46\xb1\x58\x44\xb1\x58\x44\x3c\x1e\x87\xa6\x69\x78\xeb\xad\xb7\ \x70\xe2\xc4\x89\xdd\x91\x48\xe4\xcb\xcf\x3c\xf3\x4c\x73\x51\x01\ \x2e\xea\x4f\xbf\xc9\x78\x9b\x36\x6d\xda\x60\x59\xd6\xb3\x5b\xb6\ \x6c\x69\xed\xeb\xeb\x43\xa1\x50\x80\x52\x0a\xd1\x68\x14\x95\x4a\ \x05\x85\x42\x01\xb6\x6d\x23\x1c\x0e\xe3\xe4\xc9\x93\xf8\xd5\xaf\ \x7e\xf5\x3a\x11\xdd\xb1\x77\xef\xde\xb9\x8f\xe4\x07\x2e\xa3\xa8\ \x38\x7f\xbf\x76\x3e\x08\xbc\x70\xbd\x94\x18\x97\x69\xd7\x00\xe8\ \xd9\x6c\xf6\x4c\x67\x67\xe7\xcf\xc6\xc6\xc6\x36\xb5\xb7\xb7\xb7\ \x75\x77\x77\xc3\xf7\x7d\x34\x1a\x0d\x44\xa3\x51\x98\xa6\x89\x7a\ \xbd\x0e\xdf\xf7\xd1\xd7\xd7\x87\xb6\xb6\xb6\xcc\xe9\xd3\xa7\xef\ \x1e\x1c\x1c\x7c\xf1\xe4\xc9\x93\x85\x8f\x02\x40\x17\x29\xab\x7f\ \x88\xd2\x5a\x6b\x6b\xab\xb1\x76\xed\xda\xd0\xd0\xd0\x50\xcb\xca\ \x95\x2b\x5b\x62\xb1\x98\x31\x35\x35\x45\x97\xe9\xaf\x4d\x4c\x4c\ \x94\x0c\xc3\xf8\xb7\x7c\x3e\xff\x19\xdb\xb6\x7b\x7a\x7a\x7a\xa0\ \x69\x1a\x2a\x95\x0a\x6c\xdb\x86\x6d\xdb\x68\x36\x9b\xa8\xd5\x6a\ \xc8\x64\x32\x48\xa7\xd3\xed\xd9\x6c\xf6\xbe\xfe\xfe\xfe\xe7\x4f\ \x9d\x3a\x55\xb8\x5c\x38\x2d\xde\x37\xdb\x97\xaa\x5f\xf8\x4f\x77\ \xdc\x71\x47\xe8\x81\x07\x1e\xc8\xa4\xd3\xe9\xce\x58\x2c\x96\x6c\ \x69\x69\x89\x1b\x86\x11\x39\x1f\x46\xb0\x94\xd2\xf3\x3c\xaf\xde\ \x68\x34\x2a\xa5\x52\xa9\x30\x3e\x3e\x3e\xfb\xd4\x53\x4f\x9d\x7d\ \xf9\xe5\x97\x5d\x9c\x4b\xa5\xf2\xf1\xe3\xc7\xcb\x95\x4a\xe5\x6e\ \xa5\xd4\x93\x95\x4a\xe5\xd6\x75\xeb\xd6\xa1\xbd\xbd\x1d\xc5\x62\ \x11\xe1\x70\x18\xa9\x54\x0a\xf5\x7a\x1d\xcb\x96\x2d\xc3\x8d\x37\ \xde\x88\xfe\xfe\xfe\xf6\xef\x7c\xe7\x3b\x3f\x04\xf0\x99\x8b\x2d\ \x70\x61\xc6\xdf\xbf\x4c\xb4\xcb\xb5\x3d\xfc\xf0\xc3\x9d\x5f\xfc\ \xe2\x17\x07\xfa\xfa\xfa\x06\x93\xc9\xe4\x8a\x58\x2c\x76\x75\x34\ \x1a\x5d\x1d\x8d\x46\xff\x38\x12\x89\x5c\x1f\x0e\x87\x57\x5b\x96\ \xb5\xc4\xb2\xac\x4e\xd3\x34\xdb\x4c\xd3\x8c\x46\x22\x11\x7b\x70\ \x70\x30\xd4\xde\xde\x2e\x47\x47\x47\xbd\x0b\x13\x53\xab\xd5\x82\ \x99\x99\x99\x9f\x6a\x9a\x16\xab\x56\xab\x6b\x33\x99\x0c\xda\xda\ \xda\x50\x2a\x95\xa0\xeb\x3a\x2e\x44\x01\x41\x10\x60\xe9\xd2\xa5\ \x38\x7c\xf8\x70\x6f\x22\x91\xf8\x51\x36\x9b\x2d\xbd\x1f\x40\x5c\ \x24\x74\x89\xb6\xf7\xc4\xf7\x7d\x5e\xb1\x62\x45\xb8\xa5\xa5\x25\ \x24\x84\x30\x89\x48\x07\xc0\x4a\x29\x37\x08\x82\xaa\xe7\x79\xf3\ \xae\xeb\x16\x9a\xcd\x66\xb1\x5e\xaf\x97\x6a\xb5\x5a\x29\x9f\xcf\ \x97\xb3\xd9\x6c\x79\xf7\xee\xdd\xc5\x42\xa1\xc0\xef\xb7\xa8\xef\ \xfb\x3c\x36\x36\xf6\x72\x38\x1c\x2e\xcf\xcc\xcc\x6c\xec\xeb\xeb\ \xa3\x64\x32\x09\x5d\xd7\x91\x4e\xa7\xdf\x3b\x3b\x6b\x9a\x86\xb1\ \xb1\x31\x4c\x4c\x4c\x3c\x97\xcd\x66\x27\x00\x30\xfd\x86\x00\xbf\ \xd6\x1e\x8f\xc7\xf5\xbb\xef\xbe\x3b\xb6\x6e\xdd\xba\x64\x2a\x95\ \x8a\x87\x42\x21\x5b\xd7\x75\x23\x08\x02\xe1\xba\xae\x5f\xa9\x54\ \xdc\x5c\x2e\x57\x3e\x74\xe8\x50\x69\x64\x64\xa4\x5a\xab\xd5\x24\ \x00\x75\x7e\x09\xa9\x8b\x84\x01\xa8\x0d\x1b\x36\x6c\x4e\x24\x12\ \x4f\xde\x79\xe7\x9d\xa1\x35\x6b\xd6\x20\x16\x8b\xbd\xf7\xfe\xcd\ \xb2\x2c\x6c\xdf\xbe\xdd\x9b\x98\x98\xc8\xbc\xfa\xea\xab\x05\x00\ \x8a\x2e\xda\x65\xe8\x03\x14\xbe\x54\xfd\x52\xd7\xcb\x6d\xa9\x7c\ \x19\xb9\x18\x88\xaf\xbf\xfe\xfa\x35\xf1\x78\xfc\x5f\xb7\x6e\xdd\ \xda\x71\xf3\xcd\x37\x5f\xc8\x5b\xe1\xe9\xa7\x9f\xc6\xbe\x7d\xfb\ \x76\xed\xdb\xb7\x6f\xfb\x85\xfe\xf4\x01\x0f\xf1\xe5\x14\xbe\xb8\ \x4e\xef\x3b\x18\x7d\x18\xc0\x07\x81\xfc\x1a\xcc\xd0\xd0\x50\x6f\ \x6b\x6b\xeb\xdf\x75\x74\x74\xdc\x9e\x4e\xa7\x45\x36\x9b\xad\xd5\ \x6a\xb5\x27\x5c\xd7\xfd\xd6\xc8\xc8\x48\xf0\x61\x8e\x8c\x3e\x82\ \xd2\x97\x92\x8b\xc7\xa4\x8b\x94\xff\x4d\x41\x78\xe3\xc6\x8d\x09\ \xc3\x30\xba\x74\x5d\x3f\xbe\x77\xef\x5e\xf7\xe3\x7a\xe2\x8f\xa2\ \xf4\x47\xf1\xc6\x7c\x89\x25\xf5\x61\x30\x8b\xff\xa9\xc1\x87\x84\ \x13\x1f\x34\xee\xe5\x2c\xf1\x87\xf2\xff\xb6\xfc\x37\x2b\xce\x1c\ \xfe\x6f\x27\xf6\xcc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\x8c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x0e\x00\x00\x00\x0e\x08\x06\x00\x00\x00\x1f\x48\x2d\xd1\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd6\x0b\x0f\x15\x23\ \x13\x07\xfa\x23\xf1\x00\x00\x02\x2e\x49\x44\x41\x54\x28\x91\x5d\ \xd1\x4f\x88\x94\x75\x00\xc6\xf1\xcf\xef\x9d\x77\x9d\xfd\x37\xed\ \xcc\x6a\x6b\x38\xb4\x48\x65\xb5\x12\xca\xa2\x41\x20\x25\xde\x3a\ \x44\x90\x41\x74\x30\x31\x52\x10\xc3\x4e\x41\xf7\xce\x85\x90\x50\ \x44\x75\xec\xd2\xb9\xed\x50\xb7\x3a\x78\x49\x36\xa8\x28\xdb\xc5\ \x69\xd7\xa6\x71\x9d\x55\xe7\x9d\xd9\x77\x1c\xe7\xcf\xfb\x76\xd9\ \x25\xd8\xe7\xf4\xc0\xf3\x7c\x79\x0e\x4f\xc1\xff\x9a\xc5\x09\xbc\ \x8c\x3f\xf0\x1c\x9e\xc1\x26\x8e\xe3\x20\x32\xb4\xed\xd2\x55\xcc\ \x63\x31\x84\x90\x56\x2a\x95\xd1\xde\xbd\xfb\x46\x21\x84\x87\x38\ \xb7\x9d\x5d\xdd\x0d\xc1\x99\xc3\x93\x16\x17\xa6\xc3\x4a\x1c\xc7\ \x79\x08\x21\x0f\x21\xe4\x85\x42\x21\xaf\x16\xc3\xed\x85\x09\x2f\ \xe0\xcc\x4e\x39\xec\x98\xb9\xd8\x89\x41\x08\x3f\x3e\x7b\x74\x31\ \x7a\xe5\xb5\xd7\xcd\xcd\xcd\xe9\xf7\xfb\xd6\xd6\xd6\x7c\xff\xdd\ \x92\x5f\x7e\xfb\xdd\xa3\xb1\x97\x9a\x43\x3f\x41\xbc\x03\x5e\x79\ \xd2\xb1\xe9\xc3\x0b\xa3\xa9\xd3\xe7\xa3\x5f\x37\x52\xcb\xcb\xcb\ \x92\x24\x51\xad\x56\xbd\xfd\xe6\x69\x7e\xe8\x0e\x2a\x8d\xda\xf1\ \xb3\x7f\xed\x02\x33\x2e\x9d\x3c\xf9\xfc\x58\x29\xaa\x39\x75\xb0\ \xe4\x5a\xaf\xa7\x9e\x6d\x78\x51\x4d\xe3\xfe\x84\xfb\xc7\x8e\x8e\ \x35\xbe\xad\x9d\xc7\x15\x88\xb6\xb9\xc9\x40\x75\x7c\xa6\x42\xbf\ \x2b\x8c\x15\x95\xc7\x0b\xf6\xc7\x7d\xb3\x59\xdb\xa8\xbd\x69\xac\ \x34\x2d\x50\xdd\x19\x8a\xf1\x18\x3e\xc8\x73\x13\xf1\xc3\x2d\x7a\ \x2d\xb2\x4c\xb4\xb5\xa9\xd0\xeb\xe8\xe5\x3d\xdd\x34\x37\x1c\x0c\ \x08\xa6\xf0\x21\x3e\x8d\x70\x11\x5f\x22\x4b\x9a\x0d\x36\xd7\xe4\ \x8d\x3f\xc5\xf7\xd6\x15\xd3\x3b\x9a\x5b\x3d\x69\xb7\x27\x6d\x27\ \xf2\xdc\x08\x1f\xe3\x62\x8c\x23\xf8\x7c\x44\xe7\x9f\x66\x32\x3b\ \xba\xb7\x6a\x66\x3c\x12\x3d\x88\xa4\xe9\x50\xa7\x3d\xd2\x7a\xc0\ \x9e\x74\x8b\xe0\x2e\x12\x1c\x89\x71\x19\xad\x64\xa8\x5e\xaf\xdf\ \x99\x4d\x8b\x65\xf1\xad\x9a\x56\x9f\x8d\x1e\x21\x30\xdc\xf7\x04\ \xcd\x0d\x69\xe6\xe6\xf6\x85\x97\x23\xd4\xf1\xd6\xb5\x8e\x6f\xee\ \xae\xae\xa7\x9d\xf2\xbc\x7f\x8b\x07\xdc\xee\xc7\xba\x59\xac\xf7\ \xc8\x01\x53\xfb\xe7\x65\xb7\xd6\xdb\xd7\x13\x5f\xe3\x02\xea\x01\ \x15\x7c\x84\x77\xbe\x38\x64\x69\xb2\x3c\x73\x6a\xcf\x53\x87\x26\ \x0a\xe5\xb2\x1c\xa3\x56\x4b\x7f\x75\xa5\x9b\xb5\x93\xa5\xb3\x37\ \xbc\x81\xaf\xf0\x7e\x8c\x12\x86\x30\xb3\xe2\xd5\xee\xd3\xc9\x7b\ \x83\xeb\x3f\xbf\x1b\xf3\x38\x64\xc1\xdf\x51\xe4\x93\x9b\x37\x7c\ \xb6\xfd\xc4\x10\xa5\xff\x00\x5a\x41\xdd\xd2\x2d\xdf\xd1\xac\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x27\x07\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x24\x03\x27\xea\xe3\x6d\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xed\x7d\x79\x78\x55\xd5\xb9\xfe\xfb\xed\x7d\x4e\ \xe6\x39\x24\x84\xcc\x20\x84\x40\x02\x04\x02\x09\x81\x30\x88\x5a\ \x69\xb1\xf6\x56\xab\xf7\xd7\x56\xd4\x7a\x55\xb0\xd5\x8b\xb5\xca\ \x14\x1c\x50\xc0\xa9\x7a\x5b\x3b\x5c\x8b\xd3\x7d\xda\xa7\xb5\xd7\ \xe7\xf6\x5e\x5b\x71\x44\x20\x42\x18\xa4\x22\x09\x09\x21\x04\xc2\ \x10\x32\x92\x79\x4e\xce\x39\x7b\xaf\xdf\x1f\xe7\xe4\x64\x8f\xe7\ \xec\x33\x24\xa0\x66\xf1\xec\x87\xac\xb3\xf6\xd9\x7b\xaf\xf5\xbe\ \xeb\x9b\xd6\xb7\xd7\x01\xc6\xcb\x78\x19\x2f\xe3\x65\xbc\x8c\x97\ \xf1\x32\x5e\xc6\xcb\x78\x19\x2f\xe3\x65\xbc\x8c\x97\xf1\xf2\x4d\ \x29\xf4\x75\xed\xd7\xec\xf9\xf3\x33\x88\x28\x8b\x81\x4b\x21\xc6\ \x52\x41\x94\x08\x20\x85\x81\x52\x38\x62\xe1\xd2\xae\x13\x01\x00\ \x89\x00\x5a\x00\xb4\x10\xa1\x09\x40\x33\x40\x4d\x20\x56\x69\x12\ \xcc\xa5\x47\x8f\xee\x3f\x3f\x4e\x80\xab\xb4\xe4\xe6\xe6\x4e\x10\ \xc0\xe7\x0b\x60\x79\xc4\x51\x3e\x01\x79\x00\x45\xcb\x01\x1e\xe9\ \xae\xf1\xba\xec\xb3\x4e\x30\x94\x12\xc7\x95\x32\x86\x12\x5e\xb0\ \xec\xfe\xfc\xf3\xcf\xbb\xc7\x09\x70\x85\x4a\xf6\x82\x05\x29\xbc\ \x48\xff\xc2\x08\xb7\x12\xa1\x10\x00\xaf\x07\xa8\x64\x96\xbb\xa9\ \x6b\x93\x80\x40\xb2\x91\x72\xd4\x2d\x60\x28\x61\x44\x1f\x98\x04\ \xee\xfd\xc3\x87\x8b\xab\xc6\x09\x30\xfa\x33\x7d\x92\x05\xfc\x9d\ \x20\xdc\xca\x11\xe6\xcb\x60\x23\x6f\x01\x77\x40\xea\x1e\x70\x17\ \x75\x00\x44\x95\x0c\x6c\x27\x67\xb5\xfe\xe9\xf0\xe1\xc3\xed\xe3\ \x04\xf0\x63\x99\x35\x2f\x3f\x97\xe3\xf1\x30\x80\xdb\x01\x04\xf8\ \x3a\xa3\x0d\x01\x2e\xb9\x9c\xba\x2e\xbf\x89\xa2\x3e\x00\xd0\xff\ \xf0\xc4\x76\x96\x14\x17\x97\x8c\x13\xc0\xfb\xc2\xcd\x9e\x9f\xff\ \x7d\x22\xac\x03\xb0\xc4\x53\x3d\xee\xea\x1c\x77\x00\xbb\x98\xe5\ \x86\xea\x12\x42\x1c\x63\x60\x4f\x1e\xda\xb7\xef\xfd\x71\x02\x78\ \x50\x66\x2f\x28\x58\x49\x60\x2f\x12\xb1\x6c\x5f\xc4\x7a\x78\x78\ \x18\xa2\xa3\xa3\x10\x13\x1d\x8d\x98\xe8\x18\x44\x45\x45\x22\x20\ \x20\x00\x81\x81\x81\x30\x9b\xcc\x08\x08\x08\x00\x00\x58\x2c\x16\ \x08\x36\x1b\x06\x2d\x43\xb0\x58\x2c\xe8\xea\xea\x42\x47\x47\x27\ \x3a\x3a\x3b\xd1\xd1\xd1\x81\xde\xbe\x3e\x63\x80\x3b\x3e\x53\xda\ \x90\x04\x3a\x04\xc6\x3d\x71\x60\xdf\xee\x3d\xe3\x04\x70\x51\xe6\ \xe6\xe7\xcf\x14\x19\xbd\x44\xc0\x4a\x4f\x01\x37\x9b\x03\x90\x94\ \x38\x09\xa9\x29\xc9\x48\x4e\x4e\x46\x4a\x52\x32\x42\xc3\x42\x5d\ \x74\x94\x5c\x8e\x88\xb4\xb5\xaf\xaf\x1f\xf5\xf5\xf5\xa8\xab\xaf\ \xc7\xa5\xfa\x7a\x34\x35\x36\xc2\x6a\xb3\xb9\x02\x5c\xbb\xce\xb0\ \x87\x11\x7b\xe4\xc0\x9e\x3d\x27\xc6\x09\x20\x29\xf9\xf9\xf9\x11\ \x43\xa0\x67\x09\xb8\x1f\x80\xc9\xa8\x7b\x16\x12\x1c\x84\x69\xd3\ \xa6\x21\x33\x23\x03\x53\xaf\xb9\x06\x66\xb3\xd9\x10\xa0\x2e\x87\ \x80\xdc\x0d\x0e\xc1\x66\xb3\xe2\xdc\xb9\xf3\x38\x7d\xe6\x0c\xce\ \x9e\xab\xc1\xe0\xe0\xa0\x01\xbb\xc1\xf9\x87\x95\x88\x5e\x80\xc5\ \xb2\xad\xb8\xb8\x78\xf0\x1b\x4f\x80\x79\x79\x79\x4b\x18\xf1\x7f\ \x02\x90\x66\xc4\x98\xe3\x79\x0e\x53\xaf\xb9\x06\xb9\x73\xe7\x62\ \xca\xe4\xc9\xe0\x38\x72\xdd\x1d\x03\x80\xca\xc5\xba\x31\x82\x0c\ \x7f\x2a\x8a\x0c\xe7\x2f\x5e\x40\x59\xd9\x09\x9c\x3b\x77\x0e\x22\ \x63\xae\xa5\x80\xb3\x8e\xd3\x1c\xd1\x7d\x7b\x3e\xfe\xf8\xc0\x37\ \x92\x00\xb9\xb9\xb9\x66\xd1\x14\xf0\x34\x11\x1e\x03\x88\x77\xe7\ \x9e\x85\x86\x86\x62\xee\xec\x39\x98\x3b\x77\x0e\xc2\xc3\xc3\x8d\ \x8b\x75\x15\x01\xb4\xcf\x21\x4f\x86\x8a\xb4\xef\xdd\xd3\xdb\x83\ \x13\x27\xca\x51\x7e\xb2\x02\xfd\xfd\x03\x3a\xe7\xcb\x3c\x10\x06\ \xa2\xdf\x06\x12\x3d\xf6\xe1\x87\x1f\x0e\x7d\x63\x08\x90\x5b\x50\ \x90\xc9\x18\xfd\x19\xc0\x3c\x77\xee\x59\x48\x48\x30\xf2\x16\x2c\ \x40\xee\xdc\xb9\x30\x99\x4c\xda\xee\x9a\x67\xea\x5d\x73\x56\x93\ \xc7\x80\xeb\xdf\x41\x10\x6c\x28\x3d\x71\x02\xc7\xbe\xfc\x12\x03\ \x03\x83\x2e\x5d\x50\xc7\x77\x8e\x30\x13\xff\x83\xbd\xbb\x76\xd5\ \x7f\xed\x09\x30\xb7\xa0\xe0\x3a\x0e\xf4\x37\x00\x91\xae\xdc\xb3\ \xc0\xc0\x40\xcc\x9f\x37\x0f\xf3\x73\x73\x11\xa0\xd4\xed\xee\x66\ \xb5\x07\xed\xae\x3f\x26\x37\x76\x84\x6b\x92\x58\xad\x56\x1c\x2f\ \x2d\x43\x69\x59\x19\x2c\x56\x8b\xbb\xb8\xc4\x65\x30\x76\xfb\xee\ \x0f\x3f\xfc\xec\x6b\x4b\x80\xf9\x05\x85\xf7\x30\xb0\x57\x89\x60\ \x76\x15\x84\x99\x36\x6d\x2a\xae\x5d\xb6\x14\x61\xa1\x61\x6e\x9f\ \x92\x0c\xe8\x69\xe3\x62\x9f\x8c\x6a\x13\x55\x0b\xb9\x78\xc6\xbe\ \xfe\x7e\x94\x1c\x3a\x84\x73\xe7\xce\xe9\x9e\x4f\xf6\x0f\x6c\x04\ \x3c\xf6\xf1\xfb\xef\xff\xea\xeb\x46\x00\xca\x2d\x58\xbc\x9d\x08\ \x9b\x5c\x85\x55\xc3\xc3\xc3\xb1\x62\xd9\x32\x4c\x4e\x4f\x37\xf0\ \x94\xca\xa0\x8b\x06\x28\xc6\xcd\x03\x4d\x02\xb4\xb7\xb6\xa2\xb8\ \xb8\x18\xfd\xfd\xfd\x88\x89\x89\xc1\x77\x56\xad\x72\x00\xe5\x1a\ \x70\x2d\x76\x11\x80\x8b\xb5\xb5\x28\x39\x74\x08\xbd\xbd\xbd\x52\ \xd0\x95\x24\x00\x01\xcf\x7d\xb4\x6b\xd7\xa6\xb1\x00\x86\x1f\xed\ \x1b\xdc\x76\xdb\x6d\x7c\x58\x54\xcc\x7f\x11\x47\x3f\x23\x22\x10\ \x11\x08\x8e\xff\x25\xf5\xe9\x19\x19\xb8\xf9\xa6\x55\x88\x8d\x89\ \x06\x63\x0c\x8c\xc1\xf1\xbf\xe3\xc0\xc8\xdf\xf6\x46\x00\x8a\x76\ \x30\xf9\x21\xbb\x86\xe4\xfb\xd2\x03\xd2\xcb\x49\xfe\x5d\xbe\x7c\ \x19\xef\xbf\xff\x3e\x7a\x7a\x7a\x60\xb5\x5a\xd1\xdd\xdd\x8d\xbe\ \xfe\x7e\xa4\xa4\xa6\xda\xad\x37\xe7\x3d\xb4\x0e\x47\x3b\xa4\xcf\ \xc2\x10\x19\x11\x81\xcc\x8c\x0c\xf4\xf5\xf7\xa3\xa3\xa3\x43\x36\ \x06\x9c\xe4\x6f\x10\x15\x4e\x9b\x3e\x3d\xf6\x6c\x75\xf5\x47\x5f\ \x75\x02\x50\x58\x74\xcc\x4e\x10\xdd\x3d\xd2\x39\xc8\x3a\xce\x9b\ \x78\x2c\x5b\x52\x88\xfc\xbc\x3c\x70\x1c\x07\xe7\xb8\x29\xff\x39\ \xc6\x72\x04\x30\x65\xbb\x6b\x40\xe5\xe4\xd1\x27\x09\x18\x43\x73\ \x53\x13\x3e\xfa\xe0\x03\x58\x86\x86\xb0\x74\xe9\x52\xdc\xf3\x93\ \x7b\x70\xe8\xf0\x61\x34\x37\x37\xa1\xa3\xbd\x1d\xa9\xa9\xa9\x20\ \x22\x35\xe8\x90\xdf\x57\x45\x10\x00\x1c\xc7\x21\x2d\x2d\x0d\xa1\ \x21\x21\x68\x6c\x6a\x02\x63\x4c\x3e\x19\x46\x8e\xfc\x69\x99\x19\ \x49\x39\xb3\xe7\x7c\x50\x59\x59\xc9\xbe\x92\x04\xc8\x2f\x5c\xfa\ \x6b\x10\x1e\x50\x77\xce\x4e\x82\xa8\xc8\x48\xdc\xf4\x9d\x6f\x23\ \x35\x25\x45\x06\x04\x74\x67\xac\x7a\xd6\x6b\xcf\x68\x77\xed\xda\ \x24\x01\x63\x68\x6a\x6a\xc2\xc7\x1f\x7d\x04\xab\xc5\x8a\x6b\x57\ \x5c\x8b\x2d\x45\x45\x48\x4b\x4b\xc3\x9c\x39\xb3\x71\xa0\xa4\x04\ \xcd\xcd\xcd\x68\x6e\x6e\x46\x5a\x5a\x3a\x38\x9e\x93\x81\xae\x22\ \x17\x46\x48\xe1\x10\x1b\xce\x23\x36\x26\x06\x29\xc9\xc9\x68\x6a\ \x6e\x86\xc5\x62\x71\x48\x42\x38\xc7\xc6\x21\x19\xe7\x59\x98\x90\ \x7e\xa6\xea\xf4\xdf\xbf\x72\x04\xc8\x5f\xb2\x6c\x07\x08\x8f\x3a\ \x01\x87\x7c\xe6\xc7\x4f\x98\x80\x55\xdf\x5e\x89\xf0\xb0\x70\xa7\ \x38\x97\x41\xe2\x04\x5c\x3a\x8a\xea\x59\xaf\x1c\x65\x3d\xa9\xa0\ \xd5\x2e\x07\x0c\x68\x6c\x6c\xc4\x27\x9f\x7c\x02\xab\xd5\x8a\x1b\ \xae\xbf\x1e\x9b\x36\x6e\x04\xc7\x71\x00\x80\xf8\xf8\x78\xe4\xe7\ \xe5\xe1\xe0\xc1\x83\x68\x6e\x6e\x46\x43\x7d\x3d\xd2\xd2\xd3\x61\ \xe2\x79\x99\x98\xd7\x03\x9c\x29\xda\x19\x80\xe0\xa0\x20\xa4\xa7\ \xa5\xe1\x72\x4b\x0b\x06\x06\x06\x64\xe3\x83\x91\xbf\xe7\x64\xcc\ \x98\x1e\x58\x5d\x75\x7a\xcf\x57\x86\x00\x0b\x97\x2c\xf9\x39\x01\ \xdb\x34\x3a\x03\x22\x42\x4a\x4a\x0a\x6e\xb8\xfe\x7a\x98\xcd\x01\ \x6e\x67\xb4\x6c\x56\x7b\xdd\x2e\x11\xf5\xd0\x6a\x63\x68\x68\x68\ \xc0\xa7\xbb\x77\xc3\x66\xb5\x62\xe5\xca\x95\x58\xbf\x7e\xbd\x13\ \xfc\xe1\x12\x1d\x1d\x8d\x25\x85\x85\x38\x7c\xe4\x08\x9a\x9a\x9b\ \x51\x7b\xf1\x22\x52\x52\x53\x61\x36\x9b\xe5\x00\x2b\xae\xad\x6d\ \xcb\xd8\x09\xc2\xf3\x3c\xd2\xd3\xd2\xd0\xd9\xd9\x89\xde\xde\x5e\ \x99\x84\x94\xd8\x4b\x85\xd3\x67\xcc\xac\xab\x3e\x75\xea\xf8\x55\ \x4f\x80\x82\x25\xd7\x2e\x03\xe1\x4f\x44\xc4\x69\xe9\xb6\x69\xd7\ \x5c\x83\xa5\x4b\x0a\xc1\x73\x9c\xe6\x8c\x76\x39\xab\x0d\xb7\x4b\ \x64\xbc\x86\x5e\x96\xb6\x33\x00\x75\xf5\xf5\xd8\xbb\x67\x0f\x6c\ \x36\x1b\x6e\x5a\xb5\x0a\x8f\x3d\xfa\xa8\x0a\xfc\xe1\x12\x1e\x1e\ \x8e\x6b\x97\x2f\xc7\xb1\x63\xc7\xd0\xd8\xd8\x88\x0b\xe7\xcf\x23\ \x29\x39\x19\x81\x81\x81\x2e\x66\x3d\x93\x48\x05\xa8\x0c\x58\xe2\ \x08\xa9\x29\xa9\x18\xe8\xef\x47\x57\x57\x97\x96\x14\x00\x47\xb4\ \x32\x23\x33\xf3\x50\x75\x55\xd5\xf9\xab\x96\x00\xf9\xcb\x97\x27\ \x13\xb1\x4f\x89\x28\x7c\x44\xa7\x8d\x58\xb8\xe9\xa9\xa9\x58\xb4\ \xa8\x00\x04\xf2\x50\x8f\x2b\x31\x55\x93\xc6\x39\xab\xa0\x30\xc6\ \xdc\xb4\xd7\xd7\xd5\xa1\x78\xef\x5e\x08\x82\x80\x9b\x6f\xbe\x19\ \x8f\x3c\xf2\x88\xca\x3d\x53\x96\xe0\xe0\x60\xac\x58\xb1\x02\x27\ \x2b\x2a\x50\x77\xe9\x12\x6a\x2f\x5e\x44\xe6\xf4\xe9\xc0\xb0\x61\ \x08\xa5\x2a\x80\x26\x21\x64\xed\x00\x26\x25\x26\xa2\xb7\xa7\x07\ \x3d\xbd\x3d\x20\x82\xc2\x33\x00\xcf\x71\xf4\x2f\x59\x33\x66\xbe\ \x7b\xea\xd4\xa9\xd6\xab\x8e\x00\x59\x59\xb7\x05\x04\x87\xf4\xbf\ \x4f\xc4\x65\x72\x1a\x33\x3f\x39\x29\x09\x8b\x17\x15\x38\x06\xd7\ \x5b\x3d\xee\x80\x8d\xe9\x59\xf5\x4a\xd0\xe1\x04\xdd\x79\x65\xc9\ \x77\x2f\xd5\xd6\xa2\x78\xdf\x3e\x08\x82\x80\x5b\x6e\xb9\x05\x0f\ \xaf\x5b\xe7\x16\xfc\xe1\x12\x10\x10\x80\x15\x2b\x56\xe0\xf3\xa3\ \x47\xd1\xd4\xd4\x84\xa8\x98\x18\x44\x46\x46\xca\x00\x87\x0c\x70\ \xa6\x22\x84\xb2\x9d\x00\x4c\x9a\x34\x09\x5d\xdd\xdd\xe8\xeb\xeb\ \x1b\x51\x05\x23\x6e\x73\x10\x23\xae\x60\x56\x56\xd6\x7f\x55\x56\ \x56\x0a\xfe\xc0\x8d\xf3\x17\x01\xa2\xe2\x5a\x5e\x22\xa2\x02\xb5\ \xce\x07\xe2\xe3\xe3\xb0\xa8\x60\xa1\x7d\xe6\x8b\x22\x44\x51\x84\ \x28\x32\xfb\xc1\x18\x04\x26\x42\x1c\x3e\x94\xed\x8e\x73\xd4\xed\ \xf6\x73\x04\x67\x3b\x73\xb6\x33\xe7\x21\x48\xee\x37\x72\x30\x51\ \x44\xed\x85\x0b\xd8\x5f\x5c\x0c\x41\x10\x70\xfb\x6d\xb7\xe1\xdf\ \x1f\x7a\xc8\x30\xf8\xc3\xa5\xa1\xa1\x01\xe7\xcf\x9f\x07\x63\x0c\ \xe1\xe1\xe1\xf2\xfb\x30\x11\xe2\x30\xc0\xe2\xf0\x21\x6f\x67\x8a\ \x76\x51\x14\xed\x11\xd3\xdc\x5c\xc4\x4d\x98\xa0\xb6\x07\xec\xf5\ \x5c\x1b\xc7\x6d\xbd\xaa\x22\x81\x8b\xaf\xbb\x6e\x09\x89\xec\x33\ \x69\x78\x6e\x38\x0e\x17\x1a\x12\x82\xeb\x56\x5c\x3b\xa2\x23\xb5\ \xe2\x74\xe4\xc9\xe2\x8b\xfb\x28\x1c\xb9\x09\xfd\xd7\xd6\xd6\xe2\ \x60\x49\x09\x44\xc6\xf0\xe3\x1f\xfe\x10\x6b\xd7\xae\xf5\xb8\xcf\ \x56\xab\x15\xf7\xaf\x59\x83\x73\x35\x35\x98\x9a\x91\x81\x85\x05\ \x0b\xe1\x72\xc1\x99\x5c\x2c\x5e\xa9\xc2\xd7\x04\x8b\xd5\x82\x92\ \x83\x07\x31\x30\x30\x20\x1b\x10\x47\xbb\xc0\x18\x5b\xf1\xbf\xef\ \xbc\xb3\xff\x8a\xab\x80\xe5\xcb\x97\x07\x31\xa2\x0f\x88\x68\x82\ \x52\xec\x9b\x4c\x26\x2c\x59\xbc\x18\x21\x21\x21\x1e\xea\x71\xb5\ \xde\xd6\x13\xe3\xee\xdb\x1d\xaa\xc2\x21\x79\x2f\x5e\xb8\x80\x83\ \x07\x0f\x82\x31\x86\xd5\xab\x57\x63\xcd\x9a\x35\x5e\xf5\xfb\xd5\ \x57\x5f\xc5\x81\x92\x12\x44\x44\x44\x60\xe9\xb2\x65\x20\xe2\xe4\ \x6a\xc9\xa1\xd3\x48\x22\xf6\x55\xde\x80\x5c\xef\xc9\xec\x13\x8e\ \xe3\x11\x1b\x1b\x83\x86\xc6\x46\xd8\x53\x0c\x64\x52\x80\x03\xd1\ \xb5\xf3\xe6\xe4\xbc\x55\x5e\x5e\xee\xd3\x32\xb2\xc9\x57\x02\x88\ \x9c\x69\x0b\x11\x9b\xae\x5c\xcd\x03\x80\x79\x73\x73\xec\xa2\x91\ \x69\x0c\x86\x32\xa6\x4f\x52\x00\x35\x62\xfe\x64\xf4\x7c\x68\xc6\ \xd9\x19\x63\xb8\x70\xfe\x3c\x3e\x3f\x72\x04\x8c\x31\xdc\xf3\x93\ \x9f\xe0\x9e\x7b\xee\xf1\xaa\xcf\xc7\x8e\x1d\xc3\x7f\xbf\xf3\x0e\ \x88\x08\x0b\x17\x2d\x02\xcf\x71\x60\xa2\xe8\x9c\xea\x4c\x02\x28\ \x49\x7a\x3a\x32\x91\xc9\xde\x4e\x23\x93\x61\xb8\x42\x12\x36\x84\ \x85\x85\x21\x3b\x2b\x0b\x27\xca\xcb\x55\x7d\x22\x20\xdd\xc6\x84\ \xed\x00\x1e\xba\x62\x2a\x60\xc9\x75\xd7\xcd\x26\xd0\x17\x00\xcc\ \x4a\x11\x97\x92\x92\x8c\x9c\xd9\x73\xb4\x3b\xaf\x5a\x0e\xf5\x54\ \xcc\xeb\x2f\xa4\xe8\x75\xf2\xfc\xf9\xf3\xf8\xe7\xd1\xa3\x10\x19\ \xc3\xfd\xf7\xdd\x87\xbb\xee\xbc\xd3\xab\x3e\x77\x77\x77\xe3\xee\ \xbb\xef\x46\x4b\x4b\x0b\x66\xe7\xcc\x41\x56\xf6\x2c\xfd\x01\x55\ \x24\x82\xe8\xad\x4e\xe9\x2d\x68\x0d\x8f\x67\xe5\xa9\x53\x68\x68\ \x6c\xd0\xea\xb3\x8d\x13\xd9\xac\xb7\xdf\x7e\xbb\xea\x8a\x48\x00\ \x8e\xe8\x57\x00\x99\x95\x7a\x3f\x28\x28\x08\x33\x33\x33\xc1\x98\ \x28\x95\xcc\xb2\x59\xef\x3a\x49\x42\x3d\xab\xb5\x66\xb4\x74\xdc\ \x98\x84\x55\xca\xbc\xfd\x9a\x9a\x1a\x7c\xf1\xcf\x7f\x02\x00\x7e\ \xfa\xc0\x03\xf8\xf1\x8f\x7f\xec\x75\x9f\x5f\x78\xe1\x05\x5c\x6e\ \x69\x41\x5c\x5c\x1c\x32\x67\xcc\x84\x28\x8a\x32\x00\x99\x62\x9d\ \x52\xe1\x84\xa8\x5b\x48\xee\x0e\x4a\x27\x11\x03\x03\x11\x30\x6d\ \xea\x54\xb4\x77\xb4\x63\x68\x68\x48\x39\x0e\x26\xc6\x73\xbf\x04\ \x70\xd3\x98\x7b\x01\xcb\x6e\xbc\xf1\x5a\x10\x5d\x2b\x0f\x5f\xda\ \xc7\x7c\x56\x76\x36\x78\x9e\x97\x59\xeb\x4a\x9d\x2c\x32\xb9\xf5\ \x2e\x68\x59\xeb\xd2\xf3\x15\x56\x3c\x93\xb4\x8b\x7a\xd7\x16\x45\ \x54\x57\x57\xe3\x9f\x0e\xf0\x1f\x7c\xf0\x41\x9f\xc0\xdf\xb5\x6b\ \x17\xf6\x15\x17\xc3\x64\x32\x21\x7f\xe1\x42\x87\x1b\x27\x3a\x0e\ \x87\x35\x2f\xbb\xbf\xfd\x18\xf6\x00\xec\xcf\x2c\xf1\x78\x98\x28\ \xf1\x10\x86\xbf\x2f\xca\x0e\x91\x31\x70\x3c\x87\xcc\xe9\xd3\x75\ \x16\x8d\xb0\xea\x87\x77\xdc\x71\xc3\x98\x1b\x81\xe9\x53\xae\xf9\ \x33\x11\xa5\x48\x7d\x55\xce\xe1\xef\xa7\xa6\xa4\xba\xf4\xbf\xb5\ \x96\x4b\x95\x8b\x27\x0c\xf2\xe0\x89\xf4\x82\x4c\xe3\x00\xa0\x8a\ \x0f\x9c\x3d\x53\x8d\xd2\x2f\x8f\x03\x44\xf8\xf9\xc3\x0f\xe3\x5f\ \x6f\xbf\xdd\x6b\xf0\xeb\xea\xea\xb0\x71\xe3\x46\xd8\x6c\x56\xcc\ \xcf\x5b\x80\xb8\xb8\x38\xf9\xbd\x87\x4d\x3a\x26\xf7\xf3\x95\xd1\ \x4e\x77\x45\x63\xf9\x03\x60\x76\xa9\x6a\xb1\x58\xd0\xd7\xdf\x27\ \x73\x0d\x01\x02\x71\xc8\xc9\xcc\x98\xbe\xd3\x9b\x55\x43\xaf\x54\ \xc0\x8a\x6f\x7d\xeb\xdb\x0c\xb4\x48\x29\xc6\xcd\x66\x13\xa6\x4c\ \x99\x02\xd1\x21\xfa\x89\xe9\x89\xf9\x61\xd3\x47\xa1\xd3\x94\x62\ \x5d\x96\x3d\x09\x19\x09\xc8\x85\x0b\x09\x10\x4e\x57\x57\xa3\xbc\ \xac\x0c\x44\x84\x47\x1f\x79\x04\xb7\xdc\x72\x8b\xd7\xe0\x0b\x82\ \x80\xad\x5b\xb7\xa2\x7f\x60\x00\x29\x69\xa9\x48\x4d\x4b\x1b\x51\ \x41\x4c\x2a\xf6\x99\x5c\xa4\x43\xc3\xf5\x63\x2a\x9f\x45\xae\xfb\ \x99\x5c\xdd\x31\xe7\x28\x11\x52\x53\x53\xd1\xda\xd6\x06\x51\x14\ \x94\xb6\xd4\xac\xc0\xd0\xc0\xef\x02\x78\x77\x4c\x08\x40\x1c\xf7\ \xb4\xfd\x41\xe5\x00\xa7\xa6\xa4\xc0\x6c\x32\xd9\x2d\x62\x10\x98\ \x42\xaf\x93\x1b\x6b\x5d\xa5\xc7\x5d\x00\xce\xf4\x2c\x5a\x06\x54\ \x9f\xae\x42\x45\x79\x39\x88\x08\x1b\xd6\xaf\xc7\xf7\xbe\xf7\x3d\ \x9f\x3c\x9d\x37\xdf\x7a\x0b\x15\x95\x27\x11\x1a\x12\x8a\xb9\x73\ \xe7\x81\x89\x4c\xa5\xd4\x99\x1e\x80\x8c\xa9\xf4\xba\x9e\xb1\x07\ \xe9\x2a\xa2\xf4\x3b\x8e\x8e\x99\x4c\x26\x24\x27\x25\xe1\x52\xdd\ \x25\x2d\xdb\x69\x9d\x37\x04\xf0\xd8\x0b\xb8\x7e\xe5\xca\x42\x06\ \x1c\x50\x5a\xf3\x81\x81\x41\x98\x9f\x3b\x0f\x3c\xcf\xbb\xbc\x01\ \xa9\x93\xe1\xf4\xcf\xd5\x9d\xe1\x9a\xc3\x06\x02\x70\xfa\x74\x15\ \x4e\x9e\x3c\x09\x8e\xe3\x51\xb4\x79\x33\x6e\x5a\xb5\xca\x27\xf0\ \x2b\x2a\x2a\xb0\x66\xed\x5a\x30\xc6\xb0\x74\xd9\x32\xc4\xc5\xc5\ \xa9\x01\x54\x5a\xe7\x6e\x92\x50\xd5\xe7\x6b\x46\x83\x34\xbc\x25\ \x02\x63\x22\x4e\x94\x97\xc3\x62\xb1\xa8\x8c\x67\xe2\xd8\xbc\x3f\ \xbe\xf1\xc7\xe3\xa3\x2a\x01\x18\xc7\xad\x19\x11\xd5\x23\x0f\x90\ \x9a\x92\x6c\x17\xdb\xa2\x28\x3f\x5f\x01\x30\x53\xcd\x58\xa6\x90\ \x00\x5a\xc3\xc8\x46\xea\x4c\x43\x96\x3a\x48\x52\x59\x59\x89\xd3\ \x55\x55\xe0\x38\x0e\x4f\x3c\xfe\x38\xbe\xbd\x72\xa5\x4f\xe0\xf7\ \xf7\xf7\xe3\xc9\xa7\x9e\x82\x20\x08\x98\x9e\x99\x89\xd8\x09\xb1\ \x10\x99\xe8\x5e\xac\x2b\x44\x9d\xf2\x7c\xbb\x54\x50\xf8\x03\x8e\ \xce\x91\x6c\x90\x48\x73\xce\x26\x4e\x4a\xc4\xc5\xda\x8b\x2a\x42\ \x31\xc6\x3d\x0c\xe0\xae\x51\xf3\x02\x6e\xbc\xf1\xc6\x18\x0e\xb8\ \x55\x99\xd9\x13\x10\x10\x80\xd8\xd8\x58\x95\x75\x6f\xb7\x8c\x45\ \xf9\x21\x08\xce\xbf\x75\xe3\xe6\x52\x83\x51\x27\x8e\x6e\x5f\x43\ \x18\xb9\xd7\xc9\x8a\x0a\x54\x9d\x3a\x05\x22\xc2\xd6\xad\x5b\x7d\ \x06\x1f\x00\x5e\x7a\xf9\x25\xd4\xd5\xd7\x21\x2a\x2a\x0a\x33\x66\ \xce\x90\x79\x24\x52\xcb\x7d\xe4\x99\x46\xd6\x2b\x94\x1e\x0c\x63\ \xa2\xae\x17\x24\x8d\x86\x2a\x3d\x26\x51\x94\x8f\x01\x13\x45\x44\ \x47\x47\xc3\x6c\x36\xab\x3c\x02\x8e\xf0\xff\xee\xb8\xff\xfe\x49\ \xa3\x26\x01\x44\x9e\x5f\x0d\x20\x58\x29\xc2\x12\x26\x4e\x74\xe6\ \xc8\xe9\x84\xe5\x14\x13\x45\xe1\x2d\x3b\xb3\x7d\xe4\x62\x9f\xb9\ \x14\xfb\x76\xdd\xca\x00\x9c\x2c\xaf\xc0\xd9\xb3\x67\x61\x32\x99\ \xb0\xed\x99\x67\x70\xdd\x8a\x15\x3e\x83\xbf\x77\xef\x5e\xec\xda\ \xf5\x3e\x78\x9e\x47\xee\x82\xf9\x23\xfd\xd3\x9e\xf4\x1a\x73\x55\ \xae\xc7\x47\x4c\x7a\x69\x40\x48\xc7\x92\x51\x48\x39\xa6\x0a\x00\ \x01\x71\x71\x71\x68\x6a\x6a\x52\xaa\x94\x00\x5e\xb0\xae\x06\xf0\ \xc2\xa8\x10\x80\x88\xee\x53\xea\x30\x9e\xe3\x30\x61\xc2\x04\x3b\ \x3b\x75\xf5\x3a\x93\x03\xc8\xb4\x44\xb8\xd2\xb8\x53\x88\x7d\x92\ \xa8\x10\xc7\x49\x22\x13\x51\x79\xf2\x24\xce\xd5\xd4\xc0\x6c\x36\ \x63\xc7\xf6\xed\x58\xbe\x7c\xb9\xcf\xe0\xb7\xb4\xb4\xe0\xd9\xe7\ \x9e\x05\xc0\x90\x3d\x2b\x1b\x61\x61\x61\x10\x45\x85\x58\x27\xe6\ \xda\xac\x52\x00\xce\x64\xc4\x75\x45\x1d\xa6\x3a\x03\x8e\xc4\x51\ \xa9\x8d\x18\x13\x1d\x83\x96\x96\x16\xe7\x0a\xe2\x70\x3b\x47\x74\ \xab\x27\x04\x30\xac\x02\xbe\xf5\xdd\xef\x66\x12\x51\x96\x72\xad\ \x3f\x26\x3a\x1a\x26\x93\xc9\x75\x2e\x9c\xa8\x93\x1a\xa5\x70\x99\ \x9d\x12\x44\xd4\xc8\xaa\x51\x04\x5d\x44\x26\xa2\xa2\xbc\x1c\xe7\ \x6a\xce\xc2\x6c\x36\xe3\xf9\xe7\x9e\xf3\x0b\xf8\x8c\x31\x3c\xb5\ \x75\x2b\xba\xba\xba\x31\x31\x21\x01\x69\xe9\xe9\xce\x7b\xcb\x52\ \x49\xe4\x99\xa5\x60\x22\x64\xf1\x0d\x55\xee\xa2\x64\x84\xe4\x69\ \x0c\xc3\x62\x5f\x31\x0e\x70\x7d\xf0\x3c\x8f\xc8\xc8\x48\x49\xc2\ \x0d\x86\xb3\x88\x16\xdc\x7b\xef\xbd\xc9\x7e\x97\x00\x44\xb4\x8a\ \x34\xc2\xac\x51\x51\x51\x10\x05\xc1\x29\xb6\xc9\xa5\xbf\x41\x9a\ \xd6\xbd\x74\xb9\x94\xa9\x44\xa6\x86\x81\xcc\x80\xf2\x8a\x72\x5c\ \xbc\x70\x11\x81\x01\x01\xf8\xe5\x8b\x2f\x62\xd1\xa2\x45\xf0\x47\ \xf9\xcb\xdb\x6f\xe3\xe8\xd1\xa3\x08\x0c\x0a\xc2\x9c\x9c\x1c\xd9\ \x6a\xa2\xbb\xfd\x0a\xa4\x56\xac\x32\xe6\x41\xe4\x2e\xb4\x4d\x6e\ \xd6\x3a\x98\x6a\x28\x23\x23\xc2\xed\x29\x64\x8a\xf8\x37\xf1\xb8\ \x15\xc0\xaf\xfd\x4b\x00\x60\x15\x91\x1c\x30\x93\xc9\x8c\x90\xd0\ \x50\xbb\x18\xd2\x04\x58\xdb\x9a\x57\x02\xcc\x54\x1e\x10\xe9\xae\ \x9e\x81\x01\x27\x4e\x9c\xc0\xa5\xda\x5a\x04\x05\x07\xe1\xa5\x17\ \x7f\x89\x85\x0b\x17\xfa\x05\xfc\x33\x67\xcf\xe2\xf7\xbf\xff\x3d\ \x00\x60\xce\x9c\x39\x08\x08\x08\x90\xe9\x7d\x99\x6a\x22\x38\x97\ \xae\x55\x91\x1c\x3f\xa4\x59\x30\x89\xd8\x27\x75\x68\x00\x60\x40\ \x70\x70\x08\xcc\x66\x33\x04\xe7\x66\x15\x4e\x35\xfa\x7d\xa3\x04\ \x30\xf4\xa4\xd7\xdf\x76\x5b\x64\x80\x65\xa8\x05\x80\xd9\x09\x28\ \x01\x31\x31\x31\x48\x98\x98\xa0\x0f\xb8\x01\xa9\xa0\x0d\xf8\x48\ \x45\x5a\x67\x60\x28\x2f\x3b\x81\xba\xba\x4b\x08\x0a\x0a\xc6\xaf\ \xff\xe3\x3f\xb0\x60\xc1\x02\xbf\x80\x6f\xb1\x58\xb0\xfa\xce\x3b\ \x51\x53\x53\x83\xf4\xc9\xe9\x98\x35\x7b\xb6\x6c\x96\x93\xcb\xf7\ \xcc\xb4\x57\x2f\xdd\xcd\x7a\xe5\x75\x88\xf4\xf7\x2a\xd0\x8b\x89\ \xb4\xb6\xb4\xa1\xb3\xab\x53\x89\x81\x40\x02\x4b\xd8\xb9\x73\xa7\ \xdb\xdc\x41\x43\x36\x40\xe0\xd0\xd0\xb7\x08\x64\x56\xbe\xce\x15\ \xe1\x78\x4f\x5f\xa9\xc7\x45\x8d\xb4\x6b\xe7\x9b\x37\x72\x6b\x41\ \x6e\x0d\x2b\xf4\xa0\xf4\x5a\xa2\x28\xa2\xac\xb4\x14\x75\x97\x2e\ \x21\x24\x38\x04\xbf\x7d\xe5\x15\xbf\x81\x0f\x00\xbf\xf9\xcd\x6f\ \x50\x53\x53\x83\xb0\xf0\x30\xcc\xcc\xca\x82\xd2\x9c\x11\x45\xf5\ \xb3\x8d\xf4\x45\x54\xd9\x08\x50\x26\xb3\x6a\x1c\xd2\x73\xc9\x71\ \x1d\xfb\xc1\x54\x2b\x08\x23\x63\x2c\x7f\x5f\x22\x2c\x2c\x04\xea\ \x57\xee\xc0\x83\xe7\xf3\xfd\xa7\x02\x38\x6e\x91\x92\x81\x1c\x11\ \x02\x03\x03\x9d\x56\xa8\x92\xd7\x9a\x62\xdd\x5d\x5d\x19\xf3\x1d\ \x59\xe5\x41\x59\x69\x29\x9a\x1a\x1b\x11\x1a\x16\x8a\xdf\xbc\xf2\ \x1b\xcc\xcd\xc9\xf1\x1b\xf8\x47\x8e\x1c\xc1\xdb\x7f\xfd\x2b\x88\ \x23\xe4\xe4\xe4\x80\x08\xf6\x65\x5e\x55\x14\x0e\x86\xf5\xb4\xa6\ \x9e\x57\xc4\xfc\x18\xd3\x93\x9a\xca\xd0\xb7\x3a\xe8\x35\xcc\x9f\ \x80\x80\x40\xfb\x2e\x29\x4c\x2e\x55\x89\x90\x07\xe0\x7d\xbf\x10\ \x80\x88\x72\x94\x62\x3e\x24\x38\xd8\xc1\x48\x51\x27\xcf\x81\xdc\ \xab\x47\x03\x59\x31\x8c\x89\x38\x51\x56\x86\xe6\xa6\x26\x84\x85\ \x85\xe1\x77\xbf\xfd\x1d\x66\x3b\xc4\xb3\x3f\x4a\x57\x57\x17\x9e\ \x7c\xea\x49\x30\x26\x62\x7a\x46\x26\x22\x22\x23\x64\x29\x64\x50\ \xc4\x1d\x5c\xeb\x6d\xb9\xd8\x67\x0a\xf7\xcd\x91\xdb\x65\x24\x6a\ \xe0\xa6\x2e\x47\x3b\x38\x28\x08\x83\x83\x83\x4a\x1d\xba\xd0\x6f\ \x12\xc0\x49\x00\x89\xb5\x1e\x1c\x12\x22\x49\x83\xd2\xd2\x69\xfa\ \x5d\x60\x6a\xf4\x9d\x2d\x24\x21\xb3\x28\x8a\x38\x51\x76\x02\x97\ \x9b\x9b\x11\x11\x11\x81\xff\xfc\xfd\xef\x91\x25\x11\xcf\xfe\x28\ \x4f\x3f\xf3\x0c\x5a\x5a\x5a\x11\x1b\x1b\x8b\xf4\xc9\x53\x1c\xe9\ \x6b\x23\xcb\x7c\xea\x95\x39\xd2\x07\x58\x53\x12\x32\x03\x80\xfb\ \x66\x48\x06\x06\x05\x61\x68\x68\x48\x26\x3e\x38\xd0\x7c\x8d\xe8\ \xbb\xe7\x36\xc0\xaa\x5b\x6f\x9d\xc2\x11\x45\x29\x5f\xee\x54\xc6\ \xf5\xa4\x7a\x4a\xd4\xd1\xe3\xea\x7c\x7e\x11\x60\xa2\x43\xa0\x49\ \x72\xfe\x01\x08\xa2\x88\xd2\xe3\xa5\x68\x6e\x6e\x46\x64\x64\x24\ \xfe\xf0\xea\xab\x7e\x07\xff\xdd\x77\xdf\xc5\xbe\x7d\xfb\x60\x36\ \x9b\x30\x2b\x67\xf6\xc8\x70\xb9\x3a\xdc\x9c\x60\x44\x6f\x43\xe3\ \x5d\x88\x91\x80\x82\xc4\xae\x80\xdc\x76\x92\x7e\x55\x3a\xf8\x12\ \xdd\x2f\x4d\xce\x89\x79\x60\xdd\x03\x19\x3e\x4b\x00\x9e\x28\x07\ \x92\x35\xe9\x61\x92\x75\x76\x76\x82\x31\x20\x22\x22\x42\x1d\xf1\ \xd3\x55\x03\x23\xb3\x8a\xe9\xaf\xa5\x80\x89\x22\x4a\x8f\x1f\x47\ \x5b\x6b\x2b\xa2\xa3\xa3\xf1\x87\xff\x7c\x15\xd3\xa7\x4f\xf7\x2b\ \xf8\x97\x2e\x5d\xc2\x8b\x2f\xfd\x12\x0c\x0c\x33\xb2\xb2\x10\x14\ \x18\x64\x5f\xe6\x25\xc0\xe5\x4a\x8f\xc6\xc2\x8e\xcc\xdb\x71\x37\ \x79\x15\x9e\xb0\xeb\x79\xef\x5e\x31\xf4\xf6\xf6\xa1\xa7\xb7\x47\ \xb2\x5f\xe1\x08\x46\x3c\xf8\x6c\x00\xa7\x7d\x22\x00\x07\xcc\x94\ \x5d\x5c\x72\x8f\xee\xee\x2e\x58\xad\x56\x44\x45\x45\x49\xb6\x6b\ \x53\x67\xc4\x11\x93\x03\xee\xca\x58\x12\x04\x01\x27\xca\xca\xd0\ \xde\xd6\x86\x98\x98\x18\xbc\xb6\xf3\x35\x4c\x9d\x3a\xd5\xaf\xe0\ \x0b\x82\x80\xa2\xa2\x22\xf4\xf7\xf5\x61\x52\xe2\x24\x24\x4c\x4a\ \x70\x26\xb1\x28\xc5\xbe\xb4\x4e\x90\xe6\x22\xaa\x63\x1e\xf2\xb5\ \x0c\x17\x6b\x1b\x3a\x2b\x85\x34\x6c\x28\xba\x9b\x47\x64\x0f\x83\ \xf7\x74\xf7\x60\x70\x68\xc8\xb9\xcb\x8a\xc6\x8e\xa5\x29\x3e\x4b\ \x00\x8e\x68\x22\xd3\xc9\x6e\x25\x00\x83\x83\x83\x68\x69\x6d\x41\ \x74\x54\x94\x63\xa3\x46\xa6\x02\x5c\x9d\x09\x42\x9a\x41\x0f\x41\ \x10\x50\x56\x5a\x8a\x8e\xf6\x0e\x4c\x98\x30\x01\xaf\xbf\xf6\x1a\ \xa6\x4c\x99\x02\x7f\x97\x9d\x3b\x77\xe2\x44\x79\x39\x82\x83\x83\ \x90\x39\x63\x86\x46\xb0\x47\x5b\x8f\xfb\xa6\xb7\x99\xaa\xef\xa4\ \x58\x32\x80\x2b\x73\x4a\x52\x6c\x56\x1b\xba\x7b\xbb\x21\x0a\xc2\ \x88\xd1\xa9\xda\xb1\x94\x00\xb0\x64\x9f\x09\x00\xa2\x04\x72\x19\ \xa5\x03\x44\x41\x40\x47\x47\x07\x42\x82\x83\x11\x1a\x1a\x06\x90\ \x7a\xf1\x02\xe4\xda\x78\x12\x04\x1b\xca\x8e\x97\xa2\xa3\xa3\x13\ \xf1\x71\x71\x78\xe3\xf5\xd7\x91\xae\xdc\x2b\xc8\x0f\xa5\xec\xc4\ \x09\xbc\xf6\xfa\xeb\x20\x22\x64\xcf\x9e\x05\x93\x62\x07\x32\x79\ \x8e\x82\x0b\x80\x49\x1e\xbf\xd0\x5a\x03\x52\x4e\x5f\xd2\xbc\x14\ \xd3\x58\x01\xd4\xb8\x2f\xd9\x89\xd8\xdf\xdf\x87\xc1\xc1\x41\x67\ \xf6\x94\xde\xce\xe5\x8e\x7c\x41\x3f\x10\x80\xe3\xe2\xc8\xb9\xfb\ \xa5\xab\xa8\x16\xd0\x3f\x30\x80\x21\x8b\x05\x61\xa1\xa1\x08\x50\ \xbd\x0a\xa6\x3f\x23\x6c\x36\x1b\x4e\x94\x96\xa2\xab\xab\x0b\x09\ \x09\x09\x78\xe3\xb5\xd7\x91\xea\xd8\x8b\xc7\x9f\xa5\xaf\xaf\x0f\ \x1b\x37\x6d\x84\x20\x0a\x98\x3c\x65\x0a\xa2\xa2\xa3\x9d\x81\x2a\ \x3d\xf7\xcc\x33\xbd\xad\x56\x0f\xcc\x8d\x37\x64\xcc\x6b\x66\xb0\ \x5a\x6c\xe8\x1f\xe8\xb7\xaf\xbb\x60\x64\xb3\x6a\x57\x98\x90\x3f\ \x08\xc0\x11\x4b\xd0\x0e\x7a\x68\xd7\x45\x51\x44\x77\x4f\x0f\x02\ \x86\x86\x10\x1c\x1c\x6c\xdf\x41\x43\x1d\xd9\x70\x06\x8a\x6c\x36\ \x01\x27\x4a\x4b\xd1\xdd\xdd\x8d\xc4\xc4\x44\xbc\xf5\xc6\x9b\x48\ \x4a\x4a\xc2\x68\x94\x1d\xcf\xee\x40\x43\x7d\x3d\x22\x22\x22\x31\ \x65\xca\x64\xe7\x12\xb6\x7e\x0e\x82\xd6\x26\x74\x5a\xa9\x68\xe4\ \xde\x11\x66\x1a\x92\x5e\x57\xec\x8f\x18\x01\x82\x20\x62\x70\x70\ \x10\x56\x9b\xd5\xf9\xd2\xad\x3b\x0c\x9c\x75\x0e\x93\x7c\x26\x00\ \x81\xe2\x9c\x52\xdf\x20\x09\x00\xfb\xcb\x93\x36\x9b\x15\x66\x73\ \x00\x82\x82\x82\xc0\x73\x9c\x3c\xb2\x46\x76\x5d\x56\x76\xbc\x0c\ \x3d\x3d\x3d\x48\x4e\x4a\xc2\x5b\x6f\xbe\x89\xc4\xc4\xc4\x51\x01\ \xff\xa3\x8f\x3f\xc6\x7b\xef\xed\x02\xcf\xf3\xc8\xca\xce\x52\x25\ \x78\xb8\x9d\xdf\x4c\x2a\xf6\x49\x3b\x47\xc1\x9d\x49\x40\xae\xee\ \x03\x48\xb3\x68\x05\x51\x80\xc5\x62\x1f\xc3\xe1\xb1\x75\x3f\xfe\ \x50\x4a\xa0\x10\xdf\x09\x40\xd2\x7d\x7c\x8d\x3c\x80\x7c\xb9\xd4\ \x66\xb3\xa1\xb7\xb7\x17\x01\x66\x13\x02\x02\x03\x1d\x49\xa3\x04\ \x51\x10\x50\x7a\xfc\x38\x7a\x7b\x7a\x91\x9a\x9a\x86\xb7\xde\x78\ \x03\x09\x09\x09\xa3\x02\x7e\x53\x53\x13\xb6\x6d\x7b\x06\x00\xc3\ \xb4\xe9\x19\x08\x09\x0d\x51\x8b\x7d\x06\xd5\x92\xb3\xdc\x9a\x57\ \x7a\x37\xc6\xe3\x76\x52\xd2\x28\x15\x80\x52\x0d\xd8\x04\x01\x56\ \xab\x05\x36\x9b\xcd\x03\xd0\x75\x97\xa8\x83\xfd\x41\x00\xe3\x8c\ \x23\xbd\xd5\x31\x82\x4d\x10\x60\xeb\xef\x07\xcf\xf1\x30\x99\xcd\ \x68\x6b\x6d\x41\x6f\x4f\x2f\x26\xa7\xa7\xe3\x8d\x37\xde\xc4\xc4\ \xf8\xf8\x51\x01\x5f\x14\x45\x14\x6d\xd9\x82\xee\xee\x6e\x44\x46\ \x46\x22\x29\x29\x51\x35\xf3\x95\x7a\x9c\x69\xba\x67\xf0\x05\x7a\ \x89\x58\x27\x55\xec\x98\x31\x06\x9b\xcd\x06\x9b\xcd\x26\xc9\x3d\ \x20\x6f\x00\x57\xe7\x28\xf8\x93\x00\xae\x6e\x68\x60\x43\x64\xfb\ \x22\x0b\x13\x61\xb1\x0c\xc1\x62\xb1\x42\xb0\x09\xce\x37\x87\x47\ \xb7\x8c\x44\xd4\xec\xfe\x3e\xe9\x1a\x6e\x70\x15\x3f\x35\x82\xb6\ \xb2\xe2\x62\xb3\x02\x41\x14\x20\x8a\x22\x04\x41\xf0\x6a\x92\xb9\ \x9d\x84\x06\x46\xc6\x6d\x28\x98\x38\xe8\x6d\x64\x08\x8e\x23\xf9\ \x2b\x4a\xa4\x57\x87\x6a\xa7\x8b\xd8\xd8\x18\x84\x84\x86\xa0\xa6\ \xa6\x06\xab\x57\xaf\x46\xa3\x23\xc1\xd1\xdf\x85\xe3\x38\x6c\xdf\ \xb6\x1d\x11\x11\x11\xe8\xea\xec\x42\x7d\x5d\xbd\xea\x5d\x3e\xb8\ \xca\x48\x96\xa5\xa3\xb9\xab\x8b\xea\x0d\x2c\xc1\x86\x83\xba\xf6\ \x8c\x61\x41\x80\xd5\x66\xc5\x90\x65\x08\x56\xab\xd5\xb1\xea\xa8\ \x3f\x56\xae\xc7\x55\x5e\xe7\xe4\x4b\xc2\x86\x04\x01\xe7\xfe\x04\ \x1a\x18\x7e\xa0\x11\xc0\xa1\xb9\xf1\xa3\x2b\xc0\x55\xe4\xe1\x79\ \x64\x39\x12\x2e\x2f\xd6\xd6\xe2\x8e\xd5\x77\xa0\xa1\xa1\x61\x54\ \x48\x90\x90\x90\x80\xc7\xb7\x3c\x0e\x00\x38\x53\x7d\x06\x03\x7d\ \xfd\xd0\xcd\x49\xd0\xa8\xbb\x6b\x71\x75\x25\x26\x38\x40\xb7\x5a\ \xed\x87\xcd\xaa\x4a\xe4\x74\x05\xb8\xbb\x83\x23\x39\xe0\x8a\x76\ \x9b\xcf\x04\x00\x51\xbf\xb1\x87\x51\x03\x2e\xb5\x5e\xb5\xea\x26\ \x93\x09\xd9\xb3\x66\x21\x3c\x3c\x1c\xf5\x75\xf5\xb8\x63\xf5\x6a\ \xd4\xd5\xd5\x8d\x0a\x09\x56\xae\x5c\x89\x9b\x6e\xfa\x2e\x04\x41\ \x40\x45\xc5\x49\x08\x82\xe0\xf2\xed\x62\x5d\x29\xa0\xc8\xf9\x97\ \xbd\xa5\x2c\xda\xc1\x16\x05\x01\x36\x9b\xcd\xee\x09\x09\x36\x19\ \xe0\x7a\x63\xe5\x7e\x3c\xa1\x02\x5c\xf7\x3a\x23\x24\xf2\x3d\x23\ \x88\x88\x1a\xf5\xc4\xba\x3b\x80\x8d\xb0\xd7\x64\xe6\x91\x3d\x2b\ \x1b\x11\x91\x11\x68\x6c\x6c\xc0\xea\x3b\x57\xa3\xb6\xb6\x76\x54\ \x48\x50\xb4\x79\x33\x92\x26\x25\xa2\xa7\xbb\x1b\xe7\xcf\x9d\x37\ \x28\xf6\x45\xf5\xab\xed\x1a\x9b\x4e\x09\x82\x20\x7b\xad\x5d\x0d\ \x38\x0c\x01\xec\x4e\xac\xeb\x6d\xb6\xad\xb9\x17\x33\xc7\x35\xf9\ \x81\x00\x5c\x9d\x51\xb1\x6e\x4c\x5c\xa9\xaf\x63\x32\x9b\x90\x35\ \x2b\x1b\x91\x91\x91\x68\x6a\x6a\xc2\xea\xbb\x56\xe3\xfc\x79\xff\ \xff\x56\x73\x58\x58\x18\x9e\x7f\xfe\x79\x70\x1c\x87\xda\x8b\xb5\ \xe8\xe8\x68\x77\x91\x76\xae\x2f\x15\x48\xc7\x58\x96\x4f\x04\xef\ \xf4\xb8\x3b\xb1\xee\xae\x2e\x27\x06\x6b\xf1\xdd\x06\x20\xaa\xf3\ \x04\x64\xe9\x60\x70\xda\x1b\x20\x6b\xb2\xd7\x64\x32\x21\x6b\xf6\ \x2c\x44\x45\x47\xe1\xf2\xe5\x16\xdc\x79\xf7\x5d\xa8\x71\xfe\xc0\ \x82\xff\x4a\x4e\x4e\x0e\xd6\xdc\xbf\x06\x8c\x31\x54\x9d\xaa\x82\ \x20\xd8\xd4\xdb\xd9\x2a\x25\x19\x14\x9b\x36\xba\x01\xdc\xbb\x89\ \xe1\xe3\x24\x53\x1a\xdd\x76\x0b\xde\x77\x09\x20\x82\xd5\x79\xa2\ \xd7\x15\x2f\x29\xe8\x6d\x80\x0c\xad\xfd\x04\x79\x9e\x47\xf6\xac\ \x59\x88\x8e\x8e\x46\x5b\x6b\x2b\xee\xba\xeb\x4e\x9c\x39\x73\xc6\ \xef\x24\x58\xbb\x76\x2d\x66\xcf\x9e\x83\xa1\xc1\x21\x9c\xa9\x3e\ \xa3\x06\x5c\xb1\x7f\xbf\x51\x9b\xc7\xa8\x98\xd7\x04\x1c\xae\x00\ \x75\x57\x57\x48\x9c\xe1\x3e\x00\xcd\x7e\xf0\x02\xb8\x4b\xde\x88\ \x75\x8f\xea\x50\x92\x20\x1b\x31\xb1\x31\xe8\xe8\xe8\xc0\x3d\xf7\ \xdc\x83\xaa\x2a\xff\xfe\x30\x37\xcf\xf3\x78\xee\xd9\x67\x11\x12\ \x12\x82\xe6\xa6\x66\x5c\x6e\xbe\x6c\x10\x70\x63\x7a\xdb\x53\x3d\ \xee\xa9\x98\x87\x0e\xe0\x2a\xf2\xf2\x7c\xa5\xcf\x04\xe0\x81\x0a\ \xb7\x80\x7b\xcd\x5e\xb9\x8e\xe3\x24\x24\xc8\x9a\x95\x8d\xd8\xd8\ \x58\xb4\x77\xb4\xe3\xdf\xee\xfd\x37\x54\x9e\xaa\xf4\x2b\x09\x52\ \x53\x53\xb1\x61\xc3\x06\x80\x80\xea\xd3\xd5\xf6\x1f\x7f\xf4\x41\ \x8f\x7b\xe2\x9e\xc1\x2b\x31\x0f\xf7\xf7\x52\x7a\x59\xb0\x95\x1a\ \xc0\xd7\x75\x39\x7e\xfc\x78\xfb\xbc\xdc\x79\x0f\x11\xd9\xdf\x0a\ \x56\xb3\xd7\x33\x31\xaf\xec\x3c\xa7\x73\x2e\xc7\x71\x98\x10\x1f\ \x87\xfe\xbe\x3e\xb4\x77\x74\xe0\xe3\x8f\x3f\xc6\xc2\xfc\x7c\xc4\ \xfb\x31\x64\x3c\x63\xc6\x0c\x9c\xa9\x3e\x83\x9a\x9a\x1a\xf4\xf4\ \xf4\x20\x31\x71\x12\x88\x38\xaf\x80\xf1\x4a\x8f\xc3\xbd\x1e\x27\ \x0d\xdb\x44\x0f\x70\xc5\xd1\xb9\xf5\xa9\x1d\x1b\x7d\x8f\x03\x00\ \x8c\x88\xfb\x42\x0f\x50\x4f\x03\x42\x9c\x07\x52\x62\x78\xe5\x2e\ \x3e\x3e\x0e\x3d\xdd\xdd\xb8\xf7\xbe\x7b\x51\x56\x56\xe6\x57\x49\ \xf0\xe4\x93\x4f\x22\x6e\x42\x1c\x3a\x3b\x3a\x51\x7b\xb1\xd6\x33\ \x3d\xee\x81\x7b\x66\x4c\xec\x43\x6f\xab\x78\xd7\x86\xb7\xd6\x24\ \xe3\xa8\xd4\x48\xff\x0d\xbd\x19\xc4\x11\x8e\xe8\xeb\x6d\xb5\x58\ \x97\xd6\x39\x5d\xa3\xc5\x58\xdd\x49\x82\x89\xf1\xe8\xed\xeb\xc3\ \xda\x07\xd6\xe2\xcb\xe3\x5f\xfa\x8d\x00\x51\x51\x51\xd8\xb6\x6d\ \x1b\x38\x8e\x43\x4d\xcd\x39\xf4\xf4\xf4\x18\x0e\xb3\x7a\xae\xb7\ \xbd\x10\xeb\xee\xa4\xaa\x9e\x97\x05\xce\x7f\x04\x20\x8e\x8e\xea\ \x8b\x7d\x6d\x3d\xae\x6b\x2c\x19\x56\x19\x23\x9e\x04\xc7\x71\xc8\ \xca\xce\x42\xc2\xa4\x04\xf4\xf6\xf6\xe2\x81\x07\x1e\xc0\xb1\x63\ \xc7\xfc\x46\x82\x82\x82\x02\xfc\xe8\x47\x3f\x02\x13\x19\x2a\xca\ \x4f\x3a\xe3\xf3\x6e\xc2\xac\xde\xe9\x71\x4f\xc5\xba\x66\xdd\xc0\ \xb3\x70\xec\x90\xdf\x08\x00\x01\x9f\x13\x91\xe0\x56\xac\x1b\x00\ \xd8\x1b\x9d\x37\x6c\x13\xcc\x9c\x39\x03\x93\x12\x27\xa1\x7f\xa0\ \x1f\x6b\x7f\xba\x16\x9f\x1f\xfd\xdc\x6f\x24\x58\xb7\x6e\x1d\xa6\ \x4d\x9b\x8a\xfe\xbe\x3e\x9c\xa9\xae\x36\x12\x66\xf5\x4e\x8f\x1b\ \x76\x33\xdd\x84\xd9\x5d\x48\x18\x8e\x38\x6b\xa0\x69\xe8\x13\x43\ \x1e\x91\x91\x93\x8e\x1d\x3b\xd6\xbf\x20\x6f\xc1\x0a\x80\xd2\x3d\ \xd5\xe3\x46\x7d\x57\x23\xa2\x90\x88\x10\x3f\x31\x1e\x43\x43\x43\ \xe8\xec\xe8\xc4\xee\xdd\xbb\x91\x95\x9d\x85\x94\x94\x14\x9f\x09\ \x60\xe2\x4d\xc8\x99\x3b\x17\x7f\xff\xfb\x3f\xd0\xd9\xd1\x81\xc8\ \xc8\x48\x84\x85\x85\x79\xe1\xae\x19\xd3\xe3\x9e\x1a\xcb\x70\xa3\ \x7e\x15\x81\xaa\xfd\x45\x9b\xb7\xef\xf4\x9f\x04\x00\xc0\x38\xf6\ \x7f\x5e\xfb\xf9\x0a\xc0\x5d\x75\x9e\x33\x10\x69\x9c\x99\x35\x03\ \xc9\x29\xc9\x18\x1c\x1c\xc4\xba\x75\xeb\x50\x52\x52\xe2\x17\x29\ \x90\x31\x2d\x03\x0f\x3d\x68\xdf\x7c\xfb\x64\x45\x25\x86\x86\x7f\ \xce\xcd\x57\xf7\xcc\x40\xa4\xd1\x23\xb7\x5a\x77\x9c\x9c\xd7\x79\ \xdf\x68\x9f\x0d\x13\x20\x80\x02\xfe\x46\x44\xcc\x5b\x3d\xee\xef\ \x30\xeb\x8c\x99\x33\x90\x9a\x96\x0a\x8b\xc5\x82\x87\x7f\xfe\x30\ \x3e\xfb\xcc\x3f\xbf\xb9\x7c\xc7\x1d\x77\x20\x2f\x2f\x1f\x16\x8b\ \x05\x95\x15\x27\xfd\xe3\x9e\xc1\x33\x03\xd0\x75\xc0\xcd\xbd\x14\ \xe5\x89\x19\x26\x80\xe1\xbd\x82\x8f\x1e\x3d\xda\x9d\x9f\x9f\xf7\ \x1d\x80\x92\xbc\xd5\xe3\xfe\x0e\xb3\x4e\x88\x8b\x83\x20\x08\x68\ \xef\x68\xc7\xa7\x7b\x3e\xc5\xd4\x6b\xa6\x62\xf2\xe4\xc9\x3e\x11\ \x80\x88\x90\x9f\x97\x8f\xf7\xde\x7b\x0f\xed\x1d\xed\x08\x0c\x0c\ \x40\x54\x54\xa4\x57\xd2\x8a\x3c\x11\xeb\x2a\x3d\xae\x17\x69\x84\ \xcb\xc0\x14\x47\x74\x72\xf3\xe6\x27\x9f\xf6\xbb\x04\x70\x0c\xce\ \xdf\x3c\x4d\xfc\x30\x0e\xb8\x77\x61\xd6\xcc\xcc\xe9\x98\x9c\x9e\ \x0e\x9b\xd5\x8a\xf5\x1b\x1e\xc3\xee\x4f\x77\xfb\x2c\x05\xe2\xe3\ \xe3\xb1\xa5\x68\x8b\x7d\xe7\xd1\xaa\xd3\xe8\xeb\xeb\xf7\xc2\xe0\ \x85\x5b\xbd\xed\x5a\x8f\x7b\xb7\x94\xcc\x88\x5e\xf3\x28\x2c\xee\ \xc9\xc9\x8b\x0a\x16\x9d\x63\x10\x1f\x22\x22\xde\x13\x3d\xee\xeb\ \x72\xa9\xbb\x30\xeb\x84\x09\x13\xc0\x18\x43\x5b\x5b\x3b\xf6\xec\ \xd9\x83\xf4\xf4\x34\x9f\xdf\x27\x9c\x32\x65\x0a\x1a\x1b\x9b\x70\ \xba\xaa\x0a\x5d\x5d\x5d\x48\x4e\x4e\x02\xc7\x71\xde\xeb\x71\xf2\ \x58\x8f\x7b\x73\x0c\x04\x05\x08\x77\x7f\xfc\x71\xf1\xc0\xa8\x10\ \xe0\xc8\x91\x23\xbd\xf9\x05\xf9\xd3\x08\x98\xe3\x89\x1e\xf7\x46\ \xe7\x79\x1a\x66\x8d\x9d\x10\x0b\x00\x68\x6f\x6f\xc7\xde\x7d\xfb\ \x90\x9c\x9c\x8c\x8c\x69\x19\x3e\x91\x20\x2f\x6f\x01\x3e\xd9\xfd\ \x09\x5a\x5a\x5a\xc0\x60\xdf\x9c\xd1\xd3\x3e\x19\x8b\x91\x40\xc7\ \xe0\xf5\x20\x1f\xd0\x9e\xae\xf7\xdf\x8f\x3d\xfa\xc4\x5f\x3c\xca\ \x99\xf4\x3c\xcb\x12\xbf\xf2\x87\x58\x1f\x8d\x30\xeb\xb4\x8c\x69\ \x98\x96\x31\x0d\xa2\x28\xe2\x89\x27\x9e\xc0\x3f\xde\xfb\x87\x4f\ \x04\x08\x09\x09\xc5\xb6\x67\xb6\x83\xe3\x78\x9c\xab\x39\x8f\xf6\ \xf6\x76\xcf\x22\x7e\x2e\xc5\xba\x91\x44\x5a\xd7\x75\x79\x52\x2e\ \x00\x91\xfd\xc1\xe3\x95\x51\x4f\xbf\x70\xf4\xf0\xd1\xa6\x85\x05\ \x0b\x97\x13\x67\x8f\x09\x8c\x56\x36\xab\xb7\x61\xd6\x98\xd8\x18\ \xf0\x3c\x8f\xb6\xd6\x56\x7c\xf6\xd9\x67\x88\x8b\x8b\xc3\x8c\x19\ \x33\xbc\x26\xc1\xc4\x89\x13\xc1\x44\x11\x5f\x7e\x79\x0c\x6d\xad\ \x6d\x48\x49\x4d\x81\x89\x37\x19\xd2\xe3\xbe\x4d\x06\xd7\x59\xd8\ \x1a\xef\x66\x7e\xb1\x71\x83\x23\xf3\x75\x34\x09\x00\x00\x8b\x0a\ \x17\x75\x03\xf8\xd7\x51\xcc\x66\xf5\x29\xcc\x1a\x13\x13\x0d\xb3\ \xc9\x84\x96\x96\x56\x1c\x38\x50\x82\xd8\x98\x18\xcc\x9c\xe9\xfd\ \xee\x22\x73\xe7\xce\xc5\x91\x23\x87\xd1\xd0\xd0\x80\xc1\xc1\x41\ \x24\x26\x26\x8e\x9a\x1e\xd7\x10\xeb\x7a\x80\x2b\x25\xf3\xbd\x9f\ \x7e\xb2\xf7\xec\x98\x10\x20\x25\x29\xe5\x4c\x64\x74\xe4\xf7\x89\ \x68\xe2\x28\x65\xb3\x7a\x1c\x66\x55\x1a\xa1\xd1\x31\xd1\x08\x30\ \x9b\xd1\xd2\xd2\x8a\x83\x07\x4b\x10\x11\x19\x89\xec\xec\x6c\xaf\ \xdf\x2d\xc8\xcd\x9d\x8f\x5d\xef\xbd\x87\xf6\xf6\x76\x84\x86\x86\ \x38\xb7\x69\x55\x05\xb9\xe0\xbd\x1e\xd7\x14\xeb\x86\xdc\x33\x1c\ \xda\xf8\x58\xd1\x26\xaf\x92\x63\xbc\xf9\x52\x65\x65\x25\x5b\x5c\ \xb8\xf8\x2c\x11\x56\x8f\x4a\x36\xab\x2f\x59\x30\x92\xb6\xe8\xe8\ \x68\x04\x06\x06\xe2\xf2\xe5\x16\x1c\x3e\x74\x18\x21\xa1\x21\x5e\ \xef\x30\x16\x19\x19\x89\x98\xd8\x18\xec\xdf\xbf\x1f\x6d\x2d\xad\ \x48\x4e\x49\x42\x40\x40\x80\xc7\x7a\xdb\x95\x1e\xf7\xf4\xa7\x6b\ \x9d\xf8\x33\xdc\xf5\xe9\xa7\x7b\x2f\x8c\x19\x01\x00\xe0\xf0\xc1\ \xc3\xe7\x16\x2d\x5e\xb4\x80\x88\x32\xfc\x9e\xcd\xea\x43\x16\x8c\ \xb2\x1e\x15\x15\x85\xa0\xa0\x40\x5c\x6e\xbe\x8c\x23\x47\x8e\x20\ \x28\x28\x08\x73\xe6\x78\xb7\xc7\x60\xe6\xf4\x4c\xd4\xd4\xd4\xe0\ \xdc\xb9\x73\xe8\xec\xea\x42\x6a\x6a\x8a\xc7\x09\x24\xfe\x00\x5c\ \x51\xf6\x6d\xdc\x50\xe4\xf5\x6f\x09\xfb\xf4\xd3\xb1\x8b\x96\x2e\ \xfa\x92\x03\xad\x75\xe0\xe1\xb7\x6c\x56\x1f\xb2\x60\x34\x89\x13\ \x15\x1d\x85\x90\xe0\x10\x34\x37\x5f\xc6\xe7\x9f\x7f\x0e\x93\xc9\ \x84\xb9\x73\xe7\x79\xd5\xe7\xfc\xbc\x7c\x7c\xf8\xd1\x87\x68\x6b\ \x6d\x03\xc7\xdb\xb7\xca\x37\xe0\x9e\xf9\x13\x70\x69\xb1\xf2\x84\ \x5b\x76\xef\xde\xdb\x7c\x45\x08\x70\xb8\xe4\x70\x6b\x61\xe1\xa2\ \x78\x22\xca\xf3\x46\x8f\xfb\x92\x05\xe3\x69\x98\x35\x32\x2a\x12\ \xa1\x21\xa1\x68\x6e\xba\x8c\x7f\x7e\x61\xff\x1d\xc1\xdc\xdc\x5c\ \x8f\xfb\x1c\x18\x18\x88\x8c\x69\x19\xf8\xe8\xc3\x0f\xd0\xd6\xd6\ \x8e\x89\x09\x13\x11\x1c\x1c\xec\xbb\x1e\xf7\xa2\x30\x86\xe7\x36\ \xac\x2f\x7a\xdb\xa7\x04\x59\x5f\x1f\xe2\x86\xeb\x73\x0f\xda\x44\ \xf3\x0f\x89\x28\xca\x53\x3d\xee\x75\x16\x8c\x97\x61\xd6\xc8\xc8\ \x48\x84\x85\x87\xa2\xa9\xb1\x09\xc7\x8e\x1d\x83\xcd\x66\xf3\x6a\ \xbf\xe1\xa4\xa4\x24\xf4\xf5\xf5\xa1\xbc\xbc\x1c\x6d\xad\x6d\x48\ \x9f\x9c\x06\x9e\xe7\xc7\x04\x74\x49\x39\x3d\x34\x60\xfd\x51\x71\ \x71\xb1\x47\x33\xbd\x0b\x00\x00\x06\x88\x49\x44\x41\x54\xed\x8a\ \x12\xa0\xb8\xf8\xe8\x50\xe1\xd2\xc2\xe3\x44\x74\x27\x11\x71\x86\ \xf4\xb8\xaf\x59\x30\x3e\x84\x59\x23\x22\x22\x10\x1e\x1e\x8e\xa6\ \xa6\x26\x94\x96\x1e\xc7\xe0\xd0\x10\xf2\xf3\xf2\x3d\xee\xf7\xbc\ \xdc\x79\x38\x70\x60\x3f\x9a\x9a\x9a\x60\xb1\x58\x30\x69\x52\x02\ \xc6\xb0\x30\x0e\x74\x4b\x51\xd1\xe3\x3e\xbf\x39\xc3\xfb\xe3\x69\ \x0e\x1e\x38\x78\x71\xc9\xf2\xa5\xc1\x04\x14\x1a\xd2\xe3\x3e\xa6\ \x41\xfb\x1a\x66\x8d\x88\x88\x40\x44\x44\x04\x1a\x1b\x9b\x50\x56\ \x56\x8a\xbe\xfe\x7e\xe4\xe7\xe7\x7b\x34\x7b\x79\x9e\x47\xce\x9c\ \x1c\xbc\xb7\xeb\x3d\xb4\xb5\xb5\x21\x29\x39\x11\x81\x8a\x8d\xb1\ \x46\x0d\x7d\xa2\xdf\x6d\x5c\xbf\xf9\x55\x7f\x5c\x8b\xf3\xd7\x43\ \x05\xf2\x81\x4f\x72\x44\xc7\x46\x2d\x0b\xc6\xcf\x61\xd6\xc4\xa4\ \x44\xe4\xe5\x2f\x00\xcf\x73\x78\xfb\x2f\x7f\xc6\xcb\x2f\xbf\xe4\ \x72\xbf\x40\xad\x92\x9c\x9c\xec\xdc\xc7\xb0\xab\xab\x7b\x4c\xc0\ \x27\xe0\xf0\x50\x9f\xe5\x17\xfe\xba\x1e\xef\xaf\x0b\x15\x17\x17\ \x0b\x85\x2b\x96\xec\xe7\x41\xab\x89\x28\xc8\xef\x59\x30\xa3\x10\ \x66\x8d\x88\x08\x47\x74\x54\x14\x1a\x1a\x1a\x51\x71\xb2\x02\xed\ \x1d\xed\x58\xbc\x68\xb1\x21\x49\xd0\xd3\xd3\x83\x9f\x3f\xf2\x30\ \x2a\x2a\x2a\x10\x18\x18\x88\xd9\x73\x66\xa9\x7e\x34\x73\x14\xe0\ \xbf\x4c\xcc\x74\xc3\x96\x2d\x5b\x3a\xae\x3a\x02\x00\x40\x49\x71\ \x49\xeb\xd2\x6b\x97\x1d\x25\xe0\x87\x04\xf0\xfe\xc9\x82\x19\xdd\ \x30\x6b\x58\x78\x18\xa2\x63\xa2\xd1\x58\xdf\x80\x93\x95\x95\x68\ \x69\x69\xc1\xe2\xc5\x85\x2e\x49\xd0\xd6\xd6\x86\x07\x1f\xfa\x19\ \x2a\x2b\x2b\x11\x1c\x1c\x8c\x25\x4b\x17\x23\x24\x24\x64\xb4\x27\ \xbf\x8d\x03\x7d\x77\xc3\x86\x4d\xe5\xfe\xbc\xa8\xdf\x29\xbb\xbf\ \x78\xff\xf9\xe5\x2b\x96\x35\x12\xe8\x66\xcf\xb3\x59\xdd\xe4\x12\ \x8e\x52\x98\x35\x2c\x2c\x14\x31\x31\x31\x68\xa8\x6f\xc0\xa9\xaa\ \x53\x68\x6e\x6a\xc2\x92\x25\x4b\x34\x49\x50\x5f\x5f\x8f\x9f\xfe\ \xf4\x01\x5c\xb8\x70\x01\xe1\xe1\xe1\x58\xba\xac\x10\xa1\xa1\xa1\ \xa3\xaf\xf7\x81\x47\x37\xae\x2f\xfa\xab\xbf\xaf\x3b\x2a\x32\xeb\ \xb3\xe2\xfd\xc7\x97\x2f\x5f\x16\x44\x1c\x15\x7a\x96\xcd\xea\x4a\ \x8f\x8f\x6e\x98\x35\x34\x34\x14\xb1\xb1\xb1\xa8\xaf\x6f\x40\xd5\ \xe9\x2a\x34\xd4\xd7\x63\xe9\xd2\x65\xb2\xef\x9d\x3d\x7b\x16\x3f\ \x7b\xf0\xa7\x68\x6a\x6e\x42\x74\x4c\x34\x96\x2c\x5d\x8c\xa0\xa0\ \xa0\x31\x30\xfa\xf0\xec\xa6\xf5\x45\xdb\x47\xe3\xda\xa3\xa6\xb4\ \x8a\xf7\xed\xdf\xfb\xd9\xfe\x6b\x27\x13\xc9\x93\x47\xbc\xd7\xe3\ \xa3\x1f\x66\x0d\x09\x0d\xc1\x84\xb8\x58\x34\xd4\x37\xe0\x74\x75\ \x35\x6a\x6b\x6b\xb1\x7c\xf9\x72\x10\x11\xca\xca\x4a\xf1\xef\xeb\ \x1e\x42\x67\x67\x27\xe2\xe3\xe3\xb0\x78\x71\x81\x63\x73\xec\x51\ \x06\x9f\xd1\x2b\x9b\xd6\x17\x3d\x36\x8a\x46\xe5\xe8\x95\x77\xde\ \xb9\x8d\xaf\xaa\x9e\xf9\x2a\x80\x7b\xd5\xdb\x98\x01\x9e\x6c\x2f\ \xa7\x55\x1f\xad\xa0\x4b\x5b\x5b\x3b\x0e\x1d\x3c\x0c\xab\xd5\x8a\ \x15\x2b\xae\xc3\x8d\xdf\xba\x11\x4f\x3e\xf5\x04\x06\x07\x07\x91\ \x94\x94\x88\x05\x79\xf3\xc1\x71\x1c\xc6\x00\xfd\x37\x36\xac\x2f\ \xba\x8f\xf4\x7f\xa6\xf4\xea\x26\x80\xbd\x0f\x8c\xb6\xed\xd8\xfa\ \x6b\x00\x0f\x79\xbe\xd7\x9d\x9a\x14\x63\x15\x69\xeb\xe8\xe8\xc0\ \x81\xcf\x4a\x60\x93\xec\xe1\x37\x79\x72\x3a\x72\xe6\xce\x19\x93\ \x67\x60\xc4\xfe\x74\x4d\x5a\xc6\x4f\x6e\xbf\xfd\x76\x61\x94\xdd\ \xca\xb1\x29\xdb\x76\x3c\xf5\x2c\x40\x1b\x8d\xcc\xfa\x2b\x01\xb8\ \x56\xb9\x78\xe1\x22\xce\x9c\x39\x8b\xa1\x21\x0b\xa6\x4e\xbd\x06\ \x19\xd3\xa7\x8d\x11\xf8\x78\x76\xe3\xa3\x9b\x8b\x46\x73\xe6\x8f\ \x39\x01\xec\x24\x78\xfa\x61\x22\x7a\x91\x48\xba\x43\xe9\xd5\x03\ \xf8\x55\x50\xac\x0c\x58\xbb\x69\x7d\xd1\x9b\x63\x75\xc3\x31\x1f\ \xed\x1d\x2f\xec\x58\x06\x51\x7c\x87\x08\xf1\xe3\x80\xcb\x4a\x17\ \x31\xdc\xba\x61\x43\xd1\x9e\xb1\xbc\xe9\x15\x19\xfd\x6d\x2f\x6f\ \x4b\x32\xd9\xe8\x7f\x60\xf0\xb7\xed\xbe\x01\xe5\x4b\x91\xa3\x1f\ \x6f\x7e\x74\x73\xd5\x58\xdf\xf8\x8a\x4d\xbf\x57\x5e\x79\x25\xb0\ \x7f\xb0\xe7\x45\x00\x0f\x5e\xc9\xe7\xb8\xc2\x45\x00\xd8\x8b\xd1\ \x91\x71\x4f\xac\x59\xb3\xc6\x7a\x25\x1e\xe0\x8a\x0f\xfc\x0b\x2f\ \xec\x58\x22\x82\xbd\x06\x60\xfa\x37\x09\x79\x06\x5c\xe4\x41\xab\ \xd7\xaf\xdf\x7c\xe0\x4a\x3e\x07\x7f\xa5\x07\x62\xf7\xee\x3d\xb5\ \x85\x8b\x97\xbe\xce\x9b\x78\x22\x42\xc1\xd5\xf0\x4c\xa3\x5c\x6c\ \x8c\xf0\xea\x50\x90\xf5\x07\x45\x8f\x3c\x7e\xe6\x4a\x3f\xcc\x55\ \x25\x7a\x5f\x7c\x71\xfb\x6c\x81\xe1\x65\x00\xd7\x7d\x1d\x91\x27\ \xb0\x8f\x04\x8e\xfb\xc5\xe6\x47\x37\x57\x5e\x3d\xcf\x74\x15\x96\ \xe7\x9f\xdf\x7e\x1d\xe3\xf0\x34\x18\x16\x7d\x3d\x80\x47\x85\x08\ \xee\xb1\x4d\xeb\x37\x7d\x74\x15\x3e\xdb\xd5\x5b\x9e\x7b\x71\xfb\ \x2a\x30\x6c\x05\x90\xfb\x55\x04\x9e\x01\x07\x00\xf6\xeb\xa1\x7e\ \xdb\xff\x3d\xf5\xd4\x53\xe2\x55\x4a\xce\xab\xbf\x3c\xf7\xdc\xb6\ \x42\xc6\xe3\x7e\x62\xf4\x03\x18\xf8\x21\xa4\x2b\x5c\x2c\x00\xde\ \x61\x1c\xf7\xab\x4d\x8f\x6e\x3a\x76\xb5\x8f\xed\x57\xca\xfd\x7a\ \xf9\xe5\xa7\x62\x2c\x36\xf3\x6a\x00\xf7\x03\x98\x79\x75\x4d\x76\ \x7c\xc1\x18\xfe\x26\x06\xe0\x8f\x45\x3f\x2f\x6a\xfc\x0a\xa9\xa7\ \xaf\x66\xd9\xf1\xcb\x1d\x99\x24\xb0\x55\x44\xf4\x1d\x80\x15\x02\ \x08\x18\x6b\x1f\x9e\x01\x25\x04\xfc\xcd\xc6\xb3\x77\xb7\xfc\x62\ \xcb\xa5\xaf\xa8\x7d\x72\xc5\xef\x2b\xfd\x79\x23\xe9\xdf\x9c\x46\ \x9b\xd6\x77\x70\xc3\xcd\x37\x44\x2c\x98\x33\x6f\x45\x50\x60\x70\ \x01\xcf\xf3\xb3\x39\x8e\x9b\x45\x84\x48\x3f\x4f\xf2\x4e\x41\x14\ \x8f\xd9\xac\xb6\x2f\x06\x87\x06\xbf\x38\x7f\xb6\xfa\x8b\xbf\xfe\ \xf5\xdd\x56\x85\x14\x60\x3a\x75\x06\x40\xd4\xf9\x5c\xf9\x9d\xaf\ \x14\x01\x94\xc0\x49\x41\x23\xc5\xe7\x90\xfc\x4f\x8a\xbf\xb5\x0e\ \xb8\xa8\x43\xe7\x33\xe7\xe7\xab\x56\xdd\x98\x92\x3a\x39\x3d\x2b\ \x32\x22\x62\xaa\xc9\x6c\x8e\x33\xf1\xfc\x04\x8e\xe7\xe3\x78\xe2\ \x62\x88\xa7\x58\x82\x7a\x11\x82\x31\xb1\x4f\x10\xc4\x46\x9b\xd5\ \xd6\x68\xb3\x09\xcd\x43\x96\xa1\x86\xc1\xfe\x81\x86\xfa\xfa\xba\ \xea\x0f\x3f\xdc\x7d\x7e\x70\x70\xd0\x1d\xc8\x7a\x00\x6b\xd5\x95\ \x6d\xa2\xe2\x6f\xe9\x67\xca\x43\xd4\xb9\xb7\xdf\x09\x20\x9d\x8d\ \x9c\x0e\xd0\x9c\x1b\x02\x70\x6e\xea\xde\x1e\x7a\x04\x81\x0b\xa9\ \xe1\xaa\xef\x2e\x7f\xfc\xcb\x00\xc8\xd0\x98\xe5\x9e\x1c\xa2\x07\ \x9f\x8b\x06\xff\x16\xdd\x11\x44\x39\x08\x9c\x0b\x50\x8d\x90\x40\ \xef\x7f\x4f\x48\xc3\x19\x94\x28\x46\x09\xa2\x2b\x25\x74\x8c\x39\ \x57\xb3\xdb\x1d\xc0\x46\x40\x14\x0d\xb4\x89\x06\xdb\xdd\x81\xef\ \xea\xfb\xaa\x19\x4e\x5e\xfe\xef\xed\x77\xbd\xbd\xbe\xa7\xd7\x54\ \x7e\x2e\x55\x45\x70\xa3\xb3\x99\x87\x83\x2f\x1a\x04\xc3\xd3\xff\ \xdd\x9d\xe3\xf5\xf5\x79\x1d\x7d\xee\x8f\xff\x61\x40\x77\x1b\xf9\ \x9e\x27\xa2\x9d\x5c\x18\x65\xca\xd9\xeb\x6a\x70\x05\x1d\x00\x8d\ \xce\x54\x77\x12\x81\xe9\xd8\x07\xd0\xb1\x17\x44\x37\xd7\x83\xb7\ \xff\x93\x8e\x5a\x30\x3a\xb3\x8c\x8a\x7a\x6f\xc4\xbf\x2f\xf6\x02\ \xdc\x78\x10\xee\x7c\x7a\x18\x34\xec\xbc\xd1\xed\xde\xe8\x74\x6f\ \xda\x5d\x7d\xe6\x95\x17\x40\x1e\x00\xeb\x0e\x3c\xce\x43\x30\x39\ \x37\x5e\x81\x11\x49\xe1\x49\x7f\xf5\x0c\x42\x57\xb3\x14\x3a\x96\ \x3d\x30\x76\x86\xa0\xa8\xf1\x0c\x63\x1e\x07\x50\x02\xc2\x69\xb8\ \x83\xde\x82\x0d\x78\x67\xf5\x7b\xdb\x4f\xe6\x81\x57\xe0\xce\x2d\ \x34\x4a\x0a\xe8\x80\x0b\x4f\x80\xfd\x3a\x44\x02\x3d\xb1\x09\x3c\ \x99\xf5\xe4\xe5\xec\xd7\x03\xdf\x88\xbe\xbd\x22\x41\x1e\x23\xe5\ \xff\x03\x52\x73\x30\xe5\x4f\x1e\x9f\x3e\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x11\xd8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x10\x06\x00\x00\x00\x07\x92\x25\xc4\ \x00\x00\x00\x06\x62\x4b\x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\ \xf7\xdc\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\ \x00\x48\x00\x46\xc9\x6b\x3e\x00\x00\x00\x09\x76\x70\x41\x67\x00\ \x00\x00\x30\x00\x00\x00\x30\x00\xce\xee\x8c\x57\x00\x00\x11\x63\ \x49\x44\x41\x54\x78\xda\xed\x5c\x7b\x70\x54\x55\x9a\xff\xdd\x4e\ \xbf\xf3\xe8\x4e\xba\xf3\x22\x90\x10\x43\x12\x9e\x21\x88\x84\x47\ \xc1\x4a\x20\x84\x58\xca\xea\x0a\xd4\x82\x94\x96\x91\x72\xa4\x5c\ \x18\x81\x2d\x65\x4a\x58\x66\x76\x66\x58\xb0\xac\x59\x10\x2b\x83\ \x2e\xc2\xea\x50\x23\xce\x4c\x10\xe5\x51\xc8\x43\x90\x57\x1e\x06\ \x8c\xa0\x44\x23\x9a\x40\x88\x49\x27\x9d\x47\xbf\x92\x74\xf7\xed\ \xbe\x77\xff\x38\x7c\x74\x72\x3b\x97\xce\x0b\x83\xd6\x7e\xff\x1c\ \xee\xed\x7b\xef\x39\xe7\xf7\xfb\x5e\xe7\x3b\x27\x70\xe2\x6d\xc1\ \xff\xcb\xb0\x88\x62\xb8\x07\x30\x50\x11\x21\x08\x82\x00\x58\x14\ \x27\x4f\x9e\x3c\x39\xdc\xa3\x19\xb8\xfc\xec\x08\xf0\xf9\x5c\x2e\ \x97\x0b\x38\xb7\xef\xd1\xdf\x3c\xfa\x1b\xe0\xd3\x7d\xf9\xf9\xf9\ \xf9\xc0\x17\xa6\x5f\x17\xfd\xba\x08\x00\x7e\x5e\xf6\xfc\xb3\x21\ \xa0\xa3\xf9\xc6\x8d\x1b\x37\x80\x4f\x2e\x4d\xb1\x4e\xb1\x02\xca\ \x88\x6b\xee\x6b\x6e\x20\x37\x77\xdc\xb8\x71\xe3\x80\xa6\xce\xbf\ \x66\xfc\x35\x03\x28\xb9\xb4\x62\xe9\x8a\xa5\x80\x28\xf8\x7c\x3e\ \xdf\x70\x8f\x3a\xb4\xdc\xf7\x04\x58\xbd\x17\x2e\x5c\xb8\x00\x7c\ \x62\x9b\x62\x9e\x62\x06\x46\xbd\x8d\x1b\xb8\x01\x4c\x9a\x9f\x7a\ \x25\xf5\x0a\xa0\x56\xab\x54\x2a\x15\x90\xf5\xbd\x79\xb5\x79\x35\ \xe0\xaa\x38\xb9\xf8\xe4\x62\xe0\x9c\xaa\x40\x55\xa0\x02\xfc\xfe\ \xae\xae\xae\xae\xe1\x9e\x85\xbc\x70\xf7\x6b\x10\xae\x51\xec\xde\ \xbd\x7b\x37\xf0\x65\xf8\xfa\xa5\xeb\x97\x02\xd9\x57\xd2\xe6\xa6\ \xcd\x05\xcc\xe6\x98\x98\x98\x18\x80\x5c\x0d\xcf\xdb\x6c\x36\x1b\ \xc0\xf3\x6e\xb7\xdb\x0d\x08\x02\x8b\x0d\xd5\x0f\xdb\x5f\xb4\xbf\ \x08\xf0\x8f\x25\xcd\x4d\x9a\x0b\xcc\x7d\xed\x54\xf2\xa9\x64\x40\ \xad\x8e\x8e\x8e\x8e\x1e\xee\xd9\x05\xe4\xbe\xb1\x00\x51\xf4\xfb\ \xfd\x7e\xe0\x72\xd7\xea\x5d\xab\x77\x01\x5f\x35\x6c\xc8\xdc\x90\ \x09\xcc\xfc\x6e\xf2\x63\x93\x1f\x03\xcc\xe6\xf8\xf8\xf8\x78\x00\ \x50\x28\x14\x0a\x00\xe0\x38\x8e\xeb\xfe\x3e\xa9\x11\xbb\x9f\xf1\ \x99\x71\x97\x71\x17\xa0\x8b\xf8\xf1\xcb\x1f\xbf\x04\x4e\x16\xe7\ \xd8\x72\x6c\x40\x97\xa3\xb1\xb1\xb1\x71\xb8\x67\x1b\x90\x61\xb7\ \x00\x9e\xb7\xdb\xed\x76\xe0\xfc\x9b\x8f\xbf\xf5\xf8\x5b\x00\xc6\ \xd7\x9c\xaf\x39\x0f\x64\xe7\x8c\xf5\x8e\xf5\x02\x4a\xa5\x52\xa9\ \x54\x02\xb8\x9d\xf5\x48\x5b\xaf\xb7\xb5\xb5\xb5\x15\xf0\x7a\x99\ \xab\x91\xce\x84\xae\xeb\xcb\x6d\xef\xda\xde\x05\x2c\x4e\x6e\x0c\ \x37\x06\x98\x9f\x77\xae\xfd\x5c\x3b\x10\x39\x32\x3d\x3d\x3d\x7d\ \xb8\x66\x3f\x8c\x16\xe0\xac\xbf\x7e\xfd\xfa\x75\xe0\xd8\xf1\xac\ \x8e\xac\x0e\x20\xbc\xc2\x72\xcc\x72\x0c\x78\x68\xd6\x64\x6e\x32\ \x07\xa8\x54\x1a\x8d\x46\x03\x70\x1c\x69\xbc\x54\xf3\x7b\xb7\x04\ \x12\x02\x9e\xda\xa4\x1c\xe3\xb3\xc6\x67\x81\x51\x45\x0a\x41\x21\ \x00\x27\x9e\x99\x9e\x30\x3d\x01\x68\x6b\xbb\x7c\xf9\xf2\xe5\xe1\ \x42\x61\x18\x08\xb0\x58\x4e\x9d\x3a\x75\x0a\x38\xfe\x2f\xd3\x0c\ \xd3\x0c\x40\xc6\x2b\x66\xab\xd9\x0a\x8c\xff\x9f\x09\xa6\x09\x26\ \x80\xe3\x48\xe3\x7b\x02\x1c\x4c\x04\xf3\xf9\x4a\xa5\xd7\xeb\xf5\ \x02\x61\x61\xec\x39\x29\xf0\x24\x74\x6d\x2e\x8e\x98\x13\x31\x07\ \x78\xe0\x74\xb8\x21\xdc\x00\x7c\xda\x9a\x3b\x3e\x77\x3c\xd0\xe4\ \x3e\x73\xe6\xcc\x99\x5f\x30\x01\xdf\xd5\xbf\xb9\xf6\xcd\xb5\x40\ \xe9\xc8\x25\x89\x4b\x12\x81\xe9\x1f\x3e\xb8\xec\xc1\x65\x40\x52\ \x79\xda\x96\xb4\x2d\xdd\x81\x95\x6b\x09\x48\xa7\xd3\xe9\x04\x04\ \xa1\xa5\xa5\xa5\x05\x20\x57\xa4\xd1\x30\x02\x54\x2a\x69\x6c\xa0\ \x96\x39\x5a\xba\x8e\xbe\xa1\x4f\xd7\xa7\x03\x99\x5d\xc6\x4c\x63\ \x26\x70\x3e\x73\xd1\xac\x45\xb3\x80\x3a\x4b\x71\x71\x71\xf1\x4f\ \x47\xc0\x3d\x8b\x01\x82\xc0\xf3\x3c\x0f\x5c\xaa\xfa\xd5\x07\xbf\ \xfa\x00\x68\x9d\x76\xfc\xea\xf1\xab\xc0\x43\x75\x39\xd7\x73\xae\ \x03\x3a\x9d\x5e\xaf\xd7\x03\xa2\x28\xf5\xed\x34\x1a\x16\x94\xe9\ \xbe\x20\x58\x2c\x16\x0b\x20\x8a\x0e\x87\xc3\x11\xe8\xc7\xe5\xf2\ \x78\x3c\x1e\x20\x22\x82\xb9\x2c\x12\xaf\x97\x7d\xa7\xab\x8b\xbe\ \x2b\x25\xa4\x67\xdb\xd5\xc5\x2c\xe9\xdb\xdc\x96\xca\x96\x4a\x20\ \xdb\xf9\xfa\xc6\xd7\x37\x02\x69\x5d\xab\x8a\x56\x15\xfd\x8c\x08\ \xf0\xb8\x59\x50\x3c\xf7\xed\xa3\xc5\x8f\x16\x03\xea\x05\x6d\x5b\ \xdb\xb6\x02\xd9\xdf\x3f\x34\xeb\xa1\x59\x40\x58\x58\x58\x58\x58\ \x58\x77\xa0\x19\x40\xc1\x44\x30\x02\x05\xa1\xae\xae\xae\x0e\x10\ \x45\x0a\xb2\xec\xbd\x6b\xd7\x5a\x5b\xad\x56\xe0\xe6\x4d\xab\xb5\ \xb5\x15\x18\x3f\x3e\x31\x31\x21\x01\x48\x4d\x35\x1a\xbb\xa7\x99\ \x3c\xcf\x9e\xef\xec\x24\x22\x7b\x02\x2f\x25\xc6\xed\x66\xfd\x56\ \xff\x77\xeb\xb9\xd6\x73\x40\xc6\x82\xf5\x7b\xd7\xef\x05\x26\x2e\ \xfb\xed\xe6\xdf\x6e\x1e\x7a\x02\x86\xcc\x05\xd9\xdb\xaf\x5d\xbb\ \x76\x0d\xf8\x64\x79\x96\x3f\xcb\x0f\x98\xbd\xc2\x7e\x61\x3f\xf0\ \x60\xcd\xec\x79\xb3\xe7\x01\x61\x61\xa4\xa1\x44\x40\xcf\x60\x1a\ \xf0\xf1\x4c\x13\xfd\xfe\xda\xda\xda\xda\x00\xf0\x3c\xcf\x2c\xa2\ \xa2\xc2\x62\x69\x68\x00\x5c\xae\xe4\xe4\xa4\x24\x60\xf2\xe4\xe3\ \xc7\x8f\x1f\x07\xea\xea\xc2\xc2\x38\x0e\xa8\xaa\x62\xc4\x10\xa0\ \xe4\x92\x22\x22\x58\xbf\xd2\x80\x2d\xb5\x04\xb5\x9a\xc5\xa0\xb1\ \xff\x6e\x7e\xd8\xfc\x30\xf0\xfd\xfe\x1d\x8b\x76\x2c\x02\x2e\xbd\ \xbd\x6a\xf7\xaa\xdd\xdd\x15\xe7\x3e\x21\xe0\xc7\xaa\xa3\x47\x8f\ \x1e\x05\x4e\xbe\x36\xcb\x30\xcb\x00\x4c\xfa\x6a\xe2\x57\x13\xbf\ \x02\x32\x26\x64\x67\x64\x67\x00\x1c\x47\x80\xdf\x3d\x8b\x21\xdf\ \xee\xf7\xff\xf0\xc3\x0f\x3f\x04\x88\xe8\xec\x64\x6d\x49\x49\x43\ \x43\x7d\x3d\xa0\x56\x2f\x5c\x98\x9f\x0f\xa4\xa6\xee\xdb\xf7\xc1\ \x07\x80\x4a\x95\x92\x92\x92\x02\x64\x64\x7c\xf4\xd1\xe1\xc3\x80\ \xcd\x96\x90\x90\x90\x00\x7c\xf9\x65\x73\xb3\xc5\x02\x08\x02\x03\ \x8c\x8d\x01\x88\x8a\x62\xe3\xa1\xb8\x22\x8d\x11\x24\x4a\x25\x7b\ \x2e\x73\x9b\x69\xa9\x69\x29\xd0\xf4\xc7\xe2\xb8\xe2\x38\xe0\xa2\ \x71\xb1\x62\xb1\x02\x10\x04\x36\xae\xc1\xca\x80\x5d\x50\xd5\xee\ \x6d\x1b\xb7\x6d\x04\xae\x2f\xfa\xd3\xc4\x3f\x4d\x04\xa6\x63\xde\ \x47\xf3\x3e\x02\x22\x23\x4d\x26\x93\x09\x90\xe6\xeb\x81\x5e\x7a\ \xde\x17\x04\xb6\x30\x12\x84\x5b\xb7\x6e\xdd\x22\x28\x80\xb6\xb6\ \xce\xce\xce\x4e\xa0\xb2\xd2\x6a\x6d\x6e\x06\x92\x92\x5e\x79\xe5\ \x95\x57\x80\x98\x98\xe5\xcb\x9f\x7a\x2a\xb0\xe2\xa5\xef\x2a\x14\ \x44\x28\x73\x21\x37\x6f\xae\x5b\xb7\x76\x2d\x20\x08\x2c\xcd\x9c\ \x3a\x35\x36\x36\x2e\x0e\x50\xa9\x18\xb0\x34\x63\x87\x83\x59\x16\ \xc5\x0c\x39\xd7\x44\x44\xd6\xd6\xdb\x7e\x6f\xfb\x3d\xa0\xfd\x6a\ \x42\xdd\x84\x3a\xe0\x9f\xfe\xed\xe8\xea\xa3\xab\x01\xa5\x26\x3c\ \x3c\x3c\xfc\x1e\x12\x20\xf8\x59\xb0\x2b\x2b\x7f\xe6\xc8\x33\x47\ \x00\xe7\x77\x97\x36\x5e\xda\x08\xe4\x3c\x3e\x6f\xce\xbc\x39\x80\ \x5a\xad\xd5\x6a\xb5\xdd\x01\xee\x1d\x70\x5a\xf1\x0a\x42\x4d\x4d\ \x4d\x0d\x20\x08\x4d\x4d\x4d\x4d\x81\x7e\x6e\xdd\x62\x41\xb6\xba\ \xda\xe1\xb0\xd9\x80\x31\x63\x76\xed\x7a\xfb\x6d\x20\x3c\x3c\x27\ \x27\x27\x27\x00\xbc\x1c\x01\x01\x22\xd8\xfd\x86\x86\x2d\x5b\xb6\ \x6c\x01\x1c\x8e\x43\x87\x3e\xfe\x18\xc8\xc9\x89\x8b\x8b\x8f\x07\ \xb4\x5a\xe6\x6a\x68\xe6\x4e\x27\xfb\x9e\xdb\x4d\xdf\x95\x23\x82\ \xb5\xf5\x99\xb6\xdf\xd9\x7e\x07\x08\xa7\x13\xb2\x13\xb2\x81\xdc\ \x39\x67\xe2\xcf\xc4\x03\x1a\x2d\x29\xe0\x10\x11\xe0\xb6\x33\x80\ \x3e\xdb\xbf\xd0\xba\xd0\x0a\x44\x19\x15\x2a\x85\x0a\x98\xf4\xe8\ \x9c\x3f\xcf\xf9\x33\xa0\x50\x48\x17\x42\xbd\xaf\x58\x45\x91\x7c\ \x7b\x55\x55\x55\x15\x20\x8a\xac\x86\x43\x3d\x57\x57\xb7\xb7\xb7\ \xb7\x03\x16\x0b\xfb\x5a\x7a\xfa\x5f\xfe\xb2\x6f\x1f\xa0\x56\x33\ \x17\x43\xa3\x94\x02\xcf\x71\xe4\xe3\x23\x22\x22\x22\x80\xce\x4e\ \x66\x39\x24\x44\x88\xd5\xfa\xce\x3b\xef\xbc\x03\x34\x36\x16\x15\ \x15\x15\x31\x22\xe2\xe2\x82\xb3\xa7\x8e\x0e\xf6\x7d\x97\xab\x27\ \x11\xc1\x84\xb0\xfe\x2d\xff\xe9\xdc\xea\xdc\x0a\x74\x44\xe9\x66\ \xe8\x66\x00\xf3\xb7\x9f\x13\xcf\x89\x80\x3e\x62\xd4\xa8\x51\xa3\ \x06\x41\x80\x4d\x5d\x59\x59\x59\x09\x9c\xd9\x51\x10\x59\x10\x09\ \x64\x26\x64\x27\x65\x27\x01\xa3\x0b\xb2\x36\x67\x6d\x0e\x68\x58\ \xb0\x6b\xe9\x99\x46\x8a\x22\xab\xdf\xfb\xfd\x57\xaf\x5e\xbd\x1a\ \x08\xaa\x7e\x3f\x7b\xbe\xb2\x92\x65\x4d\x3c\x9f\x9c\x9c\x9c\x0c\ \xa4\xa7\xef\xd9\xb3\x67\x0f\xc0\x71\x91\x91\x91\x91\xc1\xc0\x53\ \xab\x56\xab\xd5\x6a\x35\x60\x30\x18\x0c\x06\x43\xa0\x64\xe1\xf7\ \xb3\x7e\xed\x76\x56\xe2\xf0\xf9\x58\x59\x9a\x88\xb0\xd9\x8e\x1c\ \x39\x72\x04\xa8\xad\xdd\xb4\x69\xe3\x46\x60\xea\x54\x93\xc9\x6c\ \x06\xa2\xa3\x59\x5a\x4c\x42\xe9\xab\xcd\x26\x4d\x63\x7b\x77\x55\ \xd6\x83\x8e\x63\x8e\x63\x40\xfb\x8b\x88\x41\x0c\x30\x3f\xea\x6c\ \xf3\xd9\x66\x20\x4a\x39\x76\xec\xd8\xb1\xfd\x20\x80\x16\x22\x97\ \x36\xbe\x60\x78\xc1\x00\x4c\xdb\xb3\x30\x7f\x61\x3e\x60\xea\x4c\ \xde\x90\xbc\xa1\x3b\xc0\x3d\x5b\x69\x1a\x29\x8a\x56\xab\xd5\x0a\ \xf8\x7c\x0c\x78\x06\x05\xd0\xd5\x75\x7b\x7d\x70\x89\x2d\xa4\xa2\ \xa2\x16\x2c\xc8\xcb\x03\x52\x52\xb6\x6e\xdd\xb6\x0d\x10\x45\x06\ \x14\x01\x4d\x80\xd2\x28\xf5\x7a\x06\x14\x69\x3c\x59\x80\x54\xe8\ \x79\x97\x8b\x29\x80\xc7\xc3\x5c\x28\x11\xe1\x74\x96\x95\x95\x95\ \x01\xd7\xaf\xaf\x5a\xf5\xc2\x0b\xc0\xc4\x89\x2c\x7d\x4d\x48\x60\ \xdf\x25\xf1\x78\x28\x26\x91\xeb\xbc\x7b\xac\x70\xbc\xd8\x51\xd2\ \x51\x02\x34\x3e\xd9\xa9\xef\xd4\x03\xb9\x8f\x9f\xb8\x76\xe2\x1a\ \x60\x7a\x80\xb9\x50\x59\x02\xbc\x5e\xe6\x02\x0e\x1c\x48\x4c\x4c\ \x4c\x04\x16\x2c\x28\x2c\x2c\x2c\x04\xf4\x7a\x2a\xdf\xd2\x44\xa5\ \x04\xd0\x82\x89\x5d\xfb\xfd\x6c\xe3\x84\x5c\x0d\xdd\xb7\xd9\x98\ \xe6\x5f\xbe\xcc\x80\x4f\x4e\x5e\xbf\x7e\xfd\x7a\x20\x3e\x7e\xe5\ \xca\x95\x2b\x03\x40\xcb\xf9\x76\x02\x5c\xa5\x62\xf5\x7f\x39\xc0\ \xe5\x84\x2c\x81\x5c\x14\x3d\xef\x76\x57\x57\x57\x57\x03\x55\x55\ \x2b\x56\xac\x58\x01\x8c\x19\xc3\x62\x59\x4a\x0a\xb3\x2c\x12\x5a\ \x4f\xb4\xb6\xb2\x71\xfa\x7c\x3d\x89\x90\xf6\x6d\xb7\x77\x74\x74\ \x74\x00\x0d\x26\xbb\xc5\x6e\x01\xfe\x75\x7c\x87\xd0\x21\x04\x8f\ \xeb\x4e\x1a\xea\x6e\x68\x6e\x6e\x6e\x06\x0c\x27\x92\xd4\x49\x6a\ \x40\xaf\xa7\xba\x7b\xa8\x12\x01\x23\xc6\xe7\x63\x80\xfb\xfd\x6c\ \x3d\x40\xc0\x37\x36\xb2\xf4\xb2\xa2\x82\x01\x9f\x91\xc1\x7c\x70\ \x5c\xdc\x73\xcf\x3d\xf7\x5c\x30\x70\xa4\xd1\x52\x17\x43\x0b\x38\ \xa9\x2b\x92\x12\x26\xd7\x12\x91\xe1\xe1\x2c\x5b\xa1\xef\xe9\x74\ \xcc\x45\x64\x65\x1d\x3e\x7c\xf8\x30\x50\x5b\xcb\x9e\xab\xae\x66\ \x31\x8a\x84\xd6\x13\x66\x33\x7b\x4f\xa9\xec\x59\x7b\x92\x5a\x42\ \x54\xd4\xed\x7e\x1e\x51\xb4\x29\xda\x00\x97\x95\xad\x6b\xe4\x09\ \xd0\x32\x02\x74\x6b\x74\x4f\xe9\x9e\xea\xf1\xc8\x6d\xa0\xa5\xf9\ \x3c\x73\x25\x3e\x5f\x79\x79\x79\x39\x20\x08\x3d\x3b\xf8\xee\x3b\ \x66\x51\xdf\x7c\xc3\x82\xef\x94\x29\x87\x0e\x1d\x3a\x04\x18\x8d\ \xb9\xb9\xb9\xb9\xbd\x98\xe2\x6d\xe0\x75\x3a\x9d\x4e\xa7\x0b\xb8\ \x9a\x50\xc0\xca\xc5\x08\x39\x82\x48\xa8\x1f\x22\x5a\xa5\x1a\x31\ \x62\xc4\x08\x60\xd2\x24\x16\x23\xac\x56\xa6\x80\x57\xae\xb0\x18\ \x45\xae\x87\x80\x8f\x8b\x63\x31\x47\xab\xbd\x7b\x11\x50\x3f\x2f\ \xfc\xad\xf0\xb7\x80\x96\x94\x8b\x17\x2f\x5e\xec\x03\x01\xaa\x56\ \x4d\x93\xa6\x49\x0a\x4d\x77\x86\x99\x4f\xe5\xf9\xb3\x67\xcf\x9e\ \x05\x04\x81\xbd\x47\x03\xfc\xe2\x0b\xa6\xe9\x56\x6b\x6c\x6c\x6c\ \x2c\x30\x75\x2a\xab\x7e\x6a\xb5\xac\xee\x2e\x05\x4e\x0a\x3c\x05\ \xd3\xfe\x02\x3d\x50\xa2\xc8\x12\x34\x1a\x96\x0d\xa9\x54\xcc\xe5\ \x4e\x9c\xf8\xe1\x87\x1f\x7e\x08\x78\x3c\x6c\xcf\x99\x62\x16\x25\ \x0f\xb4\x90\x8b\x8d\x65\xe3\x0d\x0f\x97\x16\x0d\x59\x1b\xfe\xbf\ \xe2\xab\xe2\xab\x80\x75\xdb\x59\xef\x59\xef\x5d\x08\xf0\xc4\xb1\ \x74\x53\x53\xce\xbd\xca\xbd\xda\xfd\x11\x9a\x20\xfb\x9d\xe7\x4f\ \x9f\x3e\x7d\x3a\xb0\x72\xf5\x78\x98\x6f\x2d\x2d\x65\xbf\x73\xdc\ \xcc\x99\x33\x67\x02\xd9\xd9\x4c\xe3\x95\x4a\xa6\x49\x52\x0d\x24\ \x5f\x4e\x13\x27\x22\x06\x0b\x74\x5f\x2d\x41\x4e\x11\x48\x01\x94\ \x4a\x66\x81\xe3\xc6\xbd\xf7\xde\x7b\xef\x01\x2a\xd5\xdc\xb9\x73\ \xe7\x02\xa5\xa5\x4c\xe1\x68\xde\xa4\x9c\xe4\x9a\x8c\x46\x2a\xad\ \xb0\xfb\xda\x72\xcd\x48\xcd\x48\xa0\x39\xef\xf4\xfc\xd3\xf3\xef\ \x42\x40\xd7\x79\x06\xa0\x7a\x13\x37\x9d\x9b\x1e\xf0\xe1\xb4\x60\ \xe2\xf9\xf3\xe7\xcf\x9f\x07\xa8\x44\xe0\x70\xb0\x7a\xfc\xc5\x8b\ \xac\x4a\x19\x1b\xfb\xfc\xf3\xcf\x3f\x0f\x8c\x1d\xbb\x6b\xd7\xae\ \x5d\x00\xc7\x31\xd3\x96\xba\x18\x02\x9e\x34\x4f\x0e\xb8\x81\x02\ \x3d\x58\x82\xba\x3b\x5e\xb6\xb0\x63\x84\xa4\xa7\x6f\xdf\xbe\x7d\ \x3b\x10\x1d\xfd\xf4\xd3\x4f\x3f\x1d\x50\xb8\x8e\x8e\x9e\x25\x09\ \xa3\x91\xcd\xcb\x64\x62\xad\x56\xcb\x70\x70\xda\x7e\x4c\xfd\x31\ \x35\x70\xac\x26\xd8\x05\x85\xdf\xba\x78\xeb\x22\xa0\xfe\x46\x35\ \x43\x35\x23\x90\xb7\xfb\x7c\x6c\x3d\x40\x96\xd0\xd4\xc4\x3e\x50\ \x5e\xce\xd2\xcc\xcc\xcc\x37\xde\x78\xe3\x0d\x20\x39\x79\xdd\xba\ \x75\xeb\x02\x2e\x4b\x2e\x08\x06\x4c\xf4\xde\x68\xf2\x50\xbb\x2a\ \xa9\xe5\xa6\xa4\xbc\xfc\xf2\xcb\x2f\x03\xa3\x46\x6d\xda\xb4\x69\ \x53\x80\x08\xca\xf2\x48\x22\x22\xd8\x7c\xe3\xe3\x99\xc2\x85\x7f\ \x66\xdc\x6e\xdc\x0e\xb4\xa8\x4b\x4b\x4b\x4b\x7b\x21\xc0\x5b\x6f\ \xff\xd4\xfe\x29\x60\x39\x58\xfd\xf7\xea\xbf\x03\x7e\x3f\xd3\x7c\ \x92\x9a\x0d\xb6\x7f\xd8\xfe\x01\x5c\xbd\xca\x08\xc8\xce\x3e\x70\ \xe0\xc0\x01\x20\x26\xa6\xa0\xa0\xa0\x40\x7e\xc0\xa1\x80\x1f\x6a\ \xa0\xc8\x85\x50\x70\x95\x6b\xc9\x12\xe5\x5a\xe9\x73\x52\x17\x19\ \x1f\xbf\x7c\xf9\xf2\xe5\x40\x5a\xda\x8e\x1d\x3b\x76\x00\xe5\xa9\ \x96\x9b\x96\x9b\x80\xd5\xda\x53\xc3\x29\x48\xfb\x2f\x3a\x0a\x1d\ \x85\x80\xfd\x06\x4b\x7b\xef\x78\x06\xf1\xb6\x50\xc9\xe1\xc4\x8b\ \xd3\x84\x69\x02\x90\x34\x9f\xaf\xe1\x6b\x80\xce\x77\xfd\x76\xbf\ \x1d\x70\xa6\x99\xf4\x26\x3d\x70\x35\x7c\xd1\x84\x45\x13\x80\x67\ \x37\xad\xf7\xaf\xf7\xcb\x03\x2f\x95\x50\xbf\x0f\xf6\x3d\x02\x6c\ \xef\xde\x77\xdf\xdd\xb7\x0f\x68\x6f\x6f\x6d\x6d\x6e\xee\x7f\x7f\ \x52\x31\x1a\x63\x62\x62\x63\x81\x95\x2b\x0b\x0b\x9f\x79\x86\x6d\ \x84\xba\xdd\x01\xc5\xa2\xf5\x45\xb1\xfb\x35\xc5\x6b\x0a\x20\x6d\ \xef\xdf\x34\x7f\xd3\x00\x19\xaf\x47\x8c\x88\x18\x01\x78\xae\xfa\ \x0f\xfa\x0f\x02\x2d\xb9\xb1\x63\x62\xc7\x00\x0b\xac\x15\xe9\x15\ \xe9\x80\x42\xc1\xc6\xab\xbc\xc3\x94\x81\x1d\xfb\xc8\xdb\x53\x52\ \x5f\x52\x0f\x1c\x3c\x30\x6a\xf6\xa8\xd9\x40\xe2\xfe\xdc\x82\xdc\ \x02\x20\x3f\xf6\xf0\xc7\x87\x3f\x06\x4a\x9f\xd8\xf6\xc4\xb6\x27\ \x00\x51\x14\xf7\x88\x7b\x02\x03\x95\xfa\xd0\x92\x92\x92\x92\x92\ \x92\xd0\x13\x94\x6a\x96\xdc\xef\x52\x99\x31\x63\xc6\x8c\x19\x33\ \x82\xdf\x23\xe0\xdd\xee\xa4\xa4\x47\x1e\x01\x22\x23\xf5\x7a\xa6\ \xd9\x4a\x65\xf7\xfd\x00\x9f\x8f\x8d\xd7\xe7\xf3\xf9\xd8\xe9\x0a\ \xd6\xf2\xbc\xcf\xe7\xf7\xb3\x96\xcd\xa7\xa9\xe9\xc4\x89\xe0\x71\ \x50\xbf\x3c\xcf\xd2\x71\xbc\x99\xb6\x23\x6d\x07\x90\xf7\x5f\xe5\ \x6b\xcb\xd7\x02\xc7\x52\x27\x63\x32\x00\xdf\x1f\xdd\x4f\xb8\x9f\ \x00\x9e\xbc\xfe\x45\xe3\x17\x8d\x01\xe0\x49\x94\xd2\x89\xe9\xb5\ \x23\x47\x8e\x1c\x09\x2c\x59\xc2\xa2\xbd\x46\x63\x36\x9b\xcd\x04\ \x45\x30\xe0\x52\x97\x40\x12\x19\xc9\x6a\x39\xa5\xa5\xe5\xe5\x17\ \x2e\xf4\x9d\x88\x50\xd7\x33\x67\x4e\x9f\x3e\x7b\x76\x30\xe1\xa1\ \x08\xa4\x6f\x71\x9c\x42\xc1\xfe\x2d\x08\x90\x91\xde\x08\x97\xba\ \x48\xb2\x00\xba\xe6\xb2\xb8\x2c\x2e\x0b\x88\x32\x66\x64\x64\x64\ \x00\xff\x7c\xb9\xb6\xa1\xb6\x01\x70\x47\x30\xcf\xa2\x53\xb3\x7d\ \x0a\xa9\x28\xe5\x06\xa1\xd1\xb0\x3c\x3e\x94\xc8\x11\x11\x1f\xcf\ \x2c\x8a\x06\x1a\x0a\xe0\xbe\x12\x91\x98\xc8\x4a\x25\x52\xc0\xe5\ \x08\xf1\xfb\xfd\xfe\x9e\x50\xd3\x4e\x33\xfd\x2e\x17\x5b\x7a\x27\ \xf4\x0e\xe0\x1c\x55\x00\x98\x0b\x52\x2e\x56\x2e\x56\x2e\x0e\x3c\ \xa7\x8b\x61\x80\xeb\xd0\x3b\xf0\x24\x03\xde\x11\x0b\x95\x3e\x8e\ \x1e\x3d\x7a\xf4\xe8\xd1\x81\x05\x16\xa5\x9d\x14\x24\xe9\x3a\xd4\ \x7d\x69\x9d\x3f\x35\x35\x35\x35\x35\x55\x3e\x7d\x24\xf1\xf9\x18\ \xf0\xe4\x5a\x3c\x1e\x9e\x67\x1b\x2f\xe4\x62\x78\xbe\xbb\x0b\xa2\ \xe7\xfd\x7e\x41\x10\x45\xc0\xeb\x65\xbf\x87\x9a\x2f\xd5\xb0\x94\ \x45\xca\x22\xe5\x00\x36\xef\x95\xfd\x7d\x81\x73\x73\x6e\xce\x2d\ \x9f\x95\x90\x44\x47\xb3\x15\xa5\xb4\x4c\x3c\x58\x21\xd7\xd6\xd4\ \xd4\x73\x23\x47\xda\x3f\x01\x4a\x3e\x5d\x6a\x49\x1d\x1d\x6e\x37\ \xcf\x03\x6d\x6d\x0e\x87\xdb\x0d\xd8\x6c\x2e\x97\xc7\x03\x74\x76\ \xb2\xfb\x44\x44\x6e\xae\xd1\xd8\xfd\xfb\xd2\x7e\xee\x5c\xd7\xa3\ \x1e\xf5\x3f\x01\x01\xe2\x06\x71\x83\xb8\x21\x74\xbe\xdc\x07\x2a\ \xb9\x50\xbf\xde\xed\x09\xa9\xe6\x4b\xaf\xeb\xea\x9a\x9a\x9c\x4e\ \x66\x49\x0a\x45\x80\x08\x97\xab\xab\x8b\xd5\xb0\xa4\xae\x29\xc4\ \xbc\x65\x2c\xc0\xeb\x65\x0b\x31\x6d\x94\x36\x4a\x1b\xf5\x13\x10\ \x20\x1d\x90\x9c\x66\x04\x80\xa4\x20\xd8\xbb\xcf\xbf\x9b\xd0\xf9\ \x7e\x65\x2f\xa3\x94\xd5\xc4\xdb\xd2\xd6\xe6\x74\xba\xdd\x03\x9d\ \x5d\xe8\xf9\x92\xdc\x89\x09\x79\x5c\x1e\x97\xd7\xff\xef\x0e\xfa\ \x54\x44\xa8\x25\x7d\xe0\x1c\x10\x49\x20\x1f\xe9\xad\x7d\xe0\x81\ \xd8\xd8\x13\x27\x80\x05\x0b\x26\x4d\xfa\xc3\x1f\x00\xbd\x9e\xe3\ \x4a\x4b\xe5\xd3\xc0\x81\x5b\xe0\xe0\x08\xa0\x7e\x29\x08\x87\x55\ \x87\x55\x87\x55\xf7\xff\xbb\xf7\xdc\x02\x54\x2a\x95\x4a\xad\x66\ \x00\xf6\xe5\x0f\x25\xac\xd6\xb6\x36\x56\x23\x72\xbb\x29\x18\xf2\ \x3c\x00\x74\xcf\x9e\xfb\x9e\x86\x0e\x95\x48\x81\x27\xa1\xd8\xa6\ \xfa\x5a\xf5\xb5\xea\xeb\xfe\x7f\x77\xc8\x08\x90\xcb\x46\x82\x35\ \xfd\xee\xe2\x72\x89\x62\x5e\x1e\xe0\x70\x38\x9d\x0f\x3f\xcc\x16\ \x2e\xdd\x77\xc0\xe4\x88\x27\x20\x8c\x46\x93\x29\x2e\x0e\xc8\xcd\ \x05\xae\x5c\x19\x3c\xf0\x51\x51\x46\xa3\xc9\x14\xba\x44\x02\x1e\ \x3c\xf8\x61\x20\x40\xce\x05\x48\xaf\x43\x05\x55\xa9\x84\x85\x29\ \x14\x4c\xe7\x83\xcf\x5c\xf4\xe6\xea\xa8\x44\xb0\x6c\xd9\xd2\xa5\ \x4f\x3e\x19\x5c\x83\x1a\xa8\x50\x3f\xb4\x95\x29\x9d\x2f\x05\x61\ \xcd\x4e\xcd\x4e\xcd\xce\x7b\x40\x00\x6d\x66\xdf\xd9\x4b\xdd\x2c\ \x6e\x16\x37\x03\xe2\xfb\xe2\xfb\xe2\xfb\xa1\x5d\x51\xc0\x73\xf7\ \x37\x04\xdf\x5d\x82\xd3\x4e\xe6\x8b\x9d\x4e\xb6\x4f\x31\xd8\xef\ \xf5\xf5\x79\x6a\x3d\x3b\x3d\x3b\x3d\x3b\x01\xfb\x4b\xf6\x97\xec\ \x2f\x05\xb6\x3e\x03\x7f\x60\xd2\x4f\x02\x48\xa3\x68\x42\x74\xba\ \x40\x2a\x72\xf9\x3d\x69\x8a\x46\xa3\x56\x77\x3f\x77\x43\x22\x6f\ \x11\x7d\x23\x4a\xde\xe5\x0d\x2d\xd0\x72\xef\x49\x83\x30\xbf\x86\ \x5f\xc3\xaf\x01\xda\xdb\xd9\x56\x2c\xdd\xa7\x75\x0b\x15\x0b\xa5\ \x12\x64\xa4\xf4\x61\x22\xa0\xab\x8b\xd5\xb9\x89\x00\xe9\x3a\x20\ \x54\xcb\x71\x1c\xd7\xbd\x14\x11\xc8\x66\xe4\xb2\xa1\xfe\x01\x22\ \x17\x8b\xee\xf5\x3e\x02\x09\x29\xa0\xaf\xd0\x57\xe8\x2b\x0c\x78\ \x0a\xc2\x8d\x70\x94\x13\xa5\xdc\xc4\xe4\x06\xa2\x59\xa3\x59\xa3\ \x59\x03\x38\x8f\x38\x8f\x38\x8f\x04\x4e\x2d\x04\x31\xdb\x4f\x1f\ \xdc\xd7\x75\x02\x3d\x17\x15\x15\x15\x15\x35\x80\x85\xcf\x50\x4b\ \xcb\xc2\x96\x85\x2d\x0b\x01\x9d\x56\xa7\xd5\x69\xe5\x8f\xd7\x74\ \x57\xc8\x1e\xb5\x2e\x51\xec\xdd\x28\x49\xe3\x1d\x0e\x76\x56\x93\ \x5c\xd1\xb7\xc7\xbe\x3d\xf6\xed\x31\xa0\x62\x7f\xc5\xfe\x8a\xfd\ \x80\x72\x8d\x72\x8d\x72\x4d\xf0\xc0\xb4\x65\xda\x32\x6d\x19\xc0\ \x6d\xe0\x36\xe0\x3f\x00\x51\x2d\xaa\x31\x84\xe2\x3e\xe9\x3e\xe9\ \xbe\x0f\xfe\x8b\x02\x75\x99\xba\x4c\x5d\x06\xe4\x2f\xc9\x5f\x92\ \xbf\x04\x30\x24\x19\x92\x0c\x49\x01\xd7\x43\x8a\x42\xa7\x3c\xa4\ \x22\x4b\x00\xdd\x25\xe0\x3b\x3a\xd8\x41\x23\x32\x31\x17\xef\xe2\ \x5d\x3c\xe0\xaa\x74\x55\xba\x2a\x01\x71\x9a\x38\x4d\x9c\x06\xf8\ \x39\x3f\xe7\x1f\xd2\x70\x7b\x7f\x89\xf2\x73\xe5\xe7\xca\xcf\x01\ \x45\x84\x22\x42\x11\x01\x18\xd2\x0c\x69\x86\xb4\xe0\xe3\x34\x14\ \x84\xe9\x40\x99\x9c\xf4\xf9\x74\x34\x6d\x3c\x90\x6f\xa3\xf4\x4b\ \x6a\x72\x14\x7c\x7e\xa9\x42\x59\x0d\xb9\x58\xe9\x16\xa8\xf4\x78\ \x4d\x28\x19\xb2\x3f\x51\x0a\x55\x1e\xfe\xa5\x48\xf0\x31\xf8\xc1\ \xc9\xff\x01\xbc\x62\x57\xda\xa5\x78\x9d\x0c\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x14\x2c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x23\x20\xca\xcc\x04\xd8\x00\x00\x13\xb9\x49\x44\ \x41\x54\x78\xda\xed\x9d\x79\x70\x1b\xd7\x7d\xc7\xbf\x6f\x17\x37\ \x45\x91\x04\x40\x02\x3c\x25\x45\x96\x65\x5b\x24\x95\x44\x89\x12\ \x45\x87\xed\xc4\x47\x1b\x3b\x99\x38\x77\xdd\x1c\xd3\x69\x27\x8e\ \x9d\xc8\x6d\x3a\x93\xfc\xe1\x64\xa6\xee\xc4\xb6\x4e\x8f\x2e\x3b\ \xb1\x5d\xa7\x99\x89\x67\x3c\x9d\x3a\x89\x63\x47\x94\x9b\xba\x31\ \xa9\x1c\xa6\x78\x49\x22\x29\xd1\x3c\x2c\xde\x00\x48\x10\x20\x09\ \x92\x20\x88\x63\xdf\xeb\x1f\x00\x48\x00\x24\x00\xe2\x24\x20\xbf\ \xcf\xcc\x8e\x08\x68\xb9\x58\xec\xe7\xfb\x7e\xfb\x76\xf7\xed\x12\ \xe0\x70\x38\x1c\x0e\x87\xc3\xe1\x70\x38\x1c\x0e\x87\xc3\xe1\x70\ \x38\x1c\x0e\x87\xc3\xe1\x70\x38\x1c\x0e\x87\xc3\xe1\x70\x38\x1c\ \x0e\x87\xc3\xe1\x70\x38\x1c\x0e\x87\x93\xaf\x90\x78\x33\xd4\x7f\ \xfc\xe3\x9f\x01\x23\xbf\x00\xb0\x85\x6f\xae\x30\xe6\x09\xc3\x9b\ \xcc\xbb\xf4\x48\x57\x57\x97\x33\x5f\xbf\x84\x10\x37\x21\x8c\xbc\ \xc0\xe5\xaf\x49\x21\x23\xf8\x7b\x28\xd4\x7f\xd8\xb3\x67\x4f\xd1\ \x4d\x1b\x00\x06\xdc\xc2\x5d\xc7\xdc\x42\xfb\xbd\x82\xf8\xc7\x5d\ \xfb\xf6\x69\x6f\xca\x00\x70\xd6\x93\x01\xec\x11\xbd\x52\x63\xed\ \x27\x3e\x61\xe0\x01\xf8\xe0\x52\x2f\x48\x68\xda\xbd\x6f\x5f\xe5\ \xcd\xd5\x09\xfc\xd8\x5e\x16\xf9\x9e\x4c\x26\x43\x4d\x75\x15\x44\ \x51\xfc\x40\x19\xf6\xf9\x24\x98\xcc\x66\x78\x3c\x9e\x58\xb3\x0d\ \x09\x32\xe1\xd3\x57\x2f\x5d\x1a\xbe\x29\x03\x40\x08\xc1\x23\xff\ \xf4\x8f\xa8\xa9\xa9\xfe\x40\x36\xf3\x99\x99\x59\xfc\xf2\x57\xaf\ \xc0\x66\xb3\xc5\x9a\x6d\x8c\x08\xb8\xa7\xb3\xb5\xb5\xff\xa6\x0b\ \x80\x4e\xab\xc5\xbf\x1c\xfe\xfe\x07\xba\xd6\x3b\x9d\x4e\xfc\xf2\ \x57\xaf\x60\xd2\x6a\x8d\x35\xdb\x04\x21\xec\x9e\xce\xb6\xb6\xeb\ \xb9\xfc\x5d\x64\x09\xff\x82\x4c\x06\x49\x92\x3e\xd0\x01\x50\xa9\ \x54\xf8\xf6\x37\xbf\x81\x57\x5e\x7d\x15\x16\xcb\x44\xb4\xd9\x8c\ \x8c\x91\xa6\xfa\x3d\x9f\xbc\xbf\xab\xe3\xd2\xe5\x9b\xa6\x13\xc8\ \x18\x83\x44\xe9\x07\x7e\x52\x2a\x95\xf8\xe6\xc3\x0f\xa3\xba\xaa\ \x2a\xd6\xe6\xd2\x83\xd0\x3f\xd6\xed\xdd\xbb\xef\xa6\xa9\x00\x0c\ \x0c\x92\xe4\xe3\x7d\x7e\x00\x32\x99\x88\xaf\x7d\xe5\xcb\x78\xed\ \x37\xbf\xc5\xc8\xe8\x68\xb4\xd9\x8a\x09\xc5\xff\x7e\xf8\x63\x9f\ \xfc\xdc\xd5\xf6\x4b\x4d\x79\x1f\x00\x00\x90\x7c\x12\xb7\x1f\x40\ \x14\x04\x7c\xf9\xa1\x2f\xe0\xf5\x37\x7f\x8f\xc1\xa1\xa1\x68\xb3\ \x6d\xa2\xa0\x0d\xbb\x3f\xba\xf7\x8b\x9d\x97\x5b\xff\x90\x53\xeb\ \x1f\x6f\x06\x43\x45\xe5\x93\xa1\xaf\x35\x1a\x0d\x76\xd7\xd5\x82\ \x31\x96\xf4\x34\x3c\x34\x84\xee\xee\x2e\x38\x9d\x4e\x94\x68\xb5\ \x29\x2d\x2b\x95\x89\x52\x8a\x2b\x97\x3b\xf0\xa7\xa6\x26\x0c\x0d\ \x0d\x41\xa7\xd3\x41\xa9\x54\x25\xbc\x1c\x42\x08\x6e\xbd\x75\x07\ \xec\x76\x3b\xa6\xa7\x67\xa2\x6d\x4a\x39\x08\xbe\x5a\x56\x51\xd5\ \x6d\x35\x9b\xfa\xf2\x37\x00\x6a\x35\x6a\x6b\x77\x81\x32\x96\xd4\ \x74\xe5\xca\x15\x5c\xb9\xdc\x01\xc7\xec\x2c\x2c\x66\x33\x9c\x4e\ \x27\x8c\xe5\xe5\x7e\x21\x59\x9c\x24\x4a\xd1\xdc\xfc\x2e\xde\x1f\ \x18\x00\x63\x0c\x4b\x2e\x17\x46\x47\x47\x51\x66\x34\x42\xa1\x54\ \x26\xbc\x3c\x00\xd8\xb1\x7d\x3b\x66\x1d\x0e\xd8\xed\xf6\xa8\xdb\ \x9b\x00\x5f\x32\x54\x54\x0d\x4c\x9a\x4d\xd7\xf2\x32\x00\x6a\xb5\ \x1a\xb5\xbb\xee\x48\xaa\xc5\x75\x5d\xbd\x8a\xbe\xde\xf7\x20\x93\ \xc9\xf0\xf0\xc3\x0f\xa3\xaf\xaf\x0f\x36\xdb\x94\x3f\x04\xc6\xf2\ \xac\xb6\xfc\xd6\x4b\x97\x30\x3a\x32\x02\xb5\x5a\x8d\xa7\x7e\xfa\ \x53\x2c\x38\x9d\x18\x1e\x1e\xc6\xd8\xe8\x08\x0c\x06\x03\x14\x4a\ \x65\xe2\xcb\x06\xb0\x6d\xeb\x56\x2c\x3a\x17\x31\x15\xfd\x3c\x81\ \x08\xe0\xa1\xb2\xca\xaa\x31\xab\xd9\x74\x35\x2f\x2b\xc0\x1d\xb7\ \xdf\x9e\xf0\xc6\xe9\xee\xea\x44\x5f\x5f\x2f\x64\x32\x19\x9e\x78\ \xe2\x09\x3c\xf8\xc0\x03\xa8\xdd\xb5\x0b\x17\x2f\x5e\x84\xcd\x66\ \xc3\xa2\x73\x11\x06\xa3\x31\x2b\xf2\xdb\x5b\x5b\x30\x3a\xea\x97\ \xff\xf4\x53\x4f\xa1\xae\xae\x0e\x07\xf6\xef\xc7\xe0\xd0\x90\x3f\ \x04\x63\xa3\x28\x33\x18\xa0\x50\x28\x12\x5e\x3e\x00\x6c\xa9\xa9\ \x81\xdb\xed\x86\xd5\x3a\x15\xf5\xe8\x8b\x00\x9f\x37\x54\x56\x4c\ \x4d\x9a\xcd\x6d\x79\x56\x01\x54\xb8\xfd\xb6\xdb\x12\xda\x28\xd7\ \xba\xbb\x31\xd0\xd7\xbf\x2c\x7f\xff\xfe\x4f\xf9\x97\x6d\x30\xa0\ \xb6\xb6\x16\x17\x2f\xfe\x09\x76\x9b\x0d\x8b\x8b\x4e\x94\x19\x0c\ \x19\x95\xdf\xd1\xde\x86\xb1\xd1\x31\xbf\xfc\xa7\x9f\xc2\xae\x5d\ \xbb\xfc\x46\x04\x01\x07\x0e\x1c\xc0\xd0\xe0\x10\x46\x86\x47\x60\ \x1a\x1b\x43\x69\x59\x59\x52\x21\x60\x8c\xa1\xba\xaa\x0a\x92\x44\ \x31\x31\x39\x19\xe3\x24\x1c\xf9\xac\xa1\xb2\xca\x39\x69\x36\xbd\ \x9b\x57\xbb\x80\xdb\x6e\xbd\x75\xdd\x1b\xa2\xe7\xda\x35\xbc\x3f\ \xe0\x97\xff\xe3\x27\x9e\xc0\xfe\xfd\xfb\xc3\x97\x1f\x08\x41\xd3\ \xc5\x8b\xb0\xdb\xed\x70\x2d\x2e\xa2\xb4\xac\x2c\x33\x1d\xbe\x8e\ \x0e\x8c\x8f\xf9\xe5\x3f\xf3\xf4\xd3\xcb\xf2\x97\x9b\x65\x30\x04\ \x43\x83\x18\x1e\x19\x86\xc9\x34\x0e\x7d\x69\xf2\x21\xa8\x28\x2f\ \x07\x21\x04\x96\x89\x89\x58\x67\x62\xef\x33\x96\x57\xd0\x49\x8b\ \xf9\x4f\x79\x11\x00\x95\x4a\x8d\x9d\x3b\x76\xac\x6b\x03\xbc\xd7\ \x73\x1d\x37\xde\x1f\xf0\xcb\xff\xf1\x8f\x57\xc9\x0f\x0d\x41\x5d\ \x6d\x2d\x2e\x36\x35\x61\xda\x6e\xc7\xa2\x6b\x11\xa5\xa5\x65\x69\ \x95\x7f\xf5\xca\x65\x98\xc6\x03\xf2\x9f\x79\x66\x95\xfc\xd5\x21\ \xf0\xef\x0e\xcc\x26\x13\xf4\xfa\x52\xc8\x93\x0c\x81\xc1\x50\x06\ \x99\x4c\x06\xb3\xc5\x12\xe3\x84\x3c\xb9\xdb\x58\x59\xa9\x9e\x34\ \x9b\xfe\x2f\x0f\x02\xa0\xc2\x8e\x5b\x6e\x89\xdb\x2b\xee\x7d\xaf\ \x07\x83\x37\x6e\x40\x26\x93\xe1\x27\x31\xe4\x87\x85\xa0\xae\x0e\ \x4d\x17\x2f\x62\x7a\x7a\x1a\x8b\x8b\x2e\xe8\x4a\x4b\x53\x3e\x3a\ \x90\x28\x45\xe7\xd5\xab\x30\x9b\x4c\xd0\xc4\x91\x1f\x19\x82\x60\ \x9f\xc0\x6c\x36\x41\xab\x2f\x85\x5c\x2e\x4f\x6a\x1d\x4a\xf5\x7a\ \xa8\x55\x2a\x98\xcc\xe6\x58\x1f\x7b\xc0\x58\x51\xa9\x9f\x34\x9b\ \xfe\x27\xb7\x03\xa0\x54\xe2\x96\xed\xdb\x63\xa6\xbe\xbf\xb7\x17\ \x43\x83\x83\x7e\xf9\x3f\xf9\x09\x0e\xc4\x91\x1f\xb6\x3b\xa8\xab\ \x43\x53\x53\x13\x66\xa6\xa7\xb1\xe4\x72\x41\xa7\xd7\xa7\xd4\xf2\ \xaf\x75\x75\xc2\x62\x36\x41\xa3\xd1\xe0\xc8\x3a\xe4\x87\x86\xe0\ \xe0\x81\x03\x18\x1c\x1c\xc4\xf0\xf0\x30\x26\xcc\x66\xe8\x74\x7a\ \xc8\xe5\xf2\xa4\xd6\x45\xab\x2d\xc1\xa6\x82\x82\x78\x21\xd8\x6b\ \xa8\xac\xac\x3c\xb4\xff\x53\x17\x7a\x7a\x7a\x58\xce\x56\x80\xed\ \x1f\xda\x16\xf5\x8b\x9a\xc6\xc7\xf1\x7e\x7f\xff\x8a\xfc\x03\xfb\ \x13\x5a\x21\xff\xee\x20\x18\x82\x19\x7f\x08\x74\x3a\x20\x09\xf9\ \xd7\xbb\xbb\x31\x61\xb6\xf8\xe5\x1f\x59\xbf\xfc\xb0\x10\x1c\x3c\ \x88\xc1\x40\xc7\xd0\x3a\x39\x01\x83\xc1\x08\x51\x10\x92\x0a\x41\ \x71\x51\x11\x0a\x0b\x0b\x61\x36\x5b\x96\x8f\x18\xd6\xe0\xa3\xd3\ \x33\x8e\xed\x87\x0e\x7c\xea\x8d\x6c\x84\x20\xe1\x00\x28\x95\x4a\ \x6c\xdb\xb6\x35\x66\xe9\x77\xbb\xdd\x78\xfc\xf0\x61\xdc\x7b\xef\ \x3d\x49\xad\x94\x7f\x77\x50\x8b\xc6\xa6\x26\xcc\xcc\xcc\x60\x69\ \xc9\x85\x12\xad\x6e\xdd\xbb\x03\x89\x52\xf4\x5c\xbf\x86\x89\x89\ \xa0\xfc\x23\xa8\x4d\x50\x7e\x64\x08\x5a\x5a\x5b\x61\xb5\x5a\x51\ \xb0\x69\x13\x34\x05\x05\x49\xef\x92\x36\x17\x16\xa2\xa8\xa8\x08\ \x26\xb3\x39\x7a\x08\x08\xea\xed\xb3\x73\xb5\xfa\x92\xe2\xdf\x4d\ \x4d\x4d\x65\xf4\xbc\x7b\xe2\x57\x03\xc1\x20\x49\x52\xd4\x49\xad\ \x56\x83\x31\x86\xd7\x7e\xfd\xeb\x78\x83\x26\x62\x52\x5f\x5f\x8f\ \xa3\x47\x8e\x40\xa1\x50\xc0\x6c\x32\xa1\xb7\xa7\x07\x3e\x9f\x2f\ \xe6\x67\x4b\x92\x04\x9f\xcf\x87\x9e\x6b\xd7\x30\x61\xb1\x40\xad\ \x56\xe3\xc8\x33\xcf\x24\x2d\x3f\xc8\xdb\x6f\xbf\x8d\xfe\x7e\xff\ \xd8\x0e\xb5\x46\x1d\x77\x1d\xe2\x4d\x86\xb2\x32\x7c\xf2\x13\x7b\ \xe3\x8c\xa8\x62\x5f\x14\xd5\x05\xaf\xef\xdb\xb7\x4f\x9d\x73\x15\ \x60\x4b\x4d\x4d\xd4\x32\xa7\xd1\x14\xc0\x62\x36\x61\x6e\x6e\x0e\ \xcd\x97\x2e\xe1\xe0\xc1\x83\xd0\x68\x34\x49\x57\x82\xfa\xba\x3a\ \x34\x36\x35\xc1\x31\x3b\x0b\xf7\xd2\x12\x8a\x4b\x4a\x62\x96\xfd\ \xfe\xde\xf7\x30\x65\x9d\x84\x46\xa3\xc1\xd1\x23\x47\x50\x5b\x5b\ \x9b\xd2\x06\x7a\xeb\xad\xb7\x70\xf2\xd9\x67\xc1\x18\xc3\xb6\x0f\ \x6d\x5f\xae\x44\xa9\x4e\x1a\x8d\x06\x3a\xad\x16\x96\x89\x09\x50\ \x4a\xa3\x7d\xfc\x0e\x2f\x63\xfb\x0c\x7a\xdd\x6f\x26\x27\x27\xbd\ \x39\x11\x00\x85\x42\x89\x9a\xaa\x2a\x30\xca\xd6\x9c\x44\x51\x84\ \xb1\xbc\x02\xb3\x33\x33\xb0\xd9\x6c\x68\x6e\x6e\xc6\xa1\x34\x84\ \xe0\x9d\xc6\xc6\x40\x08\xdc\x28\x2a\x2a\xf6\x6f\xc8\x90\xcf\xa5\ \x12\xc5\x40\x5f\x1f\xa6\xac\x56\x68\x34\x1a\x1c\x3b\x7a\x34\x2d\ \xf2\x4f\x9c\x3c\x09\xc6\x18\xb6\x6c\xfd\x10\xca\x2b\x2a\xa2\x7e\ \xef\x64\x26\x95\x4a\x05\x9d\x4e\x8b\x89\xc9\xc9\x58\x21\xd8\x06\ \x51\x76\xa8\xaa\xdc\xf8\x5b\x8b\xc5\xe2\xce\x89\x0a\x50\x55\x55\ \x19\xf7\xea\x98\x4e\xa7\x83\xc3\x31\x0b\xbb\xcd\xee\x0f\xc1\xa1\ \x14\x43\x50\x5f\x8f\xc6\x77\x1a\x31\xe7\x70\xc0\xed\x59\xc2\xe6\ \xe2\x62\x30\xac\xb4\xfc\x1b\x03\xfd\xb0\x4f\x4d\xf9\xe5\x1f\x4b\ \x93\xfc\x13\x7e\xf9\xd5\x5b\xb7\xc2\x58\x91\x99\x6b\x15\x4a\xa5\ \x12\x7a\xbd\x0e\x93\x56\x6b\xac\x91\x56\x35\x94\x08\xf7\xe8\xb7\ \xd4\xfc\x66\x6a\x7c\xdc\xb5\xc1\x15\x40\x81\xca\x8a\x8a\xf8\xe7\ \xc4\x09\x81\x56\xab\x85\xc3\xe1\x80\xdd\x1e\xa8\x04\x87\x0e\xa5\ \x14\x82\xba\xfa\x7a\x34\x36\xbe\x03\x87\xc3\x01\xb7\xdb\x8d\xcd\ \x45\x45\xa0\x94\x62\xf0\xfd\xf7\x61\xb7\xd9\xa0\xd1\x68\x70\xfc\ \xd8\xb1\x94\xe5\x5f\x78\xeb\x2d\x9c\x3c\x71\x02\x94\x31\x54\xd7\ \x6c\xc9\xf8\x35\x0a\x85\x5c\x0e\xbd\x5e\x87\x29\xeb\x54\xac\x10\ \x54\x08\x94\xfd\x6d\x69\x75\xd5\xeb\x56\x93\xc9\xb9\x61\x01\x90\ \xcb\xe5\xa8\x28\x5f\x5f\x6b\x00\x21\x28\xd1\x6a\x31\xe7\x70\xc0\ \x96\x86\x10\x18\x03\x27\x8b\x1a\x1b\x03\x95\xc0\xbd\x84\x99\xe9\ \x69\x4c\xdb\x03\xf2\x8f\x1f\x47\x5d\xaa\xf2\x2f\x5c\xc0\x89\x93\ \x27\x41\x29\x45\x55\x75\x0d\x4a\x33\x78\x6d\x22\x74\x92\xcb\x64\ \xd0\xeb\xf4\x98\xb2\xd9\x62\x85\xc0\x40\x18\x79\xd0\xb8\xa5\xe6\ \x77\x93\xe3\xe3\xf3\x1b\x53\x01\xe4\x72\x18\x8d\xc6\x84\xae\x93\ \x17\x95\x94\x60\x61\x6e\x0e\x76\xbb\x3d\xf5\x10\x18\x8d\xcb\x1d\ \xc3\xf9\xb9\x39\xb8\x5c\x8b\x19\x91\x5f\x5e\x59\x05\x7d\x59\x59\ \x56\xc7\x28\x88\x32\x11\xa5\x3a\x3d\xec\xd3\xd3\xf0\xf9\xa2\x0e\ \xbb\xd3\x83\xb2\x87\xca\x6b\xaa\xdf\x98\x18\x1f\x9f\xdd\x90\x00\ \x18\xca\xca\x12\xea\xec\x00\xc0\xe6\xe2\x62\xcc\xcf\xcf\xc3\x6e\ \xb7\xe1\xdd\x40\x08\x0a\x52\x0c\xc1\x3b\x8d\x8d\x50\x28\x14\x38\ \x71\xfc\x38\xea\xea\xea\x52\xda\x10\x0d\x17\x2e\xe0\xc4\x89\x13\ \xa0\x94\xc2\x58\x51\x09\x9d\xbe\x34\xad\x1d\xbe\xf5\x4e\x82\x20\ \x40\xaf\xd7\x61\x76\x76\x16\x5e\x6f\xd4\x10\x94\x30\xca\xbe\x68\ \xac\xaa\xbc\x30\x69\x32\xd9\x53\xf9\xde\x09\xdf\x17\xa0\xd1\xa8\ \x51\x5f\x9b\xdc\xc6\x96\x24\x09\x23\x43\x83\x58\x72\xb9\x50\x5d\ \x5d\x8d\x33\xa7\x4f\xa3\xb4\x54\x9f\xf4\xca\x77\x76\x76\x42\x10\ \x84\xd4\xe5\x37\x5c\xc0\xf1\x80\x7c\x43\x79\x39\x74\xfa\xd2\x8d\ \x1e\xa7\x01\xaf\xd7\x8b\xde\xbe\x3e\x38\x17\x17\x63\xcd\x96\xf2\ \xbd\x07\x09\x07\x20\x38\x22\x28\x59\xa8\x24\x61\x74\x78\x08\xee\ \xa5\xa5\x90\x10\x6c\xdc\x06\x6f\x68\x68\x58\x96\x5f\x6a\x30\x42\ \xab\xd7\x23\x57\x90\x24\x09\x7d\xfd\x03\x70\x3a\x63\xf6\xf9\x6c\ \x60\x42\xd2\xf7\x1e\x24\x15\x80\xdb\x6f\xdb\x99\xd2\x17\xa3\x92\ \x84\xf1\xd1\x91\xe5\x10\x9c\x3d\x73\x66\x43\x42\xd0\xd0\xd0\x80\ \x63\xc7\x8f\x83\x52\x0a\xbd\xc1\x80\x12\xad\x0e\xb9\x06\x95\x28\ \x06\x6e\xdc\x88\x17\x82\x59\x26\xe0\xb3\xdd\xad\xad\xcd\x19\x0f\ \x80\x4a\xa5\xc2\xce\x1d\x3b\x52\xff\x62\x94\xc2\x3c\x3e\x0a\xcf\ \x92\xdb\x1f\x82\xb3\xd9\x0d\x41\x43\x43\x03\x8e\x1d\xf3\xcb\xd7\ \x96\x96\xa2\xb8\x24\x77\x6f\xef\xa7\x8c\x62\x68\x78\x04\x0b\x0b\ \x0b\xb1\x66\x5b\x60\x84\x3d\xd8\xdd\xd6\x76\x31\xa3\x01\x50\x06\ \x2e\x07\xa7\xe5\x8b\x51\x8a\x49\xf3\x38\x3c\x6e\x7f\x08\xce\x9d\ \x3d\x9b\x95\x10\x9c\x6f\x68\xc0\xb1\x63\xc7\x40\x29\x45\x89\x4e\ \x8f\xcd\xc5\x25\xc8\x75\x18\xa3\x18\x1b\x37\x61\x7e\x3e\xe6\xd1\ \xdf\x22\xa1\x48\xe8\xde\x83\xa4\x02\xb0\x6d\xeb\xd6\xf4\xa5\x9b\ \x52\x4c\x59\xfc\xb7\x5c\xd7\x54\x57\xe3\xdc\xb9\xcc\x86\xe0\xfc\ \xf9\x06\x1c\x0d\xc8\x2f\xd6\x6a\x51\x58\x54\x8c\x7c\x81\x31\x06\ \xb3\xc5\x12\x2f\x04\x1e\x06\xf2\xd5\xee\xf6\x96\x37\x32\x13\x00\ \x85\x02\x5b\xb6\xd4\xa4\xb7\xc4\x51\x0a\xdb\xe4\x04\xbc\xcb\x21\ \x38\x97\x91\x10\x9c\x3f\x7f\x7e\x59\x7e\x51\x89\x16\x9b\x36\x6f\ \x46\xbe\xc1\x18\xc3\xa4\xd5\x8a\xb9\xb9\x98\x21\xf0\x02\xe4\x5b\ \x5d\xed\x2d\xff\x95\xf6\x00\x28\x14\x0a\x54\x55\xa6\xff\x21\x18\ \x8c\x52\x4c\x4f\x59\xe1\xf5\x7a\x50\x53\x53\x83\xe7\xd2\x1c\x82\ \xf3\xe7\xcf\xe3\xc8\xd1\xa3\xa0\x94\xa2\xb0\xa8\x04\x05\x85\x85\ \xc8\x67\xa6\x6c\xb6\x78\x95\x40\x22\x84\x3d\xdc\xd9\xd6\xf6\xdf\ \x69\x0f\x40\xb9\xd1\x98\x99\x74\x53\x8a\xd9\x69\x1b\xbc\x1e\x2f\ \x6a\x6a\x6a\xf0\xfc\x73\xe9\x09\xc1\xef\xcf\x9f\xc7\x91\x23\x7e\ \xf9\x9b\x36\x17\x41\xb3\x69\x13\xf2\x1d\xc6\x18\xc6\x4d\xa6\x58\ \x57\x11\x01\x60\xac\xab\xbd\x35\x66\xb9\x4e\xf8\xe6\x50\x9f\xcf\ \x07\xa7\xd3\x09\x95\x4a\x95\x91\x2f\x45\x88\x00\x80\xc1\x66\x9b\ \x82\xd5\x6a\x4d\x39\x00\xb3\xb3\xb3\x38\x7d\xfa\x34\x28\xf5\x9f\ \x5f\x57\xaa\xd5\x79\xff\x7c\x03\xc6\x18\x96\x96\x96\xd6\xb3\x83\ \x57\xc6\x9b\x25\xe1\x00\x50\x4a\x61\xb3\xdb\x21\x08\x02\x34\x1a\ \x0d\xd4\x6a\x15\x64\xa2\x2c\x2d\x5f\x6a\x71\x7e\x0e\x1e\xb7\x1b\ \x1a\x8d\x06\xa7\x4e\x9d\x4a\x78\x0c\xdf\x5a\x14\x17\x17\xe3\xd4\ \xa9\x53\xf8\xc1\x0f\xfe\x15\x0b\x0b\x0b\x70\x4c\xdb\xb1\xa9\xa8\ \x68\x3d\xc5\x2f\xe7\xf0\xfa\x7c\x70\xb9\x5c\x70\xb9\x5c\xf1\x5a\ \x7e\xf0\xf8\xf1\xc9\xb4\xf7\x01\xd6\x42\xa9\x50\x40\xa9\x52\x42\ \xa9\x54\x82\x24\xb1\x61\x19\x63\x70\x39\x17\xe0\xf3\xf8\xe5\x9f\ \x3e\x7d\x1a\xbb\xeb\xeb\xd3\xba\xf1\x7a\x7b\x7b\x71\xf8\xf1\xc7\ \x31\x37\x37\x07\x99\x5c\x01\xf5\xa6\x42\x10\x92\xfb\x21\xa0\x94\ \xc2\xed\xf1\xc0\xed\x76\xc7\x7b\x38\x55\xd8\x26\x05\x21\x3f\xe8\ \x6a\x6b\x39\x93\x95\x00\x2c\x2f\x8c\x10\xc8\xe5\x72\x28\x14\x0a\ \x28\x14\xf2\x75\x85\x81\x31\x06\xf7\xa2\x13\x3e\xaf\x07\x1a\x8d\ \x06\x67\x4e\x9f\xc6\xee\xdd\xbb\x33\xb2\x31\x07\x06\x06\xf0\xfd\ \xc3\x87\x31\x33\x33\x03\x51\x26\x87\x7a\xd3\xa6\x9c\xac\x04\x92\ \x24\xc1\xe3\xf5\xc0\xe3\xf1\xc6\xba\x2a\x18\xbd\xdd\x13\xf2\x68\ \x77\x5b\xcb\x4b\x19\x39\x0c\x4c\x04\x99\x4c\xb6\x32\xad\x35\x00\ \x92\x31\xb8\x97\x5c\x90\xbc\x5e\x68\x34\x1a\x9c\x3d\x93\x39\xf9\ \x41\x86\x86\x87\xf1\xd8\x63\xdf\x83\xcd\x66\x83\x28\x93\x41\xa1\ \xd6\x6c\x78\x25\xa0\x8c\x42\xf2\xf9\x07\xb4\x7a\x7d\xbe\xf5\x95\ \xf7\x68\x3d\x7f\x90\x7f\xe8\x6c\x6f\x79\x25\x63\x27\x82\x92\x85\ \x10\x02\x51\x14\x21\x8a\x22\x64\xa2\x08\x42\x08\xbc\xee\x25\x30\ \xc9\x17\x90\x7f\x26\xe3\xf2\x97\xbb\xc6\x63\x63\x78\xec\x7b\xdf\ \xc3\xc4\xc4\x04\x88\x28\x42\xae\x54\x03\x59\x0c\x01\x0b\x3e\x6b\ \x28\x30\x4a\x38\x05\xe1\xe1\x27\x80\x18\xbe\xd1\xdd\xd1\xfa\x5a\ \x42\x5e\xb2\x15\x80\x48\x04\x46\x21\xc0\x3f\x8a\xf8\xb9\x73\x67\ \xb3\x26\x3f\x88\xd9\x62\xc1\xa3\x8f\x3e\x06\x93\xc9\x04\x08\x04\ \x32\x85\x2a\x23\x21\xf0\x0f\x5e\xf5\x0b\xa7\x94\x86\xdd\x46\x9e\ \x46\xdc\x20\xec\x2b\x5d\x6d\x6d\xbf\x4f\xb8\x61\x6e\x44\x00\x04\ \x2a\x81\x00\x28\xd0\x68\x70\xee\xb9\x73\xf8\x70\x96\xe5\x07\xb1\ \x4e\x4d\xe1\xbb\x8f\x3e\x8a\x91\x91\x11\x00\x04\x82\x42\x99\x9a\ \xe8\x28\xcf\x0b\xc8\x30\x8b\x14\xe4\x0b\xd7\xda\x5b\xde\x4e\xaa\ \x32\x67\x3b\x00\xe9\x96\xef\xf5\x7a\x21\x97\xcb\x93\xfe\x7d\xbb\ \xdd\x8e\x47\x1f\x7b\x0c\x37\x6e\xdc\x00\x03\x01\x13\xc4\xb8\x95\ \x20\x54\x6c\x96\x24\x47\x63\x1e\x14\x0f\x74\x5d\x6e\xfd\x73\xd2\ \x3e\xb2\xb9\xb6\xe9\x96\xff\xc6\x1b\x6f\xe2\x6b\x5f\xff\x3b\x58\ \x63\x3f\xb1\x33\x26\x3a\x9d\x0e\x2f\xbd\xf8\x22\x76\xde\xba\x13\ \x60\x0c\x84\xfa\x40\xa9\x7f\xbf\x1c\x6d\xca\x72\x0b\x8f\xd6\x74\ \x67\xc0\x84\x7b\x53\x91\x9f\xd5\x00\x64\x42\xfe\x4f\x9f\x7a\x0a\ \xc3\xc3\xc3\x78\xe4\xbb\xdf\x4d\x29\x04\xc5\xc5\xc5\x78\xf1\xc5\ \x17\xfc\xc3\xc9\x19\x20\x52\x9a\xeb\xa7\x89\xa6\x08\xa3\x9f\xe9\ \xea\xb8\xd4\x92\xb2\x97\x7c\x96\x1f\xec\x3d\x8f\x8c\x8c\xa6\x1c\ \x82\xc2\xc2\x42\xfc\xfc\x67\xcf\xe3\x23\x1f\xf9\xc8\xf2\x3a\x63\ \x63\xcb\x7b\x94\x33\x3c\xb0\x88\x22\xb9\xab\xb3\xbd\xfd\x4a\x5a\ \xdc\xe4\xb3\x7c\x4a\x04\x48\x82\x08\x46\xd2\x13\x82\x82\x82\x02\ \x3c\xff\xdc\x39\xec\xdd\xbb\x17\x00\x20\x82\xe5\x5a\x25\x18\x15\ \x45\x72\xe7\x95\x96\x96\x9e\xb4\xf9\xc9\x67\xf9\x2c\xd0\x59\xa3\ \x24\x7d\x21\x50\xa9\x54\x38\x73\xfa\x94\xff\xa1\x16\x8c\xe5\x52\ \x25\x18\x14\x25\xd9\xa1\xab\x2d\x2d\x03\x69\x75\x94\xef\xf2\x97\ \xcf\xa6\xa5\x31\x04\x4a\xa5\x12\xcf\x3e\x7b\x12\x77\xdf\x75\x57\ \xa0\x12\x50\x90\x0d\x0d\x01\xe9\x15\x25\xf9\xc1\x2b\x57\xde\x1d\ \x49\xbb\xa7\x9b\x41\x7e\x26\x42\x20\x97\xcb\x71\xfc\xf8\x31\xdc\ \x7f\xff\x7d\x00\xf3\x9f\xb8\x22\x8c\x66\x5f\x3d\x43\x27\x3c\xe2\ \x9d\x57\xae\xfc\xd5\x9c\x89\xe5\x27\x7c\x67\x50\xfc\x44\x31\x10\ \xc6\xb2\x2e\x7f\xb9\x93\x44\x04\x10\x30\x38\x66\x1d\xf8\xf3\x5f\ \xfe\x8c\x4f\xdf\x7d\x37\x0a\x0a\x0a\x92\x0b\xb2\x20\xe0\xd3\x77\ \xdf\x0d\x8b\xc5\x82\xfe\xfe\x7e\x10\x20\xf0\xf9\x59\xeb\x19\xb4\ \x4b\x0a\xf1\xde\x6b\x1d\xcd\xb6\x4c\x7d\x80\x90\xfe\xc4\xfa\x4b\ \xe5\x0f\x7f\xf4\xc3\xac\xcb\xcf\x44\x25\x10\x04\x01\x4f\x3e\xf9\ \x6f\xb8\xe3\x8e\x3b\xc2\xbe\x5f\x16\xf8\x8b\x9c\x49\xf7\x5c\x6f\ \x6e\x9e\xce\x68\x3f\x2d\x03\x87\x29\x00\x80\x73\x67\xcf\x61\x28\ \xfa\xe3\xd3\x33\x26\x3f\x13\x21\x78\xf9\x17\xbf\x40\x4f\x4f\x4f\ \xa0\xc2\x64\xa5\xf5\xff\x11\x9e\xa5\xbf\xe9\xe8\xe8\x70\x64\xfc\ \x28\x2d\xdd\x0b\x0c\xca\xb2\x4f\x4f\xe3\x3b\xdf\x79\x24\xa9\x10\ \xa4\x2a\x3f\x9d\x21\xf8\x8f\x97\x5f\xc6\xcf\x7f\xfe\x02\x08\x01\ \xa8\x20\x64\xa3\xfc\x5f\x28\x90\x8b\x9f\xcb\xd6\x9f\xa3\xcd\x48\ \x27\x30\x95\x10\xa4\x4b\x7e\x3a\x42\x10\x2a\x5f\x22\x42\x16\xce\ \x0a\x90\xdf\x4a\x2e\xe7\x43\xcd\xcd\xcd\x2e\x64\x89\x8c\x1d\x06\ \x26\x13\x82\x74\xcb\x4f\x25\x04\x59\x97\x4f\xf0\xea\xce\x6d\x35\ \x5f\xbd\x7e\xfd\xba\x07\x59\x24\xa3\x27\x82\x12\x09\x41\xa6\xe4\ \x27\x13\x82\x0d\x90\xff\xf2\xce\xad\x5b\xbe\xf5\xda\x6b\xaf\x65\ \x7d\xb8\x72\x56\x2e\x07\xfb\x8f\xa1\x19\x74\x5a\x2d\x5e\x7a\xe9\ \x45\x6c\xdb\xb6\x2d\xab\xf2\xc3\xd7\x45\x02\x61\xc0\x96\x2d\x35\ \x78\xf1\x85\x17\x50\x56\x56\xb6\xa1\xf2\x09\xf0\x5c\x67\x7b\xeb\ \xe3\x21\xfd\x67\xdc\x34\x15\x60\x3d\x95\x20\x9b\xf2\xe3\x55\x82\ \x0d\x90\x7f\xbc\xb3\xbd\xf5\xf0\x46\xc9\xcf\x5a\x05\x88\x56\x09\ \xba\xba\xba\x93\x96\xbf\xde\x81\x9c\xd1\xae\xd9\x47\x56\x82\x37\ \xde\x7c\x33\xcb\x1d\x3e\x3c\xd9\xd5\xde\xfa\xef\xd8\x60\xb2\x3a\ \x28\x14\x60\x10\x18\x03\x61\x14\x9b\x37\x6f\xc6\xc2\xc2\x82\xff\ \x92\xae\x28\x03\x04\x71\x59\xea\xf2\xbf\xab\x17\x12\x37\x0c\x51\ \x07\x69\x44\xbc\xcf\x00\x30\xaf\x1b\x8c\x31\x14\x6d\x2e\x82\xc3\ \xe1\xf0\x7f\xa0\x20\x5b\x0e\x62\xe4\xc8\x9f\x34\x0e\x00\xf9\x51\ \x57\x7b\xeb\x09\xe4\x00\xb2\xb4\x25\x89\x90\x30\x81\xab\x5e\x07\ \x04\x12\x00\xd4\xeb\xc1\xfc\xfc\x02\x08\x01\x44\x85\x12\x32\xb9\ \x22\x4c\x70\x64\x10\x22\xdd\x27\x72\xf3\x09\x8b\xa8\xae\xa1\x0e\ \x99\x5c\x0e\xaf\xdb\x85\xb9\xf9\x39\x08\x82\x00\x51\xa1\x80\x20\ \xca\x02\x0f\xa0\x8c\x10\x1f\x78\x83\x45\x84\x21\xf4\xe7\x75\x8c\ \xee\x65\x0c\xe4\x70\x77\x7b\xcb\xf3\xc8\x11\x92\x0a\x80\x20\x08\ \xab\xfe\x5d\x16\x1c\x30\x25\x08\x64\x45\x54\x48\x20\x08\x01\x48\ \xe0\xaf\x6f\x10\x42\x40\xc4\xd0\x96\xbf\x22\x38\xac\xc4\x27\x11\ \x84\x58\xe2\x11\x22\x4f\xa9\x54\x42\xa2\x92\x7f\x69\x84\xac\xb4\ \xf2\xe5\xbf\x04\xb6\x76\x18\x82\xef\x07\xdf\xf3\x7a\xe3\x3e\xca\ \x57\x22\x20\xdf\xe9\x6a\x6f\xf9\x4f\xe4\x10\xb2\x64\x5a\xba\x5c\ \x26\x5b\x2d\x15\x04\x44\x10\xc2\x5f\x13\x12\x32\x5f\xe4\x7b\xe1\ \xb2\xc3\x5a\x3d\x09\x17\x4c\x62\x54\x86\x44\xfa\x00\xa1\xad\x36\ \x2c\x24\x6c\x8d\x56\x1d\x14\xbf\x56\x10\x02\x2d\x9d\x32\x0a\x4a\ \x19\x16\x17\x17\xe3\xb5\x7e\x1f\x63\xf8\x76\x57\x47\xcb\xab\xc8\ \x31\x92\x0a\x80\x2c\x22\x00\x02\x59\x2d\x5b\x20\xc2\xb2\xe8\x50\ \xc9\x41\xc1\x91\xef\xf9\x9d\xae\xde\x8d\x84\xb7\x7a\xb2\xa6\xfc\ \xc8\xf7\x22\xf7\xd5\x2b\xaf\x59\x58\x35\x08\x1f\xdc\xc9\xd6\x7c\ \x9f\x81\x85\x05\x24\xf8\x37\x0b\x10\xf8\xbb\x04\x4e\xe7\x5c\x3c\ \xf9\x1e\x22\xe0\xeb\x5d\xad\xad\xaf\x23\x07\x49\x6e\x17\x20\x8a\ \x61\xd2\x83\xe5\x9e\x10\x02\x12\xfa\x73\xc4\x6b\x41\x10\xc2\x44\ \xaf\x25\x7f\xb9\x5a\x90\xc0\x2e\x24\x2c\x10\x11\xfd\x82\x38\x7d\ \x01\x86\x88\x16\xcf\x10\x5e\xe2\x11\x94\x8a\x55\x41\x58\x11\x4e\ \x23\x5e\xfb\x27\x9f\xe4\xc3\xbc\x63\x3e\xde\xad\xe6\x2e\x06\xfa\ \xa5\xae\xd6\xf6\xb7\x90\xa3\x24\x15\x00\x51\x10\x02\xe5\x3e\xbc\ \xa5\x0b\x44\x88\x10\x1b\x2e\x5d\x08\xdd\x45\x10\x21\x5c\x76\xe4\ \xeb\xc0\x2e\x25\xb2\x3f\x11\x0c\x5d\x58\x9f\x21\x4a\x05\x58\x69\ \xf8\xa1\x65\x7c\x45\x70\x68\x08\x28\x5d\xfd\xda\xbf\x1c\x01\x8c\ \x21\x6c\x38\xb8\xcf\xe7\xc3\xcc\xcc\x6c\xbc\x1b\x37\x9d\xa0\xf8\ \x7c\xf7\xe5\xf6\x77\x90\xc3\x24\xf5\x7c\x00\x9f\x24\x41\x21\x0a\ \xcb\xf2\x05\xb2\xba\xc5\xaf\xc8\x0e\x0f\x42\x50\xf4\xb2\xd4\xe0\ \xcf\x21\xd2\x43\xc3\xb4\x66\x85\x21\xa1\x55\x66\xed\x23\xbe\x70\ \xe1\x2b\x65\x9c\x06\x5b\x34\xa5\x61\xb2\x05\xe2\x9f\x3f\x28\x9e\ \x10\xba\x12\x0c\xf8\x1f\xe1\xca\x18\x83\xc7\xe3\x81\x75\x6a\x2a\ \x5e\xcb\x77\x08\xa0\x0f\x5c\xbd\xdc\xfe\x57\xe4\x38\x49\x55\x80\ \x85\x85\x05\x88\x21\xbd\xf7\xd5\x87\x6c\x24\xfa\xc9\x86\xc8\xff\ \x8b\xf5\x7b\xb1\x7a\xfc\x51\x7e\x6f\xd5\xb1\xfa\xaa\xe3\x7f\x16\ \xed\xbf\x62\xdf\xf1\x13\xf8\xdb\xc0\x5e\xaf\x37\xde\xf9\x80\x69\ \x46\xc9\x7d\x57\x2f\xb7\x77\x20\x0f\x48\xfa\x3c\x40\xbe\x3f\x66\ \x25\x43\x4c\x52\x4a\xee\xbb\x76\xb9\xa5\x2b\x5f\x56\x58\xc6\x9d\ \xa5\x09\x06\x13\x83\x74\xcf\xb5\xcb\x1d\xbd\xf9\xb4\xda\x02\x37\ \x97\x16\xf9\xc3\x4c\x60\x87\xba\x3b\xf2\x4b\xfe\xfa\x02\xc0\x60\ \xe2\x86\x63\xd2\x2f\x41\xba\xb3\xbb\xad\x6d\x30\x1f\x57\x3e\x7e\ \x00\x08\xf9\x67\x00\x8b\xdc\xf3\x1a\x9b\x06\x78\x57\x22\xec\xce\ \xeb\x1d\x1d\xa3\x79\xfc\x1d\xe2\xb3\x67\xcf\x1e\xb9\x47\x10\xaa\ \xb9\xf2\x15\x14\x94\xce\x75\x74\x74\xd8\xf8\x96\xe0\x70\x38\x1c\ \x0e\x87\xc3\xe1\x70\x38\x1c\x0e\x87\xc3\xe1\x70\x38\x1c\x0e\x87\ \xc3\xe1\x70\x38\x1c\x0e\x87\xc3\xe1\x70\x38\x1c\x0e\x87\xc3\xe1\ \x70\x38\x1c\xce\x06\xf2\xff\x33\x3c\x0a\x1c\x6d\x86\x44\xc0\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x1f\x33\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x03\x0f\ \x0f\x34\x15\xf0\xd1\x0e\x45\x00\x00\x1e\xb3\x49\x44\x41\x54\x78\ \xda\xed\x7d\x7b\x70\x1b\xd7\x7d\xee\xb7\x0b\x80\x20\x08\x82\x20\ \xf8\x10\x45\x89\x22\xf5\x20\x29\x31\x6e\x94\xb8\x71\xeb\x2b\x47\ \xb5\x23\xc5\x76\x92\x4a\xb1\x1c\x79\x26\xd6\x4d\x5c\xd9\x56\xa8\ \xc8\x37\x9d\xd8\x6e\x1e\x92\xe5\xfb\x87\xdd\x57\x9a\x26\xa9\xda\ \x38\xea\x78\x26\xd5\xa8\x76\xaf\x9d\x9b\x36\x71\x23\x3b\x89\x3d\ \x63\x5b\x37\x8e\x45\x99\x7a\x38\x4e\xf5\xb8\x7a\x51\x24\x25\x8a\ \x22\xf8\x26\x1e\x8b\xf7\xee\x9e\xfe\x81\xb3\xe0\xc1\x62\x5f\x84\ \x40\x12\x94\x71\x66\x76\x0e\xb0\xbb\xc0\x62\xf1\xfb\xbe\xef\xf7\ \x3b\xbf\x73\xf6\x1c\xa0\x54\x4a\xa5\x54\x4a\xa5\x54\x4a\xa5\x54\ \x3e\x8c\x85\xfb\x90\xdc\x27\x0f\xc0\xa1\xda\x78\xe6\xfe\x09\x00\ \x19\x40\x8a\xd9\x92\x74\x7f\x09\x00\x0b\xb8\xb8\xe8\x56\x0e\xa0\ \x82\xd6\x65\x0c\x00\x78\x7a\x9e\xcc\x00\x20\x09\x20\x0e\x20\x4a\ \xeb\x18\xdd\x4a\x00\x58\x40\xa5\x1c\x40\x15\x35\xbe\x0f\x80\x1b\ \x40\x25\xdd\xef\xa4\x9b\x4d\x05\x00\x09\x40\x82\x6e\x71\x00\x02\ \x80\x08\x80\x29\x0a\x80\x10\xdd\x7f\x53\x15\xfb\x4d\x76\x3f\x36\ \x00\x5e\x6a\x7c\x1f\x80\x6a\x00\x35\x00\x3c\x14\x0c\x95\x8c\x0a\ \xd8\xe8\x06\x6a\x7c\x89\x61\xbf\x40\x8d\x1e\x06\x30\x09\x20\x40\ \x15\x24\x04\x20\x48\xcf\x2d\x01\xa0\x08\x59\x5f\x03\xa0\x96\x1a\ \x7e\x11\x03\x02\xef\xa7\x3f\xfd\xe9\x25\xdb\xb6\x6d\x5b\xf5\xd1\ \x8f\x7e\x74\x71\x73\x73\x73\x9d\xc7\xe3\x71\x95\x97\x97\x3b\x01\ \x20\x1e\x8f\x27\xc2\xe1\x70\x6c\x60\x60\x60\xfc\xcc\x99\x33\xc3\ \x3f\xfd\xe9\x4f\x7b\x0f\x1f\x3e\x3c\x44\x8d\xed\xa3\x2a\x30\x4a\ \x81\x50\x4e\x41\x71\x53\xa8\xc1\xcd\xe2\x02\x3c\xd4\x50\x8b\x69\ \xdd\x08\xa0\xce\xed\x76\x2f\x7a\xf6\xd9\x67\xd7\x7e\xf9\xcb\x5f\ \xfe\x44\x63\x63\x63\xdd\x4c\xbe\xd0\xef\xf7\x8f\xbf\xfc\xf2\xcb\ \xbf\x7b\xf6\xd9\x67\x4f\x47\x22\x91\x51\x00\xe3\x00\xfc\x14\x0c\ \xc3\xb4\x0e\x97\xda\x11\xf3\x5f\xbc\x00\x96\x03\x58\x07\x60\x0b\ \x80\xff\x05\xe0\xaf\x1e\x7f\xfc\xf1\x9f\x4f\x4c\x4c\x04\xc9\x0d\ \x96\x89\x89\x89\xe0\xe3\x8f\x3f\xfe\x73\x00\x7f\x45\xbf\x7b\x0b\ \xbd\xd6\x72\x7a\xed\x92\x02\xcc\x63\xa9\xa2\x92\xdf\x08\xa0\x09\ \x40\xa3\xd7\xeb\x5d\x76\xe8\xd0\xa1\x7b\x3f\xf5\xa9\x4f\x7d\xb4\ \x90\x17\x7a\xe7\x9d\x77\xce\xdc\x7f\xff\xfd\x6f\x06\x83\xc1\x6b\ \x54\x09\x06\x69\x3d\x41\x63\x83\x12\x00\xe6\xb8\x54\x00\xa8\xa3\ \x86\x5f\x06\xa0\xb1\xb5\xb5\xb5\xf5\xcd\x37\xdf\xdc\xba\x62\xc5\ \x8a\x46\xf5\xc9\x92\x24\x21\x1e\x8f\x23\x91\x48\x20\x95\x4a\x41\ \x92\x24\xc8\xb2\x0c\x42\x08\x78\x9e\x07\xcf\xf3\x70\x38\x1c\x70\ \x3a\x9d\xa8\xa8\xa8\x80\xcd\x66\xcb\xb9\x60\x7f\x7f\xbf\xff\xde\ \x7b\xef\xfd\xcf\xcb\x97\x2f\x5f\xa6\xc6\xbf\x46\x81\x30\x4e\x9b\ \x8d\x25\x00\xcc\x51\x71\x00\xa8\xa7\xc6\x6f\x06\xb0\xb4\xbd\xbd\ \xbd\xed\x37\xbf\xf9\xcd\x83\x4b\x96\x2c\xc9\xf2\xf5\xc9\x64\x12\ \xe1\x70\x18\x89\x44\x02\x84\xa4\xf3\x3a\x56\x6a\x97\xcb\x05\xaf\ \xd7\x8b\xf2\xf2\xf2\xac\x0b\x0f\x0d\x0d\x8d\x6f\xd8\xb0\xe1\xdf\ \x2f\x5d\xba\xd4\x03\xe0\x3a\x80\x01\x0a\x82\x31\x9a\x47\x28\x01\ \x60\x0e\x7e\x73\x3d\x80\x25\xd4\xf8\xcd\x35\x35\x35\x2b\x4e\x9d\ \x3a\xf5\x50\x53\x53\xd3\x22\x96\xf1\xe1\x70\x18\xb1\x58\xcc\xb2\ \xd1\xb5\x6a\x97\xcb\x85\xda\xda\x5a\xd8\xed\xd3\x0d\xa6\xc1\xc1\ \xc1\xd1\x8f\x7d\xec\x63\x2f\x4d\x4e\x4e\xf6\x53\x00\x0c\x00\x18\ \xa2\x20\x58\x50\xd9\x43\x7e\x81\x46\xfc\xd5\x54\xfe\x17\xf1\x3c\ \xdf\xf8\xd6\x5b\x6f\xdd\xc7\x1a\x3f\x99\x4c\x62\x72\x72\x12\xf1\ \x78\x1c\x1c\x97\xc6\x78\xbe\x75\x2c\x16\xc3\xf5\xeb\xd7\x33\x40\ \x02\x80\xa6\xa6\xa6\x45\x6f\xbd\xf5\xd6\x7d\x3c\xcf\x37\xd2\xe6\ \x66\x1d\xfd\x4d\x9e\x85\x98\x38\x59\x48\xc5\x49\xff\xec\x46\xca\ \xfe\xa6\x1f\xfd\xe8\x47\xeb\xb7\x6c\xd9\x72\x9b\x72\x42\x3c\x1e\ \x47\x30\x18\x04\x21\xe4\x86\x8d\xaf\xd4\x00\x20\x08\x02\xec\x76\ \x3b\x9c\x4e\x27\x00\xa0\xb1\xb1\xb1\xa6\xae\xae\x2e\xf9\xfa\xeb\ \xaf\x8f\x33\x49\x24\x25\x91\x24\x95\x00\x30\x3b\xd2\xaf\x44\xfc\ \x4b\x01\x34\xde\x7d\xf7\xdd\xab\xf7\xed\xdb\xb7\xc5\x66\xb3\xf1\ \x8a\xf1\xc3\xe1\x70\x41\x8c\xae\x55\x47\xa3\xd1\x2c\x10\xdc\x7a\ \xeb\xad\xcd\xdd\xdd\xdd\x03\x7d\x7d\x7d\x61\x6a\x74\xa5\x2f\x61\ \xc1\x04\x84\x0b\xc9\x05\x28\xd2\xef\x03\x50\xef\x76\xbb\x97\x1c\ \x38\x70\x60\x93\xc3\xe1\xb0\x03\x40\x2a\x95\x82\x20\x08\xb3\x66\ \x7c\xa5\x1e\x1f\x1f\xcf\xb8\x03\x87\xc3\x61\x3f\x70\xe0\xc0\x26\ \xb7\xdb\xbd\x84\xc6\x25\xbe\x85\xe6\x0a\xf8\x05\xa4\x54\x1e\xa4\ \x53\xbd\x0d\x00\xea\x9f\x7f\xfe\xf9\x75\x2d\x2d\x2d\x0d\x00\x20\ \xcb\xf2\xac\x32\x5f\x5d\x8f\x8e\x8e\x42\x14\x45\x00\x40\x4b\x4b\ \x4b\xc3\xf3\xcf\x3f\xbf\x8e\x02\xa0\x01\xd3\x7d\x0f\xb6\x12\x00\ \x0a\x9b\xf0\x51\x3a\x76\x7c\x6b\xd7\xae\x5d\xb2\x6d\xdb\xb6\xdb\ \x95\x83\x91\x48\xa4\xa0\x3e\xdf\xac\x26\x84\x60\x6c\x6c\x2c\xf3\ \xe3\xb6\x6d\xdb\x76\xfb\xda\xb5\x6b\x97\x50\x05\xa8\xa1\xbf\xb5\ \xaa\x04\x80\xc2\x94\x32\x86\xfd\x75\x00\x16\xed\xdf\xbf\xff\x4e\ \x87\xc3\xe1\x50\xfc\xbe\x28\x8a\x73\x66\x7c\xa5\x4e\x24\x12\x08\ \x06\x83\x8a\x2b\x70\xec\xdf\xbf\xff\x4e\xa6\x45\xa0\xa8\x40\x59\ \x09\x00\x85\xf1\xfd\x35\xca\xf6\xc0\x03\x0f\x2c\x5f\xbf\x7e\xfd\ \x2d\x6c\x76\x4f\x31\xcc\x5c\x83\x20\x10\x08\x20\x95\x4a\xe7\x7e\ \xd6\xaf\x5f\x7f\xcb\x03\x0f\x3c\xb0\x9c\xfd\xad\x0b\x21\x16\xe0\ \x16\x00\xfb\x17\x03\x68\x01\xd0\x06\x60\xd5\xa5\x4b\x97\xb6\xb7\ \xb5\xb5\x35\x29\xd2\x9f\x4a\xa5\x32\x49\x1b\x45\x9e\x8d\x92\x3b\ \x1c\x49\xc2\x2e\x0d\x82\x97\xa7\xc0\xc9\xe9\x60\x4e\xe6\xca\x21\ \xf3\xd5\x48\xa0\x11\x84\x73\xce\x38\x63\xd8\xd0\xd0\x00\x00\xe8\ \xe9\xe9\x19\x6c\x6f\x6f\xff\x37\x00\xbd\x00\x7a\x00\x5c\x45\xba\ \xe7\x30\x59\x6a\x06\xe6\x57\xaa\x29\x00\x96\x00\x68\xdc\xb9\x73\ \xe7\xda\x47\x1e\x79\x64\x1d\x00\x88\xa2\x88\x44\x22\x91\xd5\x56\ \x57\xb7\xdd\xb3\x18\x4b\x64\x94\x89\x97\x50\x9e\x3c\x09\x9b\x34\ \x0a\x5e\x0e\x83\x27\x71\xf0\x24\x0e\x1b\x09\xc3\x2e\x8f\xc2\x29\ \xf7\x03\x44\x86\xc4\xd7\x00\xb0\xa6\x28\xa9\x54\x0a\x4e\xa7\x13\ \x0e\x87\x03\xb5\xb5\xb5\x55\x43\x43\x43\xfe\x0f\x3e\xf8\x60\x02\ \xd9\xa3\x8b\x62\x25\x05\x28\x00\xfb\xfb\xfa\xfa\x1e\x55\x3a\x7a\ \x04\x41\x80\x24\x49\x9a\xcc\xcf\x79\x4f\x44\x38\xa2\xef\xc1\x26\ \x8d\x30\xb7\xcc\xde\x3a\x01\x30\x7d\xbe\xc8\xd7\x22\x56\xb6\x0e\ \x32\xe1\x2d\x29\x81\xdd\x6e\xc7\x92\x25\x4b\xc0\x71\x1c\xae\x5c\ \xb9\xe2\x5f\xb1\x62\xc5\xbf\x2e\x14\x15\x28\xe6\x18\x40\xf1\xfd\ \xb5\x00\xaa\x77\xee\xdc\xd9\xaa\x18\x5f\x91\x7d\x35\xdb\xb5\xdf\ \x13\x38\xa2\x47\xc1\xa7\x06\x41\x64\x11\x84\x88\x20\x44\xa2\x35\ \xfb\x5e\x02\x88\x04\x10\x11\x76\x69\x18\xae\xc4\x31\x28\x5f\x67\ \xa6\x04\xa2\x28\x66\x72\x10\xcb\x97\x2f\x6f\xdc\xb9\x73\x67\x2b\ \x55\xaf\xda\x62\x8f\x05\xf8\x22\x66\xbf\x9b\x05\xc1\xde\xbd\x7b\ \xff\x44\x39\x98\x4c\x26\x4d\x8c\x3e\xfd\xde\x16\x3f\x07\x3e\x39\ \x40\x8d\xab\xb7\x89\x39\xfb\x6c\xe2\x35\x94\xa5\x2e\x58\x0e\x08\ \x43\xa1\x50\x46\x11\xe8\x6f\x65\x8d\xef\x2e\xd6\x16\x01\xbf\x10\ \xd8\xbf\x6b\xd7\xae\x1c\xf6\x9b\x33\x1f\xe0\xa4\x00\x6c\xd1\xf7\ \x33\x0c\x27\x06\x06\x07\x73\x8e\x72\x5e\x59\xe2\x03\xf0\x72\xd0\ \x12\x08\x58\x15\x58\xb1\x62\x45\xe3\xae\x5d\xbb\x16\x84\x0a\xf0\ \x0b\x81\xfd\xdf\xfa\xd6\xb7\xee\x50\x0e\x2a\xcd\x2e\x2b\xf2\xcf\ \x87\xbb\x01\x39\x99\x65\xf0\x69\x23\xab\x5c\x80\x2c\xe6\x80\x83\ \x23\x29\x38\xe3\x27\x2c\x37\x0d\x59\x15\xa0\xbf\xb9\xe8\x55\x80\ \x5f\x08\xec\x6f\x6d\x6d\x6d\x52\x7c\xad\xd6\x9f\xaf\x09\x82\xd4\ \x75\x20\xd1\xc7\xb0\x9e\x6e\xb2\x68\xc9\x15\x28\x40\xb1\x89\x03\ \xb0\x4b\x43\x96\x40\x20\x49\x52\x46\x05\x5a\x5b\x5b\x9b\x16\x82\ \x0a\xf0\x0b\x95\xfd\xa6\x20\x08\x1d\x55\x19\x53\x8b\xed\xf4\xb8\ \x2c\x66\xc9\x3f\x51\x81\xc2\x11\x3b\x99\x57\x2c\xb0\x10\x54\x80\ \x5f\x28\xec\x67\x9b\x7c\xa6\x20\x48\x5e\x03\x97\xa0\x81\x1f\xb4\ \x7d\x3e\x91\xc5\xcc\xa6\xa9\x04\x98\x7e\xcf\xa7\x06\x61\x4b\x0d\ \x58\x02\x81\x24\x49\x88\x44\x22\x0b\x46\x05\x0a\x0e\x00\x42\x08\ \x37\x1b\xec\x57\xf2\xfd\xba\x01\x1f\x9b\x10\x0a\xbe\xab\xc1\x64\ \x95\x71\xd5\x9b\x16\x48\x98\xef\x70\x44\xbb\x2d\xc7\x02\xca\x80\ \x94\x85\xa0\x02\xb3\xa1\x00\x5c\x9e\x20\xc8\x69\xf7\xb3\xec\x57\ \xfe\x50\x33\x10\x90\x58\x3f\x48\xac\x5f\x33\xb2\xd7\x03\xc5\xb4\ \x0b\x60\x5c\x81\x4a\x19\xf8\xd4\x35\xd8\x52\x57\x2d\x81\x40\x96\ \xe5\x2c\x15\x28\xe6\xbc\x00\x5f\x24\xdf\x9b\xc3\xfe\xdd\xbb\x77\ \x67\xd8\x2f\xcb\xb2\xc5\xa4\x0f\x40\x02\xff\x2f\xdb\xc8\x59\x86\ \x14\x73\xe4\x3f\xd7\x05\x88\x39\x81\x62\x1a\x14\x32\xec\xc2\x91\ \xbc\x62\x01\x7a\x2f\x45\xa9\x02\xb3\x16\x03\x10\x42\x6c\x33\x64\ \x7f\xa6\x2f\x9d\x65\xbf\x32\x76\xdf\x4a\xd2\x07\xf1\x3e\x90\x58\ \x9f\x2a\xf0\x33\x6e\xfb\x1b\xb5\x00\xd4\x8a\xc1\x27\xaf\x82\x4f\ \xf4\xe5\x15\x0b\x30\x2a\x50\x43\xef\xd5\x73\xd3\x01\x80\x91\x7e\ \x0e\x00\x4f\x08\xe1\x67\xc0\x7e\xe5\x29\x1f\x5d\xf6\x9b\x81\x40\ \x9e\x78\x53\x3b\xc1\x93\x15\xe5\x8b\x1a\x6e\x41\x34\x74\x11\x19\ \xe5\x20\x12\xec\x91\xdf\xe6\x95\x17\x60\x54\xa0\x96\xde\x6b\x51\ \xa8\xc0\x6c\xb6\x02\x38\x58\x7b\xfa\x38\x8b\xfd\x9d\x9d\x9d\xab\ \x58\xf6\x67\x31\xdc\x00\x04\x24\xda\x03\x29\xda\xa3\xd9\x8c\xcb\ \x7d\x2d\xaa\x5e\xeb\x9f\xcb\x82\x07\x44\x02\x17\xef\x03\x9f\xec\ \xcd\x2b\x16\xe8\xec\xec\x5c\x55\x6c\x2a\xc0\xcf\x92\xe1\xd9\x80\ \xd0\x31\x13\xf6\xef\xd9\xb3\xe7\x93\x8c\xa2\xe8\xfe\xc1\x6a\x10\ \x88\x63\xbf\xd6\x4d\xeb\x12\x4b\x7d\x00\xa2\x66\x4e\x20\xeb\x7c\ \xda\x5a\xb0\x87\xde\xb6\x1c\x0b\x84\xc3\xe1\xcc\x7d\xd0\x7b\x2b\ \x2a\x15\xb0\xcf\x22\xfb\x33\x2a\x40\x08\x91\x39\x8e\x93\x66\xc2\ \x7e\xd6\xf8\x4a\x0c\xa0\xae\x95\xf3\xa4\xc8\x05\x48\x91\x8b\xe0\ \x38\x9e\xf5\x40\x59\x3f\x83\x10\x40\xe9\xde\x9b\x0c\x71\x78\xe3\ \x18\xd0\x33\x98\x3e\xda\xd6\x04\x7c\xee\x7f\x10\xd4\x54\x01\xe9\ \x13\x95\xbe\x06\xfa\x9a\xee\x23\x20\x00\x91\x81\x78\x2f\xb8\xf8\ \x25\xa0\xbc\x5d\xf7\xb7\x29\xb5\x12\x0b\x54\x56\x56\x66\x54\xe0\ \xc0\x81\x03\x13\xf4\x9e\x43\x48\xcf\x42\x32\x31\x5f\x00\x28\xe8\ \x78\x00\xea\xf3\xd9\x7f\x5f\xa9\x39\x00\x31\x8e\xe3\x88\x8a\xfd\ \x59\xfd\xfd\x3d\x3d\x3d\xdb\xd5\xf2\x6f\x65\x54\x4e\xac\xf7\xbb\ \x90\x23\x3d\x00\x03\x80\x6c\x30\x28\xc6\xe7\x30\x19\x02\x7e\xf4\ \x0a\x10\x89\x73\x59\xdf\x53\xe9\x02\xbe\xfe\x40\x2e\x08\x08\x03\ \x00\x28\x00\x00\x40\x9c\xcb\x21\x36\x3c\x6e\xe9\x37\xf2\x3c\x8f\ \xc5\x8b\x17\x83\xe3\x38\x5c\xbe\x7c\x79\xb0\xad\xad\xad\x68\x46\ \x0d\xf1\x05\x34\x3e\xa7\xc1\x7e\x96\x8e\x4e\xab\xec\xb7\x1a\x64\ \x01\x80\x1c\xb9\x00\x49\x38\xa7\x91\xc4\xd1\x68\xdb\x13\x11\x6f\ \x1c\x93\x10\x14\x24\x88\xa2\x08\x51\x14\x21\x49\x12\x24\x29\xbd\ \xef\xf5\x6e\x2b\xae\x43\x06\x21\x22\x10\xeb\x01\x9f\xb8\x64\x39\ \x16\x88\x46\xa3\x45\x19\x0b\xf0\xb3\x28\xfd\x6a\x85\x71\x30\xf1\ \x80\x56\xe4\x6f\xc9\xf7\xab\xeb\xa4\xff\xe7\x59\xcd\x3e\xdd\x66\ \x1e\x6d\xdb\x9f\xe9\x9d\x36\x3a\xbb\x89\xa2\x88\xb3\x7d\xfa\x9d\ \x45\xb9\x03\x47\x24\x70\x93\xaf\xe5\x15\x0b\xd0\x7b\x2d\x8a\x58\ \x80\x9f\x03\xe3\xb3\xb5\x8b\x2a\x45\x0e\xfb\x95\x81\x9e\x6c\x5f\ \xbf\xd9\x1f\x2b\x86\xce\x42\x0c\x9f\x35\x08\xfe\x72\x8d\x19\x8e\ \x48\x59\xcc\x57\x8c\x2f\x49\xe9\x63\xd9\xcd\x3e\xd1\xb0\x55\xc1\ \xc5\x2e\x81\x8b\x9d\xb7\x9c\x17\x50\x54\xa0\xad\xad\xad\x68\x54\ \x80\x9f\x03\xf9\x07\x13\x07\xf0\x3f\xfb\xd9\xcf\x7c\x46\xec\x57\ \x12\x3f\x56\x40\x90\x18\xfa\x69\x26\x6a\xd7\x63\x7e\x96\x1b\x90\ \xc5\x2c\xa3\xab\xdd\x80\x28\x8a\xb9\xe0\x91\xc5\x9c\x24\x12\x0b\ \x32\x6e\xe2\x17\x96\xd5\xaa\x18\x55\x60\xae\x14\x20\xf3\xfa\xdc\ \xb9\x73\x35\x2b\x57\xae\x6c\xd0\x62\x3f\x1b\xf8\x99\x81\x40\x0a\ \x9f\x85\x18\x3a\x9d\x6d\x14\x3a\xe6\xcf\x68\xb8\x97\x9a\xfd\x6a\ \x15\x30\x1c\x2d\xa4\x05\xb6\xd8\x79\xf0\xb1\x73\x33\x8e\x05\x8a\ \x45\x05\xf8\xb9\x34\xfe\xe1\xc3\x87\xcb\xfc\x7e\xbf\xbb\xa5\xa5\ \x65\x91\xc3\xe1\xa8\x03\x50\xfb\xed\x6f\x7f\x3b\xcb\xf7\xb3\x11\ \xb4\x11\x08\xa2\xd7\x5e\x64\xda\xe6\x1a\xfe\x5a\xc9\xf5\xab\x80\ \xc0\x1a\x5b\x6d\xfc\x34\x00\x72\x0d\xae\xa9\x30\x60\xce\x1b\xfb\ \x0f\xcb\xb1\x80\x20\x08\x99\xfb\xa2\xf7\x3e\xaf\x2a\xc0\x17\x58\ \xfe\xb5\xb6\x0c\x20\xba\xba\xba\x3c\x7e\xbf\xdf\x9b\x48\x24\x6a\ \x9a\x9a\x9a\x16\x77\x76\x76\xae\x6a\x6f\x6f\xcf\xb0\x5f\xab\xe9\ \xa7\x05\x02\x31\x78\x0a\x62\xf0\x54\x76\xb4\x0e\x6d\x30\xa8\x25\ \xdb\x9a\x0b\xd0\x09\x26\xa1\xad\x06\x72\xf0\x28\xe4\xc0\x91\x19\ \xc7\x02\xed\xed\xed\xf3\xae\x02\x7c\x81\xd8\xcf\x99\x05\x81\x87\ \x0f\x1f\x76\xfa\xfd\x7e\x77\x24\x12\xa9\x8a\xc7\xe3\xb5\xe5\xe5\ \xe5\xf5\xbb\x77\xef\x5e\xaf\x7c\x89\xd2\xe5\xab\xd5\x96\x56\x83\ \x40\xe8\xf9\x7b\xc3\x7c\x3f\x72\x00\x31\x9d\xf6\xd5\x92\xff\x6c\ \x17\xa0\x31\x6e\xc0\xc0\x05\x48\xf1\x61\xa4\x82\x67\x20\x5d\xfd\ \x9e\xe5\x58\xa0\x98\x54\x80\x2f\x20\xfb\x8d\x54\x80\x53\xd8\x1f\ \x8b\xc5\x7c\xa9\x54\xaa\x6a\xcb\x96\x2d\xcb\xdb\xda\xda\x96\xb2\ \xc6\xd7\x72\x03\xea\x7d\x89\xb1\x77\x10\x1d\xfc\x77\x88\xc2\x65\ \x5d\xa6\x12\xcd\x3e\x7e\x31\x13\x03\x18\xb9\x00\xf5\x98\x80\x69\ \xa3\x8b\x39\x6e\x46\x8c\xf4\x41\x0c\x5f\x00\x40\x20\x87\x8e\x83\ \x04\xbb\x66\x1c\x0b\xb4\xb7\xb7\x37\x7d\xe5\x2b\x5f\x99\x37\x15\ \xe0\x0b\xc8\x7e\xce\x2a\xfb\x45\x51\xac\xf9\xea\x57\xbf\xfa\x47\ \xca\x97\xa4\xa5\xd7\xfc\xf9\x3e\x42\x08\xc2\x17\xfe\x32\xad\x18\ \xf1\x21\xa4\x82\xa7\x21\x8b\x82\x7e\x2b\x40\xa3\x5f\xdf\xcc\x05\ \x68\x77\x1d\x67\xbf\x97\x45\x01\xa9\xe0\x69\x48\xb1\x6b\x59\x7f\ \x86\x78\xf5\x7b\x96\x63\x01\xe5\x91\xf6\xf9\x6e\x11\xf0\x37\xc8\ \x7e\x4b\x9b\x16\xfb\x57\xac\x58\xb1\x84\x35\xbe\xd1\xa3\x5d\x2c\ \xfb\x13\xe3\xbf\x9d\x3e\x47\x0c\x23\x15\xf8\x2f\x48\xc2\x65\x10\ \x39\xce\x3c\xf9\xa3\x67\xc0\xec\x6b\x69\x6d\x86\x31\x84\x9c\x80\ \x18\xe9\x43\x2a\xf0\x7b\x10\x31\x77\x96\x58\x39\x78\x6c\x46\xb1\ \x80\x32\xd3\xc8\x7c\xaa\x00\x7f\x83\xec\x37\x8a\xfc\x39\x1a\xf9\ \x5b\x66\xbf\x19\x08\x14\xf6\xab\xa0\x08\x29\x31\x82\x64\xe0\xf7\ \x90\xa2\x57\x40\x52\xe1\x9c\x24\x4e\xf6\x46\xb4\xc0\xcc\x5c\x47\ \xcc\x75\x21\x62\x04\x52\xa4\x1f\xc9\xc0\x07\x90\xe2\x43\x30\x9a\ \x09\x4e\xcc\x33\x16\x98\x2f\x15\xe0\xe7\x82\xfd\xa3\xa3\xa3\xd5\ \xb1\x58\xcc\x27\x8a\xa2\xf7\xbe\xfb\xee\xcb\x62\xbf\x59\xe4\xaf\ \xbc\x4f\x8e\xff\x16\xc9\x89\x77\x0d\x7e\x94\x04\x29\xee\x47\x2a\ \x74\x86\xca\xf3\x75\x10\x31\x04\xc8\xa9\x6c\x15\x60\xbe\x53\x2b\ \xc0\xcc\xb0\x5e\x8a\x40\x8a\x0d\x22\x15\xfa\xff\x48\x05\xff\x0b\ \x52\xdc\x9f\xf9\xbc\x51\x91\x83\xc7\x0c\x63\x01\xb6\x2b\x5b\x96\ \xe5\x2c\x15\xd8\xb1\x63\xc7\xca\xb9\x56\x01\x7b\x81\x8d\xcf\xf6\ \xfe\x71\xef\xbc\xf3\x4e\x16\xfb\x25\x49\xf2\xed\xda\xb5\x2b\xc3\ \xfe\x64\x32\xa9\xdb\xed\xcb\xfe\x71\x84\x10\x08\x97\xfe\xda\xfa\ \x6f\x94\xa2\x90\x62\x51\x48\x31\x00\x1c\x0f\xce\x56\x91\xde\x78\ \x27\xa6\xa6\x6a\x60\xb7\xdb\x33\x86\x90\x65\x39\x13\x0b\x24\x12\ \x09\x88\xe1\x31\xc8\x62\x84\xb6\x02\xf2\x2b\xa9\x2b\xdf\x83\xf3\ \xe3\x7f\xa2\xd9\x45\xac\xbe\xaf\x48\x24\x02\x97\xcb\x05\x8e\xe3\ \xb0\x67\xcf\x9e\xf5\x07\x0f\x1e\xec\x43\x7a\x5a\xfa\x49\xaa\x02\ \xe1\xd9\xec\x29\xb4\xe7\x29\xfd\xa6\x6d\x7e\x96\xfd\xd1\x68\xd4\ \x27\x8a\xa2\xf7\xf3\x9f\xff\x7c\x86\xfd\xa9\x54\x2a\x33\xdc\xcb\ \x0c\x04\xa9\x89\x77\x91\x64\x7c\xff\xcc\x10\x2b\x83\x88\x02\x88\ \x98\x7e\x62\xe7\xda\xb5\x88\x31\x83\x53\xc1\x1b\xfe\x53\xe5\x60\ \x37\xe4\xc0\x11\xf0\xd5\xe6\x20\x50\x62\x81\x8a\x8a\x8a\x8c\x0a\ \x1c\x3c\x78\x70\xce\xc6\x0b\xf0\x33\x64\xbf\x5e\x7f\x7f\x4e\xad\ \x62\x7f\x8d\x24\x49\x3e\xd6\xf7\x2b\x4f\xf8\x5a\x69\xfe\xcd\x84\ \xfd\xa6\x88\xb7\xdb\x0d\xb7\x42\x15\xf1\xea\xf7\x0d\x63\x00\xd6\ \x25\xb0\x2d\x82\x3d\x7b\xf6\xac\x9f\xcb\x58\x80\x2f\x90\xf4\xeb\ \xfa\x7e\x3d\xf6\xab\xdb\xfe\x7a\x20\x48\x4e\xbc\x8b\x94\x91\xef\ \x2f\x52\x00\x48\x81\xf7\x40\x82\x47\x2d\x81\x60\x3e\x63\x01\x7e\ \x06\xc6\x37\x63\x7d\x66\x3b\x72\xe4\x88\xd3\xef\xf7\xbb\x05\x41\ \xa8\x8a\xc7\xe3\x35\xa2\x28\xd6\x74\x76\x76\x66\xd8\xaf\x4c\xec\ \x64\x96\xf4\x21\x84\x20\xda\xf3\x37\x85\xf5\x79\x73\x04\x80\x74\ \x2c\xf0\xf7\x96\xa6\xa1\x55\x66\x21\x9d\x8f\xb1\x83\xfc\x0c\x8d\ \x6f\x25\x00\xe4\xbb\xba\xba\x3c\xe3\xe3\xe3\xbe\x68\x34\xea\x93\ \x65\xb9\x7a\xf3\xe6\xcd\x2d\xab\x56\xad\x5a\xa2\x48\x3f\xdb\xe5\ \x6b\x04\x82\xd4\xe4\x91\x82\xb2\x7f\xae\x01\x20\x05\xde\x83\x1c\ \xe8\xb2\x04\x02\x59\x96\x33\xc4\x68\x6f\x6f\x5f\x36\x57\x2a\xc0\ \xcf\x50\xf6\x4d\xd9\x7f\xf4\xe8\x51\xc5\xf7\x7b\x28\xfb\xb3\x7c\ \x7f\x2c\x16\xb3\x24\xfd\x69\xf6\xff\x6d\xc1\x6f\xd8\x66\xb3\x19\ \x6e\x85\x2e\x8a\x0a\x58\x01\xc1\x7c\xa8\x00\x6f\x81\xf9\xa6\x46\ \x67\x8f\x1d\x3f\x7e\xbc\x72\x7c\x7c\xdc\x17\x89\x44\x6a\x64\x59\ \xf6\x6e\xde\xbc\xb9\x45\xf1\xfd\x89\x44\x22\xc3\x7e\x33\x10\x48\ \x81\xe3\x90\x02\xc7\x0b\xdf\xec\x99\x43\x05\x50\x54\x40\x9a\x3a\ \x62\x09\x04\xec\xbc\x87\x73\xa5\x02\xbc\x45\xd9\xd7\x32\x7e\x0e\ \x30\xba\xbb\xbb\x9d\xc3\xc3\xc3\x95\x82\x20\x78\x12\x89\x44\x75\ \x2a\x95\xf2\xed\xd8\xb1\x43\x97\xfd\x46\x20\x88\xf5\x7d\x0f\xe0\ \xed\x28\xf4\x44\x66\x73\x0d\x00\x45\x05\xd8\xa8\xdf\x08\x04\xac\ \x0a\xd0\xec\xa0\x32\xe9\xe4\xac\xa8\x00\x6f\x21\xe0\xd3\x52\x00\ \x4d\x55\x38\x71\xe2\x44\xe5\xd0\xd0\x90\x2f\x12\x89\xf8\x44\x51\ \xf4\x6d\xda\xb4\x69\xb9\xe2\xfb\x13\x89\x44\xe6\x19\x7f\x33\x10\ \xa4\xa6\xba\x21\x4e\x75\x01\x44\x06\xc7\x2f\xfc\xa5\x0d\xd3\x2a\ \xd0\x65\x09\x04\xac\x0a\xac\x5e\xbd\x7a\xd9\x8e\x1d\x3b\x56\x61\ \x7a\xfc\x64\xc1\x55\x80\xd7\x68\xe7\xf3\x1a\x46\x36\x55\x80\xd3\ \xa7\x4f\x3b\x87\x87\x87\x2b\x23\x91\x88\x27\x99\x4c\xd6\x88\xa2\ \xe8\xeb\xec\xec\xbc\x8d\xf5\x6f\x6a\x43\xeb\x76\xfa\xf4\x7f\x3f\ \x3d\xfe\x9e\xc8\xaa\xdc\xd2\xc2\x2d\xa9\x2b\xdf\xcd\x69\xff\xeb\ \x81\x60\x2e\x55\x80\x57\x58\xaf\x32\x3e\x67\xe1\x35\xaf\x8e\xfc\ \xfd\x7e\x7f\x75\x34\x1a\xad\x49\xa5\x52\xde\x4d\x9b\x36\x65\x7c\ \xbf\x32\xa1\xb3\xd1\x03\x14\x99\x49\x1a\x03\xc7\xd2\x6c\x21\xe9\ \xf5\x9c\x09\x91\x71\x33\x94\x74\x8b\xe0\xa8\x25\x10\xb0\x2d\x82\ \xd5\xab\x57\x2f\x7b\xe4\x91\x47\x66\xad\xa7\x90\xcf\xc3\xf0\x39\ \xee\xe0\xec\xd9\xb3\x65\x94\xfd\xde\x44\x22\x51\x2d\x49\x92\x6f\ \xc7\x8e\x1d\x19\xf6\x2b\x0f\x48\x9a\xcd\xe3\x4b\x08\x41\x52\x61\ \xbf\x62\x7c\x22\xe3\x66\x59\xc5\x3d\xd9\xff\x5d\xd3\x19\x4e\xd8\ \xb5\x8a\x94\xf2\xd4\x53\x4f\x29\x2d\x82\x82\xab\x80\x1e\xab\x67\ \x04\x82\xee\xee\xee\x2a\xbf\xdf\xaf\xf4\xf8\x55\x7f\xf6\xb3\x9f\ \xcd\xb0\x3f\x16\x8b\x59\x1a\xf1\x93\x66\x7f\x37\xa4\xa9\x23\x37\ \xa5\xf1\xd3\x2a\x70\x14\x72\xe0\xa8\x25\x10\xa8\x63\x81\xd9\x52\ \x01\x33\xa3\x9b\x1e\x3b\x7f\xfe\xbc\xc2\xfe\xaa\x58\x2c\xe6\x53\ \xb3\x9f\xed\xf3\x36\x03\x81\x78\xe5\x07\x37\xad\xf1\x95\x92\xe8\ \xfb\x3b\x4b\x73\x1d\x29\xb1\xc0\x6c\xab\x00\x6f\x61\xe3\x8c\xf6\ \x1f\x3f\x7e\xbc\x6a\x68\x68\x28\x93\xf3\xbf\xe7\x9e\x7b\x32\xec\ \x8f\x46\xa3\x96\x06\x7b\x12\x42\x20\x05\x8f\x41\x0a\x1c\xb9\xa9\ \x8d\xaf\xa8\x80\x34\xd5\x65\x09\x04\xea\x58\xe0\xe1\x87\x1f\x2e\ \x78\x5e\x80\x47\x7a\xca\x78\x3e\x9f\xed\xe2\xc5\x8b\x65\xa3\xa3\ \xa3\x6e\x96\xfd\x8f\x3e\xfa\xa8\x2e\xfb\x0d\x83\xbf\xab\x3f\xb8\ \xe9\x8d\x9f\x51\x81\xfe\xef\xe6\x18\x5d\x0f\x04\x6c\x2c\xb0\x77\ \xef\xde\xf5\x85\x56\x81\x7c\x0c\x9f\x51\x84\x93\x27\x4f\x56\x5d\ \xbf\x7e\xbd\x3a\x1a\x8d\x56\x8b\xa2\xe8\xdd\xb8\x71\x63\xb3\x32\ \xa7\x6f\x34\x1a\xcd\xcc\xec\x69\x06\x02\x29\xd8\x0d\x69\xea\xdd\ \x0f\x85\xf1\x01\x40\x9a\xea\xd2\xcc\x0b\x68\x81\x40\x1d\x0b\x30\ \x2a\xe0\x2b\x84\x0a\x68\x19\xd8\x92\x22\xf4\xf6\xf6\x3a\x47\x47\ \x47\xdd\x82\x20\x54\x45\xa3\x51\x5f\x34\x1a\xf5\x3e\xfa\xe8\xa3\ \x9f\x50\xbe\x58\x79\x0e\xce\x8a\xff\x17\xaf\x7e\x9f\x0e\xb7\xba\ \xf9\x8d\xaf\x56\x01\x2b\x20\xd0\x51\x81\x82\xf4\x11\xe4\x65\x7c\ \x00\xdc\xfb\xef\xbf\x5f\xe5\xf7\xfb\x7d\xc1\x60\xd0\x2b\x08\x42\ \xe5\xc6\x8d\x1b\x97\x29\xbe\x5f\x59\xca\xc5\x8a\xf4\x4b\xc1\x6e\ \xc8\x53\xef\xe2\xc3\x56\xa4\xa9\x2e\x48\x3a\x79\x01\xf5\x7b\x83\ \x58\xe0\x86\x55\x40\x31\xba\xcd\xc0\xf8\x39\xfb\xfb\xfb\xfb\xcb\ \x47\x46\x46\x2a\xc6\xc7\xc7\x2b\xa6\xa6\xa6\xbc\x82\x20\x54\xb3\ \x91\x7f\x28\x14\xb2\x24\xfd\x84\x10\x48\x74\xe4\xcc\x87\xb1\x18\ \xe5\x05\xd4\xef\x75\xf2\x02\x37\xac\x02\x79\x05\x7f\x27\x4e\x9c\ \x70\xf7\xf6\xf6\x56\x8e\x8d\x8d\x79\x04\x41\xa8\xbc\xf7\xde\x7b\ \x9b\x57\xad\x5a\xb5\x54\x09\xfc\xd8\x39\xfd\x8d\x40\xc0\x8e\xa0\ \x9d\xab\xe2\x71\x49\x79\x1d\x9b\x8d\x22\x4e\x1e\x81\x64\x90\x17\ \x60\xdf\xcb\xb2\x8c\x44\x22\x01\x00\x58\xb3\x66\x4d\x73\xa1\x54\ \xc0\xc8\xd0\x5a\xaa\x80\xde\xde\x5e\xfe\xea\xd5\xab\x65\x23\x23\ \x23\x15\x81\x40\xc0\x1b\x89\x44\xaa\xd9\x9c\xbf\xb2\x96\x9e\x15\ \xff\x2f\x5f\xfb\xc1\x9c\xb3\xee\xb6\xb6\x70\x5e\xc7\xe6\x2b\x2f\ \xc0\xbe\xd7\xc9\x0b\xdc\x90\x0a\xa8\x5d\x80\x9e\x3b\x00\x00\x19\ \x80\x74\xe4\xc8\x11\x57\x4f\x4f\x8f\x67\x7c\x7c\xdc\x23\x08\x82\ \xe7\x33\x9f\xf9\x4c\x73\x6b\x6b\x6b\x86\xfd\x7a\x0f\x7a\xa8\xf7\ \x91\xf0\x89\x39\x67\x3f\x00\x6c\xdf\x38\x82\x6a\x77\xee\x90\xef\ \x6a\xb7\x88\xed\x1b\x47\xe6\xfc\xf7\x88\x93\x47\x20\x9a\xe4\x05\ \x94\xf7\x84\x90\x82\xab\x80\x99\xdc\x67\x0c\x0f\x40\xbc\x70\xe1\ \x02\x7f\xf9\xf2\x65\xa7\xdf\xef\x77\x05\x02\x81\xea\x48\x24\x52\ \xfd\xd8\x63\x8f\xfd\x91\x62\xd8\xa9\xa9\x29\xcb\x59\x3f\x79\x60\ \x7e\x7c\x7f\x43\x75\x12\xfb\x3a\x7b\xf1\xc9\x8e\x20\x2a\x9c\x32\ \x2a\x9c\x32\x3e\xd9\x11\xc4\xbe\xce\x5e\x34\x54\xcf\xcf\xc2\x5e\ \x89\xbe\xbf\x33\x8d\x01\xb4\x5a\x04\x85\x18\x35\x64\xa7\x6c\x57\ \x8f\xed\x27\xd4\xe8\x84\x02\x80\x00\x90\xdf\x7e\xfb\xed\x4a\xca\ \xfe\x2a\x41\x10\x3c\x9b\x36\x6d\x6a\x51\x66\xf7\x50\xd8\xaf\x46\ \xac\xd6\xb8\x7f\x08\x27\xd3\x0b\x3a\xcc\x53\x59\xec\x4b\xe2\x7f\ \x3f\x38\x50\x34\xc1\x60\x5a\x05\x8e\xc2\xee\xfb\x64\xd6\x43\x23\ \x6c\x42\x88\x25\x4f\x22\x91\x80\xd3\xe9\x44\x47\x47\x47\xf3\xc3\ \x0f\x3f\xbc\xf2\xc5\x17\x5f\x9c\xa0\x0a\x30\xe3\xe7\x08\xd4\x09\ \x9e\x0c\xdb\xd5\xf5\xa9\x53\xa7\xf8\xf3\xe7\xcf\x97\xfb\xfd\xfe\ \x8a\x60\x30\x58\x1d\x89\x44\xbc\x5f\xfb\xda\xd7\x32\xec\x0f\x04\ \x02\x96\xb3\x7e\xb8\xbe\x0f\xa5\xa2\x56\x81\xef\x58\x6a\x0d\x00\ \xd3\xa3\xaa\x0b\xa1\x02\x8a\xcc\x2b\xc6\x16\xb5\x8c\x0f\x40\x3a\ \x74\xe8\x90\xab\xb7\xb7\xd7\x33\x39\x39\xe9\x11\x04\xa1\x72\xf3\ \xe6\xcd\xcb\xdb\xdb\xdb\x97\x29\x49\x1f\xcb\x0f\x7a\x84\x4f\x00\ \xf3\xe0\xfb\x8b\xbd\xa4\x5b\x04\xef\x59\xce\x0b\x28\xb1\x40\x47\ \x47\x47\xf3\xf6\xed\xdb\xf3\x8e\x05\x78\x1d\xc3\x67\x19\xff\xcd\ \x37\xdf\xe4\x2f\x5e\xbc\xe8\x1c\x1e\x1e\xae\x08\x85\x42\xd5\xb1\ \x58\xcc\xf7\xe4\x93\x4f\xde\xae\xf6\xfd\x56\xfc\x7f\x89\xfd\xfa\ \x25\xde\xfb\x1d\xcb\x79\x01\x56\x05\x6e\xa4\x45\xa0\x06\x80\xe6\ \xf6\xea\xab\xaf\x3a\x2f\x5e\xbc\x98\x89\xfc\xbf\xf0\x85\x2f\xb4\ \xac\x5e\xbd\x5a\x93\xfd\x86\x20\x08\x9f\x00\x37\x8f\xbe\xbf\xf8\ \x55\xe0\x5d\x48\x81\xf7\x66\x9c\x17\xd0\x51\x81\xca\x7c\x01\x90\ \xa5\x02\x2f\xbc\xf0\x02\x7f\xfa\xf4\x69\xd7\xc8\xc8\x48\x85\x20\ \x08\xbe\x58\x2c\xe6\xfb\xe6\x37\xbf\xb9\x4e\x31\xee\xc4\xc4\x84\ \xe5\xac\x1f\xef\xff\xa7\x92\x95\x4d\x4a\xec\xf2\xdf\x5a\xce\x0b\ \x98\xa8\x40\xa5\x15\x15\x30\x55\x80\x17\x5f\x7c\xb1\xbc\xb7\xb7\ \xd7\x13\x0a\x85\xbc\x91\x48\xc4\xf3\xc5\x2f\x7e\x71\xf9\x9a\x35\ \x6b\x9a\x95\x94\xaf\xd5\xac\x1f\x84\x93\x25\xf6\x5b\x54\x01\x71\ \xea\xe8\x8c\xf3\x02\x1d\x1d\x1d\xcd\x0f\x3d\xf4\xd0\x8c\x55\x80\ \x07\x90\xd2\x33\xfe\xae\x5d\xbb\xf8\xf3\xe7\xcf\xbb\xc6\xc6\xc6\ \xdc\xe1\x70\xb8\x5a\x14\xc5\x1a\x8a\x34\x10\x42\x30\x3e\x3e\x6e\ \x69\xa0\x67\x9a\xfd\x3f\x2c\x59\xd7\xb2\x0a\x7c\xc7\x72\x5e\x40\ \x01\x00\x00\x3c\xfd\xf4\xd3\x33\x56\x01\x3d\x05\x90\x00\x88\x3f\ \xfe\xf1\x8f\xcb\x47\x46\x46\x3c\xa2\x28\x56\x03\xa8\x7e\xe8\xa1\ \x87\x56\x76\x74\x74\xe4\xb0\xdf\x0c\x04\x5c\xe4\x7d\xf0\xe1\xe2\ \x61\xff\xe8\x04\xb0\xf7\x1f\x80\x4f\x3d\x94\xde\xf6\xfe\x43\x7a\ \x5f\xf1\xa8\xc0\x6f\x21\x4e\x1d\xb5\x04\x02\x42\x48\x26\x06\xd3\ \x50\x81\x6a\x33\x15\xe0\x08\x21\x76\x64\x26\xc3\x07\x61\xe6\xf4\ \x67\xe7\xf3\x6f\x05\xb0\xea\xdc\xb9\x73\x7f\xd6\xd1\xd1\xd1\x4c\ \x08\x41\x5f\x5f\x1f\x92\xc9\xa4\xe6\x2a\x1e\xea\xba\xac\xff\x91\ \xa2\x01\xc0\xe8\x04\xf0\x3f\xbf\x01\x84\x84\xec\xfd\x55\x95\xc0\ \xff\xdd\x07\x2c\xaa\x2d\x0e\x10\xd8\x6b\xee\x42\xd5\x1f\xbf\x6e\ \x69\xfe\x24\x9e\xe7\xe1\xf1\xa4\x5b\x7e\xe7\xcf\x9f\x1f\xf8\xc8\ \x47\x3e\xf2\x7f\x90\x5e\x8f\xe0\x32\x4c\xd6\x23\xe0\x39\x8e\x13\ \x39\x8e\x93\x38\x8e\x93\x55\x0b\x3a\x54\xb2\x48\x62\xd9\x1f\x0c\ \x06\x33\xd2\x63\x16\xfc\x15\x1b\xfb\xff\xf1\x85\x5c\xe3\x03\xe9\ \x7d\xff\xf8\x42\x71\xa9\x40\x6a\xf2\xa8\xa5\x05\xb3\x64\x59\xce\ \x5b\x05\xf4\x1e\x0e\x75\xd0\x0f\x79\x15\x9f\xf2\xf4\xd3\x4f\xdf\ \xa1\x18\x75\x6c\x6c\xcc\x72\xbb\xdf\x31\xb2\xbf\xa8\xfc\x6b\xf7\ \xef\xf3\x3b\x36\x5f\x79\x01\xb5\xa2\xea\x81\x40\x15\x0b\xb0\x2b\ \x94\x79\xa9\x2d\x35\xd7\x6e\xe2\x09\x21\x36\x8d\xe5\xdd\x3c\x1a\ \xec\x6f\x01\x80\x40\x20\x90\xc5\x7e\x23\x10\x70\x91\xf7\xc1\x0b\ \xa5\xc8\x3f\xdf\x92\x9a\x78\x07\xe2\xd4\x7b\x96\x40\xa0\x52\x81\ \x16\x0d\x15\xf0\xe8\x29\x80\x1d\xe9\x85\x9d\xec\x84\x10\xdb\x2d\ \xb7\xdc\x52\x66\xc4\xfe\xd1\xd1\x51\xcb\xed\xfe\xb2\xd1\x7f\x2e\ \xba\x3f\x75\xdd\xad\xf9\x1d\x9b\xb7\x16\x01\x93\x1d\x34\x03\x41\ \x3e\x2a\xc0\x0e\xf9\xb2\x03\xb0\x57\x56\x56\xfa\xea\xeb\xeb\x6b\ \x2b\x2a\x2a\x6a\xed\x76\xbb\x6f\xfb\xf6\xed\x19\xf6\x87\xc3\x61\ \x24\x12\x09\x4b\xd2\xcf\xc5\x2f\x17\x25\xfb\xff\xe2\x91\x74\xc0\ \xa7\x2e\x55\x95\xe9\x63\x45\xa7\x02\xe3\xbf\x81\x14\x3a\x65\x09\ \x04\x84\x90\xcc\x58\x4c\xab\x2a\xc0\x73\x1c\x17\xe5\x38\x2e\xce\ \x71\x5c\x7c\xc3\x86\x0d\xd2\xe9\xd3\xa7\xcb\xa6\xa6\xa6\x2a\x13\ \x89\x84\x4f\x96\xe5\x9a\x3d\x7b\xf6\x64\x56\xf1\x1c\x1f\x1f\xb7\ \x96\xf2\x25\x04\x8e\xc0\x7f\x14\xa5\xac\x2e\xaa\x4d\x47\xfb\x77\ \xdf\x01\xb8\x5d\xe9\xed\xee\x3b\x8a\xab\x05\x90\x13\x0b\x0c\xfc\ \x8b\x66\xeb\x4a\x0b\x04\x0a\x00\x00\x60\xef\xde\xbd\xec\x9a\xc5\ \x55\x00\x2a\x28\xe1\xa7\x3f\xa3\x26\x02\x80\xa5\x00\x56\x00\x68\ \xbd\xef\xbe\xfb\xfe\xf0\xd5\x57\x5f\x7d\x58\x89\x34\xcf\x9e\x3d\ \x9b\xb5\x66\x9f\x5e\xd3\x8f\xe3\x38\xb8\xfb\x36\x81\x4f\xf4\x97\ \x1c\x79\x01\x0a\xe7\xf0\xa1\xf6\xee\x41\x10\x70\xa6\x49\x37\x00\ \xa8\xac\xac\xcc\xd8\x63\xcb\x96\x2d\x2f\xbe\xf6\xda\x6b\x1f\xd0\ \x66\x61\x1f\x80\xeb\x48\x8f\x1b\xd0\x6c\x05\x38\x91\xee\x49\xf2\ \x02\xa8\x7e\xe2\x89\x27\xfe\x50\x39\x20\x08\x82\xe1\xb4\xae\x59\ \xb5\x18\x00\x9f\xb8\x52\xb2\x5c\x81\x0a\x49\x4d\x41\x0c\xfd\xde\ \x70\x4e\x01\x56\x09\x94\x89\x38\x00\xe0\x1b\xdf\xf8\xc6\x27\xa8\ \x0b\x50\x32\x83\xe5\x7a\xcd\x40\x65\x6d\x3f\x17\x80\x0a\x8f\xc7\ \x53\xb5\x7e\xfd\xfa\x35\x19\x19\x8a\xc7\xad\x77\xf9\xa6\x46\xf0\ \x61\x7a\xc8\x63\x2e\x8a\x14\x3e\xaf\x6b\x7c\x35\x08\x58\x00\xdc\ \x71\xc7\x1d\xab\xab\xab\xab\x95\x2e\x62\x17\xb5\xb1\x4d\x0b\x00\ \x65\x2c\x00\xb6\x6e\xdd\xba\xa4\xac\xac\x2c\x13\x35\x5a\xee\xf2\ \x25\x25\xc3\xcf\x46\x91\x13\xc3\x59\xbe\xde\x08\x04\xac\x0d\x1c\ \x0e\x87\xe3\x4b\x5f\xfa\x52\x33\x05\x40\x05\x55\x80\x32\x2d\x00\ \x38\x18\x00\xb8\x36\x6c\xd8\xd0\x94\x25\x43\x3a\x0b\x3a\x69\xed\ \x93\xed\x4b\x41\x66\x75\x61\xf2\x0f\x5f\xe1\xcb\xaa\x72\x02\x3e\ \xa3\x9a\x2d\x1b\x37\x6e\x6c\x52\xec\x4a\x6d\xec\xd0\x02\x80\x8d\ \x1e\x70\x00\x70\x2c\x5b\xb6\xcc\x9b\xf5\x03\x78\xde\x72\xfb\x9f\ \xf0\x2e\x48\xae\x5b\x4b\x56\x2b\x60\xb1\x57\x7e\x44\x33\xea\x37\ \x33\x3e\x00\x34\x37\x37\xd7\xb0\xb6\x05\x33\x49\x38\xaf\x91\x13\ \xb0\x03\xb0\xfb\x7c\x3e\x37\xfb\x25\x65\x65\x65\x96\x87\x7c\x13\ \x42\x10\xaf\xfd\x73\x66\x31\xe7\x52\xb9\x91\x62\x73\xb7\xa1\xac\ \xee\x4e\xdd\xa6\x9f\x51\x40\x08\x00\x8b\x16\x2d\xf2\xaa\x8c\x6f\ \xd3\x6b\x05\xb0\x8c\xcf\xfa\x16\x97\xcb\x65\xd9\xff\x13\x42\x90\ \x72\xdd\x86\xe8\xe2\xef\x00\x9c\xa3\x64\xc1\x1b\x91\x7e\xe7\x22\ \xf8\x6e\xff\x4f\xa4\x57\x44\xe7\x2c\x81\x40\x51\x6b\x26\x0e\x50\ \x4f\xee\x39\xad\x2c\xac\x9b\xc7\xf4\xb0\x70\x39\x1a\x8d\x26\xd8\ \x13\xdd\x6e\x37\xec\x76\x7b\x66\xec\xbf\xd1\xb8\xff\xcc\x68\x95\ \xca\x3f\x45\x6a\xc5\x1f\xc3\x19\xfc\x19\x6c\xf1\x73\xb0\x89\x43\ \x80\x1c\xd3\x95\x2a\xd3\xf6\xf0\x0c\x3f\x97\xcf\x75\xe6\xe2\x1a\ \x66\x9f\xe3\xec\x1e\xd8\x5c\x2d\xb0\x57\xdf\x06\xf7\x8a\xaf\x82\ \x73\xd4\x66\x88\xc5\xfe\xc7\x2c\xe9\xd8\xfd\xea\x29\x6f\x65\x59\ \x26\x8c\x8d\xa1\x07\x00\x65\x30\x48\x0a\x40\xf2\xda\xb5\x6b\xc1\ \x75\xeb\xd6\x65\xfd\x60\xaf\xd7\x8b\x89\x89\x09\xd3\x05\x1e\xd8\ \x7d\xb2\xad\x0e\xf1\xda\xaf\xe9\xca\x94\x95\xf1\x04\x33\x39\xbf\ \xd0\xfb\xf2\x3d\x3f\xdf\x6b\xb3\x41\xb7\xba\x56\xff\xb7\x7a\x0f\ \x91\xa8\x15\x60\x62\x62\x42\x40\xee\x70\xff\x1c\x17\x20\x22\x3d\ \x68\x20\x01\x20\x71\xe6\xcc\x99\x51\x35\x5a\x16\x2f\x5e\x6c\xb9\ \x25\x50\xa8\x7d\x73\x79\xad\x42\x5c\xff\x46\xaf\x6d\x35\xca\xd7\ \x03\x8f\xd6\x74\xb7\x83\x83\x83\x53\xd4\xb6\x49\x4a\x70\x4d\x00\ \xa4\x00\xc4\x01\x44\x01\x44\x5e\x7e\xf9\xe5\x01\x46\x3a\x32\x71\ \x40\x4d\x4d\x4d\x09\x04\x45\x0c\x02\xad\x19\xcf\xbb\xba\xba\x06\ \x01\xc4\xe8\xa6\x80\xc0\x50\x01\x84\xfe\xfe\xfe\x89\x8b\x17\x2f\ \x0e\x68\x34\x29\x60\xb7\xdb\x4b\x20\x28\x42\x10\x38\x1c\x8e\x1c\ \x57\x22\xcb\xb2\xfc\x93\x9f\xfc\x64\x00\x80\x80\xf4\x73\x83\x0a\ \x08\x34\x5b\x01\x71\x7a\x52\x18\x40\xe0\xe0\xc1\x83\x1f\xa8\x01\ \xe0\x70\x38\xb0\x72\xe5\xca\x2c\xbf\x5f\x02\xc1\xfc\x83\x40\x2b\ \xf8\x03\x80\x93\x27\x4f\xf6\x0c\x0c\x0c\x8c\x51\xbb\x26\xe8\x26\ \xea\x01\x20\x4a\x7b\x8a\x42\x00\x42\xfb\xf6\xed\x3b\x7f\xfd\xfa\ \xf5\x9c\x58\xc0\xeb\xf5\xa2\xb9\xb9\x79\x41\x18\xe1\xc3\x00\x02\ \x8e\xe3\x74\xa7\xba\x7f\xee\xb9\xe7\x7e\x87\xf4\x32\x74\x41\x4a\ \xec\x38\x54\xd9\xbf\xac\x3e\x07\x9a\x2c\x28\x07\x50\x4e\x08\x71\ \x0e\x0f\x0f\xc7\xb7\x6e\xdd\xfa\x07\x9c\x4a\x5b\xdc\x6e\x37\xca\ \xca\xca\x10\x0c\x06\xb3\x22\x52\xbd\xcc\x54\x21\xf7\xcd\xe5\xb5\ \x0a\x71\xfd\x42\x5c\xdb\x8c\xf9\x5a\xcd\xca\x13\x27\x4e\x5c\x7c\ \xe2\x89\x27\xba\x90\x1e\x15\x3c\x0c\x60\x0c\xe9\xf5\x08\x65\x3d\ \x00\x28\x20\x50\xd2\xc2\xe5\x67\xce\x9c\x91\x3f\xfe\xf1\x8f\xbb\ \xd7\xac\x59\xb3\x54\x7d\xa2\xdb\xed\x86\xc7\xe3\x41\x28\x14\x82\ \x24\x49\x25\x10\xcc\x31\x08\x8c\x8c\x1f\x8b\xc5\xe2\x5b\xb7\x6e\ \x3d\x34\x3c\x3c\x7c\x05\xc0\x10\x80\x51\xa4\xe7\x0d\x88\x18\x29\ \x80\x02\x00\x8e\x49\x19\xda\x7f\xf1\x8b\x5f\x4c\xdd\x7f\xff\xfd\ \x4b\x1b\x1a\x1a\x7c\xea\x93\x9d\x4e\x27\xea\xeb\xeb\x33\xab\x60\ \x1a\xc9\x56\x09\x04\x85\x03\x01\xc7\x71\x39\xed\x7d\x36\x87\xb0\ \x7b\xf7\xee\xd7\x0e\x1d\x3a\x74\x0e\xc0\x08\x05\xc0\x30\x05\x00\ \x31\x03\x00\x68\x94\xc8\xd1\xe3\x36\x49\x92\xb8\x57\x5e\x79\x65\ \x64\xf3\xe6\xcd\x4b\xeb\xeb\xeb\xbd\x1a\x69\x63\x78\xbd\x5e\xd4\ \xd5\xd5\x65\x1e\x5a\x54\x06\x8f\x94\x40\x50\x58\x10\xa8\xd7\x1f\ \xd6\x32\xfe\xfe\xfd\xfb\xdf\x7e\xe6\x99\x67\xde\x47\x7a\xf4\xcf\ \x35\x5a\x4f\xd2\x00\x10\x56\x00\x40\x98\x48\x91\x03\xc0\x47\x22\ \x11\xe9\xa5\x97\x5e\xba\xbe\x61\xc3\x86\xda\xa6\xa6\xa6\x3a\xcd\ \x4e\x0b\x9b\x0d\x55\x55\x55\x68\x68\x68\x80\xd7\xeb\x85\xc3\xe1\ \xc8\xac\xd3\xab\xce\x70\x95\x40\x60\xfe\x39\x85\xe1\x3c\xcf\x1b\ \x1a\x3d\x23\xdd\x92\x24\xff\xf0\x87\x3f\x7c\xeb\xc9\x27\x9f\xec\ \xa6\x86\xbf\x46\xd9\x3f\x49\x83\xc0\xdc\xb4\xb3\x49\xca\xda\x8d\ \xf4\xa0\xc2\x25\x00\x1a\xe9\xb6\xf4\xb9\xe7\x9e\xbb\xfd\xb1\xc7\ \x1e\xbb\xcb\xe1\x70\x2c\xfc\x05\x7d\x6e\x92\x12\x08\x04\x84\xaf\ \x7f\xfd\xeb\xbf\x7c\xe9\xa5\x97\x2e\x30\xcc\x1f\x05\xe0\xa7\xc1\ \x9f\xe6\xd2\x2b\x66\x0b\xe5\xa5\x54\xb9\xe3\x38\x00\xe9\x8d\x37\ \xde\x18\xff\xf5\xaf\x7f\xdd\xbb\x76\xed\x5a\x77\x53\x53\x53\x7d\ \xbe\x1d\x22\xa5\x72\xe3\x45\x92\x24\xf9\x57\xbf\xfa\xd5\xef\xee\ \xb9\xe7\x9e\x43\xc7\x8e\x1d\xeb\x61\x98\x3f\xce\xf8\x7d\xdd\x19\ \x30\xad\x5a\xce\x85\xf4\xd0\xe2\x7a\xa4\x07\x18\x2e\xa6\x75\xfd\ \x5d\x77\xdd\xd5\xf4\xd4\x53\x4f\x7d\xe2\xce\x3b\xef\xec\xa8\xa8\ \xa8\x28\x2f\x99\x64\x6e\x4a\x28\x14\x8a\xbc\xfd\xf6\xdb\x67\x9f\ \x79\xe6\x99\x0f\xce\x9e\x3d\xab\xb0\x7c\x9c\xb2\x7e\x8c\x1a\x7e\ \x92\x4d\xfa\xdc\x08\x00\x94\x9e\x43\x65\xe2\x81\x5a\xa4\x1f\x34\ \xa8\xa7\x6e\xc2\x57\x56\x56\x56\xf5\xe0\x83\x0f\xb6\x7c\xee\x73\ \x9f\x6b\x6e\x6d\x6d\xad\x6b\x6a\x6a\xaa\xf3\x78\x3c\xae\xf2\xf2\ \xf2\x32\xbb\xdd\x6e\x2b\x99\x2c\xbf\x22\x8a\xa2\x14\x8f\xc7\x93\ \x82\x20\x44\x07\x06\x06\x26\x7a\x7a\x7a\xc6\x7e\xf9\xcb\x5f\x5e\ \x79\xe5\x95\x57\xae\x89\xa2\x18\xa4\x49\x9e\x30\x35\x7c\x90\x1a\ \x5f\xd9\x6f\xba\xe2\x96\x55\x00\x70\x4c\xab\xc0\x83\xf4\x10\x63\ \xe5\x89\x93\x2a\x5a\x2b\xa3\x4e\xdd\x48\x8f\x3b\x53\x46\x9f\xb2\ \xd3\xd0\xa9\xaf\xab\x55\x73\x3a\xbf\x8f\x33\xd8\xa7\x75\x2f\x85\ \xf6\x4b\xc4\xe0\x3d\x31\xd8\xa7\x75\x7c\x26\xb5\x32\x67\xa3\xc4\ \xa4\x72\x23\x4a\xa7\x1d\x80\x29\x6a\xec\x29\x26\xe3\x17\x61\x3e\ \x6b\xca\x6a\x2d\x43\x1b\xad\x16\x2a\xd2\x54\x31\xa1\xcd\x45\xe5\ \x87\xb0\xa3\x4e\xf5\x00\xc0\xa9\x52\xd0\x9c\xc1\x7e\xad\xf7\x9c\ \x09\x68\xb8\x19\x00\x44\xd9\x47\xf2\x30\x36\xd1\x79\xad\xb7\x4f\ \xd6\x79\x2f\x1b\x9c\x47\x0c\x00\x10\x63\x40\x10\xa2\x0a\xa0\xf4\ \xe1\x10\x6a\x83\xac\x49\x3e\x99\xef\x92\xa1\xc3\x2a\xa3\xe5\xe1\ \xf5\x8e\xd9\xa9\xd1\x5d\xcc\x56\x4e\xb3\x88\x65\x98\x7e\xe6\xd0\ \x68\x05\x72\x9e\x31\xb6\xd1\x7e\xa3\x73\x8c\x5e\x6b\x01\x84\x33\ \x30\xba\x96\x81\x67\xba\xb1\x06\xce\xf7\x1c\xd6\x78\x32\xa6\x07\ \xeb\x24\x28\xf1\x22\x34\x28\x8f\x51\x20\x88\x3a\x46\x37\xac\xed\ \x16\x24\xd9\xa8\xc8\xf4\xe2\x31\xca\x76\x65\xc8\xb1\x93\x1a\xde\ \xce\xb8\x0e\x35\x80\xa0\x03\x2c\xe8\x80\xcf\x4c\x9d\x8c\x8e\xa9\ \x81\xa4\x05\x02\x2d\x23\x40\x87\x41\x7a\x86\x22\x26\xc7\xd4\x46\ \x97\x2d\x7e\x4e\x51\x80\x24\x35\x74\x82\x79\xad\x9c\xa7\xa8\x99\ \xba\x9e\x51\x0c\x60\xa6\x04\x66\xee\x41\xeb\x9c\x99\x2c\x44\xcd\ \xe9\xb0\x9c\xb3\xb0\xcf\x88\xe9\x9c\x49\x9c\x40\x0c\xd4\x00\x3a\ \xc0\x90\x75\x00\xa2\x67\xcc\x99\xbe\xb6\x7a\x5c\x9e\xe1\x77\x64\ \x2d\xcc\x64\x25\x50\xe2\x0c\xd8\xc8\xcf\xc0\x48\x46\x46\xb3\x72\ \x5c\xcb\xb8\x85\x88\x03\xcc\x02\x3e\xab\xfe\xdf\x08\x20\x44\xe3\ \xcf\x97\x2d\xb8\x91\x99\x02\x49\xcf\xf8\x05\x69\x06\x9a\x7d\x07\ \xa7\x92\xfb\x7c\x36\x98\xec\xb7\x12\x08\xe2\x06\x01\x40\xf2\x04\ \x83\x11\x28\x60\x11\x20\x66\x60\x00\xa6\x67\x71\xd7\x1d\xe9\x9b\ \x8f\xf1\xe6\xa3\x58\x89\xe6\xcd\xa4\xdc\xac\x99\x58\x88\x7b\x34\ \x73\x0f\xd0\x60\x9a\x59\x10\x69\xf4\x99\x39\x2d\xff\x0d\x9b\x55\ \x6a\x69\xe2\x13\xaa\xa6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\x23\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2c\x0b\xce\x3d\x0c\xf2\x00\x00\x01\xa3\x49\x44\x41\x54\x68\ \xde\xed\x95\xb1\x8a\x53\x51\x14\x45\xd7\xb9\x93\x38\x11\x15\x14\ \xec\xc7\x1f\x10\x2c\xfc\x06\x3f\xc1\xd2\xce\xc2\xd6\xff\x90\xe9\ \x2c\x2c\x07\x6d\xfc\x0e\x41\x1b\x7b\x6b\xc1\x4a\x1c\xd0\x31\x4c\ \x92\xc9\xdd\xdb\xe2\x26\xef\x65\x8c\x31\x11\x03\x16\x9e\x05\xe1\ \xf2\xf6\xcd\xbb\xd9\xfb\x9c\xf7\x4e\x20\x49\x92\x24\x49\x92\x24\ \x49\x92\x24\x49\xfe\x4f\x62\x5f\x07\xdd\x7d\xf2\xea\xd6\xea\xf5\ \xf5\xd1\x70\xf2\xf6\xf8\xe1\xf9\x3f\x0f\x70\xff\xf1\x4b\xef\x72\ \xd0\x41\x89\xc9\xea\xb5\xcc\xc0\xf6\xe0\x6f\x0d\x3a\x74\xf4\xfe\ \xc5\xa3\x8f\x9b\xf6\xb7\xfe\x40\x89\x98\x1c\x3f\x7d\x30\x2a\xb1\ \x39\xab\xdb\x67\x84\x8c\xec\x65\x00\xec\xb6\x62\x63\xdc\x69\x18\ \xd4\x64\x6c\x35\x1d\x90\x96\x7b\x4d\x78\xfe\xfa\xdd\xf8\xf4\xfb\ \xf8\xb7\xfe\x76\xae\xd0\x87\x4f\xdf\x36\xbb\x5f\x2e\x6e\x4d\x35\ \x97\x35\xaf\x7c\x6f\x25\xf0\xba\xe6\xfe\xc1\xb8\x7d\x63\x80\xb4\ \xbd\xf9\x5b\x03\x08\x5f\xd9\x58\xfd\x3d\x98\x97\x41\x32\xf3\x45\ \x1b\xe4\x40\x12\xb3\xab\x65\xa7\xc2\x6e\xef\x80\x29\xa7\x67\x33\ \x3e\x7f\x9d\x52\x4a\x50\x0a\x94\x88\xce\x9c\xbd\x68\x3d\x50\x65\ \x0c\xcc\xab\xb1\x4d\x15\x54\x35\x83\x72\xd3\xd5\xe9\xee\xf4\x3e\ \x6c\x7f\xee\x78\x3a\x64\x7a\x51\xf7\x10\x00\x98\x5c\x54\xbe\x9c\ \xcd\x7a\x93\x76\x5f\x69\xc7\x62\x5d\xaf\x7c\xb7\xf7\x53\x37\xfa\ \x7b\x7f\x6d\xfe\x4f\xd8\x29\x40\x95\xb8\x77\xe7\x66\x7b\xa9\x4b\ \xab\x68\x44\x7b\x5c\x96\x2f\xa6\x11\x52\xb4\x0a\x57\x31\x97\xb0\ \x03\xcb\xcc\xe7\x95\x6a\x23\x07\xb6\xa8\x06\x6b\x19\xb8\xdd\x23\ \xd3\x0d\x00\x80\x08\xed\x2f\xc0\xb3\x93\x37\x6b\xf3\xdc\x66\xa8\ \x0d\x63\xb2\x44\x4c\x22\xfa\x46\x45\xe1\x9c\x08\x63\x6a\x44\x14\ \xd3\xb5\xed\xc0\xe2\xb0\x37\xdd\x8f\xf5\xc5\x18\xbe\xb6\xbf\x7f\ \xaa\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\xb9\xc4\x0f\xea\xbc\ \x1b\xd9\x62\x2f\xd7\x37\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\x23\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2c\x0b\xce\x3d\x0c\xf2\x00\x00\x01\xa3\x49\x44\x41\x54\x68\ \xde\xed\x95\xb1\x8a\x53\x51\x14\x45\xd7\xb9\x93\x38\x11\x15\x14\ \xec\xc7\x1f\x10\x2c\xfc\x06\x3f\xc1\xd2\xce\xc2\xd6\xff\x90\xe9\ \x2c\x2c\x07\x6d\xfc\x0e\x41\x1b\x7b\x6b\xc1\x4a\x1c\xd0\x31\x4c\ \x92\xc9\xdd\xdb\xe2\x26\xef\x65\x8c\x31\x11\x03\x16\x9e\x05\xe1\ \xf2\xf6\xcd\xbb\xd9\xfb\x9c\xf7\x4e\x20\x49\x92\x24\x49\x92\x24\ \x49\x92\x24\x49\xfe\x4f\x62\x5f\x07\xdd\x7d\xf2\xea\xd6\xea\xf5\ \xf5\xd1\x70\xf2\xf6\xf8\xe1\xf9\x3f\x0f\x70\xff\xf1\x4b\xef\x72\ \xd0\x41\x89\xc9\xea\xb5\xcc\xc0\xf6\xe0\x6f\x0d\x3a\x74\xf4\xfe\ \xc5\xa3\x8f\x9b\xf6\xb7\xfe\x40\x89\x98\x1c\x3f\x7d\x30\x2a\xb1\ \x39\xab\xdb\x67\x84\x8c\xec\x65\x00\xec\xb6\x62\x63\xdc\x69\x18\ \xd4\x64\x6c\x35\x1d\x90\x96\x7b\x4d\x78\xfe\xfa\xdd\xf8\xf4\xfb\ \xf8\xb7\xfe\x76\xae\xd0\x87\x4f\xdf\x36\xbb\x5f\x2e\x6e\x4d\x35\ \x97\x35\xaf\x7c\x6f\x25\xf0\xba\xe6\xfe\xc1\xb8\x7d\x63\x80\xb4\ \xbd\xf9\x5b\x03\x08\x5f\xd9\x58\xfd\x3d\x98\x97\x41\x32\xf3\x45\ \x1b\xe4\x40\x12\xb3\xab\x65\xa7\xc2\x6e\xef\x80\x29\xa7\x67\x33\ \x3e\x7f\x9d\x52\x4a\x50\x0a\x94\x88\xce\x9c\xbd\x68\x3d\x50\x65\ \x0c\xcc\xab\xb1\x4d\x15\x54\x35\x83\x72\xd3\xd5\xe9\xee\xf4\x3e\ \x6c\x7f\xee\x78\x3a\x64\x7a\x51\xf7\x10\x00\x98\x5c\x54\xbe\x9c\ \xcd\x7a\x93\x76\x5f\x69\xc7\x62\x5d\xaf\x7c\xb7\xf7\x53\x37\xfa\ \x7b\x7f\x6d\xfe\x4f\xd8\x29\x40\x95\xb8\x77\xe7\x66\x7b\xa9\x4b\ \xab\x68\x44\x7b\x5c\x96\x2f\xa6\x11\x52\xb4\x0a\x57\x31\x97\xb0\ \x03\xcb\xcc\xe7\x95\x6a\x23\x07\xb6\xa8\x06\x6b\x19\xb8\xdd\x23\ \xd3\x0d\x00\x80\x08\xed\x2f\xc0\xb3\x93\x37\x6b\xf3\xdc\x66\xa8\ \x0d\x63\xb2\x44\x4c\x22\xfa\x46\x45\xe1\x9c\x08\x63\x6a\x44\x14\ \xd3\xb5\xed\xc0\xe2\xb0\x37\xdd\x8f\xf5\xc5\x18\xbe\xb6\xbf\x7f\ \xaa\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\xb9\xc4\x0f\xea\xbc\ \x1b\xd9\x62\x2f\xd7\x37\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x25\xdf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x23\x30\xd7\x7b\x14\xbc\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xed\x7d\x79\x7c\x54\xd5\xdd\xf7\xf7\x77\xef\x64\ \x96\xec\x09\x09\x59\x4c\x80\x10\x12\xd6\x84\x6c\x24\xec\x41\x71\ \x69\x6b\xfb\xf4\xb5\x08\xf6\x7d\xfb\xb6\xf5\xed\xa6\xb5\xf5\xb1\ \x7d\x44\xf6\x5a\x6c\x11\x6d\xa9\x56\x50\x10\x04\xb4\x7d\xb5\xad\ \x95\xfa\x68\x05\x45\x44\x64\x49\x48\xd8\x13\x20\x6c\x0a\x61\x0d\ \x81\x90\x64\xb2\x67\xb6\x7b\xcf\xf3\xc7\x64\x99\xb9\x73\xef\x9d\ \x3b\x4b\x20\x68\x7e\xf9\xdc\x4f\xe6\xcc\xb9\xdb\x39\xdf\xdf\xf9\ \xfe\x96\x73\xee\x5c\x60\x40\x06\x64\x40\x06\x64\x40\x06\x64\x40\ \x06\x64\x40\x06\x64\x40\x06\x64\x40\x06\x64\x40\xbe\x2a\x42\x5f\ \xd6\x76\x65\x17\x14\x64\x12\xd1\x58\x06\x2e\x95\x18\x1b\x02\xa2\ \x64\x00\xa9\x0c\x94\xca\x11\x8b\x70\x6d\x3a\x11\x00\x90\x08\xe0\ \x06\x80\x1b\x44\xb8\x06\xe0\x3a\x40\xd7\x40\xec\xa4\x4e\x08\xa9\ \x3c\x70\x60\xcf\xf9\x01\x05\xe8\xa7\x92\x9f\x9f\x1f\x27\x80\x2f\ \x12\xc0\x0a\x89\xa3\x22\x02\x0a\x01\x8a\x71\x07\xb8\xb7\xb9\xda\ \xcb\x6e\xdf\x35\x81\xa1\x92\x38\xae\x92\x31\x94\xf2\x82\x6d\xfb\ \xfe\xfd\xfb\x5b\x06\x14\xe0\x16\xc9\xb8\x09\x13\x52\x79\x91\xfe\ \x17\x23\xcc\x22\xc2\x54\x00\xbc\x12\xa0\x2e\xa3\xdc\x4b\x59\x5e\ \x09\x08\xe4\xd6\x53\x5d\x65\x1b\x18\x4a\x19\xd1\x47\x3a\x81\xfb\ \xb0\xbc\x7c\xd7\xe9\x01\x05\xe8\xfb\x91\x9e\x64\x03\xff\x03\x10\ \x66\x71\x84\x02\x37\xd8\xc8\x5f\xc0\xbb\x20\xf5\x0e\xb8\x4a\x19\ \x00\xd1\x49\x06\xf6\x1a\x67\xb7\xbf\x59\x5e\x5e\xde\x38\xa0\x00\ \x41\x94\xac\xbc\xa2\x7c\x8e\xc7\xaf\x00\xcc\x01\xa0\x0f\x74\x44\ \x6b\x02\xdc\xe5\x74\x9e\x65\xf7\x8b\x48\xca\x9d\x00\xfd\x8b\x27\ \xf6\x5a\xe9\xae\x5d\xa5\x03\x0a\xe0\xbf\x70\xd9\x05\x45\x0f\x10\ \xe1\x09\x00\xd3\x7c\xb5\xe3\x6a\xfb\x78\x03\x58\x65\x94\x6b\x2a\ \xbb\x28\xc4\x61\x06\xf6\xdb\xb2\x9d\x3b\x3f\x1c\x50\x00\x1f\x24\ \x7b\xc2\xa4\xaf\x11\xd8\x0a\x22\x36\x2e\x10\x5a\x8f\x88\x08\x47\ \x4c\x4c\x34\x62\x63\x62\x10\x1b\x13\x8b\xe8\xe8\x28\xe8\xf5\x7a\ \x18\x0c\x06\x84\xe8\x42\xa0\xd7\xeb\x01\x00\x36\x9b\x0d\x82\xc3\ \x01\x8b\xcd\x0a\x9b\xcd\x86\xe6\xe6\x66\x98\xcd\x4d\x30\x37\x35\ \xc1\x6c\x36\xa3\xad\xbd\x5d\x1b\xe0\x5d\xdf\x49\x7d\x48\x02\x95\ \x81\x71\x4f\x97\xec\xdc\xbe\x63\x40\x01\x54\x24\xb7\xa8\x68\x8c\ \xc8\xe8\x05\x02\xbe\xe6\x2b\xe0\x21\x21\x7a\xdc\x91\x9c\x84\x21\ \xa9\x29\x48\x49\x49\x41\xea\x1d\x29\x08\x0b\x0f\x53\x69\x28\xa9\ \xf6\x88\x6b\x6d\x7b\x7b\x07\x6a\x6a\x6a\x70\xa5\xa6\x06\x97\x6b\ \x6a\x70\xad\xb6\x16\x76\x87\x43\x0d\x70\xf9\x32\xc3\x0e\x46\xec\ \xbf\x4a\x76\xec\x38\x36\xa0\x00\x2e\x52\x54\x54\x14\x69\x05\x3d\ \x47\xc0\xcf\x00\xe8\xb4\x86\x67\xa1\x26\x23\x32\x32\x32\x30\x2a\ \x33\x13\x23\xd2\xd3\x11\x12\x12\xa2\x09\x50\xd5\x2e\x20\x6f\x9d\ \x43\x70\x38\xec\xa8\xae\x3e\x8f\x33\x5f\x7c\x81\xb3\xd5\xe7\x60\ \xb1\x58\x34\xf8\x0d\x3d\x1f\xec\x44\xf4\x47\xd8\x6c\xcb\x76\xed\ \xda\x65\xf9\xca\x2b\x40\x5e\x61\xe1\x34\x46\xfc\x9b\x00\x86\x6a\ \x71\xe6\x78\x9e\xc3\x88\xf4\x74\xe4\xe7\xe6\x62\x78\x5a\x1a\x38\ \x8e\xd4\x9b\xa3\x01\x50\x77\x5a\xd7\xa6\x20\xdd\xdf\x8a\x22\xc3\ \xf9\x8b\x17\x70\xf4\xe8\x31\x54\x57\x57\x43\x64\x4c\x9d\x05\x7a\ \xca\x38\xc3\x11\xfd\x74\xc7\xb6\x6d\x25\x5f\x49\x05\xc8\xcf\xcf\ \x0f\x11\x75\xfa\xdf\x11\xe1\x29\x80\x78\x6f\xe1\x59\x58\x58\x18\ \x72\xb3\xc7\x23\x37\x77\x3c\x22\x22\x22\xb4\xd3\xba\x87\x02\xc8\ \xef\x43\xbe\x74\x15\xc9\x5f\xbb\xb5\xad\x15\xc7\x8e\x1d\xc7\xf1\ \x13\x55\xe8\xe8\xe8\x54\xd8\xdf\x2d\x02\x61\x20\x7a\xc5\x40\xf4\ \xd4\xd6\xad\x5b\xad\x5f\x19\x05\xc8\x9f\x34\x69\x14\x63\xf4\x37\ \x00\x79\xde\xc2\xb3\xd0\x50\x13\x0a\x27\x4c\x40\x7e\x6e\x2e\x74\ \x3a\x9d\x7c\xb8\xe6\x9b\x79\x97\x1d\xd5\xe4\x33\xe0\xca\x57\x10\ \x04\x07\x2a\x8f\x1d\xc3\xe1\x23\x47\xd0\xd9\x69\x51\x0d\x41\xbb\ \x8e\xd9\xc7\x74\xfc\x83\x9f\x6d\xd9\x52\xf3\xa5\x57\x80\xdc\x49\ \x93\x66\x72\xa0\x77\x01\x44\xa9\x85\x67\x06\x83\x01\x05\x79\x79\ \x28\xc8\xcf\x87\x5e\x6a\xdb\xbd\x8d\x6a\x1f\xea\xd5\xbf\x26\x2f\ \x7e\x84\xba\x92\xd8\xed\x76\x54\x54\x1e\x45\xe5\xd1\xa3\xb0\xd9\ \x6d\xde\xf2\x12\x75\x60\x6c\xce\xf6\xad\x5b\x77\x7f\x69\x15\xa0\ \x60\xd2\xd4\x1f\x31\xb0\xb5\x44\x08\x51\x4b\xc2\x64\x64\x8c\xc0\ \x9d\xc5\xd3\x11\x1e\x16\xee\xf5\x2e\x49\x83\x9d\xd6\x4e\xfb\xa4\ \xd5\x9a\x78\xd4\x90\xca\x3d\xb6\x77\x74\xa0\xb4\xac\x0c\xd5\xd5\ \xd5\x8a\xfb\x93\xf3\x0b\x07\x01\x4f\x6d\xfb\xf0\xc3\x97\xbe\x6c\ \x0a\x40\xf9\x93\xa6\x3c\x4b\x84\x85\x6a\x69\xd5\x88\x88\x08\xdc\ \x55\x5c\x8c\xb4\x61\xc3\x34\xdc\xa5\x34\xe9\x22\x03\x8a\x76\xf7\ \xc0\x47\xda\x57\x07\x5c\xee\x60\x02\x70\xf1\xd2\x25\x94\x96\x95\ \xa1\xad\xad\xcd\x15\x74\xa9\x12\x80\x80\xe7\x3f\xde\xb2\x65\xe1\ \x97\x42\x01\x66\xcf\x9e\xcd\x5f\xac\xa9\x7d\x83\x11\xbe\xaf\x16\ \x1e\x65\x66\x66\xe0\xce\xe2\xe9\x2e\x74\xef\x3b\xad\xfb\x3a\xa2\ \x95\xb2\x80\xb2\x6a\xe6\x23\x23\x78\xd2\x7c\xaf\x59\xd8\x5b\x5e\ \x8e\xb3\xe7\xce\xb9\x29\x80\x4c\xa2\xe9\xe5\xad\x9b\x37\x3f\x01\ \x80\xdd\xce\x0a\x40\x85\x53\xa6\xae\x07\xe8\xc7\x4a\xa3\x9e\xe7\ \x79\x4c\x9b\x32\x19\x63\x46\x8f\xd1\x14\x8e\x51\x50\x00\xf5\x75\ \xd4\x2b\x03\xea\x6d\xd4\x4b\x86\x78\xcf\xc7\xcf\x3f\xff\x1c\xfb\ \x0f\x1e\x84\x20\x08\x4a\x0a\x00\x10\xdb\x10\xa6\x37\x3e\xba\x69\ \xd3\x26\xa1\xaf\x00\xd2\xf5\x69\x82\x67\xea\xf4\x97\x18\xd8\x8f\ \x95\xf2\xea\x51\x91\x91\xb8\xe7\xee\x99\x18\x14\x1b\x0b\x51\x14\ \xbd\x28\x80\x56\x5a\x27\x1f\xeb\x7b\x07\x18\x31\xb7\x92\xcb\xf1\ \xac\xa7\x5e\x19\x70\x26\xa9\x07\x98\x14\x50\xd6\xbb\x43\xc6\x88\ \x11\x88\x1b\x34\x08\xbb\x4b\x4a\xd0\xd2\xda\x2a\x51\xec\xee\xbb\ \xa4\x9f\xb4\x3b\x6c\x7a\x00\x0f\xf7\x15\x13\xf0\x7d\x06\xfe\xb4\ \xe2\xe5\x20\xcc\x25\x72\xda\x4b\xea\xb2\x71\xdd\xdb\xe0\xb8\x38\ \xdc\xff\xf5\xaf\x21\x22\x3c\xc2\xd9\x34\xc6\xba\xda\xc8\x9c\x7f\ \x8c\xb9\x7e\xd5\xd5\x7c\xe6\xfe\xc7\x98\xa4\x1e\x1e\xf5\x6e\xfb\ \x48\xea\xc1\x5c\x37\xf7\x53\xc9\xd6\x33\xf7\x7a\xc6\xdc\xf7\x61\ \x8c\xb9\x5e\xca\xb3\xce\xa5\x9e\x01\x30\x19\x8d\x18\x36\x74\x28\ \xea\x6e\xdc\x40\x67\x67\xa7\x5b\xff\xa0\xf7\xf3\xf8\xcc\xd1\x23\ \x0d\x9f\x9f\x3e\xb3\xe3\xb6\x31\x01\x13\xa7\x4d\xfb\x35\x40\x2f\ \x2a\x4d\x9e\xa4\xa6\xa4\xe0\xce\xe2\x62\xe8\x74\x3a\xaf\x23\x5a\ \x1b\xad\x6b\xb4\xe3\xaa\xae\x85\xb7\x7a\xd9\x4c\x95\x6a\x3d\xa9\ \xf6\x78\x2f\x17\x39\x04\x01\x7b\xcb\xca\x50\x5b\x5b\x2b\x5b\xdf\ \xd5\x79\x3f\xd9\xfc\xdf\xff\xbd\xb1\xdf\x2b\xc0\xa4\x69\x77\x16\ \x33\x12\x3f\x25\x40\x27\xa7\x00\x23\x86\x0f\xc7\xe4\x49\x13\xc1\ \x11\xe7\x1d\x50\xbf\x69\x5e\xab\x5d\xa6\xbe\x07\xdc\x83\xd6\xe5\ \xeb\x19\x03\x0e\x1d\x3a\x84\x0b\x17\x2f\xba\xd9\x40\xea\x4d\x25\ \xdb\x44\x51\xfc\xfa\xe6\xf7\xde\xfb\xac\xdf\x2a\x40\xd1\x8c\x19\ \x29\x1c\x63\x87\x01\x1a\xec\xba\x48\xa2\xfb\xf3\xd0\x21\x43\x30\ \x75\xea\x14\x70\x3e\x03\x1c\xbc\xf0\x8c\x7c\x04\x5c\x6d\x1f\x6f\ \x80\xab\xb3\x80\x67\x3d\x03\x70\xe0\xc0\x01\x5c\xb9\x5a\x03\xf9\ \x88\x09\xcd\x3c\xc3\xc4\x77\xdf\x7d\xf7\x74\xbf\x53\x80\xb1\x63\ \x67\xeb\xa3\xe2\x6e\xec\x02\xd1\x24\xb9\xf9\xf1\x3b\x92\x93\x31\ \x75\xca\x64\x70\x3c\xef\x71\x51\x0a\x20\x5c\x53\x1f\xd1\xca\xde\ \xfb\xb1\xa3\x47\x51\x7d\xee\x1c\x18\x63\x98\x50\x54\x84\xd4\xd4\ \x54\x15\x2c\xb5\xd0\xba\x37\xc0\x55\x58\xc0\x25\x24\x16\x45\x11\ \xfb\x0f\x1e\xc4\xb5\xeb\xd7\x3c\x4c\x57\x57\xf9\xb0\x0e\x98\xbc\ \x69\xd3\x26\x5b\xbf\x72\x02\x33\xc7\x0e\x7e\x89\x88\x66\x49\x1c\ \x18\x10\x01\x83\x07\xc7\x63\xda\x94\x29\x4e\xda\x77\x71\xf0\x7a\ \x9d\x2a\xa9\xf3\xc7\xa4\xfe\x97\x4c\x7d\xef\x3e\x50\x71\xcc\x9c\ \xce\x9d\xfb\x71\x97\x2e\x5e\xc4\x81\xfd\xfb\x61\xb3\xd9\x60\xb3\ \xd9\x70\xf1\xe2\x45\x44\x45\x46\x22\x32\x2a\xca\xcd\x53\xef\x39\ \x2f\x73\x75\x28\xdd\xdc\xc8\x1e\xff\xd5\xad\x9e\xf5\xd6\xbb\xdc\ \x9c\xc4\x19\x64\x92\x8b\x38\xcf\x01\x00\x49\x49\x49\x30\x9b\xcd\ \x5d\x8e\xa1\xbb\xf3\x4c\x84\x64\x91\xe3\x42\x4e\x9f\x38\xb1\xa3\ \xdf\x28\xc0\x94\x99\x33\xa7\x11\x68\x0d\x91\x33\xb5\xe1\x7a\xd3\ \xe1\xa1\x61\x98\x3e\x6d\x2a\x74\x3a\x9d\x8c\x67\xce\x7a\xbc\x7f\ \x39\xc0\x5d\x7a\xc6\x0d\x74\x69\xcf\x31\x99\x7a\x25\x6f\xfe\xf2\ \xa5\x4b\xd8\x5b\x5a\x0a\x91\x31\x3c\xfc\xc3\x1f\x22\x37\x27\x07\ \x95\x95\x95\xb8\x7c\xf9\xb2\x53\x09\x22\x23\x7b\xbd\x75\xd7\x9b\ \x72\xbd\x2b\xd6\x0b\xba\x6c\xbd\x9c\x52\x48\xa3\x38\xe6\xae\x58\ \xae\x2a\x45\x44\x48\x48\x18\x8c\xda\x6b\xd7\xe0\x70\x38\x3c\x23\ \x03\xd0\xa4\xd1\x63\xc7\xee\x3a\x75\xe2\xc4\xc5\x5b\xae\x00\x33\ \x66\xcc\x30\x32\xa2\x8f\x88\x28\xce\x5d\x53\x09\x3a\x9d\x0e\xd3\ \xa6\x4c\x41\x68\x68\xa8\xf2\x88\x96\x05\x50\x09\x70\x28\x02\xae\ \x5c\xcf\x7a\x46\x56\x4d\x4d\x0d\x4a\x4b\x4a\x20\x8a\x22\xfe\xef\ \xf7\xbe\x87\x9f\xfe\xf4\xa7\xc8\xcd\xcd\x85\xcd\x66\xc3\xd1\xa3\ \x47\x71\xf9\xca\x15\xc4\xc4\xc4\x74\x4d\x37\xab\x03\xaa\xad\x9e\ \xb9\xa5\x12\x94\x00\x77\x49\x35\xf4\x7c\xc3\x71\x3c\x06\x0d\x8a\ \xc5\xd5\xda\x5a\x38\x97\x18\xb8\xb1\x00\x07\xa2\x3b\xf3\xc6\xe7\ \xbc\x71\xfc\xf8\x71\xeb\x2d\x55\x80\x21\xc3\x47\x2c\x05\xe1\x01\ \x48\xa8\x0a\x04\x14\xe4\xe5\x21\x2e\x2e\xce\x8d\xe6\xe5\x46\xb4\ \x74\x54\x7b\xd2\x3c\xf3\x30\x1d\x5a\x00\x77\x95\xab\x57\xaf\xa2\ \x64\xf7\x6e\x88\xa2\x88\xef\x3e\xf4\x10\x1e\x7b\xec\xb1\x9e\xba\ \x82\x82\x02\x74\xb4\xb7\xa3\xea\xf8\x71\x5c\xba\x74\x09\xb1\xb1\ \xb1\x08\x0f\x0f\x77\xc9\x45\xb8\x27\x1b\x64\x01\x57\x60\x09\x4f\ \xda\x97\x03\x9c\x49\x52\x21\xce\x83\xf5\x06\x3d\x42\x43\x43\x51\ \x57\x57\x07\x22\x80\x73\x1f\x60\xd1\x0c\x2c\xe2\xc4\xf1\xaa\xad\ \xb7\x4c\x01\xa6\xcd\x9c\x99\x4d\x44\x7f\x25\x10\xef\x36\xfa\x41\ \x18\x92\x9a\x8a\x8c\xf4\x11\xee\x8d\x57\x00\x50\x7d\x54\x33\x59\ \x90\x21\xb5\xcd\x52\x1e\x70\xa9\xbb\x5e\x5b\x8b\x92\x92\x12\x08\ \xa2\x88\x87\xe6\xcc\xc1\xe3\x8f\x3f\xee\xb1\x7f\x61\x61\x21\xda\ \xda\xdb\x51\x55\x55\x85\xcb\x97\x2e\x61\xd0\xa0\x41\x08\x0f\x0f\ \xf7\x99\xf6\xe1\x51\xef\x96\x1a\xf2\x00\x9c\xb9\x1f\x2c\x49\x54\ \x01\xe1\x61\xe1\xb0\x5a\xad\x68\x6b\x6b\x83\x94\x61\x89\xb8\xbc\ \xec\x71\xe3\x36\x55\x55\x55\xd5\xdf\x12\x05\x48\x4b\x4f\xff\x07\ \x11\xa5\x4b\x6f\xcc\x64\x32\xa1\x20\x2f\x0f\x1c\xc7\xa9\xd8\x71\ \xdf\x68\x5c\x0d\x60\xb7\x2c\x9c\x1b\x00\x40\x5d\x5d\x1d\x4a\xf6\ \xec\x81\x20\x08\x98\x35\x6b\x16\x9e\xf8\xcf\xff\xf4\x98\x85\x73\ \x55\x82\xe6\x96\x16\x9c\x38\x71\xa2\x4b\x09\xe2\x10\x1a\x16\xe6\ \x95\xf6\xdd\x7c\x19\x59\xc0\x21\x0f\xb8\x14\x74\x49\x66\xb3\x9b\ \xf9\x62\xa2\x63\x70\xbd\xee\x3a\x04\x41\x70\x67\x59\x80\x03\xc7\ \xa5\x55\x1d\x3b\xfe\xf7\x9b\xae\x00\xc5\xf7\xdd\x77\x27\x80\xa5\ \x52\xda\x27\x02\x72\x73\x72\x10\xde\xd5\x71\xf2\x00\x7b\xa6\x5d\ \x99\x34\x65\x2a\xf5\xc6\x25\x80\xbb\x9e\x94\x29\x9c\xbb\xae\xae\ \x0e\x25\xbb\x77\x43\x10\x04\x7c\xfb\xdb\xdf\xc6\xdc\x27\x9f\x54\ \x04\x1f\x5d\xa9\xea\x89\x45\x45\x68\xa8\xaf\xc7\xa9\x53\xa7\x70\ \xe9\xf2\x25\xc4\xc7\xc7\x23\x34\x34\x4c\x1e\x70\xe6\x91\x87\x96\ \x51\x10\x15\xc0\x3d\xf3\xcf\x32\x3d\x03\x10\x47\x08\x0f\x0b\xeb\ \x32\x05\x52\x16\x40\x66\x56\xf6\xf8\xb2\xaa\x63\xc7\xaa\x6f\xaa\ \x02\x0c\x1b\x9e\xfe\x37\x22\x4a\xed\xf1\xf8\x41\xe0\x88\x90\x72\ \xc7\x1d\x18\x92\x3a\x44\xb3\x5d\x77\xcb\x97\x7b\xf4\x85\x04\x74\ \x59\xe5\xe9\x55\x00\xd7\x6b\x34\xdc\xb8\x81\x92\x92\x3d\x70\x08\ \x0e\x7c\xf3\x9b\xdf\xc2\x82\xf9\xf3\x55\xc1\x77\x55\x82\xc9\x93\ \x27\xe3\x7a\x5d\x1d\x4e\x9f\x3e\x8d\xcb\x97\xba\x94\xc0\x64\x92\ \x01\xd0\xe5\xda\x0a\x76\xdc\x03\x70\x2f\xa2\xa4\x0f\x46\xa3\x11\ \x36\x9b\x0d\xed\x1d\xed\x6e\x51\x16\x40\x20\x0e\x39\xa3\x32\x47\ \xbe\x76\xf2\xe4\x49\x76\x53\x14\xe0\xae\x7b\xef\xfd\x3a\x11\x2d\ \xe0\x5c\x62\x7d\x22\x42\x48\x48\x08\xb2\xb2\xb2\xc0\xf1\x9c\x8b\ \xcd\x57\xb1\xeb\x32\x80\x77\x6f\xa4\x21\x1e\xef\xe9\x6d\x49\x87\ \x37\x34\x34\xa0\xb4\xa4\x04\x0e\xbb\x03\xdf\xf8\xc6\x37\xb0\x68\ \xe1\xc2\x2e\x73\xa4\x31\x3b\x46\x84\x29\x53\xa6\xe0\xda\xb5\x6b\ \x38\xf3\xf9\xe7\xb8\x72\xf9\x32\xe2\x06\xc7\xc3\x64\x0a\x95\x10\ \x7c\xaf\x0e\x2b\xda\x71\x2f\x08\x33\x26\x33\xc1\xe5\x3e\x74\x7a\ \xae\x18\x1e\x11\x8e\xeb\xd7\xeb\x7a\x42\x45\x22\x02\xc7\x11\x88\ \x28\x41\xa7\xe7\x2b\x8e\x55\x1e\x3b\x7d\x53\x14\x60\x78\x46\xc6\ \x3f\x00\x4a\x96\xd2\xd1\xb0\xa1\x43\x11\x1b\x13\xa3\x3a\xbb\x26\ \x6b\xdb\x15\x66\xd3\x14\x01\x57\x61\x81\xc6\x46\x33\x4a\xf7\xec\ \x81\xdd\x6e\xc7\xbd\xf7\xdc\x83\xa7\x7f\xf3\x1b\x9f\xc0\x77\x55\ \x82\xa9\x53\xa7\xe2\xd2\x95\xcb\xf8\xe2\x8b\x2f\x70\xe5\xf2\x65\ \x24\x0c\x4e\x80\xd1\x68\x92\xe5\x78\x45\x00\x65\xec\x3a\xf3\xaa\ \x24\x92\x63\xba\xae\xc0\x71\x1c\x88\x08\x2d\xad\x2d\x1e\x09\x22\ \x00\x89\xc7\x2a\x8f\xfd\xb5\xcf\x15\xe0\xee\xaf\x7d\x6d\x2a\x80\ \x25\x3d\xf4\xd3\x75\x03\x46\xa3\x11\x23\x47\x66\x82\x88\x54\xa7\ \x4b\xd5\x06\x84\x54\x19\x94\x01\x97\x66\xd9\x9c\xfb\x36\x9b\xcd\ \x28\x2d\x29\x81\xcd\x6e\xc3\xdd\x33\xef\xc6\xef\x9e\x79\xc6\x2f\ \xf0\x5d\x95\xa0\x78\x7a\x31\x2e\x5e\xbc\x88\xb3\x67\xcf\xe2\xf2\ \xe5\xcb\x48\x48\x48\x80\xd1\x68\xf0\x6d\x94\x6b\x02\x9c\x79\x00\ \xce\xc0\xba\x16\x21\xb8\xb0\x40\x78\x18\x1a\x1a\x1a\x20\x8a\xa2\ \xd4\x1f\x18\x96\x93\x3f\xfe\x83\xa3\x15\x47\xaf\xf5\xa9\x02\xa4\ \x65\x66\x3e\x4b\x40\xb6\x54\x03\xd3\x86\x0d\x43\x78\x58\x98\xe7\ \x3c\xb8\xd4\x4e\x2b\x00\x0e\x49\x82\x84\xc9\x84\x4d\xb2\x1e\x56\ \x97\x92\x34\x37\x37\x3b\xc1\xb7\xd9\x70\xe7\x9d\x77\x62\xd9\xef\ \x7f\x0f\x9e\x0f\x3c\xd1\x49\x44\x28\x2e\x2e\x46\xf5\xf9\xf3\x38\ \x77\xee\x1c\x6a\xae\x5c\x41\x42\x42\x22\x0c\x46\x83\xdf\x80\x33\ \x29\xe0\xae\x29\x71\xf2\x0c\x1d\xa5\x13\x07\x3c\xcf\xa3\xb9\xa5\ \xb9\x77\x35\x75\x17\x06\x0c\x9c\xe9\x58\x45\xe5\xfb\x7d\xa6\x00\ \xf7\xdd\x77\x5f\x2c\x38\x6e\x03\x11\x85\xb8\xda\x7e\xbd\x5e\x8f\ \xe1\xc3\x87\xbb\x8c\x7e\x79\x80\xdd\x93\xf7\xd2\xac\x98\x17\x97\ \x5e\x66\xff\xee\x5d\x5b\x5a\x5a\xb0\xb7\xa4\x14\x56\xab\x15\xc5\ \xd3\xa7\xe3\xd9\x65\xcb\x9c\xcf\x10\x04\x49\x38\x8e\x43\xf1\xf4\ \xe9\x38\x77\xee\x1c\xaa\xab\xab\x51\x73\xe5\x0a\x12\x13\x13\x61\ \xd0\x1b\xb4\xd9\x71\xe6\x09\xa8\x5b\x3f\x91\x3b\x19\x48\xc9\x41\ \xaa\xf4\x46\xa3\x11\x0d\x8d\x0d\x60\x8c\x49\x23\x82\xd1\x59\x13\ \x0a\x37\x1e\x3b\x7c\xb8\xad\x4f\x14\x60\xf8\xc8\x91\x3f\x03\xf0\ \x2d\x89\xed\xc1\x1d\xc9\xc9\x88\x8c\x8c\x54\x07\x5c\x86\xc2\xa5\ \x34\xce\x24\x8e\x1d\x53\x60\x85\xee\x83\x08\x40\x6b\x6b\x2b\xf6\ \x96\x94\xc0\x6a\xb3\x61\xca\xe4\xc9\xf8\xc3\xf3\xcf\xcb\x3f\x23\ \x18\x68\xce\x9c\xe7\x31\x63\xc6\x0c\x9c\x3e\x73\x1a\xe7\x2f\x9c\ \xc7\x95\x2b\x35\x48\x4c\x4c\x84\xde\x60\x50\x18\xab\x4c\x46\x91\ \x99\xa7\x07\x29\xe7\xc9\x48\x00\x97\xee\x41\xe4\xfc\xdf\xde\xde\ \x2e\x35\x03\x3c\x89\x42\xdd\xd1\x8a\xca\xbd\x7d\xa2\x00\x23\x32\ \x33\x37\x12\xd1\x60\xb7\x7c\x3f\xcf\x23\x2d\x2d\x0d\x1c\x91\xec\ \xb2\x27\xf7\xac\xbf\xa7\xdd\x96\x4d\xb3\xca\xd1\x3e\x24\x4b\xf4\ \x98\x13\xfc\xb2\xbd\x7b\x61\xb5\x5a\x31\x69\xe2\x44\xac\x58\xb1\ \xa2\xe7\x91\xef\xbe\x10\x9e\xe7\x71\xd7\x5d\x77\xe1\xd4\xc9\x53\ \xb8\x78\xe1\x02\xae\xd6\xd4\x20\x31\x29\x11\x7a\x7d\x88\x27\x6d\ \x4b\x00\x67\xca\xb1\x8f\x67\x12\xcc\x23\x81\xc4\x3c\x58\xc1\x68\ \x30\xa2\xd1\xdc\xe8\x66\xaa\x88\x08\x1c\x51\x54\xc5\x91\x8a\x0d\ \x41\x57\x80\x7b\xbf\xf5\xad\x51\x04\x3c\x23\xc9\x47\x63\x50\x6c\ \x2c\x62\x63\x63\xd5\xe7\xcb\x99\xfa\x1c\xba\xc7\xd7\xcc\x5b\x94\ \x0c\xb4\x77\xb4\xa3\xbc\x6c\x2f\xac\x96\x4e\x14\x16\x16\xe1\x4f\ \x2b\x56\xc0\x60\x30\xa0\xaf\x85\xe7\x79\xdc\x39\x63\x06\x4e\x9e\ \x38\x81\x8b\x97\x2e\xa2\xf6\x6a\x2d\x12\x13\x93\xa0\x0f\xd1\xab\ \xad\x29\x91\xfd\x01\x0b\x77\xda\x27\xd5\x75\x29\xd2\x32\xc7\x71\ \xb0\xd9\x6d\xb0\x5a\xad\x5d\x73\x04\xe8\x9e\x31\x4c\xce\xcf\xcd\ \xdb\x78\xe4\xc8\x11\x4d\x3f\x60\xa5\xd9\x45\x26\xa2\xfb\x7b\x73\ \xfd\xbd\x1a\x17\x1d\x1d\x0d\x51\x10\x20\x8a\x02\x44\x51\xf4\xba\ \x09\x4a\x65\x26\x82\x31\x06\xb1\x7b\x13\x99\xe2\xb1\x6d\x6d\x6d\ \x28\x2b\x2d\x45\x47\x47\x27\xf2\xf2\xf2\xf1\xc2\x9f\xfe\x04\xa3\ \xd1\x88\x9b\x25\x46\xa3\x11\x2b\x56\xac\x40\x5e\x6e\x1e\x3a\x3a\ \x3a\x50\xb2\x67\x0f\xda\xda\x5a\xbb\xee\x93\x41\x10\xba\xef\x9f\ \xc9\xf4\x81\xb3\xaf\x18\x13\xdd\x36\xcf\xfd\x98\x64\xeb\xad\x63\ \xa2\x08\xc6\x04\x44\x45\x46\x48\x7d\x00\x10\x11\x11\x4f\xb3\x34\ \xfb\x37\x3e\x2c\x1d\xba\xdf\x7d\xb1\x07\x10\x12\x12\x82\xd0\xb0\ \x30\x45\x40\x9d\x9b\x6b\xdc\x2f\xf6\x7e\x16\x99\xb3\x21\x6e\xc7\ \x4a\x14\xa9\xa7\x83\xba\xf6\x67\x0c\x1d\xed\x1d\x28\x2f\x2b\x43\ \x67\x47\x27\x72\x73\x73\xb0\xf2\xa5\x97\x6e\x2a\xf8\xae\x4a\xf0\ \xe7\x3f\xff\x19\x39\x39\xe3\xd1\xd9\xd9\x89\xd2\x92\x52\xb4\xb7\ \xb7\xbb\xb7\x31\x80\x4d\x14\x45\xf7\xb9\x0e\x51\xb2\x8f\xc8\x60\ \x32\x85\x22\x24\x24\xa4\x27\x13\xdb\x13\x0d\x10\x3d\x10\x54\x13\ \x70\xf7\xec\xd9\x51\x3a\x51\x78\x85\x08\x6e\xb3\x7e\x31\x31\xd1\ \xbd\xcf\xef\x49\xb9\x5e\xa3\x37\x2f\xcd\xa3\x2b\x1f\x0c\x58\x2c\ \x16\xec\x2b\x2f\x43\x47\x47\x07\xc6\x67\x8f\xc7\xcb\xab\x5e\x76\ \xa6\x68\x6f\x91\xe8\x74\x3a\xcc\x9c\x39\x13\x87\x8f\x1c\xc1\x95\ \x9a\x2b\xb8\x56\x7b\x0d\x49\xc9\x49\xce\xc5\x2f\x92\xd9\x40\xf9\ \xb9\x0d\xc9\x2c\xa3\xd4\x14\x7a\xb8\xcc\xee\x7e\x12\x08\x10\x1c\ \x02\x2c\x56\xab\x94\x05\x52\x0b\xf2\xf2\xd7\x1c\x3e\x7c\xb8\x23\ \x28\x0c\x60\xb0\x5a\xef\x25\x74\x87\x7e\xbd\x53\xbe\x91\x5d\xcf\ \xe9\x4b\xa7\x4b\x45\xb9\x99\x3a\xe6\xd9\x10\x0f\xc0\x25\x1d\xe2\ \x7a\xae\xce\xce\x4e\xec\x2b\x2b\x47\x47\x7b\x07\xc6\x8d\x19\x8b\ \x97\x57\xad\x42\x58\x68\x28\x6e\xb5\x84\x86\x86\x62\xe5\x4b\x2f\ \x61\xec\x98\x31\x68\xef\x68\x47\x59\x69\x29\x2c\x96\x4e\x78\xac\ \x72\x92\x0d\x8e\x5c\x17\x8e\x30\x00\x62\xd7\xe6\x99\x49\x70\x5f\ \x83\xd0\x7b\x68\x78\x78\xa8\x1b\x26\x5d\x4a\xc0\x83\xe7\x8b\x82\ \x67\x02\x38\x6e\xb2\xf4\xa1\x05\x8e\xe3\x60\x30\x18\x64\xed\xbc\ \x1a\xad\x0b\x5e\x7c\x02\x57\xd3\xd1\x6d\xff\x3a\x3b\x2d\xd8\x5f\ \x5e\x8e\xf6\xb6\x36\x8c\x1a\x3d\x0a\x6b\xd6\xac\xe9\x99\xab\xef\ \x0f\x12\x1e\x1e\x8e\x57\x5e\x7e\x05\xa3\x47\x8e\x42\x5b\x5b\x1b\ \x4a\x4b\x4a\xd1\xd9\xd9\xe9\x69\xe7\x5d\x36\x77\xbb\xdf\xd5\x56\ \x17\xdf\x81\x89\x0c\x4c\x70\x37\x95\x4e\xdb\xef\x72\x2e\x51\x84\ \x5e\x6f\xe8\x9e\x0f\x70\x8d\x04\xc0\x73\x28\x0c\x9a\x02\x10\x51\ \x8e\x84\x62\x10\x6a\x32\x81\x31\xf4\x3a\x25\x92\x1b\x64\x0a\x76\ \x4b\xae\xec\x74\xfc\x7a\x41\x77\x6d\xb4\xcd\x6a\xc1\x81\xfd\xfb\ \xd0\xde\xde\x86\x91\x23\x33\xf1\xea\xea\xfe\x05\xbe\x9b\x12\xbc\ \xf2\x0a\x32\x32\x32\xd1\xd6\xda\x86\xb2\xd2\xbd\x5d\x4a\xe0\xda\ \x5e\x51\xd1\x47\x10\x7d\x2a\xbb\x9c\x07\x0c\x26\xa3\xd1\x7d\x86\ \xd0\x39\x35\x3f\x31\xf8\x0a\x80\x5e\x0d\x33\x85\x86\x4a\x00\x97\ \x36\x4c\xb9\x2c\x05\xdc\x15\x74\xb8\x9c\xcf\x6a\xb5\xe0\xe0\xfe\ \x03\x68\x6b\x6d\x43\xc6\x88\x0c\xac\x7d\x75\x2d\xa2\xa2\xa2\xd0\ \x5f\x25\x32\x32\x12\x6b\x56\xaf\x46\x46\xc6\x08\xb4\xb6\xb6\x62\ \x5f\x59\x39\x2c\x96\x4e\x0d\x80\x7b\xeb\x3b\xf5\xcd\x60\x34\x7a\ \x98\x01\x8e\xb8\x02\x68\x58\xf6\xef\x55\x01\xee\x9f\x35\x6b\x38\ \x47\x14\x2d\x0d\x37\xd4\x56\xbd\x88\x0a\x76\xdc\x73\x76\xcf\x09\ \x38\x49\x9c\x25\x06\xc0\x66\xb7\xe3\xf0\xa1\x43\x68\x69\x6d\x45\ \x7a\x7a\x3a\xd6\xad\x5b\x87\xe8\xe8\x68\xf4\x77\x89\x8e\x8e\xc6\ \x9a\xd5\x6b\x30\x7c\xf8\x70\xb4\xb4\xb4\x60\x5f\xf9\x7e\xd8\xac\ \x56\x99\x94\xae\x47\xce\x5c\x32\xb7\x2c\xf6\x2e\x98\x75\x4d\x21\ \xc9\x24\x13\x5d\x6c\xbf\xeb\xe2\x9c\xd8\x9f\x3f\xf1\xf3\xcc\x80\ \x15\x80\x27\xca\xe9\x5e\xe9\xe3\x4a\x31\x4d\x4d\x4d\x68\x6a\x6e\ \xf6\x18\xc1\xea\x66\x40\xec\x1a\xe5\x9e\xa3\xc1\x75\xb3\xd9\x6c\ \x38\x7c\xf0\x20\x5a\x5a\x5a\x90\x36\x6c\x18\x5e\x5b\xb7\x0e\x31\ \x31\x31\xb8\x5d\x24\x26\x26\x06\x6b\x5f\x5d\x8b\xa1\xc3\x86\xa1\ \xb9\xb9\x19\xe5\xe5\xfb\x60\xb3\xd9\x3c\xfa\xc3\x1b\xed\x6b\x61\ \xd5\xd6\xd6\x56\xb4\xb4\xb6\x48\x9e\xc5\x70\x62\xc4\x83\x1f\x17\ \xb0\x02\x70\xc0\x18\xa9\xf7\xdf\xfd\xb9\xa5\xa5\x19\x0d\x0d\x0d\ \x10\x04\xc1\xdd\x79\x73\xa3\x79\x11\x4c\x25\xa9\x21\xf5\x21\xec\ \x36\x1b\x8e\x1c\x3c\x84\x96\xe6\x66\x0c\x49\x4d\xc5\xfa\xd7\x5e\ \xc3\xa0\x41\x83\xfa\x04\xa8\xaa\xaa\x2a\x54\x55\x55\xf5\xc9\xb9\ \x63\x63\x63\xb1\x76\xcd\xab\x18\x92\x9a\x8a\xe6\xa6\x26\xec\x2f\ \x2f\x87\xcd\x66\x73\xe9\x27\xa1\x6b\x93\x38\x86\x1e\x66\x91\xf5\ \xf4\x9f\x6b\x59\x10\x04\x34\x99\x9b\x9c\x8b\x45\x21\x49\x06\xf5\ \x26\xea\x52\x03\x57\x00\xa2\x04\xa9\x03\xe8\x9a\x10\xb2\x58\x2c\ \xb8\x51\x7f\xa3\x57\xc3\x99\x08\x48\x6e\x56\xea\x0d\x2b\x25\x3d\ \xec\x76\x3b\x2a\x0e\x1f\x41\x73\x73\x33\x52\x52\x52\xb1\x61\xfd\ \x06\xc4\xc7\xc7\x07\x1d\x1c\x51\x14\xb1\x7e\xfd\x7a\xfc\xf0\xe1\ \x87\xf1\xc3\x87\x1f\xc6\xfa\x0d\xeb\xdd\x7e\x9f\x20\x58\x12\x1f\ \x1f\x8f\xb5\xaf\xae\x45\x4a\x4a\x0a\x9a\x9a\x9a\xb0\x7f\xff\x3e\ \xd8\xed\x76\xcf\x10\x59\x94\xb1\xed\x8a\xcf\x4d\x30\xd8\x6d\x76\ \x34\x9a\xcd\xb0\xda\xac\x20\x09\x3b\x4b\xd6\x68\xa6\x04\xee\x04\ \x12\x25\x7a\x3c\xee\x25\xd1\x38\x51\x10\x9c\xbf\xa9\xdb\xda\xda\ \x03\x38\x64\xec\x7a\x8f\x75\x93\x99\xe1\x72\x08\x0e\x54\x56\x54\ \xa2\xa9\xb9\x19\x49\xc9\xc9\xd8\xb0\x7e\x3d\x12\x12\x12\x82\x0e\ \xca\xd5\xab\x57\xf1\xa3\x1f\xff\x18\xab\xd7\xac\x81\x20\x08\x10\ \x04\x01\xab\xd7\xac\xc1\x8f\x7e\xf2\x63\x5c\xbd\x7a\x35\xe8\xd7\ \x4b\x48\x48\xc0\xba\xb5\xeb\x90\x94\x9c\x8c\x26\x73\x13\x0e\x1e\ \x38\x08\xc1\x21\xc8\xe6\x40\x64\xfd\x03\xb7\x09\x25\x86\xf6\x8e\ \x36\x34\xb7\x34\x39\x15\x56\x86\xf6\x5d\x43\x41\x8e\xb8\x20\x28\ \x00\xc7\xc5\x7b\x50\x8c\xe7\x43\x0a\x00\x80\x8e\xce\x4e\x34\x9a\ \x1b\x61\xb5\x5a\x3d\xec\x3a\x93\xb5\x6f\xce\x91\xef\x70\x38\x50\ \x59\x51\x81\xa6\x26\x33\x92\x92\x12\xf1\xc6\xc6\x8d\x48\x4a\x4a\ \x0a\x3a\x18\x1f\x6c\xde\x8c\x07\xe7\xcc\x46\x45\x65\x05\x0c\x46\ \x03\xf2\x27\xe4\xa3\x60\x42\x3e\x8c\x06\x03\x2a\x2b\x2a\x30\x7b\ \xce\x1c\x6c\xde\xbc\x39\xe8\xd7\x4d\x4c\x4c\xc4\x6b\x6b\xd7\x21\ \x21\x21\x01\x8d\x0d\x0d\x38\xb8\xff\x00\x1c\x0e\x87\x7b\xbf\x80\ \x75\xbb\x7d\x3d\x7f\xa2\xcb\x27\x9b\xcd\x86\xa6\xe6\x66\x58\x2c\ \x96\x9e\x4c\xa1\xbb\x69\x76\xc7\xc4\xb9\x0f\x79\x55\x00\xaf\xa9\ \xe0\xb1\x59\x63\x17\x10\x10\xc7\xc9\x50\x8c\xdc\xc6\x18\x83\xd5\ \x66\x83\xc3\xe1\x00\xc7\x71\xe0\x88\x5c\xe6\xf8\x99\x7b\x3a\x18\ \x0c\x0e\x87\x80\xe3\x47\x8f\xc2\x6c\x36\x23\x21\x21\x01\x6f\x6c\ \x7c\x1d\x29\x29\x29\x41\x05\xa0\xa5\xa5\x05\x4b\x7e\xb3\x04\x1b\ \x36\xac\x87\xdd\x66\x43\x42\x42\x02\x72\xf3\x72\x11\x16\x16\x06\ \xa3\xc9\x84\xe4\xe4\x64\x74\x74\x76\xc0\x6c\x36\xe3\xb3\x9d\x3b\ \x51\x7d\xbe\x1a\x13\x8b\x8a\x82\x3a\xbb\x18\x11\x11\x81\xe2\xe2\ \x62\x7c\xb6\xf3\x33\xdc\xb8\x71\x03\x4d\x8d\x66\x24\x26\x26\x76\ \xf5\x0f\x24\x4b\xa6\x7a\xa3\x01\xc1\x21\xa0\xa3\xa3\xc3\x19\x4e\ \x4a\x40\xf7\x8a\x09\x0f\xc7\xbe\xb2\x7d\xab\x02\x62\x00\x02\xc5\ \xf7\x68\x94\x54\xc3\x54\xca\x76\xbb\x1d\xad\xad\x2d\x68\x6b\x6f\ \x87\x43\x10\x9c\x4e\x8c\x44\xe3\x05\x41\x40\xd5\xb1\xe3\x68\x6c\ \x34\x63\x70\xfc\x60\xbc\xbe\x61\xa3\xe2\x63\xda\xfe\xca\x81\x83\ \x07\xf1\xe0\xec\xd9\xd8\xb6\xed\x13\xf0\x3c\x8f\x31\x63\xc7\x22\ \x2b\x3b\xbb\x27\x5f\xcf\x18\x83\x4e\xa7\x43\xf6\xf8\x6c\x8c\x1d\ \x37\x06\x3a\x9e\xc7\x27\xdb\xb6\x61\xf6\x43\xb3\x71\xf0\xe0\xc1\ \xa0\xde\x4b\x4a\x4a\x0a\xd6\xad\x5d\x87\xb8\xf8\x38\xd4\x37\x34\ \xe0\xf0\xe1\xc3\x10\x44\xa1\x6b\xac\xbb\xfb\x46\x0e\xc1\x81\x8e\ \x8e\x4e\xb4\xb5\xb7\xc1\x21\x38\xb4\x01\x2e\xf5\x07\x40\xa1\x01\ \x33\xc0\xb8\xec\xac\x45\x44\x64\x24\x4d\x0c\xe0\xe9\x8c\x88\xa2\ \x33\xac\x63\xa2\x00\xe2\x38\x10\xe7\x5c\x4c\xca\x98\x88\x13\xc7\ \xab\xd0\xd8\xd8\x80\x41\x83\xe2\xf0\xc6\xeb\xaf\x63\x98\xf4\xf7\ \x01\x03\x10\x9b\xcd\x86\x95\x2b\x57\x62\xd9\xb3\xcb\xd0\xda\xda\ \x8a\xa8\xe8\x68\xe4\xe6\xe7\x22\xc6\x65\xed\x82\x74\x4d\x42\x44\ \x64\x04\x12\x92\x92\xd0\xda\xdc\x82\xfa\xfa\x7a\x6c\xf9\x68\x0b\ \x3a\x3a\x3a\x90\x9f\x9f\x1f\x94\xf5\x85\x00\x10\x15\x15\x85\x69\ \x53\xa7\xe1\xd3\x4f\xb7\xa3\xa1\xa1\x01\xcd\xcd\x2d\x48\x4a\x4c\ \xec\xb1\xe1\x82\x20\xc0\x6a\xb3\xc2\x6a\xb5\x7a\x2c\xf9\x92\x1f\ \x74\x92\x67\x04\xdc\xea\x49\x28\x2f\x2b\x7f\x3e\x40\x05\xc8\x5e\ \xa0\xac\x00\x72\x1e\x28\x5c\xd7\xab\xf7\x94\xbb\xbd\x7c\xc1\x21\ \x40\x10\x45\x9c\x3e\x75\x0a\x8d\x0d\x0d\x88\x8d\x89\xc1\x1b\x1b\ \x5f\x47\x7a\x7a\x7a\xd0\xc0\x3f\x77\xee\x1c\x1e\xfb\xc5\x2f\xf0\ \xe9\x8e\x4f\x01\x06\xa4\x0d\x1f\x8e\x31\x63\x46\x2b\x2e\x15\x63\ \x92\x19\xbe\xa4\xe4\x24\x10\x71\x68\x6c\x34\xe3\x68\x65\x25\xf6\ \xec\xd9\x83\xfc\xfc\xfc\xa0\xe5\x22\xa2\xa3\xa3\x31\x65\xca\x14\ \x6c\xdf\xbe\x1d\x0d\x8d\x0d\x68\x69\x6e\x41\x6c\x5c\x2c\x6c\x36\ \x1b\x1c\x0e\x7b\x0f\xf0\x52\xc0\x95\x06\x99\xca\x66\x2d\xdf\xab\ \xae\x00\xde\x4d\x80\x46\x8d\x93\x4e\x48\x78\x84\x24\x5d\xfb\x0a\ \xa2\x80\x93\x55\x55\xb8\x7e\xed\x1a\x22\x23\x22\xb1\x61\xc3\x06\ \x8c\x18\x31\x22\x28\x1d\xcb\x18\xc3\x3f\xde\xfe\x07\xe6\x7c\xf7\ \x21\x9c\x3e\x7d\x0a\x26\x93\x11\x79\x05\x79\x18\x9a\x36\xac\x27\ \xfa\x90\x5f\xa3\xe0\x4e\xbf\x04\x20\x6d\x78\x1a\x0a\x0a\x0b\x60\ \x0a\x35\xe1\xcc\x99\x33\xf8\xee\xff\xfe\x2e\xde\xfe\xe7\xdb\xb2\ \x4b\xdb\xfd\x91\xf4\xf4\x74\xac\x5d\xbb\x16\x91\x11\x91\xb8\x5a\ \x7b\x15\x95\x15\x95\x72\x4b\xbd\x55\x07\x99\xb7\x32\xa7\xe1\x49\ \x28\xaf\x0c\x90\x95\x93\xbd\x80\x20\xcf\x00\xae\xa0\xcb\xd0\x8f\ \x47\x23\x00\xe0\xec\x17\x67\x61\x6e\x68\x40\x74\x54\x14\xfe\xf2\ \x97\x37\x30\x6a\xe4\xa8\xa0\x74\x68\x7d\x7d\x3d\xe6\xce\x9d\x8b\ \xb7\xfe\xf6\x16\x04\x87\x80\xa4\xe4\x24\x64\x65\x67\xc1\x68\x32\ \xca\x0c\x75\xf7\x35\x08\xa4\xb0\x0c\xc1\x60\x30\x20\xf9\x8e\x64\ \xd8\xac\x56\x98\xcd\x66\x94\x94\x94\xa2\xea\x44\x15\x8a\x0a\x8b\ \x10\x1a\x84\xa9\xe8\x41\x83\x06\x61\xd2\xa4\x49\xd8\xfe\xc9\x76\ \x34\x36\x36\xa2\xa3\xa3\x03\x09\x09\x83\x55\xfa\x51\xbd\xcc\xb9\ \x4f\x09\x03\x04\x6b\x59\x69\x59\x60\x0c\xc0\x81\x3a\x95\x68\x5d\ \x5d\x03\x3d\xd9\xe3\xdc\x17\x67\xd1\xd8\xd0\x80\x88\xc8\x48\xbc\ \xf1\xfa\x1b\x18\x3d\x6a\x74\x50\xc0\xdf\xb9\x73\x27\x1e\xf8\xce\ \x03\x28\x29\x2d\x81\x2e\x24\x04\x63\xb3\xc7\x61\xe4\xe8\x51\x2e\ \x76\xdb\x7d\x4d\x31\xa9\x2c\x3a\x91\x96\x79\x9e\xc7\xe8\xb1\x63\ \x90\x9d\x93\x8d\x90\x90\x10\x94\x96\x96\x62\xd6\xec\x07\xb1\x6b\ \xd7\xae\xa0\xdc\xfb\xa8\x91\xa3\xb0\x6e\xed\x3a\x84\x87\x87\xa3\ \xee\x7a\x1d\x4e\x54\x9d\x54\xa0\x7e\xf9\xcd\xf5\xf1\x3c\x78\x9a\ \x07\x47\xc0\x0c\x90\x9d\x33\xfe\x31\x22\x8a\xf1\xc7\x01\xec\x6e\ \x08\x00\x54\x9f\x3d\x87\xfa\xfa\x7a\x44\x44\x44\xe0\xf5\x0d\x1b\ \x91\x95\x95\x15\x70\xe7\x59\x2c\x16\x3c\xbb\xfc\x59\xac\x78\xe1\ \x4f\xe8\xb4\x58\x10\x1b\x1b\x83\xf1\x3d\x2f\x94\x90\x5b\x61\x03\ \x1f\xa0\x77\x2f\x84\x85\x85\x21\x31\x29\x11\x6d\x6d\x6d\x30\x37\ \x36\x62\xeb\xc7\x5b\x51\x5f\x5f\x8f\xa2\xa2\xa2\x80\x9f\x41\x88\ \x8f\x8f\x47\x51\x51\x11\x3e\xd9\xfe\x09\xcc\x8d\x66\x58\x2c\x16\ \x0c\x1e\x1c\x0f\x22\x4e\x96\xd6\x95\x4d\x83\x47\xa2\xee\xf2\xde\ \x92\xbd\xaf\x04\xea\x03\xd4\x2a\xd1\xba\xb7\x50\xb0\x7b\xab\x3e\ \x77\x0e\x37\x6e\xdc\x40\x58\x58\x18\xd6\xaf\x7b\x0d\xd9\xd9\xd9\ \x41\xc9\xe3\xcf\x7a\xf0\x41\xfc\xf3\x9d\x77\x40\x44\x18\x9e\x3e\ \x1c\x59\xd9\xd9\x08\xd1\x85\xa8\xa7\x59\x7d\x2a\xbb\xfb\x07\x7a\ \xbd\x1e\x39\xb9\x39\x18\x91\x99\x01\x8e\xe3\xf0\xce\xbf\xde\xc1\ \xec\x87\x66\xa3\xea\x44\xe0\xf3\x09\xe3\xc6\x8d\xc3\xea\xd5\xab\ \x11\x16\x16\x86\xda\xab\xb5\x38\x75\xf2\x94\x2c\xad\x7b\x66\x62\ \xdd\xcb\x6e\x2c\xc0\x71\xd7\x02\x66\x80\xf1\xb9\xb9\xf7\x12\x61\ \x9c\xaa\xc6\xa9\x6c\xd5\x67\xcf\xa1\xee\x7a\x1d\x4c\x46\x13\xd6\ \xaf\x5f\x8f\xfc\xbc\xbc\x80\x3a\x4a\x10\x04\x6c\xd8\xb0\x01\xf3\ \x17\xcc\x47\x63\x63\x23\xc2\xc2\xc3\x90\x35\x3e\x0b\x71\x71\x83\ \x7c\x1d\xdb\x50\x5e\xb8\xa8\xbe\x67\x74\x74\x14\xe2\xe2\xe3\xd0\ \xdc\xd4\x8c\xba\xba\x3a\x7c\xf0\xef\x0f\xc0\xf3\x3c\x72\x72\x72\ \x34\x3d\x82\xae\x96\x31\xcc\xcd\xcd\xc5\x27\x9f\x6c\x83\xd9\x6c\ \x86\xd5\x6a\xc5\xe0\x84\x78\x78\xfe\x06\x83\x72\xd9\x5d\x31\xd8\ \xa1\xd2\x3d\x7b\x37\x05\xa4\x00\xb9\x79\xb9\x13\x41\x98\xac\x15\ \x70\x57\x16\xb8\x50\x5d\x8d\x6b\xb5\xd7\x61\x34\x19\xf1\xda\xba\ \x75\x98\x30\x61\x42\xc0\x79\xfc\x5f\x3e\xfe\x38\xde\x7b\xff\x3d\ \x30\xc6\x90\x92\x7a\x07\xc6\x8c\x1d\xe3\x7c\x4e\x4f\x25\x2f\xae\ \x5e\x86\x67\xbd\x86\x34\x6b\xb7\x83\x28\x8a\x22\xcc\x66\x33\xf6\ \x1f\xd8\x8f\x03\x07\x0f\xa0\xb0\xa8\xb0\xe7\x9d\x46\xfe\x48\x52\ \x52\x12\x72\x72\x72\xf1\xc9\xf6\xed\x30\x37\x9a\x61\xb7\xdb\x31\ \x78\xf0\x60\xef\x7d\x2f\x33\x23\x08\xe2\x3e\x2b\xdd\x53\xba\x35\ \x20\x13\x20\x82\x5d\xf1\x25\x03\xd8\xfd\x90\xc2\xd5\x9a\xab\xa8\ \xad\xbd\x06\x93\xc9\x88\x57\x57\xaf\x41\x61\x61\x61\x40\xe0\x6f\ \xde\xb2\x19\xdf\xf9\xce\x77\x70\xe4\xc8\x61\x18\x0c\x06\x64\xe5\ \x64\x63\x44\xc6\x08\xf0\x3c\xef\xa5\x33\x48\x6d\xba\x54\x1e\x70\ \x8d\x59\x37\x9e\xe7\x91\x39\x32\x13\x79\xf9\x79\x30\x1a\x0d\xa8\ \xa8\x38\x82\xd9\xb3\x67\xe3\xc3\x0f\x03\x7b\x51\x68\x41\x41\x01\ \x56\xbe\xb4\x12\x26\x93\x11\x97\x2f\x5d\x46\xf5\xb9\x6a\xef\x6d\ \x92\x99\xa9\xe5\x80\xeb\x01\x9b\x80\xdc\xdc\xbc\x3b\x88\xa3\x39\ \xea\x5e\xa8\xa7\x79\xf8\xfc\xcc\x19\x08\x0e\x01\xab\x56\xae\xc2\ \xb4\x69\xd3\xfc\xee\x8c\xd6\xd6\x56\x2c\x59\xb2\x04\xaf\xae\x7d\ \x15\x36\x9b\x0d\x71\xf1\xf1\xc8\xca\xce\x42\x78\x78\xb8\x4a\x67\ \x78\x8b\xa3\xc9\x2f\xc0\x95\xa2\x9f\xd0\xd0\x50\x24\xdf\x91\x8c\ \xce\xce\x4e\x98\xcd\x66\xec\xf8\x6c\x07\x2e\x5c\xb8\x80\x89\x45\ \x13\xfd\x9e\x4f\x48\x49\x49\x41\x46\x46\x06\x3e\xfe\x78\x1b\x3a\ \x3a\xda\x91\x36\x3c\xcd\xe3\xa7\x78\x94\xd8\xad\xa7\x2d\x3c\xbf\ \x7a\xcf\xae\x3d\xa7\x02\x5b\x11\x04\x54\x79\x05\x5c\x46\x3b\x8d\ \x46\x23\x40\x84\xf7\xde\x7f\xbf\xe7\xa5\x08\xbe\xca\xc1\x43\x07\ \xf1\xc0\x77\x1e\xc0\x47\x5b\x3f\x02\xaf\xd3\x61\xd4\xe8\x51\x18\ \x97\x35\x16\x7a\xbd\x1e\x6a\x6b\x14\x64\x69\x5d\x66\xba\x34\xc0\ \x34\xab\x5b\xd9\xe9\x20\x8e\xc7\xb8\xac\x71\xd0\xe9\x74\xd8\xb6\ \xed\x63\xcc\x9e\x33\x1b\x87\x0f\x1f\xf2\x7b\xcd\xc2\xe6\xcd\x9b\ \x01\x02\x22\x22\x23\x55\x95\x98\x53\x60\x32\x1d\x1c\x95\x01\x33\ \x40\x45\x45\x45\x63\x5e\x7e\xde\xe3\x44\x30\xc9\x7b\x9d\xf2\x9d\ \x1c\x1e\x19\x81\x1b\x75\x37\x70\xf6\xec\x59\x34\x34\x34\xa0\xb8\ \xb8\x58\xb3\x83\x64\xb7\xdb\xb1\x72\xd5\x4a\x3c\xf3\xbb\x67\x9c\ \x79\xfc\xa8\x28\x64\xe7\x8e\x47\x4c\x6c\x8c\xb2\x1d\xf7\x46\xeb\ \x72\xd3\xa5\x81\xa5\x59\x65\xc3\xb3\xc8\xc8\x08\x24\x26\x25\xa0\ \xa5\xb9\x05\xf5\xf5\x0d\xd8\xb2\x65\x0b\x2c\x56\x0b\xf2\xf3\xb4\ \xcf\x27\x30\xc6\xf0\xdc\xf3\xcf\xe1\xa3\x8f\x3e\x44\x88\x2e\x04\ \x39\x79\xe3\x61\x34\x18\x7a\xda\xc4\xa9\x98\x2e\x97\xad\xe9\x99\ \xa5\xcb\x17\x04\xac\x00\x00\x90\x57\x50\x30\x93\x08\xe9\x72\xbf\ \x03\xac\xd4\x81\x7a\x83\x1e\x51\xd1\x51\xb8\x51\x77\x03\x55\x55\ \x27\x60\xb7\xdb\x30\x69\xe2\x24\xaf\xd7\xaa\xae\xae\xc6\xcf\x1f\ \x7b\x0c\x9f\x6c\xff\x04\x00\x21\x2d\x6d\x18\x46\x8d\x19\x0d\x7d\ \x88\x5e\xdd\x8e\x07\x99\xd6\xb5\xa4\x59\x95\xc2\x33\xbd\x5e\x8f\ \x94\x94\x14\x10\x00\xb3\xd9\x8c\xca\xca\x0a\x94\x96\xee\x45\x5e\ \x5e\x9e\xa6\xf9\x84\x57\x5e\x79\x19\x7f\xff\xc7\xdf\xc1\xf3\x3c\ \x8a\x26\x16\x22\x3a\x3a\x4a\xdd\xf1\x96\x2e\xd8\x25\x80\x38\xda\ \xb7\x7b\xe7\x9e\xbf\x06\x45\x01\x0a\x0a\xf2\x33\x40\x54\xec\x8d\ \xf6\xa5\x9d\x61\x34\x1a\x11\x1e\x1e\x86\xfa\x1b\x0d\x38\x72\xe4\ \x30\xc2\xc3\xc2\x91\x93\x93\xa3\xa8\xf5\xff\x7c\xe7\x1d\xfc\xfa\ \xbf\x7e\x8d\x6b\xd7\x6a\x11\x6a\x32\x21\x7b\x7c\x36\x12\x93\x12\ \x55\x47\x27\x02\x00\x3c\xc0\x34\xab\xd7\x70\x6c\xd0\xa0\x41\x88\ \x8b\x8f\x43\x63\x43\x23\x6a\x6b\x6b\xf1\xef\x0f\xfe\x8d\xa8\xa8\ \x28\x8c\x19\x3d\x46\x91\x0d\xdf\x7a\xeb\x2d\xbc\xba\xf6\x55\xf0\ \x1c\x8f\xbc\xfc\x5c\xc4\xc5\xc7\xa9\x47\x34\x50\x30\xc7\xe0\xde\ \xdf\xb5\x73\xf7\xb6\xe0\x28\x40\x61\x41\x18\x40\xff\x47\x55\xe3\ \x3c\x7c\x04\x67\x39\x2c\x34\x14\x46\x93\x11\xf5\xf5\x0d\x28\x2b\ \x2f\x43\x6a\x6a\x2a\x46\x66\x8e\x74\x3b\x7f\x43\x43\x03\xe6\x3e\ \x35\x17\x6f\xbe\xf9\x26\x1c\x0e\x87\x33\x8f\x3f\x3e\x0b\xa6\xd0\ \x50\xaf\x8d\xe7\x02\xb0\xe3\x01\xa6\x59\x35\x6d\x26\x93\x09\x29\ \xa9\x29\xb0\xd9\x9c\xf3\x09\xa5\xa5\x25\x38\x75\xf2\x24\x0a\x8b\ \x0a\x11\x6a\x72\x9f\x4f\xf8\xe8\xa3\x8f\xf0\xdc\x73\xcb\x01\x22\ \x8c\xcf\xcd\x76\xce\x4a\xca\x9a\x36\x0d\xf7\xc2\xe1\xc5\x5d\x9f\ \xed\x3e\x19\x14\x05\xc8\xcf\xcb\x37\x13\x47\x4f\x12\x11\x27\x47\ \x9b\x9c\x97\x78\x3b\x22\x3c\x1c\x21\x21\x7a\x34\x34\x34\x62\xe7\ \xce\x9d\x18\x35\x6a\x14\xd2\xd2\xd2\x00\x00\xbb\x77\xef\xc6\x23\ \x8f\x3e\x82\xd3\xa7\x4f\x23\x24\x24\x04\x63\xc6\x8d\xc5\xb0\x61\ \x43\x9d\xbf\x88\xe5\xc5\x8e\x6b\x4d\x49\x7b\xdf\xc7\xaf\x34\xab\ \xe6\x90\x93\xe7\x79\x24\x24\x26\x20\x32\x22\x02\x0d\xf5\x8d\x38\ \x7f\xe1\x02\x3e\xfa\xf0\x43\xa4\xa5\xa5\x61\xe8\xd0\xa1\xce\x7e\ \xd8\xb3\x1b\x8b\x16\x2d\x04\x63\x0c\x63\xc7\x8d\xc5\xd0\xa1\x43\ \xd4\xd3\xec\x2a\x0c\xc4\x11\x67\x37\xe8\x2c\x8f\x7e\xfa\xe9\x5e\ \xaf\x3f\x24\xad\x39\x6d\xf5\xe8\x63\x8f\xee\x62\x40\xb1\xcb\x8b\ \x0b\x7a\xce\xa0\xb5\x7c\xbe\xfa\x3c\x2e\x5e\xb8\xd0\xf3\x68\xf5\ \xae\x5d\xbb\xf0\xce\xa6\x4d\x00\x63\x88\x89\x8d\xc1\xe8\x31\xa3\ \x9d\x4f\xb9\x48\xa6\xa3\xa1\x5a\x76\x6f\x8a\xb7\x72\xef\x77\xe4\ \xf1\x0a\x3a\x6f\xaf\x80\xef\xf9\x4e\xb5\x0c\xc8\xbd\x2a\x87\x5c\ \xe6\x2f\x8e\x1d\x3d\x8e\xfa\xfa\x7a\x10\x11\x66\xcd\x7a\x10\xd3\ \xa7\x4f\xc7\xbc\x79\xf3\x60\xb1\x58\x90\x91\x31\x02\x23\x47\x67\ \xaa\xdf\x4f\x4f\xbf\x7a\xb6\xa9\x7b\x7e\xec\xe9\x25\x4b\xef\xd2\ \x82\xab\x66\x05\x78\xe4\x97\x8f\x3c\x41\x8c\x7b\x49\xfa\x26\x6c\ \xdf\xca\xc0\xe7\x67\xbe\x40\x4d\x4d\x4d\xcf\x77\xc4\x71\x48\x1f\ \x91\x8e\x21\x43\x52\x35\x01\x2e\xd3\x58\x9f\xca\xe4\x33\xa0\xfe\ \x01\xee\x76\x19\x99\x57\xcc\x9c\x3f\x7f\x01\xa7\x4f\x9d\xe9\x5d\ \x8e\x4e\xc0\xb0\xa1\x43\x91\x95\x3d\x4e\x16\x60\x2f\x80\x4b\xdf\ \x45\x3c\xf7\x37\x8b\x7f\xfb\x82\x16\x5c\x35\x4f\x63\xe9\x49\xff\ \xae\x03\xc2\x9f\xbb\xef\x42\xfa\x46\x4d\xf9\xb2\x67\xe3\x33\x47\ \x66\x80\xd7\xf1\xb8\x76\xb5\x16\xa1\xa1\xa1\x18\x39\x7a\xa4\x47\ \xea\x54\x7e\x94\xdf\x42\xc0\xdd\x09\x4d\x1e\x54\x92\xbe\xd3\x50\ \xbd\x3c\x3c\x3d\x0d\xf1\xf1\x71\xf8\xe2\xf3\xb3\x68\x6b\x6b\x73\ \xce\x69\x64\x8f\xeb\x6d\xbb\x2c\xe0\x72\xcc\xd6\x75\x97\xe4\x9a\ \xdc\x61\x9a\x53\x91\x3e\xcd\x5c\xfc\xe2\xf1\x5f\xec\x67\x40\xa1\ \x32\xcd\x6b\x6b\xbc\x36\x5a\x27\xbf\x68\x5e\x16\x70\x1f\x68\x5e\ \x9e\xf6\xd5\x69\x5d\x9b\x02\xf8\x76\x7d\x65\xd3\xa5\xde\x0f\x04\ \x9c\x58\xb4\xf0\xe9\x71\x5a\x31\xf5\x69\x22\x9b\x88\xde\x85\x9b\ \x02\x04\x13\x70\x6d\x76\xdb\x57\x3b\x7e\xd3\x68\x9d\xe4\x5f\x6d\ \xab\x46\xe3\x3e\xd2\xba\xa6\x32\x03\xd6\xfb\x82\xa9\x4f\x0a\xa0\ \xe3\x74\x6f\x3a\x98\xe3\xf7\x20\xd2\xab\x35\x5e\xde\x6e\xf7\x33\ \x5a\xf7\x06\xb8\x9f\xa3\xfc\x66\x03\x2e\x29\x77\x1a\x43\x1c\x6f\ \xfa\x34\xa8\x7d\xcd\x51\x3f\xfe\xab\xc7\xff\x0a\xe0\x07\xc1\xa1\ \x75\xd2\x44\xfb\x7e\x01\xae\x4a\xb3\xc1\xb1\xe3\x5a\x00\x57\xa3\ \x75\x6f\x80\xfa\x62\xfe\xba\xfa\xfb\xad\x05\xf3\x16\x7f\xbf\xcf\ \x18\xa0\xcb\xc3\x78\x89\x18\xfd\x20\xd8\xe1\x19\x29\xbe\x32\xd5\ \x5f\xbb\x4d\x41\xb1\xe3\xaa\xb4\xee\xad\x1c\x90\x3f\xe3\x7d\xd4\ \x7b\x30\xad\xc8\xd6\xf9\x0a\xa7\x5f\xcb\x57\x9e\xf8\xf5\x13\x3b\ \x89\xa3\x19\x6a\x80\xfb\x32\xea\xe5\x7e\x43\xf1\x96\x84\x67\x72\ \x6f\x04\xbd\xf5\xb4\xae\x1a\x12\xbb\xc8\xa1\x05\xf3\x16\xfb\xbc\ \xe2\xc6\xaf\xd5\x8c\x1c\xcf\xad\x62\x8c\xcd\xe8\x77\x76\xfc\x26\ \xd1\x7a\x5f\x02\x2e\x43\xeb\x5a\x99\xf9\x69\x7f\xb0\xf4\x4b\x01\ \xae\x5c\xbc\xf2\x41\xca\xb0\x94\xe3\x04\x64\x69\xa5\x37\x4d\x80\ \xfb\x44\xb3\x9e\x3d\x4e\x41\x02\xdc\x97\xf0\x2c\x10\xbb\x2d\x77\ \x0e\xbf\xd6\x14\x12\xca\x16\xcc\x5d\xec\xd7\xeb\xe3\xfc\x7a\x9b\ \xc2\xa6\x4d\x9b\x04\x8e\xb8\x27\x3d\x16\x64\xa8\xcc\x9e\xf9\xb4\ \x9a\x55\xb1\xac\x61\x15\x8c\xd7\xf5\x80\x5e\x66\xf2\x64\xee\x91\ \x93\x9d\x31\xe3\x5b\x4e\x00\x00\x05\x60\x49\x44\x41\x54\x21\x84\ \xc2\x03\x30\xbe\x95\xa5\x4f\x54\xf9\x23\x24\x62\x09\xfc\x94\x80\ \x5e\x1e\xfd\xe4\xbc\x27\xb7\x10\xe1\xfe\x5b\x9a\x66\xbd\x3d\xc2\ \xb3\xc0\x46\xb8\xba\xec\x5c\x30\x6f\xf1\x5d\xfe\x1e\x1c\xd8\x13\ \x0d\x3c\xe6\x12\xa3\xfb\xba\xcf\xd3\x5f\xd2\xac\xfe\x01\xee\x9f\ \x27\xae\x31\x3c\xeb\x2b\xb1\xf3\x84\x5f\x05\x72\x02\x2e\x90\x83\ \x5f\x78\xee\x85\xd3\x04\xac\xf5\x77\xba\x54\x8d\xd6\x39\x1f\x97\ \x65\x69\x33\x21\xf2\x6b\x16\xd4\x69\x5d\xcb\x73\x8f\xca\xb4\xde\ \x97\xc2\x18\xfe\xf8\xd4\x53\x8b\x8f\x05\x72\x8e\x80\xdf\xab\x12\ \x6a\xb4\x2e\xee\xb4\x99\xbe\x09\x60\xd8\x97\x3d\xcd\x7a\x13\x69\ \x5d\x8b\x9c\xb1\x76\xda\x97\x05\x7a\x92\xa0\xdc\xf9\xfc\xc5\xf3\ \xa7\x13\xf0\x19\x00\xfe\x4b\x9c\x66\xbd\xd5\x80\xbb\x0d\x7e\x0e\ \x54\x3c\x6f\xde\xa2\x92\x40\x4f\x14\x94\x9f\xbd\xd8\x5b\xb2\xf7\ \xe2\xb4\x19\xd3\x4d\x04\x4c\x55\x5b\xa1\xcb\xf9\xb1\xda\x56\x7d\ \x31\xa4\x32\xad\x7b\x5b\xd9\xe3\xd3\x7a\xc0\x20\x78\xea\x41\x45\ \x9f\x68\xf5\x82\x79\x8b\xd6\x06\xe3\x5c\x41\x7b\xb5\x96\x81\x37\ \xfc\xd6\x2e\x58\xef\x61\x40\x3e\x69\x4a\xab\xde\x66\x69\xd6\x7e\ \x22\x04\x94\x5b\xda\x6d\x4f\x06\xf1\x7c\xc1\x93\x85\x4b\x17\x8e\ \xe2\x45\xda\x07\x20\x4a\x5b\xb8\x36\x40\xeb\x3e\xc2\x55\x47\x8c\ \xcf\x9f\x3f\x7f\xfe\x95\x7e\xa9\x00\x00\xb0\x64\xe9\x92\xbb\x88\ \xb1\xad\x00\xf4\x5f\x9a\x34\x6b\xff\x10\x07\x07\xba\x7b\xde\xbc\ \x45\xbb\x83\x79\x52\x3e\xd8\x77\xb9\x67\xd7\x9e\xf3\x33\xee\x2a\ \xae\x25\xd0\x7f\xf8\xbe\x9a\x55\xdd\x8e\xfb\x16\x9e\x79\x86\x6b\ \x37\x2b\x3c\xeb\x13\xbb\x0f\xcc\x5d\x30\x6f\xf1\xdb\xc1\x3e\x2f\ \xdf\x17\x37\xbb\x7b\xd7\x9e\x8a\x19\x33\x8a\x8d\xc4\xd1\xd4\xdb\ \x3d\xcd\xda\x2f\xc0\x27\x3c\xb7\x70\xde\xe2\x67\xfb\xc8\xa7\xe8\ \xb3\x24\x05\x3d\xf3\xfb\xdf\xfe\x05\xc4\x7e\x30\x60\xc7\x03\xe9\ \x47\x5a\xb5\x70\xfe\xa2\x27\xfa\xea\xfc\x5c\x5f\x9d\x98\x08\x6c\ \xcc\xa8\x93\x3f\xe2\x88\x36\xf8\xfb\xc8\xf6\xed\x16\x9e\xf5\x01\ \xfa\x1b\x17\xcc\x5b\xf8\xab\xbe\xbc\x04\xf5\x7d\x1b\x18\x2d\x5b\ \xfe\xcc\x4a\x00\x8f\xfb\x33\x3d\xfa\x55\x18\xe5\xf2\xb4\xcf\xde\ \x4c\x1f\x9a\xf9\xff\xe6\xcc\x99\x23\xdc\xd6\x0a\xd0\x2d\xcb\x96\ \x2f\x7d\x0e\xa0\x05\x03\xb4\xae\xcd\xe6\x2f\x98\xbb\x68\x31\x11\ \xb1\xbe\xbe\xd6\x4d\xed\xdd\x65\xcb\x7f\xf7\x2b\x22\x5a\x41\xe4\ \x9a\x80\x1a\x00\xdc\x45\xec\x0c\x78\x74\xe1\xbc\xc5\xaf\xdf\xc4\ \xc4\xd2\xcd\x95\xe5\x7f\x5c\x5e\x0c\x51\x7c\x87\x08\x83\x07\x00\ \x77\x93\x66\x62\x98\x35\x7f\xfe\xe2\x1d\x37\x35\xb5\x74\x2b\x5a\ \xba\xec\xc5\x65\x77\xe8\x1c\xf4\x2f\x40\xdb\xbb\xed\xbe\x02\x72\ \x44\xe4\xe8\x7b\x8b\xe6\x2e\x3a\x7d\xb3\x2f\x7c\xcb\x86\xdf\xaa\ \x55\xab\x0c\x1d\x96\xd6\x15\x00\x7e\x79\x2b\xef\xe3\x16\x8b\x00\ \xb0\x15\x31\x51\xf1\x4f\x3f\xf2\xc8\x23\xf6\x5b\x71\x03\xb7\xbc\ \xe3\xff\xf8\xc7\xe5\xd3\x44\xb0\xf5\x00\x46\x7e\xa5\x1c\x3d\xe0\ \x22\x0f\xfa\x7e\x30\xa6\x74\x03\x11\xfe\x56\x77\xc4\xf6\xed\x3b\ \x2e\x4d\x9d\x32\x7d\x03\xaf\xe3\x89\x08\x93\xfa\xc3\x3d\xf5\xb1\ \x38\x18\x61\xad\xd5\x68\x7f\x70\xf1\x7f\xfd\xe6\x8b\x5b\x7d\x33\ \xfd\x8a\x7a\x57\xac\x78\x36\x5b\x60\x78\x11\xc0\xcc\x2f\x23\xf2\ \x04\xf6\xb1\xc0\x71\x4f\x2e\x9a\xbb\xe8\x64\xff\xb9\xa7\x7e\x28\ \x7f\xf8\xc3\xb3\x33\x19\x87\xdf\x81\x61\xf2\x97\x03\x78\x54\x89\ \xe0\x9e\x5a\x38\x6f\xe1\xc7\xfd\xf0\xde\xfa\xaf\x3c\xbf\xe2\xd9\ \xfb\xc1\xf0\x0c\x80\xfc\xdb\xd4\xce\x97\x00\x6c\xa5\xb5\xc3\xf1\ \xde\xd2\xa5\x4b\xc5\x7e\xaa\x9c\xfd\x5f\x9e\x7f\x7e\xd9\x54\xc6\ \xe3\x67\xc4\xe8\x41\x00\xa6\x7e\x7e\xbb\x36\x00\xef\x30\x8e\x7b\ \x69\xe1\xdc\x85\x87\x6f\x03\x76\xba\x7d\xe4\xc5\x17\x97\xc6\xda\ \x1c\x21\xdf\x07\xf0\x33\x00\x63\xfa\xd7\x60\xc7\x21\xc6\xf0\xae\ \xa8\xc7\xff\x5f\xfc\xeb\xc5\xb5\xb7\x91\x79\xba\x3d\x65\xf9\x9f\ \x96\x8f\x22\x81\xdd\x4f\x44\xdf\x00\xd8\x54\x00\xfa\x9b\x1d\xc3\ \x33\xa0\x94\x80\x77\x1d\x3c\x7b\x7f\xc9\x93\x4b\x2e\xdf\xa6\xfe\ \xc9\x2d\xbf\x2e\xb9\x94\x5d\x3f\x73\x32\x75\x72\xc7\xe0\x9e\xff\ \xb8\x27\x72\xc2\xf8\xbc\xbb\x8c\x06\xd3\x24\x9e\xe7\xb3\x39\x8e\ \xcb\x22\x42\x54\x90\x07\x79\x93\x20\x8a\x87\x1d\x76\xc7\x21\x8b\ \xd5\x72\xe8\xfc\xd9\xcf\x0f\xbd\xfd\xf6\xfb\xf5\x12\x16\x60\x0a\ \x65\x06\x40\x54\xf8\x5e\x7a\xcc\x6d\xa5\x00\x52\xe0\x5c\x41\x23\ \xc9\xf7\x70\xf9\x4f\x92\xcf\x72\x1b\x54\xca\x50\xf8\xae\xe7\xfb\ \xfb\xef\xbf\x2f\x75\x48\xda\xb0\xb1\x51\x91\x91\x23\x74\x21\x21\ \xf1\x3a\x9e\x8f\xe3\x78\x3e\x9e\x27\x2e\x96\x78\x1a\x24\x9d\x83\ \x04\x00\xc6\xc4\x76\x41\x10\x6b\x1d\x76\x47\xad\xc3\x21\x5c\xb7\ \xda\xac\x57\x2d\x1d\x9d\x57\x6b\x6a\xae\x7c\xbe\x75\xeb\xf6\xf3\ \x16\x8b\xc5\x1b\xc8\x4a\x00\xcb\x95\xa5\x75\xa2\xe4\xb3\xeb\x77\ \xd2\x4d\x54\xb8\x76\xd0\x15\xc0\x75\x34\x72\x0a\x40\x73\x5e\x14\ \x80\xf3\x52\xf6\x77\x53\x52\x10\xa8\xb0\x86\x5a\xdb\xd5\xde\x12\ \xa3\x05\x64\xc8\x8c\x72\x5f\x36\xd1\x87\xef\x45\x8d\x9f\x45\x6f\ \x0a\x22\xed\x04\x4e\x05\x54\x2d\x4a\xa0\xf4\xdf\x17\xa5\xe1\x34\ \x32\x8a\x56\x05\x51\x64\x09\x05\x67\x4e\x6d\x74\x7b\x03\x58\x0b\ \x88\xa2\x86\x3a\x51\x63\xbd\x37\xf0\xd5\x8e\xf7\x18\xe1\xe4\xe7\ \x7f\x7f\x8f\xf5\xf7\xfc\xbe\x9e\x53\xfa\xbd\xab\x29\x82\x17\x9b\ \xcd\x7c\xec\x7c\x51\x23\x18\xbe\xfe\xf7\xb6\x8f\xdf\xe7\xe7\x15\ \xec\x79\x30\xfe\x43\x83\xed\xd6\x72\x9c\x2f\xd4\x4e\x2a\x4e\x99\ \x74\xf4\xaa\x75\xae\xa0\x00\xa0\xd6\x91\xea\x8d\x11\x98\x82\x7f\ \x00\x05\x7f\x41\xf4\x72\x3e\xf8\xfb\x9f\x14\xcc\x82\xd6\x91\xa5\ \x95\xea\xfd\xa1\xff\x40\xfc\x05\x78\x89\x20\xbc\xc5\xf4\xd0\xe8\ \xd8\xf9\x63\xdb\xfd\xb1\xe9\xfe\xd4\xab\x7d\xe7\x57\x14\x40\x3e\ \x00\xeb\x0d\x3c\xce\x47\x30\x39\x2f\x51\x81\x16\xa6\xf0\xa5\xbd\ \x4a\x0e\xa1\xda\x28\x85\x82\x67\x0f\xdc\x3c\x47\x50\x94\xb9\x87\ \x9b\x9e\x07\x90\x02\xc2\xc9\x84\x83\xfe\x82\x0d\xf8\xe7\xf5\xfb\ \xdb\x4e\xe6\x43\x54\xe0\x2d\x2c\xd4\xaa\x14\x50\x00\x17\xbe\x00\ \xfb\x65\xc8\x04\xfa\xe2\x13\xf8\x32\xea\xc9\xcf\xd1\xaf\x04\xbe\ \x16\x7b\x7b\x4b\x92\x3c\x5a\xe4\x7f\x00\x52\xb4\x31\x7d\xdd\x64\ \x34\xb5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0c\x0e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2a\x34\x2e\x01\x86\x49\x00\x00\x0b\x8e\x49\x44\x41\x54\x68\ \xde\xe5\x9a\x79\x6c\x5c\x57\xbd\xc7\x3f\x77\x9b\xcd\xe3\xb5\xb1\ \x1b\xea\xb8\xca\x62\xe3\x26\x71\x54\x28\x4b\x36\x97\x26\x6d\x93\ \xa8\x09\x05\x07\xaa\x24\x50\x22\x55\xd0\xf7\xaa\xc4\x01\x54\xf1\ \x14\x35\x29\xa0\x22\x91\x86\xd0\x3f\xca\x52\x10\xb4\xd0\x02\xe2\ \xa1\xd0\x56\x15\xef\xe9\x55\x8f\xa0\xd8\x21\x79\x7e\xef\x11\x5c\ \xdb\xa5\x4e\xdb\x2c\xf6\x8c\xe3\x35\xb6\x67\xb3\x67\xc6\xb3\xdd\ \xb9\x87\x3f\x3c\x33\x99\xb9\xb3\xc4\x71\xc3\x5f\x5c\xe9\xa7\x7b\ \xe7\xde\x73\xee\xfd\x7e\x7f\xdb\xf9\x9d\x73\x46\x62\x91\xc7\x31\ \xb8\x47\xb5\x5a\x7b\x34\x87\xa3\x78\x23\x21\x8a\xdc\xbe\x7e\xdf\ \x48\x24\x48\xcc\xcd\xfd\xeb\x51\x78\x69\x31\x38\xa4\xc5\x74\x3a\ \x0e\x1f\xb3\x57\x54\xfc\x79\xcf\x13\x4f\x38\x6b\x96\x2f\x2f\x08\ \x2c\x87\x84\x61\xa4\xd0\x1a\xf3\x6d\x0c\x23\x73\x4f\x8f\x46\x79\ \xed\xc5\x17\xa3\x93\xa3\xa3\x07\x8f\xc2\x2b\xff\x70\x02\xc7\xe1\ \x13\xb6\xca\xca\x33\x7b\x9f\x78\xa2\xcc\xae\x69\x4c\xff\xe5\x2f\ \x88\x34\x40\xb3\xd6\x53\xd7\x19\x62\x42\x5c\x7f\x9e\xba\xae\x68\ \x6c\xc4\x5e\x5f\xcf\xeb\xbf\xfe\x75\xd4\x33\x3e\xfe\xf8\x11\xf8\ \xf7\x9b\xc1\xa3\xdc\x4c\xe3\xef\xc2\x06\x47\x65\x65\xe7\xbe\x03\ \x07\xca\x6c\xaa\x8a\xe7\xfc\xf9\x79\x70\x92\x74\x5d\x20\xef\x5a\ \x02\x24\xc9\xa4\xab\xd4\xef\x98\xcf\x87\xa2\x69\xac\xdb\xbc\x59\ \x75\x0f\x0e\xee\x6a\x0d\x85\x2e\x9f\x86\x77\x6f\x39\x81\xef\xc2\ \xa6\x8a\xaa\xaa\x3f\xed\x6b\x6f\x77\x5a\x65\xb9\x30\xf8\x6c\x02\ \x05\xce\xa5\x48\x68\x16\x0b\xeb\x36\x6c\x50\x5d\x6e\xf7\xc3\x9b\ \x43\xa1\x8b\x1d\xf0\xfe\x2d\x23\xf0\x2c\x6c\x76\x56\x57\xff\x69\ \x6f\x7b\xbb\x53\x03\xbc\x7f\xfd\x6b\x06\x90\x59\x4a\x11\x30\x03\ \xcf\x3e\x62\x3e\x1f\xaa\xd5\x4a\xcb\xfa\xf5\xaa\xdb\xe5\x7a\x78\ \x53\x38\xdc\xdf\x01\x97\x3e\x30\x81\xef\x41\xab\xb3\xa6\xe6\xd4\ \xde\xf6\xf6\x32\x4d\x08\xbc\xdd\xdd\xb9\x6e\x62\x92\x1c\x77\x29\ \x00\x3c\x0f\x7a\x56\x9b\xa8\xcf\x87\x66\xb3\xd1\xf2\xc9\x4f\x6a\ \x83\x83\x83\xbb\xef\x9d\x9b\xeb\xe9\x80\x81\x45\x13\x78\x16\xee\ \x2d\xab\xa9\x39\xb5\xaf\xbd\xbd\x4c\xd5\x75\xbc\x6f\xbd\x55\x12\ \x7c\x51\x77\x31\x11\x91\xa4\x22\xb9\x43\x92\xe6\xdd\xc9\x6e\xa7\ \xe5\xe3\x1f\x57\x07\x07\x06\x3e\xb7\x39\x12\xe9\xee\x04\xd7\x4d\ \x13\xf8\x1e\x7c\xca\x59\x53\xf3\xc7\x2f\x1c\x3a\xe4\x50\xe2\x71\ \xbc\xbd\xbd\xb9\x80\x6e\x40\xa0\xa8\xbb\x14\x01\x2f\xb2\xce\x11\ \xaf\x17\xab\xc3\xc1\xda\x7b\xee\xd1\xdc\x2e\xd7\xe7\xef\x8d\x44\ \xfe\xaf\x03\x86\x16\x4c\xe0\x38\x6c\x29\x5f\xb2\xe4\xbf\xf7\x1d\ \x3a\xe4\x90\x62\x31\xbc\x3d\x3d\xf3\xa6\x2f\x96\x6d\xb2\xef\x2d\ \xd0\x5d\x72\xc0\xa7\xee\x8b\x2c\x89\x78\xbd\x58\xca\xca\x58\x73\ \xf7\xdd\x9a\xcb\xed\xde\xd3\x1a\x8d\xfe\x4f\x07\x0c\xdf\x90\xc0\ \x71\xb8\xbf\xbc\xb6\xf6\xcd\xbd\x07\x0f\xda\xa5\xb9\xb9\x8c\xe6\ \xa5\x02\x1a\xd7\xe2\x71\x56\x9e\x39\x83\xa4\x28\x44\xaa\xaa\x4a\ \x82\xcc\xfb\xb0\xae\xb3\xaa\xb7\x17\x55\xd7\x09\x55\x56\xe6\x10\ \xc8\x58\xc2\xe7\xc3\xe6\x74\x72\xd7\xba\x75\xda\x80\xcb\xb5\xa7\ \x35\x16\xfb\x73\x27\x8c\x64\xbf\x47\x36\x95\x07\xdb\xca\xeb\xea\ \xfe\x6b\xef\xc1\x83\x76\x29\x1c\xce\x75\x1b\xd3\xa1\x46\xa3\xdc\ \xf1\xb7\xbf\x31\xbb\x77\x2f\xce\x50\x88\x9a\xe1\xe1\xfc\xc1\xaa\ \x04\xf8\x86\x2b\x57\x08\xef\xdc\x89\xc3\x66\xa3\x6e\x74\x14\x61\ \x72\x27\x91\x7a\x97\x77\x60\x00\x11\x89\xf0\xf9\xb6\xb6\xb2\xf2\ \xf2\xf2\x53\xc7\xe1\x13\x05\x09\x1c\x83\x1d\x55\x75\x75\xff\xf1\ \x85\x03\x07\xec\xcc\xce\x16\x07\x2f\x04\x6a\x34\x4a\x7d\x7f\x3f\ \xc1\xfd\xfb\x99\x7e\xe6\x19\xc6\x7f\xff\x7b\x2a\x82\xc1\xeb\x24\ \x4a\xd4\x41\x4a\x22\xc1\xb2\xcb\x97\x89\x7c\xfa\xd3\x4c\x9f\x38\ \xc1\xd8\xef\x7e\x87\xd3\x62\xe1\xf6\xf1\xf1\x82\x71\x21\x00\xcf\ \xc0\x00\xc4\xe3\xec\x6e\x6b\x73\xda\x9d\xce\xce\x63\x70\x4f\x1e\ \x01\xcd\x66\xfb\xe3\x17\xbf\xfe\x75\xbb\x11\x08\xe0\xeb\xeb\xcb\ \xd3\xa6\x48\x5d\xab\xb1\x18\xf5\x17\x2e\x10\xdc\xbf\x9f\xc0\xa1\ \x43\xc8\xb2\x8c\x58\xba\x94\x89\xd7\x5e\xa3\x22\x1c\xce\x21\x61\ \xae\x8d\x94\x78\x9c\x65\x83\x83\x44\xdb\xda\xf0\x7f\xeb\x5b\xf3\ \x6e\x59\x5d\xcd\xf8\xc9\x93\x38\x2b\x2a\xb8\xdd\xe3\xc9\x73\xa3\ \xf4\x31\x75\xe5\x0a\x52\x3c\xce\xe7\x3e\xf3\x19\xa7\xa2\x69\x3d\ \x79\x04\x14\x8b\x05\x5b\x65\x25\xbe\xb7\xdf\x2e\x58\xb3\xa4\x01\ \xad\xe8\xea\x22\xf2\xd0\x43\xcc\x7c\xf5\xab\xc8\xb2\x8c\x2c\xcb\ \x48\x92\x84\x58\xba\x94\xc9\xd7\x5f\xa7\x22\x1a\xa5\x66\x6c\x2c\ \xaf\xfe\x51\x74\x9d\x65\x23\x23\xc4\x76\xef\x26\xf0\xf4\xd3\xb9\ \x7d\x2b\x2b\x99\xf8\xd5\xaf\xb8\xcd\xef\xe7\xb6\x99\x99\xdc\xac\ \x24\x44\xe6\x5d\x53\x83\x83\x54\x54\x57\xa3\x5a\xad\x85\x63\x80\ \xac\xc6\xc5\x0a\x33\x6f\x53\x13\x8e\xae\x2e\x54\x8f\x27\x33\xfa\ \xa6\xc1\x88\xa5\x4b\xf1\xbc\xf1\x06\x15\x86\x41\xcd\xd4\x54\x2e\ \xf8\xf1\x71\xe2\x6d\x6d\xcc\x1c\x39\x92\x01\x9e\xee\x27\xcb\x32\ \x65\xe7\xcf\x93\xac\xac\x24\x6c\xb7\xe7\x58\x21\x0f\x5f\x76\xe1\ \x98\x47\x20\xdb\xf4\x66\x0b\xa4\xc4\x5b\x5f\xcf\x8c\xd3\xc9\x87\ \x1e\x7b\x0c\xcd\xe7\xcb\x80\x49\x03\x32\xea\xea\xf0\x9e\x3c\x49\ \x95\x2c\x53\xe3\xf3\xa1\x24\x93\x2c\xf3\x78\x48\xb4\xb5\x31\x7b\ \xf8\x70\x0e\xe8\x74\x3f\x67\x47\x07\xd5\x2f\xbc\x80\xab\xba\x9a\ \x39\x4d\xcb\x7c\x3f\x3b\xad\x0a\xb3\x72\x8b\x59\xc0\xec\xf3\x85\ \xdc\xc9\x57\x57\xc7\x8c\xcd\x46\xdd\x57\xbe\x82\xea\xf5\xe6\x00\ \x92\x65\x19\x51\x57\x87\xef\xb7\xbf\xa5\xca\x6a\x65\xd5\xc8\x08\ \xfa\x67\x3f\x4b\xf0\x1b\xdf\xc8\x03\x2e\xcb\x32\xce\x33\x67\xa8\ \xfa\xe9\x4f\x71\x3b\x1c\x44\x14\x25\xc7\xff\xb3\x41\x67\xac\x92\ \x9e\x53\xa4\xb3\x61\xa9\x59\x94\x48\xe7\xff\x02\xcc\x7d\x55\x55\ \x10\x0c\x52\x7b\xe0\x00\xde\x17\x5f\xc4\x58\xb2\x24\x53\x22\x48\ \x92\x84\xa8\xad\xc5\xff\xf2\xcb\x58\x7a\x7b\x89\x6e\xdb\x96\xd1\ \x94\x10\x62\xfe\xb9\x10\xd8\x3a\x3b\x29\xff\xd9\xcf\x70\x6b\x1a\ \x11\x49\xca\xa4\x4e\x91\xa5\x7d\x73\x1c\x98\xb1\xc8\x25\xa7\x82\ \xe9\x97\x99\xad\x91\xb6\x84\xd3\x49\x00\xb8\xed\x6b\x5f\x43\xf5\ \xfb\x73\xdc\x43\x96\x65\xa8\xad\x25\xbe\x63\x47\x9e\x85\x24\x49\ \xc2\x71\xee\x1c\xe5\x2f\xbd\x84\x5b\x92\x88\xc8\x72\x3e\x78\x93\ \x1b\xa5\x89\x18\x25\x63\xa0\x08\xd0\x6c\x22\x66\x32\x3e\xab\x95\ \x80\xae\x53\xfd\xe4\x93\x28\x29\x12\xe6\x00\x35\x8b\xbd\xab\x8b\ \xb2\x5f\xfc\x02\x77\x22\x41\x24\x4b\xc3\xd9\xfe\x4e\x31\x22\x26\ \x0b\xa8\x79\x39\x3b\xbb\x41\x11\xf7\xc9\x4c\x64\x52\x87\x57\x96\ \x21\x1e\xa7\xea\xf0\x61\x82\xdf\xff\x3e\xa2\xb6\x36\xa7\xea\x4c\ \xbf\x5b\x92\x24\x2c\xe7\xce\x61\x7b\xe5\x15\x5c\x91\x08\x51\xc3\ \xb8\x0e\x32\xad\x61\x5d\xc7\x88\x46\x31\x12\x09\x0c\x5d\x47\xe8\ \x3a\x22\xe5\xf7\x42\x96\x31\x02\x01\x0c\x5d\x2f\x1e\x03\x69\x1f\ \xcd\x68\xb9\x58\x6d\x63\x7a\x16\x48\x26\x59\x12\x0e\x63\xed\xed\ \x25\xfe\xd0\x43\x05\xcb\x67\x21\x04\xce\x5f\xfe\x92\x40\x32\x49\ \x34\x99\x44\x08\x81\x1e\x0c\xa2\xcf\xcc\xa0\x07\x83\x24\x23\x11\ \x44\x22\x91\x37\x98\x65\xff\x36\x56\xac\x20\x19\x8b\x15\x21\x90\ \x65\x2e\x4a\x04\xb0\xd9\x3a\x8a\x24\xd1\x50\x53\x43\x74\xeb\x56\ \x12\x3b\x77\x16\x9e\x03\xa7\x08\xcc\xbe\xf0\x02\xce\x63\xc7\xa8\ \x99\x99\x61\xa8\xbb\x1b\x91\x4c\x96\x04\x9c\x37\x32\x97\x0a\x62\ \xb1\x40\xbf\x27\x6b\x69\x44\x01\x1a\xea\xea\x10\xdb\xb7\x13\x7b\ \xec\xb1\x9c\x40\x35\xe7\x7c\x59\x96\xa1\xba\x9a\xb9\x6f\x7e\x93\ \xdb\x3f\xfa\x51\x1a\x3e\xf2\x91\xdc\x5c\x7f\x03\xf0\x02\x6e\x30\ \x90\x19\xc6\x82\x82\x38\x2d\xb2\x24\xd1\xd0\xd0\x80\xd8\xb6\x8d\ \xd8\xa3\x8f\xe6\x81\x2d\x94\x7d\x24\x49\x82\xaa\x2a\x22\x4f\x3d\ \xc5\x1d\xf7\xdd\xc7\x9d\xeb\xd7\x97\x04\x5c\xc8\x2a\x85\x09\x94\ \x18\x7d\x0b\x89\x22\xcb\xdc\xd9\xd8\x88\x78\xe0\x01\x62\xfb\xf6\ \xe5\x0d\x50\xb2\x2c\xa3\xf6\xf4\x60\x3f\x7a\x14\x25\x14\xca\x23\ \x44\x65\x25\x91\x27\x9f\xa4\xfe\xfe\xfb\x59\xde\xda\xba\x60\xf0\ \x8b\xb6\x40\xf6\x33\x45\x96\xb9\x73\xf5\x6a\xc4\x96\x2d\xc4\x1e\ \x79\xa4\xe0\xea\x84\xda\xd7\x87\xfc\xea\xab\x78\x07\x06\xd0\x7e\ \xf4\x23\xe4\x50\x28\xaf\x8d\x28\x2f\x27\xd2\xde\x4e\xfd\x83\x0f\ \xb2\x7c\xcb\x96\x1b\x83\x2f\x50\xe1\xaa\xe6\x18\xc8\x6e\x20\x15\ \x08\x5a\x45\x55\xb9\xf3\xee\xbb\x31\x36\x6e\x24\xf6\xf0\xc3\x39\ \x01\x9b\x01\xff\xce\x3b\x48\x6f\xbc\x41\xff\xc9\x93\xcc\x79\x3c\ \x34\x84\x42\xd4\xdb\x6c\xe8\x07\x0e\x60\x94\x95\xe5\x8e\xd8\x4e\ \x27\x73\x8f\x3f\xce\x32\x9b\x0d\xa1\xaa\xb8\x4e\x9f\x2e\x1d\xcc\ \xa5\x08\x64\xb4\x5c\xa0\x1e\x27\x95\x5e\x9b\x36\x6c\x20\xba\x76\ \x2d\x91\x5d\xbb\x90\x0b\x81\xbf\x70\x01\xe9\x0f\x7f\xa0\xff\x37\ \xbf\x61\x2e\x55\xdf\x5f\x3d\x7b\x16\xa1\xaa\x2c\xb3\xd9\xd0\xbf\ \xfc\x65\x84\xdd\x9e\x53\x52\x18\x0e\x07\xe1\x47\x1f\x65\xa5\x2c\ \x93\x88\x46\x19\xee\xea\x2a\xea\x52\x45\x09\x18\xba\x4e\x62\x6e\ \x8e\xaa\x35\x6b\x08\xbc\xfb\x6e\xd1\x95\x03\xbf\xdf\x8f\xd3\xe3\ \x41\x8e\xc5\xc0\x6e\xcf\x01\xaf\xbc\xf7\x1e\xd2\x9b\x6f\xd2\xff\ \xf2\xcb\x84\xa7\xa7\x73\x3e\x7e\xb5\xa3\x03\xa1\x69\x2c\xb3\x58\ \x10\x5f\xfa\x12\xc2\x66\xcb\x19\xe0\x14\xbf\x1f\xc3\x62\x61\x76\ \x62\xa2\x38\x78\x49\xba\xbe\x50\x6c\x9e\xd4\x6f\xd5\xf5\x51\xf7\ \xe5\xcb\xdb\x5b\x36\x6e\x54\x2d\x0e\x07\xd1\xa9\xa9\xfc\x65\x0f\ \x21\x08\x4d\x4d\xa1\x69\x1a\xe5\x1e\x0f\xfa\xea\xd5\x48\x9a\x86\ \x24\x49\x68\x97\x2e\x21\x9f\x3a\x45\xff\x4f\x7e\x42\x38\xd5\xd7\ \x0c\x24\x30\x30\x80\xac\x28\x54\x25\x93\x18\x4d\x4d\x08\x55\x45\ \x08\x81\x36\x31\x81\xed\xec\x59\x7a\x9e\x7f\x9e\x80\xcb\x55\x14\ \xfc\xf2\x95\x2b\x09\xc7\xe3\x5c\xf6\xf9\xe8\x80\xef\xe4\x10\xe8\ \x80\xbe\x8d\xa1\xd0\xf8\x90\xdb\xbd\xa3\x65\xfd\x7a\xd5\x62\xb3\ \x11\xf5\x78\x72\xfd\x31\x1e\x27\xe1\xf3\xe1\xeb\xeb\x43\x53\x55\ \x2a\x63\x31\x92\xcd\xcd\x68\x43\x43\x28\x9d\x9d\xf4\xff\xe0\x07\ \x84\x27\x27\x4b\xa6\x44\xff\x95\x2b\xc8\xaa\x4a\x8d\x2c\x93\x5c\ \xb1\x02\x65\x7a\x1a\xeb\xd9\xb3\xf4\x3e\xf7\x1c\x01\xb7\xbb\x60\ \x00\xcb\xb2\xcc\x8a\xc6\x46\x62\x86\xc1\x29\x97\x2b\x68\xc0\x7d\ \x1d\x30\x96\xb7\xac\xd2\x01\x6f\x6f\x0a\x85\x46\x5d\x03\x03\x3b\ \xd6\x36\x37\x6b\x72\x3c\xce\xec\x7b\xef\x91\x98\x9c\x24\x3e\x36\ \x46\x62\x6a\x0a\x7d\x76\x16\x11\x8b\x11\x78\xff\x7d\x2c\x4e\x27\ \xb7\xcd\xcd\x21\x5d\xbd\x4a\xff\x73\xcf\x11\x9e\x98\x58\x50\x3e\ \xf7\x5f\xbc\x88\x22\x49\xdc\x2e\x04\xea\xd0\x10\x3d\x27\x4e\x94\ \x04\xbf\xb2\xb1\x91\x50\x22\x21\x4e\x0f\x0d\xcd\x08\x21\xee\x3b\ \x02\x3d\x25\xf7\x07\x9e\x85\xfd\x65\x56\xeb\xcf\xf7\x6c\xdf\x6e\ \x8f\x8e\x8d\x31\xdd\xdb\x5b\x34\xbd\x2d\xdd\xba\x95\x99\x4b\x97\ \x08\xa7\x56\x15\x16\x9c\xcf\x81\x3b\x5a\x5b\x09\x0e\x0f\x33\x33\ \x3c\x5c\xb0\xad\xac\x28\xac\x6a\x6a\x22\x10\x89\x18\x67\x86\x87\ \xfd\x49\x21\x5a\x8f\xc2\xc5\x05\x6d\x70\x3c\x0b\xfb\x1d\x56\xeb\ \xcf\xf7\x3c\xf8\xa0\x3d\x36\x31\xc1\x64\x6a\x99\x65\x21\xc3\xfd\ \x82\xf2\xf9\x0d\x9e\x29\x8a\x42\xe3\x87\x3f\xcc\x54\x28\x64\x9c\ \x1b\x19\x99\x14\xb0\xe9\x48\x81\xe5\xc5\xa2\x6b\xa3\x1d\xf0\xce\ \x96\x64\xd2\x7d\xf9\xea\xd5\x9d\x2d\x2d\x2d\x9a\xad\xbc\x9c\xd0\ \xb5\x6b\xb7\x0c\x70\xa9\x76\xaa\xaa\xd2\xd4\xdc\xcc\x58\x30\x98\ \xfc\xdf\xd1\xd1\x31\x09\xd6\x3f\x65\x5a\x91\x5b\xd0\xea\xf4\x69\ \xe8\xdf\x92\x4c\x0e\x5e\x1e\x1e\xde\xd5\xb2\x66\x8d\x66\xab\xa8\ \x20\x74\xed\xda\x07\x06\x5c\xaa\x8f\xa6\x69\x34\x36\x37\x33\x1c\ \x08\xe8\xe7\xc7\xc6\x06\x55\xd8\x70\x18\x26\x17\xbd\x3f\x70\x1a\ \x2e\xdc\x9b\x4c\x0e\x0e\x8c\x8c\xec\x5a\xb7\x7a\xf5\x3c\x89\xc9\ \xc9\x5b\xa6\xed\x1c\xf0\x16\x0b\x8d\xcd\xcd\xb8\xfc\xfe\x44\xf7\ \xf8\xf8\xc5\x00\xb4\x7e\x1b\x7c\x1f\x64\x83\x43\x06\x1c\x9d\x30\ \xdc\x6c\x18\x23\xe3\xa3\xa3\x0f\xb4\x34\x37\x6b\xf6\x2c\x12\xb7\ \x0a\xbc\xd5\x6a\x65\x55\x73\x33\x97\xa6\xa7\x13\xdd\xd7\xae\xf5\ \xbf\x0a\xbb\x5f\x67\x7e\xc6\x09\x24\x17\x43\x40\x06\xec\x69\x39\ \x0f\xa3\x0d\x86\x31\xee\x19\x1b\xfb\x54\x4b\x53\x93\xea\xa8\xac\ \x24\x58\xc0\x12\x8b\xb1\x8a\xd5\x66\x63\xd5\x5d\x77\xf1\xee\xc4\ \x44\xa2\x7b\x6a\xaa\xef\xc7\xf0\x2f\x2e\x88\x9a\x92\x4c\xf2\x66\ \x09\x68\x80\x35\x4b\x2c\xbd\x30\x5a\x67\x18\x13\x81\xf1\xf1\x4d\ \x6b\x57\xae\x9c\x27\x31\x35\xf5\x81\xc0\xdb\xec\x76\x1a\x9b\x9b\ \xe9\x1b\x1b\x4b\xbc\xe5\xf1\x9c\x7f\x1e\xfe\xcd\x3f\x0f\x5e\x00\ \x46\x4a\x92\x80\x7e\xb3\xfb\xc4\x1a\x60\x4b\x59\xc0\x96\x7d\xfd\ \x45\xd8\xfe\x31\x55\x7d\xfa\x91\x8d\x1b\xad\x65\x4e\x67\x4e\xd9\ \x6d\x64\x95\xdd\x22\xbb\x3c\x37\x0c\x0c\x53\x69\x9e\xae\x7e\xff\ \x7f\x70\x30\xde\xed\xf3\x75\xfd\x10\x9e\x89\xc2\x1c\xf3\xae\x13\ \x2d\x70\xbe\xe9\x8d\x6e\x4b\x16\xf8\xb4\x58\x53\x24\xb6\xb5\xc0\ \x31\x6e\xc1\xe1\x87\xff\x7c\x1e\x4e\xe8\xd7\x81\x66\x4b\x8c\xeb\ \xb1\xb0\xa8\x9d\x7a\x29\x0d\xda\xec\x52\x29\xd1\xb2\xce\x6a\xca\ \x2d\x95\x54\x0c\x49\x29\x31\xb2\x5c\x22\xed\x0e\x89\x2c\x89\x01\ \xf1\x94\xc4\x52\x92\x06\xaf\xdf\xca\xbf\x1a\x28\x29\xb0\x56\x13\ \x68\xb5\x00\x78\x39\xeb\xfd\xa2\x88\x4f\x9b\x89\xa4\xc9\x24\x8a\ \x69\xfc\x96\xfc\xd9\xc3\xd4\x5f\x29\x40\x40\x32\x89\x99\x80\x91\ \x45\x40\x4f\xfd\xfe\xe7\x3c\xfe\x0e\x0d\xb2\x18\xfa\x71\xe1\x53\ \x87\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x26\xf0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x23\x3a\x37\xae\xfd\xa2\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xed\x7d\x79\x78\x14\xc7\xb5\xef\xef\x54\x8f\x46\ \xbb\xd0\x32\x92\xd0\x06\x12\x02\x2d\x68\x01\x24\x90\x58\x24\x10\ \xd8\x31\x24\xd8\x4e\xee\xe7\x38\x2f\xb9\xf7\x4b\xee\x7b\x79\x9f\ \xb1\x13\xc7\x89\x63\x63\xcc\x16\x2e\xb6\x59\x1c\x3b\xb6\x89\x13\ \x27\xbe\x4e\xec\x97\xc4\xc9\x8d\x6f\x6c\xbf\xe4\x25\xb6\x31\xc1\ \x04\x82\x6d\x30\x20\xb1\x08\x24\xc4\x62\x09\x09\x09\xed\x48\x68\ \x19\xcd\xda\xf5\xfe\x98\x91\xd4\xdd\xd3\x33\xd3\xb3\x88\xc5\x56\ \xe9\xeb\x4f\x53\xdd\xd3\x3d\x55\xf5\x3b\x5b\x9d\x73\xaa\x1a\x98\ \x2c\x93\x65\xb2\x4c\x96\xc9\x32\x59\x26\xcb\x64\x99\x2c\x93\x65\ \xb2\x4c\x96\xc9\x32\x59\x26\xcb\xe7\xa5\xd0\x67\xb5\x5f\xc5\xf3\ \xe7\xe7\x10\x51\x01\x07\xcb\x20\xce\xa7\x81\x28\x15\x40\x06\x07\ \x65\x30\xe2\xd1\xd2\xae\x13\x01\x00\x89\x00\xba\x01\x74\x13\xa1\ \x03\x40\x27\x40\x1d\x20\x5e\xaf\xb3\x87\x9c\x3c\x7a\xf4\x60\xd3\ \x24\x01\xdc\xa4\xa5\xb4\xb4\xd4\x60\x87\x50\x6e\x07\x2f\x23\x46\ \xe5\x04\x94\x01\x14\x27\x07\x78\xbc\xbb\xda\xeb\xb2\x73\xfd\xe0\ \x38\x49\x8c\x9d\xe4\x1c\x1f\x09\x76\xcb\xde\x23\x47\x8e\x0c\x4c\ \x12\xc0\x0d\x2a\x85\x0b\x16\x64\x08\x22\x7d\x85\x13\xee\x21\x42\ \x05\x00\xc1\x1d\xa0\x12\x2e\xf7\x52\x57\x27\x02\x02\xc9\x46\xca\ \x59\xb7\x80\xe3\x23\x4e\xf4\x9e\xce\xce\xde\x3d\x7c\xf8\x40\xc3\ \x24\x01\x4c\x3c\xa7\xa7\x58\x20\x7c\x0b\x84\x7b\x18\x61\xbe\x0c\ \x36\xf2\x17\x70\x27\xa4\xde\x01\xf7\x50\x07\x40\x54\xcf\xc1\x5f\ \x61\x56\xeb\xeb\x87\x0f\x1f\xbe\x3a\x49\x00\x41\x2c\x45\x25\xe5\ \xa5\x4c\xc0\xc3\x00\xbe\x06\x40\x1f\x28\x47\x6b\x02\x5c\xf2\x38\ \xd7\xba\xfc\x47\x14\xf5\x11\x80\xde\x12\x88\xbf\xf2\xd1\x81\x03\ \x1f\x4d\x12\x80\xff\x85\x15\xcf\x2f\xff\x17\x22\xfc\x00\x40\xa5\ \xaf\x7a\xdc\xd3\x77\xbc\x01\xec\x81\xcb\x35\xd5\x25\x04\x51\xc3\ \xc1\xff\xe3\xd0\xfe\xfd\xef\x4e\x12\x80\x0f\xa5\x78\xc1\xa2\x55\ \x04\xfe\x2c\x11\x2f\x0c\x44\xac\x47\x47\x47\x21\x2e\x2e\x16\xf1\ \x71\x71\x88\x8f\x8b\x47\x6c\xec\x14\xe8\xf5\x7a\x84\x86\x86\x22\ \x44\x17\x02\xbd\x5e\x0f\x00\xb0\x58\x2c\xb0\xdb\x6c\x30\x59\xcc\ \xb0\x58\x2c\xb8\x76\xed\x1a\xfa\xfa\xfa\xd1\xd7\xdf\x8f\xbe\xbe\ \x3e\x0c\x0d\x0f\x6b\x03\xdc\x79\x4e\x69\x43\x12\xe8\x10\x38\xdb\ \xf2\xe1\xfe\xbd\xfb\x26\x09\xc0\x43\x99\x57\x5e\x3e\x5b\xe4\xf4\ \x1c\x01\xab\x7c\x05\x3c\x24\x44\x8f\xb4\xd4\x14\x4c\xcb\x48\x47\ \x7a\x7a\x3a\x32\xd2\xd2\x11\x19\x15\xe9\xa1\xa3\xe4\x71\x44\xa4\ \x57\x87\x87\x8d\x68\x6b\x6b\x43\x6b\x5b\x1b\x2e\xb7\xb5\xa1\xa3\ \xbd\x1d\x56\x9b\xcd\x13\xe0\xea\x75\x8e\x7d\x9c\xf8\x23\x1f\xee\ \xdb\x57\x3b\x49\x00\x92\x52\x5e\x5e\x1e\x63\x06\xed\x24\x60\x0d\ \x00\x9d\xd6\xe9\x59\x44\x78\x18\x66\xcd\x9a\x85\xbc\x9c\x1c\xcc\ \xcc\xce\x46\x48\x48\x88\x26\x40\x3d\x0e\x01\x79\x1b\x1c\x82\xcd\ \x66\x45\x63\x63\x13\xce\x5d\xb8\x80\x8b\x8d\x9f\xc2\x64\x32\x69\ \xb0\x1b\xc6\x3e\x58\x89\xe8\x19\x58\x2c\xdb\x0e\x1c\x38\x60\xfa\ \xdc\x13\x40\x49\x59\x59\x25\x27\xe1\x75\x00\xd3\xb5\x18\x73\x82\ \xc0\x30\x33\x3b\x1b\xa5\xf3\xe6\x61\x46\x56\x16\x18\x23\xcf\xdd\ \xd1\x00\xa8\x5c\xac\x6b\x23\x90\xd1\xb3\xa2\xc8\xd1\xd4\x7c\x09\ \xa7\x4e\xd5\xa2\xb1\xb1\x11\x22\xe7\x9e\xa5\xc0\x58\x1d\xe7\x18\ \xd1\x7d\xfb\xf6\xec\xf9\xf0\x73\x49\x00\xa5\xa5\xa5\x21\xa2\x4e\ \xff\x24\x11\x1e\x03\x48\xf0\x36\x3d\x8b\x8c\x8c\xc4\xbc\xe2\x39\ \x98\x37\x6f\x0e\xa2\xa3\xa3\xb5\x8b\x75\x17\x02\x50\xff\x0e\xf9\ \x32\x54\xa4\xfe\xdb\x83\x43\x83\xa8\xad\x3d\x8d\xd3\x75\x67\x60\ \x34\x8e\xb8\xf9\xbe\x6c\x06\xc2\x41\xf4\xf3\x50\xa2\xc7\x76\xef\ \xde\x6d\xfe\xdc\x10\x40\xe9\xa2\x45\x79\x9c\xd3\x1f\x00\x94\x78\ \x9b\x9e\x45\x44\x84\xa3\x6c\xc1\x02\x94\xce\x9b\x07\x9d\x4e\xa7\ \x3e\x5d\xf3\x4d\xbd\xab\x72\x35\xf9\x0c\xb8\xfb\x5f\xb0\xdb\x6d\ \x38\x59\x5b\x8b\x9a\xe3\xc7\x31\x32\x62\xf2\x38\x05\x75\xde\xf3\ \x09\xd7\x09\x5f\xfd\xc7\x3b\xef\xb4\x7d\xe6\x09\x60\xde\xa2\x45\ \xb7\x31\xd0\xdb\x00\xa6\x78\x9a\x9e\x85\x86\x86\x62\x7e\x49\x09\ \xe6\x97\x96\x42\xaf\xd4\xed\xde\xb8\xda\x87\xeb\x9e\x4f\x93\x17\ \x3b\xc2\x33\x91\x58\xad\x56\x9c\x38\x79\x0a\x27\x4f\x9d\x82\xc5\ \x6a\xf1\xe6\x97\xe8\x02\xe7\x5f\xdb\xbb\x7b\xf7\x3f\x3f\xb3\x04\ \x30\x7f\x51\xc5\xb7\x39\xf8\xcb\x44\x08\xf1\xe4\x84\x99\x35\x6b\ \x26\x96\x2f\x5b\x8a\xa8\xc8\x28\xaf\xad\x24\x0d\x7a\x5a\xbb\xd8\ \x27\xad\xda\xc4\xe5\x0a\x79\x68\xe3\xb0\xd1\x88\x8f\x0e\x1d\x42\ \x63\x63\xa3\xdb\xef\x93\xe3\x84\x8d\x80\xc7\xf6\xbc\xfb\xee\xae\ \xcf\x1a\x01\x50\xe9\xa2\x25\xdb\x89\xb0\xc1\x93\x5b\x35\x3a\x3a\ \x1a\x2b\x96\x2d\x43\x56\x66\xa6\x86\x56\x2a\x9d\x2e\x00\xe7\x1c\ \xff\xf7\xed\xb7\x61\x1c\x1e\x46\x6c\x6c\x1c\x96\xaf\x58\x31\x66\ \x2f\x68\x03\x54\xab\xd8\xf7\x0c\xb8\xda\xcd\x04\xa0\xb9\xa5\x05\ \x1f\x1d\x3a\x84\xa1\xa1\x21\x29\xe8\x4a\x22\x00\x01\x4f\xbf\xff\ \xce\x3b\x1b\xae\x07\x30\xc2\x44\xff\xc0\xbd\xf7\xde\x2b\x44\xc5\ \xc6\xff\x86\x18\x3d\x48\x44\x20\x22\x10\x9c\xff\x25\xf5\xdc\x9c\ \x1c\xdc\x7d\xe7\x6a\x24\xc4\xc7\x81\x73\x0e\xce\xe1\xfc\xef\x3c\ \x30\xfe\xd9\x71\x11\x80\xe4\xba\xcd\x6e\xc3\xbe\xbd\x7b\xd1\xd1\ \xde\x0e\x9b\xcd\x86\xa1\xa1\x21\x34\x35\x36\x21\x23\x23\x03\xa1\ \xa1\xa1\xb2\xfb\xa5\x07\xa4\x8f\x93\xfe\x49\x7e\x6b\xfc\xba\xe4\ \x7b\x63\xd7\xd4\x0e\x47\xdb\xc7\x1f\xee\x38\x3f\x25\x26\x06\x79\ \x39\x39\x18\x36\x1a\xd1\xd7\xd7\x27\x1b\x03\x26\xf9\x0c\xa2\x8a\ \x59\xb9\xb9\x09\x17\xcf\x9f\x7f\xff\x56\x27\x00\x8a\x8a\x8b\x7f\ \x05\x44\xff\x73\xbc\x73\x90\x75\x5c\xd0\x09\x58\x56\x59\x81\xf2\ \xb2\x32\x30\xc6\x30\x36\x6e\xca\x3f\xe7\x58\x8e\x03\x36\xfe\x67\ \xb1\x5a\xb0\xe7\xfd\xf7\xd1\xda\xda\x8a\x98\xe8\x18\x6c\xdf\xb6\ \x1d\x9d\x9d\x9d\x68\x6d\xbd\x8c\x4b\x4d\x4d\x48\xcf\x48\x77\x10\ \x01\x1f\x07\x04\x52\x70\x25\x44\xe6\x7a\x5d\x1d\x50\xa8\x81\x0e\ \x39\x21\xb9\x7c\x07\x00\x63\x0c\xd3\xa7\x4f\x47\x64\x44\x04\xda\ \x3b\x3a\xc0\x39\x97\x33\xc3\xf8\x51\x3e\x2b\x2f\x27\x6d\x6e\xf1\ \x9c\xf7\xea\xeb\xeb\xf9\x2d\x49\x00\xe5\x15\x4b\x7f\x0a\xc2\x77\ \x5c\x3b\xe7\x20\x82\xd8\x29\x53\x70\xe7\x97\xbe\x88\x69\x19\x19\ \x32\x20\xa0\xe0\x78\xe9\x20\x43\x21\x15\x8c\x46\x23\xde\x7f\xef\ \x3d\x74\x75\x77\xc3\x60\x30\xe0\x85\xe7\x9f\x43\x7e\x7e\x1e\x96\ \x57\x55\xa1\xae\xbe\x1e\x2d\x2d\x2d\x68\x6a\x6a\x42\x5a\xba\x83\ \x08\x64\x18\x2a\xb8\x1e\x3e\x01\xea\x2a\x15\x5c\x88\x47\x72\xdd\ \x31\xe9\x1b\xbf\x96\x10\x1f\x8f\x8c\xf4\x74\x74\x74\x76\xc2\x62\ \xb1\x38\x25\x21\xc6\xc6\xc6\x29\x19\x4b\x2c\xdc\x9e\x79\xa1\xe1\ \xdc\xff\xbb\xe5\x08\xa0\xbc\x72\xd9\x0e\x10\xd6\x8e\x01\x0e\x39\ \xe7\x27\x19\x0c\x58\xfd\xc5\x55\x88\x8e\x8a\x1e\x13\xe7\xb2\xe1\ \x1e\x03\x5c\x3a\x8a\x72\xa9\x30\x38\x38\x88\x3d\xbb\x77\xa3\xbf\ \xbf\x1f\xe9\xe9\xe9\xd8\xf5\xc2\x0b\x48\x4b\x4b\x03\x00\xe8\x74\ \x3a\x54\x2d\x5b\x86\x86\x86\x06\x34\x37\xb7\xe0\x92\x93\x08\xc2\ \xc2\xc2\x64\x80\x4a\xa9\xc1\x33\xa0\x70\x25\x0a\x35\x69\xe1\x06\ \x70\xae\xb8\xce\x01\x84\x87\x85\x21\x73\xfa\x74\x74\x75\x77\x63\ \x64\x64\x44\x36\x3e\x18\xff\x3c\x27\x27\x3f\x37\xf4\x7c\xc3\xb9\ \x7d\xb7\x0c\x01\x2c\xac\xac\xfc\x21\x01\xdb\x54\x3a\x03\x22\x42\ \x46\x46\x06\xbe\x70\xfb\xed\x08\x09\xd1\xbb\x70\xb4\x7b\x3d\x2d\ \xbf\xde\xd7\xd7\x87\x3d\xbb\x77\x63\x68\x68\x08\x39\x39\x39\x78\ \xfe\xf9\xe7\x61\x30\x18\x64\xed\x18\x25\x82\x0b\xe7\xcf\xe3\xd2\ \xa5\x66\x34\x35\x35\x22\x25\x35\xd5\x41\x04\x5c\xa9\xc7\xa1\xda\ \x06\x35\x31\xae\xf5\xba\xaa\x8d\x00\xb9\x34\x13\x04\x01\x99\xd3\ \xa7\xa3\xbf\xbf\x1f\x43\x43\x43\x32\x09\x29\xb1\x97\x2a\x72\xf3\ \x67\xb7\x9e\x3f\x7b\xf6\xc4\x4d\x4f\x00\x8b\x2a\x97\x2f\x03\xe1\ \x75\x22\x62\x6a\xba\x6d\x56\x76\x36\x96\x56\x56\x40\x60\xcc\x85\ \xa3\xa5\x80\x4b\x59\x49\x79\xbd\xbb\xab\x1b\x7b\xff\xbe\x07\x23\ \x23\x26\xcc\x2b\x99\x87\x67\x9e\x79\x06\x31\xa3\xd6\xbe\xb2\x83\ \x82\x80\x65\x55\x55\xb8\xf8\xe9\x45\x34\x35\x35\xe1\x52\x53\x13\ \x52\x52\x52\x10\x1e\x1e\xae\xe0\x7a\xee\x55\x8c\x73\x05\x57\x7b\ \x13\xf3\x32\xd0\xc7\x7d\x7f\x2e\x06\x2c\x31\xc2\xb4\x8c\x69\x18\ \x31\x1a\x71\xed\xda\x35\x35\x29\x00\x46\xb4\x2a\x27\x2f\xef\xd0\ \xf9\x86\x86\xa6\x9b\x96\x00\xca\xab\xaa\xd2\x89\xf8\x07\x44\x14\ \x3d\xae\xd3\xc6\x2d\xdc\xcc\x69\xd3\xb0\x78\xf1\x22\x10\xc8\x23\ \xd7\x43\x61\x98\x49\xc7\xdc\x64\x36\xe3\xbd\x77\xfe\x06\xab\xd5\ \x8a\xca\xca\x4a\x6c\x7b\xea\x29\x84\x87\x85\x79\xee\x24\x63\x58\ \xba\x74\x29\x9a\x9a\x2e\xa1\xb1\xa9\x11\xcd\x97\x2e\x21\x79\xea\ \x54\x84\x47\x84\x7b\x05\xdc\x3f\x31\xaf\xfc\x0e\xbc\x5f\x07\x90\ \x92\x9a\x8a\xa1\xc1\x41\x0c\x0e\x0d\x82\x08\x8a\x99\x01\x04\xc6\ \xe8\x2b\x05\xf9\xb3\xff\x72\xf6\xec\xd9\x9e\x9b\x8e\x00\x0a\x0a\ \xee\xd5\x87\x47\x18\xdf\x25\x62\x79\x4c\x85\xf3\xd3\xd3\xd2\xb0\ \x64\xf1\x22\xe7\x5c\x57\xce\xf5\x6e\x39\xde\x45\x2a\x70\x9c\x3f\ \x7f\x1e\x6d\xad\xad\x58\x58\x5e\x8e\xed\xdb\xb7\x3b\xdc\xc3\x5a\ \x3a\x2a\x08\x58\xba\xb4\x12\x2d\xcd\xcd\xf8\xf4\xd3\x4f\x71\xa9\ \xa9\x09\x49\x49\x49\x08\x8f\x88\x50\x30\xa6\x8a\x0a\x70\xc3\xe5\ \xde\x00\x87\xec\x3a\xf7\x7a\x9d\x00\xa4\xa4\xa4\xe0\xda\xc0\x00\ \x86\x87\x87\xc7\x55\xc1\xf8\xb4\x39\x8c\x13\x5b\x54\x54\x50\xf0\ \x9b\xfa\xfa\x7a\xfb\x4d\x45\x00\x39\x05\x49\xbb\x88\xe8\x1e\x57\ \x9d\x0f\x24\x25\x25\xa2\x72\xc9\x12\x30\x72\x8a\x7d\xce\x5d\x2c\ \x71\x40\x29\x0d\xe4\xd6\xfa\xe8\x75\xab\xc5\x82\xa6\xa6\x26\x0c\ \x0c\x0c\x60\xe5\x1d\x2b\x11\x19\x19\xa1\xb9\x8d\x8c\x31\x2c\x5b\ \xb6\x0c\x97\x2f\x5f\xc6\xc5\x8b\x17\xd1\xdc\xdc\x8c\xc4\xc4\x44\ \x44\x44\x46\xca\x7d\x0c\x92\xa2\xaa\xf3\x21\x07\xdd\x65\x06\xa3\ \x41\xec\x4b\xae\x8e\x5d\xe7\xce\xdf\x4e\x49\x49\x41\x5f\x5f\x9f\ \xd3\x30\x84\x72\x06\x95\x2a\x32\x16\xd2\x50\x57\xb7\xef\xa6\x21\ \x80\x25\xb7\xdd\x56\x49\xa0\x5f\x10\x39\xf8\x5b\xda\xe8\xa8\x88\ \x48\x2c\xad\xac\x80\x4e\xa7\x53\xe5\xe8\x51\x53\x5f\x0d\x70\xc9\ \xc8\x8c\xdd\x17\x19\x19\x85\xbe\xbe\xab\xe8\xe9\xe9\xc1\xc5\x4f\ \x2f\x62\xe5\xca\x95\x2e\x1e\x35\x8f\x8e\x09\x22\x2c\xad\xac\x44\ \x5b\x7b\x3b\xce\x5f\xb8\x80\x96\xe6\x66\x18\x0c\x06\x44\x46\x46\ \xba\x5a\xeb\xd2\x46\x49\x5b\xc5\xc7\x41\x57\xbd\xae\x46\x14\x50\ \x4c\xe5\xd5\x1c\x5d\xce\xbb\x89\x08\xc9\xc9\x49\x68\xef\xe8\x80\ \xcd\x66\x73\xb5\x09\x40\x8b\xf2\x0b\x0a\x0e\x9c\xad\xab\x6b\xbe\ \xe1\x04\x50\x55\x55\x15\xc6\x89\xde\x23\x22\x83\x52\xec\xeb\x74\ \x3a\x54\x2e\x59\x82\x88\x88\x08\xb7\x1c\xed\x6a\x03\x40\x22\x25\ \xb8\x92\x21\x01\x00\xc9\xc9\xc9\xb8\xd4\xd4\x84\x96\x96\x16\x44\ \x46\x46\xa2\xb0\xb0\xd0\x37\xef\x14\x11\x2a\x2b\x2a\xd0\xd9\xd9\ \x89\x73\xe7\xce\xa1\xe5\xd2\x25\xc4\x27\x24\x20\x32\x2a\x4a\x02\ \x93\x67\x40\xb5\x5d\xe7\xe3\x1e\x61\x0f\x80\x4b\xed\x80\xd1\x33\ \x8c\x09\x48\x48\x88\xc7\x95\xf6\x76\x38\x52\x0c\x64\x52\x80\x81\ \x68\x79\xc9\x9c\xb9\xff\xe7\xf4\xe9\xd3\xe6\x1b\x4a\x00\xd3\x66\ \xcc\xdc\x0a\xc2\xbf\x28\x3d\x7c\x20\x60\x7e\x49\x09\x0c\x06\x83\ \x4c\xcc\x43\xcd\xa1\xc2\xe5\xac\xe1\xce\xad\x3a\x5a\x17\x04\x1d\ \x62\x62\x62\xd0\xd2\xdc\x8c\xe3\x27\x4e\xa0\xa2\xa2\x02\xf1\xf1\ \xf1\x3e\x13\x41\x45\x45\x05\x7a\x7a\x7a\xd0\xd0\xd0\x80\x96\xe6\ \x66\xc4\xc7\xc7\x23\x2a\x2a\x4a\x75\xba\x26\xb5\x02\x54\x01\x77\ \x23\x25\x5c\xc5\xbe\x1a\xe0\x5c\xe1\x0a\x71\xdc\xac\x0f\xd5\x23\ \x22\x22\x02\x5d\x5d\x5d\x2e\x46\x21\x11\xc5\x72\xf0\xe8\xba\xd3\ \x67\x76\xdf\x30\x02\xa8\xbc\xed\xb6\x62\x22\xfa\x2d\x81\x04\xa5\ \x6f\x7f\x5a\x46\x06\x66\x65\xcf\x74\x71\xb3\xaa\x01\x0e\x55\x29\ \xe0\xe9\x3a\x47\x74\x74\x34\x4c\x26\x13\x7a\xba\xbb\x51\x5b\x5b\ \x8b\x3b\x57\xaf\x86\x20\x08\x3e\x13\xc1\xe2\xc5\x8b\xd1\xd7\xd7\ \x87\xfa\xb3\x67\xd1\xd2\xdc\x8c\xb8\xf8\x78\x47\x00\x49\xa9\xa2\ \x35\x8a\x7d\xb8\x5c\x97\x99\x87\x2e\x80\x73\xf9\xcd\x0a\xcf\x24\ \x10\x15\x19\x05\xb3\xd9\x2c\xf1\x11\x48\x0f\x56\x52\x5c\x58\xf8\ \xe6\x99\x33\x67\x7a\x6e\x08\x01\x64\x65\x67\xff\x91\x88\xb2\x95\ \x0d\x0b\x0f\x0f\xc7\xfc\x92\x12\x30\xe7\x5c\x5f\x8d\xeb\x3d\x8b\ \x79\x95\xa9\xa1\xf2\x1b\x9c\x23\x29\x29\x09\xad\xad\xad\xe8\xe8\ \xe8\x80\x71\x64\x04\x0b\x17\x2e\xf4\x3d\x58\x41\x84\x45\x8b\x16\ \x61\x60\x60\x00\x75\xf5\x75\x68\x69\xb9\x8c\x98\xd8\x58\x44\x47\ \x47\x6b\x16\xfb\x32\x5b\x46\x15\x70\xa8\x03\xae\x04\x5d\x31\x23\ \x1a\x95\x7c\x71\xb1\x71\xe8\xec\xea\x84\xdd\x6e\x97\x4b\x59\x80\ \x81\xb1\xac\x33\xb5\xa7\xff\xeb\xba\x13\xc0\xb2\x95\x2b\x97\x03\ \xd8\xaa\x14\xfb\x44\xc0\xbc\xb9\x73\x11\x25\xb1\xac\xd5\xf4\xb8\ \x96\xe8\x9a\x12\x70\xa5\xc8\x25\xc6\x90\x10\x1f\x8f\xe6\x4b\x97\ \x50\x57\x57\x87\xa2\xc2\xc2\x31\x57\xb0\xaf\x44\xb0\xb0\xbc\x1c\ \x46\xe3\x08\x4e\x9f\x3e\x8d\xd6\xcb\x97\x11\x13\x13\x83\x98\x98\ \x68\x55\xb1\xaf\xce\xe5\xae\x7a\xdc\x2b\xe0\xae\xfe\x67\x95\x91\ \x01\x88\x11\xa2\x22\x23\x9d\xaa\xc0\x25\xae\x92\x53\x54\x3c\xe7\ \xd0\x99\xda\xda\xc6\xeb\x4a\x00\x99\x33\xb2\xff\x40\x44\x19\xd2\ \xb9\x2a\x73\xce\xf7\xa7\x65\x4c\xd3\xac\xd7\xbd\x79\xdd\xd4\xa6\ \x67\xd2\xef\x84\x85\x87\x83\x18\x43\x67\x47\x07\xaa\x8f\x1d\xc3\ \xea\xd5\xab\x11\xe6\xc5\x31\xe4\x8e\x08\xca\xcb\xca\x60\x36\x99\ \x70\xea\xd4\x29\xb4\xb6\xb6\x22\x2a\x3a\x06\x31\x31\x31\x2e\x80\ \xab\x98\x70\x6e\xf5\xb8\x0b\xe0\x5e\x8a\x3b\x7a\x08\x0b\x0b\x83\ \xc5\x62\xc1\xb0\x71\x58\x36\xcb\x02\x08\xc4\x30\x37\x2f\x27\xf7\ \x15\x7f\xa2\x86\x7e\x11\xc0\x8a\x3b\xee\xf8\x22\x11\xad\x67\x8a\ \xe8\x5e\x48\x48\x08\x8a\x8a\x8a\xc0\x04\xa6\x1a\x3d\x73\xd1\xeb\ \x1e\xdc\xac\xa4\x61\x3e\x3e\x3a\xc0\xf1\xf1\x09\xe8\xe9\xee\x46\ \x4f\x4f\x0f\x2e\xb7\x5e\xc6\xed\xb7\xdf\xee\xb7\x5a\x5b\xb0\x60\ \x01\xec\x76\x3b\x4e\x9c\x3c\x89\xb6\xd6\x56\x44\x45\x45\x21\x66\ \x4a\x8c\x7c\xde\xef\x32\x9d\xf3\xa0\xc7\xbd\x20\x2c\x77\x14\xa9\ \x48\x3e\xc9\x2f\x46\x45\x47\xa1\xb3\xb3\x6b\x6c\xaa\x48\x44\x60\ \x8c\x40\x44\xc9\x3a\xbd\x70\xa2\xf6\x64\x6d\xc3\x75\x21\x80\x19\ \xb3\x66\xfd\x11\xa0\x54\xa5\x38\xca\x9c\x3e\x1d\xf1\x71\x71\x1e\ \xa3\x6b\xaa\xba\xdd\x8d\x9b\xd5\x1d\xe0\x70\x31\xaf\x08\x86\xa4\ \x24\x34\x5f\xba\x84\xc6\xc6\x46\x24\x25\x27\x23\x37\x37\xd7\x6f\ \x22\x28\x2d\x2d\x05\x00\xd4\x1c\x3f\x8e\xb6\x2b\x6d\x88\x88\x88\ \x44\x6c\xec\x14\x8f\x4a\xdd\x2d\x80\x2a\x7a\x9d\x7b\x25\x12\xc5\ \x3d\xce\x5f\x60\x8c\x81\x88\x30\x30\x38\xe0\xe2\x20\x02\x30\xb5\ \xf6\x64\xed\x6f\x27\x9c\x00\x6e\x5f\xb5\xaa\x02\xc0\xe6\x31\xf1\ \xe3\x6c\x40\x58\x58\x18\x72\x73\x73\x40\x44\x1e\xc3\xa5\x9e\x18\ \x42\x49\x0c\xee\x00\x57\x73\xab\x86\xe8\x74\x88\x88\x88\x40\xdb\ \x95\x36\x54\x57\x57\xe3\xf6\xdb\x6e\x77\x88\x6f\x3f\x4b\x49\x49\ \x09\x42\x74\x3a\x54\x57\x57\xa3\xfd\xca\x15\x84\x87\x85\x23\x36\ \x36\xd6\x3f\x2e\xd7\x04\x38\x77\x01\x9c\x83\x03\x24\x1f\xa1\xa8\ \xa8\x48\xf4\xf6\xf6\x42\x14\x45\xa5\x3d\x90\x39\xb7\x74\xce\x5f\ \x4f\x9d\x38\xd5\x31\xa1\x04\x90\x95\x93\xb3\x9d\x80\x62\x25\x05\ \x66\x65\x66\x22\x2a\x32\xd2\x35\x40\xa2\x00\xd8\x6b\xf4\x4c\x31\ \x4c\xea\x80\xab\x4d\xb7\x80\x98\x98\x18\x0c\x0d\x0d\xe1\x6a\x6f\ \x2f\xea\xea\xea\x70\xe7\x9d\x77\x3a\x67\x22\xfe\x95\xb9\x73\xe7\ \x22\x34\x34\x14\x47\x8f\x1e\x45\x7b\x7b\x3b\x42\xc3\xc2\x10\x1b\ \x17\x1b\x30\xe0\x5c\x09\xb8\xd4\x25\x4e\xaa\x8a\x46\x6a\xad\x40\ \x10\x04\x5c\x1b\xb8\x36\x9e\x4d\xed\xc4\x80\x83\x85\xd7\x9e\x38\ \xf9\x97\x09\x23\x80\x95\x2b\x57\xc6\x83\xb1\x5f\x13\x51\x88\x54\ \xf7\xeb\xf5\x7a\xcc\x98\x31\x43\xc2\xfd\xea\x00\xcb\x9c\x00\x9e\ \xc2\xa5\xaa\x83\xeb\x3e\xf8\x22\xbd\x25\x31\x31\x11\xad\xad\xad\ \xb8\xd2\xd6\x26\x13\xe7\xfe\x96\x39\xc5\xc5\x88\x88\x8c\x74\x12\ \xc1\x15\x84\xea\xf5\x88\x8d\x8b\xf3\x4d\x8f\x73\x57\x40\x65\xe3\ \x44\x72\x61\xa0\x14\x0e\x4a\xa2\x0f\x0b\x0b\x43\xef\xd5\x5e\x95\ \x74\x32\xe4\x17\x2d\x28\x7b\xb5\xb6\xa6\x66\x68\x42\x08\x60\x46\ \x6e\xee\x1a\x00\x77\x29\x74\x0f\xd2\x52\x53\xc7\xc5\xad\x3b\xc0\ \x55\x44\xb8\x5a\xb8\x54\x92\x14\xe8\xe2\x36\x55\x0e\xa1\x9a\x9b\ \x95\x31\x86\x98\xd8\x29\xb8\x7c\xf9\x32\x4e\x9e\x3c\x89\xf2\xf2\ \x72\x24\x27\x27\x07\x44\x04\x45\x45\x45\x88\x89\x89\xc1\xe1\x4f\ \x0e\xa3\xa3\xbd\x03\x21\x21\x21\x88\x8b\x8f\x87\x67\x5e\xe5\x2a\ \x84\xcc\x5d\x2d\x48\xa8\x38\x8c\x14\x80\x2b\xbf\x41\xe4\xf8\xef\ \x88\x18\xca\xd4\x80\x40\xa2\xbd\xeb\xd4\x89\x93\x1f\x4f\x08\x01\ \xcc\xcc\xc9\x79\x95\x88\x92\x64\xfe\x7e\x41\x40\x56\x56\x16\x18\ \x91\x6a\xda\x93\xdc\xeb\xaf\xea\x5a\x73\x75\xb3\xaa\x89\x7d\x29\ \xa3\x70\x75\xdf\xfa\xe8\x17\x23\xc2\x23\x20\xda\xed\xe8\xe9\xed\ \x41\x75\x4d\x0d\xee\xbe\xeb\x6e\xf5\x85\xa3\x3e\x85\xbb\x0b\x10\ \x1f\x17\x8f\x8f\x0f\x1d\x42\x47\x47\x07\x04\x81\x21\x3e\x21\x5e\ \x1d\x40\x15\xc0\xb9\xfb\xb9\x8f\xab\x13\x4c\x2d\x27\x41\x21\x15\ \xc2\x42\xc3\x70\xb5\xef\xaa\x6c\x1a\xeb\xcc\xbd\x98\x72\xe2\xf8\ \x89\x5f\x07\x9d\x00\xee\xb8\xeb\xae\x3c\x02\x9e\x50\xc6\xfa\x13\ \xe2\xe3\x65\x7e\x78\xd2\xc0\x0c\xe3\x5f\x74\x93\x99\xcf\xbd\xcd\ \x92\xe1\xb2\xde\x4e\x59\xe2\x0d\x09\xe8\xea\xec\x42\x77\x57\x37\ \x7a\xba\xbb\x51\x55\x55\x15\x70\xd4\x33\x3f\x3f\x1f\x89\x49\x89\ \xf8\xf8\xe3\x8f\xd1\xd9\xd9\x09\x81\x09\x48\x48\x30\xb8\xf4\x51\ \x2d\x38\xa9\xb6\x81\x85\x5c\xec\x93\x9b\xef\xab\xd7\x19\x63\xb0\ \x58\x2d\x30\x9b\xcd\xce\x18\x01\x46\x23\x86\xa9\xa5\xf3\x4a\x5e\ \x3d\x7e\xfc\xf8\x40\x50\x09\x60\x66\x5e\xde\xbf\x13\x70\x87\x34\ \xd3\x87\x88\x90\x9a\x92\x02\x7d\x48\xc8\x58\xe6\x8e\xdb\x5c\x79\ \x70\x99\x27\x4d\xad\xee\x2e\xba\x26\x0d\xce\x8c\xe7\xe9\x2b\xea\ \x4a\x2f\x21\x80\x04\x43\x02\x5a\x9a\x5b\xd0\x70\xee\x1c\x32\xb3\ \xb2\x90\x9d\x9d\x1d\x30\x11\xe4\xe5\xe6\x61\x6a\xf2\x54\x7c\xf8\ \xe1\x47\xe8\xec\xec\x04\x18\x21\x21\x21\x41\x16\x3c\x92\xcf\x6e\ \xb9\x22\x98\x25\xb5\x11\x24\x72\x41\xd1\x5f\xa5\x36\x85\x72\x5d\ \x04\x38\x18\x23\x0c\x0c\x0c\x2a\xb3\xad\x89\x31\x6a\x39\x5e\x73\ \xfc\x48\x50\x09\x60\x56\x6e\xee\x76\x22\xca\x82\xe4\xc7\x42\x42\ \x42\x90\x92\x92\xe2\x16\x50\x35\xbd\x0d\x4f\x59\x31\x4a\x40\x55\ \xdc\xac\xca\x47\xa9\x09\xd4\xd1\xcf\x7a\xbd\x1e\x7a\x7d\x08\xba\ \x3a\xbb\x70\xec\xd8\x31\xac\x5a\xb5\x0a\x51\x51\x51\x81\x27\xbf\ \xe4\xe4\x20\x2d\x2d\x0d\x07\x0f\xfe\x13\xdd\x5d\x5d\xe0\x9c\x4b\ \x12\x52\x83\x93\xc2\x2f\x15\xfb\xe4\xa6\xff\xba\x90\x10\x0c\x0c\ \x0c\x38\x8c\x41\xc8\x32\x8a\xc3\x8f\x57\xd7\xfc\x26\x68\x04\x70\ \xfb\xbd\xf7\x4e\xd1\x89\xf6\x9f\x13\x41\x16\xf5\x8b\x8b\x8b\x1d\ \x5f\xbf\xa7\x06\xb0\x06\x6b\x5e\x1d\x60\xee\x56\x87\x78\x0a\x9f\ \x92\x0a\x39\x4c\x99\x32\x05\xd7\xae\x5d\x43\xef\xd5\x5e\x9c\x3f\ \x7f\x01\x5f\xfa\xd2\x97\x7c\x4a\x20\x71\xcb\x10\xb3\x66\x61\xda\ \xb4\x69\xd8\x7f\xe0\x00\xba\xbb\xbb\x21\x8a\x22\x0c\x89\x89\x32\ \xd7\xb7\x9c\xc3\xd5\x62\x1b\x8a\x28\xa3\x52\x15\xba\x98\xcc\x72\ \x29\x09\x02\xec\x36\x3b\x4c\x66\xb3\x52\x0a\x64\xcc\x2f\x29\xfd\ \x45\x4d\x4d\x8d\x31\x28\x04\x90\x3f\x73\xe6\xdd\x44\xf4\x75\x65\ \xc8\x37\x39\x29\xc9\x91\xda\xed\x41\xe5\xbb\x6e\x9f\x22\xaf\x90\ \x67\xeb\xc1\xbd\xf9\x00\xae\xbe\x3e\x4f\xb6\xf8\xde\xe9\x25\x34\ \x18\xd0\xd6\xda\x8a\x96\x96\x16\x44\x44\x84\x63\xce\x9c\x39\x41\ \xe1\xd2\xec\xec\x6c\xcc\xc8\xca\xc2\x81\x7f\x3a\x88\xc0\x6e\xb7\ \x23\x29\x29\xd1\x5d\xef\x3d\xea\x79\x87\x49\xa4\x30\x0c\xc9\xfd\ \x73\x68\xcc\x16\x20\x0c\x8e\x86\x8a\x21\x4d\x18\x11\x0e\xd6\x54\ \x57\x5f\x08\x0a\x01\xe4\xe4\xe7\xdf\x47\x44\x0b\xa5\xa9\x49\x8c\ \xb1\xb1\xce\xaa\x26\x52\x6a\xd1\xdb\x6e\xc4\xbe\x5a\xbc\xdc\x93\ \x2e\x75\xe7\x5a\x1e\x9d\x42\x31\x41\x40\x54\x74\x14\xae\xb4\x5d\ \xc1\xf1\xe3\x35\xa8\x5c\xba\x14\x86\x84\x84\xa0\x10\xc1\x8c\x19\ \x33\x30\x33\x7b\x26\xf6\xef\x3f\x80\x9e\x9e\x6e\x58\x2c\x16\x18\ \x12\x0d\xaa\x53\x3d\x99\x87\x4f\x19\x0e\x97\x2f\x79\x54\xe8\x34\ \x35\x57\xb8\xe3\x5e\x41\xd0\x61\x60\xe0\x9a\x4c\x05\x30\xc7\x71\ \xb1\xfa\x58\xf5\x81\xa0\x10\x40\x6e\x7e\xfe\x7a\x22\xca\x94\x3a\ \x7f\x22\xc3\xc3\x11\x15\x1d\xad\x29\x3c\xea\x4d\xb2\xfb\x2a\xd6\ \x7d\x8b\xa6\x39\x9e\x13\x11\x11\x09\x8b\xc5\x82\xab\xbd\x57\x71\ \xe2\xc4\x09\x7c\xf9\xcb\x5f\xd6\x9c\x51\xec\x35\x32\x9a\x99\x89\ \xdc\x9c\x1c\xec\xfb\xc7\x3f\xd0\xdb\xd3\x0b\x8b\xc5\x82\x44\x99\ \x24\x50\x7a\x75\xbc\x4b\x3a\xcf\x75\xf9\x6c\xc8\x62\x36\xc3\x6e\ \x57\xe6\x0e\xc2\x5c\x7d\xb4\xfa\xf7\xc1\x21\x80\xd9\xb3\x77\x11\ \x51\xd8\x28\x95\x31\x22\xc4\xc4\xc4\x20\x54\xaf\xf7\x00\x8e\x76\ \x3d\x2e\x05\x3d\x50\xc0\xd5\xdc\xac\xa3\xdf\x34\x18\x12\xd0\xd9\ \xd1\x81\xce\xce\x4e\x0c\x0d\x0d\xa3\x62\xc9\x12\x04\xab\x4c\x9f\ \x3e\x1d\xb3\x67\xe7\x63\xdf\xbe\x7d\xe8\xed\xed\x85\xd9\x6c\x46\ \x52\x52\x92\xdb\x35\xe6\xdc\x27\xf8\x3d\x17\xbb\x28\xc2\x32\x6a\ \x07\x8c\x61\xc4\xe2\x8e\x1d\x3d\xf6\x6c\xc0\x04\xb0\xfa\x9e\x7b\ \x66\x08\x44\x8f\x2b\x17\x77\x86\x87\x87\x21\x2c\x34\xcc\x55\xc9\ \x6b\xec\x8e\xd4\xc8\x71\xd1\xe5\x4a\x3d\xae\xa2\xd7\xa5\x27\x3c\ \xdc\x2e\x9b\x7f\x13\x11\x62\xe3\xe3\xd0\xda\xda\x8a\x33\x75\x75\ \x28\x2c\x28\xc0\xb4\x69\xd3\x82\x46\x04\x19\x19\x19\x28\x28\x28\ \xc0\xbe\xfd\xff\x40\x4f\x4f\x2f\x4c\x26\x93\xc4\x0b\xa9\xdc\xd0\ \x86\x5c\x54\x3c\xb9\x33\xfb\x49\xb1\x1b\x82\xa2\x6e\xb5\x58\x61\ \xb1\x98\x15\x11\x42\x84\xcf\x5f\x38\xff\x8f\xd5\x47\xaa\x7b\x03\ \x22\x80\xfc\x82\x82\xe5\x44\xf8\x1f\xb2\x24\x04\x22\x98\x4d\x26\ \x00\x04\xbd\x3e\x54\x35\x09\xc2\xad\x75\xcf\xb9\x0b\x60\x5e\x79\ \xde\x4b\xd6\x8c\x2c\x30\x4c\x72\x52\x51\x7a\x16\x43\x43\x43\xc1\ \x98\x80\x9e\x9e\x6e\x1c\x39\x7a\x14\x77\xdd\x79\x97\x63\x99\x58\ \x90\x4a\x7a\x7a\x3a\x8a\x8b\x8a\xf0\x81\x53\x12\x8c\x18\x8d\x48\ \x4a\x4e\x1e\x07\x8f\xfb\xc2\xf7\xde\xa5\xea\xd0\xd0\x10\x06\x87\ \x06\x5d\xd6\x5f\x3a\x2c\x41\x76\xe0\xe8\x91\xa3\x67\x03\x23\x80\ \xd9\xb3\xef\x21\xa2\x15\x6a\x9b\x3b\x98\xcd\x66\x58\xad\x36\xc7\ \xb2\x6b\x82\x9b\x2c\x19\xae\x4c\xfc\x51\x77\x8a\xa8\x04\x8b\xa0\ \xba\x10\x43\x6e\x4a\x79\xbe\xd5\x35\xeb\x08\x00\x62\x63\x63\xd1\ \xd7\x7b\x15\x57\x7b\x7b\x71\xa9\xf9\x12\x56\xad\x5a\x85\x60\x96\ \xb4\xb4\x34\xcc\x9b\x3b\x17\xfb\xf6\x7d\x80\xde\xde\x5e\x18\x8d\ \xc3\x63\x92\x40\x2d\x52\xe8\xd2\x3b\x35\x3e\x52\xd4\x45\x51\xc4\ \xc0\xb5\x01\x18\x47\x46\x94\x29\xe3\x52\x47\xdd\xe1\xa3\x9f\x1c\ \xfd\x24\x20\x02\x98\x5d\x50\x70\x2f\x88\xca\x94\xab\x56\x47\x29\ \xce\x66\xb3\x63\xc4\x34\x02\x7d\x48\xc8\x58\x12\x28\x79\xe5\x58\ \xf7\x4e\x8f\x31\xab\x5e\xb1\xf2\xc6\x9d\x4b\x94\xab\xba\x55\x3d\ \xd5\x1d\x27\xe2\x13\x12\xd0\xd6\xda\x86\xc6\xc6\x26\x24\x26\x25\ \x62\x76\xfe\xec\xa0\x12\x41\x4a\x4a\x0a\x4a\x4a\x4a\xb1\xef\x03\ \x07\x11\x0c\x0d\x0d\x21\x79\x6a\x32\x54\x27\xbe\xee\x75\xa4\x6a\ \xb1\x59\x6d\xe8\x1f\xb8\x06\x9b\xcd\xea\xc4\x04\xaa\x9b\x4c\x80\ \x50\x77\xf4\x93\xa3\x7f\xf7\xd4\x4e\xef\xc1\x72\xa2\xa9\x2e\xcb\ \xbd\x14\x14\x27\xda\xed\x8e\x3d\x75\x07\x07\xc1\x45\x0e\xce\x45\ \x17\x27\x88\x14\x7e\x51\x6d\x11\xa6\xd2\xdd\x21\xa9\x90\x34\x62\ \x28\x4a\x39\x5a\x54\xb0\x86\x08\x40\x84\x5a\xce\x8d\xf2\x08\x0d\ \x0b\x43\x7e\x41\x01\x00\xe0\x27\xcf\x3d\x87\xe6\xe6\x66\x04\xbb\ \xcc\x9d\x33\x07\x2f\xbd\xf4\x12\x22\x23\xa3\x70\xe5\x4a\x3b\x4e\ \x1c\x3f\x01\x51\x14\xd5\x9d\x5e\x5c\x11\x40\xe2\x6a\x01\x25\x8e\ \x61\xe3\x10\xae\x0d\xf4\x3b\x9e\xa3\x22\xf6\xe5\x53\x41\x96\xee\ \xad\x8d\xde\x09\x80\xb1\x44\x17\x11\xe3\xba\x48\x01\x00\x60\x1c\ \x19\xc1\xd5\xbe\xab\x30\x9b\xcd\x10\x39\x97\x1d\xae\xf1\x01\xd1\ \x79\x28\xcf\x49\x53\xc7\x44\x37\x7b\xf0\xb8\xde\xe3\xcb\x21\x8a\ \x8e\x7b\x92\xa7\x26\x23\x25\x35\x05\x23\x46\x23\x36\x6e\xda\x08\ \xdb\xe8\xfe\xbf\x41\x2c\x45\x45\x45\x78\xf9\x97\xbf\x44\x4c\x74\ \x34\xda\xaf\xb4\xe3\x78\x4d\x0d\xec\x76\xbb\xa3\x1d\x0a\xaf\xa8\ \x92\x74\x45\xc9\x27\x8b\xc5\x82\xfe\x6b\xd7\x60\x32\x99\xc6\x04\ \x84\xdc\x31\xa7\x58\x4d\xec\x30\x33\xbd\x12\x80\x57\x15\x50\x50\ \x54\xb0\x9e\x00\x03\x53\xdf\xc7\xc6\xe5\xe0\x9c\xc3\x6c\xb1\xc0\ \x66\xb3\x81\x31\x06\x46\x04\x35\x4f\x87\x34\x40\xe4\xba\x46\xc0\ \x9d\x96\x94\x27\x5c\x28\xc3\xa5\xf2\xa9\x20\x5c\x16\x5d\x8e\x49\ \x14\x3e\x6e\x90\xc6\xc7\xc7\xa3\xa3\xbd\x03\x57\xda\xaf\x80\x73\ \x8e\xb2\xb2\xb2\xa0\x13\x41\x62\x62\x22\xca\x17\x2e\xc4\x07\xfb\ \x3e\xc0\xd5\xde\x5e\x5c\xeb\x1f\xc0\xd4\xe4\xa9\x0e\xa0\x54\x03\ \x19\xe3\x46\x80\xdd\x66\x87\xd1\x68\x84\xc9\x34\xe2\xcc\x05\x50\ \xdf\x58\x4a\xf5\x10\x60\xfb\xe4\xd0\x27\x2f\x06\x24\x01\x08\x94\ \x38\x46\x51\x4a\x0a\xf3\x50\xb7\x5a\xad\x18\x1c\x1c\xc0\xd0\xf0\ \x30\x6c\x76\x3b\x44\x91\xbb\xdd\xf5\x4b\x79\x4d\x5e\x17\xc7\x38\ \xd6\xdf\x03\x6e\x25\x8e\x63\x87\x8e\xc2\xc2\x42\x10\x08\xaf\xbe\ \xfa\x2a\x4e\x9c\x08\xfa\x26\x1c\x0e\x63\x3a\x2f\x0f\xff\xf9\xcb\ \x97\x11\x1b\x17\x8b\xae\xee\x4e\xd4\xd4\x54\xc3\x2e\xda\x25\xbc\ \x2e\x6f\x9b\xcd\x6e\x83\xd1\x38\x82\xa1\xe1\x21\xd8\x9c\x4e\x1e\ \xef\x4c\xe8\xb2\xc7\x50\x44\xc0\x2a\x80\x48\xb1\xec\xcb\x6b\x03\ \xe4\xe7\x46\xb7\x6c\x1b\x19\x31\xc2\x66\xb7\x7b\x8e\x10\x2a\xbd\ \x5c\x1e\x3d\x3e\x50\xcf\xd0\x1d\x4b\x29\x17\x9d\x87\x84\xd8\x94\ \x0b\x52\x9d\x6d\x99\x12\x17\x8b\xcc\xac\x4c\x88\xa2\x88\x8d\x9b\ \x36\x62\x78\x78\x78\x42\x88\x20\x37\x37\x17\xaf\xbc\xfc\x0a\x12\ \xe2\x13\xd0\xdd\xd5\x8d\x9a\x63\x35\x10\x45\x2e\xeb\xb2\xcd\xee\ \x30\xaa\x8d\x46\xa3\xcc\xbb\xe7\x9e\xe9\x14\x6b\x04\x64\xd7\x29\ \x3c\x18\x04\xa0\x9d\xe2\x24\x44\xe0\xcc\x57\x1f\xab\xdb\xec\x0e\ \x51\x66\x1c\x36\xc2\x62\xb1\x28\xb8\xda\x3b\x87\x8b\x5c\xae\x21\ \x45\xc9\x3d\xa3\xc6\xa1\x2c\xc2\x26\xba\x59\xc0\xa9\xfa\x6c\x8e\ \xac\x19\x33\x20\xe8\x74\x68\xbb\x72\x05\x3b\x76\xee\xc0\x44\x95\ \x99\x33\x67\xe2\x57\xaf\xfc\x0a\x06\x83\x61\x6c\x2d\x83\xc8\x45\ \x58\xac\x16\x18\x8d\xc3\x30\x99\x46\xc6\x96\x80\xa9\x8f\x3f\xa0\ \x9d\x21\xbd\x47\x3d\x75\x5a\x08\xc0\xd5\xcb\xe6\xfa\x12\x07\x0d\ \x1b\x22\x3b\x66\x0c\x5c\x84\xc5\x62\x86\xc5\x62\x86\x4e\xa7\x83\ \x20\x08\x63\x8b\x3a\xdd\xed\x9c\xa9\x56\x27\x00\x5c\xd2\x16\xe5\ \xe4\xca\xad\xd7\xcd\xa1\x49\x41\xaa\x56\x38\x57\xc9\xdb\x9b\xa0\ \xc2\x1d\x63\x21\xda\xed\x18\x19\x19\xf1\x32\xde\xf2\x31\xd4\x5a\ \xd7\x12\xf4\xf6\x4e\x00\x6c\x6c\xa4\x5d\x08\xc0\xb7\xf7\xef\xb9\ \x76\x4e\x14\x1d\xfa\x7d\xd4\x60\x14\x04\xc1\x6d\x1a\x37\x8d\xb9\ \x49\x94\xf0\x72\xf7\x75\xb7\x97\x9c\x1f\xf8\xb8\x5b\xb5\xf1\xd3\ \x46\x58\x6d\x36\xa4\xa6\xa6\x62\xc3\xc6\x89\xdb\xa5\xf5\xe2\xc5\ \x8b\x58\x73\xff\x1a\xf4\xf4\xf4\x20\x21\x21\x01\x31\x53\x62\x3c\ \x02\xee\x89\xe9\x5c\x98\x50\x83\x0f\xc1\x67\x02\x60\xa0\x11\x4e\ \x8e\x9d\xbd\xbd\x71\xb9\x37\xc0\x3d\xd5\x47\x55\xc2\xe8\x79\x81\ \x31\xc7\x4a\x18\x46\x1a\x00\xf5\x86\x3d\x97\xf1\x3d\x29\xbe\xd1\ \xdf\xdf\x8f\x4b\x4d\x97\xc0\x18\xc3\xce\x1d\x3b\x15\x49\x2e\xc1\ \x2b\x0d\xe7\x1a\xb0\xe6\xfe\x35\xe8\xef\xeb\x47\x42\x42\x02\x8a\ \xe7\x16\xfb\x04\xb0\x2a\x13\x2a\x00\x57\xec\xc5\x6c\x0b\x98\x00\ \x40\x64\x24\x3f\x01\xf7\x85\x08\x94\xd4\x6b\x77\x4a\x07\xc7\x8a\ \x63\x36\x6e\x05\x33\xd2\x40\x0b\xae\x92\x82\x14\x33\xad\xd1\x2b\ \x76\x9b\x1d\x75\x67\xea\xc0\x39\xc7\x7d\xdf\xfe\xdf\x28\x99\x37\ \x6f\x42\xc0\x3f\x7b\xf6\x2c\xee\x7f\xe0\x7e\xf4\xf7\xf7\xc3\x90\ \x68\x40\xf1\x9c\xe2\x31\x69\xa7\xfd\x95\x77\xe4\x0d\x70\xe5\xab\ \x6a\x7a\x02\x57\x01\x44\xed\x00\x66\x68\x15\xeb\xbe\xea\x71\xb8\ \xa5\x66\x69\x67\x1d\xc6\x9d\x28\xd1\xcf\x44\xcc\x65\x30\x18\x31\ \x99\x58\xe7\x1a\xa4\xc6\xb9\x86\x73\x18\x19\x31\xa1\xa8\xb0\x10\ \xdf\xf9\xce\x77\x26\x04\xfc\xba\xba\x3a\xdc\xff\xc0\xfd\x18\x18\ \x18\x40\x62\x52\x22\x8a\xe7\x14\x39\xc1\xf7\xfe\xa6\x53\xd7\x88\ \xa1\x0f\xaf\xbc\x23\xea\x08\x02\x01\xb0\x56\xa9\x55\x14\x1c\xc0\ \xd5\xa8\x59\xd9\x59\x6f\x75\x57\x3d\xee\x70\x41\x6b\xd4\x11\x00\ \xba\xba\x3a\xd1\xd1\xde\x8e\xf0\xf0\x70\xec\xdc\xb9\x33\x68\x09\ \x22\xd2\x52\x5b\x5b\x8b\x07\xbe\xf3\x00\x86\x87\x1d\xb1\x80\xc2\ \xa2\x42\xe7\x22\x4f\xbf\xc5\xba\x0f\x75\xde\x1d\xb8\x0d\x40\xd4\ \xca\x7d\x00\xdc\xbd\x58\xf7\x0e\xb0\x77\xa9\x30\xde\x39\x72\x0d\ \x96\x8f\xdf\xa1\xa1\x6e\x36\x9b\x71\xfe\xdc\x79\x00\xc0\xba\x75\ \x8f\x23\x73\x7a\x66\xd0\xc1\x3f\x79\xf2\x24\xbe\xfb\xe0\x77\x31\ \x3c\x3c\x8c\xe4\xa9\x53\x51\x54\x5c\x24\x9b\xbf\x07\x15\x70\x95\ \xbc\x02\x4e\x2c\x70\x09\x20\x82\xb7\xb2\xa0\x88\x75\xf2\x51\xec\ \xbb\x76\x56\x33\xc0\xb2\xd3\xca\xba\xd3\x20\xab\x3f\x0b\xbb\xcd\ \x8e\x15\xcb\x57\xe0\xde\xaf\x7e\x35\xe8\xe0\xd7\xd4\xd4\xe0\x7b\ \x0f\x7d\x0f\x46\xa3\x11\x29\xa9\x29\x28\x2c\x2a\x18\x77\xd6\xa8\ \xf5\xd1\x07\x31\xef\xed\x55\xb6\x63\xb1\x02\xa0\x33\x08\xb3\x00\ \x76\xd9\x93\xde\xd7\x24\xd6\x35\x8b\x7d\x79\xe7\xb4\x01\xaa\x06\ \x30\xb9\xbe\xb4\x43\xf2\x82\xc7\x96\xe6\x16\xf4\xf7\xf5\xc3\x60\ \x30\xe0\x89\x27\x9e\x08\x3a\xf8\x47\x8f\x1e\xc5\x43\xdf\x7f\x08\ \x26\xb3\x09\xa9\x69\xa9\x28\x2c\x2c\x18\xdb\x42\xc7\xab\xde\xd6\ \x5c\x87\xf7\x37\x99\x32\x56\x1f\x30\x01\x08\xc0\x19\xee\x0d\x70\ \x1f\xc4\xbc\xda\x5c\xd5\x9d\x58\xf7\xb5\xae\xc6\x0d\xca\xfa\xd0\ \xe0\x20\x9a\x1a\x9b\x40\x8c\xf0\xd4\x93\x4f\x21\x2e\x2e\x2e\xa8\ \xe0\x1f\x3e\x7c\x18\x0f\x3f\xf2\x30\xcc\x66\x13\xd2\xd3\xd3\x50\ \x50\x58\x10\xa0\x1e\xf7\x01\x70\x05\xa1\x0b\xb0\x9d\x0c\xd8\x15\ \xfc\xda\x6b\xaf\x9d\x27\xe0\xaa\xca\x16\xe6\xaa\x5b\xc1\x7b\xae\ \xc3\xe5\x8d\x21\x8c\xfc\x7d\x96\xb4\xae\x1e\x1e\x55\xd6\xc1\x39\ \xea\xeb\xea\x21\x72\x11\x5f\xff\xfa\xd7\x51\x51\x51\x11\x54\xf0\ \x3f\x3e\xf4\x31\x1e\x7e\xf8\x07\x30\x9b\x4c\xc8\xc8\xc8\x40\x61\ \x51\xa1\x67\x57\x2d\x3c\xd5\xdd\xf7\x89\xb9\xeb\xa3\xfc\xe8\xdf\ \xba\xf5\xe9\xc6\x80\x25\x00\x00\x4e\xc4\xaa\x41\xfc\x0e\x6d\x7a\ \x5b\xa3\x1e\x0f\x58\xcc\x43\xe5\xbd\xbd\xf2\xba\xd2\x56\xb9\x70\ \xfe\x02\x8c\xc3\x46\xcc\x9c\x31\x13\x8f\xfe\xf0\xd1\xa0\x82\x7f\ \xf0\xe0\x41\x3c\xba\xf6\x51\x58\xad\x56\x4c\x9b\x3e\x0d\xb3\x67\ \xcf\xd6\x3e\x5d\xf3\xc2\xe5\xde\xfa\xac\xe6\x47\x21\xa2\x93\x5a\ \xda\xad\x69\xde\xc3\x08\x9f\x70\xa2\x3b\xb4\x89\x7d\x2d\x7a\xdc\ \x1f\x31\xef\xbd\xf3\x9e\x8c\xd3\xde\x9e\x5e\xb4\xb5\xb6\x22\x24\ \x24\x04\x3b\x9f\xde\xe9\xc8\x63\x0c\x52\xd9\xbf\x7f\x3f\xd6\x3d\ \xbe\x0e\x36\xab\x15\x99\x59\xd3\x91\x97\x9f\x17\x3c\xb1\xee\xad\ \x3e\x36\x54\xca\x37\x9e\xb1\xe0\x11\x00\x31\x3a\x3a\x3e\x85\xf6\ \x6d\x7a\xe6\xff\x74\x4d\x5b\xe7\xbd\xfb\x21\x00\x8b\xc5\x8a\xfa\ \xfa\x7a\x70\x0e\x3c\xf4\xd0\x43\xc8\xcb\xcd\x0b\x1a\xf8\x1f\x7c\ \xb0\x17\x1b\x36\x6e\x80\xcd\x66\x43\xd6\x8c\x2c\xe4\xe6\xe7\x7a\ \x06\xdc\x4d\xbf\x7c\x91\x6c\x9a\xde\x4d\x4c\xfc\x50\xd0\x08\x00\ \x76\x1c\x21\x81\xec\xa0\xf1\x0c\x22\xf2\x73\xfe\xed\x5e\x0d\xf8\ \x27\xd6\xb5\x44\x2b\xcf\xd6\x9f\x85\xd5\x62\x45\x59\x59\x19\xbe\ \xf5\xcd\x6f\x05\x0d\xfc\x3d\x7b\xf6\x60\xe3\xa6\x8d\x10\x45\x11\ \x33\xb2\xb3\x91\x9b\x9b\xe3\x71\x7a\x16\x4c\xc0\x3d\x4d\x0f\x89\ \xc8\xaa\xd7\x8d\xfc\x5d\x13\x73\x6b\xed\xec\x03\xdf\x7d\xe0\x00\ \x07\x96\xf9\xaf\xb7\x27\x12\x70\xb8\x75\xab\xb6\xb5\xb6\xe2\x6c\ \x7d\x03\x62\x62\x62\xf0\xe6\x9f\xde\xc4\xd4\xa9\x53\x83\x02\xfe\ \xbb\xef\xbd\x8b\x2d\x5b\xb6\x40\x14\x45\xcc\x9c\x95\x8d\x59\x39\ \xb3\x7c\xd2\xe3\x9e\x09\xc4\xcb\xfc\x5f\x85\x28\x14\x84\xbf\x7f\ \xcb\xe6\xad\x2b\x82\x27\x01\x00\x70\xc6\xff\x4c\x9c\x2d\x0b\x86\ \x1e\xf7\xd4\x79\x6d\x9e\x46\x6d\xd1\xb2\xe1\xe1\x61\x9c\x3f\x77\ \x01\x20\x60\xf3\xa6\xcd\x41\x03\xff\xaf\x7f\xfb\x2b\x9e\x78\xf2\ \x09\x88\x5c\x44\x6e\xee\x2c\x64\xcf\x9a\xe9\x9b\x1e\xf7\x57\xac\ \x7b\xed\xf3\x58\xed\x5d\xad\x7d\xd1\x4c\x00\x7a\xd2\xbf\x6d\x83\ \xfd\x05\xb9\x91\xef\x87\x1e\x0f\x92\x58\xf7\x56\x17\x45\x8e\xba\ \xd3\x75\x10\x45\x3b\xee\xbe\xeb\x6e\xac\x5c\xb9\x32\x28\xe0\xff\ \xf9\x2f\x7f\xc6\xf6\xed\xdb\xc0\x45\x11\x79\x79\xb9\xc8\xce\x9e\ \x31\x71\x7a\x5c\x53\x84\xd0\x29\x1b\xa4\x41\x31\x70\xcd\x04\xe0\ \xd3\x4e\x09\x0f\x3e\xf4\xe0\x11\x0e\x94\x5d\x1f\xb1\x4e\x9a\xc5\ \xbc\x5a\xb8\xf4\xc2\xf9\x0b\x68\x6a\x6c\x42\x7a\x7a\x06\xfe\xfb\ \x8d\xff\x76\xbc\x11\x24\xc0\xf2\xd6\x5b\x6f\x61\xe7\xd3\x3b\xc0\ \x39\x47\x5e\x7e\x3e\xb2\xb3\xb3\x7c\x02\xdc\x17\x37\xaf\xfb\x08\ \xa1\xe7\x71\x20\xa0\x6e\xe3\x86\x2d\x85\x41\x97\x00\x4e\xa0\xde\ \x86\x8c\x00\xae\x8f\x1e\xf7\xc4\xf5\x6a\x7a\xf3\xea\xd5\x3e\x5c\ \x6a\x6a\x06\x63\x02\x76\x6c\xdf\x11\x14\xf0\xdf\x78\xe3\x0d\x3c\ \xfb\x13\xc7\x62\xdb\x82\x82\xd9\xc8\x9c\x91\xe5\x9b\x1e\x0f\x5c\ \xac\x6b\xaa\x73\xe0\x57\xbe\xf4\xcb\x27\x02\xd0\x31\xdd\xeb\x36\ \x6e\x7b\x0a\x44\x7a\x5f\xf4\x78\xb0\xc4\xba\x96\xe8\x99\xd5\x6a\ \xc5\x99\xd3\x67\x00\x70\xdc\x77\xdf\x1a\x14\x17\x17\x07\x0c\xfe\ \xef\x7f\xff\x7b\xec\xda\xf5\x02\x00\xa0\xb0\xb0\x00\xd3\x33\xa7\ \x5f\x0f\x3d\xee\x4f\x7d\x24\x2c\xc4\xf6\xba\x2f\x7d\xf3\x69\x1f\ \xd5\x5d\xbb\x76\xb5\x13\xd1\x1b\x9a\x56\xa5\x04\x98\xcd\x2a\xcb\ \x30\xf6\x98\x85\x2c\x3f\x1a\xce\x36\xc0\x64\x32\xa1\xa8\xb0\x18\ \x6b\xee\x5b\x13\x30\xf8\xbf\xfd\xdd\x6f\xf1\xc2\xae\xe7\xc1\x01\ \x14\x15\x17\x22\x33\x2b\xd3\xa7\x3e\x49\x5d\xdf\x4c\xf5\x1e\x0f\ \x6b\xfb\xa0\xbd\xee\xcc\xc2\x7e\xfb\x91\x47\xb6\x5e\x9d\x30\x09\ \xe0\x24\x99\x5d\xc4\xe9\x5b\x81\x8a\x75\x4d\xd9\xac\x3e\xea\xcd\ \xf6\xf6\x76\xb4\x5f\xe9\x40\x44\x44\x04\xb6\x6f\xdf\xee\xf3\x2b\ \x64\x54\xe2\x20\x78\xe9\x17\x2f\x81\x88\xa1\xb8\xb8\x10\x19\xd3\ \x33\x7c\x6a\x4f\x60\xf6\x8c\x77\xae\x77\x91\xb4\x22\xff\x4f\xdf\ \xe1\xf4\xb1\xfc\xec\xf9\x9f\x9d\x20\xd0\x01\x6f\x6b\x04\x7c\xa2\ \x5e\xf9\x06\x47\x50\x7b\x01\x95\xb7\xba\xc9\x64\x42\x7d\xdd\x59\ \x80\x80\xc7\xd6\x3e\x86\x8c\x8c\x8c\x80\xc0\x7f\xe5\x95\x57\x1c\ \xe0\x33\xc2\xdc\x79\x73\x30\x6d\xfa\x34\x2f\xc1\x9b\xf1\x97\x66\ \xf8\xb2\x7e\xc2\x17\x69\x32\xbe\xd6\x42\x35\xe7\xbf\x7a\xfd\xfa\ \xcd\x1f\xf9\xda\x4f\xbf\x72\xa0\x98\xc0\x5e\xe4\x9c\x57\x4d\x60\ \x36\xab\x4f\x75\xce\x39\x4e\xd7\x9e\x86\xcd\x66\xc5\x8a\xe5\x2b\ \xf0\x95\xaf\x7c\x25\x20\xf0\x7f\xf1\xcb\x5f\xe0\xb5\xd7\x5e\x05\ \x63\x84\xb9\xf3\xe6\x22\x3d\x3d\xed\xba\xe9\x71\xe9\x33\x7c\xda\ \xce\x8e\x61\x8b\x3f\x7d\xf5\x8b\x00\x5a\x9b\x5b\xff\x9a\x9e\x99\ \x7e\x9a\x80\xa2\x09\xca\x66\xf5\x29\x0b\xa6\xa9\xb1\x09\x57\xaf\ \x5e\x85\xc1\x60\xc0\x96\x1f\x6d\x09\x08\xfc\x17\x7f\xf6\x22\x7e\ \xf7\xbb\xdf\x82\x31\x86\x79\x25\xf3\x90\x9a\x96\xe2\x71\x7a\xe6\ \x09\x40\x7f\xd6\x4f\xf8\xb5\x87\x21\xe1\xd0\xfa\xb5\x9b\xfc\x7a\ \x7d\x9c\x5f\x9b\xe9\xbf\xf9\xe6\x9b\x76\x46\xec\x51\x97\x4d\x23\ \x3c\x88\x75\x6f\xf1\x6f\x6d\x62\xdf\x75\x83\x8a\x81\x81\x01\x5c\ \x38\x7f\x11\x8c\x18\x9e\x7c\xe2\x49\x4c\x99\x32\xc5\x2f\xe0\x39\ \xe7\x78\x61\xd7\x0b\x63\xe0\x97\xce\x2f\x45\x5a\x5a\xaa\x8b\x58\ \x87\xa2\x4f\x80\x2f\x62\xdd\xb5\xee\x45\xac\x6b\xc3\x5f\xc4\x66\ \x7f\x09\xde\xef\xb7\x29\x3c\xf7\xcc\x73\x7b\x01\x7a\x57\x3d\xb9\ \xc3\x77\x3d\xae\x75\xb1\xa9\xf4\xb7\x44\x51\xc4\xa9\x13\xa7\xc0\ \xb9\x88\xaf\x7f\xe3\x1b\x58\xb8\x70\x91\xdf\xe0\x3f\xf7\xdc\x4f\ \xf0\x5f\x7f\xf8\x03\x04\x26\x60\x41\xd9\x7c\xa4\xa6\xa6\xf8\xa1\ \xc7\x29\x50\x3d\xee\x4f\xd9\xff\xf8\xe3\x9b\xf6\xfb\x7b\x73\x60\ \x79\xd0\x02\xd6\x12\xa7\x95\xa3\xcf\x09\x56\x36\xab\xd6\xe8\x59\ \xc3\xd9\x73\x18\x1e\x1e\x46\x76\xf6\x4c\x7c\xff\xa1\xef\xfb\x0d\ \xfe\x33\xcf\xfc\x18\x6f\xbd\xfd\x16\x98\xc0\x50\x56\xb6\x00\xc9\ \x53\x93\xfc\xd6\xdb\x01\xe9\x71\xdf\x8b\x55\x20\x3c\x1c\xc8\x03\ \x58\x20\x37\x3f\xb7\xf3\xb9\x06\x02\x5e\xd6\x9e\xe6\xa4\x26\xf6\ \xe1\x76\x8b\x13\x4f\x9c\xd4\xd5\xd5\x8d\x96\x96\x16\xe8\xf5\xa1\ \xd8\xbe\x6d\x3b\xf4\x7a\xbd\x5f\xe0\xef\xd8\xb9\x03\x6f\xbd\xfd\ \x16\x04\x41\x40\xf9\xc2\x05\x63\xfb\xf8\x68\x9f\x8f\x7b\x16\xeb\ \x13\x59\x38\xc7\x33\x8f\x3d\xb6\xa9\x36\x90\x67\x04\xbc\x12\x22\ \x22\xcc\xbc\x69\xc4\x12\x7e\x27\x80\x4c\x6d\x5c\x8f\x80\xb3\x60\ \xcc\x16\x33\x6a\x6b\x1d\xfd\xfe\xde\x83\x0f\x62\xd6\xac\x59\x3e\ \xb7\x5b\x14\x45\x3c\xb5\xed\x29\xbc\xf3\xce\xdf\x20\x08\x3a\x2c\ \x5c\xb8\x40\xb2\xbb\x27\x05\x36\x1f\xbf\x3e\xe5\x9c\x79\xc4\xba\ \x2d\xd0\x87\xb0\x40\x1f\xb0\x75\xeb\xcf\x06\x40\xf4\xef\x44\x64\ \xd7\xac\x2a\x95\xfd\x09\x00\x00\x06\x71\x49\x44\x41\x54\xc7\xe1\ \x25\xb9\x51\xb5\x3e\x6e\x48\x9e\x3e\x75\x06\x16\xb3\x05\x65\x0b\ \xca\xf0\xaf\xff\xfa\x6f\x7e\x81\xff\xc4\x93\x5b\xf1\xee\xbb\xef\ \x40\xa7\xd3\x61\xd1\xe2\x85\x48\x4a\x4e\xba\x91\x7a\xdc\x67\xe6\ \x67\xa0\xfb\xb6\x6e\xdd\x6a\x0a\xf4\x41\x42\x30\x5a\xf3\xf1\x87\ \x1f\x37\x57\x56\x2d\x0d\x27\xa0\x42\x53\x36\xab\x9f\xbb\x8d\x10\ \x11\xba\xbb\x7b\x70\xee\xdc\x39\xc4\xc4\xc4\xe0\xe7\x2f\xbd\xe4\ \xf3\x4a\x5e\x51\x14\xb1\x65\xcb\x8f\xb0\x67\xcf\x1e\xe8\x74\x3a\ \x2c\x5e\xb2\xc8\xb9\xd7\xbf\x57\x37\xeb\x8d\x04\x5c\x8e\x3e\xd1\ \x4b\xeb\xd7\x6d\x7c\x39\x18\xcf\x62\xc1\x6a\x54\xa8\x10\xfa\x1f\ \x8c\xa8\xc6\x93\x1e\xf7\x35\x65\x5c\xad\x3e\x38\x38\x08\x02\xa1\ \xa8\xb0\x08\x86\x04\x83\x4f\x6d\xb4\xd9\x6c\xd8\xb4\x69\x23\xfe\ \xbe\xf7\xef\x08\x09\x09\xc1\x92\x25\x8b\x60\x30\x24\xdc\x50\x3d\ \xee\xfb\x94\x1f\x87\xcd\xc3\x96\xa0\xa5\x34\x0b\xc1\x7a\xd0\x81\ \x03\x07\xec\x15\x2b\x2a\x0f\x0a\xa0\x6f\x12\x51\x98\xeb\xde\x82\ \x1e\xc4\xba\x46\xe3\x91\x39\x5f\x50\x79\xb9\xe5\x32\x9a\x5b\x9a\ \x71\xf1\xe2\x45\x54\x2d\xab\xd2\xe4\xf3\xb7\x5a\xad\xd8\xbc\x79\ \x23\xf6\xef\xdf\x0f\xbd\x5e\x8f\x25\x15\x8b\x91\x90\x10\x7f\xd3\ \x72\xb9\x1b\xf8\xbb\x88\xeb\xbe\xb0\x79\xf3\xe6\xbe\x9b\x8e\x00\ \x00\xe0\xa3\x03\x1f\xf5\x2c\x5d\xbe\xec\x28\x01\xdf\x20\x40\x08\ \x34\x22\xa8\xa6\x32\xf4\x7a\x3d\x12\x13\x0d\x68\x6f\xef\x40\x63\ \x63\x23\x4e\xd5\xd6\x62\x79\xd5\x72\x8f\xb3\x00\xab\xd5\x8a\x0d\ \x1b\xd6\xe3\xe0\xc1\x83\xd0\x87\xea\x51\x51\xb1\x18\xf1\x12\xf0\ \x6f\x5e\xc0\xe5\x02\x8c\x81\xee\x7a\xfc\xf1\x0d\xa7\x83\xf9\x50\ \x21\xd8\xad\x3c\x78\xe0\x60\x53\xd5\x8a\x65\xed\x04\xba\x5b\x0d\ \x70\x4f\x62\xde\x5b\xb8\x74\x54\x2f\x87\x47\x84\x63\xea\xd4\xa9\ \x68\x6f\xef\xc0\xe5\xcb\x2d\x38\x72\xe4\x08\xaa\xaa\x96\xa9\x6e\ \xfa\x6c\xb1\x58\xf0\xf8\xe3\xeb\xf0\xf1\xa1\x8f\x11\x1a\xa6\x47\ \x65\x65\x85\xfa\xdb\x3f\x6f\xf2\xc2\x81\xb5\xeb\xd7\x6d\x7a\x23\ \xd8\xcf\x15\x26\xa2\xb1\xff\x3c\x70\xf0\x44\x55\xd5\xb2\x30\x62\ \x54\x01\x2f\x62\xde\x5f\x37\x6b\x68\x58\x28\x52\xd3\x52\xd1\xd9\ \xd9\x85\xf6\x2b\x57\x70\xf0\xe0\x41\x2c\x5d\xba\x14\x51\x51\xd1\ \x63\xed\x30\x99\x4c\x78\x6c\xdd\x5a\x7c\xf2\xc9\x27\x08\x0d\x0d\ \x45\x65\x65\x05\xa6\xc4\x4e\xb9\xf5\xc0\x27\xec\xdc\xb0\x6e\xd3\ \xf6\x89\x78\xb6\x30\x51\x8d\x3e\xb0\xff\xe0\x3f\xfe\x79\x70\x79\ \x16\x11\xe6\x78\xdf\xdd\xd2\x3f\x37\xab\x5e\xaf\x47\x46\x7a\x1a\ \xba\xba\x7b\xd0\xd5\xd5\x85\x7d\xfb\xf6\x61\xd1\xa2\xc5\x88\x8b\ \x8b\x83\xc9\x64\xc2\xa3\x6b\x1f\xc1\xb1\x63\xc7\x10\x16\x16\x86\ \xa5\x4b\x2b\x5c\x36\x64\xba\x25\xc0\xe7\xf4\xe2\x86\x75\x9b\x1e\ \x9b\xa8\xe7\xb3\x89\x7a\x30\x11\xf8\xec\xbc\xfa\x6f\x33\xa2\x5f\ \xfb\x92\x05\xe3\x4b\x56\x0c\x63\x84\xb0\xf0\x30\x2c\xab\xaa\x44\ \x62\xa2\x01\xdd\xdd\xdd\x58\x73\xff\x7d\x38\x76\xec\x18\x1e\xfe\ \xe1\x0f\x50\x5d\x5d\x8d\xf0\xf0\x70\x54\x2e\x5d\x82\xe8\x98\x68\ \xdc\x82\xe8\xbf\xba\x7e\xdd\x86\x87\x27\xf2\x27\x68\xe2\xfb\xc0\ \x69\xdb\x8e\x27\x7e\x0a\xe0\x21\xff\xb6\x97\xd3\xe6\x75\xb3\xdb\ \xed\x38\x7a\xb4\x1a\xed\x57\xda\xc7\xce\x8d\x82\x1f\x8c\x77\x05\ \x5e\x7f\xb1\xcf\x5f\xcf\x9e\x9e\xf3\xbf\xbe\xf6\xb5\xaf\xd9\x6f\ \x69\x02\x18\x2d\xdb\x76\x6c\xdd\x09\xd0\xfa\x89\x74\xb3\x72\xce\ \x71\xe6\x74\x1d\x9a\x9b\x5b\xa0\xd7\xeb\x31\x6f\xde\x1c\xf5\x97\ \x37\xdd\x02\x3a\x7f\xfd\xda\x8d\x9b\x88\x68\xc2\xb7\xac\xbc\xae\ \xf3\x9f\x6d\x3b\x9e\x7c\x98\x88\x9e\x25\x92\xc6\x20\x6e\x0a\xbf\ \xfa\xcd\x52\xac\x1c\x78\x60\xc3\xba\x4d\xaf\x5d\x47\xc7\xd2\xf5\ \x2d\x3b\x9e\xd9\xb1\x0c\xa2\xf8\x27\x22\x24\x4d\x02\x2e\x2b\xd7\ \x88\xe3\x9e\xc7\x1f\xdf\xb4\xef\x3a\x7b\x16\xaf\x7f\xd9\xf6\xfc\ \xb6\x34\x9d\x8d\xde\x02\xb0\x70\x12\x77\x00\xc0\x71\x91\xd1\xbf\ \x6d\x5c\xbb\xb1\xe1\x7a\xff\xf0\x0d\x63\xbf\x17\x5f\x7c\x31\xd4\ \x68\x1a\x7c\x16\xc0\xf7\x6e\x64\x3b\x6e\x70\xb1\x03\xfc\xd9\xb8\ \x29\x89\x5b\xee\xbf\xff\x7e\xeb\x8d\x68\xc0\x0d\x1f\xf8\x67\x9e\ \xd9\x51\x29\x82\xff\x0a\x40\xee\xe7\x09\x79\x0e\x34\x0b\xa0\x6f\ \xae\x5b\xb7\xf1\xc3\x1b\xd9\x0e\xe1\x46\x0f\xc4\xde\xbd\xfb\x5a\ \x2a\x96\x2c\xfd\xb5\xa0\x13\x88\x08\x8b\x6e\x86\x36\x4d\x70\xb1\ \x71\xc2\xcb\xe6\x30\xeb\x57\x37\x3d\xf2\xa3\x0b\x37\xba\x31\x37\ \x95\xe8\x7d\xf6\xd9\xed\xc5\x76\x8e\xe7\x01\xdc\xf6\x59\x44\x9e\ \xc0\xdf\xb7\x33\xf6\xe8\xc6\xb5\x1b\xeb\x6f\x9e\x36\xdd\x84\xe5\ \xc7\x3f\xde\x7e\x1b\x67\x78\x12\x1c\x8b\x3f\x1b\xc0\xe3\x8c\x08\ \xf6\xd8\x86\x75\x1b\xde\xbf\x09\xdb\x76\xf3\x96\xa7\x9f\xdd\xbe\ \x1a\x1c\x4f\x00\x28\xbd\x45\xf5\xfc\x87\x00\xff\xa9\xd9\x68\xfb\ \xf3\xd6\xad\x5b\xc5\x9b\x94\x38\x6f\xfe\xf2\xf4\xd3\xdb\x2a\xb8\ \x80\x35\xc4\xe9\xab\x00\xc2\x6f\xf2\xe6\x5a\x00\xfc\x89\x33\xb6\ \x6b\xc3\xda\x0d\x35\xb7\x80\x74\xba\x75\xca\xf3\xcf\x6f\x8d\xb7\ \xd8\x42\xbe\x09\x60\x0d\x80\xd9\x37\x17\xb3\xa3\x9a\x73\xbc\x2d\ \xea\xf1\xbb\x4d\x3f\xdc\xd4\x7e\x0b\xa9\xa7\x5b\xb3\xec\xf8\xc9\ \x8e\x3c\xb2\xf3\xd5\x44\xf4\x25\x80\x57\x00\xd0\x5f\xe7\x26\xd8\ \x39\xf0\x11\x01\x6f\xdb\x04\xfe\x97\xcd\x8f\x6e\xbe\x7c\x8b\xda\ \x27\x37\xfc\x77\x25\x2f\x05\x92\x7d\x66\x2a\xd7\xd4\xee\xc1\x17\ \xee\xfe\x42\xcc\x82\x39\x25\x2b\xc2\x42\xc3\x17\x09\x82\x50\xcc\ \x18\x2b\x22\x42\x90\x33\x3f\x78\xbf\x5d\x14\x6b\x6c\x56\x5b\xb5\ \xc9\x6c\xaa\x6e\xba\x78\xbe\xfa\x8d\x37\xfe\xd2\xa3\x90\x02\xdc\ \x4d\x7d\xf4\x45\x86\x6a\xe7\x95\xf7\xdc\x52\x04\xa0\x04\x4e\x0a\ \x1a\x29\xce\x43\xf2\x9f\x14\x9f\xd5\x0e\x78\xa8\xc3\xcd\xb9\xb1\ \xf3\xab\x57\xaf\xcc\x98\x96\x95\x59\x30\x25\x26\x66\xa6\x2e\x24\ \x24\x51\x27\x08\x06\x26\x08\x89\x02\xb1\x78\x12\x28\xc1\xf5\x8d\ \x47\x00\xe7\xe2\xb0\xdd\x2e\xb6\xdb\xac\xb6\x76\x9b\xcd\xde\x69\ \xb6\x98\xaf\x98\x8c\x23\x57\xda\xda\x5a\xcf\xef\xde\xbd\xb7\xc9\ \x64\x32\x79\x03\xd9\x1d\xc0\x6a\x75\xe5\x35\x51\xf1\x59\x7a\x4e\ \x79\x88\x6e\x7e\x3b\xe8\x04\x20\xe5\x46\xe6\x06\x68\xe6\x85\x00\ \x98\x97\xba\xbf\x87\x3b\x02\x81\x07\xa9\xe1\xa9\xef\xdc\x43\x5d\ \x0b\xc8\x50\xe1\x72\x5f\x0e\xd1\x87\xf3\xa2\xc6\xcf\xa2\x37\x02\ \x51\x0e\x02\xf3\x00\xaa\x16\x22\x70\xf7\xdf\x17\xa2\x61\x1a\x25\ \x8a\x56\x02\x71\x2b\x25\xdc\x18\x73\x9e\xb8\xdb\x1b\xc0\x5a\x40\ \x14\x35\x5c\x13\x35\x5e\xf7\x06\xbe\xa7\xfb\x5d\x38\x9c\xfc\xfc\ \xef\xef\xbd\xfe\x3e\xdf\xd7\x67\x2a\xcf\x4b\x55\x11\xbc\xe8\x6c\ \xee\xe3\xe0\x8b\x1a\xc1\xf0\xf5\xbf\xb7\xef\xf8\xfd\x7c\xc1\x8d\ \x3e\x0f\xc6\x7f\x68\xd0\xdd\x5a\xee\xf3\x45\xb4\x93\x07\xa3\x4c\ \xc9\xbd\x9e\x06\xd7\xee\x06\x40\xad\x9c\xea\x4d\x22\x70\x37\xf6\ \x01\xdc\xd8\x0b\xa2\x97\xe7\xc1\xdf\xff\xe4\x46\x2d\x68\xe5\x2c\ \xad\xa2\xde\x1f\xf1\x1f\x88\xbd\x00\x2f\x33\x08\x6f\x73\x7a\x68\ \x34\xec\xfc\xd1\xed\xfe\xe8\x74\x7f\xae\x7b\x3a\xe7\xd7\x2c\x80\ \x7c\x00\xd6\x1b\x78\xcc\x47\x30\x99\x97\x59\x81\x16\x49\xe1\x4b\ \x7f\xdd\x19\x84\x9e\xb8\x14\x6e\x2c\x7b\xe0\xfa\x19\x82\xa2\x4a\ \x1b\xae\xbb\x1f\x40\x09\x08\x53\x99\x0e\xfa\x0b\x36\xe0\x9f\xd5\ \xef\x6f\x3f\xb9\x0f\xb3\x02\x6f\xd3\x42\xad\x44\x01\x37\xe0\xc2\ \x17\x60\x3f\x0b\x9e\x40\x5f\x6c\x02\x5f\xb8\x9e\xfc\xe4\x7e\x77\ \xe0\x6b\xd1\xb7\x37\xc4\xc9\xa3\xa5\xfc\x7f\x79\x71\x21\x31\x2a\ \xad\x0d\xa4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x4a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x1b\x9c\xcb\x8a\x51\x00\x00\x08\xca\x49\x44\x41\x54\x68\ \xde\xbd\x9a\x5b\x6c\x1c\x57\x19\xc7\x7f\xdf\x39\x33\xe3\xd9\x8b\ \xd7\xb7\x24\x8d\x93\xda\xcd\xc5\x8e\xeb\x80\x13\xc5\x09\x69\x25\ \x84\x68\xa5\x42\x51\xe9\x13\x42\xca\x0b\xf0\x52\xa8\x04\x48\x08\ \x71\x79\xa0\x2f\x54\xa0\x22\x78\xec\x23\x15\x12\x2f\x88\x3e\x20\ \x9e\x0a\xad\xca\x4d\x40\x23\xa1\x0a\x2a\x41\x43\x29\x09\x49\x9c\ \xc4\xb7\x24\xf6\xae\xd7\xbb\xde\xfb\xce\x39\x3c\xec\x7a\xb3\x5e\ \xef\xce\xee\xba\x69\x8e\x34\xf6\x78\xce\x5c\xbe\xff\xf7\xff\x7f\ \x97\x33\x63\xa1\xcf\xf1\xc4\x13\x2f\x3a\x85\x58\xf9\xc7\x62\xec\ \x17\xad\x30\x08\x80\x45\xac\xb5\x7e\xc7\x8b\x44\xf2\x22\xf2\xc2\ \xdb\xaf\xff\xe8\xe5\x5e\x9f\x63\x2d\x0e\xa0\x80\xaa\x08\xa6\xe3\ \xad\xfb\x05\xf0\xf8\x33\xdf\xfb\xc9\xe9\xd3\x53\xdf\x38\x39\xfb\ \xb0\x1f\x8b\x45\xd0\x4a\xd7\x6d\xec\x7c\xab\xad\x7c\x89\x5f\xbe\ \xfa\x87\xc2\xa6\xef\x0e\xbf\xf7\xab\x17\xcb\x1d\x8d\xbe\x4b\x9c\ \x81\x81\x83\x38\x66\x88\xc0\xf1\xc1\x2a\xac\x94\x51\x41\x0e\x55\ \x4e\x12\xe5\x4e\x2b\x18\xa7\x4f\xfb\x05\xcb\xd7\x8e\x1e\x19\xf1\ \x53\xeb\xb7\x71\xbd\x09\x1c\xa7\xbb\x0f\x3c\xcf\x41\x6b\xa5\xfd\ \x8d\x42\x04\x68\x0b\xc0\xa6\xfd\xa3\x68\x26\xc0\x39\x40\xa0\x47\ \x10\x1b\x41\x94\xc2\x9a\x32\xe2\x66\xc1\x59\x27\x57\x59\xb1\xc9\ \xca\x82\x8c\x91\xe9\xca\xc0\x2b\xaf\xbc\xf2\x1d\xe0\x25\x11\xf1\ \x94\x52\x28\xa5\xa8\x54\x2d\x3f\xfb\xf5\x95\xc6\x39\x4f\x7d\xe6\ \x3c\xf1\x58\xa4\x27\xe4\xaf\xbf\x76\x91\x8f\x9f\x04\xad\x2c\xc6\ \x98\xc6\x16\x04\x01\xfb\x46\x53\x8c\x8e\x6c\x32\x9c\xd8\x62\x28\ \x51\x20\x1a\xad\xe0\xb9\x55\x44\xa0\x5a\x95\xe0\xd0\xc1\xcd\x37\ \x8e\x1d\x59\xbb\x08\xd5\x45\x8c\x59\x60\xb0\xf0\x5f\x11\x36\x42\ \x19\x30\xc6\xbc\xf4\xfc\xf3\xcf\x7b\xad\xc7\xbf\xfc\x1c\x6c\x6c\ \x6c\xf0\xf9\xaf\xbc\x4c\x66\xab\x48\xa9\x6a\xb0\xd6\x86\x1a\xef\ \x3a\x1a\x11\xcd\xf9\xf3\x67\x99\x7d\x74\x9a\xe9\xe9\xe9\x26\xd7\ \xdf\x04\x73\x19\xb1\xd7\x11\x16\xc1\xac\x22\xa4\x81\x3c\x10\x00\ \x03\xfa\xea\xb5\xe2\x53\xe0\xa7\xb1\x95\x18\xaa\xaa\xc9\x57\xab\ \xd6\x56\xde\x15\xa1\x14\x06\xc0\x03\x58\x58\x58\x68\x68\xdc\x18\ \x43\x34\x1a\x65\x7d\x7d\x1d\x63\x2d\xe5\x4a\x40\xb1\x9a\xc7\x98\ \x70\x00\xf1\xe8\x00\xd6\x1a\xd2\xe9\x34\x6b\x6b\x6b\x0c\x0e\x0e\ \x22\x22\x08\x05\x5c\xfd\x1f\x5c\x7d\x0d\x47\x5f\xc7\xd5\x2b\x68\ \x75\x07\x91\x18\xc8\x30\x22\x0e\x22\x45\xf6\xef\x13\x0f\xdc\x47\ \x11\x14\x62\x2a\x04\xce\x16\x9b\x2a\x05\xa5\x6b\x4e\xe7\x2c\x60\ \x77\x04\x67\x73\x90\x6a\xad\x1b\xda\x2b\x95\x03\xaa\x81\x09\x05\ \x10\x8b\xf8\x60\x6d\xcd\xe8\xfa\x06\xa0\x54\x12\x25\x29\xb4\x4a\ \xa2\x65\x1d\xad\x6e\x23\x6a\x3f\xa2\x0e\x03\x63\x20\x0e\x48\x0e\ \xc7\x53\x20\x57\xc6\x21\x5d\xc2\x04\x19\xc4\xde\x45\xca\xfb\xac\ \xe5\x66\x57\x00\x61\x19\xc6\x73\x85\x62\xd9\x80\x09\xc2\x83\xd8\ \x51\x8d\x70\x6b\x06\xa0\x55\x0e\xad\xf3\x28\x95\x41\xeb\x2c\x22\ \x3e\xa2\xc6\x41\x8e\x21\xea\x61\x10\x1f\x21\x89\x48\x59\x90\xbc\ \xc6\x66\x1f\x42\x39\x2b\xd8\x60\x04\x6d\x86\x48\x13\xef\x9b\x01\ \x11\x41\xeb\x5a\xea\x74\x95\x42\x30\x60\x83\xd0\xdc\xec\x69\x60\ \xdb\x68\xad\x9b\xee\x55\x46\x28\xd5\xb7\x22\xa2\x06\x81\x11\x44\ \x1d\x04\x75\x02\x51\xc3\x60\xae\xa1\xf4\x1d\x90\x15\x85\x1d\xf0\ \xb1\xd5\x28\x56\x22\x58\xed\xe3\x11\xe9\x8b\x01\x69\x32\xa2\x7e\ \x16\x58\x53\xdb\x9a\xaf\x6d\x7b\x2f\xcb\xf2\xf2\x32\x03\x9e\xa6\ \x50\x28\x00\x96\x44\x6c\x81\xc1\xd8\x2a\x83\xb1\x34\x89\x78\x11\ \x8f\x08\x8e\x2b\x80\x06\xf1\x80\x08\x88\xae\xfd\x8d\x92\x9a\x6b\ \xac\xdc\xa3\x13\x15\x16\xc4\x1d\x19\xb8\xe7\xe6\xf6\x00\x76\x17\ \x0f\x83\x20\x4c\x4c\x4c\x30\x35\x35\xc5\xe4\xe4\x64\xad\x08\x29\ \xc1\x55\x01\xae\x53\xc4\x55\x5b\x68\x5d\x01\xc9\x82\x5d\x07\x73\ \x0d\xcb\x32\xc2\x1a\xd6\x24\xc1\x66\x0d\xb6\x54\x45\x6c\x11\xb1\ \x25\xac\x94\xa9\x86\x67\xa1\x3d\x33\xb0\x9b\x4d\x83\xc5\xb2\xb8\ \xb8\x88\xeb\x08\xb9\x5c\x0e\x80\xc8\xc0\x6d\xe2\xd1\x34\x83\xb1\ \x02\xf1\x28\xc4\x22\x77\xf1\xfc\x04\x56\xb9\x10\x64\x11\xf1\xb0\ \x36\x8b\x31\x8b\x16\xbb\x1a\x40\xb0\x86\x0d\x36\xb0\xc1\x26\xd6\ \x64\x19\x24\x1b\x2a\x21\x5b\xcf\x1c\xad\x20\x6a\x29\x50\x10\x5b\ \xd7\xbf\x0d\x0f\x62\xb1\xb5\xeb\x26\x26\x26\x98\x9e\x9e\x6e\x30\ \xa0\x64\x12\x57\xc7\xd1\xe2\xe3\x28\x0f\xa5\x14\xd6\xdc\x44\x28\ \x81\xac\x61\xad\x42\x28\x11\x54\xae\x82\xbf\x96\x42\xaa\xb7\x30\ \xc1\x2a\x98\xbb\x10\x24\xbb\xd5\x81\x8e\x0c\x34\x98\x70\x1c\x1c\ \xd7\xc5\x74\x69\xa9\xb4\xab\xb1\xd6\xb2\xb4\xb4\x84\xeb\x08\x5b\ \x5b\x5b\x8d\xb9\xa8\x9f\x21\xea\x97\x89\x45\x35\x91\x81\x18\x63\ \xa3\x87\x51\x36\x8d\x70\x07\x51\x16\xc4\x27\x95\x2a\x98\xa1\x44\ \xe5\x32\xb6\x7c\x1d\x5b\xb9\x09\xc1\x32\xc5\xf2\x52\xb7\x4a\xdc\ \x35\x0b\x69\xed\xe0\xba\x1e\x16\x15\x0a\xc0\x71\x1c\x44\x84\xc9\ \xc9\x49\x4e\x9e\x9c\xe5\xf0\xe1\xc3\x4d\xb3\x33\x38\xea\x2a\x5a\ \x6e\xa2\x64\x99\xc0\x26\x31\x36\x8d\x48\x11\xaa\x01\x8e\x1b\x65\ \x69\x25\x57\x3d\x3a\x59\xfe\x37\xb6\xb2\x88\x54\xae\xa3\x8a\x0b\ \x72\x80\xad\x9e\x00\xb4\x03\xa1\x94\xaa\x7b\xb6\xc6\x80\x95\x70\ \x00\xda\x71\xb1\xb6\x16\x03\x03\x9e\x26\x9d\x4e\xef\x98\x57\xaa\ \x42\x64\xc0\xe0\xb9\x2e\xc7\x8e\x4e\x23\x64\x10\x29\x20\x62\xd1\ \x12\xe7\xe6\xe2\x95\xe0\x13\x8f\x97\x2f\x41\xb0\x82\x2a\xde\x90\ \x18\xab\x5d\xbb\xd1\x66\x00\x9d\x8a\x99\xa3\x34\x9e\xeb\x21\x12\ \x74\xe9\x85\xdc\x06\x03\x33\x33\x33\x2d\x0c\x6c\x8f\x33\x28\xb9\ \x43\x60\x53\x08\x19\xb0\x25\x44\xc0\x21\xc6\x8d\x5b\x7f\xac\x62\ \x2a\xef\x92\x2b\x2d\xcb\x21\xf2\x3d\xb5\xd3\xcd\x12\x6a\x1f\xc8\ \xa0\xb5\x8b\xeb\x59\x50\x41\x97\x18\xd8\xc9\xc0\xc6\xc6\x46\xc7\ \x73\xe7\xe6\xe6\xc0\x16\x81\x22\x22\x60\x18\xe2\xea\xc2\x68\x55\ \x86\x4a\xff\x6b\x2b\xcf\x7e\x19\xb8\xc7\x84\xe0\x38\x0a\xcf\xb8\ \x48\x17\x09\xb9\xf5\xea\x7b\xfc\xf8\x71\x66\x67\x4f\x30\x3e\x3e\ \xbe\x8b\xd5\x1d\x1d\xad\xf8\x80\x5f\xab\xde\x12\x25\x08\xf1\x4f\ \x28\x80\xe6\x34\xda\x8e\x01\xa5\x35\xca\x21\x34\x84\xa5\xa9\x6e\ \x2c\x2e\x2e\xe2\xb9\x8a\x64\x32\x19\xce\x40\x0b\xa0\xb0\x76\xbd\ \xaf\x20\x6e\x65\x40\x89\xaa\x2d\x50\x54\x78\x3b\x2d\xaa\x26\xc3\ \xa9\xa9\x29\x3e\x72\x72\x86\xb1\xb1\xb1\x2e\x85\xcf\xee\x90\xee\ \x07\x06\xd0\x0e\x84\xe7\x39\x58\x63\x50\xaa\x06\x22\x34\x06\x94\ \xc2\x5a\xcb\xad\x5b\xb7\x50\x62\x48\x24\x12\x6d\x93\x82\xb5\x96\ \x53\xa7\x4e\xed\x92\xd6\x9e\x00\x04\x75\xe1\xb5\xf7\x7e\x6d\x5f\ \x29\x41\x21\x8d\xb4\x5a\x6b\xb1\x35\xe5\xca\x4e\xd1\xaa\xba\x37\ \x67\x66\x66\x38\x31\x7d\x8c\xe1\xe1\xe1\x1e\xde\x4a\xd8\xfb\xc7\ \x40\xdb\x4c\x04\x28\x25\x68\x14\xb6\xde\x1a\x25\x62\x3e\xbe\xa7\ \x29\x96\x03\x32\xb9\xe2\x3d\x00\xba\xc6\xc0\x8d\x1b\x37\xa8\x56\ \x8a\xc4\xe3\xf1\x8e\x06\x9d\x3e\x7d\x7a\x97\x84\x42\x8b\x64\xaf\ \x12\xda\x95\x89\x5a\xd8\x18\x8a\xfb\xa4\x53\x19\x5e\xfd\xcd\x45\ \x3e\xfd\xf4\x63\x1c\x38\x38\x46\x3a\x5b\xdc\xb1\xae\x98\x99\x99\ \x61\xea\xf8\x11\xe2\xf1\x78\x47\xe3\x5a\x13\x47\x27\x5b\x1a\xce\ \xe9\x27\x0b\xb5\x5b\xb4\x28\x25\x8c\x26\x22\xac\xae\xac\xf1\xbb\ \x37\xff\xc6\xf9\xb9\x7d\xfc\xf5\xcf\xef\x70\xfd\xea\x12\x63\x43\ \x51\x74\x5d\x5e\x02\xb8\xae\xbb\x63\x41\xd3\xfe\x1d\xd8\x6e\xb6\ \xef\x6b\x16\x6a\x66\xc0\xd1\x9a\xd8\x60\x94\xf7\xdf\x5b\xe0\x5f\ \xff\xbc\xcc\xb7\x9e\xfb\x24\x13\x87\x46\x48\xa5\xf3\xbc\xfc\xf3\ \xb7\xd8\xca\xe4\x38\x73\x6e\xb6\x7e\xbd\xe0\x38\x0e\x4a\xa9\xae\ \xd2\x68\x75\x5c\x18\x00\xb5\xd7\x56\x42\xea\x3f\xde\xf9\xfb\xfb\ \x5c\x7e\xff\x1a\x2f\x7c\xfd\x53\x1c\x7b\xe4\x00\x63\x63\x63\xcc\ \xce\x1c\xe5\x07\xdf\xfe\x2c\xf9\x6c\x86\xbf\xfc\xe9\x1f\x98\x20\ \x00\xb9\x57\x0f\x9a\x17\xf7\xad\x5b\xeb\xfc\x9e\x01\x74\xcb\x42\ \x41\x60\x78\xf3\x8d\xb7\x49\xaf\xa7\xf8\xfe\x37\x9f\xe1\xe8\x23\ \xe3\x8c\x8f\x8f\x93\x48\x24\x88\x46\xa3\x1c\x79\x64\x82\x1f\x7e\ \xf7\x73\x1c\xda\x1f\xe3\xb7\xaf\x5d\xa4\x54\x2c\x37\x24\xd4\x2a\ \x97\xd6\x67\xb4\x7b\x13\x72\x5f\x82\xb8\xf9\xa6\xeb\xa9\x2c\x47\ \x1e\x1e\xe3\xc2\x33\x53\x64\x33\x1b\xe4\xb6\x36\xdb\x02\x7e\xf6\ \x89\x63\xfc\xfe\xad\x2a\xab\xb7\x53\x5c\xb9\x72\x85\xe4\xfa\x1d\ \x5c\xd7\xed\x68\xd0\x99\x33\x67\x42\x63\xaf\xef\x56\xa2\x93\x27\ \xbe\xfa\xa5\x27\x79\xfa\xc9\x53\x0c\x78\x5e\x5b\xcf\x35\xef\x9f\ \x3d\x7b\x96\xc7\x3e\xf6\x1e\x1f\x3d\x31\xce\xe8\xe8\x50\x63\x7d\ \x10\xa6\xff\x5e\x41\xec\xb9\x12\x3f\xfb\xa9\x79\x44\x84\x4b\x97\ \x2e\x75\x69\x39\x6a\xfb\x23\x31\x58\x5e\xbe\xc5\xd2\x92\x6d\x2b\ \x91\x6d\x67\xcd\xcf\xcf\xdf\x3f\x06\x3a\xc9\xa7\x79\x7f\x6e\x6e\ \xae\x63\xf0\x85\xed\x77\xcb\x40\xdd\xde\xb7\xee\x39\x06\x5a\xc7\ \x36\x03\x61\xde\xef\xb6\x30\x6a\x1e\xdb\x0c\x7c\x68\x41\xdc\x6a\ \xcc\x36\x03\x61\x69\xb0\x17\x26\xb6\x8d\xee\xc7\xf8\xbe\x9b\xb9\ \x7e\x19\x08\xf3\x7e\xa7\x6e\x74\x7e\x7e\xfe\xfe\x49\xa8\x97\x9b\ \xb4\x32\xd0\x8d\x85\x76\x4c\xb4\xb6\xcd\xbd\x1a\xff\xa1\xc4\x40\ \xaf\xfa\x3f\x77\xee\x5c\xe3\x58\x3f\x06\xdf\x77\x00\xdd\x62\xa0\ \x13\x03\xbd\xf4\x39\xbd\x8c\xae\xbd\xd0\x07\x7d\x40\xeb\xf5\xcd\ \x32\x69\xde\xf6\x0a\xa8\x6b\x2f\xb4\x17\xe3\x7a\x31\xbe\x1d\x88\ \xbd\xc4\x80\xea\x70\x2c\xde\xab\x84\xf6\xe2\xf9\x3d\xcc\x0b\x30\ \xd0\x0b\x80\x28\xb0\x1f\x78\xa8\x5d\x16\x0a\xa3\xba\x97\xb9\x30\ \x06\xba\x9c\xa7\x80\x03\xc0\x70\xfd\x6b\x47\xdb\x20\xf6\xea\x00\ \xe2\x40\x42\x44\xaa\x80\x33\x32\x32\xb2\x23\x2e\x9a\x17\xf0\x0f\ \x6a\x28\xa5\xca\xc0\x20\x60\xea\xdf\x5e\xb3\xed\x00\xd8\xa6\xdf\ \xb6\x50\x28\xfc\xe2\xc2\x85\x0b\x5f\x50\x4a\xf5\x1d\xc5\xbd\x56\ \xd1\x5e\x86\x31\x86\x64\x32\xf9\xd3\x16\xfb\x3a\x7e\x8f\x8b\xd4\ \x19\x88\x03\xd1\x48\x24\x92\x88\x44\x22\x71\x40\xac\xb5\xfa\x01\ \x7b\xbd\x52\x77\xe4\x66\x3e\x9f\xcf\x00\x39\x60\xab\xee\x7d\xd3\ \x09\xc0\xf6\x31\xbf\x0e\xc6\xad\x6b\x4e\x03\x0f\x5a\x3b\x95\xba\ \xb7\x2b\xd4\xfe\xbf\x22\x0f\x54\x3b\xbd\x5c\xe8\xaa\x0a\x1e\xfc\ \xe8\x49\xba\xff\x07\x52\x19\x45\x19\x77\x9b\x03\xa1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x07\x81\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x29\x1b\xae\xfd\xe8\xd3\x00\x00\x07\x01\x49\x44\x41\x54\x68\ \xde\xed\x59\x4b\x6f\x14\xcb\x15\xfe\xaa\xfa\xe5\x19\xcf\x0c\xee\ \x2b\x46\x18\xae\x06\xa4\x38\x8c\x0d\x91\x10\x0f\x23\xc5\xb2\x79\ \x88\x08\xc7\x64\x31\xc8\x03\x83\xa2\x28\x17\x39\xba\xc9\x22\xab\ \xfc\x80\xbb\x61\xcf\x32\x59\xb1\x8d\x94\x0d\x82\x05\x7b\x24\xa4\ \xb0\xcf\x82\x05\x58\xd8\x42\x28\xe0\x0d\xc8\xb8\xf1\x74\x57\x3f\ \xab\xb3\xc8\x54\xa9\xa6\xe6\x69\x73\xaf\x88\x22\x97\xd4\x9a\x99\ \xaa\xea\xea\xef\x3b\xe7\x3b\xe7\x54\xf5\x00\x07\xed\xa0\x1d\xb4\ \x83\xf6\x35\x1b\xd9\xcb\xe4\x46\xa3\x51\x2e\x95\x4a\xe6\x4f\x0d\ \x2a\x49\x92\xcf\x0f\x1f\x3e\xcc\x7e\x34\x02\xcd\x66\x73\x91\x10\ \xf2\xd7\x72\xb9\x7c\xce\xb6\xed\xb1\x40\xe4\x79\x3e\x56\x9f\xde\ \x4f\x08\xc1\xee\xee\xee\xbf\x93\x24\xf9\xe1\xf1\xe3\xc7\x7f\xff\ \x62\x02\xad\x56\xcb\xce\xf3\x3c\xba\x7f\xff\x3e\x6a\xb5\x5a\x0f\ \x08\xf1\x5b\xed\xd7\xfb\x06\x8d\xf5\x9b\xd7\x21\x80\x7b\xf7\xee\ \xf1\xed\xed\xed\x5f\x3c\x7a\xf4\xe8\xd5\x30\x7c\x23\xe5\x90\x65\ \x59\xe3\xda\xb5\x6b\x38\x76\xec\x18\xb6\xb6\xb6\xba\x2c\x35\x0a\ \xf0\x20\x90\xa3\xe6\x54\x2a\x15\xdc\xbe\x7d\x9b\x3e\x78\xf0\xe0\ \xcf\x00\xfe\x32\x0c\x1f\x1d\x45\x80\x52\xba\xb6\xb2\xb2\x02\xdf\ \xf7\xf7\x17\x64\x84\xec\x79\x0e\x63\x0c\x67\xce\x9c\x81\x61\x18\ \xbf\xbf\x71\xe3\x86\xb3\x6f\x02\xcd\x66\xf3\x68\xa5\x52\xf9\xf5\ \xf1\xe3\xc7\xe1\xfb\x3e\x28\xa5\x63\x81\xa1\x94\x82\x10\xd2\xf3\ \x7d\x9c\x7b\x09\x21\xe0\x9c\xc3\x30\x0c\x2c\x2d\x2d\x7d\x53\x2c\ \x16\x9b\x5f\xe2\x81\xef\x56\x57\x57\xcd\x28\x8a\x90\x65\xff\x4d\ \x0a\x86\x61\x74\xe9\x95\x52\x0a\xd3\x34\xe5\xa5\x02\x26\x84\x48\ \x59\x88\x79\xb6\x6d\xc3\x71\x1c\x58\x96\x05\xc3\x30\x7a\x8c\x62\ \x59\x16\x38\xe7\x08\x82\x00\x4b\x4b\x4b\x00\xf0\xfd\xbe\x09\x10\ \x42\xd6\x16\x16\x16\xa4\x7c\xb2\x2c\x43\x96\x65\xa0\x94\xc2\xb2\ \x2c\x09\x58\xd5\x72\x9e\xe7\xe0\x9c\x83\x73\x2e\xc1\x0b\xa0\x86\ \x61\x48\x52\x2a\x79\xb1\x16\x21\x04\x49\x92\x80\x73\x8e\x30\x0c\ \x51\xab\xd5\x50\xad\x56\xaf\xdd\xba\x75\xeb\x67\x7b\x26\xd0\x6c\ \x36\x7f\x79\xfa\xf4\xe9\x53\xa5\x52\x09\x8c\x31\xe9\x62\xd3\x34\ \xa5\x17\x04\x50\x15\xb0\xf8\x14\x00\x05\x78\x4a\x69\x17\xc9\x7e\ \x19\x4a\x78\x4f\xf4\x87\x61\x88\xeb\xd7\xaf\x13\x42\xc8\x1f\xf7\ \xe3\x81\xb5\x9b\x37\x6f\x22\x08\x82\x2e\x09\xe8\xc0\x55\xab\x67\ \x59\x86\x3c\xcf\x25\x60\x55\x22\xc3\xb2\x0f\xe7\xbc\x4b\x96\xc2\ \x53\x8c\x31\x9c\x3b\x77\x0e\x84\x90\xbb\x57\xaf\x5e\x35\xc7\x26\ \xd0\x6a\xb5\x0a\x96\x65\xfd\xf6\xd4\xa9\x53\x68\xb7\xdb\x12\xbc\ \x6a\x61\x41\x40\xc8\x4a\x00\x57\xe5\xd2\x4f\x5a\xe2\x53\x1f\xd3\ \xeb\x8b\x61\x18\x48\xd3\x14\x85\x42\x01\x67\xcf\x9e\xfd\xf6\xf0\ \xe1\xc3\x2b\x63\x13\xc8\xb2\x6c\x75\x65\x65\xe5\x10\xe7\x1c\x69\ \x9a\xf6\xb8\x5f\xb5\xbc\x6a\x35\x61\x79\x4a\x69\x8f\xa4\x46\xe5\ \x7e\x3d\x13\x09\xaf\x33\xc6\x70\xe9\xd2\x25\x00\xf8\xd3\xd8\x04\ \x28\xa5\x6b\x57\xae\x5c\x41\xbb\xdd\x96\x8b\x65\x59\xd6\x23\x19\ \xf1\x10\xf5\xd2\x2d\x2c\x3e\x45\x5f\x3f\xeb\xab\xe0\xd5\x7b\x28\ \xa5\x08\xc3\x10\x33\x33\x33\x28\x97\xcb\xbf\x69\x34\x1a\xc7\x46\ \x12\x68\xb5\x5a\xc7\x8f\x1c\x39\xf2\xab\xe9\xe9\x69\x30\xc6\x60\ \x18\x46\x97\x35\x05\x11\x35\x55\x0a\x9d\xab\xe0\xf4\x18\x19\x26\ \x17\xbd\x46\x88\x75\x6d\xdb\x46\x9e\xe7\x48\xd3\x14\x97\x2f\x5f\ \x36\x2d\xcb\xba\x3b\x92\x40\x96\x65\x77\x1b\x8d\x06\x65\x8c\x41\ \x48\xc8\xb6\xed\x2e\xe0\xba\x5c\x06\xc9\x4b\x90\xd2\x83\x75\x14\ \x78\xe1\x59\x11\x47\x61\x18\x62\x7e\x7e\x5e\xd4\x04\x32\x8c\x00\ \x31\x0c\x63\xed\xc2\x85\x0b\x68\xb7\xdb\x5d\x0f\x75\x1c\x47\x02\ \x56\x8b\x94\xae\x75\x9d\x8c\x2e\x21\x5d\xe7\x6a\xf6\x51\x5b\xb1\ \x58\x94\x19\x30\x49\x12\x4c\x4d\x4d\x61\x76\x76\xf6\xe7\xcd\x66\ \xf3\xea\x40\x02\xcd\x66\xf3\xd2\xfc\xfc\xfc\x8c\x6d\xdb\x88\xe3\ \x58\x02\x09\x82\x00\xb6\x6d\xa3\x50\x28\xf4\x4d\x8b\xfd\x80\xeb\ \xdf\x75\xe0\xba\xf6\xd5\xec\x53\xa9\x54\x10\x45\x11\xd2\x34\x95\ \xfd\x51\x14\x61\x71\x71\x11\x7a\x4d\xa0\x9a\xfb\xfe\xb0\xbc\xbc\ \x8c\x76\xbb\xdd\xf5\x00\xce\x39\x3c\xcf\x03\x21\x04\xc5\x62\xb1\ \x6f\x4a\x1d\xe4\x85\x61\xbb\x57\x5d\x3a\xc5\x62\x11\x95\x4a\x05\ \xbe\xef\xcb\xea\x2f\xe6\x86\x61\x88\xb9\xb9\x39\x38\x8e\xd3\x6c\ \xb5\x5a\xdf\xf4\x10\x68\xb5\x5a\xa5\x52\xa9\xd4\x9a\x99\x99\x81\ \xef\xfb\x32\x38\x55\x4b\x7b\x9e\x87\x76\xbb\x0d\xc7\x71\x50\xa9\ \x54\xa4\xac\x54\x4f\xe8\x31\x30\x48\x2e\x62\x7d\xdb\xb6\x51\x2a\ \x95\xe0\xba\x2e\x08\x21\xf8\xf8\xf1\xa3\xac\xfc\xc2\x23\x96\x65\ \xc9\xf5\x16\x16\x16\x26\x38\xe7\xbf\xeb\x39\x0f\x64\x59\xb6\xba\ \xbc\xbc\x3c\x19\xc7\x31\x38\xe7\x98\x9a\x9a\x92\x69\x4c\xdd\x4a\ \x44\x51\x84\x28\x8a\xe0\x38\x0e\x0a\x85\x02\x8a\xc5\x22\x00\x20\ \x8e\x63\x59\xd4\x44\xc0\xeb\xfa\x16\x81\x69\x18\x86\xdc\x03\xa5\ \x69\x0a\xc6\x18\x3c\xcf\x93\x92\x51\xc9\xbb\xae\x8b\x3c\xcf\xe1\ \xfb\x3e\xe2\x38\xc6\xc5\x8b\x17\xf1\xec\xd9\xb3\xef\x01\xfc\x4d\ \x3f\xd0\x2c\x9e\x3f\x7f\x1e\x8c\x31\xe4\x79\x8e\x28\x8a\x60\x9a\ \x26\xe2\x38\xee\xeb\xfa\x30\x0c\x11\x86\xa1\x4c\x77\x96\x65\xc9\ \x4b\x6c\xcc\x54\xbd\x0b\xef\xa4\x69\x8a\x34\x4d\x11\x04\x01\xc2\ \x30\xec\x01\xad\xc7\x56\x10\x04\x20\x84\x48\x03\xd5\x6a\x35\x94\ \x4a\xa5\xb3\x8d\x46\xa3\xfc\xe4\xc9\x93\x5d\x53\xd1\xe0\xb4\xeb\ \xba\x48\x92\x04\x84\x10\x79\xe3\xa8\xb4\x27\xc8\x46\x51\xd4\xf7\ \xa8\xa9\x17\xa7\x7e\xc6\x18\x54\x95\x01\x74\x1d\xa4\x0c\xc3\x90\ \xb2\xb5\x2c\xab\x0a\xa0\x8b\x80\xb9\xb3\xb3\x03\xd7\x75\x51\x2e\ \x97\xf7\x75\x38\xdf\xef\xd8\xb8\xcf\xc8\xb2\x0c\x1b\x1b\x1b\xe0\ \x9c\x83\x52\x9a\xf6\x9c\x89\x93\x24\xc1\xe6\xe6\x66\x57\x06\x18\ \x96\x2e\x07\x6d\xc8\xc6\xe9\xdb\xcb\x7c\xb5\x4d\x4f\x4f\x0f\xae\ \xc4\xc3\x2c\x34\xae\x95\xfa\xcd\x1d\x04\x66\x9c\x35\x44\x35\x1e\ \x34\xbf\x8b\x80\x5a\x2d\xf3\x3c\x47\x92\x24\x78\xf9\xf2\x25\x36\ \x37\x37\xf1\xf6\xed\x5b\xbc\x7f\xff\x1e\x1f\x3e\x7c\xc0\xf6\xf6\ \x36\x3e\x7f\xfe\x0c\xdf\xf7\xc1\x18\x93\x45\x47\xcd\x3e\xc3\x62\ \x26\xcf\x73\x9c\x3c\x79\x12\x9e\xe7\xa1\x5e\xaf\x63\x67\x67\x07\ \xf5\x7a\x1d\x9e\xe7\x61\x76\x76\x16\x9e\xe7\x61\x6e\x6e\x0e\x9f\ \x3e\x7d\x42\xbd\x5e\x87\x8e\x51\x25\x61\x8e\xb2\x86\xef\xfb\x98\ \x98\x98\x80\x69\x9a\xf2\x66\xc3\x30\xe4\xa7\x48\x8f\xea\x06\x6f\ \x1c\xef\xf5\x0b\x5e\x7d\xc7\x3a\x4e\xbc\xd0\x61\x0f\x1b\xf7\x6d\ \xc2\x97\x48\x6b\x54\xe0\x8f\x5a\xdb\x54\x06\xa8\x1e\x40\x84\x10\ \x54\xab\x55\x64\x59\x86\x24\x49\xf6\xf4\xb0\x61\x9a\xdf\x4b\xbf\ \xde\x74\xef\x98\x9d\xed\xe9\x24\xe7\xdc\xec\xb7\x4f\x3f\x7a\xf4\ \xa8\x94\x0b\x63\x0c\x61\x18\x4a\x32\x83\xac\xa3\x6f\x1d\x86\x05\ \xf6\x5e\x89\x88\xf1\xed\xed\xed\x09\x41\xa0\x00\xa0\xc8\x39\x37\ \xfb\xed\x63\xaa\xd5\x6a\xd7\x5b\x03\x35\x27\x87\x61\x88\x38\x8e\ \x91\x24\x89\x7c\x6f\x24\x2a\xf7\xa0\xe2\x35\x2e\x11\xf5\x39\xfd\ \x8c\xb4\xbb\xbb\x5b\x00\xe0\x98\x00\x2c\x00\x36\xe7\x3c\x65\x8c\ \x61\x72\x72\x12\x61\x18\xca\x85\x3d\xcf\x1b\x98\xc3\xfb\x1d\x5c\ \x44\x80\xeb\x1b\x37\xfd\x9e\x8d\x8d\x0d\xb8\xae\x8b\xd7\xaf\x5f\ \xc3\x75\x5d\xac\xaf\xaf\xe3\xd0\xa1\x43\x58\x5f\x5f\x97\xbf\xc5\ \xb8\xf0\xa8\x78\x6b\x97\x24\x49\xbe\xb5\xb5\xe5\x03\xb0\x64\x0c\ \x04\x41\xf0\xfc\xe9\xd3\xa7\xd7\xef\xdc\xb9\x83\x13\x27\x4e\x0c\ \x3d\xa4\xf4\x1b\xd3\x5f\x66\xe9\x6f\x2f\xfa\xcd\x1b\x34\xa6\x9f\ \x9b\xd5\x39\xaf\x5e\xbd\x02\x63\xec\x9f\xef\xde\xbd\x6b\x0b\x09\ \x25\x00\xa2\xe7\xcf\x9f\xff\xc3\xb2\xac\x6f\x5f\xbc\x78\xd1\x00\ \x30\xd9\x89\x8d\x7c\xaf\x7f\x82\xfc\x04\x2d\xef\x56\x54\xf6\xaf\ \x37\x6f\xde\xfc\x00\x20\x06\x10\x0b\x70\x45\xe5\x9a\xe8\xc8\x4a\ \x04\xb8\xf1\x95\x09\x88\x63\x59\xd2\x01\x1d\x02\x08\x3a\x57\x48\ \xb4\x8c\x34\x01\xc0\xe9\x7c\x37\x3a\x04\xcc\xaf\x4c\x20\x51\x88\ \x08\x12\x0c\x00\x1f\xf6\x0f\x0d\xed\x10\xa0\xff\x23\x1e\xe0\x00\ \x32\x4d\x4e\x07\xed\xa0\x1d\xb4\xff\x87\xf6\x1f\x3b\x73\x96\xc5\ \x09\x85\x52\x68\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x07\x81\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x29\x1b\xae\xfd\xe8\xd3\x00\x00\x07\x01\x49\x44\x41\x54\x68\ \xde\xed\x59\x4b\x6f\x14\xcb\x15\xfe\xaa\xfa\xe5\x19\xcf\x0c\xee\ \x2b\x46\x18\xae\x06\xa4\x38\x8c\x0d\x91\x10\x0f\x23\xc5\xb2\x79\ \x88\x08\xc7\x64\x31\xc8\x03\x83\xa2\x28\x17\x39\xba\xc9\x22\xab\ \xfc\x80\xbb\x61\xcf\x32\x59\xb1\x8d\x94\x0d\x82\x05\x7b\x24\xa4\ \xb0\xcf\x82\x05\x58\xd8\x42\x28\xe0\x0d\xc8\xb8\xf1\x74\x57\x3f\ \xab\xb3\xc8\x54\xa9\xa6\xe6\x69\x73\xaf\x88\x22\x97\xd4\x9a\x99\ \xaa\xea\xea\xef\x3b\xe7\x3b\xe7\x54\xf5\x00\x07\xed\xa0\x1d\xb4\ \x83\xf6\x35\x1b\xd9\xcb\xe4\x46\xa3\x51\x2e\x95\x4a\xe6\x4f\x0d\ \x2a\x49\x92\xcf\x0f\x1f\x3e\xcc\x7e\x34\x02\xcd\x66\x73\x91\x10\ \xf2\xd7\x72\xb9\x7c\xce\xb6\xed\xb1\x40\xe4\x79\x3e\x56\x9f\xde\ \x4f\x08\xc1\xee\xee\xee\xbf\x93\x24\xf9\xe1\xf1\xe3\xc7\x7f\xff\ \x62\x02\xad\x56\xcb\xce\xf3\x3c\xba\x7f\xff\x3e\x6a\xb5\x5a\x0f\ \x08\xf1\x5b\xed\xd7\xfb\x06\x8d\xf5\x9b\xd7\x21\x80\x7b\xf7\xee\ \xf1\xed\xed\xed\x5f\x3c\x7a\xf4\xe8\xd5\x30\x7c\x23\xe5\x90\x65\ \x59\xe3\xda\xb5\x6b\x38\x76\xec\x18\xb6\xb6\xb6\xba\x2c\x35\x0a\ \xf0\x20\x90\xa3\xe6\x54\x2a\x15\xdc\xbe\x7d\x9b\x3e\x78\xf0\xe0\ \xcf\x00\xfe\x32\x0c\x1f\x1d\x45\x80\x52\xba\xb6\xb2\xb2\x02\xdf\ \xf7\xf7\x17\x64\x84\xec\x79\x0e\x63\x0c\x67\xce\x9c\x81\x61\x18\ \xbf\xbf\x71\xe3\x86\xb3\x6f\x02\xcd\x66\xf3\x68\xa5\x52\xf9\xf5\ \xf1\xe3\xc7\xe1\xfb\x3e\x28\xa5\x63\x81\xa1\x94\x82\x10\xd2\xf3\ \x7d\x9c\x7b\x09\x21\xe0\x9c\xc3\x30\x0c\x2c\x2d\x2d\x7d\x53\x2c\ \x16\x9b\x5f\xe2\x81\xef\x56\x57\x57\xcd\x28\x8a\x90\x65\xff\x4d\ \x0a\x86\x61\x74\xe9\x95\x52\x0a\xd3\x34\xe5\xa5\x02\x26\x84\x48\ \x59\x88\x79\xb6\x6d\xc3\x71\x1c\x58\x96\x05\xc3\x30\x7a\x8c\x62\ \x59\x16\x38\xe7\x08\x82\x00\x4b\x4b\x4b\x00\xf0\xfd\xbe\x09\x10\ \x42\xd6\x16\x16\x16\xa4\x7c\xb2\x2c\x43\x96\x65\xa0\x94\xc2\xb2\ \x2c\x09\x58\xd5\x72\x9e\xe7\xe0\x9c\x83\x73\x2e\xc1\x0b\xa0\x86\ \x61\x48\x52\x2a\x79\xb1\x16\x21\x04\x49\x92\x80\x73\x8e\x30\x0c\ \x51\xab\xd5\x50\xad\x56\xaf\xdd\xba\x75\xeb\x67\x7b\x26\xd0\x6c\ \x36\x7f\x79\xfa\xf4\xe9\x53\xa5\x52\x09\x8c\x31\xe9\x62\xd3\x34\ \xa5\x17\x04\x50\x15\xb0\xf8\x14\x00\x05\x78\x4a\x69\x17\xc9\x7e\ \x19\x4a\x78\x4f\xf4\x87\x61\x88\xeb\xd7\xaf\x13\x42\xc8\x1f\xf7\ \xe3\x81\xb5\x9b\x37\x6f\x22\x08\x82\x2e\x09\xe8\xc0\x55\xab\x67\ \x59\x86\x3c\xcf\x25\x60\x55\x22\xc3\xb2\x0f\xe7\xbc\x4b\x96\xc2\ \x53\x8c\x31\x9c\x3b\x77\x0e\x84\x90\xbb\x57\xaf\x5e\x35\xc7\x26\ \xd0\x6a\xb5\x0a\x96\x65\xfd\xf6\xd4\xa9\x53\x68\xb7\xdb\x12\xbc\ \x6a\x61\x41\x40\xc8\x4a\x00\x57\xe5\xd2\x4f\x5a\xe2\x53\x1f\xd3\ \xeb\x8b\x61\x18\x48\xd3\x14\x85\x42\x01\x67\xcf\x9e\xfd\xf6\xf0\ \xe1\xc3\x2b\x63\x13\xc8\xb2\x6c\x75\x65\x65\xe5\x10\xe7\x1c\x69\ \x9a\xf6\xb8\x5f\xb5\xbc\x6a\x35\x61\x79\x4a\x69\x8f\xa4\x46\xe5\ \x7e\x3d\x13\x09\xaf\x33\xc6\x70\xe9\xd2\x25\x00\xf8\xd3\xd8\x04\ \x28\xa5\x6b\x57\xae\x5c\x41\xbb\xdd\x96\x8b\x65\x59\xd6\x23\x19\ \xf1\x10\xf5\xd2\x2d\x2c\x3e\x45\x5f\x3f\xeb\xab\xe0\xd5\x7b\x28\ \xa5\x08\xc3\x10\x33\x33\x33\x28\x97\xcb\xbf\x69\x34\x1a\xc7\x46\ \x12\x68\xb5\x5a\xc7\x8f\x1c\x39\xf2\xab\xe9\xe9\x69\x30\xc6\x60\ \x18\x46\x97\x35\x05\x11\x35\x55\x0a\x9d\xab\xe0\xf4\x18\x19\x26\ \x17\xbd\x46\x88\x75\x6d\xdb\x46\x9e\xe7\x48\xd3\x14\x97\x2f\x5f\ \x36\x2d\xcb\xba\x3b\x92\x40\x96\x65\x77\x1b\x8d\x06\x65\x8c\x41\ \x48\xc8\xb6\xed\x2e\xe0\xba\x5c\x06\xc9\x4b\x90\xd2\x83\x75\x14\ \x78\xe1\x59\x11\x47\x61\x18\x62\x7e\x7e\x5e\xd4\x04\x32\x8c\x00\ \x31\x0c\x63\xed\xc2\x85\x0b\x68\xb7\xdb\x5d\x0f\x75\x1c\x47\x02\ \x56\x8b\x94\xae\x75\x9d\x8c\x2e\x21\x5d\xe7\x6a\xf6\x51\x5b\xb1\ \x58\x94\x19\x30\x49\x12\x4c\x4d\x4d\x61\x76\x76\xf6\xe7\xcd\x66\ \xf3\xea\x40\x02\xcd\x66\xf3\xd2\xfc\xfc\xfc\x8c\x6d\xdb\x88\xe3\ \x58\x02\x09\x82\x00\xb6\x6d\xa3\x50\x28\xf4\x4d\x8b\xfd\x80\xeb\ \xdf\x75\xe0\xba\xf6\xd5\xec\x53\xa9\x54\x10\x45\x11\xd2\x34\x95\ \xfd\x51\x14\x61\x71\x71\x11\x7a\x4d\xa0\x9a\xfb\xfe\xb0\xbc\xbc\ \x8c\x76\xbb\xdd\xf5\x00\xce\x39\x3c\xcf\x03\x21\x04\xc5\x62\xb1\ \x6f\x4a\x1d\xe4\x85\x61\xbb\x57\x5d\x3a\xc5\x62\x11\x95\x4a\x05\ \xbe\xef\xcb\xea\x2f\xe6\x86\x61\x88\xb9\xb9\x39\x38\x8e\xd3\x6c\ \xb5\x5a\xdf\xf4\x10\x68\xb5\x5a\xa5\x52\xa9\xd4\x9a\x99\x99\x81\ \xef\xfb\x32\x38\x55\x4b\x7b\x9e\x87\x76\xbb\x0d\xc7\x71\x50\xa9\ \x54\xa4\xac\x54\x4f\xe8\x31\x30\x48\x2e\x62\x7d\xdb\xb6\x51\x2a\ \x95\xe0\xba\x2e\x08\x21\xf8\xf8\xf1\xa3\xac\xfc\xc2\x23\x96\x65\ \xc9\xf5\x16\x16\x16\x26\x38\xe7\xbf\xeb\x39\x0f\x64\x59\xb6\xba\ \xbc\xbc\x3c\x19\xc7\x31\x38\xe7\x98\x9a\x9a\x92\x69\x4c\xdd\x4a\ \x44\x51\x84\x28\x8a\xe0\x38\x0e\x0a\x85\x02\x8a\xc5\x22\x00\x20\ \x8e\x63\x59\xd4\x44\xc0\xeb\xfa\x16\x81\x69\x18\x86\xdc\x03\xa5\ \x69\x0a\xc6\x18\x3c\xcf\x93\x92\x51\xc9\xbb\xae\x8b\x3c\xcf\xe1\ \xfb\x3e\xe2\x38\xc6\xc5\x8b\x17\xf1\xec\xd9\xb3\xef\x01\xfc\x4d\ \x3f\xd0\x2c\x9e\x3f\x7f\x1e\x8c\x31\xe4\x79\x8e\x28\x8a\x60\x9a\ \x26\xe2\x38\xee\xeb\xfa\x30\x0c\x11\x86\xa1\x4c\x77\x96\x65\xc9\ \x4b\x6c\xcc\x54\xbd\x0b\xef\xa4\x69\x8a\x34\x4d\x11\x04\x01\xc2\ \x30\xec\x01\xad\xc7\x56\x10\x04\x20\x84\x48\x03\xd5\x6a\x35\x94\ \x4a\xa5\xb3\x8d\x46\xa3\xfc\xe4\xc9\x93\x5d\x53\xd1\xe0\xb4\xeb\ \xba\x48\x92\x04\x84\x10\x79\xe3\xa8\xb4\x27\xc8\x46\x51\xd4\xf7\ \xa8\xa9\x17\xa7\x7e\xc6\x18\x54\x95\x01\x74\x1d\xa4\x0c\xc3\x90\ \xb2\xb5\x2c\xab\x0a\xa0\x8b\x80\xb9\xb3\xb3\x03\xd7\x75\x51\x2e\ \x97\xf7\x75\x38\xdf\xef\xd8\xb8\xcf\xc8\xb2\x0c\x1b\x1b\x1b\xe0\ \x9c\x83\x52\x9a\xf6\x9c\x89\x93\x24\xc1\xe6\xe6\x66\x57\x06\x18\ \x96\x2e\x07\x6d\xc8\xc6\xe9\xdb\xcb\x7c\xb5\x4d\x4f\x4f\x0f\xae\ \xc4\xc3\x2c\x34\xae\x95\xfa\xcd\x1d\x04\x66\x9c\x35\x44\x35\x1e\ \x34\xbf\x8b\x80\x5a\x2d\xf3\x3c\x47\x92\x24\x78\xf9\xf2\x25\x36\ \x37\x37\xf1\xf6\xed\x5b\xbc\x7f\xff\x1e\x1f\x3e\x7c\xc0\xf6\xf6\ \x36\x3e\x7f\xfe\x0c\xdf\xf7\xc1\x18\x93\x45\x47\xcd\x3e\xc3\x62\ \x26\xcf\x73\x9c\x3c\x79\x12\x9e\xe7\xa1\x5e\xaf\x63\x67\x67\x07\ \xf5\x7a\x1d\x9e\xe7\x61\x76\x76\x16\x9e\xe7\x61\x6e\x6e\x0e\x9f\ \x3e\x7d\x42\xbd\x5e\x87\x8e\x51\x25\x61\x8e\xb2\x86\xef\xfb\x98\ \x98\x98\x80\x69\x9a\xf2\x66\xc3\x30\xe4\xa7\x48\x8f\xea\x06\x6f\ \x1c\xef\xf5\x0b\x5e\x7d\xc7\x3a\x4e\xbc\xd0\x61\x0f\x1b\xf7\x6d\ \xc2\x97\x48\x6b\x54\xe0\x8f\x5a\xdb\x54\x06\xa8\x1e\x40\x84\x10\ \x54\xab\x55\x64\x59\x86\x24\x49\xf6\xf4\xb0\x61\x9a\xdf\x4b\xbf\ \xde\x74\xef\x98\x9d\xed\xe9\x24\xe7\xdc\xec\xb7\x4f\x3f\x7a\xf4\ \xa8\x94\x0b\x63\x0c\x61\x18\x4a\x32\x83\xac\xa3\x6f\x1d\x86\x05\ \xf6\x5e\x89\x88\xf1\xed\xed\xed\x09\x41\xa0\x00\xa0\xc8\x39\x37\ \xfb\xed\x63\xaa\xd5\x6a\xd7\x5b\x03\x35\x27\x87\x61\x88\x38\x8e\ \x91\x24\x89\x7c\x6f\x24\x2a\xf7\xa0\xe2\x35\x2e\x11\xf5\x39\xfd\ \x8c\xb4\xbb\xbb\x5b\x00\xe0\x98\x00\x2c\x00\x36\xe7\x3c\x65\x8c\ \x61\x72\x72\x12\x61\x18\xca\x85\x3d\xcf\x1b\x98\xc3\xfb\x1d\x5c\ \x44\x80\xeb\x1b\x37\xfd\x9e\x8d\x8d\x0d\xb8\xae\x8b\xd7\xaf\x5f\ \xc3\x75\x5d\xac\xaf\xaf\xe3\xd0\xa1\x43\x58\x5f\x5f\x97\xbf\xc5\ \xb8\xf0\xa8\x78\x6b\x97\x24\x49\xbe\xb5\xb5\xe5\x03\xb0\x64\x0c\ \x04\x41\xf0\xfc\xe9\xd3\xa7\xd7\xef\xdc\xb9\x83\x13\x27\x4e\x0c\ \x3d\xa4\xf4\x1b\xd3\x5f\x66\xe9\x6f\x2f\xfa\xcd\x1b\x34\xa6\x9f\ \x9b\xd5\x39\xaf\x5e\xbd\x02\x63\xec\x9f\xef\xde\xbd\x6b\x0b\x09\ \x25\x00\xa2\xe7\xcf\x9f\xff\xc3\xb2\xac\x6f\x5f\xbc\x78\xd1\x00\ \x30\xd9\x89\x8d\x7c\xaf\x7f\x82\xfc\x04\x2d\xef\x56\x54\xf6\xaf\ \x37\x6f\xde\xfc\x00\x20\x06\x10\x0b\x70\x45\xe5\x9a\xe8\xc8\x4a\ \x04\xb8\xf1\x95\x09\x88\x63\x59\xd2\x01\x1d\x02\x08\x3a\x57\x48\ \xb4\x8c\x34\x01\xc0\xe9\x7c\x37\x3a\x04\xcc\xaf\x4c\x20\x51\x88\ \x08\x12\x0c\x00\x1f\xf6\x0f\x0d\xed\x10\xa0\xff\x23\x1e\xe0\x00\ \x32\x4d\x4e\x07\xed\xa0\x1d\xb4\xff\x87\xf6\x1f\x3b\x73\x96\xc5\ \x09\x85\x52\x68\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x06\xd3\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x28\x3b\x8c\x88\xf9\x5a\x00\x00\x06\x53\x49\x44\x41\x54\x68\ \xde\xed\x99\xcb\x8f\x1c\x47\x1d\xc7\x3f\xf5\xe8\xd7\xbc\x76\xf6\ \xe5\x5d\x7b\xe3\xd8\x06\x63\x81\x62\x29\x60\x09\x50\x84\x38\x21\ \x24\x0e\x04\x89\x03\x9c\x92\x53\x40\xbe\x21\x71\x45\xe2\x7f\xe0\ \x12\xb8\x20\x45\x42\x9c\x82\x22\x10\x84\x44\x58\xa0\x88\x40\xa2\ \x00\x82\x08\xfc\x20\xe0\x78\x6d\x67\x97\x7d\x7b\x66\x77\x1e\xdd\ \xd3\x5d\xd5\x55\x1c\x3c\x5e\x36\x36\x6c\x76\xd7\xb1\xbd\x2b\xf6\ \x27\xb5\xba\xa7\xa6\x66\xba\x3e\x5d\xbf\xdf\xf7\x57\xbf\x6a\x38\ \xb4\x43\xbb\x2f\x13\xdb\x7d\xf9\xcc\xb9\xe7\x4e\x7b\xad\x3e\xa7\ \x84\x7e\x4a\x2b\x71\xda\xe3\x8f\x09\x21\x23\xbc\xc7\x0b\x37\xf0\ \x4e\xac\x23\xfc\xa2\xb3\xfe\x62\x89\xbb\x8a\x70\xb3\x61\x51\x5e\ \x7b\xe1\xed\x17\x56\x1f\x19\xc0\xd7\x9e\xfa\x76\x92\x94\xe9\x37\ \x84\x94\xdf\x8a\x2b\xd1\xb1\x99\x93\x47\x39\x3a\x33\x5d\x69\x4e\ \x34\x69\x34\xaa\xe8\x28\x04\x3c\xb6\xb4\xe4\xf9\x80\x5e\xb7\x4f\ \xa7\xd5\xf1\xad\x5b\x1b\x59\x7b\x75\xa3\x68\x2d\xb7\x55\x9e\xe5\ \xd2\x0b\x7f\x03\xe7\xdf\x96\xc8\xb7\x3c\xf2\xb2\x94\xea\xe2\x8f\ \xfe\xf8\xfc\xad\x07\x0a\xf0\xec\xa7\xcf\x3f\x8d\xe4\x87\x53\x33\ \x93\xf5\x33\x67\x4f\x27\x93\xd3\xe3\xd8\x41\x89\xb3\x0e\x1c\x48\ \x21\x91\x42\x91\x17\x39\xd6\x19\x4a\x4a\x90\x1e\x1d\x6b\xa2\x6a\ \x48\xa5\x9e\xa0\x43\x4d\xbf\xd7\x67\x69\x7e\x85\x95\x85\x55\x7a\ \xad\x7e\xd1\x6b\xa7\x69\xd6\x1d\x28\xe7\xbc\x47\xf0\xae\x84\x3f\ \x79\x27\xfe\x02\x2c\xe2\xfc\x8a\x91\x7a\x21\xae\xa6\xab\x61\x37\ \x2c\x7b\x89\xaa\x09\xe3\x8e\x4a\xc7\x47\x07\xa9\x7a\xed\x27\x97\ \xbf\xdf\xdb\x0e\x40\x6f\xfd\xe0\x85\x7f\xe9\x53\x9f\x3d\x1b\x4c\ \x4c\x8d\xb3\xb1\xd6\x65\x76\xf5\x06\x61\x10\x12\x04\x01\x61\x78\ \xfb\x1c\x04\x01\x45\x5e\x30\xc8\x07\xc3\x23\xdb\x72\x7d\xfb\x70\ \x94\x84\x95\x88\x30\xd6\xd4\xc6\x6b\xe1\xf8\x63\xcd\x30\x0a\x43\ \xb2\x7e\x4e\xda\xc9\xce\xa5\xdd\xc1\x39\x93\x99\xcc\xe4\x65\x61\ \x0b\xeb\xa4\x29\x65\x99\x45\x61\xa6\x10\xba\x70\x48\xa9\x0a\x8b\ \x6d\x24\xb1\x3d\x01\xec\x1c\x40\x20\x3a\xf5\x66\x7d\x7c\x61\x76\ \x09\x3c\x84\x61\xb8\xa7\x69\x2d\x72\x43\xa7\xd3\x25\x2f\x06\x28\ \xa9\x50\x52\xa3\x95\x22\x8e\x13\x92\x24\x21\x8a\x42\xc2\x46\x92\ \x08\x44\x82\x03\x67\x3d\x02\x89\xfe\x4f\xdf\x78\xf6\xc6\x5c\xdf\ \x3b\xfb\x81\xf7\xd2\x77\x37\x78\xef\xf1\x78\xc4\xf6\xf1\xbd\x27\ \x33\x85\xc1\x5b\x4f\x9e\xe6\x68\xa9\x51\x52\xa1\x95\x46\x49\x8d\ \x52\x72\x4f\xff\x29\x0f\xba\x8c\x1e\x02\x1c\x02\xfc\xbf\x03\xe8\ \xbd\xfc\xc8\x8b\x92\xb5\xe4\x1d\xd6\x9a\xff\xa4\x53\xbd\x46\x1e\ \x6e\x60\x64\x1f\x8f\xa7\xc4\x20\x9c\x06\x1b\x20\xfa\x21\xae\x5d\ \xc3\xb7\x46\x20\x6d\x20\xfa\x23\xd0\x1f\x05\xd4\xa3\x01\xc8\xd4\ \x3a\x7f\x1d\x79\x99\xb9\xca\x9b\x1c\x1d\x3f\xc5\xe3\xc7\x4e\x30\ \x3d\xf1\x45\x46\x2b\x47\x18\x89\x27\x88\x74\x05\xe1\x35\xc6\x16\ \x14\x36\xa7\x3b\x68\xb1\xdc\xb9\xc1\xca\xfa\xbf\x58\xb9\xb5\x4c\ \xbb\x73\x9d\x76\xb6\x8c\x28\x34\x41\x67\x8c\xb0\x35\x45\xbc\x31\ \x45\xdc\x3f\x42\x32\x98\xfc\x70\x00\x5c\xe9\x90\x52\xe2\x4b\xff\ \xbe\xf6\xab\xcd\x57\xb9\x36\xf1\x2a\x4f\x9c\x79\x92\xaf\x9e\x7c\ \x06\x82\x82\x81\xdf\xa0\xcf\x2c\x3d\xf1\x0e\x73\xc6\x83\x05\x6b\ \x2d\xae\x14\x08\x1b\xa0\x7c\x84\xae\x24\x1c\x49\xc6\x98\x9e\x9e\ \x42\x38\x8d\x2b\x1d\xeb\xd9\x1a\x6b\x9d\x45\xda\xdd\x55\xd2\xce\ \x1c\x2b\x59\x46\x5e\x66\x84\x45\x8d\xb8\x37\x45\xa5\x73\x8c\x3c\ \x32\x3a\x3f\xfd\xf7\x2f\x3c\x7d\x3e\xb8\xe4\xb4\xba\x05\xa0\xbc\ \x0f\x44\x29\x8e\x7b\x5f\x7e\xec\xe7\xe7\xcd\x0f\x76\x35\x03\x57\ \xc6\x5e\xe2\xcb\x9f\xff\x3a\x65\xd4\xe5\x7a\xf1\x3a\xde\x3a\x02\ \x15\xa2\x65\x48\xa0\x02\x34\x21\x72\xe8\x1a\xa5\x2f\xb0\x2e\xc5\ \x58\x83\xb1\x06\x6b\xec\xed\xb3\xb5\x18\x73\xdb\xc5\x84\xd0\x24\ \x35\x4d\x75\x64\x14\xa1\x9a\x38\x0a\x32\x93\x62\x8a\x25\x4c\xb1\ \x48\x94\x11\x29\x67\xbe\x67\xcb\xb8\xb4\x45\x29\xc1\x2b\xa9\x94\ \x0b\x63\xed\xba\xed\xac\x09\xec\x0e\x20\x90\x31\x2a\xf0\xbc\x37\ \xb8\xb8\x39\xe0\xbd\x5a\xe1\x32\xac\xb5\x58\x6b\x91\x4a\xa2\xb4\ \x44\x29\x89\x0e\x34\x61\x12\xa3\x36\xdb\x54\x43\x69\x79\xbb\x8f\ \x52\x9b\xfd\xde\x78\xe5\xca\xf6\x2a\x24\xc4\xbd\xcb\x08\xef\xfd\ \x03\x57\x14\x8f\x7f\x70\x32\xea\x7c\xb9\xe9\x22\x07\x36\x0f\xec\ \xe5\x09\x1d\x26\xb2\xdd\x01\x78\x81\x10\x07\x16\x20\x38\xe8\x2e\ \x14\x1c\x74\x17\x52\x1e\xc4\x41\x03\xd0\x77\xef\x50\x88\xbb\xf6\ \x2c\xa2\x24\xa4\x5a\xaf\x0e\xdb\xfd\xbe\x06\xf0\x00\x52\x49\x1a\ \x63\x75\xea\xcd\x1a\xcd\x89\x26\x38\x4f\x96\xe6\xfb\x70\xe8\xf7\ \x02\x94\x00\x41\x18\x20\x10\xbc\x7b\xe5\xba\x9d\xbf\xb9\x60\xf2\ \x2c\xd7\x0e\xb7\xe0\x9e\x2b\x8f\xef\x47\xd9\xdd\x0a\x60\xf1\x8c\ \xfe\xfe\x57\x7f\x28\x8a\x3c\x4f\xd7\xd3\xf6\x2f\x6e\xb6\x66\x5f\ \xff\xdb\xc2\x9f\xaf\x01\xf2\x2b\xdf\x8c\x5e\xf1\xf8\x70\x3f\x03\ \x14\xc0\x5a\xbb\xdb\x7e\xfe\xc2\x95\x9f\xbd\xd8\x2b\x7a\x6a\xa8\ \x4c\xe2\x43\xad\x40\x1e\x64\x45\xb6\xf2\xde\x8d\x93\x17\x96\x2f\ \x04\x40\x05\x08\x87\x00\x6a\x08\xe1\xf7\x3d\xc0\x85\xe5\x0b\xfd\ \xe1\xa0\xdd\x10\x40\x0d\xfb\x08\xf6\x9f\x0a\x25\x40\xf6\xdf\xea\ \x01\x33\x0c\xe8\xe0\x5e\x80\x7d\x65\x31\x50\xfc\xaf\x82\xc6\x01\ \xf9\x96\xfc\xa0\xf7\x21\x40\x08\x04\x3b\x91\x45\x7f\x27\x88\x1f\ \x46\x51\xb3\x0b\x0b\x00\xbd\x53\x5d\xdf\x8f\xcb\x6e\x09\xc8\x3d\ \xbb\x86\x14\x9a\xaa\x9a\xa0\xa2\x9a\x24\xba\x4e\xa4\xaa\x04\x22\ \xc6\xc8\x9c\x81\x4c\xc9\x45\x4a\x26\x7a\xa4\x74\xe8\xda\xb5\x47\ \xbe\xb1\xe5\xee\x5c\x8c\x87\xa7\x98\x08\x1f\xa7\xa2\x47\x19\xe4\ \x29\xfd\x6e\x4a\xaf\xd8\xa0\x2c\xdb\x0e\x2b\x9d\x10\x92\x6a\xd4\ \xd0\x95\x68\x8a\x91\xe0\x0c\x95\x6a\x83\xb8\x91\xb0\x61\x56\x68\ \x65\xf3\xb4\xb3\x45\x5a\xd9\x12\x9d\x6c\x95\xbe\xdd\xb8\x9f\xb1\ \x3b\xc0\xed\x14\x60\xf3\x4d\x43\xb6\x5e\xf2\xc6\xdc\x6b\x83\xa5\ \xe5\x45\xe5\x1c\x1b\xa6\xcf\x6c\xd6\x29\xe7\x8a\x9e\x5f\xb7\xb9\ \xef\x0b\x29\xb4\x0c\x89\x93\x86\x1c\x0b\xab\x72\x2a\x48\x78\x4c\ \x68\x3f\x59\x8f\x47\xfd\x68\x6d\xd2\xd5\x6b\xcd\xb0\x9a\x8c\x06\ \x33\x95\x69\x7c\xc5\x91\x96\x2d\x06\x74\x31\x3e\xc5\x09\xb3\xf5\ \x59\x7d\x90\x19\xc0\xee\x1c\xc0\xfb\xe8\x97\xbf\xfd\x69\x6e\x73\ \x7f\x7d\xfd\xba\x7d\xf1\x1f\x2f\xdb\x37\x57\x2e\xb3\xbe\xd3\x59\ \x9c\x38\xbb\xd8\x9c\xf9\xe4\xda\xa9\xda\xb4\x3f\x51\x9b\x56\x4f\ \x46\x35\x3e\x21\xa4\x98\x4c\xe2\x9a\x49\x92\x44\x25\x55\x9d\xe8\ \x48\xa3\x62\xbb\x6d\xde\xb7\xa6\xdc\xba\x72\x28\x76\x1e\x03\x9e\ \xab\x9d\xf9\xf2\x3b\xbf\xf9\x6e\xf1\xd6\x30\x89\xe8\xa1\x3a\xed\ \x68\x99\xb1\x76\x89\xde\xda\x25\x33\x0f\xfc\x0e\xec\x8f\x01\x82\ \x0a\xea\xcc\x97\xcc\x47\x1a\xa7\xd6\x4f\xd7\x26\xc4\xc7\xc3\xba\ \x7a\x42\x85\x9c\x14\xc2\xd7\xb5\x56\xb9\x0a\xa4\xd7\x5a\x49\x21\ \x84\x2f\xad\xc3\x18\xa3\xac\x71\x5a\x20\x6e\x02\x03\xc0\x89\x5d\ \x00\x08\x04\xd1\x70\xf0\xd1\x6e\x01\x76\x63\x51\x03\x75\xfc\x33\ \xc1\x78\x6d\xc6\x8d\x57\x46\xe5\x98\x50\xc2\xb9\xb2\xec\xf7\x57\ \xe5\xd2\xec\xaf\xcd\x6c\x6f\x99\x1e\x90\xb2\xc7\x0c\x1b\x0c\x01\ \xee\x64\xe9\x87\x21\xb1\x7e\x18\x87\xe5\xd0\x75\xf2\xf7\x55\x61\ \xf7\xa1\xc3\x0f\x13\x60\x57\x11\x7e\x68\x0f\xcb\xfe\x0d\xd2\x01\ \xe4\x64\xb5\x03\x16\x54\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x18\x4b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0a\x05\x13\x1c\x0a\xa6\x43\xc7\xce\x00\x00\x17\xd8\x49\x44\ \x41\x54\x78\xda\xed\x5d\x7d\x70\x13\xe7\x9d\x7e\xde\x77\x25\x63\ \xcb\xb2\x8d\xfc\xfd\x01\x06\x0c\xc6\xc6\x72\xc0\xdf\x38\xc6\x98\ \x34\x40\x8e\xcb\x84\xf6\xc2\x1c\x93\xa4\x14\x48\xd2\xe9\xa5\x49\ \xda\x66\xda\x39\x32\xed\x91\x10\xe7\xd2\x29\x49\x66\x92\xde\xdd\ \x64\xd2\x5e\x2e\x99\x70\x4d\xd2\xe6\xca\x91\x84\x50\x92\x5e\x4d\ \x8b\x31\x05\xfb\x0c\x24\x06\xe3\x40\x00\xe3\x60\xe3\x6f\x63\xcb\ \xb2\x24\x5b\x5f\xbb\xf7\x47\xbc\xba\xf5\xb2\x2b\xed\x4a\x32\xb6\ \xc5\x3e\x33\x3b\x92\xf7\xcb\xab\xf7\xf7\xbc\xbf\xaf\xf7\xf7\xbe\ \x0b\x68\xd0\xa0\x41\x83\x06\x0d\x1a\x34\x68\xd0\xa0\x41\x83\x06\ \x0d\x1a\x34\x68\xd0\xa0\x41\x83\x86\x08\x07\x89\xb4\x1f\xb4\x6d\ \xdb\xb6\x05\x1c\xc7\x45\x19\x8d\xc6\xbe\x37\xde\x78\xc3\xa1\x89\ \xf8\x36\x20\xc0\xd6\xad\x5b\x13\x19\x86\x79\x06\xc0\x0e\x42\x48\ \x12\x21\x04\x84\x90\x09\x00\x0d\x00\xfe\xf9\xbd\xf7\xde\x3b\xa1\ \x89\x3a\x42\x09\xb0\x65\xcb\x96\x0c\xbd\x5e\x7f\x8c\x10\x92\x9b\ \x97\x97\x87\xca\xca\x4a\xb0\x2c\x8b\xae\xae\x2e\x74\x74\x74\xa0\ \xb7\xb7\x17\x00\xde\x8c\x8e\x8e\x7e\x4a\xd3\x08\x37\x83\x99\xeb\ \x3f\xc0\x6c\x36\xbf\x66\x30\x18\xee\x5e\xbf\x7e\x3d\xd6\xaf\x5f\ \x8f\xe2\xe2\x62\x18\x0c\x06\x10\xf2\x35\xb7\xc7\xc6\xc6\xe0\x70\ \x38\x4a\x3c\x1e\xcf\x96\x92\x92\x92\x86\x96\x96\x96\x01\x4d\xec\ \xff\x0f\x3a\xe7\x55\x18\x21\x7f\x93\x99\x99\x09\x42\x08\xac\x56\ \x2b\xac\x56\x2b\xf4\x7a\x3d\xf4\x7a\x3d\xa2\xa2\xa2\x30\x31\x31\ \x01\x96\x65\xc1\xb2\xec\x0a\x8f\xc7\xd3\xbc\x7d\xfb\xf6\x27\x35\ \xb1\x47\x10\x01\x00\xa4\x8f\x8f\x8f\xc3\x66\xb3\xc1\x6a\xb5\x62\ \x74\x74\x14\x51\x51\x51\xd0\xeb\xf5\xd0\xe9\x74\xb0\xd9\x6c\x60\ \x59\x16\x5e\xaf\x17\x2c\xcb\x46\xb3\x2c\xfb\xda\xf6\xed\xdb\x3f\ \xda\xb1\x63\x47\x92\x26\xfe\x08\x20\x80\x5e\xaf\xc7\xd8\xd8\x18\ \xc6\xc6\xc6\x10\x1d\x1d\x8d\xf8\xf8\x78\x98\x4c\x26\x14\x17\x17\ \x63\xe3\xc6\x8d\xa8\xa9\xa9\x01\xcb\xb2\xe0\x38\x4e\xf8\xf9\x2d\ \x8e\xe3\x3e\xdf\xb9\x73\x67\x8d\xe6\x03\xcc\x71\x2c\x5e\xbc\xb8\ \xd6\xe9\x74\xc2\x64\x32\xe1\x81\x07\x1e\xc0\xc8\xc8\x08\x3a\x3a\ \x3a\x30\x34\x34\x04\xaf\xd7\x8b\x8a\x8a\x0a\x54\x54\x54\xe0\xcc\ \x99\x33\x98\x98\x98\x00\xc7\x71\xe0\x38\x0e\x00\x12\x00\xec\x58\ \xb5\x6a\x15\x93\x97\x97\x77\xfc\x8b\x2f\xbe\xe0\x34\x02\xcc\x41\ \x2c\x5f\xbe\xbc\x96\x65\x59\xac\x5c\xb9\x12\x0c\xc3\xc0\x6e\xb7\ \xfb\x54\xfe\xf8\xf8\x38\x86\x86\x86\x10\x1b\x1b\x8b\x6f\x7e\xf3\ \x9b\x18\x18\x18\xc0\xf5\xeb\xd7\x7d\x0e\x22\xc7\x71\x14\xc0\x3a\ \xbd\x5e\x7f\x77\x69\x69\xe9\x91\x96\x96\x16\xab\x66\x02\xe6\x18\ \x78\xb5\xae\xd7\xeb\x31\x32\x32\xc2\x3b\x7c\x53\xb6\x81\x81\x01\ \x74\x74\x74\xe0\x91\x47\x1e\xc1\xe3\x8f\x3f\x0e\x42\xc8\x14\xb3\ \xc0\xb2\x6c\xb5\xc7\xe3\x69\xd9\xb1\x63\xc7\xfd\x1a\x01\xe6\x18\ \x38\x8e\x83\xd7\xeb\xf5\xa9\x77\xaf\xd7\x2b\xb9\xd9\xed\x76\xb4\ \xb5\xb5\x61\xf1\xe2\xc5\x78\xf9\xe5\x97\xb1\x60\xc1\x02\x1f\x41\ \x26\x1d\xc4\x44\x8e\xe3\x0e\xec\xdc\xb9\xf3\x57\x0f\x3f\xfc\x70\ \xb4\x66\x02\xe6\x08\x72\x72\x72\x6a\x01\x20\x3d\x3d\x1d\xa9\xa9\ \xa9\xd0\xeb\xf5\x3e\x3b\x2f\xde\x58\x96\x85\xc5\x62\x01\xc7\x71\ \xb8\xef\xbe\xfb\xc0\x71\x1c\x2e\x5d\xba\xe4\x33\x09\x00\x08\xc7\ \x71\x65\x84\x90\x6f\x95\x97\x97\xd7\x7f\xf6\xd9\x67\x43\x9a\x06\ \x98\x03\x1a\x80\x65\x59\xd8\x6c\x36\xcc\x9b\x37\x4f\x56\x03\x08\ \xb7\xa1\xa1\x21\x9c\x3f\x7f\x1e\x1b\x36\x6c\xc0\xcf\x7e\xf6\x33\ \xc4\xc6\xc6\xfa\x34\xc1\xe4\xfd\xee\xf0\x78\x3c\xa7\x1f\x7d\xf4\ \xd1\xef\x69\x1a\x60\x96\x63\xc9\x92\x25\xb5\x00\x10\x17\x17\x87\ \xe5\xcb\x97\xcb\xf6\x7e\xf1\xe6\xf1\x78\x30\x30\x30\x00\x93\xc9\ \x84\xcd\x9b\x37\xa3\xa7\xa7\x07\xfd\xfd\xfd\x53\x22\x4c\x00\x9b\ \xcb\xca\xca\xcc\xd5\xd5\xd5\xff\xd3\xdc\xdc\xec\xd4\x08\x30\x4b\ \xc3\x40\x8e\xe3\x10\x13\x13\x03\xb3\xd9\xac\x98\x00\xfc\x36\x3a\ \x3a\x0a\x9b\xcd\x86\x8d\x1b\x37\x22\x2d\x2d\x0d\x6d\x6d\x6d\x60\ \x59\xf6\x6b\x7b\xf0\xf5\xa0\x92\xd9\xe3\xf1\x3c\x54\x5e\x5e\xde\ \x74\xe6\xcc\x99\x6e\x8d\x00\xb3\x0c\x8b\x16\x2d\xaa\xe5\x38\x0e\ \x3a\x9d\x0e\x25\x25\x25\x3e\xef\x5e\xcd\xe6\x74\x3a\xd1\xd7\xd7\ \x87\xbc\xbc\x3c\xac\x5b\xb7\x0e\x17\x2f\x5e\x84\xcd\x66\xf3\xfd\ \x0f\x42\xc8\x7c\x42\xc8\xce\xb2\xb2\x32\xf7\xe6\xcd\x9b\x4f\xd6\ \xd7\xd7\x73\x1a\x01\x66\x11\x01\xf8\x70\x70\xed\xda\xb5\x70\xb9\ \x5c\xaa\x09\xc0\xfb\x11\x03\x03\x03\x60\x18\x06\xf7\xde\x7b\x2f\ \x58\x96\xc5\xd5\xab\x57\x7d\x0e\x22\x21\x84\x21\x84\x6c\x70\x38\ \x1c\x55\x15\x15\x15\x75\xa7\x4e\x9d\xb2\x69\x4e\xe0\x2c\xc9\x03\ \xb0\x2c\x0b\x87\xc3\x01\x8f\xc7\xa3\xc8\x09\xf4\xb7\x75\x77\x77\ \xa3\xa5\xa5\x05\xeb\xd7\xaf\xc7\x8f\x7e\xf4\x23\x18\x8d\xc6\x29\ \x39\x05\xaf\xd7\xbb\x91\x65\xd9\xb3\x4f\x3c\xf1\xc4\x26\x4d\x03\ \xcc\x02\x2c\x58\xb0\xa0\x76\x32\xb5\x8b\x92\x92\x12\x5f\x64\x10\ \xca\xe6\x72\xb9\xd0\xd3\xd3\x83\xf4\xf4\x74\x6c\xd8\xb0\x01\x03\ \x03\x03\x18\x18\x18\xe0\x7d\x02\x10\x42\x62\x09\x21\xdb\x2a\x2a\ \x2a\xe2\x8a\x8b\x8b\x8f\x9e\x39\x73\x86\xd5\x08\x30\x43\xc8\xca\ \xca\xaa\xe5\x85\x5e\x54\x54\x04\x4a\x69\xc8\x04\xe0\x4d\xc2\xe0\ \xe0\x20\x9c\x4e\x27\xbe\xf1\x8d\x6f\x20\x25\x25\x05\x97\x2f\x5f\ \x06\xcb\xb2\x20\x84\x80\x52\x4a\x08\x21\x55\x94\xd2\xbf\x2d\x2f\ \x2f\x3f\x7a\xea\xd4\xa9\x61\xcd\x04\xcc\x60\x1e\x80\x65\x59\xb8\ \x5c\x2e\xc9\x54\xb0\xbf\x2d\x90\x49\xe8\xeb\xeb\x43\x53\x53\x13\ \x96\x2e\x5d\x8a\xa7\x9e\x7a\x0a\x99\x99\x99\xbe\x63\x93\x9a\xa7\ \x8c\x10\x72\xe6\x07\x3f\xf8\xc1\x77\x34\x0d\x30\x03\xc8\xcc\xcc\ \xac\xe5\x7b\x6d\x5e\x5e\x1e\x0c\x06\x83\xaa\x9e\x2e\x45\x28\xa9\ \x9c\x41\x77\x77\x37\x62\x63\x63\x71\xd7\x5d\x77\x81\x10\x82\xce\ \xce\x4e\x50\x4a\x79\x93\x30\x8f\x10\xb2\xa5\xa2\xa2\x62\x49\x59\ \x59\xd9\x91\x53\xa7\x4e\xb9\x34\x02\xdc\x22\x64\x64\x64\xf8\x08\ \x90\x93\x93\x83\x84\x84\x84\x90\x54\xbf\x3f\x32\xdc\xb8\x71\x03\ \x16\x8b\x05\x65\x65\x65\xc8\xcd\xcd\x45\x47\x47\x07\x9c\x4e\xa7\ \x30\x5c\x2c\xa2\x94\xfe\x7d\x55\x55\xd5\xc9\xa6\xa6\xa6\x5e\x8d\ \x00\xb7\x88\x00\x82\xac\x20\x12\x13\x13\xc3\xe2\x03\xc8\x91\x61\ \x7c\x7c\x1c\x3d\x3d\x3d\xc8\xca\xca\x42\x55\x55\x15\xac\x56\x2b\ \x06\x07\x07\x85\x0e\x62\x12\xc7\x71\x0f\xaf\x5e\xbd\xda\xd6\xdc\ \xdc\xfc\xbf\x1a\x01\xa6\x19\x69\x69\x69\x3e\x0d\x90\x9d\x9d\x8d\ \xe4\xe4\xe4\xb0\x11\x40\xce\x39\xf4\x78\x3c\xe8\xe9\xe9\x01\xcb\ \xb2\xb8\xf3\xce\x3b\x91\x9c\x9c\x8c\xab\x57\xaf\xc2\xeb\xf5\xf2\ \x9a\x40\x47\x08\xd9\x54\x59\x59\x59\x5a\x51\x51\x71\xa4\xb9\xb9\ \xd9\xa1\x11\xe0\x16\x10\x20\x2d\x2d\x0d\xe9\xe9\xe9\xd3\x4a\x00\ \xf1\xc8\xe2\xc0\xc0\x00\xf2\xf3\xf3\x51\x58\x58\x88\xce\xce\x4e\ \x8c\x8f\x8f\x0b\xb5\xc1\x72\x4a\xe9\xb6\xca\xca\xca\x96\xa6\xa6\ \xa6\x0e\x8d\x00\xd3\x80\xd4\xd4\x54\x9f\x09\x48\x4c\x4c\xc4\xc2\ \x85\x0b\x6f\x09\x01\x78\x4c\x4c\x4c\xe0\xda\xb5\x6b\x30\x99\x4c\ \xa8\xaa\xaa\x82\xcd\x66\xc3\xe0\xe0\xa0\xf0\x11\xe3\x08\x21\xdb\ \x2b\x2b\x2b\xa3\x36\x6d\xda\xd4\x50\x5f\x5f\xcf\x6a\x04\x08\x23\ \x52\x52\x52\x7c\x1a\x20\x31\x31\x11\x4b\x96\x2c\x09\x29\xa4\x0c\ \x86\x08\x2c\xcb\xa2\xbf\xbf\x1f\x0e\x87\x03\x95\x95\x95\x30\x99\ \x4c\xb8\x76\xed\x1a\x38\x8e\xe3\x35\x01\x21\x84\xd4\xb8\x5c\xae\ \x0d\x55\x55\x55\x7f\x6e\x6c\x6c\x1c\x9d\x2d\xed\x37\xe7\x67\x06\ \x15\x14\x14\x70\xbc\x20\x96\x2e\x5d\x8a\x4d\x9b\xc2\x93\xa1\x95\ \x0a\x11\x95\x9c\x1f\x1d\x1d\x8d\xd2\xd2\x52\x70\x1c\x87\x83\x07\ \x0f\xc2\x6a\xb5\x0a\xc7\x13\x40\x08\xb1\x10\x42\xbe\xf7\xca\x2b\ \xaf\xfc\xf7\x9c\x21\x40\x4d\x4d\xcd\x42\x8e\xe3\x5e\xa2\x94\xde\ \x8b\xaf\xab\x69\x85\x55\x34\x01\xbf\xf3\xc3\xab\xe2\x91\x3a\x61\ \x5d\x9e\xbf\xf3\xc4\xe7\x0b\x7b\x9f\x50\x50\x19\x19\x19\xd8\xb2\ \x65\x4b\xd8\x84\x1a\xcc\x3d\xf8\xe3\xf9\xf9\xf9\x58\xb4\x68\x11\ \x8e\x1c\x39\x82\x2b\x57\xae\x08\xfd\x02\x7e\xfb\x77\xa3\xd1\xf8\ \x93\xda\xda\xda\x19\x75\x10\x03\x9a\x80\x3b\xef\xbc\x33\x91\x61\ \x98\x53\x84\x90\x35\x00\xa2\xa5\x04\x2c\xdc\x27\xde\x2f\x14\x94\ \x58\xd8\x52\x84\x10\xee\x13\x67\xed\xe4\x84\xcf\xef\xa3\x94\xa2\ \xb0\xb0\x70\xda\x9c\x3e\xa5\x26\x81\xe3\x38\x0c\x0e\x0e\x62\x78\ \x78\x18\x6b\xd6\xac\x41\x42\x42\x02\x3a\x3b\x3b\xc5\x6d\x55\xe6\ \x72\xb9\xfe\x6e\xcd\x9a\x35\x0d\x27\x4f\x9e\x9c\xb1\xe9\x6a\x01\ \x53\xc1\x7a\xbd\xfe\x05\x00\x0b\x83\xe9\x15\xc2\x06\xe1\x05\x2f\ \xd7\xc3\xd5\x8e\xe3\x8b\x89\x21\x2c\xe9\x0a\x55\xd0\x52\x5b\xa0\ \xe3\x52\xcf\x33\x34\x34\x84\xba\xba\x3a\x24\x25\x25\x61\xeb\xd6\ \xad\x88\x8d\x8d\x9d\xd2\x56\x84\x10\x33\x21\xe4\xd4\xd3\x4f\x3f\ \xfd\xfd\x59\xab\x01\xb2\xb3\xb3\x5f\x23\x84\x98\x94\xaa\x7b\xf1\ \x77\x71\x2f\x15\xf7\x14\xa5\x3d\x4e\x6c\x26\xa4\x34\x01\xcb\xb2\ \x28\x2e\x2e\xbe\xa5\x3d\xde\xdf\xb9\x3c\x29\xbb\xba\xba\x40\x29\ \xc5\xda\xb5\x6b\x31\x3a\x3a\x8a\xd1\xd1\x51\x9f\x29\x00\xa0\x03\ \x70\x5f\x75\x75\xf5\xca\xb5\x6b\xd7\xd6\xfd\xf5\xaf\x7f\x9d\x98\ \x55\x3e\xc0\xda\xb5\x6b\x39\x5e\xa8\x69\x69\x69\xd8\xb5\x6b\x17\ \x3e\xfe\xf8\x63\x59\xd5\xaf\xd3\xe9\x6e\xda\x2f\x75\xae\x9a\xfd\ \x0c\xc3\xa8\xba\x67\xb8\x1d\x3d\x25\xe7\x05\xd2\x82\x00\x60\x34\ \x1a\xb1\x7a\xf5\x6a\x74\x76\x76\xa2\xb1\xb1\x51\xe8\x18\xf2\x5b\ \x27\xa5\xf4\xdb\x7b\xf7\xee\x3d\x31\x6b\x34\x00\x5f\x71\x43\x08\ \x41\x7c\x7c\x3c\xaa\xab\xab\xd1\xd1\xd1\xe1\x9b\x7c\x29\xdc\x18\ \x86\x11\x0e\x90\xf8\x36\xf1\x3e\x4a\xa9\x6f\x93\x3a\x57\xbc\x5f\ \xae\x81\xa7\x23\xd5\xeb\xcf\xae\x07\x73\x8e\x70\xbf\xd3\xe9\x44\ \x47\x47\x07\x16\x2e\x5c\x88\x3b\xee\xb8\x03\x9d\x9d\x9d\xf0\x78\ \x3c\xc2\xdf\x9a\xc0\x71\xdc\x8e\xea\xea\x6a\x2e\x33\x33\xf3\xc4\ \xad\x98\xae\xa6\x8a\x00\x71\x71\x71\x28\x2b\x2b\x43\x7b\x7b\xbb\ \x62\xb5\x2e\xde\xe7\xaf\xa1\x82\x39\x36\x9d\x79\x7f\xb5\xcf\xa0\ \x84\x04\x1c\xc7\xa1\xb7\xb7\x17\x2e\x97\x0b\xd5\xd5\xd5\xb0\x58\ \x2c\x18\x1b\x1b\x13\x6a\x35\x4a\x08\xb9\x3b\x29\x29\xa9\x66\xdd\ \xba\x75\x47\x8e\x1f\x3f\x3e\x36\xa3\x4e\xa0\x58\x95\xf1\x35\x77\ \x4a\x1c\x24\x39\x67\x4d\x2e\x02\x50\xeb\x98\x05\x53\x00\xaa\xd4\ \x89\x93\xbb\x2e\xd0\xfd\xe4\xfe\x87\x78\x7f\x77\x77\x37\x8e\x1e\ \x3d\x8a\xe2\xe2\x62\x94\x96\x96\x4a\x35\xf9\x5d\x1c\xc7\xb5\xec\ \xde\xbd\x7b\xf3\xac\xd0\x00\xbc\x0d\x5b\xb5\x6a\x15\x3a\x3b\x3b\ \x55\xb3\x5e\xed\xdf\x72\xe3\xf5\xa1\xc4\xf6\x6a\x6c\xbe\x52\x0d\ \x10\x8c\x83\x2b\xac\x33\xf8\xea\xab\xaf\x90\x92\x92\x82\xc2\xc2\ \x42\x74\x77\x77\xfb\x06\x94\x26\x61\x00\xf0\x60\x4d\x4d\x4d\x62\ \x51\x51\xd1\xd1\xe6\xe6\x66\xef\x8c\x13\xa0\xb0\xb0\x10\x5d\x5d\ \x5d\xaa\x04\x1a\x8c\xf0\xd5\xaa\x7d\x7f\xe7\xaa\xd5\x14\x81\x88\ \x10\xce\x7d\x7c\xce\xc0\x66\xb3\xa1\xb2\xb2\x12\x56\xab\x15\x0e\ \x87\x43\xe8\x17\x10\x42\xc8\xea\xe8\xe8\xe8\xfb\x6a\x6a\x6a\xea\ \x1b\x1a\x1a\x6e\xcc\x88\x09\xe0\x1f\x5e\xaa\xec\xca\x9f\xaa\x0f\ \x74\x4c\x89\x39\x09\x35\x14\x0b\xd6\x34\xa8\x51\xf3\xa1\xec\xe3\ \xeb\x0f\xeb\xeb\xeb\x91\x9b\x9b\x8b\xfc\xfc\x7c\x29\x12\x16\x01\ \x38\xbd\x67\xcf\x9e\x47\x66\x24\x0c\x9c\x1c\x7a\xc5\xfd\xf7\xdf\ \x8f\x73\xe7\xce\xc9\x86\x63\x72\x59\x41\x35\xe7\x05\x1b\x3a\x86\ \x2b\x04\x94\x8b\x38\x94\x9c\x1b\xe8\x6f\x25\xf7\xca\xc9\xc9\x41\ \x4a\x4a\x0a\x3e\xff\xfc\x73\x71\x94\xc0\x67\x57\x7f\xa7\xd3\xe9\ \xbe\x5f\x5b\x5b\x6b\xbd\xa5\x1a\x80\x52\x0a\xb7\xdb\xad\xd8\xe9\ \x51\x9b\xe8\x09\x77\xaf\x0e\xc6\x24\x28\x7d\x0e\x25\x8e\xac\xbf\ \x54\xb7\x3f\x27\xf4\xca\x95\x2b\x68\x6d\x6d\x45\x69\x69\x29\x12\ \x12\x12\x6e\xd2\x06\x84\x90\x87\x58\x96\xfd\xec\xd9\x67\x9f\x2d\ \xbf\xa5\x04\x20\x84\xf8\x9d\x79\x23\x65\xe3\xc4\xaa\x54\x8d\x5f\ \x20\xb7\x2f\xd4\x90\xd0\xdf\x7d\xe4\xfe\x6f\xa0\xdf\xaa\x96\x0c\ \x81\xda\x6f\x6c\x6c\x0c\x27\x4f\x9e\x44\x46\x46\x86\xaf\xc6\x41\ \x84\xa5\x0c\xc3\x9c\x78\xfe\xf9\xe7\x77\x71\x1c\x47\x6e\x89\x09\ \xc8\xca\xca\xc2\xba\x75\xeb\x70\xf9\xf2\x65\x45\xea\x3e\x18\xf5\ \xaf\xe6\x58\x38\xcd\x80\x12\x55\xad\x54\x9d\xcb\x91\x2c\x58\x53\ \x93\x91\x91\x81\xd4\xd4\x54\xb4\xb7\xb7\xfb\xe6\x25\x88\xb2\x88\ \x7f\xd2\xeb\xf5\x3b\x76\xef\xde\xdd\x3f\xed\x26\xc0\xe9\x74\xfa\ \x8d\x73\x03\xa9\xbc\x60\x1c\x3c\x25\x8e\xda\x74\x5e\xab\x64\x20\ \x4a\x4d\x6e\x41\xed\xdc\x85\xeb\xd7\xaf\xa3\xad\xad\x0d\xb9\xb9\ \xb9\x88\x8a\x8a\x92\x22\xd8\x3d\x1e\x8f\xa7\xe5\x85\x17\x5e\xb8\ \x47\x2d\x01\x74\x6a\x7b\x0c\xef\x03\xc8\xf5\x78\xfe\xe1\xc4\x43\ \xc2\xc2\x94\xae\xb8\x27\x8b\xaf\x11\x1f\xf3\xd7\xf3\x95\x1c\x0f\ \xc6\x21\x94\xaa\x37\x50\xf3\xb7\xbf\xf3\xd4\x68\x1e\xbd\x5e\x8f\ \x9c\x9c\x1c\xa4\xa7\xa7\x63\x7c\x7c\x1c\xa3\xa3\xa3\x18\x19\x19\ \x41\x66\x66\xe6\x94\x6b\xbc\x5e\x6f\xba\xd7\xeb\xfd\xe3\x73\xcf\ \x3d\xf7\x4a\x66\x66\xe6\x3f\x3d\xf6\xd8\x63\xee\xb0\x9b\x80\xc5\ \x8b\x17\x63\xc5\x8a\x15\xe8\xe9\xe9\xf1\xab\xde\xfd\xd5\x0c\x28\ \x3d\x16\x8e\xc8\x40\xa9\xe7\xae\x96\x08\xa1\x08\x5d\x89\x59\xd1\ \xe9\x74\x58\xb4\x68\x11\x92\x92\x92\x30\x3e\x3e\x8e\x2f\xbe\xf8\ \x02\xad\xad\xad\xc2\xd9\x48\x48\x4c\x4c\xf4\x69\x04\x89\x62\x93\ \x53\x94\xd2\x87\x9e\x7d\xf6\xd9\xf6\xb0\x13\x60\xd9\xb2\x65\xe8\ \xef\xef\x57\x2c\x74\xb5\x44\xf1\x47\x88\x70\xf8\x02\x4a\x84\x1f\ \x0e\x41\xca\x39\x9c\x72\xdf\x0d\x06\x03\x96\x2c\x59\x02\xbd\x5e\ \x0f\xbb\xdd\x8e\x8b\x17\x2f\xfa\xe6\x22\x4a\xfd\x5f\x7e\x65\xb4\ \xe5\xcb\x97\x23\x29\x29\xe9\xa6\xc1\x33\x4a\xa9\x95\x10\xf2\xf8\ \x9e\x3d\x7b\x7e\x1b\x36\x02\xe4\xe4\xe4\x20\x3b\x3b\xdb\x37\x11\ \x42\x4a\x98\x4a\x35\xc0\x4c\x10\x40\x49\xec\xaf\x56\xb0\xc1\x5e\ \x47\x29\x45\x5a\x5a\x1a\x4c\x26\x13\x9c\x4e\x27\x46\x47\x47\xd1\ \xda\xda\x8a\xd1\xd1\x51\x59\x81\xcb\x7d\x66\x65\x65\x21\x27\x27\ \x07\x0c\xc3\xf8\xda\x87\x1f\x51\x05\xf0\x9f\x06\x83\xe1\xc9\x5d\ \xbb\x76\xd9\x43\x26\xc0\xd2\xa5\x4b\x91\x9e\x9e\x0e\x8b\xc5\xe2\ \x57\xc0\x4a\xc8\xe0\x4f\x1b\xc8\xed\x0b\x85\x00\xc1\x08\xdf\x5f\ \x4f\x56\x6b\x12\x08\x21\x30\x99\x4c\x98\x3f\x7f\x3e\x3c\x1e\x8f\ \x6f\x68\xb8\xab\xab\xcb\x2f\xa1\x94\x7e\xc6\xc6\xc6\xa2\xa0\xa0\ \x00\x71\x71\x71\x52\xed\xfd\x25\x21\xe4\xa1\x3d\x7b\xf6\x7c\x1e\ \x12\x01\x96\x2d\x5b\x06\x93\xc9\x24\x5e\x3e\x45\x95\xc0\x03\x09\ \x5f\xa9\x3f\xa0\x86\x04\x6a\x43\x30\xa5\xea\xdc\x9f\xe0\x18\x86\ \x41\x72\x72\x32\x74\x3a\x1d\x3c\x1e\x8f\x6f\xcd\x81\xde\xde\xde\ \x9b\xf2\x21\xa1\x08\x5e\xac\x55\x96\x2d\x5b\x86\x45\x8b\x16\xf9\ \x22\x08\x81\x36\xb0\x51\x4a\xd7\x3f\xf3\xcc\x33\xcd\x41\x47\x01\ \xe2\x2a\x5e\x7f\xc2\x15\x97\x85\x89\x8b\x3b\xd4\xf6\x62\xf1\x35\ \x4a\xef\x11\x0e\xe1\x4b\xd9\x6c\x71\xc3\xcf\x9f\x3f\x1f\x0c\xc3\ \xf8\x56\x29\x71\xbb\xdd\x38\x7f\xfe\x3c\x6c\x36\x9b\xec\xbd\x85\ \x51\x93\x92\x24\x1c\xff\x9b\x85\x9f\x62\xf9\x5c\xba\x74\x09\x7a\ \xbd\x1e\x59\x59\x59\xe2\x67\x35\x72\x1c\xf7\x2a\x80\xea\xa0\x09\ \x20\x58\x47\x4f\x32\xc4\x93\x22\x83\x54\xc8\xa7\x64\x5f\xb8\x13\ \x3d\x4a\x9d\x40\x7f\xbd\x92\x10\x02\x83\xc1\xe0\xeb\xd5\xfc\x3c\ \x41\xb7\xdb\x8d\x8b\x17\x2f\x62\x62\x62\x42\xf6\xba\x60\x4b\xd2\ \x03\x5d\x2b\x75\xbc\xaf\xaf\x0f\x19\x19\x19\xbe\xd4\x3d\xaf\x05\ \x58\x96\x2d\x0d\x29\x0f\xe0\x76\xbb\xe1\xf1\x78\xe0\xf1\x78\xa6\ \x38\x1c\x6a\x7a\xae\xd2\x9e\x2e\x26\x96\x3f\xa1\xc9\xe5\x15\xfc\ \xf9\x0f\x72\x82\x26\x84\xf8\x92\x2d\x93\x4b\xc8\xfa\x36\xb7\xdb\ \xed\x5b\x35\x44\x2a\x3d\x2c\x25\x0c\x71\x6e\x44\x29\x29\x42\x21\ \x8d\xd1\x68\x04\xc3\x30\x70\xbb\xdd\xe2\xf6\xbc\x16\x12\x01\x00\ \x60\x64\x64\x04\x7d\x7d\x7d\xbe\x02\x50\x71\x4d\x20\xbf\x51\x4a\ \xa7\x7c\x4a\xd5\xf8\x49\xa9\xb5\x40\x3d\x59\x4d\xbc\x2f\x3e\x87\ \xd7\x5c\xbc\x60\x79\x21\xf3\x8b\x47\xf3\xfb\xf8\xb7\x8c\x48\xd5\ \x34\x48\x09\x52\x8a\x90\x4a\x89\x20\xa7\xe2\x83\x45\x5a\x5a\x1a\ \x96\x2f\x5f\x0e\x00\xbe\x91\x44\xc1\xf3\xff\x22\x24\x02\xf0\xc2\ \x14\x9a\x04\xbe\x67\x48\x15\x7f\x8a\x8b\x3d\x85\x45\xa3\xc2\xef\ \x7c\x21\xa8\xd8\x8c\xc8\x69\x19\x61\x03\x09\x73\xe3\xc2\xf2\x70\ \xa9\x81\x18\x25\x71\xbd\x58\x48\x52\x84\x95\xd3\x24\xe2\x7d\x4a\ \x84\x19\xaa\xc0\x79\x30\x0c\x83\x15\x2b\x56\x20\x3b\x3b\x1b\x13\ \x13\x13\xbe\x59\xca\x93\x18\x27\x84\xfc\xb0\xb6\xb6\xf6\x37\x21\ \x11\x40\xce\xae\xfb\x0b\xd9\x84\x0d\xc3\x0b\x82\xef\x71\x62\x92\ \xf8\x73\x24\x43\x1d\x14\x92\x72\x40\xe5\xb4\x90\x5c\xea\x5a\xfc\ \xdd\x9f\x59\x09\x56\xf5\x07\xe3\xe7\xc4\xc7\xc7\xa3\xa8\xa8\x08\ \x46\xa3\x11\x63\x63\x63\xc2\x75\x0a\x40\x08\x69\x23\x84\x3c\xf8\ \xf3\x9f\xff\xfc\x7c\xc8\x63\x01\x82\xe4\x82\x22\x61\xc8\x39\x85\ \x52\x9b\x9c\xf0\x03\x91\x41\x6d\xf4\xa0\x74\x7f\x20\xc1\x4b\xa9\ \x7e\xb5\x3d\x3c\x54\x32\x10\x42\xb0\x78\xf1\x62\xe4\xe5\xe5\xc1\ \xed\x76\xe3\xc6\x8d\x1b\xc2\x76\xe4\x08\x21\xbf\x9a\x98\x98\xf8\ \xc7\x5f\xfe\xf2\x97\xe3\x61\x19\x0c\xe2\xd5\x75\xa0\x2c\x9d\x92\ \xb8\x5f\xee\x3c\x25\x04\x50\xea\x7c\xca\x85\xa3\x4a\x05\xee\x4f\ \xf0\x52\x36\x3c\x90\x5f\x12\xce\xde\x1f\x1d\x1d\x8d\xc2\xc2\x42\ \x24\x27\x27\xc3\x62\xb1\xc0\xe5\x72\x09\xe5\x73\x83\x10\xf2\xdd\ \x17\x5f\x7c\xf1\x60\x58\x47\x03\x85\xb6\x5a\x4d\xb2\x46\xce\x74\ \x28\x21\x8d\xda\x32\x32\x25\x9a\x40\x8d\xea\x57\x62\xf3\x83\x11\ \x78\x28\x64\x48\x4d\x4d\x45\x61\x61\x21\x00\xa0\xbf\xbf\x7f\x4a\ \x9e\x85\xe3\xb8\x7a\x4a\xe9\xb6\x97\x5e\x7a\xa9\x47\xc9\xbd\x54\ \x13\x20\x90\x8d\x0d\x94\x22\x0e\xd6\x14\x28\x1d\x1d\x0c\xd4\xf3\ \x6f\x95\xea\x9f\x8e\xde\xaf\xd3\xe9\x90\x9f\x9f\x8f\x05\x0b\x16\ \xc0\x62\xb1\xc0\x6e\xb7\x0b\xdb\xca\x0d\xe0\xf9\xb8\xb8\xb8\xbd\ \xb5\xb5\xb5\x8a\x57\x21\x09\xda\x04\xa8\x15\xbe\x3f\x13\x10\x8c\ \x1f\xa0\x94\x88\x6a\xf2\x0d\xe1\x50\xfd\x72\x64\x0c\x55\xf8\xf1\ \xf1\xf1\x58\xb9\x72\x25\x62\x62\x62\xd0\xd3\xd3\xe3\x0b\x5f\x27\ \x71\x95\x61\x98\x6d\xaf\xbe\xfa\x6a\x93\x6a\x52\x85\x83\x00\x4a\ \x84\x1f\xc8\x21\x54\xe2\x07\x04\x13\x01\xcc\x84\xea\x0f\xa7\x36\ \xa0\x94\x62\xe1\xc2\x85\xc8\xcb\xcb\x83\xd5\x6a\xf5\xcd\xc9\x10\ \xc8\xe3\x77\x31\x31\x31\x8f\xbd\xfc\xf2\xcb\x41\x4d\x21\x0b\x39\ \x0a\x08\xc6\x0c\x04\xf2\x03\xa6\x23\x02\x50\x53\x59\x14\x4e\xd5\ \x1f\x0a\xe6\xcd\x9b\x87\xc2\xc2\x42\x24\x25\x25\xa1\xa7\xa7\xc7\ \x17\xdb\x4f\x76\x42\x1b\x21\xe4\x87\xaf\xbd\xf6\xda\xbe\x90\xcc\ \x4a\x30\x79\x00\x35\xe7\x05\xe3\x0b\x04\xba\x87\x1c\xe9\x94\x66\ \x04\x95\xc6\xfc\xfe\x54\xff\x74\x3b\x7b\x69\x69\x69\x30\x9b\xcd\ \x70\x3a\x9d\x68\x6f\x6f\x17\x13\xf8\x0c\xa5\xf4\xc1\xd7\x5f\x7f\ \xfd\x4a\xa8\x24\x53\x4d\x00\x35\xf9\xfd\x60\x48\xa0\xd4\x14\x84\ \x62\xff\xa5\xc8\x20\x97\xe2\x55\x62\xf3\xfd\x39\x96\xc1\x64\xf4\ \x72\x73\x73\x91\x9d\x9d\x8d\x9e\x9e\x1e\xf1\x62\x12\x5e\x4a\xe9\ \xbf\xb2\x2c\xfb\xd3\x5f\xff\xfa\xd7\xee\x70\x68\x99\xa0\x35\x40\ \xa8\x24\xf0\xa7\xf6\xd5\x10\x40\x49\x0f\x55\xe3\xe9\x87\xd3\xe6\ \xab\xed\xfd\x71\x71\x71\x58\xb5\x6a\x15\x74\x3a\x1d\x2e\x5d\xba\ \xe4\x4b\xb1\x4f\xa2\x8f\xe3\xb8\x9d\x6f\xbe\xf9\xe6\x9f\xc2\x69\ \x66\x42\x72\x02\x43\x21\x81\x9c\x30\xd5\x10\x40\x4c\x26\x7f\x43\ \xbd\xfe\x86\xa0\x67\xda\xe6\x13\x42\x90\x9d\x9d\x8d\xfc\xfc\x7c\ \xf4\xf7\xf7\xfb\xde\x5e\x26\xf8\x4d\x7f\xf4\x78\x3c\x3b\xdf\x79\ \xe7\x9d\xb0\x2f\x26\x35\xad\x3e\x40\xa0\xda\x40\x35\xfe\x80\x3f\ \x0d\xe0\xaf\xac\x5c\x8d\x93\xa8\x44\xa3\xa8\x19\x7a\x56\xe3\xe8\ \x99\x4c\x26\x7c\xf9\xe5\x97\x70\x38\x1c\xc2\xce\x36\x41\x29\xdd\ \xbd\x6f\xdf\xbe\x57\xa7\x8b\x7c\x61\x8d\x02\xa6\xd3\x21\x0c\x14\ \x65\x48\x55\xf2\x28\xb1\xd7\x4a\xc3\x3d\x39\x81\xab\x31\x41\xe2\ \x7b\x24\x27\x27\x63\xe5\xca\x95\x18\x1b\x1b\xc3\xd9\xb3\x67\xc5\ \x03\x64\x17\x29\xa5\x0f\xed\xdb\xb7\xaf\x65\x3a\xb5\x4f\xc8\x4e\ \xa0\xb0\x18\x22\x5c\xbe\x40\x38\xc3\xc1\x40\x76\x3f\x50\x06\x71\ \xba\x62\xfb\xbc\xbc\x3c\x2c\x58\xb0\x00\x97\x2f\x5f\xc6\xf0\xf0\ \xb0\xf0\xf7\x72\x94\xd2\x7d\x13\x13\x13\x4f\xee\xdf\xbf\x7f\x7c\ \xba\x43\x4d\xd5\x05\x21\xa1\xd4\xf5\xa9\x4d\x0e\x29\xd5\x00\xc1\ \xd6\x18\x4e\x87\x4a\x0f\x04\xa3\xd1\x88\xa2\xa2\x22\xb0\x2c\x8b\ \xd3\xa7\x4f\x4f\x29\xda\x20\x84\x0c\x53\x4a\x9f\x78\xf7\xdd\x77\ \xff\x0b\xb7\x08\x4a\x08\x30\x0c\x20\x91\x67\xae\xd9\x6c\xf6\x3d\ \xb4\xd0\x2c\x88\x0b\x3a\x84\xab\x7d\xc9\x9d\x23\x57\x44\x12\x48\ \x6b\xf8\xeb\xc1\xc3\xc3\xc3\xbe\x15\x36\x94\x3a\x83\x4a\xc3\xca\ \x60\xd7\x0f\xe6\xef\x95\x95\x95\x05\xb3\xd9\x8c\xab\x57\xaf\xe2\ \xfa\xf5\xeb\xe2\xdf\x7a\xc2\xeb\xf5\x7e\xfb\xfd\xf7\xdf\xef\xc4\ \x2d\x84\x12\x02\x9c\x06\x70\x0f\x00\xb4\xb7\xb7\xc3\xe5\x52\xff\ \x3a\x1c\xb9\x45\x1f\x95\x4e\x9d\x0e\xb4\x48\x24\xff\xbd\xaa\xaa\ \x0a\x69\x69\x69\xf8\xea\xab\xaf\x14\xe7\xf6\x95\x0a\x30\xd8\xa4\ \x0e\x3f\x83\xc7\x6c\x36\x23\x21\x21\x01\xa7\x4f\x9f\x86\xdd\x3e\ \x65\x8e\x86\x87\x52\xba\xb7\xa0\xa0\xa0\x56\xcd\x20\xce\xad\x24\ \xc0\xbf\xf1\x04\xe0\x57\xb9\x0c\x86\x00\x52\xeb\x04\xc8\xad\x1d\ \xa0\xe4\xbb\x14\x09\x62\x62\x62\xb0\x7a\xf5\x6a\x55\xce\x5f\xb8\ \xf2\xf8\x72\xe5\xe4\xc9\xc9\xc9\x58\xb5\x6a\x15\xfa\xfa\xfa\xd0\ \xd8\xd8\x28\x9e\x58\xdb\x09\x60\xfb\xef\x7f\xff\xfb\x06\xcc\x10\ \x02\x4e\x0f\x3f\x7e\xfc\xf8\x61\x00\x1f\x05\xfb\x0f\xa4\x7a\x9c\ \x9a\x92\x2f\xa5\x83\x48\x72\x0b\x4f\xca\x99\x16\x7f\xc7\x43\x05\ \x4f\xb6\xfc\xfc\x7c\x94\x94\x94\xa0\xb5\xb5\x15\x17\x2e\x5c\x80\ \xc7\xe3\x11\x2e\x6c\xfd\x01\xcb\xb2\xab\x3e\xf8\xe0\x83\x19\x13\ \xbe\x62\x27\xd0\x68\x34\x3e\x68\xb7\xdb\x9f\xe7\x38\xee\xbb\x00\ \x92\x83\x0d\x03\x79\x1f\x40\xe9\xf2\x2d\xc2\xc5\x9f\xf9\x3a\x37\ \xa9\x8a\x5e\x21\xc9\x84\xd3\xd4\xe5\xaa\x8d\x95\xc4\xf8\xa1\x2c\ \x3f\x67\x30\x18\x50\x5a\x5a\x0a\xbb\xdd\x8e\x63\xc7\x8e\xf9\xcc\ \xe6\xe4\xf3\xd8\x19\x86\xf9\xf1\x81\x03\x07\xfe\x03\xb3\x00\x8a\ \x08\xf0\xe9\xa7\x9f\x3a\x01\xfc\x74\x72\x9b\x55\x58\xb2\x64\x09\ \xc7\x17\x99\x0a\xcb\xcf\x95\x78\xfc\xfe\x84\x1d\xac\xbd\xcf\xca\ \xca\x42\x41\x41\x01\x5a\x5b\x5b\xa7\x0c\xdd\x4e\xde\xf3\x9c\x5e\ \xaf\x7f\xe0\xc0\x81\x03\x17\x67\x4b\xfb\xe9\x30\xc7\xc1\x0b\x4a\ \x98\xa4\x92\x8b\x16\x02\xf5\x7c\x25\x4e\x9f\xdc\xdf\x94\x52\x94\ \x94\x94\x60\xde\xbc\x79\xa8\xaf\xaf\x9f\xe2\xe8\x11\x42\x58\x4a\ \xe9\xeb\xe9\xe9\xe9\x3f\x79\xe3\x8d\x37\xdc\xb3\xa9\xfd\x22\x82\ \x00\x3c\xf8\xb9\x06\x4a\x73\x04\xa1\xc6\xfc\xfc\xf5\xf1\xf1\xf1\ \x28\x2f\x2f\x47\x7b\x7b\x3b\x2e\x5c\xb8\x20\x9e\x37\xd8\xcf\x30\ \xcc\xa3\x07\x0f\x1e\xfc\x64\x36\xb6\x9f\x6e\xee\xcb\x5f\x79\x9d\ \x60\xa0\x9e\x2f\xee\xf1\x81\x16\x78\x60\x59\x16\xb9\xb9\xb9\xc8\ \xcc\xcc\xc4\xf1\xe3\xc7\x31\x3c\x3c\x3c\xc5\xcf\xa1\x94\xfe\x99\ \x52\xba\xed\xe0\xc1\x83\xfd\xb3\xb5\x01\x23\x42\x03\xf0\x82\x13\ \xfa\x00\x81\xd6\x1d\x0a\xb6\xb7\xf3\x61\x2d\xc3\x30\xa8\xaa\xaa\ \xc2\xd0\xd0\x10\x3e\xf9\xe4\x13\x78\xbd\x5e\x30\x0c\xc3\x9f\xe7\ \xa4\x94\x3e\x77\xf8\xf0\xe1\x97\x66\x7b\xfb\xcd\x79\x0d\xc0\xbf\ \x2e\x5e\x98\x95\x0c\xa5\x5c\x3b\x10\xbc\x5e\xaf\xaf\x2c\xbb\xb1\ \xb1\xd1\xf7\x36\x10\xfe\x39\x08\x21\x97\x75\x3a\xdd\x83\x87\x0e\ \x1d\xfa\x6c\x2e\x34\x60\x44\xf9\x00\x4a\x67\x13\x2b\x71\xf0\xa4\ \xbe\x7b\xbd\x5e\x14\x15\x15\x81\x61\x18\x7c\xf4\xd1\x47\x98\x98\ \x98\x10\xaa\x7c\x8e\x52\xfa\x1b\x9d\x4e\xf7\xc4\xa1\x43\x87\x1c\ \x73\xa5\xfd\xe6\x32\x01\xc8\xe4\x76\xd3\xb8\x84\xda\x2c\x9e\x3f\ \xa2\xf0\xb6\x9e\xcf\x32\x9e\x3d\x7b\x16\xad\xad\xad\x53\xc6\x31\ \x38\x8e\xb3\x30\x0c\xf3\xc4\xa7\x9f\x7e\xfa\xbb\xb9\xd6\x88\x73\ \x5e\x03\x08\x54\xaf\xec\xea\x24\xc1\xd8\x7a\x3e\x01\xe5\x76\xbb\ \x91\x9b\x9b\x8b\x94\x94\x14\xfc\xe1\x0f\x7f\x98\xe2\xe8\x4d\xfe\ \x9f\xa6\x98\x98\x98\x07\x0e\x1d\x3a\xd4\x39\x27\xdb\x2f\x12\xa2\ \x00\xe1\xc8\x62\xa0\x88\x40\x4a\xd0\x42\x81\x0b\xbf\xb3\x2c\x8b\ \x9a\x9a\x1a\x38\x9d\x4e\xec\xdf\xbf\x1f\x37\x6e\xdc\x10\x66\x1b\ \x3d\x94\xd2\xbd\xd5\xd5\xd5\x6b\xe6\xaa\xf0\x23\x42\x03\x48\xd9\ \x7e\xb1\xaa\x0f\x34\x80\x23\x56\xf9\x6e\xb7\x1b\xa9\xa9\xa9\x28\ \x28\x28\x40\x5d\x5d\x1d\xba\xba\xba\xc4\x43\xd7\xd7\x75\x3a\xdd\ \x77\xea\xea\xea\x8e\xd5\xd5\xd5\xcd\xe9\xb6\x8b\x98\x28\x40\x6a\ \x80\x48\xc9\xca\x5a\x52\x6f\xf6\x2a\x2f\x2f\x87\xc3\xe1\xc0\xbb\ \xef\xbe\xeb\x9b\x75\x2b\xb8\xf7\xc7\x06\x83\xe1\xe1\xc3\x87\x0f\ \x8f\x44\x42\xe7\x89\xa8\x3c\x80\x30\x24\x54\x6a\xe3\x85\xbd\x3e\ \x3a\x3a\x1a\xd5\xd5\xd5\x38\x79\xf2\x24\xce\x9d\x3b\x37\x25\xac\ \xa4\x94\xda\x19\x86\x79\xfa\xe8\xd1\xa3\xaf\x23\x82\x10\x51\x61\ \xa0\xbf\x28\xc0\xdf\xbb\x80\x1c\x0e\x07\xf2\xf3\xf3\x61\x32\x99\ \xf0\xfe\xfb\xef\xc3\x62\xb1\x88\x87\x96\xdb\xa2\xa2\xa2\xb6\x1e\ \x39\x72\xe4\x02\x22\x0c\x74\xce\xff\x00\x51\xb9\x99\x5c\x4f\x97\ \x1b\x7a\x76\xb9\x5c\x58\xbf\x7e\x3d\x2c\x16\x0b\xde\x79\xe7\x1d\ \x58\x2c\x16\x21\x89\x58\x9d\x4e\xf7\x2b\xa3\xd1\x58\x1a\x89\xc2\ \x8f\x08\x1f\x40\x9c\x07\x50\xfa\xd6\x8f\xf1\xf1\x71\x64\x66\x66\ \x22\x37\x37\x17\x87\x0e\x1d\xf2\xd5\xe8\x09\x54\xfe\x20\xc7\x71\ \xdf\x3b\x76\xec\xd8\x41\x44\x30\x22\xc6\x04\x04\x7a\xdd\x9b\x70\ \xbd\x3f\xbb\xdd\x8e\xaa\xaa\x2a\x0c\x0e\x0e\xe2\xad\xb7\xde\xba\ \xc9\xd1\x23\x84\x1c\xd5\xeb\xf5\xdf\xae\xaf\xaf\xef\x43\x84\x23\ \xa2\x9c\x40\xfe\x53\xee\xcd\x1b\x4e\xa7\x13\x06\x83\x01\x1b\x37\ \x6e\xc4\x91\x23\x47\xd0\xd6\xd6\x26\x8e\x1c\x5c\x94\xd2\xe7\x4f\ \x9c\x38\xf1\x0b\xdc\x26\x88\x98\x4c\xa0\xd0\x07\x90\x12\xbe\xdd\ \x6e\x87\xd9\x6c\x46\x54\x54\x14\xf6\xed\xdb\x07\xab\xd5\xea\xbb\ \x66\xf2\xb3\x3d\x2a\x2a\xea\xa1\x63\xc7\x8e\x9d\xc2\x6d\x84\x88\ \xd1\x00\xfc\x77\x96\x65\xa7\x2c\xf1\xca\x2f\x97\x7a\xf7\xdd\x77\ \xe3\xf4\xe9\xd3\x68\x6a\x6a\x12\x5f\xc7\x11\x42\x7e\xeb\x74\x3a\ \xff\xa1\xb1\xb1\xd1\x81\xdb\x0c\x11\xe5\x03\xf0\xaf\xb4\xe3\x09\ \xe0\x74\x3a\x91\x9d\x9d\x8d\x8c\x8c\x0c\x1c\x38\x70\xc0\xf7\xaa\ \x1b\x01\x61\x46\x29\xa5\x4f\x9e\x38\x71\xe2\x3d\xdc\xa6\x98\xeb\ \x61\x20\x27\x1c\x07\xe8\xed\xed\x45\x7c\x7c\x3c\x00\x20\x26\x26\ \x06\x6b\xd6\xac\x81\xdd\x6e\xc7\xdb\x6f\xbf\x8d\xde\xde\x5e\x71\ \xbd\x40\x93\x5e\xaf\x2f\xbe\x9d\x85\x1f\x51\x79\x00\x42\x08\xae\ \x5d\xbb\x86\xcb\x97\x2f\xc3\x6c\x36\x23\x3e\x3e\x1e\x1f\x7e\xf8\ \x21\xea\xeb\xeb\xe1\xf5\x7a\x7d\x45\x1b\x94\x52\x0f\xa5\xf4\x17\ \x9b\x36\x6d\x5a\xd3\xd0\xd0\xd0\x81\xdb\x1c\x64\x8e\x3f\xbb\xae\ \xaa\xaa\x4a\x72\xae\x9a\xcc\x84\x94\x4e\x86\x61\xb6\x37\x34\x34\ \x34\x40\x43\xc4\x44\x01\x63\x00\xe2\x14\xac\xe5\xf3\x81\x5e\xaf\ \xff\x6e\x7d\x7d\xbd\x45\x13\x7b\x64\x10\x80\x9b\xdc\x7a\x08\x21\ \x79\x7e\xaa\x7d\x6c\x84\x90\x1f\x1f\x3f\x7e\xfc\x4d\x4d\xdc\x91\ \xe7\x03\xb0\x00\x3e\xe4\x7b\xbc\xc4\xdc\xc0\xc3\x3a\x9d\xae\x58\ \x13\x7e\xe4\x9a\x00\xd6\xed\x76\xef\x8d\x8e\x8e\x2e\x22\x84\x6c\ \x9a\xd4\x00\x23\x84\x90\x3f\x32\x0c\xf3\x2f\x7f\xf9\xcb\x5f\x9a\ \x35\x11\x47\xae\x13\x38\x05\xf7\xdc\x73\x4f\x2a\xcb\xb2\xd1\x26\ \x93\xa9\x7b\xff\xfe\xfd\x5e\x4d\xb4\x1a\x34\x68\xd0\xa0\x41\x83\ \x06\x0d\x1a\x34\x68\xd0\xa0\x41\x83\x06\x0d\x1a\x34\x68\xd0\xa0\ \x41\x03\x00\xe0\xff\x00\x18\xfa\xad\x39\x21\x2b\x28\xad\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x20\x64\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x23\x13\x75\x1c\x65\xce\x00\x00\x1f\xf1\x49\x44\ \x41\x54\x78\xda\xed\x9d\x79\x7c\x54\xf5\xbd\xf7\x3f\x67\x99\xc9\ \x6c\x99\x2d\xb3\x2f\x99\x40\x89\xe2\xc2\xbd\xd6\x16\x6a\x1f\xfb\ \x28\x6a\xa9\x4b\x4b\xd5\xd2\xa8\x28\xd7\x05\xd1\xa0\x96\x6e\x4a\ \xab\xad\xbd\xa5\xed\x7d\x6c\x1f\x9f\x56\x7d\xf4\x7a\x51\x4b\x49\ \x01\x17\x48\xa0\x45\x90\x4b\x6d\xdd\xb0\x5e\x2f\xbd\x68\x05\x64\ \x0d\x09\xd9\x13\x92\xd9\x97\xcc\xcc\x99\xb3\xdd\x3f\xc8\x39\x77\ \x66\x32\x59\x21\x0c\xcb\xf9\xbe\x5e\xbf\xd7\xcc\x9c\x99\x9c\x9c\ \xf3\x7b\x7f\xbe\xcb\xef\x77\x36\x02\x8a\x95\xcd\x1e\x7c\xf0\x41\ \xbf\x28\x8a\x57\x93\x24\xf9\x0f\x34\x4d\x5f\x48\x51\x94\x9f\xa2\ \x28\x1b\x45\x51\x76\x8a\xa2\x48\x8a\xa2\x18\x9a\xa6\x83\x14\x45\ \xf5\x92\x24\x79\x90\xa2\xa8\x8f\xd5\x6a\xf5\x8e\xef\x7e\xf7\xbb\ \x7b\x4f\xd6\x36\x10\x0a\x86\x53\x67\xcb\x96\x2d\xab\xc8\x66\xb3\ \x5f\x23\x08\x62\x1e\x80\xab\x49\x92\xac\xa5\x28\x0a\x34\x4d\x83\ \xa2\xa8\x61\xad\x78\xb9\xf4\x59\xa5\x52\x7d\xa2\x56\xab\xaf\xbc\ \xf7\xde\x7b\x93\x8a\x00\xce\x00\xbb\xef\xbe\xfb\x2e\x21\x08\xe2\ \x5e\x00\xb7\x03\xb0\x02\x00\x49\x92\x98\x0c\x7c\x8d\x46\x93\xd0\ \xeb\xf5\xb7\xdc\x71\xc7\x1d\x6f\x9e\x8c\x6d\xa3\x15\x3c\x53\x66\ \xc4\x7d\xf7\xdd\x37\x9f\x20\x88\xc7\x01\xcc\xce\xff\x62\xb2\xf0\ \x2d\x16\x4b\xca\x68\x34\xde\x73\xe3\x8d\x37\xbe\x79\xb2\x36\x52\ \x11\xc0\x14\x58\x7d\x7d\xfd\x0d\xa2\x28\xfe\x0c\xc0\xe7\x8b\xbf\ \x2b\x86\x4f\xd3\x34\x2a\x8d\x46\x18\x4d\x26\x68\x34\x5a\x50\x14\ \x8d\x60\x7f\x1f\x08\x82\x28\xf8\x9d\xd7\xeb\x4d\x1b\x8d\xc6\xfa\ \x79\xf3\xe6\xfd\xe1\x64\x6e\xab\x22\x80\x93\x68\x4b\x96\x2c\x99\ \x46\x10\xc4\x8b\xa2\x28\xce\x2b\xf5\x3d\x49\x92\xa0\x69\x1a\x86\ \xca\x4a\x38\x5d\x6e\xd8\x1d\x4e\x18\x4d\x26\x50\x14\x05\x00\xe0\ \x39\x0e\x2d\xcd\x87\x86\xc1\xbf\xe0\x82\x0b\xb2\x6a\xb5\xfa\x81\ \x2b\xaf\xbc\xf2\xd5\x93\x1e\xa6\x14\x6c\x27\x6e\x2b\x56\xac\x20\ \x7b\x7b\x7b\xbf\x0d\xe0\x5f\x00\xe8\x4b\xfd\x46\xad\x56\xa3\xba\ \x66\x1a\xfc\xd5\x01\x18\x4d\xa6\x61\xdf\x4b\xf0\x73\x0c\x23\xc3\ \x57\xab\xd5\x98\x3d\x7b\x76\x8e\xe7\xf9\xfb\xbf\xf8\xc5\x2f\xae\ \x99\x92\x3c\xa5\xe0\x3b\xe1\xa1\x9c\x81\x65\xd9\x97\x09\x82\xb8\ \xb1\xd4\xf7\x3a\xbd\x1e\xb5\xe7\x9d\x8f\xe9\x9f\xa9\x05\x4d\xd3\ \xe0\x05\x1e\x82\x20\x40\x14\x45\xf9\x37\x1c\xcb\xa2\xf5\xc8\xe1\ \x02\xf8\x7a\xbd\x1e\x73\xe7\xce\x65\xa3\xd1\xe8\x7d\x5f\xf8\xc2\ \x17\xd6\x4c\xd5\xf6\x2b\x02\x38\x01\x5b\xbc\x78\xb1\x87\xa6\xe9\ \x6d\x00\x2e\x19\x06\x5e\xa7\xc3\x45\xb3\xfe\x11\x3e\x7f\x00\x34\ \x4d\x83\x18\xea\x69\x51\x14\x0b\x44\x50\x0a\xbe\xc5\x62\xc1\x0d\ \x37\xdc\xc0\x77\x77\x77\x2f\xbe\xf4\xd2\x4b\xd7\x4e\x69\xa5\xaa\ \x60\x9c\x9c\xdd\x7f\xff\xfd\x36\x00\xef\x00\x98\x55\xd0\xa1\x04\ \x81\x4b\x3f\xf7\x79\xd4\xd4\xcc\x00\x48\x52\x06\x4f\x10\xc4\x30\ \x11\xe4\x18\x66\x58\xd8\x77\xbb\xdd\x98\x3b\x77\xae\x70\xec\xd8\ \xb1\xbb\x2f\xb9\xe4\x92\x75\x53\xbd\x1f\x4a\x11\x38\x39\xf8\x3a\ \x00\x6f\x14\xc3\x37\x18\x0c\xb8\xe9\xa6\x9b\x20\x88\x22\x98\x1c\ \x3f\x04\x1b\x20\x08\x0c\x85\xfc\xe3\x22\x20\x08\x02\x02\x2f\xa0\ \xb5\xb9\xd0\xf3\x6b\x6a\x6a\x30\x67\xce\x1c\xb1\xab\xab\xeb\xee\ \xd9\xb3\x67\xaf\x3b\x15\xfb\x42\x2a\x38\x27\x15\x35\xd7\x02\xf8\ \x42\xfe\x42\x87\xc3\x81\xa5\x4b\x97\x1e\xcf\xf3\x1c\x07\x02\x3c\ \x20\xfe\x8f\x08\x24\xcf\x17\x45\x80\x65\x59\x1c\x3e\xb8\x1f\x0c\ \x93\x95\xe1\x9f\x7f\xfe\xf9\xb8\xe4\x92\x4b\xc4\xf6\xf6\xf6\xbb\ \x4e\x15\x7c\x45\x00\x93\xf3\xfe\xef\x03\x58\x90\xbf\xcc\x6a\xb5\ \xe2\x81\x07\x1e\x40\x2a\x95\x02\xcf\xf3\xc7\x27\x70\x48\xb2\xa4\ \x08\x72\xb9\x1c\x0e\x1d\xd8\x07\x26\x9b\x91\xa6\x75\x71\xf1\xc5\ \x17\xa3\xa6\xa6\x46\xec\xe8\xe8\xb8\xeb\xf2\xcb\x2f\x5f\x77\x2a\ \xf7\x87\x52\x90\x4e\x68\x9c\x7f\x19\x41\x10\xaf\xe5\x3b\x8e\xc1\ \x60\xc0\x23\x8f\x3c\x82\x64\x32\x89\xc1\xc1\xc1\x61\x7f\x23\x8a\ \xc2\x50\xdc\x20\xc1\xb2\x2c\x8e\x1c\xde\x07\x26\x9b\x95\xa6\x75\ \x71\xf1\xc5\x17\xc3\x62\xb1\x88\xfd\xfd\xfd\x77\x5d\x73\xcd\x35\ \xeb\x4e\xf5\x3e\x29\x35\xc0\x38\x6d\xd9\xb2\x65\x15\x0c\xc3\xac\ \xca\x77\x1a\x82\x20\xb0\x6c\xd9\x32\x00\xc0\xe0\xe0\xa0\x3c\xa1\ \x33\x6c\x8c\x2f\xf0\xc8\xe5\x58\x34\x1f\x3e\x88\xdc\x50\xd8\xd7\ \xe9\x74\xa8\xad\xad\x85\x46\xa3\x11\x83\xc1\xe0\x5d\xd7\x5d\x77\ \xdd\xba\x72\xec\x97\x92\x02\xc6\x69\x0c\xc3\x3c\x0a\xe0\xa2\xfc\ \x65\x8b\x16\x2d\x82\xc7\xe3\x41\x24\x12\x29\x39\xa7\x2f\x35\x92\ \x20\xd0\xda\x72\x58\x86\x6f\x30\x18\x30\x6d\xda\x34\x50\x14\x25\ \x86\xc3\xe1\xb2\xc1\x57\x22\xc0\x04\xc6\xfb\x00\x7e\x98\xbf\xac\ \xb6\xb6\x16\x97\x5f\x7e\x39\xfa\xfa\xfa\xe4\x29\xde\x91\xac\xad\ \xad\x0d\x99\x74\x1a\x14\x45\xc1\x68\x34\xc2\xe1\x70\x40\x10\x04\ \x31\x16\x8b\xdd\xb5\x60\xc1\x82\x75\xe5\xdc\x37\x25\x02\x8c\xc3\ \x54\x2a\xd5\x8f\x01\x68\xf3\x43\xff\xfd\xf7\xdf\x0f\x86\x61\xc0\ \x71\x5c\xc1\x81\x9d\x62\xef\xcf\xe5\x72\x18\x18\x18\x00\x45\x51\ \xa8\xac\xac\x84\xc9\x64\x02\xc7\x71\x62\x32\x99\x2c\x2b\xfc\x86\ \x86\x06\xb3\x22\x80\x71\xd8\xd2\xa5\x4b\xbd\xa2\x28\x2e\xc9\x5f\ \xf6\xf5\xaf\x7f\x1d\x46\xa3\x11\xe9\x74\x1a\x34\x4d\xcb\xad\x94\ \x08\x7a\x7a\x7a\x40\x92\x24\x34\x1a\x0d\xd4\x6a\x35\x58\x96\x45\ \x26\x93\xf9\xc5\xc2\x85\x0b\xcb\x06\x7f\xeb\xd6\xad\x77\x32\x0c\ \xf3\xbe\x92\x02\xc6\x61\x82\x20\x2c\x01\xa0\x96\x87\x4d\x14\x85\ \x2f\x7f\xf9\xcb\x60\x59\x16\xa2\x28\x0e\x0b\xfd\x04\x51\x38\xb9\ \x1a\x8b\xc5\x40\xd3\x34\x48\x92\x04\xc7\x71\x10\x04\xe1\xe8\x92\ \x25\x4b\x7e\x5a\xae\xfd\xf9\xd3\x9f\xfe\x74\x5f\x28\x14\x7a\x9a\ \x61\x18\xfd\x53\x4f\x3d\x35\x4b\x11\xc0\x28\x56\x57\x57\x47\x01\ \xb8\x37\x7f\xd9\xfc\xf9\xf3\xa1\x56\xab\x91\xcd\x66\x47\xcd\xfb\ \x00\x90\x4e\xa7\xc1\xf3\x3c\x08\x82\x00\xc7\x71\x00\x00\xb5\x5a\ \xfd\x42\xb9\xf6\xe7\xad\xb7\xde\xaa\xcf\x66\xb3\xcf\x84\xc3\x61\ \x0d\xcf\xf3\xe0\x38\x6e\xae\x22\x80\x51\xcc\x62\xb1\x7c\x11\x80\ \x5f\x2e\x98\x48\x12\x5f\xfa\xd2\x97\x86\x66\xf4\xc4\x31\x05\xc0\ \x71\x1c\x28\x8a\x02\xcb\xb2\xf2\x32\x9d\x4e\xf7\xdb\x72\xec\xcb\ \xbb\xef\xbe\x5b\x4f\xd3\xf4\x73\x07\x0e\x1c\x50\xf1\x3c\x0f\x9e\ \xe7\x21\x8a\xe2\xe7\x14\x01\x8c\x6e\x5f\xcd\x87\x3f\x6d\xda\x34\ \x54\x56\x56\x42\x10\x04\x10\x04\x31\x66\xf5\x2f\x8a\x22\x28\x8a\ \x42\x36\x9b\x95\xff\xe6\x9e\x7b\xee\x89\x9d\xea\x9d\xf8\xe0\x83\ \x0f\xea\x0d\x06\xc3\xbf\x7e\xf0\xc1\x07\x34\xc7\x71\xe0\xf9\xe3\ \x47\x23\x79\x9e\xbf\x40\x29\x02\x47\xb7\xaf\x49\xf0\x69\x9a\xc6\ \xdc\xb9\x73\x65\xb0\x24\x49\x16\x88\x20\xbf\x08\x94\x9a\x5a\xad\ \x06\x45\x51\x20\x08\x02\x2c\xcb\x22\x97\xcb\xe1\xd9\x67\x9f\x35\ \x9e\xca\x1d\xf8\xdb\xdf\xfe\x56\xef\x76\xbb\x9f\xdf\xb9\x73\x27\ \x9d\xcb\xe5\xf2\xe1\x83\xe7\x79\x97\x22\x80\x11\x6c\xe8\x88\xdf\ \x05\x12\x60\x8a\xa2\x50\x5b\x5b\x2b\x17\x7a\x24\x49\x8e\x29\x02\ \xbd\x5e\x2f\xbf\xe7\x38\x0e\x2c\xcb\x82\x24\xc9\xab\x4e\xd5\x3e\ \x7c\xfc\xf1\xc7\xf5\x35\x35\x35\xff\xf6\xfe\xfb\xef\x53\x52\x3d\ \x22\xc1\x17\x04\x01\x82\x20\x38\x15\x01\x8c\x34\x41\x42\x92\x17\ \x93\x24\x49\xe5\x0f\xeb\x8c\x46\x63\xfe\xf7\x63\x8a\xc0\x6c\x36\ \x83\xa6\x69\x68\xb5\x5a\xb0\x2c\x2b\x8d\x02\xee\x38\x55\xf0\x67\ \xce\x9c\xb9\xf2\xaf\x7f\xfd\x2b\x19\x8d\x46\x87\xc1\x1f\x7a\xad\ \x50\x6a\x80\x91\xf3\xf7\x4c\x95\x4a\x25\xc3\xb7\x58\x2c\xa0\x28\ \x0a\x82\x20\x80\x65\x59\xa8\x54\x2a\x90\x24\x99\x3f\x5c\x2c\x59\ \x13\x54\x55\x55\x21\x91\x48\x80\x24\x49\x69\x0e\x60\xde\xa9\x08\ \xfb\xd3\xa7\x4f\x5f\xb9\x63\xc7\x0e\xa2\xb3\xb3\x53\x86\x2e\x8a\ \x62\xb1\x08\x78\x25\x02\x8c\x60\x34\x4d\xdb\xf2\x27\x74\xaa\xab\ \xab\x65\xd0\xb9\x5c\x4e\xae\xec\xc7\x8a\x04\x2e\x97\x4b\x3e\xcd\ \x8b\xe3\x38\x24\x12\x09\xf3\xca\x95\x2b\x6f\x99\xca\x82\xcf\xef\ \xf7\xaf\xfc\xe4\x93\x4f\x88\x43\x87\x0e\xc9\xb0\xd5\x15\x15\xb0\ \x39\x9c\xc5\x35\x40\x58\x11\xc0\xc8\x02\x70\xe4\x0b\xa0\xb2\xb2\ \x52\x2e\x00\xa5\x82\x6e\x3c\x22\xf0\xf9\x7c\xf2\xab\x14\x3d\x52\ \xa9\xd4\x33\x53\x35\xce\xf7\xf9\x7c\x2b\x8f\x1e\x3d\x4a\xec\xde\ \xbd\xbb\x00\xfe\x67\x6a\xcf\x97\x52\x90\x04\x1f\x82\x20\x04\x15\ \x01\x8c\x5c\x03\x88\xf9\x02\xd0\x6a\xb5\xb2\x00\x24\xf8\xe3\x11\ \x81\x56\xab\x85\xc7\xe3\x81\x56\xab\x85\xd7\xeb\x05\xcb\xb2\x08\ \x06\x83\xee\xd5\xab\x57\xff\xea\x64\x6e\xef\xf6\xed\xdb\xeb\xbd\ \x5e\xef\xca\x9e\x9e\x1e\x62\xd7\xae\x5d\xc3\xe0\x53\x34\x0d\x26\ \x9b\xcd\x87\x0f\x9e\xe7\x3b\x14\x01\x8c\x1c\x01\x0a\x2a\x7a\x86\ \x61\xe4\x11\x40\x3e\xfc\xf1\x88\x60\xda\xb4\x69\xa0\x69\x1a\x17\ \x5e\x78\x21\x34\x1a\x0d\x58\x96\x45\x47\x47\xc7\xf2\xf5\xeb\xd7\ \xcf\x3e\x19\xdb\xba\x65\xcb\x96\x7a\xa7\xd3\xb9\x32\x1c\x0e\x13\ \xbb\x76\xed\x92\x3d\x3d\x1f\x3e\x00\x24\x13\xf1\xe2\x14\x70\x58\ \x11\xc0\x08\x46\x51\x54\x3a\x7f\x04\x90\xc9\x64\x64\x61\x48\x43\ \xba\xf1\x8a\x40\x3a\xfe\x5f\x59\x59\x89\xb9\x73\xe7\x82\xe7\x79\ \x24\x12\x09\xb2\xad\xad\xed\xfd\xcd\x9b\x37\xfb\x4f\x64\x3b\x37\ \x6d\xda\x54\x5f\x55\x55\xb5\x32\x95\x4a\x11\x7f\xff\xfb\xdf\xc1\ \xb2\x2c\x04\x41\x40\x85\x46\x53\x00\x9f\xe3\x38\xa4\xd3\xe9\x82\ \x22\x50\x14\xc5\xbd\x8a\x00\x46\x16\x40\x7b\x7e\x0a\x08\x85\x42\ \x72\x04\x00\x8e\x9f\xd8\x39\x11\x11\x78\xbd\x5e\x98\xcd\x66\xd4\ \xd4\xd4\xe0\xba\xeb\xae\x03\xc7\x71\x18\x18\x18\xd0\x34\x37\x37\ \x37\x6f\xd9\xb2\x65\x52\x91\x60\xfd\xfa\xf5\xf5\x66\xb3\x79\x65\ \x36\x9b\x25\xf6\xee\xdd\x0b\x86\x61\x20\x08\x02\x34\x1a\x6d\x01\ \xfc\x7c\xef\xcf\x8f\x00\x2c\xcb\xbe\xab\x08\x60\x04\x53\xa9\x54\ \x6d\xf9\x02\xc8\x66\xb3\x72\x1a\x50\xab\xd5\x32\xf0\xf1\x8a\x80\ \xa6\x69\x78\x3c\x1e\xe8\x74\x3a\xcc\x99\x33\x07\xf3\xe6\xcd\x03\ \xc7\x71\xe8\xeb\xeb\xd3\x7c\xfc\xf1\xc7\x3b\x5f\x79\xe5\x95\x09\ \xd5\x04\xeb\xd6\xad\xab\x37\x18\x0c\x2b\x59\x96\x25\x9a\x9b\x9b\ \x91\xc9\x64\x8e\xc3\xd7\xea\x70\xde\x05\x17\x41\xa5\x56\x17\x1c\ \x99\x0c\x87\x42\xc5\xe1\xbf\xf5\xf9\xe7\x9f\x57\x6a\x80\x51\xec\ \x00\x45\x51\x42\xfe\x25\xda\x52\x14\xd0\xe9\x74\xc8\xe5\x72\x13\ \x16\x81\x5a\xad\x86\xc9\x64\x82\x46\xa3\xc1\xfc\xf9\xf3\xb1\x60\ \xc1\x02\x08\x82\x80\x44\x22\x41\xee\xd9\xb3\xe7\x87\x4f\x3d\xf5\ \xd4\xb1\xd5\xab\x57\x2f\x1a\x6b\xc3\xd6\xac\x59\xf3\xa4\x56\xab\ \x5d\xc9\x71\x1c\xd1\xd6\xd6\x86\x54\x2a\x25\xc3\x3f\xff\x82\x8b\ \xa0\x52\xa9\x40\x91\x94\xfc\x7f\x01\x60\xa0\xff\x58\xc1\x08\x40\ \x14\xc5\xb7\x01\xe5\xca\xa0\x51\xed\x57\xbf\xfa\xd5\x5e\x8a\xa2\ \x66\x49\xb5\xc0\xec\xd9\xb3\x71\xd9\x65\x97\x81\xe7\x79\xec\xd9\ \xb3\x47\x9e\xef\x57\xab\xd5\x50\xa9\x54\x50\xa9\x54\xf2\x7b\xe9\ \x55\x9a\x3b\x90\x9a\x74\x4d\xa0\x28\x8a\xc8\x64\x32\x68\x69\x69\ \xc1\xb6\x6d\xdb\x90\x4a\xa5\xa0\x52\xa9\x40\xd3\x34\x8c\x46\x63\ \x42\xaf\xd7\xbf\x43\x92\xe4\x7a\x9a\xa6\xdf\xae\xaf\xaf\x0f\x3d\ \xff\xfc\xf3\x7e\x9a\xa6\x17\x53\x14\xb5\xb8\xa2\xa2\xa2\x5a\xa5\ \x52\x21\x16\x8b\x21\x99\x4c\x0e\xc1\xd7\xa2\xf6\xfc\xe3\xf0\x8b\ \xaf\x40\x8a\xc5\xa2\xf8\xaf\x0f\xff\xa3\x20\x05\x08\x82\x70\xeb\ \x0b\x2f\xbc\xd0\xa8\xcc\x04\x8e\x3e\x12\x78\x9f\xa2\xa8\x59\x52\ \x14\x38\x72\xe4\x08\xe6\xcc\x99\x03\x8a\xa2\x60\x32\x99\x10\x89\ \x44\xc6\x93\x4a\x86\xcd\x18\x4a\x33\x72\xb9\x5c\x0e\x56\xab\x15\ \x37\xdf\x7c\x33\x3e\xfa\xe8\x23\x1c\x39\x72\x44\x9a\x2c\x32\x66\ \x32\x99\x9b\x68\x9a\xbe\x49\xa5\x52\xe1\x37\xbf\xf9\x8d\x1c\x55\ \xa4\x51\x48\x2a\x95\xfa\x1f\xcf\xd7\x68\x31\xe3\xbc\x8b\x40\xd3\ \xf4\xb0\x2b\x90\x28\x92\x42\x5f\x4f\x77\x71\xfe\x8f\xeb\x74\xba\ \xad\x80\x72\x5d\xc0\xa8\x76\xed\xb5\xd7\x66\x68\x9a\xbe\x4b\x12\ \x80\x28\x8a\x70\xb9\x5c\x30\x1a\x8d\xa8\xa8\xa8\x40\x4f\x4f\x4f\ \x41\x61\x98\x9f\x73\xf3\x97\x49\x47\x04\xf3\x8d\x20\x08\xa8\x54\ \x2a\x70\x1c\x87\x78\x3c\x0e\xa3\xd1\x08\xbb\xdd\x0e\x8e\xe3\x90\ \x1d\x1a\xaf\x17\xaf\x4f\x3a\x0f\x81\x61\x18\x39\xe7\x6b\xb5\x5a\ \xcc\x38\x6f\x26\x68\x95\x7a\xe8\x77\xf2\x5f\x80\x20\x8e\x0b\xee\ \x93\x8f\x77\xc9\xa3\x83\x21\x11\xfc\xfe\xf9\xe7\x9f\xdf\x0c\x28\ \xa7\x84\x8d\x6a\xc9\x64\x72\x87\xdd\x6e\xef\xa2\x28\xca\x2f\xa5\ \x81\x83\x07\x0f\xc2\xeb\xf5\x42\xaf\xd7\xc3\x62\xb1\x20\x1a\x8d\ \x8e\xb7\xa8\x1c\x16\x09\x28\x8a\x82\xd5\x6a\x85\x46\xa3\x41\x67\ \x67\x27\x62\xb1\x18\xec\x76\x3b\x2c\x16\x0b\x32\x99\x0c\x32\x99\ \x0c\x38\x8e\x03\x49\x92\x32\xfc\xfc\x43\xba\x2e\x97\x0b\x5e\xaf\ \x17\x82\x28\x42\x14\x79\x80\xa0\x86\x5d\x8b\xd8\xd1\xde\x26\x8f\ \x0e\xa4\xbf\x03\xb0\x5a\x1e\xed\x28\x98\x47\xb6\xf7\xde\x7b\x4f\ \xbc\xe2\x8a\x2b\x2e\x37\x18\x0c\x17\xe6\xcf\x07\x38\x9d\x4e\xe8\ \xf5\x7a\x18\x0c\x06\x74\x77\x77\xcb\x79\x7d\xb2\x91\x40\x3a\x72\ \xe8\x72\xb9\xa0\x56\xab\x65\xd0\x24\x49\xca\xe7\x14\x90\x24\x29\ \x8b\xc6\xe1\x70\xe0\xbc\xf3\xce\x83\xdd\x6e\x97\xd7\x97\x7f\x05\ \x92\x14\x09\x44\x51\xc0\x47\x7f\xdb\x89\x5c\x8e\x29\x18\xfb\xaf\ \x5a\xb5\xea\x27\x72\x9a\x53\x30\x8f\x6c\x75\x75\x75\x37\x87\xc3\ \xe1\xf9\x4e\xa7\xb3\xe0\x86\x4d\xfb\xf6\xed\xc3\x55\x57\x5d\x05\ \xad\x56\x0b\xbf\xdf\x8f\xf6\xf6\xf6\x89\x0c\x2f\x47\x3c\x8a\xa8\ \xd5\x6a\x31\x6d\xda\x34\x54\x57\x57\x83\x65\x59\x24\x93\x49\xa4\ \xd3\x69\x30\x0c\x23\x9f\x82\xa6\x56\xab\xe5\x7c\xce\xf3\x7c\xc1\ \xba\x79\x81\x3f\x7e\x0d\xe2\x50\x24\x68\x6f\x3b\x8a\xc1\xc1\x54\ \xc1\xd1\x40\x00\x4f\x14\xd4\x39\x0a\xe6\xd2\x76\xcb\x2d\xb7\xcc\ \xf7\xf9\x7c\xeb\x7d\x3e\x9f\x5a\xab\xd5\x82\xe7\x79\x79\x7a\x38\ \x91\x48\xa0\xb5\xb5\x15\x33\x66\xcc\x40\x4d\x4d\x0d\x42\xa1\x10\ \x52\xa9\xd4\x49\x11\x41\xbe\x19\x8d\x46\xe8\x74\x3a\x48\xa7\x71\ \x71\x1c\x27\x9f\x5c\x3a\x92\x49\x22\x60\x39\x01\x87\x0e\xec\x2b\ \x86\xff\xa9\xcf\xe7\x6b\x2a\x98\xf0\x52\x50\x0f\xb7\x6f\x7e\xf3\ \x9b\xd7\xfb\xfd\xfe\x3f\x04\x02\x01\x75\x20\x10\x40\x20\x10\x40\ \x3a\x9d\x96\xc3\xb8\x24\x02\xbb\xdd\x0e\x8d\x46\x03\x9b\xcd\x86\ \xee\xee\xee\x02\x8f\x9c\x6c\x3a\x28\xf5\xfb\x91\x3e\x8f\x64\xa2\ \x28\xe0\xd3\xbd\x7b\x30\xd0\xdf\x5f\x7c\x3b\x9a\x6f\x3d\xf5\xd4\ \x53\xfb\x15\x01\x8c\x0e\xff\x2b\xd5\xd5\xd5\x9b\x03\x81\x40\x45\ \x20\x10\x40\x75\x75\x35\xfc\x7e\x3f\x34\x1a\x0d\x62\xb1\x98\x2c\ \x80\x8a\x8a\x0a\xa4\x52\x29\x38\x1c\x0e\xa8\xd5\x6a\x58\xad\xd6\ \x82\x7a\xa0\x9c\x22\xe8\xef\xef\xc7\xee\xdd\x9f\x14\xc3\xff\xcf\ \x55\xab\x56\x3d\x32\x6c\xca\x5b\x41\x5e\x90\xf3\xaf\xae\xae\xae\ \x7e\x3d\x10\x08\x68\x25\xf8\x5e\xaf\x17\x14\x45\xc1\x6c\x36\x23\ \x99\x4c\x82\x65\x59\x68\x34\x1a\x68\xb5\x5a\x68\x34\x1a\x24\x12\ \x09\xb9\x92\x37\x1a\x8d\xe8\xed\xed\x2d\xab\x08\x92\xc9\x24\x76\ \xec\xd8\x81\x5c\x2e\x97\xbf\x1d\x0c\xcf\xf3\x5f\xdd\xbd\x7b\x77\ \x50\x11\xc0\xc8\x39\xff\x0a\xbf\xdf\xbf\x2d\x10\x08\xe8\x8a\xe1\ \x4b\x13\x34\xd3\xa7\x4f\x47\x3c\x1e\x47\x45\x45\x05\x74\x3a\x1d\ \xb4\x5a\x2d\x74\x3a\x1d\x12\x89\x04\x8c\x46\x23\xf4\x7a\x3d\xcc\ \x66\x33\xfa\xfa\xfa\xa4\xe1\xd6\x29\x15\x41\x2a\x95\xc2\x5f\xfe\ \xf2\x17\xa4\x52\xa9\x02\x11\x02\xf8\xf9\xea\xd5\xab\x37\x95\xda\ \x6f\x45\x00\xc7\xe1\x5f\xee\xf3\xf9\xb6\x07\x02\x01\x7d\x31\xfc\ \xe6\xe6\x66\x7c\xf2\xc9\x27\xe8\xea\xea\x82\xc7\xe3\x41\x75\x75\ \x35\xb2\xd9\x2c\xb4\x5a\xad\x2c\x00\x93\xc9\x84\x68\x34\x0a\x9d\ \x4e\x07\xbd\x5e\x0f\x9b\xcd\x86\x63\xc7\x8e\x9d\xd2\x9a\x20\x12\ \x89\xe0\x8d\x37\xde\x40\x32\x99\x2c\x86\xbf\x23\x1e\x8f\x2f\x3d\ \x70\xe0\x00\xaf\x08\xa0\x84\xdd\x7a\xeb\xad\x97\x0d\xc1\x37\x8e\ \x04\x5f\xaa\xd0\xc3\xe1\x30\xfc\x7e\x3f\xec\x76\x3b\x78\x9e\x2f\ \x88\x02\x24\x49\xe2\xd8\xb1\x63\xf2\x67\x8f\xc7\x83\x58\x2c\x26\ \x9f\x47\x30\x95\x22\x68\x6f\x6f\xc7\xb6\x6d\xdb\x90\x4e\xa7\x8b\ \xe1\xb7\xf0\x3c\x7f\xdd\x2b\xaf\xbc\x32\xe2\x5d\xc5\xcf\x69\x01\ \x2c\x58\xb0\xe0\xf3\x7e\xbf\xff\xcf\x81\x40\xc0\x34\x1a\x7c\x95\ \x4a\x05\xbd\x5e\x0f\x9d\x4e\x87\x78\x3c\x0e\xa7\xd3\x09\x93\xc9\ \x04\x9a\xa6\xa1\xd3\xe9\x90\x4e\xa7\x91\xc9\x64\xc0\xf3\x3c\x06\ \x06\x06\xe4\xdf\xbb\xdd\x6e\xd0\x34\x8d\x68\x34\x2a\xa7\x84\x93\ \x29\x02\x41\x10\xf0\xc1\x07\x1f\xe0\xed\xb7\xdf\x2e\xce\xf9\x00\ \xd0\x45\x10\xc4\x75\xbf\xfb\xdd\xef\xba\x46\xeb\x03\xea\x1c\x86\ \xff\xd9\x40\x20\xf0\x56\x20\x10\x30\x8f\x07\xbe\x24\x00\x69\x4e\ \xc0\x64\x32\x15\xc0\x97\x5a\x36\x9b\x45\x5f\x5f\x1f\x32\x99\x0c\ \x2c\x16\x8b\x3c\xc3\x27\x1d\xc0\x11\x45\xf1\xa4\x88\xa0\xaf\xaf\ \x0f\x1b\x36\x6c\xc0\xc1\x83\x07\x87\xdd\x79\x14\xc0\x21\x51\x14\ \xaf\x59\xb5\x6a\xd5\xd1\xb1\xfa\x81\x3a\x47\xe1\xff\xc3\x10\xfc\ \xaa\x89\xc0\x97\xf2\xbd\xc1\x60\x00\xcf\xf3\x50\x0f\x9d\x74\x91\ \x48\x24\x0a\x44\x90\xc9\x64\xd0\xdf\xdf\x8f\x8e\x8e\x0e\x68\xb5\ \x5a\x58\x2c\x16\x54\x55\x55\xc1\x6e\xb7\x03\x80\x7c\x20\x67\x32\ \x22\x48\x26\x93\x78\xf3\xcd\x37\xb1\x75\xeb\x56\x24\x12\x89\x52\ \xf0\xff\xca\xf3\xfc\xf5\xab\x57\xaf\xee\x1d\x4f\x5f\x50\xe7\x20\ \xfc\x8b\x02\x81\xc0\x3b\x81\x40\xc0\x3e\x19\xf8\x95\x95\x95\xf2\ \x39\x00\xd2\xef\x44\x51\x44\x34\x1a\x45\x3a\x9d\x2e\x88\x08\xb1\ \x58\x0c\x2d\x2d\x2d\xe8\xed\xed\x85\x4a\xa5\x82\xc5\x62\x81\xc5\ \x62\x91\x8f\x25\x48\x47\x18\xa5\x36\x92\x08\x48\x92\x44\x38\x1c\ \xc6\xce\x9d\x3b\xb1\x66\xcd\x1a\x14\x5f\xec\x21\xcf\xff\x88\xe2\ \xd3\x7e\xbf\xff\x9f\x9e\x79\xe6\x99\x71\x4f\x4b\x12\xe7\x18\xfc\ \x99\x81\x40\xe0\xbd\x40\x20\xe0\x3c\x51\xf8\x15\x15\x15\xf2\x4d\ \x1f\x06\x07\x07\x11\x8b\xc5\x30\x30\x30\x80\x64\x32\x29\x0b\xa0\ \xe8\x14\x2c\xa8\xd5\x6a\x4c\x9f\x3e\x1d\x35\x35\x35\xb0\xd9\x6c\ \xd0\xe9\x74\x05\xf9\x5c\x8a\x0a\x24\x49\x82\xe7\x79\xa4\x52\x29\ \xb4\xb5\xb5\xe1\xdd\x77\xdf\x45\x57\x57\xd7\xb0\xcb\xbb\xf2\xe0\ \xf7\x10\x04\xb1\xf4\xb7\xbf\xfd\xed\x1b\x13\xed\x13\xe2\x1c\x82\ \x5f\x3b\x04\xdf\x73\x32\xe1\x33\x0c\x03\x86\x61\x10\x0c\x06\x11\ \x0e\x87\xe5\x48\x50\xe2\x3a\xbc\x61\x82\x50\xa9\x54\xa8\xaa\xaa\ \x82\x4e\xa7\x83\x5a\xad\x46\x26\x93\x41\x2a\x95\x42\x7f\x7f\x3f\ \x62\xb1\xd8\xb0\xdf\x97\x80\x2f\x00\x78\x91\x24\xc9\xc7\x5e\x7a\ \xe9\xa5\xf8\x64\xfa\xe5\x9c\x38\x18\x74\xeb\xad\xb7\x7e\xc6\xe3\ \xf1\xbc\x33\x55\xf0\x19\x86\x41\x2e\x97\x43\x24\x12\x41\x30\x18\ \x44\x24\x12\x91\x0f\xf1\x4a\xde\x5d\x0a\x66\x3a\x9d\x96\xef\x2e\ \x3a\x12\xe8\x11\xe0\x8b\x04\x41\x6c\x14\x45\xf1\xa7\xab\x56\xad\ \x3a\x78\x22\x7d\x73\xd6\x0b\xa0\xae\xae\x6e\x9a\xd7\xeb\x7d\x37\ \x10\x08\xf8\xa6\x0a\x7e\x28\x14\x42\x47\x47\x07\x82\xc1\x20\x42\ \xa1\x10\x42\xa1\x10\x82\xc1\x20\x48\x92\x14\x2f\xbc\xf0\xc2\x7f\ \x37\x1a\x8d\xff\x28\x08\x82\xaf\x18\x66\xde\xf9\x79\xe3\x85\x1f\ \x13\x45\x71\x2d\xcf\xf3\x2f\x36\x34\x34\x1c\x38\x19\xfd\x43\x9c\ \xe5\xf0\xab\xfd\x7e\xff\x8e\x40\x20\x50\x33\x11\xf8\x7a\xbd\x1e\ \x46\xa3\xf1\x84\xe0\x73\x1c\xc7\x8b\xa2\x78\xdf\xc6\x8d\x1b\x1b\ \x56\xac\x58\x41\x9a\x4c\xa6\xb9\x1c\xc7\x2d\xe0\x79\x7e\xae\x20\ \x08\x17\xf0\x3c\x4f\x8c\x07\xbe\x28\x8a\x9d\x1c\xc7\xbd\xc9\xf3\ \xfc\xb6\xca\xca\xca\x3f\x3f\xfd\xf4\xd3\x99\x93\xd9\x47\x67\xad\ \x00\xbe\xf1\x8d\x6f\xf8\x6a\x6a\x6a\xde\x0b\x04\x02\x9f\x29\x86\ \x7f\xf8\xf0\x61\xec\xde\xbd\x7b\x4a\xe1\x13\x04\x71\x77\x63\x63\ \xe3\xcb\xa5\xb6\xed\x89\x27\x9e\xb0\xb3\x2c\x7b\x31\xcf\xf3\xd3\ \x05\x41\x08\x08\x82\xa0\xe6\x79\xde\xcc\xf3\x3c\xc3\xf3\x7c\x58\ \x14\xc5\x20\xcb\xb2\xcd\x24\x49\xee\x7d\xee\xb9\xe7\x82\x53\xd9\ \x4f\x67\xa5\x00\x6e\xbb\xed\x36\x8f\xdb\xed\x7e\xaf\xa6\xa6\xa6\ \xb6\x1c\xf0\x45\x51\x5c\xb4\x71\xe3\xc6\xf5\x67\x42\x5f\x9d\x75\ \x35\xc0\xc2\x85\x0b\x9d\x6e\xb7\xfb\xed\x40\x20\x50\x5b\x5d\x5d\ \x3d\x25\xf0\xc3\xe1\xf0\x48\xf0\x73\x00\xee\xd8\xb8\x71\xe3\xc6\ \x33\xa5\xbf\xce\x2a\x01\xd4\xd5\xd5\xd9\x87\xe0\xcf\xac\xae\xae\ \x46\x20\x10\x98\x14\xfc\x8a\x8a\x0a\x79\xa2\xa7\x14\xfc\xf6\xf6\ \xf6\x92\xf0\x09\x82\xb8\xb5\xb1\xb1\x71\xf3\x99\xd4\x67\xf4\x59\ \xe4\xf9\x36\x97\xcb\xf5\x56\x20\x10\xb8\xa8\x0c\xf0\x19\x00\x0b\ \x1a\x1b\x1b\xb7\x9d\x69\xfd\x76\x56\xd4\x00\xb7\xdf\x7e\xbb\xc5\ \xe5\x72\xbd\x1d\x08\x04\x3e\x5b\x06\xf8\x19\x00\xdf\x68\x6a\x6a\ \xfa\xd3\x99\xd8\x77\x67\xfc\xc5\xa1\x75\x75\x75\x26\xa7\xd3\xf9\ \xe7\x32\xc1\x4f\x13\x04\xf1\xf5\x33\x15\xfe\x19\x9f\x02\xea\xea\ \xea\x4c\x3e\x9f\xef\x4f\x35\x35\x35\x9f\x3f\x95\xf0\x43\xa1\x10\ \x38\x8e\x1b\x04\xf0\xd5\xc6\xc6\xc6\x1d\x67\x72\x1f\x12\x67\x30\ \x7c\xc3\x10\xfc\xcb\xa7\x0a\x7e\xa9\xa1\x5e\x28\x14\x02\xcb\xb2\ \x49\x00\x37\x34\x35\x35\x7d\x70\xa6\x47\xd0\x33\x32\x02\xcc\x9f\ \x3f\x5f\x37\x74\x02\x67\x39\xe0\xc7\x01\x5c\xdf\xd4\xd4\xf4\x9f\ \x67\x43\xfd\x44\x9e\x89\xf0\x67\xcc\x98\xb1\x35\x10\x08\x5c\x51\ \x06\xf8\x51\x92\x24\xe7\x9d\x2d\xf0\xcf\xb8\x08\x50\x57\x57\xa7\ \xf5\xf9\x7c\x7f\xac\xa9\xa9\xb9\xba\x0c\xf0\xc3\x24\x49\x7e\x65\ \xc3\x86\x0d\x7f\x3f\x9b\xe6\x4e\x88\x33\x08\xbe\xba\xba\xba\x7a\ \x4b\x75\x75\xf5\xb5\x65\x80\x1f\x04\xf0\x95\xa6\xa6\xa6\xdd\x67\ \xdb\xcc\x29\x71\xa6\xc0\xaf\xad\xad\xdd\xe2\xf3\xf9\xae\x95\xce\ \xcd\x3f\x85\xf0\xfb\x05\x41\xb8\x66\xd3\xa6\x4d\xfb\x71\x16\x1a\ \x7d\x26\xc0\x9f\x31\x63\xc6\x26\x9f\xcf\x77\xad\xcf\xe7\x83\xdf\ \xef\x87\xc7\xe3\x39\xe9\x43\xbd\x11\xe0\xf7\x09\x82\x70\xf5\xa6\ \x4d\x9b\x0e\xe1\x2c\x35\xf2\x34\x87\x4f\xd5\xd6\xd6\x36\xfa\xfd\ \xfe\xaf\xf9\x7c\x3e\xf8\x7c\x3e\xb8\xdd\x6e\x10\x04\x81\x43\x87\ \x0e\x4d\xe9\x38\x9f\x65\xd9\x1e\x92\x24\xe7\x9e\xcd\xf0\x4f\xeb\ \x08\x30\x04\xbf\xc9\xef\xf7\xdf\xe8\xf5\x7a\x65\xf8\x24\x49\xe2\ \xf0\xe1\xc3\xd8\xb3\x67\xcf\x54\xc2\xef\x14\x04\xe1\xaa\xa6\xa6\ \xa6\xa3\x38\xcb\x8d\x3c\x8d\xe1\xbf\xea\xf7\xfb\x6f\x96\xe0\xbb\ \x5c\x2e\x90\x24\x89\x43\x87\x0e\x15\xc0\x97\xa0\x9f\x44\xf8\xed\ \x14\x45\x5d\xb9\x69\xd3\xa6\xb3\x1e\xfe\xe9\x2a\x00\xe2\xbc\xf3\ \xce\x5b\xe7\xf7\xfb\x6f\xf1\x78\x3c\xf0\x7a\xbd\x90\x6e\xd1\x22\ \x79\xbe\x74\x87\xad\x29\x80\xdf\x0a\xe0\xca\xf5\xeb\xd7\xb7\xe3\ \x1c\xb1\xd3\x2d\x05\x10\x8f\x3f\xfe\xf8\x5a\x8f\xc7\xb3\xd0\xed\ \x76\xc3\xeb\xf5\xca\x9e\x5f\x1c\xf6\xf3\xe1\xeb\x74\x3a\x54\x56\ \x56\x9e\x28\xfc\xc3\x00\xae\x69\x6a\x6a\xea\xc1\x39\x64\xa7\x93\ \x00\x88\x1f\xff\xf8\xc7\xbf\x73\xbb\xdd\x8b\x3c\x1e\x0f\x7c\x3e\ \x1f\x9c\x4e\x27\x08\x82\x40\x73\x73\x33\xf6\xee\xdd\x5b\xd2\xf3\ \x75\x3a\xdd\x84\x3d\x3f\x1f\xfc\x10\xfc\x83\x3c\xcf\x5f\xf3\x87\ \x3f\xfc\xa1\x0f\xe7\x98\x9d\x36\x29\xe0\xb1\xc7\x1e\x7b\xd1\xe3\ \xf1\xdc\xe3\xf5\x7a\xe1\xf1\x78\xe0\x70\x38\x46\x0c\xfb\x06\x83\ \xa1\x20\xec\x1b\x0c\x06\xf9\x34\xae\xf1\xc0\xcf\xf7\x7e\x96\x65\ \xf7\xd1\x34\x7d\xd5\xb9\x08\xff\xb4\x11\xc0\xa3\x8f\x3e\xba\xd2\ \xeb\xf5\xde\xe7\xf1\x78\xe0\x76\xbb\xe1\x74\x3a\xe5\xb0\xff\xe9\ \xa7\x9f\xca\xf0\xa5\x6a\x5f\xab\xd5\x96\x3c\x87\x4f\xba\x58\x73\ \x02\xf0\x77\x03\xb8\xfa\xb5\xd7\x5e\xeb\xc7\x39\x6a\x65\x4f\x01\ \x3f\xfa\xd1\x8f\x9e\xf5\x78\x3c\x4b\xdd\x6e\x37\xdc\x6e\x37\x1c\ \x0e\x07\x48\x92\x44\x73\x73\x33\x3e\xfd\xf4\xd3\x82\x9c\x2f\x35\ \xbd\x5e\x5f\x32\xe7\xe7\xc3\xcf\xe5\x72\x63\xc1\xff\x3b\x80\x79\ \x4d\x4d\x4d\x11\x9c\xc3\x56\x56\x01\x3c\xf6\xd8\x63\xbf\x71\xbb\ \xdd\xcb\xdc\x6e\xb7\x1c\xf6\x25\xcf\xdf\xb7\x6f\x9f\x7c\x67\x8e\ \x91\x72\xbe\x4a\xa5\x1a\x96\xf3\xa5\xdb\xb8\x8f\x01\x7f\x17\xcb\ \xb2\x5f\xd9\xbc\x79\x73\x0c\xe7\xb8\xd1\x65\x84\xff\xff\xdc\x6e\ \xf7\xf7\x4b\x79\xbe\x04\x7f\xa4\xb0\x2f\xe5\xfc\x8a\x8a\x0a\xf9\ \xa6\x8b\xf9\x9e\x9f\xcb\xe5\x10\x8d\x46\x47\x82\xff\x21\x80\x1b\ \x36\x6f\xde\x1c\x87\x62\xe5\x11\xc0\x0f\x7f\xf8\xc3\x5f\xba\xdd\ \xee\x47\xdc\x6e\x37\x5c\x2e\x17\xec\x76\xbb\x0c\x7f\xff\xfe\xfd\ \x05\x05\xdf\x48\x61\x3f\xbf\xe0\x93\x1e\xd4\x20\xb5\x48\x24\x22\ \xdf\x7c\xb9\x08\xfe\x5f\x19\x86\xf9\xea\x96\x2d\x5b\x92\x0a\xfa\ \x32\x15\x81\x3f\xf8\xc1\x0f\x7e\xee\xf1\x78\x1e\x75\xb9\x5c\x05\ \xf0\xa5\xb0\x5f\x0a\xfe\x48\x61\x5f\xca\xf9\xf9\xf0\xc3\xe1\x30\ \x3a\x3b\x3b\x11\x89\x44\x10\x0e\x87\x11\x8b\xc5\x24\xf8\xef\x69\ \x34\x9a\xeb\x15\xf8\x65\x8c\x00\xcb\x97\x2f\xff\x67\x8f\xc7\xf3\ \x13\xa7\xd3\x09\xa7\xd3\x59\xe0\xf9\x07\x0e\x1c\x18\x35\xe7\x8f\ \x14\xf6\x8b\x3d\xbf\xbb\xbb\x5b\x86\x1f\x8d\x46\x11\x8f\xc7\xc1\ \xf3\xfc\x5b\xd9\x6c\xf6\xc6\xa6\xa6\xa6\xb4\x82\xbc\x4c\x02\x58\ \xbe\x7c\xf9\x8f\xdc\x6e\xf7\x0a\x87\xc3\x01\x97\xcb\x05\x9b\xcd\ \x26\x4f\xf2\x1c\x3c\x78\x70\xd8\x0c\x5f\xa9\x9c\x5f\x1c\xf6\xf3\ \x43\x7f\x24\x12\x41\x57\x57\x17\x22\x91\x48\x41\xe3\x38\xee\xed\ \x74\x3a\x7d\xe3\xd6\xad\x5b\x15\xf8\xe5\x12\xc0\xf2\xe5\xcb\x1f\ \x71\xb9\x5c\xff\xe2\x74\x3a\x09\xa7\xd3\x89\xaa\xaa\x2a\x90\x24\ \x89\x23\x47\x8e\x14\xc0\x97\xa0\x4b\xaf\xa5\x72\x7e\x71\xd8\x67\ \x59\x16\xe1\x70\x78\x98\xe7\x47\xa3\x51\x70\x1c\xf7\xe6\xc0\xc0\ \xc0\x8d\xdb\xb7\x6f\x67\x14\xd4\x65\x12\xc0\xc3\x0f\x3f\xfc\x3d\ \xa7\xd3\xf9\xa4\x04\x5f\xf2\xfc\x23\x47\x8e\xe0\xd0\xa1\x43\x72\ \xce\x1f\x09\x7e\xa9\x9c\x3f\x92\xe7\x4b\xe0\x23\x91\x08\x58\x96\ \xfd\xf7\x63\xc7\x8e\x7d\x43\x81\x5f\x46\x01\x7c\xff\xfb\xdf\xff\ \xb6\xd3\xe9\xfc\xb5\xc3\xe1\x20\xec\x76\xbb\xec\xf9\xad\xad\xad\ \x38\x74\xe8\x90\xfc\x44\x8c\xb1\xe0\xe7\xe7\xfc\xfc\x47\xb3\x49\ \xd5\x7e\x3e\xf8\x68\x34\x0a\x96\x65\xb7\xaa\x54\xaa\x05\xdb\xb7\ \x6f\x67\x15\xc4\x65\x12\xc0\xb2\x65\xcb\x1e\x70\x3a\x9d\x4f\xdb\ \xed\x76\xd2\xe1\x70\xc8\x9e\xdf\xd2\xd2\x82\xc3\x87\x0f\x17\x3c\ \x25\x63\xbc\xf0\x4b\x85\xfd\x7c\xf0\xd1\x68\x14\xb9\x5c\xee\x8f\ \xa9\x54\xaa\xae\xa9\xa9\x89\x57\xf0\x96\x49\x00\x0f\x3f\xfc\xf0\ \x12\xab\xd5\xfa\xaf\x36\x9b\x8d\x74\x38\x1c\xb0\x5a\xad\x20\x08\ \x02\xad\xad\xad\x68\x6e\x6e\x2e\xa8\xf6\xa5\xbb\x6f\x8e\x07\xbe\ \x54\xf8\x85\x42\x21\x19\x7e\x34\x1a\x45\x2c\x16\x93\x3c\xbf\x29\ \x95\x4a\x2d\x54\xe0\x97\x51\x00\xcb\x96\x2d\x5b\x6c\xb5\x5a\x57\ \x3a\x9d\xce\x61\xf0\x8f\x1c\x39\x22\x3f\x24\xa9\x78\x9c\x3f\x51\ \xf8\x12\xf4\x3c\xcf\x7f\x2d\x95\x4a\xfd\x93\x02\xbf\x8c\x02\xf8\ \xce\x77\xbe\xb3\xc8\x66\xb3\xbd\x68\xb7\xdb\x69\x9b\xcd\x56\x00\ \xbf\xa5\xa5\xa5\xa0\xda\x2f\x9e\xe4\x31\x18\x0c\x63\xe6\xfc\x70\ \x38\x8c\xae\xae\x2e\xc4\x62\x31\xc4\x62\x31\x44\x22\x11\xc4\x62\ \x31\xe4\x72\xb9\x97\x1b\x1a\x1a\xee\x04\x20\x2a\x48\xcb\x24\x80\ \x07\x1f\x7c\x70\xa1\xd5\x6a\x6d\xb0\xd9\x6c\xb4\xcd\x66\x43\x55\ \x55\x15\x08\x82\x40\x5b\x5b\x1b\x5a\x5a\x5a\x64\xcf\xcf\xcf\xf9\ \xc5\x93\x3c\xd2\xe3\x56\xa5\x71\x7e\xbe\x00\x24\xf8\xf1\x78\x5c\ \x0e\xfb\x43\xf0\x1b\x1a\x1a\x1a\xee\x55\xe0\x97\x51\x00\x0f\x3d\ \xf4\xd0\x2d\x36\x9b\xed\xf7\x55\x55\x55\xb2\xe7\x03\x90\xe1\x17\ \x7b\x7e\x7e\xce\x2f\x9e\xe4\x91\x1e\x8d\x2a\x85\x7e\x8e\xe3\x10\ \x0a\x85\x4a\xc2\x67\x59\xf6\xb7\x0d\x0d\x0d\xf5\x0a\xfc\x32\x0a\ \xe0\x5b\xdf\xfa\xd6\x02\xb3\xd9\xbc\xb6\xaa\xaa\x4a\x2d\x3d\xf5\ \x52\x82\x7f\xf4\xe8\xd1\x92\xd5\x7e\x71\xce\x2f\x9e\xe4\x91\xf2\ \x3d\xc7\x71\x08\x06\x83\xe8\xee\xee\x96\xe1\xc7\xe3\x71\xc9\xf3\ \x57\x36\x34\x34\x3c\xa8\x20\x2c\xa3\x00\xea\xeb\xeb\x6f\x34\x1a\ \x8d\xaf\xd8\x6c\xb6\x8a\xaa\xaa\x2a\x98\xcd\x66\x39\xec\xb7\xb5\ \xb5\x8d\x5a\xed\x17\xe7\x7c\x09\x7e\xbe\x00\x24\xf8\x92\xc7\xc7\ \xe3\x71\xc4\xe3\x71\xb0\x2c\xfb\x5c\x43\x43\xc3\xb7\x15\x7c\x65\ \x14\xc0\x03\x0f\x3c\xf0\x55\x93\xc9\xb4\xa1\xaa\xaa\xaa\xa2\xaa\ \xaa\x4a\xf6\xfc\xf6\xf6\x76\xb4\xb7\xb7\x8f\x78\x54\xaf\xd8\xf3\ \x8b\x0b\x3e\xe9\x35\x18\x0c\xa2\xb3\xb3\x13\x89\x44\x42\xf6\xfa\ \x78\x3c\x0e\x8e\xe3\x9e\x5a\xbd\x7a\xf5\xc3\x0a\xba\x32\x0a\x60\ \xf1\xe2\xc5\xd7\x57\x56\x56\x36\x55\x55\x55\x55\x58\xad\x56\xf9\ \xa6\xc8\x9d\x9d\x9d\x68\x6f\x6f\x2f\xc8\xf9\xf9\x0f\x57\x2a\x55\ \xed\xe7\xe7\x7c\x09\xfe\xc0\xc0\x00\xba\xba\xba\x90\x48\x24\x64\ \xf0\x89\x44\x02\x1c\xc7\xfd\xdf\xd5\xab\x57\x3f\xaa\x60\x2b\xa3\ \x00\x16\x2f\x5e\xfc\x65\xab\xd5\xba\xd1\x62\xb1\x68\xad\x56\xab\ \xec\xf9\x5d\x5d\x5d\xe8\xe8\xe8\x28\xc8\xf9\xf9\x0f\x55\x2a\x2e\ \xf8\xf2\x3d\x3f\xdf\xfb\x07\x06\x06\xd0\xd9\xd9\x89\x64\x32\x89\ \x58\x2c\x26\x8b\x80\x65\xd9\xff\xb3\x66\xcd\x9a\xc7\x15\x64\x65\ \x14\xc0\xdd\x77\xdf\x3d\xd7\x68\x34\xbe\x6e\x36\x9b\x75\x56\xab\ \x15\x26\x93\x49\x86\xdf\xd9\xd9\x39\xae\x9c\x5f\xaa\xe0\x93\x44\ \xd0\xdf\xdf\x2f\x7b\xbe\xe4\xf5\xf1\x78\x5c\xe4\x38\xee\x67\x6b\ \xd6\xac\xf9\x99\x82\xab\x8c\x02\x58\xb2\x64\xc9\xff\xd6\x6a\xb5\ \x5b\x2d\x16\x8b\xce\x62\xb1\xc8\xf0\x7b\x7b\x7b\xe5\xb0\x2f\x79\ \x7e\x7e\xd8\x2f\x95\xf3\x09\x82\x00\xcf\xf3\x05\x39\x3f\x1f\xbe\ \xd4\xe2\xf1\xb8\xc8\xb2\xec\xe3\x6b\xd7\xae\x7d\x42\x41\x55\x46\ \x01\x2c\x5a\xb4\xe8\x7f\xa9\xd5\xea\x6d\x56\xab\xd5\x20\x3d\x09\ \x0b\x00\x72\xb9\x1c\xda\xda\xda\x0a\x26\x79\x8a\xe1\x8f\x56\xed\ \xe7\xc3\x97\x0a\x3e\xa9\x25\x93\x49\x91\xe3\xb8\x47\xd7\xae\x5d\ \xfb\xa4\x82\xa9\x8c\x02\xb8\xf3\xce\x3b\xe7\xe8\xf5\xfa\xed\x16\ \x8b\xa5\xd2\x64\x32\xc1\x6c\x36\xcb\xcf\xaa\x89\x44\x22\x10\x45\ \xb1\xe4\xf4\x6e\x71\xd8\x2f\xce\xf9\x52\x3b\x76\xec\x98\x9c\xf3\ \xa5\xd0\x9f\x4a\xa5\x04\x96\x65\x7f\xb0\x6e\xdd\xba\xdf\x28\x88\ \xca\x28\x80\xdb\x6f\xbf\xfd\x73\x1a\x8d\xe6\xcf\x46\xa3\xd1\x68\ \x36\x9b\x61\x32\x99\xe4\xe7\xde\x89\xa2\x08\x9e\xe7\x87\xe5\xfc\ \xe2\x6a\x3f\x3f\xec\x17\xc3\xef\xeb\xeb\x43\x47\x47\x07\x52\xa9\ \x94\xe4\xf5\x48\x24\x12\x42\x2e\x97\xfb\xde\xab\xaf\xbe\xfa\xac\ \x82\xa7\x8c\x02\xb8\xed\xb6\xdb\x3e\xab\xd1\x68\xfe\x62\x34\x1a\ \x4d\x66\xb3\x19\x46\xa3\x51\xfe\x4e\x12\x81\x34\xce\x2f\x15\xf6\ \xf3\xab\xfd\xf1\xc2\x4f\x26\x93\x02\xc7\x71\xcb\x5e\x7d\xf5\xd5\ \x7f\x53\xd0\x94\x51\x00\x75\x75\x75\xb3\x34\x1a\xcd\x5b\x26\x93\ \xc9\x62\x36\x9b\x41\xd3\x34\xf6\xef\xdf\x8f\x58\x2c\x06\x51\x14\ \xa1\xd7\xeb\x61\xb1\x58\xe0\x70\x38\xe4\x47\xa9\x97\x0a\xfb\xf9\ \xd5\x3e\xcf\xf3\x32\xfc\xde\xde\x5e\x74\x74\x74\x20\x99\x4c\xca\ \x02\x48\x24\x12\x1c\xc7\x71\x0f\xad\x5f\xbf\xfe\x25\x05\x4b\x19\ \x05\x70\xf3\xcd\x37\x5f\xa0\xd1\x68\xde\xad\xac\xac\xb4\x1a\x8d\ \x46\xb4\xb4\xb4\x20\x12\x89\xe4\x5c\x2e\x57\xc4\x6a\xb5\x66\xd5\ \x6a\xb5\x96\x61\x18\x6b\x22\x91\x50\x71\x1c\x57\x70\x91\x66\xa9\ \xb0\x9f\x0f\x5e\x82\xdf\xde\xde\x8e\x54\x2a\x95\xef\xfd\x1c\xc7\ \x71\xf7\x6f\xd8\xb0\xa1\x41\x41\x52\x46\x01\xcc\x9f\x3f\x7f\xa6\ \x56\xab\xdd\x61\x30\x18\xaa\x0c\x06\x83\x18\x8d\x46\x0f\x7b\xbd\ \xde\x9f\xff\xfe\xf7\xbf\x7f\xad\xf8\x0f\x37\x6d\xda\x74\x7b\x28\ \x14\x7a\x26\x12\x89\xd8\xf3\xa1\x97\x0a\xfb\x92\x08\x7a\x7a\x7a\ \x64\xf8\x79\xde\xcf\x09\x82\x70\xef\x86\x0d\x1b\xd6\x2a\x38\x4e\ \xbd\x11\x79\x61\x7f\x1a\x45\x51\x3b\x0d\x06\x83\xc3\x66\xb3\xb1\ \x35\x35\x35\x3f\x5d\xba\x74\xe9\x2f\xc7\x5a\xc1\xf6\xed\xdb\x5f\ \xeb\xeb\xeb\xbb\xcd\xe3\xf1\xc0\x64\x32\x41\xa3\xd1\x80\xa2\x28\ \xf9\xc9\x57\x92\x08\xba\xbb\xbb\x0b\x3c\x7f\x48\x04\xac\x20\x08\ \x77\x35\x36\x36\xbe\xa6\xa0\x28\xa3\x00\xe6\xce\x9d\x4b\x3b\x1c\ \x8e\x3d\x3a\x9d\xee\x42\x8b\xc5\x22\xce\x98\x31\xe3\x07\x0f\x3d\ \xf4\xd0\xaf\xc7\xbb\x92\x0f\x3f\xfc\xf0\xd5\x9e\x9e\x9e\x85\x76\ \xbb\x1d\x66\xb3\x79\x18\xfc\x8e\x8e\x0e\x74\x76\x76\x62\x70\x70\ \x30\x1f\x3e\xc3\xf3\xfc\x9d\x9b\x36\x6d\x6a\x54\x30\x94\x59\x00\ \x0b\x17\x2e\x7c\x81\xa6\xe9\x7a\x8b\xc5\x82\x6c\x36\xbb\xef\xa5\ \x97\x5e\x9a\x35\xd1\x15\xbd\xf3\xce\x3b\x7d\x1d\x1d\x1d\x2e\xa9\ \x20\xe4\x79\x1e\x99\x4c\x06\xc1\x60\x10\x89\x44\x02\x83\x83\x83\ \xb2\x00\x92\xc9\x24\x43\x10\xc4\xc2\xa6\xa6\xa6\x3f\x2a\x08\xca\ \x5c\x03\x2c\x5c\xb8\xd0\x49\x10\xc4\x9d\x46\xa3\x11\x47\x8f\x1e\ \x15\x67\xcd\x9a\xf5\xd8\x64\x56\x64\x36\x9b\xeb\x0f\x1e\x3c\xf8\ \xfa\xe0\xe0\x20\x54\x2a\x15\xb2\xd9\x2c\x18\x86\x41\x3a\x9d\x2e\ \x80\x3f\x38\x38\x98\xe1\x38\xee\xd6\xd7\x5f\x7f\x7d\xab\xd2\xfd\ \xe5\x37\xd2\x6a\xb5\x7e\xcf\x60\x30\x68\x45\x51\xc4\xe0\xe0\x20\ \xf3\xcb\x5f\xfe\xf2\x8d\xc9\xac\xe8\xd2\x4b\x2f\xdd\xa2\x52\xa9\ \x98\x64\x32\x89\xc1\xc1\x41\x64\x32\x19\x79\x76\x2f\xef\x35\xcd\ \xb2\x6c\x9d\x02\xff\x34\x8a\x00\x1a\x8d\xe6\xcb\x5a\xad\x16\xcd\ \xcd\xcd\x70\xb9\x5c\x27\x7a\xaf\x9c\x60\x26\x93\xf1\xf1\x3c\x8f\ \x74\x3a\x2d\x7b\xff\x90\xe7\xa7\x49\x92\xbc\x79\xcb\x96\x2d\x7f\ \x56\xba\xfd\x34\x8a\x00\x1a\x8d\x66\x3a\x49\x92\x88\xc5\x62\x30\ \x18\x0c\xa9\x13\x59\x19\xc3\x30\xf1\x6c\x36\x2b\x7b\x7c\x5e\x1b\ \x14\x45\x71\xfe\xe6\xcd\x9b\x15\xf8\xa7\x5b\x04\xe0\x38\xce\x40\ \x10\x04\x04\x41\x00\x45\x51\xfa\x13\x59\x59\x32\x99\x34\x48\xb7\ \x69\x91\xbc\x3f\x9d\x4e\x27\x29\x8a\x9a\xbf\x75\xeb\xd6\x1d\x4a\ \x77\x9f\x86\x02\x10\x45\x51\x20\x49\x12\x1a\x8d\x06\xe9\x74\xda\ \x79\x22\x2b\x0b\x87\xc3\x8e\x74\x3a\x8d\x6c\x36\x8b\x54\x2a\x85\ \x74\x3a\x9d\xa0\x69\xfa\xfa\xad\x5b\xb7\x7e\x38\xc2\xfc\x03\x51\ \xa2\xe5\x2f\x27\x8b\x3e\xa3\xc4\x6b\xf1\xfb\x52\x9f\xc7\x32\x71\ \x1c\xcb\xc4\x12\xcb\xc5\x12\x9f\x47\x5a\x2e\x16\x2d\x17\x47\x59\ \xef\xa9\x13\x00\x4d\xd3\x29\x00\x15\x06\x83\x01\xe1\x70\x58\xdb\ \xd0\xd0\x70\xd9\x3d\xf7\xdc\xb3\x73\x02\xc3\x48\x02\x00\xf1\x8b\ \x5f\xfc\xe2\xca\xd6\xd6\x56\x8d\x54\xf9\x67\x32\x99\x44\x36\x9b\ \xbd\xf9\xfd\xf7\xdf\xdf\x0f\xc0\x92\x07\x94\x18\x47\x1b\x0b\x3a\ \x31\xda\xa4\xd6\x24\x00\x8b\xa3\x80\x16\x47\x81\x3b\xd2\x32\xb1\ \x04\x78\x8c\xb1\x5c\x1c\x63\x39\x00\x08\x79\xaf\x27\x45\x38\xb4\ \xc1\x60\xe8\x1a\x1c\x1c\xac\xb2\xdb\xed\x08\x85\x42\xe8\xed\xed\ \x7d\x15\xc0\xf4\xbc\x4e\x25\x87\x1a\x55\xf4\x5a\xd0\xfa\xfa\xfa\ \x9e\x49\xa7\xd3\xc4\x10\xfc\x78\x30\x18\xbc\x73\xef\xde\xbd\xed\ \x00\xec\x45\xf0\x27\x2a\x82\xc9\x78\xf4\x68\x1e\x3b\x51\xa8\xe3\ \x85\x36\xde\x65\xe3\xf9\xae\x14\x74\x71\x82\xad\x58\x28\xa5\x05\ \xe0\x74\x3a\xdf\x39\x78\xf0\xe0\x25\x36\x9b\x0d\x83\x83\x83\x68\ \x69\x69\x99\xf6\xf2\xcb\x2f\xff\x7a\xd1\xa2\x45\x2b\x4a\x80\xa7\ \x4a\x09\xe2\x96\x5b\x6e\xf9\x66\x7f\x7f\xff\x45\x43\x95\x7f\xbc\ \xaf\xaf\xaf\xbe\xb9\xb9\xb9\x07\x40\x55\x91\x50\x88\xa2\xf7\xa3\ \xc1\x1f\x0d\xfc\x58\x50\xc7\xeb\x8d\x93\x05\x73\xb2\x20\x95\xb3\ \x1d\xef\xe0\x15\x2b\x56\xd0\xa9\x54\x2a\xa2\xd3\xe9\x2a\x13\x89\ \x04\xd2\xe9\x34\x4c\x26\x93\x38\x67\xce\x9c\xff\x5f\x57\x57\xf7\ \x44\x11\x7c\xaa\x48\x08\xd4\x82\x05\x0b\x6e\xe2\x38\xee\x27\x99\ \x4c\xa6\x22\x9b\xcd\xc6\xbb\xba\xba\xbe\xd5\xd6\xd6\xd6\x5e\xfc\ \xbb\x51\x84\x44\x16\xe5\xfa\x52\x50\x4f\x87\x0e\xce\xdf\x86\x52\ \xef\x85\xd3\x64\x5b\x26\xb4\x2e\x02\x00\x5e\x7c\xf1\xc5\x9f\x7e\ \xf4\xd1\x47\x3f\xf5\x78\x3c\xc4\xe0\xe0\x20\x08\x82\x80\x56\xab\ \xc5\xcc\x99\x33\x8f\xf6\xf4\xf4\xdc\xbb\x7c\xf9\xf2\xc3\xc5\x29\ \xe0\xa6\x9b\x6e\xba\xc4\x6c\x36\xff\x73\x28\x14\x9a\x95\x4e\xa7\ \x09\x86\x61\x62\x5d\x5d\x5d\xf5\x9d\x9d\x9d\xed\x63\xc0\xa6\x4a\ \x44\x84\x52\x79\x7f\xbc\x61\xfb\x44\xbc\xb7\x94\xc0\x84\x51\x96\ \x8d\x05\x7f\x3c\xef\x4f\xab\x26\x77\xf6\x93\x4f\x3e\xf9\xde\xbe\ \x7d\xfb\xae\x0c\x04\x02\xf2\x71\x7c\x86\x61\xc0\xf3\x3c\xac\x56\ \xeb\xa0\x4a\xa5\xea\x63\x18\x26\x9e\x4a\xa5\xcc\xd1\x68\xd4\x1d\ \x0c\x06\xb5\x0c\xc3\x10\xe9\x74\x1a\xa9\x54\x2a\x1a\x8f\xc7\xef\ \x68\x6d\x6d\x6d\x2d\x55\x1f\x94\x80\x5d\x9c\x02\xc8\x12\xa3\x82\ \xf1\x56\xf4\x93\xc9\xf1\x93\xcd\xf3\x93\x11\x1a\x4e\x72\xd8\x9e\ \x88\x58\x47\x0d\xff\xc3\x3a\xf7\x89\x27\x9e\x78\x6f\xd7\xae\x5d\ \x57\x78\x3c\x1e\xc2\x6a\xb5\x22\x93\xc9\x40\x1a\xd6\x31\x0c\x33\ \xec\xd6\x6c\x43\xe7\xee\xf7\x66\x32\x99\x45\x1d\x1d\x1d\x7b\x46\ \xc9\xf5\x64\x11\xec\xb1\xe0\x4f\x64\xc8\x37\xd1\x21\x9e\x38\x89\ \xd7\xb1\x04\x82\x13\x28\x08\xa7\xb2\x50\x1c\xd7\x30\xae\xc0\x9e\ \x7d\xf6\xd9\xc7\x77\xee\xdc\xf9\x93\x60\x30\xa8\x36\x18\x0c\xd0\ \x6a\xb5\x10\x45\x11\xa2\x28\xca\x27\x72\x44\xa3\x51\x24\x93\x49\ \x5e\xa5\x52\x7d\x2c\x08\xc2\x15\x2d\x2d\x2d\x4c\xd1\xfa\x4a\x01\ \x1f\x4f\xf1\x37\xda\x30\xf0\x64\x8d\xff\xc5\x09\x7c\x9e\xac\x48\ \x26\x3a\xb2\x18\xe9\x3b\x61\xaa\xe7\x0b\x4a\x76\x58\x63\x63\x23\ \xb5\x7f\xff\xfe\x27\xdb\xdb\xdb\xeb\xba\xbb\xbb\x5d\xb1\x58\x8c\ \x66\x18\x86\x10\x45\x51\x50\xa9\x54\x09\x9a\xa6\x3f\x22\x08\xa2\ \x7e\xd7\xae\x5d\x53\xf9\x60\x25\x62\x82\xaf\xe3\x8d\x14\xe3\x49\ \x29\xa3\x75\xb2\x30\xc1\xa1\x26\xca\x39\xd1\x33\x96\xfd\x37\xa8\ \xb1\x0c\x0b\x7d\xf1\xe6\x87\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x26\x47\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x24\x0a\x5e\x36\x5b\xc9\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xed\x7d\x79\x78\x55\xd5\xd9\xef\xef\xdd\xfb\x4c\ \x99\x73\x32\x30\x85\x00\x82\x40\x18\x12\xc8\x4c\x48\x10\x04\x04\ \xad\x55\xbf\x7e\xa8\xb7\xbd\xf7\x51\x14\x19\xa4\x8a\x03\x32\xa3\ \xd4\x01\x87\x4f\x5b\x07\xbe\xb6\xb7\xd7\xda\x5e\x5b\xb5\x5a\x11\ \xdb\x3e\xb6\xd7\x01\x51\x54\x24\x73\x08\x43\xc2\x3c\x86\x4c\x64\ \x26\xd3\x19\xf7\xba\x7f\x9c\x0c\xe7\xec\xb3\xa7\x33\x04\x82\xcd\ \xca\xb3\x9f\x9c\xb5\xd7\x9e\xd6\x7a\xdf\xf7\xf7\x0e\xeb\x5d\x7b\ \x03\x43\x65\xa8\x0c\x95\xa1\x32\x54\x86\xca\x50\x19\x2a\x43\x65\ \xa8\x0c\x95\xa1\x32\x54\x86\xca\x50\xf9\x77\x29\xf4\x43\xed\x57\ \x4a\x46\xc6\x24\x22\x9a\xc6\xc0\x25\x12\x63\x63\x40\x34\x0a\x40\ \x22\x03\x25\x72\xc4\x22\xdc\xbb\x4e\x04\x00\x24\x00\x68\x00\xd0\ \x40\x84\x3a\x00\xf5\x00\xd5\x81\x58\xa5\xce\xa9\x2f\x2f\x2a\xfa\ \xf6\xec\x10\x03\x0c\xd2\x92\x9e\x9e\x1e\xe7\x04\x9f\xed\x04\xcb\ \x22\x8e\xb2\x09\xc8\x02\xc8\xec\x49\xe0\xfe\xee\x6a\xaf\x7b\xec\ \x6b\x05\x43\x39\x71\x5c\x39\x63\xd8\xc7\x3b\x6d\xbb\x0b\x0b\x0b\ \x2f\x0f\x31\xc0\x55\x2a\xd3\x33\x33\x13\x79\x81\xfe\x83\x11\x96\ \x10\x21\x0f\x00\x2f\x47\x50\x37\x29\x57\xa9\x4b\x33\x01\x81\x3c\ \x46\xaa\xa7\x6e\x03\xc3\x3e\x46\xf4\xff\x74\x4e\xee\x5f\xf9\xf9\ \x7b\x8f\x0d\x31\xc0\xc0\x4b\xfa\x48\x1b\xf8\x7b\x41\x58\xc2\x11\ \x32\x3c\xc8\x46\xfe\x12\xbc\x87\xa4\xea\x04\x57\xa8\x03\x20\xaa\ \x64\x60\x6f\x72\x76\xfb\x3b\xf9\xf9\xf9\xcd\x43\x0c\x10\xc4\x92\ \x9c\x96\x9d\xce\xf1\x78\x0c\xc0\xdd\x00\x0c\x81\x4a\xb4\x26\x82\ \xbb\x5d\xce\xbb\xee\x79\x13\x51\xbd\x1b\xa0\x8f\x78\x62\x6f\xee\ \xdb\xbb\x77\xdf\x10\x03\xf8\x5f\xb8\x94\x8c\xec\x9f\x10\xe1\x51\ \x00\x73\x7c\xd5\xe3\x4a\xc7\xa8\x11\x58\x41\xca\x35\xd5\xdd\x18\ \xa2\x94\x81\xfd\x62\xff\xd7\x5f\xff\x6b\x88\x01\x7c\x28\x29\x99\ \x39\x37\x13\xd8\x2b\x44\x6c\x7a\x20\xb0\x1e\x11\x11\x0e\xb3\x39\ \x1a\x31\x66\x33\x62\xcc\x31\x88\x8e\x8e\x82\xc1\x60\x80\xd1\x68\ \x84\x5e\xa7\x87\xc1\x60\x00\x00\xd8\x6c\x36\x38\x1d\x0e\x58\x6c\ \x56\xd8\x6c\x36\xb4\xb5\xb5\xa1\xa5\xa5\x15\x2d\xad\xad\x68\x69\ \x69\x41\x47\x67\xa7\x36\x82\xf7\xec\x13\xdb\x90\x04\xda\x0f\xc6\ \x6d\xfb\xee\xeb\xdd\x7b\x86\x18\x40\xa1\xa4\x66\x67\x4f\x15\x18\ \xfd\x8a\x80\x9b\x7d\x25\xb8\x5e\x6f\x40\xc2\xa8\x91\x18\x93\x38\ \x1a\xa3\x47\x8f\x46\x62\xc2\x68\x84\x85\x87\x29\x74\x94\x14\x47\ \xc4\xbd\xb5\xb3\xb3\x0b\xd5\xd5\xd5\xb8\x58\x5d\x8d\xaa\xea\x6a\ \xd4\xd5\xd6\xc2\xee\x70\x28\x11\x5c\xba\xce\xb0\x87\x11\x5b\xfb\ \xdd\x9e\x3d\x87\x86\x18\xc0\xad\x64\x67\x67\x47\x5a\x41\x2f\x12\ \xb0\x12\x80\x4e\xab\x7b\x16\x1a\x62\xc2\xc4\x89\x13\x91\x34\x69\ \x12\xae\x9f\x30\x01\x7a\xbd\x5e\x13\x41\x15\x87\x80\xd4\x06\x87\ \xe0\x70\xd8\x71\xe6\xcc\x59\x1c\x3f\x79\x12\xa7\xce\x9c\x86\xc5\ \x62\xd1\x60\x37\xf4\xfd\xb0\x13\xd1\xcb\xb0\xd9\xb6\xef\xdd\xbb\ \xd7\xf2\x6f\xcf\x00\x69\x59\x59\x73\x18\xf1\xef\x00\x18\xab\xc5\ \x98\xe3\x79\x0e\xd7\x4f\x98\x80\xf4\xd4\x54\x8c\xbf\xee\x3a\x70\ \x1c\x29\x77\x47\x03\x41\x3d\x61\x5d\x1b\x83\xf4\xee\x15\x04\x86\ \xb3\xe7\xcf\xe1\xe0\xc1\x43\x38\x73\xe6\x0c\x04\xc6\x94\x51\xa0\ \xaf\x8e\xe3\x1c\xd1\x8a\x3d\x9f\x7f\xfe\xdd\xbf\x25\x03\xa4\xa7\ \xa7\xeb\x05\x9d\xe1\x59\x22\xac\x07\x88\x57\x73\xcf\xc2\xc2\xc2\ \x90\x9a\x32\x03\xa9\xa9\x33\x10\x11\x11\xa1\x1d\xd6\xbd\x18\x40\ \xfa\x18\xf2\x65\xa8\x48\xfa\xde\xed\x1d\xed\x38\x74\xe8\x30\x0e\ \x57\x1c\x41\x57\x57\xb7\xcc\xf1\x1e\x1e\x08\x03\xd1\xaf\x8d\x44\ \xeb\x3f\xfd\xf4\x53\xeb\xbf\x0d\x03\xa4\xe7\xe4\x24\x31\x46\xef\ \x01\x48\x53\x73\xcf\x42\x43\x43\x90\x95\x99\x89\xf4\xd4\x54\xe8\ \x74\x3a\x69\x77\xcd\x37\xf5\x2e\x29\xd5\xe4\x33\xc1\xe5\xef\xe0\ \x74\x3a\x50\x7e\xe8\x10\x4a\xcb\xca\xd0\xdd\x6d\x51\x74\x41\x7b\ \xce\x29\x60\x3a\xfe\xce\xaf\xfe\xf9\xcf\xea\x1f\x3c\x03\xa4\xe6\ \xe4\x2c\xe0\x40\xbb\x00\x44\x29\xb9\x67\x46\xa3\x11\x19\x69\x69\ \xc8\x48\x4f\x87\x41\xac\xdb\xd5\xa4\xda\x87\x76\xe5\xdd\xa4\x62\ \x47\x28\x33\x89\xdd\x6e\xc7\x81\xf2\x83\x28\x3f\x78\x10\x36\xbb\ \x4d\x2d\x2e\x71\x09\x8c\xdd\xbd\xfb\xd3\x4f\xbf\xf9\xc1\x32\x40\ \x46\x4e\xde\x32\x06\xf6\x3b\x22\xe8\x95\x82\x30\x13\x27\x5e\x8f\ \x1b\xe7\xde\x80\xf0\xb0\x70\xd5\xa7\x24\x0d\x7a\x5a\x3b\xec\x93\ \x56\x6d\xe2\xd5\x42\x0a\xcf\xd8\xd9\xd5\x85\x7d\xfb\xf7\xe3\xcc\ \x99\x33\xb2\xc7\x93\x6b\x87\x83\x80\xf5\x9f\xff\xeb\x5f\xaf\xff\ \xd0\x18\x80\xd2\x73\x72\x9f\x27\xc2\x66\xa5\xb0\x6a\x44\x44\x04\ \xe6\xcf\x9d\x8b\xeb\xc6\x8d\xd3\xf0\x94\xe2\xa0\x8b\x04\x51\xb4\ \x9b\x07\x3e\xc2\xbe\x32\xc1\xa5\x4e\x26\x00\xe7\x2f\x5c\xc0\xbe\ \xfd\xfb\xd1\xd1\xd1\xe1\x4e\x74\x31\x13\x80\x80\x97\x3e\xfb\xe7\ \x3f\x37\xff\x20\x18\xe0\xae\xbb\xee\xe2\xcf\x57\xd7\xfe\x5f\x46\ \xb8\x47\xc9\x3d\x9a\x34\x69\x22\x6e\x9c\x7b\x83\x1b\xdc\xfb\x0e\ \xeb\xbe\x4a\xb4\x5c\x14\x50\x92\xcd\x7c\x44\x04\x6f\x98\xef\x57\ \x0b\xdf\xe7\xe7\xe3\xd4\xe9\xd3\x1e\x0c\x20\x11\x68\xfa\xef\x4f\ \x3f\xf9\xe4\x51\x00\xec\x5a\x66\x00\xca\xca\xcd\xfb\x3d\x40\x0f\ \xc8\x49\x3d\xcf\xf3\x98\x93\x3b\x1b\x53\xa7\x4c\xd5\xe4\x8e\x51\ \x50\x08\xea\xab\xd4\xcb\x13\x54\x4d\xea\x45\x22\xde\xf7\xf3\xc4\ \x89\x13\x28\x2c\x2e\x86\xd3\xe9\x94\x63\x00\x80\xd8\x5b\x61\x06\ \xd3\x83\x3b\x77\xee\x74\x0e\x14\x81\x74\x03\x1a\xe0\xc9\xbb\xe1\ \x75\x06\xf6\x80\x5c\x5c\x3d\x2a\x32\x12\x37\x2d\x5c\x80\xd8\x98\ \x18\x08\x82\xa0\xc2\x00\x5a\x61\x9d\x7c\x6c\xef\x17\x30\x62\x1e\ \x35\xb7\xf3\x59\x5f\xbb\x3c\xc1\x99\xa8\x1d\x60\x62\x82\xb2\xfe\ \x03\x26\x5e\x7f\x3d\xe2\x62\x63\xf1\xcd\x77\xdf\xe1\x72\x7b\xbb\ \x88\xb1\x7b\x9f\x92\x96\x77\x3a\x6c\x06\x00\xf7\x0d\x14\x12\xf0\ \x03\x46\xfc\x39\x73\x5f\x00\x61\x1d\x91\x4b\x5f\x52\x8f\x8e\xeb\ \xdd\x86\xc5\xc5\xe1\xd6\x5b\x6e\x46\x44\x78\x84\xab\x6b\x8c\xf5\ \xf4\x91\xb9\xfe\x18\x73\xdf\xd5\xd3\x7d\xe6\xf9\xc7\x98\xa8\x1d\ \x5e\xed\x1e\xc7\x88\xda\xc1\xdc\x37\xcf\x4b\x49\xb6\x33\xcf\x76\ \xc6\x3c\x8f\x61\x8c\xb9\xdf\xca\xbb\xcd\xad\x9d\x01\x08\x31\x99\ \x30\x6e\xec\x58\x5c\x6a\x68\x40\x77\x77\xb7\xc7\xf8\xa0\xff\xf7\ \x8c\x49\x53\x26\x1b\x4f\x1c\x3b\xbe\xe7\x9a\x51\x01\xb3\xe6\xcc\ \x79\x1c\xa0\x57\xe5\x26\x4f\x12\x47\x8f\xc6\x8d\x73\xe7\x42\xa7\ \xd3\xa9\x4a\xb4\x36\x58\xd7\xa8\xc7\x15\x4d\x0b\xb5\x76\xc9\x48\ \x95\x62\x3b\x29\x8e\x78\x3f\x16\x39\x9c\x4e\x7c\xbf\x7f\x3f\x6a\ \x6b\x6b\x25\xdb\x7b\x06\x6f\xf9\x27\x1f\x7f\xfc\x87\x41\xcf\x00\ \x39\x73\x6e\x9c\xcb\x48\xf8\x92\x00\x9d\x14\x03\x5c\x3f\x7e\x3c\ \x66\xe7\xcc\x02\x47\x9c\x3a\x41\xfd\x86\x79\xad\x7a\x99\x06\x9e\ \xe0\x5e\xb0\x2e\xdd\xce\x18\x50\x52\x52\x82\x73\xe7\xcf\x7b\xe8\ \x40\xea\x0f\x25\xdb\x04\x41\xb8\xe5\x93\xbf\xfd\xed\xab\x41\xcb\ \x00\xd9\xf3\xe6\x8d\xe6\x18\x2b\x05\x68\x98\x7b\x92\x44\xef\xef\ \xb1\x63\xc6\x20\x2f\x2f\x17\x9c\xcf\x04\x0e\x9e\x7b\x46\x3e\x12\ \x5c\xe9\x18\x35\x82\x2b\xa3\x80\x77\x3b\x03\x50\x54\x54\x84\x8b\ \x35\xd5\x90\xf6\x98\xd0\xc6\x33\xcc\xda\xb5\x6b\xd7\xb1\x41\xc7\ \x00\xd3\xa6\xdd\x65\x88\x8a\x6b\xd8\x0b\xa2\x1c\xa9\xf9\xf1\x84\ \x51\xa3\x90\x97\x3b\x1b\x1c\xcf\x7b\xdd\x94\x02\x70\xd7\x94\x25\ \x5a\x8b\xf5\xee\xed\x8f\x7b\xd3\x4a\x0b\xac\xab\x11\x5c\x01\x05\ \xdc\x5c\x62\x41\x10\x50\x58\x5c\x8c\xba\xfa\x3a\x2f\xd5\xd5\x53\ \x2f\xd5\x01\xb3\x77\xee\xdc\x69\x1b\x54\x46\xe0\xa4\x69\xc3\x5e\ \x27\xa2\x25\x22\x03\x06\x44\xc0\xb0\x61\xf1\x98\x93\x9b\xeb\x82\ \x7d\x37\x03\xaf\xdf\xa8\x12\x1b\x7f\x4c\x6c\x7f\x49\xb4\xf7\x1f\ \x03\x05\xc3\xcc\x65\xdc\x79\x9e\x07\xb1\xf1\x06\x78\xb6\x89\xa4\ \x52\x7c\xae\x9b\x19\xd9\x67\xbf\x7a\xb4\xb3\xfe\x76\xb7\x87\x13\ \x19\x83\x4c\x74\x13\xd7\x35\x00\x60\xe4\xc8\x91\x68\x69\x69\xe9\ \x31\x0c\x3d\x8d\x67\x22\x8c\x12\x38\x4e\x7f\xac\xa2\x62\xcf\xa0\ \x41\x80\xdc\x05\x0b\xe6\x90\xc0\xbe\xf1\x8c\x9b\xb8\x7e\x86\x85\ \x86\x62\xc1\xfc\x1b\x61\x34\x1a\x07\x25\xcc\xcb\xc3\xb8\x54\xdc\ \x81\x94\x84\x1b\x8a\x51\x04\x52\xb4\x02\x44\x36\x28\xc1\x66\xb7\ \x61\xdf\xf7\xdf\xa3\xbb\xbb\xdb\x63\x40\x7a\xda\x9d\x8c\xb1\xf9\ \x1f\x7f\xf8\xe1\xb7\x57\x9d\x01\xe6\xcd\x9b\x67\x72\x70\x5c\x39\ \x81\x26\x7b\x12\x90\xc0\xf3\x3c\xe6\xdd\x70\x03\xa2\xa2\x22\x03\ \x20\xb0\xef\x04\x57\x82\x79\x35\x82\x7b\xd2\x92\x54\x54\xbc\x5a\ \xbb\xfa\x8c\xa5\xb4\x87\xe2\xfa\xd1\xde\x7e\x19\x05\x85\x85\x70\ \x3a\x05\xaf\x71\x63\xc0\x39\x13\xaf\x9b\xf1\xde\x7b\xef\x05\xb4\ \x36\x21\xe0\x40\x90\xc0\xe9\x9e\x24\x62\x93\xa5\xf4\x74\x5a\xea\ \x4c\x44\x44\x44\xb8\x92\x24\xc0\x3c\xe2\x2a\x4c\x56\x4f\x33\x11\ \x0a\xab\x65\x07\x89\x8f\x97\xd6\xeb\x8c\x31\x65\xbd\xee\xd6\xce\ \xa4\xf4\xb6\x5b\x9d\xa1\x3f\x2e\x21\x85\x02\x6e\x4d\xbd\x35\xb1\ \x1e\x77\xb5\x53\xbf\x7a\xeb\xad\x90\x5b\xe0\x29\x3c\x3c\x1c\xd3\ \xa7\x4d\xc3\xa1\xc3\x87\xbd\xfa\x44\xc0\x38\x07\x73\x3e\x0f\x60\ \xcd\x55\x43\x80\x39\x0b\x16\xa4\x10\xa8\x04\x80\x5e\x0c\x71\x89\ \x89\xa3\x31\x33\x65\x86\x74\xe7\x35\x84\x55\x7d\x35\xdc\x7c\x31\ \xe4\xd4\x60\x3c\x10\xd8\x27\x59\x9b\x54\xda\x40\x55\x0a\x6f\xf7\ \x3e\x49\xe5\xd1\xa3\xa8\xa9\xad\x91\xea\xb3\x83\x13\x58\xf2\xfb\ \xef\xbf\x7f\xec\xaa\x20\x00\x47\xf4\x3a\x40\x7a\xb1\xde\x37\x99\ \x4c\x98\x9a\x94\x04\xc6\x04\x0f\x43\x87\x69\x86\x79\x6f\xa9\x56\ \x93\x68\x26\xa9\xb7\xdd\xe4\x49\x8c\x00\x62\x89\x95\x22\xb2\x58\ \xca\xc5\xc7\xf7\xb4\xbb\x5f\x8f\x89\x60\x9d\x89\x2d\x4a\x71\x0b\ \xc1\xe3\x7a\xee\x42\xc4\xc0\x40\xe4\x0a\x1b\x37\xb7\x34\xc3\x6a\ \xb5\x8a\xc7\x41\xc7\x78\xee\x97\x00\x7e\x7c\xc5\x11\x60\xee\xe2\ \xc5\x37\x42\x10\xbe\x92\x5a\x34\x91\x91\x9e\x81\xb8\xd8\x18\x45\ \xbd\xae\x65\x76\x4d\x4e\xaa\x49\x56\x6f\xab\xa1\x80\xb7\xb1\x29\ \xa7\xa9\x49\x41\x34\xa5\xbb\x42\xb2\xe2\xac\x14\xed\x14\xdf\x99\ \x48\xda\x36\x69\x69\x69\xc1\xa1\xc3\x87\x25\x50\x00\x00\xa3\x45\ \xef\xbf\xfb\xee\xee\x2b\xea\x06\x8e\x1b\x3f\xe1\x3d\x22\x4a\xec\ \x73\x53\x40\xe0\x88\x30\x3a\x21\x01\x63\x12\xc7\x88\x24\x58\xca\ \x7d\xeb\xf3\x7d\x3c\xdd\x31\x8f\xd0\x3f\x93\x74\xcf\x98\xc4\x06\ \x09\x77\xcd\xbd\x55\xca\x5d\xeb\x3b\x86\xc1\xb3\x0e\xf1\x2e\xcf\ \xe3\xc5\x6e\x60\xbf\x93\xea\x7e\x5b\xa9\xe3\xd5\xe7\x73\x24\xa6\ \x3f\x00\xe6\x42\x55\x9b\xcd\x86\xce\xae\x4e\x0f\xd7\x10\x20\x10\ \x87\x99\x49\x93\x26\xbf\x59\x59\x59\xc9\xae\x88\x0a\x98\xbf\x68\ \xd1\x2d\x0c\x34\x5b\x2c\xd5\x7a\xbd\x0e\xe3\xc7\x8f\x87\xd0\x03\ \xfd\xe2\xd9\x33\x12\xcd\xae\x31\x31\xf7\x8b\x61\xdd\x23\x7b\x52\ \x19\xc6\xa1\x60\x88\x89\x61\x5a\x0c\xfb\x04\x31\x0c\x7b\x1a\x6e\ \x4c\x49\x6f\x33\x77\xd8\x67\xa2\xe3\x25\xb0\x45\x3c\x63\xd8\x6f\ \xf9\xf5\xdf\x9f\x44\x6a\xa0\xe7\x4a\x63\xc6\x8c\x41\x63\x53\x13\ \x04\xc1\x29\xb6\xa5\x92\x8d\x61\xc6\xdb\x00\xfc\xfd\x8a\x30\x00\ \x71\xdc\xb3\xae\x07\xf5\x24\xf0\x98\xc4\x44\xe8\x75\x3a\x30\x41\ \x70\x0d\xb2\xca\x74\xa9\x18\xe6\xbd\xf4\xf8\x40\xe8\xed\x3e\x86\ \x20\x37\x02\x7a\xeb\x71\x25\x82\x4b\x29\x75\x26\x47\x40\xc6\xbc\ \xf4\xba\x9a\x1a\x70\xf5\xdb\xed\x9c\x9e\x8e\xe9\x74\x3a\x8c\x4e\ \x48\x40\xd5\xc5\x2a\x29\xd5\xfa\xa8\x3f\x0c\xe0\xb3\x0d\xb0\xf0\ \xe6\x9b\xf3\x18\xf0\x9d\xd8\x9a\x37\x1a\x4d\xc8\x48\x4f\x03\xcf\ \xf3\xbe\xe9\x75\x85\xa0\x4c\x50\xf4\xb6\x8c\x3f\x4e\xf2\x66\xbd\ \xb7\x5e\x57\xd3\xe3\x5e\x13\x46\xca\x91\x28\x92\x9d\x60\x92\x58\ \xa3\x28\xba\x31\x63\x02\x0e\x1d\x3e\x0c\x9b\xcd\xe6\x65\x5b\x11\ \xc7\xd2\xfe\xfc\x87\x3f\x1f\x18\x50\x04\x60\x1c\xb7\xaa\x1f\xaa\ \xfb\x1f\x60\x4c\xe2\x68\x17\x94\xba\x25\x76\x00\xde\x49\x11\xcc\ \x4b\x62\x55\xfc\x6f\x37\x3f\x99\x44\xb0\x2e\x0b\xfb\x24\x25\xb1\ \xca\xb0\x4e\x22\x7f\x5c\x56\xc2\xb5\xc0\xba\x08\xea\xc4\xc7\xbb\ \x50\x41\xe4\x0f\xf4\x74\x8e\x3c\x06\x89\x24\x65\x76\xd4\xc8\x51\ \x38\x7f\xe1\xbc\x17\x43\x31\xc6\x3d\x06\x60\xe9\x80\x21\xc0\xe2\ \xc5\x8b\x63\x04\x9e\xbf\x08\x20\xc4\xfd\xe6\x7a\xbd\x1e\xa9\x33\ \x67\x82\xe7\x38\x75\x89\x96\x32\x75\x65\xfc\x6f\xcd\xb3\x6d\xa4\ \x55\xc2\x21\x15\x56\x55\xf5\xc7\x83\x22\xe5\x24\x3f\x22\xf2\xa0\ \x28\x1d\xbd\x14\x18\x43\x45\x65\x05\x1c\x3d\xeb\x13\xdd\xee\x65\ \x73\xf2\xfa\x71\xef\xbe\xf9\x66\xed\x80\x20\x80\xc0\xf3\xf7\x00\ \x08\x11\x77\x6e\xc4\xf0\xe1\x20\x22\xc9\xc9\x14\x2f\x7f\xdc\x5d\ \xd2\x44\x7a\x9b\xc9\xe9\x6d\x19\x54\x20\x37\xa9\x67\x5e\x88\xe0\ \x1d\x75\xf3\x57\x8f\xcb\x59\xeb\xca\x92\xe4\xa9\xc7\x55\xe0\x09\ \xd2\xf0\xc4\xbc\x50\xb4\x77\x38\xe3\xe3\xe3\x51\x57\x57\x27\x66\ \x00\x03\xef\xb4\xdf\x03\xe0\xe5\x01\x61\x00\x22\x5a\x21\xe6\x6e\ \x9e\xe3\x10\x17\x17\x07\x26\x08\x6e\x04\x13\x4b\x15\xf3\x24\x20\ \x93\x82\x70\xb1\xb1\x26\x82\x7d\x72\x53\x21\x6e\xe9\x5d\x4a\x61\ \x56\x04\x02\xeb\x90\xb0\xcb\x3c\xc6\x82\x29\x83\xaa\x88\xe0\x0c\ \x12\x1e\x89\x24\xeb\x30\xaf\x23\xc0\x98\xc8\xb0\x04\x62\xcc\x31\ \x68\x68\x68\xe8\xcb\xa5\xec\x6d\xe7\x88\x96\xf8\xc2\x00\x9a\x55\ \xc0\xa2\xdb\x6e\x4b\x22\xc6\x8e\x8a\x03\x2e\x71\x31\x31\x18\xeb\ \x96\xc7\xaf\x0a\xdb\x8c\xe1\xd8\xd1\xa3\xa8\xaa\xaa\x42\x78\x78\ \x38\x92\x53\x52\x10\x19\x19\xa9\xc9\xbd\x13\x87\x55\xd5\x16\x7e\ \x78\xa0\x80\xc8\xbe\xf2\x96\x70\x95\x80\x8c\xac\xf1\xe6\x6d\xa0\ \x12\xa9\xcf\x65\x00\x40\x5b\x5b\x1b\x8e\x55\x1e\x45\x7b\x7b\x3b\ \x22\x22\x22\x90\x9d\x33\xab\x7f\xd2\x8a\xd4\x82\x62\x84\xea\x9a\ \x6a\xb4\xb6\xb6\x8a\x8d\x65\xc6\x09\x18\xf3\xd6\x5b\x6f\x5d\x0c\ \x2a\x02\x10\xd1\xad\x24\xa1\xc7\xa3\xa3\xa3\x21\x38\x9d\x9a\xf5\ \x76\xc5\x91\x23\xb8\x70\xee\x1c\x40\x40\x73\xb3\x0d\xdf\x7d\xfb\ \x2d\x92\x92\x92\x70\xdd\xf8\xf1\x2e\x35\xe2\x05\x99\x5a\x08\x2a\ \x6f\xad\x33\xd1\x20\x32\x95\x41\x55\x62\x02\xb5\xf7\x15\xb8\x5b\ \xb1\xe2\x98\x87\xfb\xb5\x18\x63\x38\x73\xfa\x34\x2a\x8e\x54\xc0\ \xd9\x23\xc1\x6d\x97\xdb\x60\x28\x2b\xc3\xcc\xd4\x54\x19\x1b\x82\ \x79\xc9\x52\x54\x64\x04\xda\xda\xda\xc4\xde\x0f\x11\x8f\x25\x00\ \xde\x08\x6a\x24\x70\xe2\xe4\xc9\xcf\x13\xd1\x75\x70\x4b\xf4\xd0\ \xeb\xf5\x18\x39\x72\x64\x7f\x92\x44\x6f\x84\x8f\x49\xc7\xbe\x4e\ \x1e\x3f\x8e\xb3\x67\xce\x20\xc4\x64\xc2\x6b\xaf\xbe\x8a\xf0\xb0\ \x30\x54\x56\x56\xa2\xe1\xd2\x25\x34\xb7\x34\x23\x26\x36\x06\x3a\ \x9e\xef\x8f\xd8\x79\xa6\xf3\x4a\x2a\x61\xc9\x88\x20\x06\x72\x35\ \x05\x93\x24\xb0\xbc\x75\xe0\x59\xba\xbb\xbb\x51\x54\x58\x84\xb3\ \x3d\xcb\xc4\x96\xfc\xe4\x3f\xb1\x72\xe5\x0a\x7c\xb3\xf7\x9b\x1e\ \x48\x67\x88\x8f\x8f\xf7\x9e\xbd\x94\xb8\x8d\x4e\xaf\xc7\xe5\xcb\ \x97\xfb\x62\x0d\x6e\x19\xc5\x21\x65\x25\xa5\x6f\x07\x8d\x01\x16\ \xde\x75\x57\x94\x4e\x70\xfe\x9a\x08\xbc\x7b\x76\x8a\xd9\x1c\xdd\ \xbf\x7e\x4f\xdc\x79\xd1\x03\x9f\x3f\x77\x1e\x27\x8e\x1d\x03\xc7\ \x71\x78\xe5\xe5\x97\x31\x67\xce\x1c\xcc\x99\x33\x07\x53\xa6\x4c\ \x41\x61\x51\x11\x9a\x9a\x9a\x50\x5d\x75\x11\xa1\xa1\xa1\x08\x77\ \x7b\xb3\x07\x24\xcc\x47\xb9\xb0\x2b\x49\xb2\x83\xb2\x5e\xf7\x88\ \xf2\x8a\x13\xc3\xdd\x42\xc3\x44\x6a\xe7\x7a\x87\xbe\xc5\xd7\xaa\ \xa9\xae\x41\xfe\xfe\xfd\xb8\x7c\xb9\x1d\x66\xb3\x19\xcf\x6f\xdf\ \x8e\x9f\xfd\xec\x67\x48\x4c\x4c\xc4\x84\x09\x13\xb0\x67\xcf\x97\ \x68\x6c\x68\x80\xc1\x60\x40\x8c\xd9\x2c\xee\xad\x67\x98\xba\x87\ \x33\x9c\x0e\x27\x2c\x3d\x93\x44\x7d\x29\xf8\x44\x89\x19\x69\xe9\ \xbf\x2d\x2d\x2d\xed\x0a\x0a\x03\x4c\xb9\xfe\xfa\xdb\x89\xe8\xa7\ \x1e\xa9\x49\x20\x0c\x1f\x36\x0c\x7a\xbd\x41\xd1\x42\x26\x00\x35\ \x35\x35\xa8\xe8\x99\xc8\x78\xee\xb9\xe7\x70\xd3\x4d\x37\xf5\xb5\ \x8f\x1d\x3b\x16\x3f\xfe\xf1\xad\x38\x7b\xf6\x2c\xce\x9e\x3b\x87\ \xda\xda\x5a\x74\x77\x77\x23\x26\x36\x16\x1c\xc7\xc9\x47\xfc\x7a\ \x7d\x66\x19\x8f\x43\x14\x0f\x94\x34\xe4\x5c\xd7\x60\x9a\xdc\x35\ \x05\xe7\xa6\x8f\x24\x24\xb3\x9a\xc9\xe1\x70\xe0\x60\x79\x39\x8e\ \x56\x1e\x85\xd3\x29\x20\x37\x37\x17\x3b\xde\x78\x03\x93\x27\x4f\ \xf6\x18\x87\x84\x84\x04\x7c\xf3\xcd\x37\xa8\xaf\xab\x47\x58\x58\ \x18\x22\xa3\x23\x65\x1d\xea\xde\x3d\x1c\x47\x68\xef\xe8\xe8\xa3\ \x49\x0f\x13\x70\x20\xfe\xdb\xd2\x92\x92\x93\x41\x61\x80\x49\x53\ \xa6\xac\x20\xa2\x59\xee\x8b\x16\x38\x8e\xc3\xb0\x61\xf1\x5e\x93\ \x30\xe2\xbc\xb8\x4b\xf5\x97\x70\xf8\x60\x39\x18\x63\x58\xfb\xf8\ \xe3\xb8\xf3\xce\x3b\xbd\xae\x1f\x1a\x12\x8a\x9b\x6f\xbe\x19\xb1\ \x31\x31\x28\x2e\x2e\x46\x73\x73\x33\x6a\x6b\x6b\x11\x19\x15\x0d\ \xa3\xd1\xd4\x97\x2f\xd7\x2b\x55\x1e\xf7\x12\x4f\x02\x89\xc4\xd3\ \x6b\xfa\x46\x94\x6f\xe8\x7e\x3e\x44\x39\x89\x62\x34\xf1\xea\x27\ \xbc\x11\x44\xdc\xde\xd2\xdc\x8c\xfc\xfd\xfb\xd1\xd8\xd0\x00\x53\ \x88\x09\x4f\xac\x7d\x02\x8f\x3f\xf6\x18\x42\x43\x43\xbd\xd5\xec\ \xf5\x13\x11\x1a\x1a\x8a\x82\x82\x02\xd4\xd5\xd5\x21\x2a\x32\x0a\ \xe1\xe1\xe1\x5e\x93\x51\x7d\x93\x4f\x8c\x81\xe7\x75\xb8\x7c\xb9\ \xcd\x43\x05\x70\xae\xed\x54\x49\x71\xc9\xde\xa0\x30\xc0\xe4\x29\ \x53\x36\x11\xd1\x38\x37\x88\x41\x58\x48\x08\xc2\x23\x22\xbc\x93\ \x2c\xdd\x06\xac\xad\xa5\x15\xe5\x65\x65\x70\x0a\x02\x96\xdd\xbf\ \x0c\x2b\x57\xae\x54\x32\x32\x31\x6d\xda\x34\x2c\x98\x3f\x1f\x07\ \x0f\x1d\x42\x6d\x4d\x0d\xaa\x2f\x5e\x04\x98\x00\xb3\xd9\xac\x49\ \xbf\x4a\xcf\xa6\x89\x96\xf4\x78\x48\xac\xb2\xba\xf0\x5a\x29\xa4\ \x41\xa5\xb8\x1b\x7a\xc7\x8f\x1d\x47\xf9\x81\x03\xb0\xd9\x6c\x48\ \x4a\x4a\xc2\x8e\x1d\x3b\x90\x3b\x7b\xb6\x62\x8c\x21\x39\x39\x19\ \x36\xbb\x0d\x07\xca\x0f\xa0\xae\xb6\x16\x71\xf1\x71\x08\x09\x09\ \x01\x93\x7c\x32\x17\x38\xd8\xac\x56\x38\x9d\x0e\xd1\xaa\x22\x58\ \x4b\x8a\x4a\xde\x0d\x0e\x03\x4c\x9d\xfa\x3a\x11\x99\x7a\xb9\x8c\ \x23\x42\x64\x64\x24\x8c\x06\x83\xac\xce\xed\xe8\x68\x47\x69\x49\ \x09\x9c\x4e\x27\xee\xbc\xf3\x4e\xac\x5f\xb7\x4e\x35\xb8\x02\x00\ \x66\xb3\x19\x77\xdc\x7e\xbb\x0b\x36\x0f\x1e\x44\x53\x53\x13\x9a\ \x9a\x1a\x61\x8e\x89\x91\x7c\x09\x94\xd7\xd4\xb0\x88\xe0\x8c\x89\ \xe1\x5e\x81\xe0\x52\x4b\xbf\xc4\x33\x77\xa2\x90\xae\x54\xe9\xea\ \xec\x44\x51\x61\x11\xaa\x2f\x5e\x04\x11\xe1\xde\x7b\x97\xe2\xb9\ \x67\x9f\x43\x6c\x6c\xac\x26\x33\x33\x33\x23\x13\x4d\x4d\xcd\xa8\ \xa8\xa8\x44\x4d\x75\x35\x86\x8f\x18\xee\x95\x54\xeb\x5e\x9c\x82\ \x00\x5b\xaf\x1d\xd0\x47\x23\xce\x5c\x5c\x54\xfc\x4a\xc0\x0c\x70\ \xeb\x92\x25\xe3\x79\xa2\x8d\xa2\xd4\x64\x84\x84\x98\x60\x32\x9a\ \x24\x63\xae\x0c\xc0\xe1\x83\x07\xd1\xd9\xd9\x89\x85\x0b\x17\x60\ \xfb\x73\xcf\x81\xe3\x38\xcd\x76\x36\xcf\xf3\x98\x95\x9d\x8d\xf4\ \x8c\x0c\x14\x15\x15\xa1\xb1\xb1\x11\xd5\xd5\xd5\x30\x18\x8d\x88\ \x88\x8c\xf0\x72\xbd\x48\xde\x0c\xf0\xf6\xbf\xc5\x41\x27\xb5\x04\ \x0d\x4d\xae\x61\x7f\xa9\xaa\xaa\x42\x71\x71\x09\x3a\xbb\xba\x30\ \x72\xc4\x08\xfc\xea\x97\xbf\xc2\x7f\xdc\x71\x87\xd7\x24\x99\x8a\ \xcb\x8d\xdc\xd9\xb3\x71\xfa\xf4\x29\x9c\x3e\x7d\x1a\xdd\xdd\xdd\ \x18\x9d\x98\x20\x3b\x59\x65\xb7\xd9\x61\xb3\x59\x45\x29\xe4\x08\ \xc9\x98\x95\xf1\x7e\x49\x61\x49\x93\xd2\xbd\x54\xa9\xc2\x13\xcd\ \x84\x0b\x55\x3c\x20\xa6\xb5\xb5\x15\xad\x6d\x6d\x10\x04\x06\x41\ \x60\x60\x02\x73\x45\x03\x05\x01\x8c\x09\xe8\xb6\xb8\x5e\x92\x74\ \xc7\xed\x77\xf8\x44\x7c\xf7\x92\x91\x9e\x8e\x9d\x1f\x7e\x88\xc5\ \x8b\x17\xc3\xe1\x70\xe0\xc8\xe1\xc3\x28\x2f\x2d\x83\xcd\x66\x05\ \x63\x82\xc4\xe6\xae\xc7\x5d\x75\xa1\x6f\x13\x20\x78\xe8\xf0\x9e\ \x73\xfa\x9e\xbd\x67\x63\xe2\xcd\xfb\x1e\xee\x9b\x20\x08\x10\x98\ \x00\xab\xd5\x86\x92\xe2\x12\x1c\x3c\x50\x0e\x87\xc3\x8e\xc5\x8b\ \x16\xe1\xfd\xbf\xbc\x8f\xb4\xb4\x34\xbf\xfa\xce\x71\x1c\x6e\xfb\ \xf1\x6d\x3d\x01\xa3\x56\x8f\x3e\xb9\x3f\x5b\x7b\x7b\x3b\x2e\xb7\ \x5f\x16\xad\xc5\x70\xd1\x88\x07\x3f\x3d\x60\x04\x98\x32\x75\xea\ \x12\x22\x9a\xef\x6e\xfd\xf7\xfe\xb6\x5a\xad\xb0\xdb\x1d\x2e\x78\ \x22\x91\xc3\xc2\x18\x9a\x9b\x9b\xf0\xd5\xd7\x5f\x23\x25\x39\x19\ \xa3\x47\x8f\xf6\x6b\x20\x8c\x46\x23\x6e\x5a\xb8\x10\x63\x12\x13\ \x51\x58\x58\x88\x96\x96\x16\xd4\xd4\xd4\x20\x3c\x22\x1c\xa6\x90\ \x50\x09\x43\xcc\xbd\xee\x9d\x75\xe4\x65\x24\x8a\x0d\x45\xe6\xb1\ \x0c\xc5\xad\x0e\x91\x21\xd8\x6f\xf2\x34\x36\x36\xa2\xa8\xa0\x08\ \xad\x2d\xad\x88\x08\x0f\xc7\x53\x4f\x3e\x85\x07\x1f\x7c\x50\x11\ \xb6\xd5\x4a\x51\x51\x11\x36\x6c\xdc\x00\x87\xc3\x89\x09\x13\x26\ \x20\x26\x36\xd6\x43\x7b\x09\x82\x80\xcb\x6d\x97\xd1\xd5\xdd\xed\ \x41\x13\xd1\x4a\xec\xfc\xa2\x82\xa2\x82\x80\x18\x60\xea\xb4\x69\ \x77\x81\x28\xcb\xdd\x00\x74\x5f\xfd\xe3\x70\x38\xd1\x6d\xe9\x86\ \x41\xaf\xef\x91\x74\x57\xe2\x47\x54\x54\x14\xec\x36\x3b\x5a\x9a\ \x9b\xb1\x7b\xf7\x6e\xa4\xce\x9c\x89\x84\x84\x04\xbf\x07\x64\xd2\ \xa4\x49\xb8\xe5\x96\x5b\x70\xf4\x68\x25\x2e\x56\x55\xa1\xb6\xb6\ \x16\x0e\x87\x03\xd1\x66\xb3\x57\x9c\x5c\x29\x86\x2f\xa7\xb7\x95\ \x63\xe5\x4c\xc2\x04\x75\x49\xff\xb1\x63\xc7\x50\x71\xa4\x02\x0e\ \x87\x1d\xa9\xa9\x69\xf8\xed\x6f\x7f\xeb\xb7\xd4\xf7\x96\xd2\xd2\ \x52\x3c\xb6\xf6\x71\x58\x2d\x16\x8c\xbb\x6e\x1c\xa6\x4c\x49\xf2\ \x68\x77\xd8\x1d\x68\xbd\xdc\x06\x87\xc3\xde\x43\x13\xf1\xea\xa1\ \x5e\x1a\xa1\xa2\xa8\xa0\xe8\x8b\xc0\x10\x60\xfa\xf4\x65\x44\x34\ \x15\xa2\x18\x80\x3b\xc7\x31\xc6\x60\xb5\x5a\xc1\x04\xa1\x27\x2e\ \xe0\xf2\x89\x63\xe3\x62\x61\xb5\x5a\xd1\xda\xd2\x8c\xcf\xbf\xf8\ \x02\x19\xe9\xe9\xae\xc8\xa1\x9f\x25\x22\x22\x02\xb7\xdf\x76\x3b\ \x0c\x7a\x03\xca\xca\x4a\xd1\xd2\xdc\x8c\x86\x4b\x0d\x30\xc7\x44\ \xf7\xbc\xf7\x97\xa9\x1b\x05\x12\x75\x92\x9d\xc2\x96\xb7\x08\xda\ \x3b\xda\x51\x52\x5c\x8c\x4b\xf5\xf5\xd0\xe9\x74\x58\xbd\x7a\x35\ \xb6\x3d\xb5\xcd\x63\x5e\xc3\x9f\x72\xe0\xc0\x01\xac\x79\xe4\x11\ \x58\xac\x16\x8c\x1d\x33\x06\xc9\xc9\xc9\xe8\x13\x6b\x30\x74\x75\ \x75\xa2\xb3\xb3\xc3\xc5\xc8\x12\xb0\xef\xee\x0a\x12\x51\x55\x61\ \x7e\xe1\x47\x81\x31\x40\x72\xf2\x43\x04\x8c\xf3\x8c\x34\xa1\xf7\ \x06\x1e\x9b\xdd\xe1\x80\xd5\x6a\x05\xcf\x71\xe0\x78\x1e\x0c\x40\ \x6c\x5c\x1c\x2c\x16\x0b\x5a\x5b\x5b\xf0\xc5\xee\xdd\xc8\xcc\xc8\ \xc0\x88\x11\x23\xfc\x1e\x20\x22\x42\x5a\x5a\x1a\x72\x73\xf3\x50\ \x52\x52\x82\x4b\x97\x2e\xa1\xa6\xba\x1a\x3c\xcf\x23\x2a\x2a\x4a\ \x5b\x30\xd7\x2b\xcc\xaa\x12\x39\x14\x05\x38\xcf\x9d\x3b\x87\xf2\ \xf2\x72\x58\x2d\x16\x8c\x1d\x3b\x16\x3b\xde\xd8\x81\xc5\x8b\x17\ \x6b\xf2\x72\x94\xca\xc1\x43\x07\xb1\xe6\x91\x35\x2e\xa3\x6f\x4c\ \x22\x52\x66\xa4\xf4\x11\xde\x6e\xb7\xa3\xbd\xa3\x03\x76\xbb\xbd\ \xef\xb9\x3d\x03\x73\x9e\x34\xe9\x61\xd7\xb6\x82\xfc\x82\x3f\x06\ \xc4\x00\xd3\x92\xa7\x6d\x22\x20\x4e\x8a\xe0\x52\x1b\x63\x0c\x56\ \x9b\x0d\x0e\x87\x03\x1c\xc7\x81\x23\x42\x6c\x6c\x2c\x2c\x16\x0b\ \x5a\x9a\x9b\xf1\xc5\xee\xdd\xc8\xce\xce\xc6\xf0\xe1\xc3\x03\x1a\ \xac\x61\xc3\x86\xe1\x3f\x7f\xf2\x13\xb4\xb4\xb6\xe2\x48\xc5\x11\ \x34\x35\x36\xa1\xb5\xad\x15\xe6\x98\x18\x97\xc5\xed\xe6\xf1\x31\ \xcf\x15\xa4\x3d\xb9\x89\xfd\x36\x80\x7b\x76\x30\x13\x2d\xee\x74\ \xb7\x10\x2c\x56\x0b\xca\xcb\x0e\xe0\xc2\xf9\x0b\x60\x8c\xe1\xce\ \x25\x77\xe2\xd5\x5f\xbd\x8a\x51\xa3\x46\x05\x3c\xc3\x70\xa4\xa2\ \x02\x0f\x3f\xfc\x30\xba\x3a\x3b\x91\x30\x3a\x01\x29\x29\xc9\x7d\ \xa1\xde\xae\xae\x2e\x58\x2c\xdd\xae\xc9\x65\x6f\x29\x97\xdf\x78\ \x38\x0a\xf6\x17\xec\x08\x90\x01\x92\x9f\x21\xa2\x10\x88\x6e\xae\ \x56\x17\x04\x01\x36\x9b\x15\x4e\xa7\x00\x9e\xe7\x11\x17\x17\x87\ \xee\xee\x6e\xb4\xb4\xb4\xe0\xf3\xcf\x3f\x47\xce\xec\xd9\x18\x16\ \x1f\x1f\xd0\xa0\xe9\x74\x3a\xcc\x9d\x3b\x17\x53\xa6\x4c\x41\x41\ \x61\x81\x2b\x82\x58\x53\x83\xd0\xd0\x10\x84\x85\x85\x49\xe8\x71\ \x35\xfd\x2f\x3f\xb1\x73\xa9\xee\x12\x4a\x4b\x4a\xd1\xd1\xd1\x81\ \x18\xb3\x19\x2f\xbd\xf8\x22\xee\xbd\xe7\x5e\xd7\xdb\x4b\x03\x2c\ \x47\x8f\x1e\xc5\xea\xd5\x0f\xa2\xa3\xa3\x03\xa3\x46\x8d\x42\xca\ \x8c\x14\x08\x4c\x80\xc5\x62\x85\xc5\x6a\x81\xc0\x04\x6d\x04\xf7\ \xb6\x07\xac\xf9\xfb\x0b\x7e\x15\x90\x1b\x48\x44\x3c\x69\x94\x7e\ \x29\x63\xc4\xe1\x70\xa0\xa3\xa3\x03\x16\x4b\x37\x26\x4e\x9e\x84\ \xf8\xf8\x78\xb4\x77\x74\x60\xc5\xca\x15\x38\x76\x2c\x38\xef\x39\ \xb8\x71\xde\x3c\x7c\xfc\xd1\x2e\xe4\xe5\xe5\xc1\x6e\xb7\xe3\xf0\ \xc1\x43\x38\x5a\x59\x01\xa7\xd3\x0e\x8f\x65\xe5\xe2\xf7\x07\x89\ \x97\x78\xc3\x3b\x6f\xc4\xe9\x74\xa0\xe2\xc8\x11\x94\x97\x97\xc3\ \x6e\xb7\x63\x4e\x6e\x1e\x76\xee\xdc\x89\x79\x73\xe7\x05\xe5\xd9\ \x8f\x1f\x3f\x8e\x9f\xff\xfc\xe7\xe8\xe8\xe8\xc0\x88\x91\x23\x31\ \x2d\x79\x3a\x2c\x56\x0b\xba\xba\xba\x3c\xa2\x7b\xf2\x42\x27\x5a\ \x23\xe0\xd1\x4e\x21\x01\xbb\x81\xd3\x53\x52\x36\x11\x91\x49\x23\ \xc7\xf5\xd5\x39\xce\xb3\xce\x18\x83\xc3\xe1\x80\xd9\x6c\x46\x77\ \x77\x37\x5a\x5b\x5a\xb0\xfb\xcb\x2f\x91\x97\x9b\xa7\x39\x42\xa6\ \x54\x42\x43\x43\x71\xeb\x8f\x7e\x04\xb3\x39\x06\x45\x45\x45\x68\ \x69\x69\xc5\xa5\xfa\x7a\x44\x46\x46\xc1\x68\x34\x2a\x66\xbe\x78\ \xc7\xfb\x58\x5f\xc2\x46\x59\x49\x19\x9a\x9b\x9a\x61\x34\x1a\xb1\ \x61\xfd\x7a\xac\x5f\xbf\x1e\x61\xa1\x61\x41\x21\xfe\xc9\x93\x27\ \xb1\x6a\xf5\x2a\xb4\xb6\xb6\x22\x3e\x3e\x1e\x49\x53\x93\xe0\x74\ \x3a\x5c\xd3\xbb\x12\x04\x97\x13\x32\x85\xcd\x9a\xff\x7d\xfe\x4b\ \x81\x22\x80\x26\x8e\xeb\x27\xb8\xf4\xd6\x7b\x2c\x03\xc3\x75\xe3\ \xc7\x23\x3c\x22\x02\x8d\x0d\x8d\xb8\xff\x81\x65\x38\x75\xea\x54\ \x50\x06\x94\x88\xf0\xb3\x9f\xfe\x14\x7f\xfd\xe0\x03\x24\x25\x4d\ \x46\x57\x57\x17\x8a\x8b\x8b\x71\xe6\xf4\x19\x38\x05\x41\x39\x20\ \xe4\xbe\x4f\x10\x70\xfa\xd4\x69\x14\x17\x16\xa1\xab\xab\x0b\x93\ \x27\x4f\xc6\x07\xef\x7f\x80\x9f\xfe\x8f\x9f\x06\x6c\xe8\xf5\x96\ \xd3\xa7\x4f\x63\xc5\xaa\x15\x68\x6e\x6a\x46\xb4\x39\x1a\x49\x53\ \x93\x14\x08\x0e\x15\x26\x90\x11\x42\x0d\xcf\xaa\xce\x00\x9c\x3c\ \xc7\xb9\x13\x5d\x02\x7e\x64\x3b\xc1\xf1\x1c\x26\x27\x4d\x46\x94\ \x39\x1a\x8d\x8d\x8d\x58\x7a\xdf\x52\xb7\xf7\xe8\x06\x5e\x26\x4c\ \x98\x80\xf7\xde\x7d\x0f\x4b\x97\xde\x07\x22\xc2\x99\x33\x67\x50\ \x56\x52\x8a\xae\xce\x2e\xcf\x88\x9a\x20\x9a\xbd\x14\x18\xba\xba\ \xba\x50\x52\x5c\x82\x33\xa7\x4f\x83\x40\xb8\xef\xde\xa5\x78\xf7\ \x9d\x77\x31\x7e\xfc\xf8\xa0\x3d\xdf\xd9\xb3\x67\xb1\x7c\xc5\x72\ \x34\x35\x35\x21\x26\x36\x06\x29\x33\x52\xc0\xf3\xbc\xe4\x58\x29\ \x8f\xab\x48\x08\x3d\xa7\x84\x35\x25\xfc\x71\xea\x07\x50\xb7\x1c\ \xac\x2b\x73\xa0\x32\x54\x71\x3c\x8f\xa4\x29\x49\x88\x8e\x8e\x46\ \x63\x53\x13\x96\xde\x7f\x1f\xce\x9f\x3f\x1f\xb4\x41\x36\x18\x0c\ \x58\xf7\xc4\x13\x78\xeb\xcd\xdf\x63\xc4\x88\x11\x68\x6d\x6b\x43\ \x71\x61\x11\xea\x6a\x6b\xa5\xd6\xed\x02\x60\xa8\xad\xad\x45\x51\ \x41\x21\xda\x5a\xdb\x30\x62\xc4\x08\xbc\xf9\xe6\x9b\x58\xbb\x76\ \x6d\xdf\xb7\x85\x82\x51\xce\x5f\x38\xdf\x47\xfc\xd8\xd8\xd8\x1e\ \xe2\x73\xb2\x04\x56\xdb\x38\xf2\x24\xb8\xa8\xdd\x11\x30\x03\x80\ \xa8\xcb\x5f\x03\x50\xcd\x53\xe0\x38\x0e\x53\xa6\x4d\x45\x74\x74\ \x34\x1a\x2e\x35\x60\xe9\x7d\xf7\xe1\x42\xd5\x05\x04\xb3\x64\x65\ \x65\xe1\xe3\x8f\x76\x61\xf1\xa2\x45\x70\x38\x9c\xa8\xac\x38\x8a\ \x43\x87\x5c\x2b\x6b\x7a\x21\xdf\x6a\xb3\xe1\xf0\xc1\xc3\xa8\x3c\ \xe2\xca\xb5\x5f\xb4\x68\x11\x3e\xda\xf9\x11\xb2\x32\xb3\x82\xfa\ \x2c\x55\x55\x55\x58\xbe\x7c\x39\x1a\x1a\x1a\x10\x13\x1b\x83\x19\ \x33\x67\xb8\x49\x3e\x69\x86\x75\x55\x21\xeb\x67\xa2\xc6\x80\x8d\ \xc0\x19\xa9\x33\xef\x26\xa2\x31\x52\xb0\xae\x46\x60\x2d\xdc\xcb\ \x71\x84\xb8\xf8\x78\xb4\x5f\xbe\x8c\xe6\xa6\x26\xec\xd9\xb3\x07\ \x0b\x17\x2e\x0c\x38\xa2\x26\x9e\x4f\x58\xbc\x68\x31\x12\x12\x12\ \x50\x54\x54\x88\xd6\x96\x16\xd4\xd7\xd7\x23\x3c\x3c\x1c\xdd\xdd\ \xdd\x38\x78\xe0\x20\x2e\x5f\xbe\x8c\xf0\xf0\x70\x6c\xdb\xb6\x0d\ \x8f\xac\x79\x24\xa0\x38\xbe\x54\xa9\xa9\xa9\xc1\x03\xcb\x1f\x40\ \x5d\x5d\x1d\x62\x62\xcc\x98\x99\x36\xd3\xf5\xa2\x4c\x09\x82\x2b\ \xc1\xba\x77\x24\x96\x44\xf9\x80\x6e\x34\xe0\xb8\x8a\x7d\xdf\xee\ \x7b\x3b\x40\x23\x90\xbb\xa8\x15\xd6\xb5\xc1\x95\xf7\x75\x78\x9e\ \xc3\xd4\xe9\xd3\x10\x19\x15\x85\xda\xda\x5a\x2c\xbd\x7f\xa9\xeb\ \xad\x99\x41\x2e\x77\xdc\x71\x07\x76\xed\xda\x85\x99\xa9\xa9\xb0\ \x5a\xac\x28\x2f\x3b\x80\xf2\xb2\x03\xb0\x5a\x2c\x98\x39\x73\x26\ \x3e\xfa\xe8\x23\xdc\x71\xfb\x1d\x41\xbf\x6f\x6d\x6d\x2d\x1e\x58\ \xbe\x0c\x75\x75\x75\x30\x9b\xcd\x98\x99\x96\xea\x41\x7c\x31\xec\ \x2b\xc1\xba\x5a\xdd\x93\x31\x58\x43\xe0\x36\x00\xd1\x45\x5f\x88\ \xec\x8e\x02\x5c\x4f\x88\xd2\x83\xe0\x32\xdc\xab\xd3\xe9\x30\x2d\ \x79\x3a\x22\x23\x23\x51\x5d\x5d\x83\xfb\xee\xbf\x0f\x75\xf5\xf5\ \x41\x27\x46\xc2\xa8\x04\xfc\xf9\xed\x3f\x61\xcd\xc3\x6b\xc0\xf3\ \x3c\x78\x9e\xc7\x9a\x35\x6b\xf0\xa7\xb7\xff\x84\x84\x51\x09\x41\ \xbf\x5f\x7d\x7d\x3d\x56\xac\x5c\x81\x9a\x9a\x5a\x44\x45\x47\x21\ \x35\x3d\x55\x24\xf9\x1a\x61\x5d\x6d\x93\x98\x11\x04\x71\x75\xaa\ \xc1\x34\xb5\x03\x04\xb0\x8b\x9c\xca\xfb\x78\x48\xe1\x0d\x5b\xda\ \xeb\xae\xc8\xde\xf4\x94\x64\x1c\x39\x7c\x18\x55\x55\x55\xb8\xff\ \xfe\xfb\xf0\xa7\xb7\xff\x84\x61\xc3\x86\x05\x95\x28\x1c\xc7\x61\ \xd5\xaa\x55\x98\x9d\x3b\x1b\x00\x90\x3c\x3d\x19\x03\x51\x1a\x1a\ \x1a\xb0\x7c\xc5\x72\x54\x55\x55\x21\x2a\x3a\x12\xe9\x19\x69\xd0\ \xe9\xf4\x12\x6b\x5e\x34\x7f\x72\x4e\xa6\xee\x3d\xc9\xd5\x03\x1e\ \xf5\x81\x23\x00\xb8\x2a\x7f\x60\xdd\xa7\x3a\x3c\xd7\x1a\x24\xa7\ \xa4\x20\x3c\x22\x02\x17\x2e\x5c\xc0\xb2\x07\x96\xa1\xa9\xa9\x69\ \x40\x08\x94\x3c\x3d\x79\xc0\x88\xdf\xd4\xd4\x84\x15\x2b\x57\xe0\ \x42\xd5\x05\x44\x45\x45\x22\x3d\x3d\x1d\x7a\xbd\x5e\x52\x8f\xfb\ \x0a\xf3\x52\x09\x3a\x92\x88\xc2\xf3\x95\x01\x33\x00\x0f\x1c\x51\ \x25\x38\x94\xe0\x48\xa9\xee\xa9\xe3\x38\x37\x26\x98\x31\x33\x05\ \xe1\xe1\xe1\x38\x7b\xf6\x2c\x96\x3d\xb0\x0c\xcd\x2d\xd7\xcc\x07\ \xb9\xd1\xd2\xd2\x82\x95\xab\x56\xe0\xdc\xb9\xb3\x88\x8c\x8c\x44\ \x7a\x66\x3a\x0c\x06\x83\x36\xbd\xed\x83\x97\xe5\x45\x70\x91\x11\ \xae\x83\xa3\x5c\x5b\xbe\x83\xca\x31\xcb\x56\x3c\xd0\x08\x42\x8c\ \xdc\x2b\xd4\x7c\x81\xf9\x3e\x08\x53\x5b\xea\x45\xae\x5c\xb7\x43\ \xe5\x07\xd1\xd1\xd9\x89\x49\x93\x26\xe1\x8f\x6f\xfd\xc1\x2d\x43\ \x78\x70\x96\xd6\xd6\x56\xac\x5c\xb9\x02\x27\x4e\x9e\x44\x44\x44\ \x38\x32\xb2\x32\x5c\xc4\x0f\xe2\x17\xca\x95\xbf\x55\xdc\x57\x6f\ \x7d\xf6\xe9\xed\xe6\x80\x11\x00\x00\x23\xe2\x4a\xa4\xe1\xc6\xf7\ \x80\x10\xe7\x03\x4a\x18\x8c\x06\xcc\x4c\x9d\x89\xb0\xb0\x30\x9c\ \x3c\x71\x02\x2b\x56\xae\x40\x5b\x5b\xdb\xa0\x25\x7e\x5b\x5b\x1b\ \x56\x3d\xb8\x0a\x27\x4e\x9e\x44\x78\x78\x38\x32\xb3\x32\x5d\xf3\ \x10\x6a\xee\x9a\x0a\xac\xab\xcd\x02\x8a\x69\x02\x02\x88\xa3\x72\ \x2d\xcf\xac\x29\x5b\x93\x23\x14\xc8\xeb\x6d\x6f\x58\xf7\x4c\x4f\ \x96\xb1\x52\x35\x32\x92\xc1\x68\x40\x6a\xda\x4c\x84\x86\x86\xe2\ \xd8\xf1\xe3\x58\xb9\x6a\x65\xdf\x57\xb7\x06\x53\xe9\xe8\xe8\xc0\ \xea\xd5\xab\x71\xe2\xc4\x71\x84\x85\x87\x21\x33\xdb\x93\xf8\xd2\ \xb0\xaf\x01\xd6\x25\x74\x3c\x44\x89\x20\x92\x74\x01\x17\x3c\x06\ \x20\x8e\x8a\x44\x8b\x0f\xbd\x39\xce\xcb\x46\x90\xee\xa8\x62\x67\ \x3c\xea\xe8\xab\x1b\x8d\x46\xa4\xa6\xa7\x22\x34\x34\x04\x95\x95\ \x95\x58\xb9\x72\x70\x31\x41\x47\x47\x07\x56\xff\xfc\x41\x1c\x3d\ \x76\x14\xa1\x61\x61\xc8\xca\xce\x82\xc9\x64\x94\x26\x38\xbc\x33\ \x79\x94\xf4\xb8\x74\x5d\x83\x0d\xc1\xb1\xfd\x41\x63\x00\x38\x51\ \x48\x44\x4e\x55\x58\xd7\x40\x60\x35\xdf\x55\xae\xf3\x26\x93\x09\ \x69\x69\x69\x08\x09\x0d\xc1\xe1\x8a\xc3\x58\xfd\xd0\x6a\x74\x76\ \x76\x5e\x75\xe2\x77\x76\x76\xe2\xe1\x35\x0f\xe3\xc8\x91\x0a\x84\ \x86\x86\x20\x3b\x3b\x0b\x21\x21\x26\xf9\x3e\x69\xcd\xe6\x51\x0b\ \xb3\x2b\x78\x0a\x1c\x71\x76\xa3\xce\xfa\x85\x26\xe1\xd6\xda\xd1\ \x07\x7f\xfe\xe0\x5e\x06\xcc\x95\x7a\x33\xa6\x7f\x75\x6d\x46\x8d\ \x38\xe6\x60\xb5\x58\x51\x5a\x5a\x0a\x4b\xb7\x05\x69\x69\x69\xf8\ \xdd\xff\xfe\x1d\x4c\x26\xd3\x55\x21\xbe\xc5\x62\xc1\x43\x0f\x3d\ \x84\xb2\xf2\x32\x84\x84\x84\x20\x7b\x56\x16\x42\x43\x42\x24\xdf\ \x60\x2a\xee\xa3\xb2\xa1\xa7\x62\x28\xf6\x8d\xa3\xec\xbb\x0a\xbe\ \xde\xf6\xe4\xd3\xf3\x83\x87\x00\x00\x18\xc7\xfe\xe6\xb7\x9f\x2f\ \x42\x0e\x0d\xd9\xac\xb2\x9b\x29\xc4\x84\xf4\x8c\x34\x98\x4c\x26\ \x94\x95\x95\xe1\xa1\x87\x1e\x82\xc5\x62\xb9\x2a\xc4\x5f\xf3\xc8\ \x1a\x1c\x28\x2f\x43\x88\xc9\x84\xec\x59\xd9\x08\x0d\x0d\xd5\x86\ \x8c\x6a\xb0\xae\x66\x20\xcb\x8e\x53\xdf\x75\xfe\xa5\x39\x28\xa6\ \x79\x7a\x95\x0c\xbb\x88\x88\xf9\xab\xc7\x95\x3a\xcf\xf9\x90\xf6\ \x44\x44\x08\x0d\x0d\x45\x7a\x66\x3a\x4c\x21\x26\x94\x94\x96\xe0\ \xd1\x47\x1f\xbd\xa2\x4c\x60\xb1\x58\xf0\xf8\xda\xc7\x50\x5a\x5a\ \x02\x53\x0f\xf1\xc3\xc2\x42\xb5\xeb\x71\xdf\x33\x7b\x14\x6c\x2b\ \xef\xeb\xf0\xc4\x34\x33\x80\x4f\xe9\x2d\x0f\xad\x79\xa8\x90\x01\ \x59\xc1\x86\x75\xb5\x57\xaa\xc9\x7d\x2b\xa0\xab\xb3\x1b\x25\xc5\ \x25\xb0\xda\xac\x98\x3d\x7b\x36\xde\x78\xed\x8d\xa0\xce\xdd\x4b\ \x15\x9b\xcd\x86\xc7\xd7\x3e\x8e\xfc\xfc\x7c\x98\x4c\x46\xcc\xca\ \xc9\x76\x25\xa0\xaa\xfa\xe7\xbe\x85\x79\xa5\xde\x29\x24\xff\xcd\ \x04\x37\x41\x01\x2a\xb6\x6c\xde\x36\x3d\xe8\x08\xd0\x43\xa8\x5d\ \xbe\x26\x7e\xf8\x99\xcd\xaa\x29\x2b\x26\x2c\x3c\x0c\x99\x99\x19\ \x30\x1a\x0c\xc8\xdf\xbf\x1f\x6b\x9f\x58\xdb\x97\x37\x3f\x10\xc5\ \x6e\xb7\x63\xdd\xba\x75\x28\xc8\xcf\x87\xd1\x68\x40\x76\x4e\x36\ \xc2\xc3\xc3\x35\x79\x47\x5a\xe2\x1e\x9c\x64\xa6\x8f\x6f\x61\x76\ \x46\xf4\x7b\x9f\xe6\x45\x7c\x39\x58\xc7\xe9\xde\x21\x82\xcd\x57\ \x3d\xae\x06\xeb\x6a\x69\x4f\x4a\x59\x30\x61\x11\x61\xc8\xcc\xca\ \x84\xc1\x68\xc4\xbe\x7d\xfb\xb0\x7e\xc3\xfa\x01\x61\x02\xbb\xdd\ \x8e\x4d\x9b\x36\xe2\xfb\xfd\xfb\x60\x30\x1a\x30\x2b\x27\x1b\x11\ \x11\x11\xda\xf5\x38\xf9\xac\xc7\xfd\xd9\xba\x43\x0c\xce\x77\x7c\ \xe9\x97\x4f\xaf\x8b\x2f\x28\x28\xe8\xc8\xce\xc9\x9e\x48\xc0\x0c\ \x5f\xf4\xb8\x3f\x3a\xcf\x97\x2c\x18\xa3\xd1\x88\xb8\xf8\x38\xd4\ \xd7\xd7\xe3\xcc\x99\xd3\x38\x73\xf6\x2c\x16\x2c\x58\xe0\xf7\xaa\ \x64\x2f\x2f\xd8\xe9\xc4\x96\x2d\x9b\xf1\xf5\xde\xbd\x30\x18\x5c\ \xc4\x8f\x8c\x8c\xd4\xd4\x27\x6d\x31\x12\x28\x26\xd2\x6a\xca\x07\ \x74\xa5\xeb\xfd\x75\xfd\xba\x6d\x7f\x19\x30\x04\xe8\x39\xe3\xf5\ \x60\xc0\xba\x6a\xda\x93\x0f\x59\x30\x44\x84\xc8\x88\x48\x64\x66\ \x65\x40\xaf\xd7\x63\xcf\x9e\x3d\xd8\xb2\x65\x8b\xc7\x07\xa9\xfd\ \x2d\x82\x20\x60\xeb\x93\x5b\xb1\xe7\xab\xaf\xa0\x37\xe8\x30\x2b\ \x27\x1b\x51\x51\x51\xda\x66\xee\x14\x61\x5d\x4b\x22\xad\x72\xdd\ \x33\x29\x17\x80\xc0\xfe\x8f\xaf\xfd\xf3\xf9\x83\x11\x45\xf9\x45\ \x75\xb3\x72\x66\xcd\x23\x8e\xc6\x29\x11\x3c\xd0\x6c\x56\xdf\xa7\ \x47\x5d\xc1\xa2\xd8\xb8\x58\xd4\xd5\xd6\xe1\xd4\xa9\x93\xb8\x50\ \x75\x01\x37\xde\x38\xdf\xef\x54\x6e\x41\x10\xf0\xd4\xb6\xa7\xb0\ \x7b\xf7\x17\xd0\xeb\x75\xc8\xc9\x99\x85\x28\x73\x94\x66\x3d\x1e\ \x98\x30\x28\x67\x61\x4b\xf4\xa9\x64\xd3\xc6\x27\x9f\xf2\x5d\x9e\ \xfd\x49\xa8\xe0\xb9\x1d\x6a\x7a\x3c\xc0\x6c\x56\xff\xd4\x05\x5c\ \x2f\xae\xcc\xcc\xca\x84\x5e\xa7\xc7\x67\x9f\x7d\x86\x67\x9e\x79\ \xc6\x2f\x24\x10\x04\x01\xcf\x3e\xf7\x0c\x3e\xff\xfc\x33\xe8\xf5\ \x7a\xcc\xca\xc9\x46\xb4\x39\x7a\xc0\xf5\xb8\xd2\x5a\x0b\x15\x4a\ \x6e\xf3\x87\x96\x7e\x7d\x32\x26\x31\x21\xf1\x64\x94\x39\xea\x27\ \x44\x34\x7c\x80\xb2\x59\x35\xd4\x3d\xc3\xac\xee\x46\x68\x68\x48\ \x08\x62\x62\x63\x50\x5b\x5b\x87\xe3\xc7\x8f\xe1\x52\x7d\x3d\x6e\ \xb8\x61\xae\x66\x24\x60\x8c\x61\xfb\xf3\xdb\xf1\xc9\x27\x9f\x40\ \xa7\xd3\x21\x3b\x27\x1b\xb1\x31\x31\x9a\xf4\xb8\x2f\xc8\x27\x05\ \xfb\x5e\xb0\xae\xcd\x99\xdf\xbf\x69\xfd\xd6\xcd\x57\x8c\x01\x2a\ \x2b\x2b\x59\x6e\x5e\xee\x29\x22\xdc\x33\x20\xd9\xac\x81\x64\xc1\ \xf4\xb4\xf5\x31\x41\x4d\x1d\x8e\x1e\x3b\x86\xc6\xa6\x46\xcc\xc9\ \x9b\xa3\xfe\x16\x70\xc6\xf0\xe2\x8b\x2f\xe0\x1f\xff\xf8\x07\x74\ \xbc\x8b\xf8\x71\x71\x31\x1a\xf5\xb8\xef\x36\x8f\x4f\x52\x2e\x47\ \x7f\x86\xa5\x5f\x7e\xf9\xd5\xb9\x2b\xc6\x00\x00\x90\xff\x7d\xfe\ \x99\xd9\xb9\xb3\x33\x89\x68\x52\xd0\xb3\x59\x03\xc8\x82\x71\xaf\ \x87\x86\x86\x22\xc6\x6c\x46\x6d\x5d\x1d\x8e\x56\x56\xa2\xad\xad\ \x0d\xb3\x15\x5e\xd3\xc6\x18\xc3\x2f\x7f\xf9\x0a\x76\x7d\xbc\x0b\ \xbc\x8e\x47\x76\x4e\x16\xe2\xe2\xe2\x7c\xd0\xe3\x14\xa8\x1e\xf7\ \xa7\x7c\xbd\x69\xe3\xd6\x67\xfc\x3d\x39\x30\x3f\x89\xc7\x3a\x22\ \x72\x04\x3b\x9b\xd5\xa7\xe9\x52\x15\xc6\x89\x8b\x8f\x43\x56\x56\ \x06\x78\x9e\xc7\x87\x1f\xfe\x15\xaf\xbd\xf6\xaa\x6c\x77\x5e\x7b\ \xfd\x35\x7c\xb8\xf3\x43\xf0\x3c\x8f\xec\x59\x99\x88\x8f\x8f\xf3\ \x59\x6f\xbf\x98\x79\xce\x00\x00\x05\xc8\x49\x44\x41\x54\x07\xa4\ \xc7\xfd\x08\x4f\xf0\x84\xc7\x02\x23\x61\x00\x25\x7f\x5f\x7e\x63\ \x5e\xde\xec\x61\xd4\xf7\x0e\x21\xdf\xf4\x78\x20\x59\x30\xa4\x14\ \x75\x13\x21\x4c\x58\x78\x18\xa2\xa2\xa3\x51\x57\x53\x87\xc3\x87\ \x0f\xa3\xab\xab\x13\xb3\x66\xe5\x78\xf4\xe5\xf5\xd7\x5f\xc3\x5f\ \xde\xff\x0b\x38\xce\x45\xfc\xe1\xc3\x87\xf9\xb0\xee\x31\x08\x7a\ \xdc\x8f\xc2\x18\x5e\xda\xb8\x61\xeb\xfb\x57\x8d\x01\x00\xe0\xa6\ \x85\xe9\xdf\x3b\x04\xfd\xcf\x88\x28\xda\x57\x3d\xee\x77\x16\x8c\ \x1f\x61\xd6\x88\xf0\x30\x44\x45\xbb\x16\x9e\x1c\x3a\x74\x08\x76\ \x9b\x0d\x59\x59\xae\xa5\x5f\xbf\xf9\xcd\x6f\xf0\xee\x7b\xef\xb8\ \x24\x3f\x3b\x03\xc3\x47\x8c\xf0\xc9\x5d\x1b\x60\x29\x97\x2b\xc7\ \xad\xdd\xf6\xff\xb9\x77\xef\x5e\x47\x20\x17\x09\xca\xd3\x6e\xdc\ \xba\xf1\x06\x02\xbe\x02\xc0\x7b\x27\x3f\x42\xfa\x3b\x42\xda\x93\ \x1b\x25\xe7\xbf\xd5\xea\x72\x13\x4a\xb5\x35\xb5\x28\x29\x39\x00\ \xc6\x04\x2c\x7f\x60\x39\x00\xe0\xad\x3f\xbc\x05\x8e\xe3\x90\x91\ \x99\x8e\x51\xa3\x46\x42\xed\xd3\xb6\x57\x90\xc8\xf2\xb3\xf3\xa0\ \xb9\x1b\x36\x6c\xf9\x2e\xd0\x0b\x05\xad\x27\x9b\x9f\xda\xfc\x22\ \x18\xdb\x14\x84\x6c\x56\xcd\x04\x57\x9a\x3d\x53\x22\x60\x4d\x4d\ \x1d\x8a\x8b\x8a\x3d\x08\x9a\x99\x95\x81\x84\x84\x51\x92\xd7\x18\ \x04\x04\xf7\xa4\x3e\xd1\xaf\x37\xaf\xdf\xb2\x26\x18\xd7\xd2\x05\ \xeb\xa1\x8c\xbc\xf1\x17\x76\xa7\xf5\x26\x06\xa4\x0f\x48\x16\x8c\ \x44\x56\x8c\xd6\x69\x63\x71\x3d\x21\x61\x24\xda\xa7\x24\xa1\xea\ \x42\x15\x00\x86\xe4\x94\x64\x8c\x1c\x39\x72\xb0\x49\xb9\x9c\xc4\ \xe6\x5b\x3a\x6d\x4f\x04\xf1\x7a\xc1\x2b\x9b\x9f\xde\x9c\xc4\x0b\ \x54\x00\x20\xca\x8b\xc0\x03\x08\xeb\x52\x52\xee\x6b\x7d\xb0\x12\ \x5c\x44\xae\x4b\xc4\xf8\xf4\x8d\x1b\x37\x5e\x1c\x94\x0c\x00\x00\ \x4f\x3e\xfd\xe4\x7c\x62\xec\x53\x00\x86\xc1\x46\xf0\xc1\x0c\xeb\ \x1a\x8a\x83\x03\x2d\xdc\xb0\x61\xcb\x37\xc1\xbc\x28\x1f\xec\xa7\ \xfc\x76\xef\xb7\x67\xe7\xcd\x9f\x5b\x4b\xa0\xdb\x7d\xcf\x66\x1d\ \x84\x61\xd6\xc1\xa2\xf7\x81\x75\x9b\x36\x6c\xfd\x20\xd8\xd7\xe5\ \x07\xe2\x61\xbf\xd9\xfb\xed\x81\x79\xf3\xe6\x9a\x88\xa3\x3c\x35\ \x77\x4d\xfb\x74\xe9\xd5\x09\xb3\x0e\x0e\xa3\x0f\x2f\x6e\xde\xb0\ \xf5\xf9\x01\xb2\x29\x06\x2c\x48\x41\xcf\x3c\xf7\x8b\xb7\x41\xec\ \xde\x21\x3d\x1e\xc8\x38\xd2\x8e\xcd\x1b\xb7\x3c\x3a\x50\xd7\xe7\ \x06\xea\xc2\x44\x60\x53\x93\x2a\x97\x71\x44\x6f\xf9\xf3\x12\xa9\ \x41\x10\x66\x1d\x0c\xd4\xff\xc3\xa6\x0d\x9b\x1f\x1b\xc8\x5b\xd0\ \xc0\xf7\x81\xd1\xf6\x17\x9e\x79\x03\xc0\x1a\xa8\xfa\xec\xea\x3e\ \xfc\x0f\x92\xd0\x92\xb0\xcf\xde\x99\x30\x76\xd2\xfd\x77\xdf\x7d\ \xb7\xf3\x9a\x66\x80\xde\xb2\xfd\x85\xa7\x5f\x04\x68\xd3\x10\xac\ \x6b\xd3\xf9\x9b\xd6\x6d\xd9\x4a\xf2\x1f\x28\xbe\xf6\x18\xc0\xc5\ \x04\xcf\x3e\x46\x44\xaf\x10\xb9\x07\xa0\x86\x08\xee\x56\xec\x0c\ \x78\x70\xf3\x86\xad\x7f\xbc\x82\x81\xa5\x2b\x5b\x5e\x78\xf9\x85\ \xb9\x10\x84\x0f\x89\x30\x6c\x88\xe0\x1e\xa5\x8d\x18\x96\x6c\xdc\ \xb8\x75\xcf\x15\x0d\x2d\x5d\x8d\x9e\x6e\x7f\x75\x7b\x82\xce\x41\ \x1f\x01\x98\x35\x44\x77\x00\x40\x99\xc0\xd1\xff\xda\xb2\x6e\xcb\ \xb1\x2b\x7d\xe3\xab\x26\x7e\x3b\x76\xec\x30\x76\x59\xda\x5f\x01\ \xf0\xf0\xd5\x7c\x8e\xab\x5c\x9c\x00\x7b\xc5\x1c\x15\xbf\x6d\xd5\ \xaa\x55\xf6\xab\xf1\x00\x57\x7d\xe0\x5f\x7e\xf9\x85\x39\x02\xd8\ \xef\x01\x4c\xfe\xb7\x32\xf4\x80\xf3\x3c\xe8\x9e\x60\x4c\xe9\x06\ \x52\xf8\xab\x3d\x10\xbb\x77\xef\xb9\x90\x97\x7b\xc3\x5b\xbc\x8e\ \x27\x22\xe4\x0c\x86\x67\x1a\xe0\xe2\x60\x84\xdf\x59\x4d\xf6\x3b\ \xb7\xae\x7d\xea\xe4\xd5\x7e\x98\x41\x05\xbd\xaf\xbc\xf2\x7c\x8a\ \x93\xe1\x55\x00\x0b\x7e\x88\x94\x27\xb0\xcf\x9c\x1c\xf7\xc4\x96\ \x75\x5b\x2a\x07\xcf\x33\x0d\xc2\xf2\x5f\xff\xf5\xfc\x02\xc6\xe1\ \x59\x30\xcc\xfe\x61\x10\x1e\x47\x04\x70\xeb\x37\x6f\xd8\xfc\xd9\ \x20\x7c\xb6\xc1\x5b\x5e\x7a\xe5\xf9\x5b\xc1\xf0\x0c\x80\xf4\x6b\ \x54\xcf\x7f\x07\xb0\x37\xac\x5d\x8e\xbf\x3d\xfd\xf4\xd3\xc2\x20\ \x65\xce\xc1\x5f\x5e\x7a\x69\x7b\x1e\xe3\xb1\x92\x18\xdd\x09\x20\ \x64\x90\x3f\xae\x0d\xc0\x87\x8c\xe3\x5e\xdf\xbc\x6e\x73\xe9\x35\ \x80\x4e\xd7\x4e\x79\xf5\xd5\xa7\x63\x6c\x0e\xfd\x3d\x00\x56\x02\ \x98\x3a\xb8\x84\x1d\x25\x8c\x61\x97\x60\xc0\x9f\xb7\x3e\xbe\xb5\ \xf6\x5a\x19\xd3\x6b\xd6\xff\x7e\xe1\x97\x2f\x24\x91\x93\xdd\x4a\ \x44\x3f\x02\x58\x1e\x00\xc3\x15\x7e\x04\x27\x03\xf6\x11\xb0\xcb\ \xc1\xb3\xbf\x3f\xf9\xc4\x93\x55\xd7\xa8\x7d\x72\xd5\xef\xeb\xfe\ \x79\x23\xf7\xdf\x9c\x44\x9b\xd4\x39\xb8\xe9\xf6\x9b\x22\x33\x67\ \xa4\xcd\x37\x19\x43\x72\x78\x9e\x4f\xe1\x38\x2e\x99\x08\x51\x41\ \x16\xf2\x56\xa7\x20\x94\x3a\xec\x8e\x12\x8b\xd5\x52\x72\xf6\xd4\ \x89\x92\x0f\x3e\xf8\x7b\xa3\x08\x05\x98\x4c\x9d\x01\x10\x64\xf6\ \x8b\xcf\xb9\xa6\x18\x40\x4c\x38\x77\xa2\x91\x68\x3f\xdc\xfe\x93\ \xe8\xb7\xd4\x06\x85\x3a\x64\xf6\xf5\xed\xbf\xf5\xd6\xc5\x89\x63\ \xae\x1b\x37\x2d\x2a\x32\xf2\x7a\x9d\x5e\x1f\xaf\xe3\xf9\x38\x8e\ \xe7\xe3\x79\xe2\x62\x88\xa7\x58\x82\xf7\x24\x04\x63\x42\xa7\xd3\ \x29\xd4\x3a\xec\x8e\x5a\x87\xc3\x59\x6f\xb5\x59\x6b\x2c\x5d\xdd\ \x35\xd5\xd5\x17\x4f\x7c\xfa\xe9\xee\xb3\x16\x8b\x45\x8d\xc8\x72\ \x04\x96\xaa\x8b\xdb\x04\xd1\x6f\xf7\x7d\xe2\x4d\x90\xb9\x77\xd0\ \x19\xc0\x5d\x1a\x39\x19\x42\x73\x2a\x0c\xc0\xa9\xd4\xfd\xdd\xe4\ \x18\x04\x0a\xa8\xa1\xd4\x77\xa6\x50\xd7\x42\x64\x48\x48\xb9\x2f\ \x9b\xe0\xc3\x7e\x41\xe3\x6f\x41\x8d\x41\xc4\x83\xc0\x29\x10\x55\ \x0b\x13\xc8\xfd\xf7\x85\x69\x38\x8d\x88\xa2\x95\x41\x64\x51\x42\ \xc6\x98\x53\x92\x6e\x35\x02\x6b\x21\xa2\xa0\xa1\x4d\xd0\xd8\xae\ \x46\x7c\xa5\xf3\xbd\x24\x9c\xfc\xfc\xef\xef\xb9\xfe\x5e\xdf\xd7\ \x6b\x8a\xf7\xbb\xab\x22\xa8\xe8\x6c\xe6\xe3\xe0\x0b\x1a\x89\xe1\ \xeb\x7f\xb5\x63\xfc\xbe\x3e\x2f\xa3\xcf\x83\xf1\x1f\x1a\x74\xb7\ \x96\xf3\x7c\x81\x76\x52\x30\xca\xc4\xd2\xab\x34\xb8\x4e\x19\x02\ \x6a\x95\x54\x35\x44\x60\x32\xf6\x01\x64\xec\x05\x41\xe5\x7a\xf0\ \xf7\x3f\xc9\xa8\x05\xad\x92\xa5\x15\xea\xfd\x81\xff\x40\xec\x05\ \xa8\x78\x10\x6a\x3e\x3d\x34\x1a\x76\xfe\xe8\x76\x7f\x74\xba\x3f\ \xed\x4a\xfb\xfc\xf2\x02\xc8\x07\xc2\xaa\x11\x8f\xf3\x91\x98\x9c\ \x8a\x57\xa0\x05\x29\x7c\xe9\xaf\x9c\x41\xa8\x24\xa5\x90\xb1\xec\ \x81\x2b\x67\x08\x0a\x12\xcf\x70\xc5\xe3\x00\x62\x82\x70\x12\xee\ \xa0\xbf\xc4\x06\xfc\xb3\xfa\xfd\xed\x27\xf3\xc1\x2b\x50\x73\x0b\ \xb5\x32\x05\x64\x88\x0b\x5f\x08\xfb\x43\x88\x04\xfa\x62\x13\xf8\ \x22\xf5\xe4\xa7\xf4\xcb\x11\x5f\x8b\xbe\xbd\x2a\x41\x1e\x2d\xe5\ \xff\x03\x0f\xb9\x88\xe4\xcc\x0f\xb4\xc6\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\xaf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2a\x29\x4d\x07\xea\x90\x00\x00\x09\x2f\x49\x44\x41\x54\x68\ \xde\xed\x99\x5d\x6c\x1c\x57\x15\xc7\x7f\xf7\xce\x9d\xd9\xf5\xda\ \xbb\xde\x4d\x49\x62\xbb\xa4\x76\xec\xc4\xb1\xd3\xd0\xca\x49\x09\ \x12\x2d\xa4\x5f\x12\x0f\x05\x51\x84\xaa\x16\x54\xa1\x08\x90\x52\ \x09\x29\x12\x45\xbc\xf5\x81\x22\x55\x42\x02\xf1\xd0\xa2\x22\x21\ \x41\x91\x50\xa9\xc4\x43\x8b\xfa\xd2\x0a\x01\x7d\x68\x21\x69\xd2\ \x97\xb6\x49\x9c\xc4\x8d\xf3\xe1\x46\x69\xe2\x58\xd4\x1f\xeb\xdd\ \x9d\x8f\x7b\x79\x98\xb9\xe3\xf1\x76\x1d\xdb\xeb\x14\x5e\x7a\xa5\ \xa3\x99\xd9\xd9\x99\xf9\xff\xcf\x39\xf7\xdc\x73\xce\x15\xdc\x84\ \x61\x8c\x91\x80\x03\xe4\x80\x02\xd0\x91\x9c\xe7\x00\x09\x08\xfb\ \x57\x20\x02\x7c\xa0\x01\x2c\x02\xb5\xe4\x3c\x12\x42\xe8\xf5\x7e\ \x5b\x71\x73\x86\x00\x5c\xa0\x13\x28\x03\x15\xa0\x3b\x21\xe2\x35\ \x11\xf0\x13\xe0\xb3\xc0\x7f\x12\x82\x3a\x91\xb6\x3e\xcc\xf7\x7f\ \x70\xf0\x77\xf5\x46\xfd\xbb\xda\x68\xb1\xde\x17\x48\x21\x70\x1c\ \x45\x2e\xe7\x89\xae\xae\x12\xe5\x72\x59\x94\xcb\x65\xd1\x5d\xea\ \x16\xf9\x7c\x5e\x78\x9e\x87\x10\xf1\x6b\xb5\xd6\x04\x41\x40\xad\ \x5e\x33\x73\xb3\xb3\xe6\xe3\x8f\x3f\x36\xb3\xb3\xb3\x5a\x4a\xf9\ \xc7\x5f\xfd\xf2\xd7\x3f\x06\x02\x21\x84\x59\xb7\x05\x6a\xf5\xda\ \x0f\xbf\xf7\xf8\x41\x31\x33\x33\xc3\xb5\x6b\xd7\x08\x82\x80\x30\ \x0c\x89\xa2\x08\xdf\xf7\x89\xa2\x88\x20\x08\x88\xa2\x88\x28\x8a\ \xd2\x7b\x51\x14\x61\x8c\x41\x4a\x89\xe7\x7a\x14\xf2\x9d\x14\x3b\ \x4b\x6c\x2a\xdf\xc2\xc3\x0f\x7f\x13\x29\x1d\x84\x10\x24\xf8\x31\ \x06\x8c\x31\x68\x1d\xa5\xcf\x37\x1a\x0d\x9e\xfe\xf9\xcf\x0e\x01\ \x3f\x69\xc7\x02\xd6\x85\x84\x31\x86\x28\x8a\xd0\x5a\xa3\xb5\x4e\ \x81\xda\xf3\xf8\xc3\xf1\x3d\x7b\x6e\x8c\xc1\x98\x58\x61\x8e\xe3\ \xe0\xba\x2e\xf9\x7c\x9e\x62\xb1\x48\x2e\x97\x4b\xc0\x8b\x65\x1e\ \x14\x3f\xa3\xd2\x6f\xb9\xae\x4b\x32\x7f\xec\x1f\x4d\x5b\x73\xc0\ \x75\x5d\x94\x52\x48\x29\x91\x52\xa2\x94\x4a\x01\x5a\x90\xd9\x6b\ \xa5\x54\x4a\xce\x71\x1c\x94\x52\x28\xa5\xf0\x3c\x8f\x7c\x3e\x9f\ \x80\x97\x89\xf6\xc5\x32\xaf\x35\x46\xa7\x6e\x25\x04\x48\x29\x9b\ \xff\xb4\x7e\x02\x59\x10\x16\xb0\xd5\xb2\x05\xaf\x94\x4a\x3e\x2a\ \x88\xa2\x28\x7d\xce\x8a\xeb\xba\xa9\x22\x2c\x38\xc8\xba\x50\xac\ \xe0\xe6\xdf\x97\x4e\x36\x40\xc0\x7e\xd8\x71\x9c\x4f\xb8\x87\x1d\ \x61\x18\xa6\x04\xac\xd8\x39\x60\xad\xe7\x38\x4e\xa2\x51\xd1\x1c\ \x2b\x52\xf0\xc6\xd0\xc2\x32\x37\x81\x80\x25\xd1\xec\x32\x99\x78\ \x9f\x12\xb0\x47\x4b\xc0\x5a\xd0\xba\xe0\x7a\x02\xa1\x7d\x5d\x3b\ \x8c\x52\x02\x4a\xa9\x96\x04\x9a\x01\x67\xdd\xc7\x1e\xb3\x9a\x6f\ \x26\x20\x04\x9f\xea\x58\xb6\x90\x09\x21\x52\x02\x59\xd0\x2b\xea\ \x2e\x63\x81\x66\x12\xff\xab\xd1\x72\x25\x76\x1c\x07\x63\x4c\x7a\ \x6c\xe5\x42\xd6\x12\x96\xac\x05\xbe\x14\x3a\xdb\x1f\x2f\x42\xbf\ \x81\x0b\x40\xf7\xe3\x30\xb7\x26\x02\xd9\x89\x69\xaf\xad\x56\x2d\ \x78\xfb\x5b\x18\x86\xcb\xdc\x4c\x08\x81\xe3\x38\xcb\x88\x6c\x04\ \xbc\xe3\x79\x47\x65\xb1\x48\x7d\x66\xa6\xcc\x2a\x04\x64\xb3\x4b\ \xac\x24\x59\xff\xb6\x61\xd3\x46\xad\xac\x58\x2b\xb4\x33\x5e\xee\ \xe9\xe9\x77\x94\x3a\xfa\xa5\x67\x9e\xd9\x5a\xd9\xb5\xab\xb6\xa6\ \x54\x66\x2d\xe0\x57\x22\xd4\x8a\x5c\xbb\xe0\xff\x7e\xe0\xc0\x6d\ \xc1\xcc\xcc\xbf\xef\x7a\xea\xa9\xad\x95\xdb\x6f\x5f\xf3\x4b\x96\ \x11\x68\x87\x48\x33\x99\x76\xe6\x40\x6e\x7e\x9e\x99\x23\x47\xde\ \xd8\xfb\xe4\x93\x9b\xcb\x43\x43\x42\x2f\x2c\x60\x82\x60\x7d\x04\ \x56\x22\x71\xa3\xeb\x66\xeb\xb5\xba\xb7\xda\xa8\x4d\x4d\x31\xf6\ \xca\xab\xdc\x79\xe8\xd0\xe6\xca\xce\x9d\x72\xf1\xf8\x71\xf4\xe2\ \x22\x46\xeb\xf6\xa2\x90\x94\x12\x9d\x79\xf8\x46\xd7\x56\xfb\xa5\ \x52\x89\xc1\xc1\x41\xc2\x30\x5c\x97\x1b\x2d\x5e\xba\xc4\xbf\x1e\ \x78\x90\xbd\x8f\x3c\xc2\xa6\x91\x11\x59\x3d\x76\x0c\xa2\x08\xe3\ \xfb\x84\x61\xd8\x21\xe1\xc2\x8b\x50\x6f\x85\xdb\x80\xfb\x38\x08\ \xb5\x11\x0b\xd8\x75\xc0\x18\x83\xeb\xba\x94\xcb\xe5\x4c\x16\xba\ \x3a\xf8\x37\xef\x7f\x80\x1d\xf7\xde\xcb\xe6\xd1\xdd\x54\x8f\x1e\ \x85\x30\x04\xc7\x41\x38\x0e\xfb\x0f\x1f\x8e\xb3\x64\xe8\x48\xf3\ \x8f\x44\x8c\x31\xbc\x71\xf8\x70\x48\xbd\xfe\xc9\x85\xac\x1d\xa9\ \x56\xab\xbc\xf5\xd6\x5b\xec\xd9\xb3\x87\xd1\xd1\xd1\x8c\x05\xc4\ \x8a\xe0\xdf\xf8\xea\x01\x86\xf6\xef\xe7\x73\xbb\x63\xf0\x26\x08\ \x52\xf0\xb3\xaf\xbf\xce\xb2\x22\x42\xeb\xd8\xa5\xa2\x08\x13\x45\ \x94\x1e\x7a\x08\x20\x6c\xe9\x42\xed\x92\xa8\x54\x2a\x74\x77\x77\ \xa3\x94\x62\x6e\x6e\xe5\xd0\x5d\xbd\x78\x91\x7f\xdc\xf3\x15\x06\ \xf6\xec\x89\xc1\xbf\xfd\x36\xc6\xf7\x63\xf0\x52\x62\xa4\x84\x8c\ \xb5\x8d\xd5\x7c\x96\x44\x10\xc4\xbf\xdd\x4c\x02\xbd\xbd\xbd\x0c\ \x0c\x0c\x30\x35\x35\x45\xa1\x50\x58\x19\xfc\xdd\xf7\xb0\x6d\x70\ \x90\xcd\xbb\x77\x53\x3d\x76\x0c\x53\xaf\xc7\xe0\x95\xc2\x48\x89\ \x48\x08\x2c\xcb\x83\x6d\x5a\xaf\x35\x26\x0c\x31\x8d\x46\xba\x90\ \xae\x48\x60\x3d\xd7\xc5\x62\x91\x91\x91\x11\x2e\x5c\xb8\xc0\xc2\ \xc2\x02\xa5\x52\x69\x05\xf0\x77\xd3\xdb\xd3\xc3\x96\xdd\xbb\xa9\ \x1e\x3f\x8e\xa9\xd5\x40\xa9\x58\xf3\x61\x18\x1f\x85\x88\xdd\x67\ \x79\x1d\x1a\xfb\x7e\x62\x01\xdd\x68\xac\xde\x95\x58\x2b\x11\xa5\ \x14\x63\x63\x63\x5c\xb9\x72\x85\x4b\x97\x2e\xd1\xd3\xd3\x93\xa6\ \x1f\x76\x04\xb3\xb3\xbc\x3a\x38\xc8\xf6\xe1\x61\x7a\xee\xb8\x83\ \xc5\x77\xde\x41\xd7\x6a\xb1\xe6\xa3\x28\xd6\xbc\xe3\x60\x84\x40\ \x48\x49\x54\xad\xa2\xe7\xe7\x63\xa0\x61\x18\xbb\x94\xe7\x21\x0b\ \x05\x64\x47\x07\xa6\xd1\x58\xd9\x85\xd6\xeb\x46\xbd\xbd\xbd\x4c\ \x4f\x4f\x33\x39\x39\x49\xb9\x5c\xb6\x35\xee\xf2\x98\xd7\xd9\x49\ \xa1\xaf\x8f\xea\xcc\x0c\xc1\xf5\xeb\x18\xad\xd1\xb5\x1a\xc2\x75\ \xc1\x71\x30\x5a\x63\x1a\x0d\x74\xb5\x4a\x34\x37\x87\x49\x0a\xa7\ \x15\x34\x4b\xc7\xfe\xfd\x98\x24\x95\xdf\x30\x81\xcb\x97\x2f\xe3\ \x38\x0e\xb9\x5c\x0e\xa5\x54\xcb\x85\x4c\x28\xc5\x43\xa7\x4f\xf3\ \xcf\xfb\xee\xe3\xdc\x91\x23\x6c\x1f\x1d\x25\xbc\x7e\x1d\x7f\x6a\ \x6a\xc9\x4d\xd6\xde\x45\x5b\xb6\xd0\xc9\x8d\x12\x68\x95\x4e\xb4\ \x5c\xf2\x3b\xf2\x7c\xf9\xb5\xd7\xd0\xfd\xfd\x9c\x3f\x75\x0a\xef\ \xb6\xdb\x70\x7b\x7a\xd6\x07\xde\x72\xc8\x58\x48\xae\x36\x07\xda\ \x91\xcc\xa7\x92\x20\x12\xf7\x97\xb4\xeb\x32\xf6\xca\xcb\x04\xdb\ \xb6\x71\x7e\x7c\x1c\x6f\xdb\xb6\x98\xc4\x7a\xc7\x12\x01\x71\xc3\ \xd6\xe2\x5a\x26\xf2\x4a\xf5\x44\xc6\xe2\x69\x13\x2b\x08\x02\x22\ \xe5\x32\xfa\xd2\x9f\x39\xf9\xe8\x63\x4c\x9e\x39\xc3\xf6\x9d\x3b\ \xe3\x89\xfe\xd1\x47\x4b\x5a\xed\xec\x4c\xc3\x69\xab\xda\xd4\xfa\ \x3f\xa0\x6e\x18\x85\x56\x23\x62\xa5\xb9\x94\x8c\x53\x8c\x34\x88\ \x13\x45\x56\xe2\x66\x96\xf1\x72\x0c\xfc\xe1\xf7\x9c\x3b\x78\x90\ \xf3\x67\xcf\xb2\x7d\x68\x08\x8c\x21\xb8\x7a\x15\x80\xc2\xbe\x7d\ \x04\x8d\x06\x51\x18\x42\x76\x61\x8b\x9b\x48\xd4\x7d\x1f\x03\x79\ \x40\xaa\x76\x5d\x28\x9b\xb4\xd9\x7e\x92\x25\x12\xe7\x47\x3a\x4d\ \x25\x8c\xd1\xc9\x35\x4b\xf7\x72\x79\x7a\x9f\x7f\x9e\xcb\x4f\x3c\ \xc1\xc4\x99\x33\xec\x1c\x1e\xc6\x18\x43\x78\xed\x1a\xba\x5a\xe5\ \xfd\x13\x27\x08\x1b\x8d\x69\xc0\x17\x60\x44\xec\x8f\x26\xc9\x8a\ \x9c\xa4\x19\x6c\xd6\xe4\x42\xcd\xc0\xb3\x16\x92\x52\xe2\xba\x2e\ \xb9\x5c\x0e\xd7\x75\xd3\x92\x73\x62\xe2\x03\x2a\x95\x32\xe5\x72\ \xb9\x39\x0a\x26\xcf\x09\x54\x67\x81\x2d\xcf\x3d\xcb\x89\x47\x1f\ \x43\x8e\x8f\xfb\x83\xc3\xc3\x5e\xe2\x73\x08\xf0\x7f\x01\xdf\x3e\ \x15\x77\xb0\x83\x44\xfc\x26\xd1\x72\x3d\x04\xb2\x25\xa5\x05\x9d\ \xcf\xe7\x53\xb1\x04\xa2\x28\x62\x7e\x7e\x8e\x2b\x57\xae\xf0\xc1\ \x07\xe7\x96\x9e\x77\x24\xd2\x91\x38\xca\xc1\x51\x0e\x4a\xb9\xb8\ \xc5\x2e\xde\xbc\xff\x00\x33\x41\x70\xee\xfc\xd9\xb3\x0d\x77\xcb\ \x16\x48\xac\xe8\xc5\xa9\x74\x3d\xd9\x3f\x68\x24\xa0\x83\x24\x91\ \x0b\x81\x70\x4d\x04\xac\xbb\xd8\x3a\xd8\xf3\xbc\xb4\x07\x6a\xc5\ \xf3\xbc\xb4\x25\x53\x5d\xac\x52\xaf\xd7\xa9\x2e\x2e\x52\xaf\xd7\ \x88\xb4\x46\x3a\x0e\x8e\x94\x28\x47\x2d\x89\x72\xf0\x3c\x0f\xbc\ \x1c\x2f\xed\xd8\xf1\x9d\x99\x46\x63\xe2\xfc\xc4\x44\xc3\x4e\xd2\ \xce\xa5\x0d\x90\x5a\x13\x11\x4b\x66\xf5\x0d\x0e\x4b\xc2\x75\xdd\ \x34\xf7\xcf\xf6\x80\xac\xff\xe7\x72\x1e\x8d\x46\x83\xf9\xf9\xf9\ \x0c\x51\x97\x1d\x43\x83\x84\x61\x5c\x1e\x4a\x47\xa2\x50\x68\xa3\ \x31\x68\xb4\xd1\x80\xc1\x51\x0e\x73\xb7\xdc\x72\xfd\xb7\xf9\xfc\ \x37\x7e\x54\xaf\xff\x95\xf1\xf1\x11\xa2\x48\x6c\x8a\x09\x54\x13\ \x7f\x0f\x33\xa2\xd7\x94\x0b\x59\x1f\xb7\x85\x4b\xab\x22\x3e\x9f\ \xcf\xd3\x68\xd4\xf9\x28\x09\x83\x8e\xe3\x50\x2c\x95\xe8\xbb\xb5\ \x97\xad\x3d\x5b\x51\x8e\x4a\x7b\xaa\x56\x01\x42\x8a\x84\xa0\x86\ \xa4\x3b\xbd\x6b\xd7\xae\xea\x6b\x93\x93\xc1\x5f\xea\xf5\x07\x1f\ \xf3\xfd\xbf\x19\x18\x1b\x8c\x09\x2c\x36\x83\x5e\xb5\xb1\x95\x05\ \x9f\x6d\x6a\x65\x09\x74\x74\x74\x50\xab\xd5\xb8\x78\xf1\x02\x61\ \x18\xa0\x5c\x97\xbe\xde\x3e\x06\x06\xfa\xa9\x54\x2a\x49\xbc\xd6\ \x04\x91\xbf\xac\xeb\x6f\x8c\x41\x1b\xbb\xe7\xa0\x91\x22\xfe\xde\ \x0b\x2f\xbc\x50\x05\x42\x21\x44\xf5\xeb\x70\x4f\x01\x9e\xae\xc0\ \xf4\x6a\x5b\x4f\x6a\x25\xf0\xcd\x51\xc7\x12\x28\x14\x0a\xf8\x81\ \xcf\xd9\x89\xb3\x54\xab\x0b\x74\x75\x75\x31\x38\x34\xc8\xc0\x40\ \x3f\xf9\x7c\x1e\x00\x3f\xf4\xb3\xad\x5b\xbb\xb5\xb1\x64\x05\x9d\ \xec\xd2\xe8\x88\x28\xd2\xb6\xc6\xd6\x76\x7b\xe9\x50\xac\xf5\x9f\ \xb6\xdd\x5a\x6c\x15\x3e\x3b\x3b\x3b\x09\xc3\x90\xf1\xd3\x27\x99\ \x9e\xbe\x4e\x5f\x5f\x1f\x77\xed\xdb\x4b\xdf\xe7\x6f\x45\x8a\x98\ \xa4\xef\xfb\x37\x48\x60\x96\x68\xa4\xbb\x3d\x51\x44\xa4\xf5\xb2\ \xa6\xc1\x86\x9b\xbb\xcd\x04\x8a\xc5\x22\x52\x4a\xde\x7b\xff\x3d\ \x3e\xfc\x70\x8a\x9d\xc3\x3b\xf9\xda\xbe\x31\xba\x4b\x25\x10\x22\ \x9d\xa0\xeb\xd8\x92\x4d\x17\xb3\x78\xcb\xca\x58\x02\x66\xc3\x04\ \xb2\xa3\x54\x2a\x91\xcf\xe7\x79\xf7\xdd\x77\xb9\x7c\xe5\x43\x46\ \x47\x47\xb8\xeb\x8b\x63\x49\xbe\x2f\x68\xf8\x41\x9b\x3a\x33\x49\ \x81\xa5\x9b\xb7\xb0\xcc\x4d\xb1\x40\xa5\x52\xa1\xab\xab\x8b\x93\ \x27\x4f\x70\xf5\xda\x55\x46\x46\x77\x71\xe7\xde\x2f\x24\xf3\xd0\ \xe0\x07\xfe\x06\x77\xc5\xe3\xf7\x58\xcc\x69\x64\x5a\xe7\xf6\x6a\ \x4b\x02\xa5\x52\x91\xc9\xc9\x49\x4e\x9f\x39\xc5\xd0\x8e\xed\x0c\ \xee\xe8\x47\x20\x08\x37\x0a\x7a\x05\x12\xe9\xb9\x31\x1b\x9f\x03\ \xf3\x0b\x73\x5c\x9a\xba\xc0\x96\xad\x9b\xe9\xde\xb4\x03\x21\x04\ \x61\x14\x7e\xaa\x9b\x13\x16\xb8\x94\x52\x6f\x88\x40\x3e\xe7\xbe\ \xf2\xdc\x6f\x9e\xfd\xd6\x5a\x52\xeb\x9b\x01\xb8\x79\x74\x16\x3a\ \xff\xc4\x67\xe3\xb3\xf1\xff\x19\xff\x05\x23\xd6\x98\x75\x1a\x62\ \x10\xc4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0a\x10\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x28\x28\x08\x36\xb8\x84\x00\x00\x09\x90\x49\x44\x41\x54\x68\ \xde\xed\x99\x5d\x6c\x5c\xc5\x15\xc7\x7f\xf3\x71\xef\xde\xdd\xb5\ \xbd\xb1\x1d\x4a\xe2\x7c\xe0\x24\x0d\xc4\x71\x9c\x34\x80\xaa\x2a\ \x49\x09\x50\xb5\x29\x4d\x79\x02\x51\x50\xa5\x08\x12\x89\xbe\x15\ \xb5\x52\xe0\x05\x29\xae\x28\x4f\x48\x55\x1f\xda\x3e\x55\xa9\x08\ \xaa\x9a\x22\x44\x5b\x8a\x22\x90\x5a\x95\x56\x85\xaa\x98\x42\xbe\ \x69\x42\x63\xc0\x36\x8e\x4d\x1c\x7b\xed\xfd\xba\x5f\x33\xd3\x07\ \xaf\x53\x27\x76\x1c\x37\x71\xd4\x22\x65\xa4\xa3\xbb\x77\xef\xcc\ \xbd\xe7\x7f\xfe\x67\xce\x99\x39\x03\x37\xda\x8d\x76\xa3\x7d\xa6\ \x9b\x98\x6f\xc7\xc7\x1e\x7b\xec\x69\xe7\xdc\x33\x42\x88\xea\xf5\ \x50\xc4\x39\x97\x95\x52\x3e\xba\x7f\xff\xfe\x03\x0b\x0e\x60\xf7\ \xee\x47\xbf\x9f\xcf\x37\xfe\xf0\x0b\x5f\xd8\x98\x45\xcc\x1c\x22\ \x84\xb8\x66\xab\x19\x63\xe8\xe9\xf9\x47\x35\x49\x92\xc7\xf7\xef\ \xdf\xff\xcb\x05\x03\xb0\x7b\xf7\xee\xc7\x73\xf9\xdc\x8f\xef\xbc\ \xf3\x8e\xec\x99\x33\xff\x62\x74\x74\xf4\xba\xb8\xc2\xf2\xe5\xcb\ \xb9\xf9\xe6\x25\xf4\xf4\xbc\x53\xad\x94\x2b\xbb\x0f\x1c\x38\xf0\ \xeb\xf9\x8c\x53\x57\x50\x7e\x57\x2e\x97\xfd\xc9\xd6\xad\x5b\xb3\ \xbd\xbd\xbd\x9c\x3b\x77\xee\xba\xf9\xf2\xc4\xc4\x04\xbe\xe7\xd3\ \xd9\xd9\xe9\x9d\x3d\x3b\xf4\xcd\x0d\x1b\x36\x9c\x39\x7c\xf8\xf0\ \xf1\xab\x06\xb0\x67\xcf\x9e\xa7\x1a\x1a\x1a\x7e\xba\x7d\xfb\xdd\ \xde\xe9\xd3\xa7\xe9\xef\x1f\xc0\x1a\x77\x5d\x65\x74\x74\x0c\xdf\ \xf3\xd9\xbc\x79\xb3\x1e\x1a\x1a\x7a\xb0\xab\xab\x2b\xf7\xde\x7b\ \xef\xfd\x61\x2e\x00\xfa\x72\x0f\x82\x20\xf8\xee\x93\x4f\x3e\x89\ \x52\x8a\x3b\xee\xb8\x63\xb6\x49\x87\x10\x02\xdf\xf7\x2f\x37\x29\ \xe7\xbc\x9f\xab\x7f\x10\x04\x6c\xdd\xba\x95\x67\x9f\x7d\x76\x17\ \xf0\xd4\x55\x01\xb0\xd6\x36\xe7\xf3\x79\x8a\xc5\xe2\xac\x0a\x94\ \xcb\x65\xde\x7a\xeb\x2d\x1e\x7e\xf8\xe1\xeb\xe2\x52\x8d\x8d\x8d\ \x38\xe7\x0a\x57\xea\xa7\xe7\x11\xde\x66\x05\xe0\xfb\x3e\x5d\x5d\ \x5d\xff\xf3\x3c\x20\xaf\xa4\xfc\xe5\x24\x0c\x43\x8e\x1e\x3d\xfa\ \x3f\x07\x30\x6f\x06\x2e\xfd\x9d\xc9\x64\x3e\xfb\x0c\x1c\x3b\x76\ \xec\xb3\xcb\x80\xef\xfb\x74\x76\x76\xfe\x7f\x33\x70\x29\x0b\xd3\ \xef\xc3\x30\xe4\xf8\xf1\xe3\x9f\x2d\x06\xa6\xdf\x5f\x0d\x03\xce\ \x39\x86\x86\x86\xe8\xed\xed\x65\x64\x64\x84\x6a\xb5\x4a\x14\x45\ \xe4\xf3\x79\x1a\x1a\x1a\x58\xb6\x6c\x19\x6b\xd6\xac\x21\x9f\xcf\ \x2f\x0c\x80\xe9\x96\xbf\x14\x40\x14\x45\x1c\x39\x72\x84\x4d\x9b\ \x36\x5d\xf1\x23\xc6\x18\x8e\x1e\x3d\x4a\x4f\x4f\x0f\xcd\xcd\xcd\ \xac\x5e\xbd\x9a\x8d\x1b\x37\x92\xcd\x66\xf1\x7d\x9f\x38\x8e\xa9\ \xd5\x6a\x0c\x0e\x0e\x72\xf0\xe0\x41\x0a\x85\x02\xf7\xdc\x73\xcf\ \xc2\x30\x70\x39\x16\x3c\xcf\x9b\x17\x03\xc3\xc3\xc3\xbc\xfa\xea\ \xab\x2c\x5d\xba\x94\x9d\x3b\x77\x12\x04\x01\x51\x14\x61\xad\x25\ \x4d\x53\x9c\x73\x68\xad\x69\x69\x69\x61\xc5\x8a\x15\x6c\xdb\xb6\ \x8d\x81\x81\x01\x0e\x1d\x3a\x44\x6b\x6b\xab\xff\xdc\x73\xcf\xe5\ \xf7\xee\xdd\x5b\x59\xf0\x28\x14\x45\xd1\x15\xf3\xc0\xa9\x53\xa7\ \x78\xe5\x95\x57\xd8\xb2\x65\x0b\x9b\x37\x6f\xa6\x5c\x2e\x33\x38\ \x38\x48\xb1\x58\xbc\xe0\x3e\x71\x1c\x13\x45\x11\xb5\x5a\x8d\x38\ \x8e\x09\xc3\x90\xb6\xb6\x36\x76\xed\xda\xc5\xb6\x6d\xdb\x54\x1c\ \xc7\xef\x75\x77\x77\xb7\x5d\xd3\x1c\xb8\x2c\x03\x1d\x1d\x14\x7b\ \x7b\x71\x33\x07\x71\x76\x64\x84\xbf\x9f\x38\xc1\x8e\x1d\x3b\x08\ \xc3\x90\xbe\xbe\x3e\xb4\xd6\x28\xa5\x10\x42\x60\x8c\xb9\xe8\x3a\ \xdd\x38\x69\x9a\xa2\x94\x62\xcb\x96\x2d\x2c\x5e\xbc\xf8\xf3\xaf\ \xbf\xfe\xfa\x5f\xbb\xbb\xbb\x37\x74\x77\x77\x57\x17\x04\xc0\xd4\ \x1c\xf8\xc7\x3b\xef\xf0\xe9\xd3\x4f\xcf\x78\x96\x36\x37\x73\xf6\ \x89\x27\xb8\xff\xc1\x07\x09\xc3\x90\xb1\xb1\x31\xac\xb5\x18\x63\ \x2e\xda\x00\x4d\xbf\xfa\xbe\x7f\x11\x88\xa9\xfe\xb7\xdd\x76\x9b\ \x28\x97\xcb\x2b\xdf\x7c\xf3\xcd\x97\x81\xaf\x5f\x55\x18\x9d\xcd\ \x9d\x3c\xcf\x63\xe3\xfa\xf5\xb3\x8e\x19\x7b\xe0\x01\xee\xde\xb1\ \x03\xad\x35\xd5\x6a\x15\xad\xf5\x05\x6b\x3b\xe7\x30\xc6\x62\xed\ \xe4\xd5\xd4\xaf\x4a\x69\x9c\x63\x56\x10\xb7\xdf\x7e\xbb\x5a\xb2\ \x64\xc9\x5d\xcf\x3c\xf3\xcc\xd7\x17\x76\x0e\x9c\x38\x31\x93\x99\ \xe5\xcb\xc9\x76\x75\xb1\x62\xc5\x0a\x2a\x95\x0a\x9e\xe7\xa1\xb5\ \xc6\xf3\x3c\x40\x90\x1a\x4b\x9c\xa4\x94\xca\x15\x46\x46\xc7\x18\ \x19\x19\xe5\xfc\x58\x91\xb4\x0e\xc6\x3a\xb0\xd6\x61\xeb\xdf\x49\ \x92\x84\x4a\xa5\xc2\xf6\xed\xdb\xb3\x9e\xe7\xfd\xac\xbb\xbb\x5b\ \x5e\x75\x22\x9b\x2e\xbe\xef\xd3\xd5\xd1\x31\x73\x67\xb5\x63\x07\ \x5f\xda\xbe\x9d\x28\x8a\x50\x4a\xa1\xb5\xc6\xf7\x7d\x94\xd2\x68\ \xcf\xa3\x5a\x0b\x19\x39\x3f\xca\xf8\x44\x99\x30\x4c\xa8\x45\x09\ \x49\x62\xa9\x85\x09\xa5\x72\x95\x24\xb5\x58\x07\xc6\x58\xca\xe5\ \x0a\xe5\x72\x99\x24\x49\x68\x6a\x6a\x62\xe9\xd2\xa5\x4b\x80\xaf\ \x2d\x18\x03\x47\x2e\xc9\xc4\x4e\x6b\xc2\x15\x2b\x68\x6b\x6b\xc3\ \x18\x73\xc1\xf2\x4a\x69\x94\xf6\x48\x8d\xa3\x56\x8b\x48\x8d\xc3\ \x38\x41\x35\x4a\xa8\x86\x09\xca\xcf\x62\x90\xc4\xa9\xa3\x54\xae\ \x31\x3e\x51\x61\xe4\xfc\x18\xb5\x30\xaa\x33\x33\x19\x72\xd7\xae\ \x5d\x9b\xf5\x3c\xef\xdb\x0b\xb7\x16\x5a\xb5\x8a\xf2\xb4\xbe\xe1\ \x2d\xb7\xb0\xb2\xbd\x1d\x29\xe5\x05\xeb\x3b\x07\xda\x83\xd4\x42\ \x2d\x8c\x40\x6a\x90\x92\xc1\xc1\x61\xfc\xd1\x73\xa8\xa1\x21\x3e\ \xbd\xb5\x83\xce\x3b\xbf\x48\x53\x63\x23\x83\x67\x87\x09\x02\x9f\ \x96\x45\x05\xc0\x82\x10\x08\x21\x48\x92\x84\x65\xcb\x96\x01\xdc\ \xb7\x20\x00\xc2\x30\xe4\xf8\x99\x33\xb4\x4f\xeb\x9b\x14\x0a\xb4\ \xde\x74\x13\x42\x88\xba\xf2\x75\x9f\x76\x60\x6d\x8c\x43\xa2\xbd\ \x0c\x23\xe7\xcf\xd1\xf0\x9b\x5f\x53\xf8\xeb\x9f\x27\xdf\xeb\x79\ \x9c\x78\xea\x07\xac\xfd\xf2\xbd\xd4\x6a\x09\x71\x62\xc8\xe7\x1b\ \x27\xc3\x73\x1d\x80\x10\x82\x5c\x36\xc0\x18\xb3\xe8\xc5\x17\x5f\ \x54\x0f\x3d\xf4\x90\xb9\x26\x17\xf2\x7d\x9f\xf5\xab\x57\x5f\x1c\ \x3e\x9b\x9a\x28\xb4\xb4\x20\xa5\x9c\x74\x1d\xad\xd1\x5a\x23\x95\ \xc6\x21\x90\xca\x43\x48\x8f\x89\x89\x09\x0a\x6f\xfe\xe5\x3f\xb5\ \x9d\x24\x21\xf7\xdb\x83\x54\x2b\x13\x20\x14\xb5\xd8\x52\x8d\x52\ \x92\xd4\x91\xa4\x96\x24\x31\xa4\xa9\xc1\x5a\x4b\x10\x04\xc9\xc9\ \x93\x27\x6f\x5e\x10\x06\x4e\x5e\xc2\x00\xf5\xe7\xd3\xdd\xc7\x5a\ \x50\x0a\xa4\xd2\x08\xa1\xd0\x9e\xc2\xc9\x99\xc5\x10\x21\x05\x19\ \xdf\x61\x4c\x4c\x62\x2d\x51\xe2\x50\xca\x5e\xc8\x13\x42\x58\xac\ \xb5\x53\x3a\xd8\x6b\x5e\x4e\xcf\xc6\x80\x9e\x98\xa0\x54\x2c\xa2\ \xeb\x96\x9f\x12\xa5\x35\x9e\x9f\x41\x2a\x8d\x45\xb2\x72\xe5\x4a\ \xc6\xbf\xf2\xd5\xff\x14\x10\x32\x19\xec\x43\x0f\xf0\xb9\xc5\x8d\ \x24\x71\x09\x4f\x19\x24\x09\x51\x6c\x89\x12\x4b\x92\xda\xc9\xc9\ \x6c\x0c\x51\x14\x79\xeb\xd7\xaf\x3f\xb7\x20\xab\xd1\x13\x67\xce\ \xb0\x6a\xda\x33\xaf\x58\xe4\xdc\xf0\xf0\x05\x06\xac\x75\x68\xcf\ \x43\x1b\x08\x82\x2c\x0d\x8d\x4d\x48\x2f\x4b\x7b\xfb\x32\x3e\x7e\ \xe2\x7b\x0c\x7e\xe5\x6e\xf4\xd0\x20\xe2\xb6\x35\x6c\xdc\xb4\x81\ \xe2\xe8\x10\xb8\x08\xdf\x0b\x10\x24\x58\x2b\x88\x13\x1f\x25\xc1\ \x53\x82\x52\xa9\x84\x52\x6a\x74\xca\xff\xaf\x69\x3f\xe0\x79\x1e\ \x1d\xab\x57\x13\x4e\xaf\x25\xf5\xf7\xd3\xf7\xf1\xc7\x17\x56\x98\ \xd6\x3a\x8c\x03\x3f\x23\x51\x7e\x16\x3f\x68\xa0\x58\xaa\xe1\x6c\ \xcc\xaa\x55\xed\x34\x17\x02\x82\x40\x80\x8d\x19\x3d\x3f\x4c\xa9\ \x54\xc5\xf3\xb2\xe4\xb2\x1a\x67\x13\x10\x92\xc4\x28\xb4\x11\x48\ \xe1\x18\x1c\x1c\x74\xc0\xef\xe7\x13\x85\x94\x73\x4e\xcc\x05\x22\ \x8a\x22\xde\xef\xed\xbd\x88\x01\x91\xa6\x64\x3f\xfa\x88\xfe\xfe\ \x7e\xda\xdb\xdb\x71\x6e\xd2\xf7\x3d\x0f\xc2\xc4\x62\xb1\xe4\x72\ \x82\x34\x36\x8c\x9d\xff\x94\x89\x89\x22\xe3\xc5\x10\xec\xa4\xf8\ \x5a\x90\xcb\x67\x10\xa4\x58\x9b\x80\x54\x58\xa7\x48\x12\x81\x92\ \x8a\x0f\x3f\xfc\xb0\x96\x24\xc9\xaf\xae\x94\xc8\x32\x40\xf3\x95\ \xa2\x90\xe7\x79\xac\x5b\xb5\x6a\x66\x41\xea\xb5\xd7\xf8\xe3\xa1\ \x43\x48\x29\xf1\x7d\xbf\xbe\x02\x95\x78\x5a\xa1\x95\x24\xe3\xfb\ \xe4\xf2\x0d\x48\xa5\xc9\x65\xf3\x04\x41\x96\x7c\x3e\x4f\x61\xd1\ \x22\x5a\x5b\x9b\x11\xc2\x61\x8d\x01\x2c\xc6\xa4\xe0\x2c\xbe\xb2\ \x8c\x17\xc7\x18\x1b\x1b\xfb\x64\xdf\xbe\x7d\x7f\x9c\x0b\x80\x02\ \xf2\x40\xc3\x54\xe5\x7a\xae\x4c\xfc\x7e\x6f\xef\x4c\xf4\x67\xcf\ \x12\x1d\x3e\xcc\xbf\x3e\xf8\x00\x29\x05\x5a\x2b\x94\x92\x28\x25\ \xd1\x5a\xe1\x69\x89\xb5\x82\x5c\xae\x81\xc2\xa2\x56\x16\x35\xdf\ \x44\x43\x53\x0b\x99\xa0\x80\x90\x19\xa4\xf4\x48\x8d\xc1\x98\xc9\ \xb0\x89\x33\x34\x04\xf0\xee\xbb\xef\x56\xe3\x38\xfe\x8e\x10\xc2\ \xcd\x05\xc0\x03\xfc\x3a\x0b\xb3\x46\x9f\xe9\x73\x60\x5d\x7b\xfb\ \xac\xfe\x57\x78\xf9\x65\x7e\x77\xf0\x20\xc5\x62\x11\x29\x05\x4a\ \x4a\x94\x14\x78\x5a\xe2\x69\x49\x6a\x40\xa8\xcc\xa4\x48\x1f\x44\ \x80\x13\x19\x90\x01\x42\x66\x40\x68\x92\x74\x32\x64\x2e\xca\x0a\ \x4e\xfd\xf3\xfd\xb4\x58\x2c\xfe\x61\xdf\xbe\x7d\x7f\xba\xd2\x7e\ \x60\xca\xef\x85\xb5\x76\xbc\x5a\xad\x7e\xae\xad\xad\xed\xb2\xc5\ \xd9\x65\xcd\xcd\x4c\xec\xdd\x3b\xe3\xff\xd8\x18\x0a\xe3\xe3\x1c\ \xf8\xc5\x2f\x78\x74\xcf\x1e\x1a\x9b\x9a\xea\x19\xd9\xe2\x69\x89\ \x70\x06\x21\x7c\x90\xf5\xb8\x6e\xc1\x09\x81\x13\x12\xa4\x41\x29\ \x8b\x75\x8e\x45\x39\x9f\xfe\xbe\x8f\xdc\xe9\xd3\xa7\x3f\x79\xe1\ \x85\x17\x9e\xac\x1b\x38\x99\xeb\x80\x43\x03\x05\xa0\x70\xef\xbd\ \xf7\x7e\xa3\xa3\xa3\xe3\xb9\xd6\xd6\xd6\x39\x23\x95\x4e\x92\x19\ \x1b\xf8\x28\x8e\x89\x93\x04\x21\xa5\x6c\x59\xb2\x44\x3e\xf2\xc8\ \x23\xac\x5c\x79\x0b\x71\x6a\xa9\x84\x29\xc5\xf1\x0a\xd5\x28\x25\ \x8e\x13\xac\x09\x31\x69\x48\x9a\xc6\x98\x34\xc1\x18\x83\x27\x05\ \xc2\x1a\x4e\x9c\x38\x6e\x07\x06\x06\xfa\x5f\x7a\xe9\xa5\x27\x4e\ \x9d\x3a\x75\x12\x38\x07\x94\x00\x33\xd7\x09\x4d\x16\x68\x04\xf2\ \xbe\xef\x37\xb4\xb4\xb4\xb4\x00\xc2\x39\x37\xaf\x02\x80\xb5\x56\ \x5b\x6b\x73\x49\x92\x64\x9d\x73\xb9\x5b\x6f\xbd\x75\xcd\xce\x9d\ \x3b\x1f\x5f\xbb\x76\x6d\xe3\x7d\xf7\xdd\xa7\x73\xb9\x3c\x95\x5a\ \x44\x35\x4c\xa9\x86\x09\xb5\x28\x45\xb8\x18\x63\x62\x34\x16\x67\ \x12\xfa\xfa\x3e\x76\xc7\x8e\x1d\x33\x43\x43\x43\x7f\x7b\xfe\xf9\ \xe7\x7f\x54\x2a\x95\x3e\x01\x86\x81\x89\xf9\x00\xa0\x3e\x0f\x72\ \x40\x50\x67\x45\xce\xb7\x82\x31\x95\x12\xea\xe3\xf3\x40\xd6\xf7\ \xfd\xc6\xfb\xef\xbf\xff\xab\x9b\x36\x6d\xfa\x56\x53\x53\x53\xd0\ \xd9\xd9\xe9\xb5\xb4\xb4\x88\x20\x08\x10\x42\x50\x2e\x97\x29\x95\ \x4a\xf4\xf7\xf7\xa7\x7d\x7d\x7d\x94\xcb\xe5\x0f\xde\x78\xe3\x8d\ \x9f\xbf\xfd\xf6\xdb\x47\x80\x31\x60\x04\xa8\xd4\x95\x8f\xff\x9b\ \x33\x32\x55\x57\x5c\xfd\x97\x00\xa6\xde\x1d\xd4\x41\x04\x75\xc9\ \xdc\x75\xd7\x5d\xeb\xd7\xad\x5b\xb7\x7d\xf1\xe2\xc5\x6b\x7d\xdf\ \xbf\x09\xc8\x1a\x63\xc6\xaa\xd5\xea\xa7\x03\x03\x03\x3d\x3d\x3d\ \x3d\x7f\xe9\xed\xed\x1d\x06\xca\x75\x09\xeb\xca\xd7\xae\xe9\x98\ \x75\x81\xaa\x80\x99\x3a\xbb\x53\x46\x99\x1e\x05\x6d\xdd\x35\xe2\ \x69\x62\x6e\x9c\x84\xdf\x68\xd7\xb9\xfd\x1b\x5d\xf7\x24\x46\x78\ \x91\x97\x0f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0c\xaa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2a\x0a\xef\x60\x9b\xe2\x00\x00\x0c\x2a\x49\x44\x41\x54\x68\ \xde\xed\x5a\x6b\x8c\x55\xd7\x75\xfe\xd6\xda\xe7\x9c\xfb\x9e\xf7\ \x83\x19\x66\x18\x18\x63\x83\x8d\xc1\xd8\x60\x8c\x55\xec\xaa\x4e\ \x95\x08\xc7\xb5\x15\x27\x34\x55\xa8\xac\x90\xc8\x8d\x54\xa9\xaa\ \x9a\x56\x6a\xfb\x8f\x3f\x95\x9a\x36\x89\x5d\xb9\xaa\x1d\x3f\x62\ \x42\xfb\xc3\x96\x49\x2d\xdb\x4d\x6c\xd7\x21\x21\x94\xc8\xd8\x18\ \x6c\x8a\xc7\x2f\x0c\x0c\x73\x19\x98\x19\xe6\xbe\x5f\xe7\x9c\xfd\ \x58\xfd\x31\x83\x34\x42\x6d\x63\x60\x08\xfd\xd1\x2d\x7d\x3a\x5b\ \xe7\x5e\xed\xfd\x7d\x6b\x7d\x6b\xdd\x7d\xef\xb9\xc0\xff\x8f\x6b\ \x3b\x68\xb1\x16\xda\xb9\x73\x27\xe7\xf3\x95\x8d\x4e\xf1\x97\x89\ \x82\xad\x02\xd7\x4f\xd6\x74\x02\x02\x51\x5e\x89\xc0\xd3\x70\xe6\ \xa7\x0e\xfa\xc7\xbb\x9e\xfa\x87\x77\x00\xc8\xff\x09\x01\x3b\x77\ \xee\xf4\xf2\x67\x6b\x5f\x77\xa4\xfe\x26\x9d\xe9\x4c\x0e\xdd\x70\ \x5b\x66\xc9\xd2\x11\x95\xcd\xa5\x91\x4b\xa5\xa0\x18\x08\xe3\x10\ \xad\x56\x0b\x67\xcf\x4c\xd8\x13\x63\x47\x1a\x8d\xf2\x6c\xc4\xec\ \xfe\xb2\x52\x3c\xbd\xfb\x85\x17\x5e\xb0\xd7\x4c\xc0\x37\xbe\xf1\ \xed\x5b\xe0\xa9\x57\x3a\x7a\x47\xba\xd6\x6c\xfa\x42\xa6\xbd\xa3\ \x03\xb3\xb5\x16\x0a\xb5\x10\xad\x58\x23\xd2\x1a\x02\x87\x74\xd2\ \x43\x26\xe1\x61\xa8\x27\x83\xe5\x7d\x39\x54\xca\x35\x1c\xf8\xf9\ \x6b\xcd\xa9\x33\x27\x67\x9c\xc4\xf7\xef\x7a\xf2\x91\x63\xbf\x71\ \x01\x3b\xbe\xf5\xe7\x5f\x21\x78\xbb\xd6\xdd\xf5\xfb\xe9\xfe\xc1\ \x65\x34\x3e\x53\xc3\x4c\xa9\x81\xee\x0e\x85\xbe\x0e\x1f\x1d\x59\ \x0f\xa9\x40\x09\x31\xc4\x5a\x48\xb5\x19\x63\xba\xdc\x92\xa9\x52\ \x93\x96\xf7\xb5\xab\x4d\xd7\xf7\x23\x7f\xe6\x9c\xbc\xf6\xe3\xdd\ \x0d\xe3\xf4\x8e\x67\x7f\xf0\xbd\x3d\xbf\x31\x01\x3b\xbe\xf5\x17\ \x0f\x04\x41\xee\x5f\x36\x7e\x6e\x7b\x36\x42\x0a\x27\xa6\x2a\x18\ \x1d\x4c\x60\xd5\x50\x0a\x99\xa4\x02\x33\x39\x40\x04\x42\x8e\x48\ \xc4\x39\x81\x00\x70\x4e\x60\x9d\xe0\xe8\x78\xc9\x4d\xce\x36\xf8\ \xae\x9b\x06\xfd\xce\xb4\x47\xcf\xed\x7a\xaa\xd1\x68\x54\xb6\x3f\ \xfb\x83\xef\xbe\x74\xa9\x5c\xd4\xe5\xd8\x86\xbd\xc4\xcb\x1b\x3f\ \xbf\x23\x57\x0c\x7d\x14\xea\x4d\xdc\xb5\xb6\x1d\xa3\x03\x29\x24\ \x7c\x12\x66\x38\x02\x5b\x86\x38\x62\xb2\x00\x39\x22\xb2\x04\x38\ \x22\x72\x00\x49\x5f\x7b\x4a\x66\x2a\xad\xf8\xf8\xb9\x8a\x0d\x7c\ \x8f\x7f\xfb\xae\x3b\x93\xc7\x8e\xbc\x73\xef\xda\x5b\x37\xfe\xe4\ \xbd\xc3\x07\x67\x2e\x85\x0f\x5f\x6a\xa7\x41\x90\xdc\xb3\x66\xcb\ \x57\xdb\xea\x26\x40\x33\x0e\x71\xcf\xfa\x4e\x74\xe5\x3c\x10\xc4\ \x11\xc8\x30\x60\x98\xc5\x80\x48\x03\x30\x44\xf3\x60\xd6\x60\xd2\ \xcc\xa4\x95\x22\x73\xe3\x50\xa7\xf3\x3d\x0e\x3f\xc8\x17\x9b\x85\ \xba\xd6\x0f\x6e\xff\x66\x1b\x53\x72\xcf\xa5\xba\xe2\x92\x32\xb0\ \x62\xd5\xc6\xaf\x77\x2d\x5d\xf3\x95\xbe\x91\x75\x89\xfc\x6c\x0d\ \xf7\xdc\xda\x81\x44\x00\x10\x89\x63\x22\x43\x04\x47\x20\x4b\x44\ \x96\x2f\x80\xc9\x10\xc1\x32\xe0\x08\xe2\x00\x38\x01\xd9\x54\x42\ \xe1\x7c\x25\x0c\xc5\xc1\xe5\xcf\xd7\xec\xfa\x55\x83\x41\xa1\x52\ \x4f\x2d\x5f\x76\xdd\xe4\x7b\x87\x7f\x75\x74\xd1\x33\xb0\x6d\xdb\ \x36\x45\xa4\xbe\x33\xba\xf6\xee\xdc\xc4\x4c\x03\x6b\x57\xa4\x91\ \xf0\x01\xc8\x5c\xe4\x41\xb0\x44\x73\x11\x66\x22\xcd\x8c\x39\x10\ \x34\x83\x34\x13\xc7\x8a\x38\x26\xa6\x98\x69\xee\x7e\x47\x36\xa1\ \x3d\x8f\x42\x4f\x71\x74\x60\xec\x5c\xfd\xf7\xb6\x7e\x21\x4d\x8c\ \xbf\xdf\xb6\x6d\xdb\x67\x0e\xac\xf7\x59\xdf\x98\x69\x5f\x7a\x57\ \x7b\xf7\xb0\x2f\x1c\xc0\xb8\x26\x86\x7a\xb2\x10\x71\x42\x4c\x56\ \x20\x96\xc1\x86\x89\x0c\x48\x2c\x08\x96\xe7\x33\x01\x82\x13\x11\ \x11\x01\x08\x10\x0f\x20\xcb\x4c\x22\xc2\x29\xdf\x8b\x03\x4f\x09\ \x91\x93\x6a\x33\x12\x01\xa7\x57\x5c\x7f\x63\xe2\xa4\xd5\x5b\x00\ \xfc\x72\x51\x33\x40\x5e\x72\x7b\xef\xc8\x2d\xed\xa5\x7a\x88\xbe\ \x4e\x05\x22\x07\x80\xe6\x3d\x4e\x86\x89\x34\x20\x86\x89\xb4\x47\ \x1c\x33\x73\xcc\x8a\x62\x22\xc4\xcc\x34\x07\x45\xb1\x62\x8e\x14\ \xcf\xdd\x23\x92\xa6\xef\x73\xe8\x2b\x0e\x7d\x8f\xa3\x13\x33\x95\ \xd6\x6d\x1b\x37\xa5\x88\x83\xed\x8b\x6e\x21\x22\xba\xbb\xab\xbb\ \x9f\x2a\x8d\x10\xc9\x84\x40\x00\x47\x24\x56\x04\x76\xde\x42\x86\ \x89\x34\x11\x69\x62\x68\x90\x68\x26\xc4\x6a\x9e\xbc\xc7\x1c\x2a\ \xe6\x88\x88\x62\x10\x62\x26\x8e\x62\xeb\xea\x81\xe2\x30\xf0\xe6\ \x44\x4c\x96\xea\xd5\x1b\x56\x0c\x33\x88\xee\x5e\x74\x0b\xc1\xb9\ \xde\x20\x95\x80\x76\x4d\x10\x02\x80\x60\x04\xb0\x0c\x32\x17\xbc\ \x4e\x4c\x86\x89\x35\x13\x0c\x33\x19\xcc\xbd\x6e\x45\x44\x40\x4e\ \x04\x2c\x50\x44\x10\xa2\x46\x2b\xd6\x04\x6a\xfa\x8a\x13\x98\x3b\ \x18\x71\x14\x9a\x56\x36\x9d\x04\xc4\xf6\x2d\xba\x00\x86\xcb\x81\ \x15\x40\x06\x61\xcc\x9a\x1d\x2c\x31\x2c\x31\xcc\x85\x0c\x10\xa0\ \x99\x44\x13\x58\x33\xe6\xad\xc5\x64\x45\xc4\xc9\x5c\xb2\x45\xac\ \x10\x01\x28\xd6\x5a\xb3\xbe\xcf\x04\x00\x42\x42\x56\x88\x9d\x63\ \x86\x40\x3c\xa6\xec\xa2\x0b\x70\x80\x56\x64\x3d\xc0\xa0\xd4\x90\ \xd8\x01\xce\x03\x0c\xcb\x5c\x9f\x67\x90\x56\x4c\x31\x13\x6b\xc5\ \xd0\x4a\xf1\xfc\xe7\x00\x59\x86\x72\x80\x88\x03\xe0\x29\x41\xa9\ \x1c\x15\x85\x28\x4a\x28\x0e\xe6\x54\x81\x44\x09\xc3\x41\x11\x13\ \x44\x60\x17\xdf\x42\x50\x65\x71\x51\xca\x63\x18\x80\xf4\x64\xb1\ \x11\x8f\xf6\xe7\x40\x0c\x23\x10\x43\xcc\x9a\x88\x34\x93\xd3\xc4\ \x1c\x43\x44\x2b\x4f\x69\x26\x31\x20\x76\xe4\x9c\xb3\x02\x94\x6b\ \xd1\x6c\x23\x8a\x1b\x81\xa2\x40\x0b\xcf\x99\x4b\x09\x8b\x28\x65\ \x1d\x7c\x88\xc0\x09\x95\xae\x82\x00\xfa\xa8\xd9\x28\x0f\x64\x92\ \xbe\x15\xc0\x9c\x99\x6d\xb4\x96\xb4\xa7\x39\x97\xf1\x2d\x33\x6b\ \x00\x9a\x88\x62\x26\x8a\x15\xab\x58\x11\xc5\xcc\xa4\x49\xc4\x32\ \xc4\xc6\x40\xb3\x50\x89\xa6\x5a\xc6\x18\xdf\x53\x3e\x11\x3b\xc0\ \x40\x84\x29\x10\x61\x27\xce\xeb\x48\x26\xb3\xcd\x56\x64\x40\xc8\ \x2f\x7a\x17\x72\x2e\xda\x3d\x3b\x79\xb2\xd9\xd3\x91\x76\x6a\xae\ \x6d\xc6\xc7\xcf\x56\x4a\xd3\xa5\x66\x29\x8a\x6d\x73\xcd\xb2\x8e\ \xd5\x83\x5d\xc9\xe1\x84\xaf\x98\x20\x31\x94\xc4\xe2\x6c\x43\x5b\ \x4c\x55\x9b\xfa\xa3\x42\x25\xfe\xc0\xc2\x96\xbb\xbd\xd6\x3d\xa3\ \x6d\xd1\x9f\x04\x0a\x51\xa0\x38\xf2\x15\xc7\x8a\xa1\x3d\x4f\xc5\ \xcb\xbb\x72\x6d\x9f\x9c\x38\x19\x89\xb3\x7b\x16\x5d\x80\x6e\xea\ \x7f\x9d\xfc\x74\xac\xd5\x97\x0d\xe0\x07\x6c\x98\xc8\x3a\x41\x7c\ \xbe\x12\x56\x4e\x9c\xab\x4e\x36\x43\x5b\x4e\x04\x7e\x30\xdc\x97\ \xb9\xbd\xa7\x2d\xb8\xc9\x17\xdb\x1e\x47\x11\xa2\xb0\xe6\x91\x6d\ \x2c\xe9\x4d\xeb\xbb\x47\x7b\xbc\x3f\x1a\x1e\xec\x5d\xef\x27\xd2\ \x33\x9e\x52\xa1\x52\x2a\x52\x1e\x47\x4a\x71\xec\x11\xe9\xa5\xdd\ \x99\xbe\xb7\x0e\xec\x37\x64\xed\x8b\x8b\x7e\x16\x3a\x76\xec\xed\ \x68\xdd\xfa\x3b\xb4\x62\xdc\xbd\x7c\xc5\xa8\x34\xc2\xb8\xee\x2b\ \x0e\x03\x9f\x5b\x81\xcf\x51\xe0\xab\x7a\x26\x50\xfe\xd1\x53\x85\ \x3d\x09\x8f\x74\x2e\x15\xf4\xb7\x67\x82\xd5\xed\x99\xc4\xda\xb6\ \x74\x72\x35\x33\xa5\x9b\xad\xe8\x78\xc2\x4f\x18\x43\xfe\x2f\xea\ \x91\x29\x0a\x44\x89\x83\x82\x40\x0d\x75\xb7\x8d\xb6\x1a\xd5\x9e\ \x5f\xec\xfd\xd9\x1b\x4f\x3f\xf9\xdd\xa7\xae\x42\x0d\x00\x23\x83\ \x99\xc7\x4e\x8c\xbd\xbb\x7d\x64\x64\xd9\xca\xa5\x3d\x03\xc9\x72\ \xbd\x59\x62\x86\x55\x4c\xe6\xcc\x6c\x23\x3f\xd2\x93\x19\x52\xbe\ \x32\x93\xa5\xf8\x57\xa9\xba\x6d\x06\x3e\xb5\x7c\xc5\x31\x31\x69\ \x16\x25\xc9\x74\x47\x4f\x3a\x13\xfc\xc1\xb9\xc9\xda\x07\x8a\x95\ \xef\x93\xf3\x0c\xc3\xef\xe9\x48\x77\x0e\x77\x65\xd6\xfd\xdd\x77\ \xfe\xb1\x45\x36\xfa\xf6\x55\x3b\x8d\xee\xdb\xb7\xcf\xdd\xb2\xf6\ \xd6\x17\xf3\x13\xe3\x3b\x6e\x5a\x39\x9a\x6b\xeb\xec\x8c\x22\x6d\ \xaa\x09\xa5\x42\xa5\xa8\xd9\x9e\x09\x28\xe9\x29\xad\x8d\x4c\x79\ \x1e\x87\x09\x8f\x23\x5f\x51\x2b\x50\x1c\x29\x9f\x74\x36\xe9\x2f\ \xb7\x0e\x8d\x5a\x6c\x4e\x8b\x13\x65\x04\x2a\x97\x0e\x86\x47\xba\ \x72\xf7\x3d\xfe\xc4\xe3\x66\x6a\x6a\xea\xcb\xcf\x3c\xf5\xe8\xfb\ \x57\xed\xfb\x00\x00\x3c\xfb\xec\x63\xe7\x43\xd3\xda\xfc\xea\x4b\ \x7b\xc2\x94\xa9\xf7\x75\xb7\xa5\x52\x60\xb2\xcc\x64\x4b\xf5\x28\ \xef\x91\x64\x58\x89\xf1\x89\xb5\xf2\x28\x0a\x3c\x3f\xf4\x92\xdc\ \x4a\x78\x7e\x0b\x4e\xb7\x85\xc6\x8c\x29\xc5\x31\x2b\xd2\xa9\xa4\ \x9f\x58\xda\x91\xbd\xff\xf1\x27\x9e\xb0\xa7\x4e\xe6\xbf\xb6\xeb\ \xe9\x47\xf7\x5d\x2a\x9f\x4b\x16\x00\x00\xbb\x9f\x78\x64\xd2\x84\ \xd5\xcd\x3f\x79\x69\x4f\xd0\x9b\x4d\x0c\xb1\x22\x47\xc4\xae\x5a\ \x8f\x0b\xe5\x52\x21\x41\x56\x07\x9e\x07\xa3\x88\x63\x0e\x24\x4e\ \x32\xb7\xc2\x46\x25\x38\x77\xf6\x9c\x1f\x47\x76\xd2\x63\x31\x8a\ \x61\x7a\xd3\xa9\x4d\xfb\xf7\xef\x0f\x27\x4e\x8f\x3f\xbc\xfb\x87\ \xdf\x7b\xf5\x72\xb8\x5c\x96\x00\x00\x78\xfa\xe9\xc7\xce\xd4\x6b\ \xb5\x7f\xb3\x61\xbd\x8d\xe6\xbc\x28\x4e\x91\x29\x94\xaa\xa5\xe2\ \xf4\xb9\x5e\x61\xb6\xac\x60\x7d\x51\x9a\x95\x17\x7d\xfa\xe9\xc7\ \xfd\xa5\x62\x71\xc2\x4b\x72\x48\xa2\xac\x47\x6c\x15\xd3\xc0\x27\ \x1f\x7d\x9c\x79\xe6\xc9\xef\xbf\x70\xb9\x3c\x2e\x5b\x00\x00\x18\ \xa3\xdf\x2d\x16\x0a\xc8\x24\x82\xa4\x90\x08\x43\xc4\x08\x66\xc7\ \x4f\x7d\xda\xc7\x80\x28\x51\x4e\x14\xac\xa7\x44\xbf\x7f\xec\xd8\ \xa0\x23\x3e\xcd\xa2\x9c\x62\x71\x00\x84\x49\x7a\xcb\xb5\xda\xd9\ \x2b\xe1\xe0\xe1\x8a\x86\xfc\x72\xec\xd8\x7f\xfe\xf5\xe7\xef\x5f\ \x39\x30\x31\x35\x5d\x0b\x6b\xd5\x34\x74\x25\xc8\x8f\x1f\x5b\xff\ \xd6\x81\xf3\x4b\xb2\x29\x18\x63\x9a\xad\x52\xa1\x1c\x4e\x8c\x17\ \xba\x96\x2c\xc9\x9e\x8f\x74\xad\xad\xa7\x7f\x44\xe7\x72\xbd\x5d\ \x51\xa4\xbd\x72\xb1\x74\xe8\x9a\x09\xd8\xf5\xd4\xa3\xef\x3d\xfc\ \xc7\x7f\x75\x66\x4b\xa5\x30\xc2\x51\x61\x49\xa5\xf2\xc9\x80\xcf\ \x2e\x9d\x4c\x0a\x0a\xe7\x4b\x6b\xfa\x56\x2f\x43\xe0\x65\x31\x3b\ \x53\xc3\xc8\x48\x07\x92\x89\xf3\x9f\x9b\x9c\xc8\xcf\xe4\x27\x8e\ \x7d\xf0\x3b\xf7\x3c\x34\xfa\xda\xeb\x7b\x2b\x51\xac\x77\x5d\xc3\ \x0c\x00\xda\x44\x3b\x9e\xfb\xe7\x1f\xbd\xf5\x87\x0f\x7d\x2d\xc8\ \xa6\x6f\x54\xc5\xd2\x24\x7a\xfa\x97\x62\xe2\xd4\x49\x78\x37\x67\ \xe0\x05\x40\x14\x11\x56\xad\x5e\x85\xa1\xe1\x01\x65\x2c\x0f\xa4\ \x53\x2b\x07\x4e\x9f\x3a\x55\x7f\xfb\xe0\xdb\xef\xfd\xe8\x99\xef\ \xef\xbd\xd6\x3f\xee\xd2\xb6\xaf\xfe\x6e\x79\x60\x68\x53\xdb\x97\ \xbe\xf4\x20\x06\x06\xfa\x50\xa9\x4e\x21\x0a\x4b\x20\x68\x78\x9e\ \x43\x22\x91\x42\x36\x95\x43\x3a\xd3\x87\x74\xba\x1f\x87\x0e\xbf\ \x2d\xcf\x3f\xff\x62\x68\x58\x5d\xbf\xfb\x89\x47\x26\xaf\xa9\x80\ \x7b\xef\x5d\xb3\x7e\x68\x28\xfd\xee\x6f\x6d\x59\x8b\xc3\xef\xf5\ \xa0\xa7\x67\x09\xee\xb8\xe3\x36\x0c\x2d\x5d\x8a\x6c\x36\x0b\xdf\ \x0f\x60\x8d\x46\xb3\x59\xc7\xe9\xd3\xe3\x78\xe3\x8d\x03\xa8\xd5\ \xa6\x70\xf6\xcc\x9b\xc7\x5e\x7e\xf9\xe8\xba\x2b\xdd\xff\x8a\x2d\ \x64\xad\x9b\xae\xd5\xb5\x63\xae\xf3\xc3\xdf\xbc\x19\xe7\x67\xdb\ \xf1\xfe\xd8\x21\xfc\xfb\xeb\x3f\x43\xa3\x11\x21\x8e\x0d\x52\xa9\ \x00\x99\x8c\x42\x5f\x0f\x61\xe5\xf2\x16\x1a\x8d\x3a\x26\xf3\xd1\ \x9a\xad\x5b\x57\x26\x5e\x7d\xf5\xd3\xe8\x9a\x0a\x78\xfd\xf5\x0f\ \xcf\xdd\x77\xdf\x6a\x19\x3f\xd5\xc4\xed\xb7\x77\x63\xe3\x86\xdb\ \xb1\x6e\xed\x0c\x84\x1c\x9c\xb5\x10\x67\x50\xaf\xd7\x51\x29\x17\ \x51\x2a\x14\x71\x7a\xbc\x82\xe3\xc7\xcf\xc0\x39\xec\xbd\x52\xf2\ \x8b\x22\xe0\x8b\x5f\xbc\x61\xb4\xbf\x3f\xcb\xeb\xd7\x77\xa3\xbf\ \x7f\x03\x72\x99\x1b\x11\x05\x09\x18\x3b\x0d\x6b\x34\xc2\xd0\x82\ \x88\xa0\xb5\xc3\xb9\xa9\x12\xaa\xd5\x06\x9c\x58\x10\x51\x6a\x31\ \x1e\x70\xf0\x15\x2f\xc0\xbe\x09\x23\xe7\x9a\xcd\x18\xb3\x85\x77\ \xd0\x68\x1d\x87\x36\x33\x00\x04\xc6\x3a\x54\x2a\x0d\x4c\x4f\x17\ \x51\x2e\x57\xd1\xdb\x9d\x43\x7f\x7f\x07\x56\x5d\xbf\x02\x44\xb2\ \x79\xc3\x86\x0d\xfe\x35\x17\xf0\xca\x2b\x63\x13\x95\x72\x93\xc6\ \xc6\xca\x10\xc7\x70\xd6\x22\x8e\x34\xc2\x28\x82\xd1\x1a\xd9\x6c\ \x12\x7d\x7d\x9d\xe8\xed\xe9\x80\xe7\x2b\xc4\xb1\xc5\xc4\xe4\x0c\ \x44\xe0\x1d\x3e\x7c\x58\x5f\x73\x01\x0f\x3c\x70\xf3\x70\x6f\x6f\ \x1a\x1b\x37\xf6\xa3\xb7\xf7\x36\xe4\xb2\xab\x91\xc9\x2c\x45\x32\ \x91\x44\x32\x99\x80\x52\x0a\x44\x04\xeb\x1c\x66\x67\xab\xd0\xda\ \x61\xe5\x8a\x01\x24\x93\x09\x6c\xdd\xba\x72\xe8\x5a\x0a\x20\x00\ \x7e\xa9\x54\xcb\x1a\x23\x14\xc7\x31\x66\x67\x0f\x2f\xb0\xd0\xdc\ \x53\xbc\x7a\x3d\xc4\xf9\xe9\x32\x4a\xa5\x06\x7a\xfb\xbb\xd0\xd9\ \x99\x46\xa3\xd1\x82\x73\x62\xeb\xf5\xb8\x0d\x40\x0a\x40\x02\x80\ \x7f\x39\x6d\x5d\x5d\x86\x60\x0f\x40\x30\xbf\x69\x70\xfa\x74\xa5\ \x39\x30\xd0\x46\xf9\x7c\x75\x93\x8e\x5b\x4a\xa8\x06\xab\x63\x54\ \x6b\x4d\x14\x0b\x25\x54\x4a\x25\xcc\x16\x66\x71\xf6\xec\x59\x7c\ \xf2\xf1\x49\x1c\x3e\xfc\x21\x3e\xfc\xf8\x64\xad\x5e\x8f\xfe\x76\ \xdf\xbe\x53\xfb\xe7\x89\x7b\xf3\x5c\x2e\x5c\x2f\x08\x91\xcf\x12\ \xc5\x4b\xe9\x58\x0b\x37\xba\x30\x57\x00\xbc\xeb\xae\xeb\x5c\x36\ \x3c\xdc\xb9\x2d\x9b\xcd\x3d\xe8\x79\x3c\xac\x14\x60\xcc\x9c\xc5\ \x95\x0a\x60\xad\xc0\x18\x9c\x28\x95\x8a\xcf\x7d\xf4\xd1\xcc\x4f\ \x8b\xc5\x56\x19\x40\x0c\x20\x02\x60\x00\xd8\x79\x98\x05\xd7\x0b\ \xb8\xe2\x0c\x2c\x24\x7d\x31\x12\x00\x32\xa5\x52\x28\xe3\xe3\xa5\ \x8f\xfb\xfb\x6f\x30\xc3\xc3\x37\x6f\x78\xe8\xa1\x3f\xf5\xb6\x6c\ \xb9\x1f\xab\x57\xdf\x89\x5c\x6e\x18\x53\x53\xad\x70\x6a\xaa\xf1\ \xfc\x9b\x6f\x8e\xed\x6d\xb5\x0c\x16\x04\x80\xe7\x23\x2d\xff\x4b\ \x40\xe5\xaa\x15\xf1\xc5\xe3\xc8\x91\x23\x3f\xaf\x56\xab\xc5\x43\ \x87\x0e\x99\x30\x0c\x11\x45\x11\xf2\xf9\xbc\x31\xc6\x94\x8f\x1e\ \x3d\xfa\x1f\x8b\xbd\xdf\xa2\x59\xe8\x42\x4d\x00\x08\x06\x07\x07\ \xfb\x36\x6f\xde\xfc\x67\xc9\x64\xf2\x4e\x11\x41\xb3\xd9\x3c\x78\ \xf0\xe0\xc1\x7f\x9a\x9e\x9e\x9e\x05\xa0\xe7\x11\x2f\xb0\xd0\xc5\ \xd6\xf9\xcc\x16\xa2\xcb\x28\x62\xf5\x3f\x80\x17\x5c\xe9\xa2\xf9\ \x05\x1b\xb8\x79\x72\x0b\xe7\x6e\x81\xff\xdd\x45\xf5\xe0\xae\xe6\ \x69\x94\xe6\x23\xcf\xff\x0d\x68\xc1\xda\x17\x77\x14\x59\x20\xe0\ \x62\x18\x5c\xe2\x7f\x28\xe8\x2a\x59\x92\x7e\x4d\x41\xca\x67\x6d\ \x93\xbf\x6e\xfc\x17\x9c\xa8\x38\xda\x96\x05\xc6\xf6\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x25\x88\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x22\x13\x6c\x07\x54\x8f\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xed\x5d\x77\x9c\x14\xe5\xf9\xff\x4e\xd9\xd9\xbe\ \xc7\xdd\x71\x8d\xa3\x1c\x1d\x54\x94\xa6\x02\x02\x22\x45\x82\xc1\ \x02\xe6\xa7\x41\x90\xa2\x20\x4a\xac\x44\xec\x05\xa3\xb1\x10\x8d\ \xc6\x12\x8d\x20\xb1\xc5\x16\xd4\x68\xd4\x00\x1a\x23\x28\x16\xb0\ \xa0\x70\x14\x81\xe3\x84\xe3\xee\xb8\xbd\xbb\xed\x75\xda\xef\x0f\ \x98\xf5\xbd\xb9\xd9\xdd\xd9\xdd\xd9\x83\x10\xe6\xf3\x99\xcf\xce\ \x4e\x79\x67\xde\xf7\xfb\xf4\xe7\x99\x77\x80\xe3\xcb\xf1\xe5\xf8\ \x72\x7c\x39\xbe\x1c\x5f\x8e\x2f\xff\x8b\x0b\x75\x7c\x08\x8e\xbd\ \x65\x64\x57\x58\x7f\x68\xc6\xb7\x7d\xfa\x9f\xd2\x75\xe4\xc8\x91\ \x75\xa2\x28\xbe\xba\x7c\xf9\xf2\x07\x00\xf0\xea\x73\x99\xe3\xc3\ \x75\x6c\x2d\x4b\x01\x7a\x6b\x19\xf6\xee\x6f\x42\xaf\x58\x24\xc0\ \xed\xaf\xab\xef\x5c\x51\x51\x71\xd6\xcc\x99\x33\xaf\x2e\x2a\x2a\ \xda\x5d\x5d\x5d\xbd\xfd\xf8\x28\x1d\xc3\xcb\x75\x17\x61\x25\xc7\ \x42\x06\x20\x53\x14\x25\x3b\xec\x66\x19\x80\x6c\xb3\xd9\xe4\xf3\ \xcf\x3f\x5f\x98\x35\x6b\xd6\xef\x8e\x8f\xd2\x31\xba\x3c\x7b\x13\ \x6e\x3e\xf8\x9e\x55\x7e\x6b\x59\x89\xec\x72\x70\x32\xf0\x33\x21\ \x28\xdb\x7d\xfb\xf6\x95\xa6\x4d\x9b\xb6\x58\xb7\x0d\x30\x64\xc8\ \x90\x12\x86\x61\x1e\x97\x65\x79\x2c\x00\x47\xb2\xf3\x2a\x2a\x2a\ \xe8\x93\x4f\x3e\x79\xdf\x87\x1f\x7e\xb8\x5b\x7d\x8c\xa6\xe9\x8c\ \x3b\x73\xc5\x15\x57\x0c\xeb\xd6\xad\x5b\xa9\xf2\x5f\x92\xa4\x76\ \x6d\x32\x0c\x03\x8a\xa2\x12\xab\x2c\xcb\xa0\x69\x1a\x2c\xcb\x82\ \xa2\x28\xd0\x34\xdd\xe6\x57\x92\x24\x48\x92\x04\x59\x96\x41\x51\ \x54\x9b\xb6\x24\x49\x6a\x73\x1e\x79\x5c\x96\xe5\xc4\x33\xc8\xb2\ \x9c\xb8\x9e\x6c\x8f\xfc\x05\x00\x41\x10\x12\xcf\xa3\x35\x06\x9b\ \x36\x6d\x5a\x71\xdb\x6d\xb7\x2d\x52\xfe\x8f\x1d\x3b\xf6\x22\x49\ \x92\x66\x25\x35\xd6\x0e\x3f\x10\x45\x51\x63\x34\x8e\xbd\x31\xe3\ \xd4\x75\xeb\x2f\x38\xd3\xf2\xa2\xb3\xa0\x33\xc5\x59\x8a\xf1\xaf\ \x75\x35\xf8\xd5\x6d\x41\xc4\x79\x59\x39\x27\xd1\x8f\xd2\xd2\xd2\ \x78\x55\x55\xd5\xf4\x8d\x1b\x37\xbe\xcf\xa6\x03\x82\x65\xd9\xa7\ \x45\x51\xbc\x90\xb8\x59\xb2\x07\x44\x6d\x6d\xed\x09\xb2\x2c\x9f\ \xa0\x3e\x26\x8a\x62\xca\x6b\xb5\xda\xe6\x79\x1e\x26\x93\xa9\xcd\ \x71\x12\x3c\x9a\xa6\x13\xab\x32\xc0\xe4\x7f\x2d\x22\x50\xb6\x95\ \xb6\x94\x41\x51\xf6\x29\xbf\x0a\xc8\xca\x80\x91\xd7\x28\xcf\xa0\ \x00\xac\xac\x82\x20\x40\x14\xc5\x36\x6d\x69\xb5\xa1\x6c\x47\x22\ \x91\x9e\xca\xff\x61\xc3\x86\x99\x24\x49\x5a\x46\x51\x54\x8f\x4c\ \xc6\x48\x59\xc6\x9c\xd6\x73\xc1\xf8\x33\x9a\x2f\x77\x38\xbd\x94\ \xd9\xd1\x15\x81\x96\xdd\xd8\xf6\x13\x17\x2e\x2b\xef\x6a\xab\xaf\ \xaf\x87\x28\x8a\x89\x7e\xca\xb2\x8c\xa6\xa6\x26\xce\xef\xf7\x3f\ \x02\x60\x4d\x5a\x02\x90\x65\x79\x9c\xea\x7f\xd2\x07\x89\xc7\xe3\ \x29\x8f\xab\x39\x2f\xdd\x71\x05\x4c\xa5\x4d\x86\xf9\xd9\x66\x65\ \x18\xa6\x0d\xe8\xe4\x7f\xe5\xfe\xca\x7f\xa5\x5d\x8a\xa2\xc0\x30\ \x4c\x9b\xff\xc9\x9e\x43\x14\xc5\x36\x5c\xab\x3c\x03\x49\x20\x6a\ \x89\x44\x4a\x05\x86\x61\xda\x10\xbe\x7a\x5c\x0a\x0a\x0a\x8a\x47\ \x8d\x1a\x35\x18\x80\x95\xa6\xe9\x09\x14\x45\xf5\xc8\x66\x8c\x26\ \x9c\x39\x0c\x27\x0d\x1e\x8d\xed\xf2\x64\xba\xc0\xfc\x3e\x04\xcf\ \x87\x58\xbd\x91\x0d\xaf\x5c\xeb\xb4\x59\x2c\x40\xd7\xae\x5d\x51\ \x57\x57\x47\x10\x01\x20\xcb\x40\x34\x1a\xed\x0f\x60\x6e\x5a\x02\ \x10\x45\xb1\x58\x2f\x98\x6a\xb1\x99\xec\xba\x54\xd2\x40\x3d\xb0\ \x5a\xdc\xa3\x80\x4d\x6e\x2b\xc7\xd4\xdc\xae\x45\x04\xea\xf6\x94\ \x7b\xca\xb2\x9c\x20\x10\x45\x72\x91\xa2\x9d\xbc\x8f\xb2\x4f\x69\ \x4b\x51\x23\xea\xf6\x15\x95\xa0\xee\x6f\x69\x69\xe9\xa9\x34\x4d\ \x7f\x97\xcb\x18\x0d\x3d\xa5\x27\x86\x9e\x36\x1e\xc5\xc5\xc5\xe0\ \x38\x0e\xdf\xbb\x9d\x88\xec\xf3\x89\x4b\x5f\xdc\x61\x53\x86\x91\ \xe3\x38\x94\x95\x95\xe1\xe0\xc1\x83\x87\x89\x00\x60\x68\x60\xda\ \xf4\x5f\x61\xd5\xaa\x55\x53\x59\x3d\xfa\x58\x0f\x98\x99\x76\x24\ \x1d\xa5\x2b\x7a\x54\x2d\xfe\x49\xdd\x4f\x4a\x00\x65\x95\x24\x09\ \x2c\xcb\xb6\x93\x0e\x8a\x5a\x20\xef\xab\xb4\xa7\x56\x3d\xca\xf9\ \x26\x93\xa9\x8d\xe8\x94\x65\x19\x97\x5e\x7a\xa9\x6e\xd1\x0c\x00\ \x0f\x3c\xf0\x80\x26\x51\x93\x44\x97\xcd\x18\x75\x72\x00\xe3\xc6\ \x4d\x4a\xf4\xab\xb4\xb4\x14\x03\x06\x0c\xc0\xce\x1d\x15\xcc\x90\ \x21\x7f\xc0\x37\xdf\x7c\x93\x18\x43\x51\x14\x51\xde\xd9\x2a\x5b\ \xd8\x98\xb8\xe7\x00\xcf\x8a\x12\xf0\xd6\x9b\xab\x50\x58\x58\xd8\ \x4d\xb7\x75\xa6\x25\xf6\x52\x71\xad\x9e\xe3\xe9\xda\x24\x39\x99\ \xe4\x7a\x05\x7c\x86\x61\xda\xad\x56\xab\x15\x1c\xc7\x81\xe3\xb8\ \x36\xe0\x28\x52\x80\x34\xd4\xc8\x36\x94\xff\x66\xb3\x19\x1c\xc7\ \xb5\xb1\x3f\x94\xeb\x94\x36\x32\xe9\x23\x45\x51\x09\x49\x42\xda\ \x10\xea\xf3\x33\x19\x23\x8b\x89\xc7\x2d\xe7\x6f\x42\x5f\xdb\x3b\ \xe0\xf9\x38\x22\x91\x08\xc2\xe1\x30\xa2\xd1\x28\xfa\xf5\xef\x8f\ \x3b\xee\xb8\x03\xa3\x47\x8f\x86\x2c\xcb\x88\xc5\x62\xe0\x98\x18\ \x3e\x7d\xb6\x73\xdd\xea\x47\xed\xec\x89\x87\x2d\x8f\x92\x42\x48\ \xe5\x2e\xcf\x02\x16\x19\x2e\x7a\x38\x37\xd5\x00\x65\xa2\x4e\x48\ \x1d\x2c\x49\x12\x4c\x26\x53\x1b\x7d\x4f\xea\x7d\x72\x5b\xb9\xd6\ \x6c\x36\x83\xa2\xa8\xc4\x75\xa4\x0a\x48\x26\xaa\x49\xe2\x23\x09\ \x86\x04\x22\x59\x5f\x92\x19\x7c\x4a\x5b\xa4\x14\x4b\x25\x15\x52\ \x8d\x11\xcb\x48\xb8\x7a\xf2\x56\x0c\xe8\xe5\x80\xab\x3c\x0a\x73\ \xcb\x07\xd8\xe1\x3b\x17\x66\xb3\x19\x0c\xc3\xc0\xe9\x74\xa2\xb8\ \xb8\x18\xd7\x5e\x7b\x2d\x58\x96\xc5\xbb\xef\xbc\x89\x8f\x9e\x2a\ \xfa\xa9\xd0\xe6\xef\x11\x14\x7c\xb8\x6f\x3e\xf0\xf0\x6b\x08\x77\ \x2d\xc2\xb8\xd7\xd7\xe1\xdb\x8c\x09\x20\x57\xd1\xae\xd7\x36\x50\ \x53\x3e\x29\xf2\xd5\xdc\xa1\x5e\x49\xab\x9d\xa6\x69\x08\x82\xd0\ \x46\xd4\x93\xc4\xa5\x7e\x16\x45\x4d\x90\xf7\x26\x01\xd4\xdb\x17\ \xb5\x67\xa1\x70\x3f\x69\x3f\x64\x3a\x46\x34\x25\x61\xf6\x98\x6a\ \x9c\x31\xd8\x0c\x67\xf9\x28\xf0\xf1\x28\xe4\xe6\x7f\xe2\xf5\x37\ \xeb\x71\xd1\x25\x57\x25\xa4\x0d\xc7\x71\xb0\xd9\x6c\x98\x33\x67\ \x0e\x2e\x38\xab\x93\xbf\xb2\xe8\xc5\x1e\x41\xbf\x07\xdb\x6a\x65\ \x58\x2d\x68\x5e\x3a\x0f\xe3\x27\x2d\xc6\x16\x00\xc8\x8a\x00\x92\ \x75\x94\x04\x4f\x8f\x11\x93\x6a\xf0\xd4\xa0\x92\x9c\xc9\x30\x4c\ \xc2\xd2\xd6\xb2\xce\x49\xc3\x4e\x10\x84\x84\x88\x57\x54\x49\xa6\ \xf7\x55\xbb\x8b\x7a\xfa\xa2\x7e\x66\x72\x5b\x01\x3f\x15\xb3\xa8\ \xdb\xa5\x00\x4c\x1d\xfa\x23\xa6\x8e\xa2\xe0\xac\x18\x03\x49\xa2\ \xe0\xae\xdb\x84\x45\x8f\xda\x51\xdb\xb4\x0b\x4d\xad\x4f\x62\xd1\ \xa2\x45\x10\x45\x11\x36\x9b\x2d\x21\x01\x99\xa2\x09\xae\x1f\xfc\ \x31\x84\x6b\x9e\x04\x80\x30\x25\x61\xea\xa4\x25\x87\xc0\xd7\x45\ \x00\x99\x80\xa9\x35\x08\xd9\x4a\x03\x2d\xcb\x9e\xb4\x03\x48\x57\ \x50\xf9\x55\x44\xbd\xd6\xaa\x18\x75\xc9\xc0\x24\x83\x41\x6a\xae\ \x57\x03\x97\x49\x5f\x14\x82\x13\x04\x21\x71\x6f\x85\x80\x33\x19\ \xa3\xb1\x03\xf6\x60\xce\xd9\x71\xb8\xba\x8c\x07\x28\x0b\x5a\xea\ \x3e\xc4\x6f\x1e\xb3\xa3\xb6\xc9\x02\x00\xa8\xa9\xa9\xc1\x63\x8f\ \x3d\x86\x45\x8b\x16\xa1\xb4\xb4\x14\x66\xb3\x19\xb2\x2c\x83\xe3\ \x38\xb8\xc3\xe3\xc0\x96\x72\x92\xd9\xfd\xf0\xaf\x27\x2f\xc1\x57\ \x6d\xfa\x9d\xa9\xd8\xcf\x06\xcc\x54\xd7\x26\x3b\xae\xf8\xd0\xa4\ \x1e\x56\x2c\x5a\xb5\x4b\xa7\xa5\xd3\xd5\x44\xcb\xb2\x6c\x3b\x55\ \x42\x1a\x81\x8a\x74\x50\x44\x35\x79\x2f\xd2\x7e\x48\xd7\x17\xad\ \x7d\x3c\xcf\xb7\x1b\xa3\x74\x71\x05\x72\x19\xd4\x75\x3f\xae\x9d\ \x16\x84\xab\x72\x22\x28\xb6\x00\xfe\xfa\xf5\xb8\xe7\xc5\x42\xec\ \xa8\xb3\xb4\x39\xaf\xae\xae\x0e\x0f\x3d\xf4\x10\x9a\x1a\x6b\xe1\ \xf3\xf9\x10\x0e\x87\x13\xea\x4f\x66\x0a\xde\x9b\xbc\x18\xff\x6c\ \x17\xe8\x33\x4a\xf7\xab\x45\xb0\x11\x41\x20\xd2\x7f\xd7\xb2\xda\ \xd5\xc0\x2b\x9d\x55\xd4\x03\x19\xde\x8d\xc7\xe3\x09\xee\xd6\x52\ \x03\x24\xe7\xab\xe3\x19\x64\xf4\x31\x53\xd1\xcd\x30\x0c\x38\x8e\ \x83\x24\x49\x88\xc7\xe3\x6d\x5c\x5a\x3d\x63\xd4\xb7\xac\x11\x77\ \xcd\x74\xc3\x55\x39\x05\x0c\xd7\x19\x81\xfa\x7f\xe3\x89\x7f\x56\ \xe0\xe3\x6f\xbd\xed\xae\xe7\x79\x1e\x83\xba\x35\x62\x5c\xd9\x9f\ \xf0\xb5\x67\x01\x02\x54\xc5\xa1\xf6\xe2\xf5\xbb\x63\x6c\xff\xff\ \xd3\x8c\xf4\xe6\xaa\xfb\x49\x6e\x23\xa9\x3b\x97\x00\x87\x12\x51\ \x13\x04\x21\xc1\x91\x6a\x91\xae\x00\xac\xdc\x97\x65\x59\x98\x4c\ \x26\x88\xa2\xd8\x86\xdb\xc9\x70\x30\x49\x3c\x64\x80\x46\x59\x15\ \xa9\x93\xac\x5f\x7a\x02\x5d\xea\xe3\x14\x45\x81\xe7\x79\xf0\x3c\ \x9f\x91\x3b\x49\x51\x14\xba\x15\xb5\xe2\xf7\x73\xea\x51\xd0\xf5\ \x1c\xb0\xb6\x4a\x04\x1b\xd6\x63\xd5\x97\x95\x78\x65\xf5\x81\x76\ \xd7\x49\x92\x84\xe1\xfd\x05\x3c\x7e\xbd\x09\xb1\xf0\x6e\x94\xf8\ \x6e\x45\x9d\xe5\x6e\x00\x54\x8d\xb5\x70\xe0\xe0\x0b\x26\x4f\x8e\ \x1b\x46\x00\x9a\x46\x8a\x4a\x04\xe7\xea\x29\x28\x49\x1d\x35\xe7\ \xab\x63\x00\x64\x8c\x40\xfd\x4b\x4a\x12\xd2\x00\x54\x73\xb9\x72\ \xae\x56\x12\x88\x34\xe6\xb4\xbc\x80\x74\x04\xad\xb8\xa1\x8a\x84\ \x22\xa5\x55\xaa\xa5\xcc\xe5\xc5\xfd\xb3\x6b\x50\xd8\x7d\x2a\x38\ \x67\x2f\x84\x9a\x3e\xc7\x7f\xb6\x57\xe1\x0f\xcf\x6f\xd5\x3c\xbf\ \x57\x79\x1c\x7f\xb9\xc9\x82\x78\xb4\x19\xad\x1e\x3f\x5a\x5a\x80\ \xbd\x0d\x8f\x0a\xd7\xff\xe1\xb2\xbe\x14\x35\x39\xa9\xf1\x92\x93\ \x17\x60\xa4\xdb\x97\x2a\x12\xa8\x58\xfb\x24\xf7\x48\x92\x04\x51\ \x14\x13\x31\x77\x05\x78\x25\x09\xa4\x06\x5f\xed\x7e\x29\x60\x2b\ \x2a\x43\xeb\x79\x14\x69\xa1\x56\x01\x99\x8c\x81\x20\x08\x09\x49\ \xa6\xdc\x57\x21\xc4\x64\x63\x50\x68\x0f\xe3\xc1\x39\xbb\x50\xda\ \xfb\x5c\x98\x0b\x06\x20\xe4\xde\x84\xea\x86\x5e\xb8\xe5\x8f\x5f\ \x40\x4b\x70\x94\xb8\x22\x78\x79\xa9\x15\x94\xd8\x82\x50\xd0\x8b\ \xbd\x0d\xc0\x8f\x8d\xc5\xf8\xc7\xa6\x1e\xd1\x1b\xa8\xa5\x52\xca\ \x64\x9f\x11\x79\x68\x3d\x86\x5e\x36\xd2\x40\xcd\xe1\xea\x58\x3f\ \x29\x09\x48\xce\x27\x23\x7d\x0a\xd7\x91\x92\x8a\x54\x13\x6a\xeb\ \x5c\xe9\x0b\x99\xcc\x21\x89\x2f\xd3\x3e\x92\xc9\x27\x85\x68\xb5\ \x8c\x40\xe5\x3a\x97\x35\x8a\xfb\x67\x6d\x47\x97\x7e\xbf\x84\xb5\ \x68\x10\x22\x2d\x3f\x60\x97\xbb\x12\x97\xdf\xb6\x1e\x92\xd4\x7e\ \x9c\x9c\x96\x18\x5e\xbe\xdb\x0e\x33\xd5\x82\x60\xc0\x8b\x6d\xb5\ \x40\x5d\xab\x0b\x6f\x7f\x3d\x00\x92\x94\x1e\x3b\x43\x08\x20\x57\ \x69\xa1\xb5\x9f\x24\x2a\x65\xd0\xd4\x19\xc0\x64\x2b\x29\xe6\xd5\ \x44\xa3\xce\x04\x92\x00\x69\xf9\xfd\xe9\x80\x4f\xd7\x17\xa5\xfd\ \x64\xd1\x44\xf2\x3a\x8b\x89\xc7\xef\x66\x54\xa3\xd7\x89\x53\x60\ \x2d\x1a\x8e\xa8\x6f\x3b\x0e\x78\x8b\x30\xf7\xa6\x8f\xc1\x8b\xed\ \x9f\xc1\xca\x09\xf8\xdb\x52\x2b\x8a\xed\x1e\x04\x03\x5e\x54\xef\ \x95\xd0\xe4\xb7\xe3\xd5\xcf\x4f\x04\x2f\xe8\x7b\x66\xc3\x08\x20\ \xd7\x20\x90\x96\x4d\xa1\x0e\xf3\x92\xd6\xbf\x3a\x17\x40\xda\x21\ \x8a\xe4\xe0\x38\x4e\xd3\x45\x54\x8b\x74\x85\x3b\xc9\xc0\x92\x3a\ \x80\x93\x4e\xca\xe9\xe9\x23\x99\x8e\x56\xdb\x13\x1c\x2b\xe2\xb6\ \x0b\xb7\x63\xc0\x29\x67\xc3\x5a\x32\x02\xb1\xc0\x6e\x34\xb6\xd2\ \x98\x71\xc3\xbf\x11\x89\xb7\x2f\xdd\xe4\x58\x19\xcf\x2c\x31\xa3\ \xb2\xd0\x8b\x60\xc0\x8b\xad\x7b\x04\xf8\xc2\x66\xbc\xb2\xe1\x04\ \xc4\x04\xfd\xb0\xb2\xb9\xea\x78\x2d\x6b\x39\x57\xdb\x80\x0c\x9f\ \x6a\x11\x85\xba\x38\x44\x5d\x2b\x40\x8a\x7a\xc5\x43\x20\xcf\x27\ \xcf\x25\xed\x07\x35\xc8\xea\x7c\x7e\xa6\x39\x10\xd2\x56\x21\x93\ \x41\x64\xc4\x91\xa2\x28\x30\xb4\x8c\xab\x26\xef\xc0\x69\x23\xcf\ \x82\xad\x74\x2c\x84\xd0\x3e\xb4\xb4\x78\x31\xeb\xc6\x4d\xf0\x87\ \x4d\xed\x55\x23\x0d\xfc\xe9\x7a\x13\x06\xf5\xf0\x22\x14\xf0\x60\ \xcb\xee\x38\xc2\x31\x13\x5e\xde\x30\x08\x81\xa8\x19\x80\xfe\x67\ \xcd\x29\x1d\x9c\x2e\x25\x9a\xab\x34\xd0\x4a\xfd\xaa\x3d\x81\x64\ \x69\x61\x75\xb9\x18\xa9\x12\x48\x50\x15\x5b\x80\x34\xf8\xd4\xc9\ \xa0\x4c\x25\x80\x3a\xbe\x40\x12\x20\xa9\x0e\x0e\xdd\x50\xc2\xc5\ \xa3\x76\xe1\x17\x93\x46\xc1\x56\x7e\x16\x84\x48\x03\x5a\x9a\xf6\ \x60\xf6\x2d\x5b\xe0\xf6\x99\x35\xc6\x18\xb8\x73\x1e\x83\x11\xfd\ \xfd\x08\x05\xbd\xd8\xba\x27\x06\x5e\x64\xf0\xda\x17\x27\xa0\x35\ \x68\xd1\x1d\xb8\xcb\x58\x05\xa4\x03\x33\x1b\x6e\x4f\x75\x5c\xab\ \xfe\x4e\xb1\xfa\x95\x55\x31\xd6\xd4\x05\x19\x4a\x45\x8f\x02\xb8\ \x22\x49\x48\xa2\x20\xb7\x15\x63\x90\xd4\xfb\x4a\x14\x50\x5d\xf1\ \x93\xa9\x24\x10\x45\x31\x21\x01\x94\x71\x52\xea\x0c\x00\xe0\x17\ \x83\xf7\x62\xd6\xf4\x61\xb0\x97\x9f\x0d\x29\xde\x0a\x5f\xe3\x46\ \x5c\xff\xd0\x41\xec\x6f\x36\x6b\xb6\x77\xc3\xc5\x0c\x2e\x18\x19\ \x44\x28\xe8\xc5\xae\x9f\x22\x88\x0b\x14\x5e\xfb\x7c\x20\x0e\x78\ \x9c\x59\xa9\x6e\x43\xd3\xc1\xe9\xac\xe4\x6c\x22\x81\xc9\xf2\xfe\ \x64\x60\x47\xeb\x1c\xad\x8c\x9f\x1a\x74\xb5\x31\xa8\x95\x8d\x54\ \x17\x84\x66\x9a\x12\xe7\x38\x2e\x41\x4c\x0a\x21\x28\x41\xa1\x11\ \x7d\xeb\x70\xcd\xa5\x03\x61\xef\x72\x0e\x64\x31\x88\xc0\x81\x35\ \xb8\x77\x25\x8d\xef\x76\x89\x9a\x6d\xcd\x98\x48\x61\xce\xa4\x10\ \x42\x41\x2f\xf6\x35\x84\x10\x8c\x00\xef\x7e\xd3\x17\x7b\xdd\x05\ \x19\x89\x7d\x43\x22\x81\x5a\x79\x6f\x23\x13\x4b\x24\x57\x92\xfa\ \x53\xa9\xd8\xd1\x22\x04\x32\xf7\xaf\x56\x03\x24\x68\x4a\xac\x80\ \x14\xfb\x64\xf4\x50\xcb\xb0\xcd\x54\xbd\x91\x71\x00\x51\x14\xc1\ \xf3\x7c\x22\x1e\x20\xcb\x32\xb8\xf0\x06\xdc\x79\x45\x15\x1c\x95\ \xe7\x83\x92\x05\x04\xf6\xbf\x8d\x95\x6b\xbb\x60\xf5\x86\x1d\x9a\ \xed\x9c\x7b\x06\x8d\x9b\x67\x44\x11\x0e\xf9\x70\xb0\x39\x88\x16\ \x1f\xf0\xaf\xef\x7b\x63\xcb\xfe\x92\x9c\x6a\x35\x0c\x4b\x07\x1b\ \x1d\x3c\x52\x80\xd2\xd2\xfb\x6a\xae\x57\x8e\x91\xa5\x60\xea\x9a\ \x00\xd2\xf0\x52\x7c\x7f\xb2\x4e\x80\x8c\x1d\x90\x21\x66\xd2\x16\ \xc8\x26\xaa\xa9\x10\x96\x52\xb0\xc1\xf3\x3c\x82\x8d\xeb\x30\x63\ \xec\x01\x38\xba\x5d\x04\x9a\x61\x11\xf8\xe9\x4d\x7c\xb0\x75\x08\ \x9e\x7d\x7d\x9d\x66\x1b\x23\x4f\xa2\xb1\x74\x6e\x0c\xd1\xb0\x17\ \x5e\xaf\x1f\x07\xdc\xc0\x86\x1f\xbb\xe2\xeb\x9a\xf2\xac\x02\x6c\ \x19\x7b\x01\xd9\xa6\x83\x73\x6d\x97\x34\xe2\xd4\xdc\xac\x56\x3d\ \x5a\x05\x18\x5a\xf9\x80\x64\x19\x44\xb2\x04\x4d\x5d\x1b\x90\xae\ \x7f\xa9\xfa\xa2\x2e\x4d\x8f\xfb\x7e\xc0\x88\xf2\x7f\xc2\xd5\xfd\ \x62\x30\x26\x17\x42\xfb\x5f\xc7\xf7\x2d\xe3\xb1\xf4\xd1\x57\x35\ \xdb\x3e\xa5\x0f\x85\xc7\xaf\xe5\xc1\xc7\x7c\x08\x87\x7c\xd8\x53\ \x0f\x7c\x5d\x53\x8e\x8f\xb6\x74\x47\xaa\xe1\xd6\xcb\x9c\xac\xd1\ \x5c\x6b\xa4\x34\x50\x83\x48\x1a\x7c\x6a\x00\x59\x96\x6d\x23\x1d\ \xb4\x02\x41\xea\x92\xf0\x64\xef\x03\x68\x25\xb7\x92\xbd\x2b\xa0\ \xc7\x98\x55\x0c\xc1\x40\x73\x35\x4e\x76\xbe\x00\x57\x8f\x5f\x81\ \xb5\x96\x21\xb4\xff\x0d\xd4\x49\x17\xe2\x8a\x25\x7f\xd4\xec\x7f\ \xf7\x32\x0a\x4f\xde\x20\x42\xe2\xbd\x88\x84\x0e\x45\xf9\x76\x36\ \x14\xe1\x83\xcd\x3d\xb3\xe2\xf6\x9c\x55\x40\x3a\x4a\xcf\x56\x2d\ \x24\x6b\x57\xcb\x9d\x4b\xf6\xe2\x85\xba\x24\x9b\xcc\xe3\x2b\x21\ \x61\xd2\x33\x50\x67\x09\x49\x3b\x41\xcb\x05\xcc\x36\xc7\xa1\xdc\ \x43\x8c\x36\x60\x90\xf5\xcf\x28\xec\x71\x01\x4c\x8e\x9e\x08\xd7\ \xbd\x09\x9f\x6d\x16\xa6\x4f\xbf\x53\x33\xc4\x5b\x51\x4c\xe1\xf9\ \x5b\x25\x98\x29\x2f\x42\x41\x1f\xaa\xf7\xca\xd8\xeb\x2e\xc0\xdf\ \xbf\xec\x07\x59\xa6\x0c\x51\xc5\x86\xa6\x83\x73\x25\x02\xad\x20\ \x90\x02\xaa\x92\xfa\x25\xe3\xf4\x4a\xe4\x4e\x4d\x30\x6a\xd0\x68\ \x9a\x6e\xf3\xc6\x8e\x62\x00\xaa\x41\x25\x5d\xc5\x64\xe1\xda\x6c\ \x72\x1c\xb2\x2c\x83\x8f\xb8\x51\x15\xbf\x1f\x85\xbd\xa6\xc2\x5c\ \x70\x22\xc2\xf5\x6f\x23\xec\x9c\x81\x73\x2e\xb8\x09\xa2\xd4\xde\ \x73\x72\xda\x80\x67\x6e\x04\x9c\xe6\xc3\xe0\xd7\x88\x38\xe8\xb3\ \xe1\xf5\xcf\xfb\x43\x10\x29\x4d\xd1\x9f\xad\x34\xc8\x3a\x12\xa8\ \x57\x87\x67\xeb\x61\x24\x73\xed\xc8\xff\x5a\xe7\x90\xd9\x40\xb5\ \xde\x26\x13\x45\xea\x88\xa0\xf2\xbc\xea\x04\x10\xf9\x52\x08\x45\ \x51\x58\xbb\x76\x6d\x9b\xfd\xa4\x88\xd7\x5a\xe3\x51\x1f\x2a\x43\ \x77\xa2\xb8\x6a\x02\xcc\x85\x43\x11\x69\x7c\x07\x31\xfb\x14\x4c\ \x9e\xbe\x44\x33\xc4\x6b\x35\x03\xcb\x6f\xa6\x51\x59\xe8\x41\x28\ \xe8\xc3\xd6\x3d\x02\x5a\x83\x16\xbc\xb8\xfe\x04\x44\x79\x26\xe7\ \x54\x7b\xd6\x91\x40\x3d\x37\x54\xc7\x01\x72\xd1\x51\x4a\x19\x95\ \x96\xb1\xa7\xae\x17\x24\x8d\x43\x92\xdb\x49\x83\x4e\x91\x04\x64\ \x3c\x40\x91\x30\x64\x5c\x5e\xb9\x9e\xf4\xfb\x95\xe2\x14\xd2\x97\ \x57\x07\x9d\x94\x95\x7c\x4f\x50\x14\x22\xb0\x1f\xbc\x1d\xc5\x55\ \xa3\x61\x29\x3e\x1d\xf1\xa6\x0f\x10\x61\x07\x63\xea\xc5\x77\x20\ \x18\xd1\x0e\xf1\x3e\x72\x35\x8d\x3e\x65\x5e\x84\x43\x3e\x6c\xd9\ \xcd\x1f\x0a\xf1\x7e\x36\x10\xa1\x98\xc9\xd0\x54\x7b\x62\x4c\xb3\ \xe1\x4e\xad\xfd\xe1\x70\x18\x36\x9b\xcd\x30\x03\xb1\xb6\xb6\xb6\ \x5d\x3c\x5d\x1d\x53\x57\xf6\xf3\x3c\x8f\x78\x3c\xfe\xf3\xc0\x13\ \x81\x97\x64\xbe\xb9\xe2\x97\x2b\x2b\x09\xa2\xd6\x3e\x51\x14\x13\ \xf7\x50\x83\x4f\xd6\x11\x2a\x2a\x8a\xa1\x29\x50\xfb\xee\x44\x97\ \xee\x03\x61\xe9\x3c\x12\x71\xf7\x47\x08\x09\x2e\x4c\x9f\xfb\x47\ \x34\xfb\x4d\x9a\x21\xde\x07\xae\x64\x70\x7a\x3f\x1f\x22\x61\x1f\ \xaa\xf7\xc4\x10\xe5\x19\xbc\xb0\x7e\x20\x5a\x02\xe6\xac\x52\xf1\ \x7a\xc6\x9d\xcd\x56\x44\xab\xa9\xab\xbe\xbe\x1e\x43\x87\x0e\x85\ \xd3\xe9\x44\x20\x10\xc8\x59\x47\x7d\xfa\xe9\xa7\x38\xed\xb4\xd3\ \x50\x55\x55\xd5\x4e\xd4\xa7\xfb\xaf\x36\xf2\xd4\xb5\x04\x6a\x03\ \x8d\x34\x28\xc9\x77\x01\x49\x4e\x57\xec\x07\xf2\xed\x1e\x52\xad\ \xb4\x09\x59\x0b\x02\x42\x3f\xde\x87\x13\xfa\x74\x85\xb5\xf3\x28\ \x08\xad\x1b\x10\x0e\x05\x70\xe5\xd2\x75\xa8\x6f\xd5\x06\x73\xf1\ \xc5\x0c\x26\x0c\xf6\x22\x12\xf4\x61\xd7\x4f\x51\xc4\x05\x0a\xaf\ \x7f\xde\x1f\x8d\x5e\x5b\x4e\xc9\xb5\xb4\xf9\x9b\x74\x27\x0c\x1a\ \x34\x48\xd6\x9b\xfc\xa9\xa8\xa8\xc0\xa8\x51\xa3\xb0\x71\xe3\x46\ \xd4\xd5\xd5\xe9\x4e\x1a\xa5\x0a\xa2\x8c\x1e\x3d\x1a\xbd\x7a\xf5\ \x82\xd9\x6c\xd6\x55\x0b\x40\x16\x7c\x6a\x79\x0f\xc9\xd4\x87\xda\ \xb3\x50\xe7\xee\xd5\x1e\x07\xb9\x5f\xfd\xda\x97\xc9\xf3\x2a\x26\ \x9d\xee\x80\xad\x7c\x02\xa4\xe0\x16\x04\x9a\xb7\xe0\xee\x67\x23\ \x58\xb3\xa1\x49\xb3\x9f\x57\x9c\xc7\xe0\xca\xa9\x87\xfc\xfc\xbd\ \x07\xc2\xf0\x06\x28\xbc\xfe\x45\x5f\x6c\x3f\x50\x94\xd5\xf8\x11\ \xfd\x09\x6e\xd8\xb0\xc1\x99\xb7\x74\xb0\x9a\xab\x1b\x1a\x1a\xf0\ \xc9\x27\x9f\x60\xd8\xb0\x61\x18\x35\x6a\x54\x1b\x8e\x52\xbf\x69\ \xab\x36\xb2\xc8\x81\x54\x74\xb1\x24\x49\x88\xc5\x62\xa8\xae\xae\ \x4e\x7a\x1d\xb9\xaa\x93\x48\xea\x09\x1c\x94\x67\x56\x54\x84\xfa\ \x5d\xbd\x64\xcf\xa3\x3e\x96\x6a\xd0\x87\x54\x35\x61\xd9\x92\xa1\ \xb0\x95\x8e\x86\x1c\xda\x86\x40\xfd\x3a\xac\xf8\xa8\x0a\x6b\x36\ \xfc\xa4\x79\xdd\xf9\x63\x18\x2c\x9c\xea\x47\x24\xec\xc7\x81\x83\ \x61\xf8\x82\xc0\xfb\xdf\x55\x25\x05\xdf\x68\x69\x60\x48\x3a\x98\ \x3c\xde\xd2\xd2\x82\xb5\x6b\xd7\x66\x4c\xad\xd9\x2c\xd9\xb6\x9d\ \x8f\xeb\x64\x59\x46\xdf\xf2\x56\x3c\x78\xc3\x00\xd8\xca\xc6\x40\ \x8e\xd6\xc2\xbf\xff\x5d\xac\xdd\x35\x19\x2b\x5e\x5f\xad\x79\xcd\ \x84\xe1\x34\x6e\xbf\x24\x80\x68\xc4\x8f\xa6\xe6\x10\xdc\x5e\xe0\ \xdf\x5b\xbb\x61\xd3\x9e\x32\xc3\xf2\x2a\x86\x19\x81\xf9\x78\x03\ \x58\xcf\xf1\x7c\x3d\x93\xd1\x7d\xa9\x2c\xf4\xe3\xb1\x1b\x2b\x61\ \x2f\x1f\x07\x8a\x3f\x88\xe0\xfe\xb7\xb0\x2d\x3a\x1f\x77\x3d\xac\ \x0d\xfe\x29\x7d\x69\xdc\x77\x59\x08\x42\xdc\x0f\x8f\x27\x88\x03\ \xcd\xc0\xa6\x3d\x65\x58\xbf\xbd\xd2\xd0\x31\x30\xdc\x0b\xc8\x16\ \xcc\x6c\x07\xdd\x88\x67\xca\x77\x5f\x4a\x5d\x21\xfc\xf9\x26\x17\ \x0a\xba\x4e\x00\x23\xfb\x10\xac\x7b\x17\x2d\x45\x0f\xe2\xf2\xeb\ \x97\x6b\x5e\xdf\xaf\x3b\x85\x27\xae\x89\x00\x82\x1f\x81\x40\x00\ \xb5\x8d\xc0\x0f\xfb\x8a\xf1\xde\xb7\x3d\xf2\x32\x06\x1d\x16\x09\ \x34\x22\x78\x94\xad\x5a\xc8\xc4\x56\x31\xb2\x2f\x9d\xec\x31\x3c\ \x7e\x3d\x83\xa2\xee\x13\xc1\x52\x51\x04\xeb\xde\x87\xd0\xeb\x39\ \x4c\x9d\x78\x69\xbb\x90\xad\x12\xe2\x7d\xf2\xba\x28\x4c\x94\x0f\ \x91\x90\x1f\xbb\xea\x80\x9a\x26\x17\xde\xde\xd8\xfb\xf0\xf9\xf9\ \x19\x03\xc3\xb3\x81\x46\xbc\x01\x6c\xb4\x4b\xd3\xd1\x84\x69\x37\ \xc7\xf1\xc4\x35\x11\x74\xe9\x7b\x2e\x38\x13\x10\x3c\xb0\x1a\xcc\ \x09\xaf\x61\xd4\xd8\xf3\x20\x6a\xc4\xf7\x8b\x5c\xc0\x33\xbf\x8d\ \xc1\xc5\xf9\x10\x0e\xf9\x0f\x97\x70\x3b\xf0\xda\x86\x7e\xed\xce\ \xcf\xc7\x3c\x0c\x79\xb1\x01\x8e\x36\xdb\xa0\xa3\xd4\x94\x99\x15\ \xb1\x6c\x81\x07\x3d\x06\x4e\x82\x99\xe3\x10\x6a\xf8\x10\xe8\xfd\ \x24\xc6\x8c\x9f\x8a\x38\x4f\x69\x84\x78\x29\x3c\x71\x9d\x80\x32\ \x97\x0f\x91\x70\x00\xdb\x6a\x65\xb4\x06\x2d\x78\xf9\xd3\x7e\x88\ \xc4\xe9\x0e\xb7\x8f\x0c\x8f\x04\x1e\x8d\xb6\x41\xbe\xfa\xc2\xd0\ \x22\x7e\x3f\xa7\x0e\x27\x0d\x9d\x08\x8b\xc5\x8e\x48\xd3\x7a\xf0\ \xa5\xd7\x62\xc2\x94\x59\x08\x46\xda\xc7\xf7\x4d\x2c\xf0\xd8\xd5\ \x02\x7a\x97\x79\x11\x09\xfb\x51\xbd\x57\x82\x3f\xc2\xe1\xf9\x4f\ \xfa\x23\x14\x65\x0d\x89\xe8\x65\x7b\x1d\x6d\x24\x87\xfd\x2f\x48\ \x03\x0a\x32\x16\x5f\x70\x00\xc3\x47\x4c\x80\xc5\xea\x42\xb4\xf9\ \x73\x84\xad\x67\x63\xda\xcc\x3b\xe0\x0d\xb1\x9a\x21\xde\x7b\x2f\ \x17\x31\xb8\x97\x07\xd1\xb0\x1f\xd5\x35\x12\xa2\x3c\x83\x17\xd7\ \xf5\x83\x27\x64\x36\x6c\x8c\x3a\xc4\x0b\xf8\x5f\x97\x06\x14\x80\ \xcb\x26\xee\xc3\x94\x49\x23\x60\xb1\x17\x21\xe6\xfd\x06\x61\x7a\ \x20\x66\xfe\xe6\xaf\x49\x43\xbc\x37\x5f\x22\xe1\xac\x53\xfc\x88\ \x84\x83\xd8\x5a\x23\x82\x17\x68\xbc\xb4\xbe\x2f\x1a\xbd\xd6\xbc\ \xc5\xf7\x0d\x25\x80\x8e\x06\xf3\x68\x96\x06\x53\x86\x1e\xc0\xcc\ \x0b\x4e\x81\xd5\x59\x06\xde\xb7\x05\xa1\xa8\x05\xbf\x7d\xe0\x0b\ \xec\x3d\xa8\x0d\xfe\xfc\xa9\x12\xa6\x9f\x11\x40\x2c\xca\x63\x5b\ \x2d\x05\x59\xa6\xf0\xc6\x17\xbd\xf1\x93\xdb\x99\xd7\x31\x32\x5c\ \x02\x1c\x09\x30\x8f\x36\x69\x70\x46\xff\x06\xdc\x30\xbb\x0a\xb6\ \x82\x6e\x10\x83\x3b\x11\x0a\x78\xf0\xe0\x4b\x11\x7c\xbe\x85\xd7\ \x3c\xff\xc2\x33\x65\x2c\x98\xe2\x45\x24\x1a\x42\x75\x4d\x18\x92\ \x28\xe2\x1f\x9b\xaa\xb0\xfd\x40\xa7\xa3\x6a\x8c\xe8\x8e\xe4\xa0\ \x7c\x10\x50\xbe\x82\x47\xe4\xf1\x81\x95\xad\xb8\x6b\x41\x21\x1c\ \x85\xbd\x20\x45\xf6\x22\xd8\xba\x1b\x2f\xaf\xef\x89\x77\xff\xa3\ \x9d\xdc\x39\x6b\xa8\x8c\x25\x17\x79\x11\x8b\x04\xb0\x73\x6f\x08\ \x92\x24\x63\xed\xf7\x15\xf8\xa6\xa6\x73\x87\x33\x59\x5e\x8c\xc0\ \xa3\x49\x1a\xe4\x3b\x94\x5c\x55\xe2\xc3\x23\x57\xd3\x70\x16\x0d\ \x04\xe2\x75\x08\xb8\x37\xe3\xa3\x9a\x29\x78\xea\x6f\xda\xf5\xfb\ \xa7\x0e\x90\xf1\xbb\xb9\x7e\x08\x92\x09\xbb\xf7\xc7\x11\xe7\x81\ \xcf\xb6\x17\x63\xdd\xb6\xf2\x9c\xd5\x5b\x3e\x6c\x03\xc3\xe7\x09\ \x34\x99\x4c\x98\x36\x6d\x1a\xce\x3c\xf3\x4c\xd8\xed\x76\x74\xc4\ \xa2\x37\xf8\x91\x6a\x90\xb4\x26\x6f\x0a\xb5\x6c\xc5\x40\xea\x6e\ \x14\x94\x0e\x01\x2d\xba\xe1\x77\xff\x80\xed\xb1\x85\xb8\xeb\x8f\ \x6f\x6b\xb6\x71\x42\x4f\x16\x7f\xba\x26\x08\x09\x56\xec\xab\x8f\ \x22\x2a\x70\xe0\x4a\xc7\x63\xea\x98\x7b\x30\x35\xc3\xaf\xf3\x28\ \xa9\xe9\x68\x34\x8a\x8d\x1b\x37\xe2\x9d\x77\xde\x41\x2c\x16\xcb\ \x29\xa0\xa5\xed\xd5\xa4\x59\x06\x0e\x1c\x28\xa7\x6a\x94\xdc\xdf\ \xb9\x73\x67\xbc\xf4\xd2\x4b\x28\x2a\x2a\x02\xc7\x71\xba\xc4\xb7\ \x7a\xa2\x04\x2d\xa0\x32\x39\x37\xd5\xf9\xa9\xce\x55\x5f\xe7\x6f\ \xde\x0e\xe7\xbe\x59\x70\x96\x0c\x04\x47\x47\xe1\x77\x6f\x45\x83\ \xe5\x26\x4c\x5f\xf0\x9c\xe6\xc4\x0b\x55\x15\x34\x5e\xbe\x5d\x02\ \x24\x3f\xea\x0e\xc6\xe0\x0d\x48\xb0\x14\x0f\x43\xf7\xd1\x2b\x41\ \xd1\xa6\x94\x7d\x48\xf6\x2c\x4a\x65\xb3\x32\xed\xed\x55\x57\x5d\ \x85\x86\x86\x86\xa4\xe3\xaf\xb1\x3f\xf8\xe5\x97\x5f\x3a\x0d\x21\ \x80\x74\x94\x45\x51\x14\x56\xae\x5c\x89\xc1\x83\x07\xa7\x15\x53\ \x6a\x30\xf4\x00\x9c\xc9\xf9\x99\xb6\xad\xde\x17\x0d\x36\xc0\x5a\ \x73\x21\x0a\x8a\x7b\xc0\x62\x02\xfc\xcd\xdb\xe0\x2f\xbc\x05\xe7\ \xcc\x7e\x46\x33\xca\x57\xe4\x02\xde\xbc\x8f\x86\x49\x6a\x80\x47\ \x3c\x01\x0d\x75\x7b\x40\x5b\x2b\xd1\xe5\x8c\x97\x41\x33\xd6\xb4\ \x04\xa9\xe7\xd9\x6c\x36\x1b\x22\x91\x08\xe6\xcd\x9b\xd7\x6e\x7c\ \x53\xe0\x12\xfc\xea\xab\xaf\x9c\x86\x46\x02\x93\x81\xdb\xaf\x5f\ \x3f\xf4\xed\xdb\x37\x29\x97\x25\xab\xb3\xcf\x06\xfc\x64\xd5\x3a\ \xb9\x80\xaf\xac\xb1\x70\x33\x2c\x35\x33\xe0\x2a\x28\x81\x95\x93\ \x10\x6c\xdd\x81\x70\xe7\xdf\xe2\xdc\x39\x4f\x6b\x82\xef\xb0\x02\ \x2f\xdf\x6d\x81\xd9\x6c\x82\x27\x5e\x85\x96\x56\x3f\x58\x7b\x77\ \x54\x8c\x58\x0e\x8a\xb6\xa4\xad\x2e\xd2\xfb\xbc\xa1\x50\x08\x05\ \x05\x05\x18\x32\x64\x88\xa1\x76\x10\x9d\x8b\xce\x25\x97\xde\xbd\ \x7b\xb7\x99\xa1\x3b\x17\x4e\xd6\x53\x96\x95\x69\xdb\x7a\xda\x14\ \xf8\x30\xb8\x9a\x79\x70\xda\x59\xd8\x6c\x66\x04\x5b\x77\x21\x52\ \x38\x1f\x17\xcc\x7b\x56\x33\x5e\x6f\x62\x81\x17\xee\xb4\xc1\x45\ \xed\x86\x37\x48\xc1\x17\xb1\x23\x1a\xf6\xa0\x74\xd8\xe3\xa0\x4d\ \x85\x39\x49\xb5\x64\x73\x20\x57\x55\x55\x19\xea\x15\x19\x3a\x4d\ \x5c\xb2\xb2\xf0\x74\xbf\xb9\x8a\x7c\x23\xae\x97\xc4\x38\x98\xdd\ \x97\xc3\xc9\xb5\xc2\xee\x28\x41\xc8\x53\x83\x88\x7d\x2a\xa6\x5f\ \xf1\x0a\xbc\x21\xed\x12\xee\x67\x6e\x76\xa0\xcc\xba\x03\xcd\xad\ \x11\xd4\xb9\xb7\xc0\xec\xec\x89\x2e\x23\x9f\x03\x63\x29\x33\x54\ \x45\x91\x05\xa8\xa9\x8c\xc0\x6c\x0c\xc1\x9c\x22\x81\x7a\xdc\xbe\ \x64\x22\xcf\x48\xce\xc8\xd5\x5e\x90\x25\x09\xd1\x1d\x8b\x61\xc7\ \x2e\xd8\x9d\x9d\x10\xf1\xd7\x23\xca\x0d\xc7\xac\xc5\x6b\xe1\xf6\ \x99\x34\xfb\xf7\xf0\x75\x2e\x0c\xac\xf4\x21\x4c\x0d\x40\x9d\x1b\ \xa0\x19\x2b\x4a\x86\x3c\x0c\x93\xb3\x5f\xda\xe7\xcd\xd5\xf6\x31\ \x32\x50\x96\xf3\x8b\x21\x47\x92\x93\x8d\x6a\xdb\xb7\xed\x2e\x54\ \x50\xeb\xe1\x70\x96\x23\x16\x6e\x41\x04\x95\x98\x77\xfb\x77\xa8\ \x6d\xd2\x8e\xd7\xdf\x36\xd7\x85\xd3\xaa\xf6\xc2\x1f\xe0\x10\xb2\ \x8c\x84\xad\x53\x10\xae\xfe\x4b\x60\x2e\x3c\x25\xe7\xe7\xd5\xe3\ \x2d\x64\x80\x8b\x9c\xb3\x04\xc8\x46\x1a\x74\x04\x27\x67\x62\x18\ \xa6\xba\xbe\x75\xe7\x53\x28\x93\xdf\x82\xc3\x59\x0c\x3e\x1e\x40\ \x38\x4a\x63\xf1\x23\xf5\xd8\x79\x40\x1b\xfc\x85\xd3\x1c\xf8\xe5\ \x90\x1a\x50\xa5\x97\xa0\x39\xd6\x0b\xfe\x83\xdf\xc2\xd1\xfb\x2a\ \xd8\xcb\xc7\xeb\x26\xbe\x5c\x0d\x43\x23\x13\x44\x86\xbd\x18\x92\ \xcc\x22\x35\x8a\x93\xb3\xe5\xfa\x54\xf7\x73\xff\xf8\x32\xba\xc6\ \x9f\x82\xb3\xa0\x33\x44\x31\x8e\x50\x30\x88\xdf\xbf\x56\x8a\x2f\ \x77\x68\xbf\x51\x34\x6d\x9c\x0d\x97\x8e\xaf\x47\x24\x6a\xc2\x81\ \x6d\xeb\x61\x76\x54\x82\x29\x1c\x0b\x67\xd7\xf3\x0c\x7b\x5e\xbd\ \xc7\xb4\xc6\x3d\x9b\x0a\xa2\xbc\xa4\x83\xf3\xe1\xe2\xe5\x02\xbe\ \x16\xd7\x35\xd7\xae\x45\x65\xf4\x01\x38\x9c\x45\x90\x01\x04\xfd\ \x2d\x78\x69\x7d\x2f\xbc\xff\xb9\x36\xf8\xe3\x86\x9a\x71\xe3\x85\ \x8d\x90\xed\xc3\xd0\x18\xe9\x83\x78\xd8\x0d\xd1\x54\x85\x82\xde\ \x97\x1b\xf6\xbc\x7a\x24\x58\x2e\x39\x0e\x43\xbd\x80\x74\xd2\x20\ \x15\x18\x3e\x9f\xaf\xdd\x37\x7a\x72\x95\x12\x99\x5c\xef\x6d\xf8\ \x0a\xbd\x63\x37\xc2\xe1\xea\x74\x68\x8a\x16\x9f\x1b\x1f\x6c\x1d\ \x8a\x67\xde\xac\xd7\xec\xe7\xa0\xde\x0c\x96\xce\x6a\x80\xc4\xf5\ \x47\x98\x1b\x03\x9a\xfd\x08\x4c\xe1\x68\xd0\x15\x97\xc1\xe7\xf3\ \x65\xfd\x2c\xea\x5f\xab\xd5\x9a\x98\x52\x26\x5d\xc4\xb0\x43\x5f\ \x0c\xc9\x44\x1a\xe8\x01\xec\xfe\xfb\xef\x47\x34\x1a\x4d\x2b\x51\ \x32\x49\x7c\xe8\xd5\x91\x76\x93\x17\xb7\x9e\xbb\x1e\xce\x92\x4e\ \x30\x99\x38\xf8\x7d\xcd\xf8\xa2\x76\x28\xee\x7f\xae\x4e\x73\x22\ \xe6\xee\xa5\x32\x96\xcd\x6f\x02\xeb\x1a\x84\xea\xea\x6a\xd8\x8b\ \xde\xc7\xce\xbd\x5e\xfc\xeb\x87\xce\x90\xe5\x47\x72\xb6\xce\xc9\ \xff\xd3\xa7\x4f\xc7\x49\x27\x9d\x94\x51\x08\x3b\xd7\x17\x43\x0c\ \x9b\x2a\x56\xaf\xe8\x93\x65\x19\x0f\x3e\xf8\x60\x5e\x7c\xf9\x74\ \xfe\x76\xd8\x57\x0b\xd7\xfe\x4b\xe0\xb4\xb9\x60\x36\xdb\xe0\xf7\ \xb9\xb1\xd3\x33\x02\x37\x3f\xb6\x4b\x73\x96\x8e\xce\x9d\x80\xe5\ \x37\xf1\x70\x95\x8e\xc3\xae\x3d\x3f\xa1\xdb\xc9\x0b\xd1\xb0\x7b\ \x0d\x4e\x9f\xf6\x0a\x46\xfe\xca\x9a\x17\xaf\x44\xaf\x1b\x98\xab\ \xee\x37\x9c\x00\xd2\x49\x83\x7c\x1a\x86\x7a\xae\x8f\x47\x5a\xe0\ \xdc\x3f\x0f\x0e\x8b\x00\xab\xad\x13\x02\x3e\x37\x1a\xe2\xc3\x71\ \xe5\xbd\x3f\x6a\x4e\xc4\xec\xb0\xca\x78\xe1\x56\x09\x66\x26\x82\ \x96\x78\x6f\xd0\x6c\x13\x5a\x1b\xbe\x43\xd9\x69\xcf\x6a\xc6\xf7\ \x3b\xda\x90\xcd\x35\x0b\x98\xb3\x11\xa8\x47\x1a\xe4\x3b\xf6\xaf\ \xf7\x7a\x21\x1e\x80\x79\xef\x1c\x38\xcc\x41\xd8\x9d\x45\x08\xfa\ \x5b\xe0\xe6\x07\x61\xf6\xed\xbb\x35\x43\xbc\x66\x0e\x58\x71\x33\ \x83\xc2\xd2\xbe\xd8\x55\x47\x23\x1e\x71\x43\x12\x65\xb8\xfa\xdf\ \x0a\xda\xe4\xcc\xab\x8b\x97\xaa\xcd\x6c\x54\xa3\x21\x91\xc0\x4c\ \x1a\xee\xc8\xd8\xbf\x1e\x71\x2a\x89\x71\xb0\x35\x0b\xe0\x64\x1b\ \xe0\x70\x15\x23\xe8\x6f\x81\x97\xef\x86\x39\x77\xee\x85\x3f\xcc\ \x68\x86\x78\xff\xb2\xc4\x84\x32\xfb\x7e\xf8\xd9\xd1\xe0\x63\x5e\ \x1c\xdc\xf5\x2e\x0a\x4e\xbc\x07\x8c\xa5\xac\xc3\x22\x9c\x99\x44\ \x05\x73\xc1\xcb\xb0\x69\xe2\x8e\xc6\xd8\xbf\x24\x0a\xa0\x6a\xae\ \x85\x93\xda\x09\x87\xab\x04\xa1\x40\x2b\x7c\x51\x27\xe6\xde\xeb\ \x4e\x3a\x11\xf3\x83\x8b\xcc\xe8\x59\xea\x45\xd0\x75\x3d\x58\xda\ \x84\xc2\xae\xe3\x61\xe9\x76\x19\x58\x5b\xf7\x23\x96\x9e\xce\x46\ \xf4\x1b\x3e\x4f\xa0\x5e\x5d\x63\xb4\xbe\xcf\xe5\xfa\xd8\x9e\xbb\ \x50\x22\x7e\x01\x47\x41\x09\x22\x61\x3f\x82\x11\x11\x57\x2d\x8b\ \xa0\xae\x59\x3b\xca\x77\xe7\x3c\x0b\x4e\xef\x1f\x46\x9d\xbf\x0f\ \x5a\xb7\xdf\x0f\x8a\xe6\x50\x7e\xfa\x0a\x70\x9d\x4e\x36\xcc\x16\ \x31\x82\x78\xf4\x82\x9d\x97\x29\x62\xf4\x66\xa3\x8e\x04\x67\x90\ \xfb\x02\xbb\x1e\x45\xb9\xf0\x1e\x1c\x05\x9d\x11\x8b\x85\x11\x08\ \xf8\x70\xdd\x93\x05\x49\x43\xbc\xf3\xcf\x33\x63\xfc\x89\x75\xf0\ \x9a\x67\xa3\xa4\x77\x15\x68\xc6\x02\xba\x68\x12\x2c\x9d\x47\x1c\ \x35\x86\x6c\xae\xcc\x69\x78\x24\x30\xd3\xe0\x87\x11\x85\x1b\x7a\ \x62\xff\xde\x9a\x97\x50\xc6\xaf\x84\xc3\x55\x0c\x9e\x8f\x23\xe8\ \x6f\xc1\xdd\xcf\xbb\xf0\xdd\x1e\xed\x49\xac\x2e\x9e\x68\xc6\x25\ \x67\xec\x80\xc7\x3c\x0d\x05\x65\xa7\x62\xff\xf7\x4f\x43\x76\x8e\ \x80\xbd\xf2\x5c\xc3\x6c\x11\x23\x6a\x1b\x8c\xcc\x02\x66\x64\x04\ \x66\x1a\xd8\xc8\xc6\x98\x31\xaa\xea\xe7\xa7\xad\xaf\xa2\x3c\xbc\ \x0c\x0e\x57\x31\x24\x51\x40\xd0\xdf\x82\x65\x6f\x14\xe0\x3f\xdf\ \x6b\x17\xa8\x8e\x1d\xcc\xe0\xaa\x73\x0e\x82\xef\x72\x0f\xe2\xe1\ \x83\x68\xae\x5d\x0d\xae\x64\x3c\x5c\x55\x97\x1c\x91\xf4\x74\x3a\ \xe2\xd1\x63\xe8\x65\x62\x08\xd2\xd9\x72\xbb\x1e\xbd\xdf\x51\x9c\ \xa1\xfc\x7e\xfa\x9f\x7f\xa0\x8f\xf4\x7b\x38\x5d\x87\xaa\x71\x82\ \x81\x16\xfc\x75\x8d\x1d\xef\x7e\xe1\xd0\x7c\xee\x61\x03\x18\xdc\ \x3d\xb3\x11\xe1\xc2\x85\xf0\x36\x7c\x8e\x4e\x5d\xce\x40\x28\x22\ \xa3\xb0\xff\x62\xc3\xac\xf4\x7c\x10\x8f\x91\xd2\xc0\xd0\x74\x70\ \x26\x2e\x9e\xd1\x9c\xc1\xf3\x3c\xb6\x7c\xff\x03\x5c\xae\x42\x30\ \x0c\x8b\xa0\xbf\x05\xab\xd6\x71\x58\xb9\xc6\xa5\xf9\x9c\x3d\xca\ \x64\xdc\x3f\xb7\x1e\x7e\xeb\x74\x80\xa2\x60\xed\xd4\x07\xcd\xf5\ \x3f\xa0\xf0\xc4\xdb\x8f\x1a\x17\x2f\x1f\x6e\x5f\xce\x36\x80\x9e\ \x97\x13\x8c\x0c\x7e\xe8\x05\x63\xd5\xaa\x37\x30\xe3\xd7\xff\x87\ \x1f\x3d\x23\x50\xef\x8e\x63\xf5\x57\x14\xfe\xf4\x76\xa1\x66\x09\ \x77\x79\x31\xf0\xf4\x75\x2d\xd8\x55\xeb\x87\xaf\x71\x23\x38\x6b\ \x09\xfc\xad\xfb\xe1\x1a\x70\x07\x28\x8a\x31\xcc\x16\xc9\x57\xe0\ \xcb\xa8\x20\x90\x2e\x2f\x20\xd3\x0f\x25\x74\x94\x8b\x47\xee\x73\ \xbb\xdd\xb0\x73\x02\x8a\x8b\x3a\x21\xcc\xcd\x82\x3f\x7c\x0e\x3e\ \xdd\xfb\x26\x44\x69\x7b\xbb\x67\x75\x58\x24\x3c\x7d\x5d\x18\x35\ \xfb\x3c\x87\xd4\x44\xf3\x56\xec\xf9\xfa\x49\x54\x8c\x7a\xa5\x4d\ \xfd\x7e\x3e\x5d\x3c\x23\x24\xa0\x9e\x17\x43\x28\x8a\xa2\x0d\xb3\ \x01\x32\xdd\xdf\x91\x9c\xf1\xea\xdf\x5e\xc0\xf9\x53\x27\x21\x1e\ \x6d\x85\xcc\xfb\x41\x89\x7e\x0c\x3f\xb9\x3c\x31\xab\xb6\x32\x20\ \x66\x93\x84\x27\xae\xf1\xe1\x40\xfd\xcf\x2f\x57\x98\xec\x3d\x50\ \x3e\xe2\x79\x50\xac\xc3\x30\x5b\x44\x0f\x27\xe7\x1a\x08\xd2\x29\ \x89\xed\x86\xa9\x80\x54\x69\xc9\x5c\xc3\xb7\xb9\x84\x84\x37\x6f\ \xde\x8c\x09\x63\x87\x81\x8f\xb6\x82\x8f\xb4\x20\x1e\x6d\x05\x1f\ \x6d\xc5\xc0\x9e\x66\x8c\x1a\x52\x92\x78\xf3\x85\xa6\x80\x5b\x2f\ \x89\x20\x14\x68\xfe\x39\xec\xcb\x15\xa1\xf4\xb4\xe5\xa0\xb9\xa2\ \x23\xee\xe2\xe9\x51\x7f\xd9\x30\xa1\xe1\x81\xa0\x4c\xbe\x1c\x92\ \xef\xc8\x99\x28\x8a\xf8\x6c\xdd\x1a\x2c\xba\xec\x5c\xf0\xd1\xd6\ \x04\xf8\x7c\xd4\x03\x59\xf0\x62\xe6\x94\x4e\x18\xd4\x2b\x8e\xed\ \x7b\x02\xe8\x5f\x19\x46\x67\xeb\xcf\x05\x1f\x12\x65\x45\xc9\xb0\ \xe5\x89\x10\x6f\x47\xa4\xa7\x8d\x50\x7f\x46\x06\x81\x72\x8a\x04\ \xa6\xba\x61\x3e\xeb\xe1\xc8\xdf\x55\xab\xfe\x8e\x5f\x4f\x1b\x4b\ \x00\xdf\x96\x08\x44\xde\x83\xfe\x95\x11\x0c\xea\x53\x8a\x83\xf5\ \x7b\x7f\x6e\x1b\x0c\x1c\x03\x97\xc1\x56\x74\xe2\x11\xcd\x55\x64\ \xab\xfe\x72\xc9\xd7\x18\x42\x00\xa9\x6e\xd8\x51\x9c\xe1\xf1\x78\ \x20\x84\xeb\xe1\xb0\x76\x55\x81\xef\x01\x1f\xf5\x20\x1e\xf5\x40\ \xe4\x43\xe0\xac\xc5\x30\x59\x0a\xc1\x38\x38\x44\xf8\x56\x98\xa8\ \x38\xac\x7d\x97\xa2\xa4\xe7\xa4\x9c\xc0\xc8\x57\x48\x58\xef\xb9\ \x46\xbd\x18\xc2\x1a\x21\xf2\xd5\xaf\x56\x77\x04\x67\xbc\xf4\xc2\ \x0a\xcc\x9f\x71\x7a\x02\x7c\x05\xf8\x43\xab\x17\x92\x18\x83\xc9\ \x5c\x08\x93\xa5\x08\x9c\xa5\x10\x7d\xfa\xf5\xc1\xda\x4f\x8b\xe1\ \xaa\x18\x81\xb3\x07\x9c\x93\x17\x2b\x3d\x57\xe2\xc9\xa4\x1c\xdc\ \xa8\xba\x40\xc3\x5e\x0c\xc9\x04\xe0\x79\xf3\xe6\x21\x1c\x0e\x67\ \xed\x71\x04\x83\x41\xfc\xf6\xca\x5f\x42\xe2\x7d\x6d\x38\x9e\x8f\ \x79\x21\xc4\x7d\x90\x24\x01\x26\xae\x00\x26\x4b\x27\x98\xcc\x85\ \x88\x4b\x76\x3c\xfc\xe7\x0d\xd8\xd7\xc8\xc3\x6c\xae\xc3\x6b\xaf\ \xaf\xca\xd9\xaf\x36\xca\x2f\x27\xcf\x9b\x3d\x7b\x36\x86\x0f\x1f\ \xae\x6b\x2c\x33\x51\xc5\x86\xa6\x83\x33\xf9\x42\x68\x32\x8a\x5e\ \xb9\x72\x65\xd6\x9c\x21\x49\x12\x1e\x7e\xf0\x76\x0c\x39\xa9\xe2\ \x10\xf8\xb1\xc3\xc0\xc7\xbc\x10\xe2\x01\xc8\x92\x08\x93\xd9\x09\ \x96\x2b\x80\xc9\x52\x88\x9d\xb5\x51\xec\x6d\xe9\x84\xfb\x96\x3d\ \x97\xf4\x83\x50\x47\x22\x76\x91\xce\x03\xd0\x2b\x09\xb2\xd5\xfd\ \x39\x79\x01\xd9\x18\x80\x46\x89\xd0\x77\xfe\xf1\x16\xa6\xff\xe2\ \xc4\xc3\xc0\x1f\x12\xf7\x7c\xcc\x07\x81\x0f\x01\xb2\x0c\x86\x73\ \xc2\xc4\xb9\xc0\x70\x9d\xf0\xee\xc7\x0d\x18\x32\x7a\x26\x66\x9e\ \x33\xe4\x88\x19\x6f\x46\x7b\x15\x46\x7b\x02\x79\x8b\x04\xe6\xc3\ \x92\xf6\xf9\x7c\xa8\xdb\xf3\x05\xce\x3a\x65\x08\xe2\x51\xef\x61\ \x91\xef\x87\x28\x44\x0e\xd9\xf6\x26\x3b\x58\xce\x89\xd6\x00\x8b\ \x8f\x36\xf9\x31\xef\x8a\xa5\x70\x38\x1c\x1d\xe2\xe2\xe5\x73\xc2\ \x8b\x4c\x55\x4a\x5e\xbe\x1a\xa6\x27\xf4\x98\x6f\xce\x58\xb9\xe2\ \x69\x5c\x32\x75\x50\x42\xd7\x8b\xf1\x20\x44\xe1\xd0\xfb\x05\x8c\ \xc9\x0e\xd6\xe4\xc4\x97\xdf\x7b\x41\x17\x8e\xc1\x35\x8b\xa7\xfd\ \x57\xb9\x78\x46\x49\x82\x4c\xa5\x01\x6b\x84\xe8\x4f\x37\xa7\x8f\ \x11\xfa\x73\xc7\x8e\x1d\xe8\xde\x39\x08\x06\x61\x08\xf1\x00\x84\ \x78\x10\xa2\x78\x68\xd2\x24\x86\xb5\x41\x90\xcd\x58\xb5\xda\x8d\ \xf3\x7f\x7d\x23\x7a\xf4\xe8\xf1\x5f\xeb\xe2\xe5\x0a\x7e\x5e\xd3\ \xc1\x7a\xac\xf4\x7c\xbc\xf1\x2b\xcb\x32\xae\x58\x30\x17\xa5\x85\ \xec\x21\xf0\xf9\x10\x64\x29\x0e\x0a\x14\x18\x93\x0d\x3f\x35\x88\ \x58\xf3\x8d\x0b\x8b\x7e\xfb\x68\x5a\xf0\xf3\x59\x81\x9c\xaf\x72\ \xf0\x7c\xcd\x13\x9c\x15\x01\x64\x92\x12\x36\x2a\xf6\x7f\xef\xbd\ \xbf\xc3\x81\x7a\x37\x96\xdc\xfb\x16\x1a\x1a\xdd\x90\xc5\x38\x00\ \x0a\x14\x63\xc1\xea\xcf\x9a\x41\x75\xbe\x00\xf3\x17\x2e\x06\xcb\ \xb2\x79\x01\xc3\x68\xc2\xd6\x43\x3c\xb9\x72\x7f\x5e\x09\x20\x5b\ \x69\x90\x0d\x18\x6e\xb7\x1b\xab\xfe\xfe\x3a\x00\xa0\xa9\x25\x88\ \xdf\xdc\xb9\x1a\xfb\x1b\x43\xf0\x87\x28\xbc\xb6\x36\x84\xf3\x66\ \xde\x8f\xd3\x47\x8c\xca\x2b\x18\xd9\x12\x4f\x3e\x32\xa2\x46\x13\ \x44\xce\x2f\x86\x68\x75\xd2\x48\x30\x7e\xb3\xe8\x4a\x84\xc2\xb1\ \xc4\x79\x8d\xee\x10\xe6\xdf\xb2\x16\x6b\xbe\xed\x84\xeb\x6e\xfa\ \x03\x8a\x8a\x8a\x0c\x13\xd9\x46\x12\x4f\x3e\x8a\x5e\xb3\xc9\xf6\ \x19\x6a\x04\xea\x75\x2f\x8c\xb2\xa4\x3f\xf9\xe4\x13\x6c\xfe\xfe\ \x87\x36\x6d\x77\x2a\xb0\xe1\xee\xa5\xf7\x61\xca\x94\x73\x3a\x2c\ \x8b\x77\x34\x94\x83\x67\x1b\x12\x36\x3c\x12\x98\xce\xbd\x30\x12\ \x8c\x3b\x6e\xbf\x05\xa2\xf8\x73\x4d\xd7\x89\x03\xfb\x60\xc5\xca\ \x97\x50\x58\x58\x78\xd4\x80\xd1\x91\x81\xa4\x7c\xa4\x83\x0d\x9b\ \x27\x30\xdb\xbc\x40\x32\x43\x6b\xd9\xb2\x87\xd0\x78\xf0\x50\xf1\ \x86\xc5\x62\xc2\xc2\x2b\xe6\xe3\xcd\xb7\xdf\xcb\x09\x7c\x23\x0b\ \x37\x72\x35\x0c\xb3\xf5\x2a\x8c\xc8\x3f\x18\x92\x0e\xd6\xa2\x3a\ \xa3\xfc\x6d\x8f\xc7\x83\x57\xfe\xf6\x12\x00\xa0\xa2\xbc\x08\x8f\ \x3f\xf1\x17\x0c\x1a\x34\xa8\xdd\x27\x61\xd5\x9f\x80\x55\x7f\x46\ \x36\x9d\x4c\xc8\x7b\xd3\x00\x00\x05\x09\x49\x44\x41\x54\x51\xa7\ \xa7\xe4\x3a\xd5\x3b\xf9\x6d\xbe\x26\x92\x61\x66\x4e\x7d\x3d\xd9\ \x86\x72\x8c\xfc\xae\xb1\xd2\x0e\xf9\xa1\xea\xa3\x2e\x1d\x9c\x4d\ \xf0\x43\x01\x8c\xe7\xf9\xc4\xa7\xdb\xaf\xba\x72\x21\x22\xd1\x38\ \xce\x18\x79\x2a\xee\xb9\xf7\x01\x50\x14\x85\xfd\xfb\xf7\xb7\xf9\ \x0e\xb1\xd6\xf7\x7e\xb5\xda\x4e\x05\x62\xaa\x85\x04\x81\x04\x83\ \xec\x2f\x09\xa2\x16\xc0\x5a\x6d\x6a\x31\x8d\xd6\x07\xac\xd5\xf7\ \x93\x65\x19\xe1\x70\x18\x3c\xcf\x27\xfa\xa5\x9e\x98\x53\xeb\xd9\ \x8f\x48\x3a\x38\x19\xf8\x92\x24\x21\x1a\x8d\x22\x16\x8b\x81\xe7\ \x79\xc4\xe3\x71\xf0\x3c\x9f\x58\x05\x41\xc0\xe6\xcd\x9b\x51\x5d\ \x5d\x8d\x05\x0b\x16\x60\xf4\xe8\x31\xa8\xaf\xaf\x6f\x03\x70\xba\ \xb9\x85\xc8\xb0\x74\x3a\x50\x92\x81\xa4\x06\x23\xd5\x40\x6b\x81\ \xaa\x67\x5f\x2a\xc2\x52\xb7\xad\x2c\x0a\x93\x28\xfd\x15\x45\x51\ \xf3\x3c\xd5\xf8\x98\x70\xe8\x6b\x94\xea\x35\x3f\xe9\x60\x2d\x50\ \x62\xb1\x18\x62\xb1\x18\x22\x91\x08\x62\xb1\x58\x82\x08\x94\xdf\ \x58\x2c\x86\x78\x3c\x8e\x78\x3c\x8e\x8f\x3f\xfe\x18\x4b\x6e\xba\ \x19\x2e\x97\x0b\x8d\x8d\x8d\x9a\xa0\x25\x1b\x60\xad\x41\x4e\x75\ \x8e\xd6\xf9\xe9\xee\xa5\x05\x2a\x4d\xd3\x9a\x9c\x9c\xec\x7c\x3d\ \x04\xa3\x26\x3a\x8a\xa2\xda\x80\xaf\x66\x3e\xf2\xde\xaa\x73\x68\ \x02\x70\x49\x4d\x08\x86\xa6\x83\x93\xe9\x55\x93\xc9\xd4\x46\x7f\ \x29\xd7\xd3\x34\x0d\x93\xc9\x04\x8e\xe3\x12\x12\x60\xee\xdc\xb9\ \x10\x04\xa1\xdd\xe7\xe2\x53\xe9\x6a\x2d\x2e\x48\xc7\xc9\x7a\xc0\ \xc8\x94\x30\x32\x51\x03\xc9\x08\x58\x4b\xe2\x24\xb3\xb3\xd2\x2d\ \xaa\xfb\x93\xaf\xc8\x24\xa4\x80\xe1\xe9\xe0\x64\x92\x80\xe3\x38\ \x98\x4c\x26\x38\x9d\xce\x84\x01\xc7\xf3\x3c\x62\xb1\x18\x04\x41\ \x48\x10\x80\x20\x08\x90\x24\x29\xf1\xab\x36\xf4\x52\xa9\x03\x92\ \x58\xb4\x8c\x2c\x3d\x03\x96\x4e\xdf\x27\x23\x06\x2d\x11\x9e\x4c\ \xe4\xa7\x53\x49\xc9\x8c\x40\x96\x65\xc1\x30\x4c\x5a\xc3\x53\xb5\ \x5f\x20\xc0\x97\xf3\x9a\x0e\xd6\xeb\x6f\x53\x14\x05\x86\x61\xc0\ \x30\x0c\xcc\x66\x73\x52\xc3\x50\x14\x45\x88\xa2\xa8\x49\x10\xa4\ \x21\x48\x12\x47\x36\xf1\x75\x2d\xab\x5e\x6b\x7f\x32\xcb\x3d\x15\ \xb0\x6a\x43\x32\x99\xf1\xa8\xe5\x55\xa8\xf7\x99\xcd\x66\xb0\x2c\ \x9b\x52\x55\x68\x3c\x83\xd8\x61\xe9\x60\xa3\x26\x85\x52\xd4\x03\ \x4d\xd3\xed\x26\x4e\xd4\xeb\x9b\x93\xd2\x81\x54\x25\x6a\x8f\x21\ \x9d\x01\xab\x96\x32\x6a\x50\x14\x91\x9d\xca\x8d\x54\x13\x47\xb2\ \x42\x5a\xad\xb6\xc9\xff\x26\x93\x09\x0c\xc3\x68\x12\x58\xb6\x31\ \x01\xdd\x04\xc0\xb2\x2c\x06\x0c\x18\x00\x8e\xe3\xda\xdc\xd0\xe7\ \xf3\x61\xcf\x9e\x3d\x47\xd5\xec\xe0\xa4\x61\x46\x72\xc9\xd1\x32\ \x75\x8d\xda\x53\xc9\x76\x52\xa8\x9e\x3d\x7b\xc2\xe9\x74\xb6\x21\ \xae\x58\x2c\x86\x5d\xbb\x76\xb5\x21\x5c\x43\x08\x60\xf1\xe2\xc5\ \x98\x3c\x79\xb2\xe6\xb1\x87\x1e\x7a\x28\xa3\x90\xf0\xa2\x45\x8b\ \x10\x89\x44\x32\xa2\xd6\x5c\x67\xcb\xce\xa6\x4a\xb7\xa3\x9f\xe5\ \x86\x1b\x6e\x40\x59\x59\x99\x2e\xf0\x27\x4e\x9c\x88\x85\x0b\x17\ \x6a\xb6\xb3\x7a\xf5\x6a\xac\x5c\xb9\xd2\x58\x02\xa8\xac\xac\x4c\ \x7a\xac\x47\x8f\x1e\x68\x6a\x6a\xd2\xcd\x19\x4f\x3d\xf5\x54\xde\ \x12\x31\xb9\x46\x21\x8f\xd4\x1b\xbf\x99\x48\x47\x59\x96\x51\x5a\ \x5a\x9a\x14\x8f\x92\x92\x92\xfc\x87\x82\xf5\x70\xfb\xb1\x0c\x46\ \x47\x27\x8e\x32\xf5\x68\xf2\x32\x4d\x5c\xa6\x22\x34\x5f\x60\xfc\ \xb7\x65\xf1\x3a\xaa\x22\x38\x1b\x75\x64\x38\x01\x1c\xeb\x60\x74\ \x94\x21\xab\x77\x8e\xc0\x5c\x17\xdd\x04\xc0\xf3\x7c\xd2\x63\x5a\ \x06\xdd\xb1\x06\x46\x3e\x08\x33\x9b\x67\x23\xf3\x00\xc9\x96\x54\ \xc7\xb2\xce\x06\x2e\x5f\xbe\x1c\x53\xa6\x4c\x69\x17\x78\x88\x46\ \xa3\x78\xef\xbd\xf7\x30\x6e\xdc\xb8\x63\x16\x8c\x5c\x55\x54\x3e\ \xda\x5e\xbd\x7a\x35\xec\x76\x3b\x4c\xa6\xb6\x5f\x35\x93\x24\x09\ \x1f\x7e\xf8\xa1\xb1\x12\x40\xa9\xcb\xdf\xb9\x73\xa7\xae\x73\x8f\ \x25\x30\x3a\xda\x90\xd5\xab\xff\x3d\x1e\x0f\x56\xac\x58\x91\xf6\ \x73\xbe\x86\xda\x00\x99\x64\x03\x8f\xbb\x78\xf9\x91\x60\xd9\x44\ \x68\x0d\x35\x02\xf5\xde\xf0\xb8\x8b\x97\xbf\xb6\x73\x71\xfb\x0c\ \xf3\x02\xf4\x4e\x13\xf7\xdf\x06\xc6\x91\x74\xf1\xb2\x79\x35\x5c\ \x2f\x73\x66\x4b\x00\x94\x2c\xcb\x11\x8a\xa2\xac\x99\xdc\xf0\x58\ \x71\xf1\x8e\x36\x5b\x44\x2f\xb7\x13\xc7\x63\x00\x28\x68\xa4\x81\ \x13\x39\x13\x8d\xff\x0c\x0e\x95\x11\x71\x00\x38\x59\x96\x3f\xcb\ \xa4\x1a\x35\xaf\xdf\xf8\xed\xe0\x79\x7b\x73\xe5\xe4\x7c\xbc\x9a\ \x96\xec\x7f\x12\x22\xf8\x52\xc1\xf1\x30\xa6\x8c\x1a\x73\x8a\x00\ \x9e\xd2\xfa\x2d\x29\x29\xe9\x6b\xb5\x5a\x37\x00\xb0\xa5\x12\x2f\ \x76\xbb\x1d\x95\x95\x95\x08\x06\x83\x59\x05\x2d\x0c\xaa\x7a\x31\ \xec\xba\x24\xe5\x55\x19\x5d\x9b\xa9\x41\x96\x8e\xab\x1d\x0e\x07\ \x3c\x1e\x0f\x82\xc1\x60\xda\xeb\x28\x8a\x8a\xb0\x2c\x7b\xe6\xe6\ \xcd\x9b\xb7\xe1\xe7\x52\xb0\x76\xbf\x14\x41\x08\xa9\x88\xa0\x8f\ \xc5\x62\x79\x90\xa2\xa8\x31\x00\x6c\xd9\x0c\x40\xae\xa0\xe4\x7a\ \x4f\x9d\xd5\x33\x79\xbf\xce\x28\xc2\x4c\x76\x8c\xa2\xa8\x08\xc3\ \x30\x5f\x45\xa3\xd1\x25\x3b\x77\xee\xdc\x91\x0a\x7c\x00\xb2\x56\ \x6b\x5a\x44\x90\x6c\x5b\xef\x79\xea\xed\x4c\xce\x53\x5f\x03\x8d\ \x6d\xf5\x0a\x8d\x6d\x68\x6c\x6b\x32\x9b\xc6\xb6\xac\xb1\xad\xae\ \xb0\x95\x90\xa2\xf8\x92\x58\x25\x1d\xdb\x7a\xcf\x4b\x06\x6e\xba\ \xf3\x74\x0f\x86\xfa\xdc\x6c\xc1\x33\x02\x54\x2a\x09\xa8\xe9\xf6\ \x65\xd3\x57\x68\x18\x4e\x6a\x22\x48\xb7\x4f\x36\x98\x58\xb2\x21\ \x22\x5d\xa0\x1a\xbd\x50\x69\x08\x46\x0f\xb0\xa9\x38\x59\x0b\x6c\ \x24\xe1\xf6\x4c\xb9\x3f\x95\x14\xd0\x92\x0a\xd0\x41\x14\x5a\x84\ \xa1\x87\x50\x92\x01\x2a\xe7\x03\xac\xa3\x71\xa1\x92\x10\x15\xd2\ \x88\x76\x4a\x67\x5b\xd9\x80\x8f\x24\x40\xa4\x23\x0a\xc3\x81\x33\ \x6a\xf9\x7f\x16\xff\x74\xe1\x37\x58\x00\x50\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0f\x41\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2c\x15\x34\x32\x31\x91\x00\x00\x0e\xc1\x49\x44\x41\x54\x68\ \xde\xed\x59\x79\x6c\x1c\xd7\x79\xff\xbd\x39\x76\x76\x97\xbb\x5c\ \x72\xb9\xbc\x45\x72\x45\x91\x14\x4f\x99\x92\x2c\x8b\x0a\x25\x59\ \xbe\x5a\x07\x09\x52\xb8\x46\xda\x3a\x45\x80\x24\x4d\x5b\xc4\x76\ \x83\xc6\x4e\x5d\x14\x30\xda\x24\xe8\x1f\x6d\xe0\xa4\xb5\x1d\x18\ \x09\x10\x04\x76\xe2\xa0\xa9\x13\x3b\x8e\x1d\xd7\x55\x9c\x5a\xb4\ \x2d\x51\x52\x45\x59\x24\x4d\x52\xa4\xb8\xa4\x78\x2f\x6f\x72\xb9\ \xd7\xcc\xbc\xab\x7f\xec\xc1\x15\x25\x8b\x74\xe2\xa4\x05\x9a\x01\ \x3e\x7c\xc3\xe1\x9b\xd9\xdf\xef\xbb\xde\xf7\xde\x03\x7e\x77\xfd\ \xee\xfa\xb5\x2e\xf2\x61\x7f\xf0\xc4\x89\xaf\x68\x96\xb5\x18\x24\ \x44\xdd\x2b\x25\xf2\x09\x91\x5e\x21\x48\x1c\x90\x51\x29\x49\x28\ \x16\x2b\x0a\x0d\x0e\x7e\xc5\xfe\x3f\x45\xa0\xb3\xf3\xe1\x0a\x28\ \xea\x9f\x3a\x0c\xe3\x0f\x39\x65\xed\xbb\xaa\x4b\xf8\xee\xba\x6a\ \xe9\x2d\xc8\xd3\x74\x87\x0e\x6a\xd9\x32\xb2\x1e\xe7\x53\xe3\x33\ \x98\x9e\x0c\xeb\x52\x51\x47\x24\xe7\x3f\x15\x8c\xff\xa0\xbb\xfb\ \xe9\xb1\xff\x35\x02\x1d\x1d\x0f\x1d\x76\xba\x9c\xff\x58\x5b\x5b\ \x7e\xec\xe1\x2f\x7e\x42\x37\x9c\x0e\xa5\xbc\xb2\x1c\x92\x33\x48\ \xce\xa0\x6b\x2a\x08\x01\xe6\x97\x37\xb0\x6e\x6b\x70\x38\x74\x38\ \x54\x82\xe9\xd9\x15\xf4\x5f\x1a\xa5\xa7\x5e\x3f\xcd\x22\x1b\xf1\ \x41\x61\xd3\xc7\xcf\x9e\xfd\xd6\xc9\xdf\x1a\x81\xce\xce\x87\x2b\ \x74\xc3\xf8\x4e\x79\x59\xe0\xae\xbf\x7b\xfc\x01\x57\xcd\xae\x00\ \x42\xd3\x0b\xd0\x35\x1d\xad\xf5\xbb\xae\x1b\x6f\xdb\x36\xbe\xfb\ \x62\x17\x02\x35\xcd\x88\x26\x6c\x10\x48\x94\xf8\x0c\x94\x15\xba\ \x30\x32\x3c\x8d\x57\xfe\xfd\x17\xf1\xb9\xe9\x85\xf7\xc0\xc5\x67\ \xce\x9c\x79\x72\xe4\x37\x4a\xe0\xe8\xd1\x2f\xde\x57\x5a\x1e\xf8\ \xc1\x67\xff\xf2\x0f\x9c\x77\x1e\x6d\x52\x97\x56\xd6\x31\xb9\x46\ \x61\x13\x37\xf2\x0d\x82\xc4\x62\x08\xc7\x3b\x0e\x5c\xf3\xce\x7f\ \x75\xbd\x03\x14\x35\x80\x0b\x02\xca\x38\x4c\x9b\x61\x29\x62\x62\ \x61\x2d\x89\xaa\x80\x1b\x2d\xd5\x3e\x5c\xb8\x30\x2c\x5f\xfe\xfe\ \xcf\x13\x56\xd2\xfa\xf2\x99\x33\x4f\x7d\x7b\xa7\x78\xd4\x0f\x02\ \xfe\xf6\x3b\x1e\xf9\xda\x91\xce\xd6\x6f\x3e\xfd\xe4\x83\xee\x42\ \x9f\xa1\x84\xc6\x27\xd0\x7b\x79\x0c\x6d\xc1\x22\x24\xd6\xc2\xf0\ \x16\x06\x10\x28\xf4\xa1\xc0\xe3\x84\x90\x12\x97\x7a\xfb\xf1\xcb\ \x77\xce\x83\xb9\x02\x28\x2c\x0c\x40\x4a\x40\xca\xd4\xb7\x0c\x5d\ \x41\x63\xa9\x86\x7b\xda\xcb\x50\xea\xd3\x11\xac\xf0\x90\xce\xe3\ \x6d\x8e\xa1\x2b\xd3\x77\xe7\x7b\xdb\xea\x3b\x0e\x57\xbd\x3a\x34\ \x34\x24\x3f\x34\x02\xc7\x4f\x3c\xf2\x2f\x9f\xfe\xf4\x3d\x7f\xfd\ \xd8\xa3\x9f\x74\x2e\x2c\x2e\xa2\x77\x30\x84\x70\x5c\x45\x6b\xd3\ \x5e\x84\xa7\x27\xb1\xbc\x16\x41\x79\x65\x35\x62\xab\x61\xf8\x7d\ \x5e\x3c\xfb\xa3\x97\x51\x5e\xdf\x8e\xf2\x9a\x06\xe4\x1b\x0a\xe6\ \xaf\x0e\xc2\x5d\x58\x06\x09\x09\x29\x25\x8a\xdc\x04\x87\x1a\x8a\ \x71\xbe\xa7\x17\xe1\xe5\x0d\x54\x96\xfa\xf1\xe6\x85\x61\x3c\xf4\ \x67\x1f\xd5\x92\xd6\x46\x6b\xcf\x45\xf3\xd6\x8e\xc3\x55\x2f\x6c\ \x47\x42\xdd\x19\xf8\x2f\x3d\xfe\x27\x0f\xdc\xf9\xe8\x9f\x7f\xee\ \x5e\xe3\xe4\xa9\x33\x18\x5f\xd7\x51\x5c\xd3\x84\xf6\x2a\x17\xc2\ \x33\x93\x28\xde\x55\x87\x9a\xba\x46\x68\xaa\x06\x87\xd3\x83\x53\ \xa7\xde\xc4\xe1\xdb\xef\x85\xe6\x70\xa4\xac\xae\x1a\x30\xf2\x03\ \x20\x44\x81\xa2\x00\x42\x00\x1d\x0d\x05\x70\x39\x9d\x38\x79\xba\ \x17\x45\x45\x7e\x54\x57\x14\x63\x6f\x4d\x09\xa4\xe0\x38\x74\xb0\ \x45\x59\xdd\x58\xaa\xbd\x78\xc9\xac\x99\x99\x3a\xff\xb3\x5f\x8b\ \x40\x47\xc7\xc3\x27\x3a\x8f\xdd\xf2\xed\xbf\xfd\x9b\x3f\x72\x72\ \xce\x31\xb9\x4a\x11\xa8\xa8\x41\xc0\xa3\x22\x58\xe2\x41\xf5\xae\ \x72\x8c\x0c\xf6\xc1\x5f\x56\x05\x45\x21\x50\x35\x15\x15\xd5\x75\ \x20\x4a\x2a\xbd\x36\xc3\x46\x01\x08\xe0\x30\x97\x10\x31\x39\xae\ \x8c\x4d\xa1\x7f\x68\x14\x96\x50\x71\xc7\x6d\xcd\x70\x3b\x0d\x08\ \x21\xc0\x39\x87\x69\x9a\xb8\xed\x60\xb3\x32\x30\x1c\x6a\x72\x39\ \x9a\x67\xa7\xa7\xff\xbb\xf7\x57\x4a\xe2\xce\xce\xc7\xbc\xf9\x05\ \xfa\xf8\x4b\x2f\xfe\x7d\xc0\x70\xe8\xd9\xe7\x3d\xfd\xc3\xd8\xdf\ \xda\x00\x55\x51\x00\x00\x42\x08\x9c\xbe\xd0\x8f\x3d\xcd\xfb\xb3\ \x63\x18\x17\x60\x5c\x80\x32\x0e\x4a\x39\x6c\xc6\xc1\xa2\x4b\xb0\ \x93\x1b\xa0\x94\x62\x77\x75\x25\x20\x38\x7c\x3e\x2f\xfc\x05\x3e\ \x70\xce\x91\x4c\x26\x61\x9a\x26\x92\xc9\x24\x84\x48\xbd\xfb\x85\ \x87\x9e\x89\x5a\x09\xde\x7a\xfa\xf4\x93\x53\x37\xc2\xa8\xdd\x8c\ \x80\xc3\x29\x9f\xf8\xe7\xaf\x7f\xde\xef\x34\x1c\x90\x72\x33\x14\ \x0f\xb6\xed\x05\x21\x04\xa3\xa1\x31\x4c\x4c\xcf\x21\x1a\xb7\x50\ \x15\xdc\x0d\x99\x63\x15\x45\x21\x20\x82\x80\x10\x02\x90\x94\xe6\ \x46\x21\x54\x21\x50\x55\xee\x42\xb0\xaa\xfc\xda\x50\x50\x55\xa8\ \xaa\x0a\x45\x51\xa0\x28\x0a\x2c\xcb\x82\xae\xeb\x78\xf0\xa1\xdf\ \xf3\x7e\xe3\x89\x93\xdf\x03\x70\xf7\x8d\x30\x2a\xef\x5f\x2e\xbf\ \x50\xdb\xd2\x52\xf3\xa9\xd6\xa6\x1a\x25\x17\x3c\x80\x14\x28\x00\ \xf5\x75\x7b\xe0\xd0\x35\xec\xff\xc8\x1d\x20\x9a\x01\x48\x00\xe9\ \x90\x21\x20\x50\x48\x6a\x6c\x7a\x38\x88\xa2\x80\xdb\x26\x82\x55\ \x15\x37\x0e\x07\x42\xb2\x04\x14\x45\x41\x3c\x1e\xc7\xa1\xfd\xcd\ \xd8\xbd\xc7\xd3\xd9\xd9\xf9\x57\xc7\x3e\x10\x01\xcd\xf0\x7c\xf5\ \x91\x47\xef\xcf\x7b\xbf\xff\x0f\x8f\x5c\xc1\xcf\xde\xe8\x86\xbf\ \xba\x09\xaa\xa6\xa1\xb4\xa2\x2a\x83\x3f\x2b\x00\x49\x11\x02\x81\ \x04\x10\xd0\xe3\x38\x76\xa8\x05\x57\x42\x63\x78\xfa\xd9\x97\x70\ \xf2\xd4\x59\xbc\x73\xb6\x07\x94\xb2\x2c\x81\x5c\x01\x80\x68\x34\ \x8a\x07\xfe\xf8\xb8\x53\x28\xea\x13\x3b\x26\xd0\xd9\xf9\x98\xb7\ \xa4\xd8\x77\x5f\xb0\xaa\xf4\x86\x39\xf2\xca\xeb\x6f\x60\x3e\x4e\ \xd0\x7e\x5b\x27\x7c\xbe\xc2\x34\xc8\xeb\x45\x48\x40\x40\x66\x13\ \x39\xdf\xad\x23\x91\x48\xe0\xe4\xf9\x2b\xa8\x6e\x39\x82\x0d\x67\ \x15\x2e\x4f\x2c\xe0\x4c\x4f\x3f\x9e\xfa\xfe\x2b\xd9\x30\xcd\x25\ \x90\x48\x24\xd0\xd4\x50\x8b\xe2\x22\xd2\x76\xe4\xc8\x83\x75\x3b\ \x22\xc0\x79\xf2\xfe\xcf\xff\xc5\xbd\x46\xe6\x23\xb9\xd7\xfc\xc2\ \x22\x98\xb3\x18\x55\xbb\x1b\x52\x55\x26\x23\x37\x60\x20\x65\x06\ \xbc\x84\x90\x12\x03\xd3\x31\x9c\x7d\x77\x10\x47\x0f\xec\x45\xad\ \x37\x09\x97\xbd\x0c\xa3\xac\x19\x03\x4b\x3a\x44\x7e\x2d\xbe\xfa\ \xdd\x5f\xe0\xb9\x97\xbb\xd2\xef\x6d\x86\x6d\x22\x91\xc0\xed\x77\ \xb6\x3a\x89\xa2\x7e\x76\x47\x04\x0c\xb7\xf3\x93\xed\x6d\x7b\xb4\ \xad\xb1\x1f\x1a\xbf\x8a\xff\x3c\x3b\x8c\x60\x43\x1b\x98\x00\xb6\ \xce\x30\xb9\xf8\x99\x90\x60\x42\x82\xf3\xb4\x08\x89\x9a\x80\x13\ \x77\x1d\x3d\x84\xfd\x4d\xb5\x68\x6b\xac\xc5\xc7\x6f\x6f\x47\x80\ \x2c\xa3\xb3\xde\x83\xe6\x00\x47\x45\x59\x29\x6e\x6d\x6b\xb8\x0e\ \x4f\x32\x99\xc4\x81\x5b\x1a\x88\x04\xb9\x7f\x47\x55\xc8\x70\xa8\ \x47\x03\x45\xbe\x54\xc9\xbc\xd4\x87\xde\xa1\x71\x14\x14\x05\xa0\ \x49\x1b\x7b\x5a\x3f\x02\xca\x38\x12\x16\x81\xae\xa8\x50\xc8\xf5\ \xc5\x58\x08\x09\xc6\xf9\xa6\x08\x81\x02\x35\x81\xba\xea\xb2\xeb\ \x7e\xeb\x63\x27\x0e\x6d\x4e\x98\xa6\x89\xf1\xab\x93\xe0\x9c\x43\ \x08\x01\x21\x04\xfa\x2e\x87\x50\x57\x5d\x8e\xb2\xd2\x52\x68\x6a\ \x72\xf7\x89\x13\x0f\x7a\xba\xba\x9e\x89\xbd\xaf\x07\x8e\x1c\xf9\ \x92\xbf\xad\x35\xe8\x24\x84\xe0\x3f\xde\xe8\xc2\xf9\x69\x02\xef\ \x9e\x23\xd0\x4a\x9a\x41\xf3\x6a\x52\x75\x9d\x71\xd8\x94\x61\x23\ \xc9\xc0\x84\x80\x10\x29\x97\x73\x21\x40\x99\x80\x4d\x19\x6c\x9a\ \xba\xa7\x5c\xc2\xa1\x08\x34\x05\x4b\x6f\x3a\x61\x66\x00\x8f\x4f\ \xcd\xe1\x27\xbf\xbc\x08\x21\x04\x00\xa0\x77\x7c\x1d\x5f\x7f\xa1\ \x17\x63\x13\x33\xf0\xf9\xf3\x18\xa5\x4a\xe3\x36\x1e\x60\x75\xb7\ \xdc\x12\x94\x00\x30\xb7\x12\x83\xab\xb4\x16\x0e\x8d\x80\x31\x0e\ \xc3\xeb\x87\xcd\x78\xea\x07\x65\x2a\x2c\xb8\x20\x70\xe9\x4a\xaa\ \x54\xca\x54\xe2\x72\x21\xc0\xb9\x00\xe3\x1c\x94\x09\x78\x94\x0d\ \x00\xde\x9b\x12\xe0\x9c\x83\x73\x8e\x83\xfb\x9a\x70\xfa\xf2\x3b\ \x88\xc6\x12\x50\x15\xe0\x81\x7b\xf6\x61\x3d\xb2\x81\xae\x81\x65\ \xe4\x07\xaa\xe4\xf2\xfc\x78\x2d\x80\x9e\xf7\xf5\x00\x21\x28\x98\ \x59\x58\x17\x42\x08\xdc\xd6\x56\x8f\xfa\x42\x06\x23\x32\x9a\xb2\ \x3a\x63\xb0\x29\x87\x45\x19\x2c\x9b\xc3\xb2\x29\xe2\x49\x86\xb5\ \x18\x45\xc2\xe2\x30\x29\x83\x45\x73\xc6\x50\x01\x9b\x71\x08\xc6\ \xb6\xed\xb7\x32\x04\x08\x01\x3a\xf7\x16\xe2\xd5\xd3\xc3\xe0\x9c\ \x43\x4a\x89\xa9\x99\x39\x24\x6d\x0e\xdd\xa1\x6b\x00\x8a\xb6\x4b\ \x62\x3d\x12\xb1\xe5\xf9\xc1\x49\xf8\xf2\x3d\x38\xd6\x5e\x8b\xaa\ \x8a\x12\x98\x91\xf9\x54\x4b\x40\x19\x2c\x9a\x02\x6f\xda\x0c\xa6\ \xcd\x90\xb0\x28\x56\xa3\x36\xd6\x63\x14\x09\x33\xf5\xcc\xa6\xa9\ \x50\xa2\x8c\x63\xcf\x0d\x62\x7f\x2b\x78\xc6\x58\x56\x9a\xea\x83\ \x18\x9d\x8f\xc3\xb6\x29\x4e\x76\x9d\xc3\x73\x5d\x73\xe0\xc4\x09\ \x45\xd3\x08\x21\x24\xef\xa6\x21\xc4\xb9\xb0\x4d\xdb\xe6\x16\x71\ \xe3\xf9\xee\x59\xe8\xc9\x7e\xdc\x7d\x20\x08\x19\x9d\x87\xe5\x0a\ \xa0\x24\x4f\xc2\x41\x97\xb0\xc8\x8b\xe0\x24\x3a\x6c\xc6\xa1\x90\ \xcd\xc6\x4d\x48\x09\x29\x05\x48\x36\xae\x25\x2e\x0e\x8e\xa1\xf3\ \x60\xf3\xfb\x12\xa0\x94\x66\x3d\x90\x91\x3b\x9a\x7c\x18\x9d\x98\ \xc1\x6c\x4c\x87\xe6\xf1\x42\x55\x08\x98\x69\x0a\x29\x11\xbb\x29\ \x01\x55\x95\xeb\xeb\xab\x31\xa9\x2a\x04\x92\xe8\x90\xbe\x20\xde\ \xbe\x2a\xd0\x54\xe2\x87\xd3\x1d\xc1\xb1\x7d\x2d\x50\x48\xaa\x15\ \x88\x27\x92\x78\xe1\xcc\x24\x3c\xf9\x85\xd9\x32\x2a\x84\x84\x10\ \x32\x27\x0f\x04\x96\x6d\x82\x9a\xb9\x79\xec\xaa\x28\xbb\xe1\x72\ \x93\x52\x9a\xd5\x19\x69\x6f\x0a\xc2\x34\x4d\x9c\x7b\x77\x10\x10\ \x25\xd0\x15\xc0\xb6\x6c\x4e\x08\x56\x6e\x4a\xc0\xe1\x70\x8c\xce\ \x4e\xcc\x19\x6e\x87\x0a\x9b\xf2\xf4\x28\x15\x03\x91\x02\x54\x0a\ \x96\xb5\x36\x00\xe4\xb9\x5d\x68\x28\xb0\x31\x15\x5d\x03\xd3\xbd\ \x39\x1e\x90\x29\xf0\x42\x80\x31\x01\xc6\x35\xfc\xa4\x7b\x1a\x1f\ \xdb\x6f\xe2\xd2\xe0\x28\xae\xce\xad\xa0\xb2\xb8\x00\xf7\x1c\xbb\ \x15\x9e\x3c\xd7\x35\xc0\x29\xa5\x60\x8c\x81\x52\x8a\xa4\x69\xa2\ \x7f\xda\x02\xdc\x0c\x6e\xa7\x86\xd8\x5a\x8c\x4b\x29\xc7\x6e\x9a\ \x03\x5d\x5d\xff\xba\x9e\x34\xed\x64\x3c\x61\x42\x53\x49\x3a\x19\ \x19\x6c\xc6\xd1\x58\x71\x7d\x6b\xd4\x79\x68\x1f\x0e\x05\x9d\xa9\ \x36\xd8\xa2\x30\x6d\x9a\xd6\x0c\x96\xcd\xb2\xef\xc7\xa5\x1b\xdf\ \xeb\x9a\x45\x6f\x24\x80\x65\xa3\x0e\x17\x56\x0a\x70\x7e\x60\x02\ \xb6\x6d\x5f\x63\xfd\x0c\x78\xc6\x18\x7e\xfc\xf3\x53\x40\x5e\x39\ \x14\x70\xb8\x74\x15\x1b\xeb\x51\x23\x91\x70\x8d\x6c\x3b\x13\x13\ \x45\x7d\x67\x74\x74\x16\x7e\x8f\x9e\xad\x28\xba\x02\xb4\x37\x06\ \x6f\x18\xc3\x75\xb5\x41\xdc\x7f\x6b\x00\x25\xea\x2a\x28\x65\xd9\ \xe4\xce\x92\x48\x0b\x74\x57\x7a\x8e\x48\x55\xaa\xf5\x48\x34\x4b\ \x60\xab\x8c\x84\xae\xa2\x6f\x25\xd5\x67\x15\xe4\x39\x10\x59\x5d\ \x07\xe3\x62\xac\xbf\xff\x89\xf8\xb6\x04\x04\xb5\x5e\xe8\xed\xb9\ \x9c\x28\x2b\x74\xa5\xac\x6f\x73\x14\xb8\x6e\x5e\x06\xfd\x85\x3e\ \xdc\x77\xe7\x01\x3c\x70\x38\x00\x2d\x11\x86\x69\x53\x58\xb9\x24\ \x68\x4a\xdb\x94\x67\xa5\x6f\xc9\x01\xcb\xb2\xb2\x92\xeb\x8d\x73\ \x7d\x63\x70\x18\x6e\x80\x53\x94\xf9\x3d\x98\x9b\x5c\xa0\x80\x7c\ \x71\x47\xbd\x50\x2c\xe6\xfc\x69\xff\xb9\x7e\x91\xef\x54\x01\x29\ \x61\x51\x86\xab\xf3\x1b\x58\x5b\x5b\x07\xdb\xa6\xa6\x07\x8a\x0a\ \x91\x58\x5b\x48\x81\xb7\x58\x96\x84\x69\x67\xca\x6f\x4a\xdb\x94\ \x63\x23\x6e\x23\x1e\x4f\x5c\x03\x3e\x4b\x82\x49\x48\x4e\x41\x04\ \x43\x99\x3f\x0f\xb3\xa1\x39\x53\x25\xfc\xd9\x1d\xad\x89\x17\x16\ \xba\xe9\xae\x9a\x23\x0d\x4e\x5f\x7e\x5b\x65\x65\x89\x32\xb7\x12\ \x87\xc5\x81\xe8\xf2\x0c\x1a\xaa\x4b\xb2\xd3\x7e\xaa\x74\x4a\xe4\ \x76\xad\x7d\x03\x97\xf1\xe6\x95\x38\x14\xcd\x9d\x6e\x3b\x52\x4b\ \x43\xc6\x37\x97\x96\x36\x4d\xb5\x23\x31\x93\xa2\xc6\x9b\x84\xdb\ \xd0\x40\x29\xcd\x12\xa1\x94\x62\xe0\xca\x24\xd6\x4c\x03\xbb\x8a\ \x3d\xe0\xf1\x04\x66\x27\xc2\x3d\xdd\x67\x9e\xf9\xc6\x8e\x17\x34\ \x84\xf3\x7f\x78\xfb\xd5\xb7\xe2\x15\x7e\x27\x14\x02\x58\x36\x43\ \x4f\x58\x47\xf7\x85\xbe\xec\xda\x35\x91\x48\x20\x99\x4c\x66\x75\ \x32\x99\xc4\xb9\xde\x61\x68\xee\x22\x98\xd9\x89\x8e\x5e\xeb\x85\ \x9c\xc4\x06\x24\x2a\x02\xf9\xd7\x85\x90\x65\x59\x50\x24\x85\x02\ \x86\xda\x4a\x3f\x42\x7d\xe3\x11\x15\xe4\xcb\x1f\x68\x57\x62\x6a\ \xea\x7c\xa4\xbc\xf2\x50\x39\x83\xba\xbf\xad\x35\xa8\x8e\x85\x37\ \xc0\x84\xc4\xd0\x02\x83\x87\x2d\xa1\xd8\x9f\x7f\xdd\x0c\x4a\x29\ \xc5\xc0\x70\x08\x33\x49\x0f\x18\x13\xa0\x5c\x80\xe5\x78\x21\xeb\ \x11\x9a\xd2\x44\x0a\x1c\x0e\xea\xd7\x84\x4e\xd2\x34\xf1\xe2\x6b\ \x6f\x61\x74\xd9\x85\x96\x3d\x95\x58\x9f\x5f\x11\xe1\xc9\xc5\xb7\ \xcf\x76\x7f\xeb\x9f\x3e\xe8\xb6\x8a\x62\x25\x63\xef\x5a\x51\xc7\ \xe7\x9a\xda\x1b\xf3\x0c\xa7\x03\x0b\x6b\x09\x08\x49\x10\x35\x39\ \xf6\x55\x7b\xb3\xb3\x66\x06\xbc\x69\x9a\x78\xfe\xf5\x8b\x60\xce\ \x62\x50\x9e\x09\x9b\xd4\x5c\x60\x67\x09\xf0\xcd\x9d\x0a\x9b\x62\ \xaf\xdf\x82\xaa\x20\xeb\x81\x95\xd5\x35\x9c\x1b\x63\x28\x2d\x09\ \xa0\xc2\xef\x41\x7f\xf7\x50\x74\x3e\xdc\xf7\xa9\xf5\xf5\xa9\x18\ \x00\xfa\x41\x08\xe4\xc5\xe3\x8b\x86\xcb\x28\x1c\x9a\x9f\x58\xfd\ \xe8\xed\xf7\xdc\xea\x88\x24\x28\xd6\xa2\x26\x7c\x06\x47\x4b\xa5\ \xfb\x1a\xeb\x9f\xed\xe9\xc3\x13\x2f\x0e\x02\x85\xb5\xe0\x02\x69\ \xeb\x8b\x1c\xeb\x6f\x92\x60\x8c\x41\x30\x0a\xc9\x6c\x28\xc9\x65\ \x94\xfb\x5d\x59\x0f\x0c\x5c\x0e\x61\x39\xae\x60\x7f\x63\x10\x17\ \x4e\xf5\x25\x57\x97\x26\xbf\x76\xe5\xca\xc9\xde\xdc\xb5\xd2\x4e\ \x08\x38\x00\xb8\x01\xb8\x57\x56\x42\x11\x97\xbb\x8c\x87\xaf\xae\ \x1e\xb8\xe3\xae\x03\x5a\x24\x41\x31\xb7\x66\xe2\xe0\x2e\x0d\x52\ \x8a\x2c\x81\x9e\xf7\x46\x11\x26\x55\xe0\x02\xd9\x36\x3a\xbb\x2f\ \x94\x49\x64\xc6\x20\x39\x85\x4c\x83\x07\xa3\xb0\x29\x47\x43\xa9\ \x9e\x8d\xfd\xbe\x91\x39\xec\x6b\x6b\x47\xef\xe9\x41\x73\x7e\x6e\ \xea\xb5\xf7\xfa\x7f\xfc\x3c\x00\x91\x16\x9e\xf6\x82\xdc\x8e\x80\ \x01\xc0\x09\xc0\x05\xc0\xb5\xb4\x78\x79\xdc\x70\x96\x17\xcc\x4d\ \x2c\xd6\x1d\x3f\xde\xae\x41\x51\x51\xeb\xa3\x10\x62\x33\x7c\x5e\ \x38\x75\x19\xa6\x5e\x9c\x5a\x81\x31\x91\x0a\xa1\x74\xf5\x11\x69\ \x8b\x83\xdb\x90\xb9\x9a\xd9\x60\x4c\xa0\xa5\x42\xc3\xc4\xd4\x0c\ \x42\x13\x0b\x28\xaf\x6d\x47\xef\x99\x41\x3b\x3c\x3d\x7d\xb1\xef\ \xd2\x0f\xbf\x99\xb6\x38\x4b\x03\xcf\xdc\xf3\xed\x08\xe8\x69\x12\ \x8e\xb4\x36\x16\xe7\x07\x86\x34\x92\xaf\xce\x85\x16\x1a\x3b\x3b\ \xea\xd4\xbd\xd5\x85\x88\xc5\x62\x88\x46\x63\x78\xfa\x47\xa7\xb0\ \x66\xec\x81\x84\x02\xce\x38\x44\xfa\x80\x23\x05\x3a\x05\x34\x63\ \x71\x99\xf9\x3b\x4d\x82\xdb\x16\x86\xaf\x8c\x41\xcf\xaf\x81\xd7\ \x57\x86\x8b\x6f\xf5\xdb\xe1\xe9\xf1\xd3\x7d\xbd\xff\xf6\x14\x00\ \x3b\x47\x68\xce\xfd\xb6\x04\x94\x34\x89\x8c\x68\x00\xf4\xe5\xa5\ \x91\x71\x66\xb3\xd9\x89\x91\xf5\x03\xb6\x34\xd5\xe6\xc6\xdd\xa4\ \x67\x60\x0c\x21\xb3\x02\x9c\x4b\x80\xb3\x14\x60\x9e\x06\xca\xe9\ \x26\xe8\x9c\x67\x92\xd9\x00\xb7\xa1\x81\x63\x77\x79\x01\x5a\xf6\ \xd6\x63\x65\x76\x59\xf4\x75\x0f\xd1\xc9\xc9\xbe\x1f\x8e\x0c\xbf\ \xf6\x12\x80\x24\x00\x13\x80\xb5\x45\x9b\xb9\x21\x44\x6e\xb2\x67\ \xea\x05\xe0\xb9\x91\xb8\x5c\x45\xa5\xf5\x8d\xbf\xff\x99\x22\x7f\ \x71\x5b\xd3\xa1\x66\xad\xae\xad\x99\x2c\x45\x12\x98\x0c\xaf\x63\ \x61\x35\x06\xcb\xa6\x80\x14\x80\x14\xa9\xed\x11\xc1\x01\x21\x20\ \x05\x87\xae\x00\xfe\x7c\x27\xca\xfc\x1e\x04\x0a\xf3\x30\x3f\xb9\ \x28\x43\xef\x8d\xb3\xf5\xb5\xa5\xc9\xb1\x50\xd7\x73\x1b\x1b\xd3\ \x53\x00\x62\x37\x91\xc4\x4e\x37\x77\xb5\x34\x89\xbc\x34\xf0\xbc\ \x2d\xe2\x2e\x2a\xaa\xaf\xdf\x55\xdd\x71\x9f\xd7\x5b\xb8\x77\x57\ \x7d\x35\x2a\x6a\x2b\xb5\x92\xb2\x22\x30\x21\x11\x8b\x9b\xb0\x6c\ \x0a\x9b\x52\x68\x84\x40\x55\x81\x3c\x43\x87\x4a\x24\x96\x17\xd6\ \xb0\x38\xbd\xc8\xe7\xa7\x16\x65\x34\xba\x3e\x33\x1f\xbe\xf4\x4a\ \x38\xdc\x3f\x90\x06\x97\x00\x10\xcf\x91\x58\x8e\x8e\x61\xcb\x6e\ \xce\x76\x47\x4c\xea\x16\xf0\xee\xb4\x76\xa5\xef\x5d\x00\x5c\x2e\ \x97\xbf\xa8\xa2\xe2\x40\x47\x7e\x41\xe5\x7e\xc3\xe1\xa9\x71\xb9\ \x0d\xe4\xf9\xdc\xd2\x61\x38\xa0\xeb\x3a\xa1\xb6\x2d\x6d\x9b\x22\ \x19\x4d\x22\x11\xb7\x14\xcb\x8e\xce\x45\x23\xe1\xfe\x70\xb8\xef\ \x7c\x2c\xb6\x30\x9f\x0e\x8b\x64\x8e\x64\x48\x6c\x25\x23\x7f\xd5\ \x33\xb2\xbc\x1c\xc0\x19\xed\xcc\x91\x4c\xc2\x3b\x00\xe8\x5e\x6f\ \x45\xb1\xc7\x53\x5a\xea\x70\xb8\xf3\x15\x45\x75\x08\xc1\x29\x63\ \xc9\x58\x2c\xb6\xb4\x14\x89\xcc\x2d\xa6\x92\x23\x9b\x98\xd6\x96\ \xf8\xce\x25\x91\x4c\x03\xb7\x3e\x8c\x43\x3e\x72\x03\xf0\xc6\x56\ \xf0\xe9\xd0\x53\xd3\x92\xbb\xed\x25\x73\x6a\x79\xa6\x9e\xe7\x56\ \x96\x5c\x22\xc9\x9c\x24\xfe\x8d\x9c\x13\xeb\x5b\x2c\x9f\x5b\xb1\ \x32\xe0\x95\xb4\x90\x1c\xd7\xe7\x12\xc8\xad\xef\x19\x12\x99\x6a\ \xc3\x7f\x9b\x27\xf5\x24\x0d\xd8\x91\xb6\xbe\xb6\x05\x3c\xd9\xb2\ \x75\x2a\x72\x08\x64\xbc\xc0\xf1\xff\xf5\xfa\x1f\xb9\x3b\x74\x10\ \x49\x58\x21\xb7\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\x1a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x29\x54\x1c\xdb\xd1\x00\x00\x02\x9a\x49\x44\x41\x54\x68\ \xde\xed\x58\xbd\x8b\xd4\x40\x1c\x7d\xbf\x49\x3c\x4f\x04\x3f\x2a\ \x15\x6d\xc4\x42\x5b\x3f\x1a\x7b\x41\x6b\xc1\xce\xd6\xab\x04\x41\ \xfc\x0f\x2c\xae\x13\xc4\x4a\x0e\x04\x45\x6c\x2d\xac\x6c\x04\xc1\ \x46\xb4\xb3\xb9\x4e\x2c\x14\x41\x54\x58\x41\xdc\xbb\xcc\xef\x59\ \xcc\x64\x77\x32\xd9\xdd\xcb\x7a\x99\x95\x85\x79\x90\x64\x36\x9b\ \x4c\xde\x9b\xdf\x67\x02\x64\x64\x64\x64\x64\x64\x64\x64\xfc\x33\ \xa4\xef\x09\x2f\xdc\x78\xca\x59\xff\xbf\xdf\xb8\xde\xeb\x33\xcb\ \x14\xab\x72\xff\xf6\xe5\x89\xe7\x6f\xdd\x7b\xd9\xfb\xb3\x92\x08\ \x30\x46\xb0\xf9\x79\xd0\x38\x77\xe6\xf8\x81\x24\x2e\x64\x16\xe5\ \xab\x24\x97\x58\x00\x01\xf6\x1f\x6e\x0b\x12\x40\x80\x4b\x6b\x01\ \x4f\x7e\x39\x5d\x28\x20\x0f\x0a\x34\xd1\x63\x4c\xaa\x80\x0d\xc9\ \x03\x40\x2a\x05\xbd\x0a\x38\xbf\xf6\x70\x8f\x13\xd0\x24\xcf\x74\ \xfc\xbb\xd7\x81\x9d\x2a\xac\x67\xaa\x6e\xb1\xd9\x20\x1f\x06\x71\ \xa7\x79\xe6\xa8\xd8\x73\x15\xb2\x07\x77\xae\x4c\x73\x77\xe7\x32\ \x4a\xa3\x24\xa0\x32\x0e\x5e\xbf\x53\x02\xeb\x37\x2f\x39\xeb\xd0\ \x59\x84\x04\x48\x85\xfa\x78\x51\x6f\xa6\xbb\x1b\xaf\xd2\x55\xe2\ \xb8\xc2\xd6\x4c\x39\xda\xb5\xc9\x13\xc0\xc7\xaf\xbf\xdb\x82\x19\ \x2d\x02\x81\xa3\x87\x57\x16\xd8\x4a\x74\x24\xdf\x22\xea\x07\x56\ \x81\x4a\x15\xaa\xce\x42\x20\x30\xdc\xb6\xe9\x04\xfc\xf8\xb5\x85\ \x6f\x83\x21\x0a\x23\x28\x64\x4c\xd6\x6a\xed\x26\x84\x12\xa8\x94\ \xa0\xd2\x13\x04\xac\x25\x94\x44\x65\x09\xeb\xcf\x5b\x25\xea\x80\ \x67\x50\xad\x87\x55\x42\x0b\xfc\xd9\xb6\xf8\x3e\xd8\x42\x65\x35\ \x28\x50\x82\x30\xf3\xb0\x51\x7d\x65\xa2\x35\xc6\xf7\x36\xc9\x83\ \xe3\x38\xe8\x5d\x40\x59\xb8\x8c\x7b\xee\xe4\x21\x88\x11\xd0\xaf\ \xb6\xb2\x26\xa2\x50\x15\x67\x05\x05\x3e\x7c\x1a\xc0\x06\x04\x4f\ \x9f\xd8\xef\xd2\x94\x62\x74\x0d\x49\xa8\x12\x0a\xf1\xbf\x15\x22\ \x4c\x23\xa0\xb2\x8a\xf5\x47\xaf\x3b\x5d\xbb\x76\xed\x62\xc3\xd7\ \xbd\xb3\xe0\xf1\xf3\xb7\xff\xaf\x0e\x74\xcd\xcb\x75\x9e\xaf\xe3\ \x62\x14\xb0\x96\x49\xde\xc8\x92\xb4\x12\x75\x46\x09\x2d\xa0\x69\ \x7a\xb9\x54\x02\xd8\x0c\xe6\xb0\xbd\x58\x8e\x66\xae\x4d\x5e\x13\ \x29\xd8\x4d\x21\x13\xbf\x00\x12\x7c\xdd\x10\xc0\xf9\x7b\xbc\xf2\ \x41\x7a\x2c\xc3\x16\xa9\x59\xe6\xd2\x0b\xa8\x49\x87\xc4\xc3\xb1\ \x8c\x5c\x28\xca\xf1\x41\x0c\xac\xf8\xe6\x94\x41\xa3\x1a\x1e\x93\ \x09\x30\xd1\x26\x13\xc6\x52\x07\x71\xbb\x40\x69\x6c\x81\x90\xb8\ \xfa\x7b\x75\x5e\xab\x94\x73\xac\x7c\xbc\x4d\x13\x03\x80\x38\x75\ \x64\x15\x0a\x81\x55\x82\xaa\x90\x71\xf2\x2c\x22\xc2\xad\x1c\x90\ \x42\x00\x67\x6c\xea\x89\x8f\x56\xee\xd9\x8b\x77\xd1\x77\x22\x33\ \x2c\x9c\x80\xbd\x53\xe6\x5c\xd8\xa7\xc5\x59\xae\xd3\x8a\x85\x1a\ \xc7\xce\x5e\x3d\x88\x7d\xab\x10\x53\xf2\xcb\x9b\x27\x3f\xa7\xb8\ \x50\x38\x4e\x26\x20\x76\x29\x33\xc5\xbd\xe2\xb9\x39\xe1\xc8\x09\ \xc1\x9c\xdc\x02\x5d\xe3\x64\x87\x37\x88\xdd\xbb\x4e\x46\x46\x46\ \x46\x46\x2f\xf8\x0b\x1d\xee\x9a\x6a\xc3\x8c\xa5\x08\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x1a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x29\x54\x1c\xdb\xd1\x00\x00\x02\x9a\x49\x44\x41\x54\x68\ \xde\xed\x58\xbd\x8b\xd4\x40\x1c\x7d\xbf\x49\x3c\x4f\x04\x3f\x2a\ \x15\x6d\xc4\x42\x5b\x3f\x1a\x7b\x41\x6b\xc1\xce\xd6\xab\x04\x41\ \xfc\x0f\x2c\xae\x13\xc4\x4a\x0e\x04\x45\x6c\x2d\xac\x6c\x04\xc1\ \x46\xb4\xb3\xb9\x4e\x2c\x14\x41\x54\x58\x41\xdc\xbb\xcc\xef\x59\ \xcc\x64\x77\x32\xd9\xdd\xcb\x7a\x99\x95\x85\x79\x90\x64\x36\x9b\ \x4c\xde\x9b\xdf\x67\x02\x64\x64\x64\x64\x64\x64\x64\x64\xfc\x33\ \xa4\xef\x09\x2f\xdc\x78\xca\x59\xff\xbf\xdf\xb8\xde\xeb\x33\xcb\ \x14\xab\x72\xff\xf6\xe5\x89\xe7\x6f\xdd\x7b\xd9\xfb\xb3\x92\x08\ \x30\x46\xb0\xf9\x79\xd0\x38\x77\xe6\xf8\x81\x24\x2e\x64\x16\xe5\ \xab\x24\x97\x58\x00\x01\xf6\x1f\x6e\x0b\x12\x40\x80\x4b\x6b\x01\ \x4f\x7e\x39\x5d\x28\x20\x0f\x0a\x34\xd1\x63\x4c\xaa\x80\x0d\xc9\ \x03\x40\x2a\x05\xbd\x0a\x38\xbf\xf6\x70\x8f\x13\xd0\x24\xcf\x74\ \xfc\xbb\xd7\x81\x9d\x2a\xac\x67\xaa\x6e\xb1\xd9\x20\x1f\x06\x71\ \xa7\x79\xe6\xa8\xd8\x73\x15\xb2\x07\x77\xae\x4c\x73\x77\xe7\x32\ \x4a\xa3\x24\xa0\x32\x0e\x5e\xbf\x53\x02\xeb\x37\x2f\x39\xeb\xd0\ \x59\x84\x04\x48\x85\xfa\x78\x51\x6f\xa6\xbb\x1b\xaf\xd2\x55\xe2\ \xb8\xc2\xd6\x4c\x39\xda\xb5\xc9\x13\xc0\xc7\xaf\xbf\xdb\x82\x19\ \x2d\x02\x81\xa3\x87\x57\x16\xd8\x4a\x74\x24\xdf\x22\xea\x07\x56\ \x81\x4a\x15\xaa\xce\x42\x20\x30\xdc\xb6\xe9\x04\xfc\xf8\xb5\x85\ \x6f\x83\x21\x0a\x23\x28\x64\x4c\xd6\x6a\xed\x26\x84\x12\xa8\x94\ \xa0\xd2\x13\x04\xac\x25\x94\x44\x65\x09\xeb\xcf\x5b\x25\xea\x80\ \x67\x50\xad\x87\x55\x42\x0b\xfc\xd9\xb6\xf8\x3e\xd8\x42\x65\x35\ \x28\x50\x82\x30\xf3\xb0\x51\x7d\x65\xa2\x35\xc6\xf7\x36\xc9\x83\ \xe3\x38\xe8\x5d\x40\x59\xb8\x8c\x7b\xee\xe4\x21\x88\x11\xd0\xaf\ \xb6\xb2\x26\xa2\x50\x15\x67\x05\x05\x3e\x7c\x1a\xc0\x06\x04\x4f\ \x9f\xd8\xef\xd2\x94\x62\x74\x0d\x49\xa8\x12\x0a\xf1\xbf\x15\x22\ \x4c\x23\xa0\xb2\x8a\xf5\x47\xaf\x3b\x5d\xbb\x76\xed\x62\xc3\xd7\ \xbd\xb3\xe0\xf1\xf3\xb7\xff\xaf\x0e\x74\xcd\xcb\x75\x9e\xaf\xe3\ \x62\x14\xb0\x96\x49\xde\xc8\x92\xb4\x12\x75\x46\x09\x2d\xa0\x69\ \x7a\xb9\x54\x02\xd8\x0c\xe6\xb0\xbd\x58\x8e\x66\xae\x4d\x5e\x13\ \x29\xd8\x4d\x21\x13\xbf\x00\x12\x7c\xdd\x10\xc0\xf9\x7b\xbc\xf2\ \x41\x7a\x2c\xc3\x16\xa9\x59\xe6\xd2\x0b\xa8\x49\x87\xc4\xc3\xb1\ \x8c\x5c\x28\xca\xf1\x41\x0c\xac\xf8\xe6\x94\x41\xa3\x1a\x1e\x93\ \x09\x30\xd1\x26\x13\xc6\x52\x07\x71\xbb\x40\x69\x6c\x81\x90\xb8\ \xfa\x7b\x75\x5e\xab\x94\x73\xac\x7c\xbc\x4d\x13\x03\x80\x38\x75\ \x64\x15\x0a\x81\x55\x82\xaa\x90\x71\xf2\x2c\x22\xc2\xad\x1c\x90\ \x42\x00\x67\x6c\xea\x89\x8f\x56\xee\xd9\x8b\x77\xd1\x77\x22\x33\ \x2c\x9c\x80\xbd\x53\xe6\x5c\xd8\xa7\xc5\x59\xae\xd3\x8a\x85\x1a\ \xc7\xce\x5e\x3d\x88\x7d\xab\x10\x53\xf2\xcb\x9b\x27\x3f\xa7\xb8\ \x50\x38\x4e\x26\x20\x76\x29\x33\xc5\xbd\xe2\xb9\x39\xe1\xc8\x09\ \xc1\x9c\xdc\x02\x5d\xe3\x64\x87\x37\x88\xdd\xbb\x4e\x46\x46\x46\ \x46\x46\x2f\xf8\x0b\x1d\xee\x9a\x6a\xc3\x8c\xa5\x08\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0e\xb2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x05\x66\xc4\xb7\x32\x00\x00\x0e\x32\x49\x44\x41\x54\x68\ \xde\xed\x58\x6b\x70\x1c\xd5\x95\xfe\x6e\xf7\xed\xe9\x99\xee\xd1\ \x8c\x34\x7a\xd8\x96\xac\xd7\x48\xb2\x65\x24\x59\xb6\x91\xf1\x53\ \xb6\x01\x07\xdb\x04\xe3\x25\x01\x43\x8a\x54\xa8\x0a\x2c\xc9\x56\ \xaa\xcc\x6e\x82\xb1\x6c\x42\xed\x6c\x12\x10\xb6\xb1\xbc\x18\xc2\ \x16\x05\x0b\x95\xda\xdd\x84\x68\x77\x81\x80\x31\xe8\x61\xec\x60\ \x82\x6d\x1e\x7e\x49\x7e\x48\xb2\xac\x97\xf5\xb2\x34\xd2\xcc\x48\ \x3d\xd3\x3d\xdd\x7d\x7b\x7f\x58\xa3\x1d\x14\x3f\xe4\x47\x92\x3f\ \xdc\xaa\x53\x7d\x67\xfa\xf6\x39\xe7\x3b\xe7\xdc\x73\xcf\xb9\xc0\ \x37\xe3\x9b\xf1\xcd\xb8\xa1\xe1\xf3\xf9\x6c\xd5\xd5\xd5\xfc\xdf\ \x4a\x3e\xb9\x5e\xa5\x9d\x6e\xc7\x7f\x19\xba\x71\x3f\x21\xc4\x24\ \x84\xd3\x29\xa5\xad\x86\x61\xfc\x2f\x33\x50\x55\x51\x51\x11\xbc\ \x19\xca\x55\xee\x7c\x6d\x85\x16\x74\x7f\xe6\xf3\xad\x8f\xde\x54\ \x00\xdb\x5f\x78\xfe\x4f\x09\x2e\xd7\xc2\xbf\xbb\xf7\x3e\x8e\xe3\ \x78\x98\xa6\x89\x40\x60\x18\x8d\xa7\x1a\xd4\x8e\x8e\xb6\xa8\x6e\ \x58\x0f\x6e\x7e\x6a\xf3\x47\x37\xa2\xfc\xf6\x17\xdf\xfc\x67\x83\ \x31\x1f\xc7\xd3\xcf\x10\x31\x56\x6f\xda\xf4\xe8\xc8\xa5\xd6\x71\ \xd7\xc3\xdc\x34\x8c\x4d\x8a\xa2\x44\x06\x07\x07\x2d\xd3\x34\x11\ \x89\x44\x20\xcb\x4e\x2c\x5b\xba\xc2\xbe\x66\xf5\x5a\x97\x28\xd0\ \xff\xd9\xb1\x63\xeb\xbd\xd7\xc3\xfb\xd5\x57\x5f\x15\xb6\xed\xfa\ \xcd\x5b\x36\x87\x7d\xe3\xfc\xc5\x8b\x91\x3a\x25\x6d\x1e\x24\xfe\ \xcb\x6d\xdb\xde\x9c\x7a\xd3\x3c\x00\x00\xdb\xb6\x3d\x3b\x8f\xf0\ \xdc\xbe\x3b\x6f\xbf\x2b\x61\xda\xb4\x74\xa2\x28\x0a\x00\x40\x96\ \x65\x84\x42\x41\x7c\xf0\xe1\xfb\x03\x21\x4e\xc9\xf7\x6d\xf0\x85\ \x26\x1d\x32\xaf\xbc\x92\x24\x18\xf2\x1e\x77\x52\xe2\xec\xc2\xa2\ \x5b\x24\x70\x17\xed\xdb\xd5\xde\xae\x9f\xef\xe8\x1a\xb2\x2c\x73\ \xf9\xa6\x7f\x7c\xb4\xe9\x86\x3d\x00\x00\x4f\x3d\xf5\xf4\x11\x66\ \x18\x0b\xf7\xee\xab\x1b\x6e\xef\x68\x67\x4e\xa7\x13\x84\x10\x28\ \x8a\x02\xb7\x3b\x11\xb3\x0a\x8b\x5c\x2e\x53\xfa\xc5\x64\xf9\xfd\ \xf2\xa5\xd7\x72\x39\x43\x3a\x36\x3d\x3b\x63\x6e\xf1\x9c\xd9\xe3\ \xca\x03\x40\x66\x4e\x8e\xe0\x9d\x91\x9f\xca\x2c\x9c\xa9\xdc\xf9\ \x86\xf7\xa6\x00\x00\x80\x4d\x9b\x9e\x39\x0d\xa6\x97\xfd\xf1\x93\ \x8f\xb9\x48\x24\x0c\x9e\xe7\x61\x59\x16\x34\x4d\xc3\xcc\x19\x85\ \x22\x83\xf5\xfd\xc9\xf0\xd9\xba\xe3\xb5\x85\x22\x84\xa3\x45\x45\ \xb3\x32\xbc\xf9\x05\xa2\x61\xb2\x3f\x5b\xa3\xeb\x3a\xe3\x79\x7a\ \x22\x2f\xc3\xd9\x31\x69\x00\x96\x65\x5d\x35\xc4\x36\x6e\x7c\xa6\ \xcd\x26\x8a\x47\x55\x4d\x03\xcf\xf3\xe0\x79\x1e\x8c\x31\x24\x24\ \x24\x80\xf2\xd4\x56\x59\x59\xe9\xbd\xd2\xf7\xcf\xed\x7a\x23\x15\ \x94\x1e\x9c\x3f\xbf\xcc\x9d\x36\x75\x0a\x1f\xd1\xa2\x60\xa6\x09\ \xd3\x34\x60\x18\x06\x4c\x43\x47\x28\x10\x40\x67\x5b\x7b\x84\x59\ \xea\xda\xf5\xeb\xd7\x9b\x93\x02\x50\x55\x55\xe5\xd8\xbe\xe3\xf9\ \x86\xad\x2f\x54\xfe\xf8\xaa\xb9\x98\xc0\x6f\x59\x0c\x82\x20\xc0\ \x66\xb3\x41\x10\x04\xf0\x3c\x0f\xbb\xe8\x20\x84\xe8\xf2\x95\xbe\ \xe5\x2c\xdd\x21\xc9\x92\xe2\x4c\x90\x10\x0c\x8d\x42\xd3\xd4\x8b\ \xa4\xaa\x88\xaa\x11\xe8\x51\x15\x4d\xa7\x4e\x2b\x16\xd8\x63\x15\ \x4f\xfc\xa8\x73\xd2\x59\x88\x11\x63\x6f\x76\x56\xce\x4c\x77\x82\ \x6b\xe7\x0b\x55\x95\x3f\xbb\x92\x97\xf4\xa8\x91\x67\x9a\x0c\x36\ \x9b\x6d\x9c\x28\xa5\x20\xdc\xe4\x72\x04\x63\x0c\x51\x4d\x83\xa6\ \x46\xe2\x48\x05\x2c\x13\x9d\xe7\x3a\x55\x5d\xd7\xdf\xad\x78\xe2\ \xd1\xea\x6b\x4a\xa3\x86\xae\x2f\x5a\xb3\xfa\xdb\xf4\xa1\x87\x1e\ \xb6\x27\x7b\x52\x7f\xb1\x63\xe7\xd6\xe7\x2e\x95\xf2\x76\xee\x7a\ \xa1\x3a\x2b\x2b\x73\x4a\x4e\x76\x36\x28\xa5\xe3\x00\x38\x8e\x83\ \xa2\x8c\xda\x54\x95\xb5\x5e\x59\x7b\x5a\x44\x08\x04\xcb\x34\xc7\ \x2d\xaf\xa9\x2a\xc0\x0c\x84\x82\x41\xcb\x3f\x34\x38\xc0\x45\xf9\ \x1f\x5d\xee\x73\x7a\xb9\x17\x3c\x4f\x47\x82\xc1\x60\x82\x61\x18\ \x58\x79\xe7\x2a\x69\xef\xc7\xb5\x4f\x6c\xaf\x7a\x7e\x0e\xd3\xd9\ \x1b\x00\x3b\x4f\x88\xe5\x1f\x51\x02\xaf\xe6\xe6\x7a\x17\x96\x2f\ \x59\xee\x08\x04\x82\x30\x4d\x13\x84\x10\x10\x42\x60\xc1\x82\x1e\ \xd5\x0d\x9f\xcf\x17\xbe\x6c\xda\xdc\xf1\xfa\x5c\x4a\x69\x75\x61\ \x41\xae\x4d\x09\x2b\x90\xed\xc2\x98\x5b\x01\x93\x99\x68\x6f\xef\ \x8c\x98\x3a\x5b\xb7\x79\xe3\x0f\x94\x6b\x06\x40\x79\xda\x14\x8e\ \x84\xcb\xec\xa2\x1d\x8c\x31\xac\x5e\x75\xb7\xd4\xd2\xd2\xbc\x72\ \xc0\x3f\x58\x3e\x3a\x32\xc2\xfc\xfe\x41\x57\x61\xe1\x2c\x6d\xde\ \xdc\x32\x51\x51\x14\x98\xa6\x19\xb7\x27\x08\xec\x76\x3b\xdc\x6e\ \x37\xbf\x7d\xfb\xd6\x47\x37\x6e\xdc\xf4\xef\x13\xf9\x3f\xfb\xe2\ \xeb\xc5\x3c\x47\xf7\x95\x14\xcd\x90\x2d\x30\xf0\x84\xc7\xc0\xe0\ \x90\x36\xe8\x0f\x9a\x51\xd3\xa0\x46\xd4\xb0\x59\x8c\x3d\xb3\xf9\ \x67\x8f\x1d\xbd\xae\x5a\x68\xdb\xb6\x67\x7f\x32\xf7\xd6\xf9\x2f\ \xcc\x2d\x9d\x67\x57\x55\x15\x1c\xc7\x81\x52\x0a\x8e\xe3\xc6\xad\ \x0c\x00\x91\x48\x04\x8c\xb1\xf8\x3d\x71\xd1\x00\x94\xc2\xb2\x2c\ \xbc\xfb\xde\xdb\xea\xa8\x32\xf2\xf0\xa6\x27\xb7\xbc\x3d\xce\xfb\ \xc5\x37\x0b\x00\x1c\x2e\x2d\x99\x99\x08\x0e\x84\x27\x1c\x7a\xfb\ \x06\xd5\xee\xde\x0b\x07\x38\x8e\xfb\x87\x30\xe8\x80\x6f\xc3\xf7\ \x27\x75\x00\x5e\xb6\x8a\x5c\xb2\x64\xd9\xe9\xd0\x68\xe0\xc7\xc5\ \xb7\x94\xc8\x76\xbb\xfd\xff\x43\xc3\xb2\x60\x59\x16\x18\x63\x60\ \x8c\x81\xe7\x79\x50\x4a\xc7\x53\xa8\xa6\x69\x08\x04\x02\xe0\x38\ \x0e\xb2\x2c\x63\x46\xc1\x0c\xda\xda\x7a\x76\xdd\xf2\x65\xe5\x87\ \xea\xeb\x3f\x6e\xfb\xe5\x4b\xaf\xe5\xf2\x16\x39\x3c\xa7\x64\x66\ \x92\x20\xf0\x84\xf2\x3c\x2e\x5c\x18\x52\xcf\xf7\xf4\xd7\x7b\xd3\ \x9d\x6b\x1f\xff\xe1\xc3\xfe\xfd\x1f\xbe\xad\x4d\xf6\x2c\xba\x2c\ \x80\xfd\xfb\xf7\x47\xef\x58\xb9\xa2\xf9\x7c\xf7\xf9\xb5\xc5\xb7\ \x94\xd8\x04\x41\x18\xf7\x42\x8c\x62\x4a\x0b\x82\x30\x9e\x3a\xbb\ \xbb\xbb\xe1\xf1\x78\x10\x0c\x06\x21\x08\x02\x5c\x2e\x37\xf2\xbc\ \x05\xb4\xa5\xb5\xe5\xfe\xe5\x2b\xef\x6a\xe0\x89\xf4\x6e\x69\xf1\ \x8c\x64\x59\x72\x70\x94\xa7\x18\x18\x1c\xd2\xda\xda\x7b\xf6\x25\ \x49\xfa\x7d\x8f\x3c\xf2\x88\x71\xad\x87\xe9\x15\xeb\xf8\xfa\xda\ \xbd\x4d\xcb\x97\x2f\xe3\xce\x9d\x3b\xbb\xc0\xeb\xcd\xb7\x25\x24\ \x24\x7c\x4d\xf9\x58\xd6\xd1\xa2\x1a\x04\x7a\x11\x44\x38\x1c\x86\ \x24\x49\x48\x4b\x4b\x83\xdf\xef\x87\x28\x8a\x70\xbb\xdd\x98\x32\ \x35\x5d\x38\x73\xb6\xf7\xa1\xe2\x59\x33\x64\xb7\x4b\xe6\x79\x8e\ \xc3\xc0\x60\x40\x6b\x3e\xdb\xf5\x47\x35\xe8\x5c\xf7\xe4\x93\x8f\ \xe8\xd7\x53\x0d\x5c\xb5\x11\xa9\xad\xa9\x3b\xb0\xb4\x7c\x71\x5b\ \x43\x63\xc3\x72\xff\xd0\x80\x25\x8a\xa2\x8d\xe3\x38\xa8\xaa\x86\ \xfe\xfe\x3e\x1c\xfe\xfc\x90\xf2\x51\xcd\x1e\x5b\x5b\xdb\x39\xb5\ \xb8\xa8\x84\xba\xdd\x6e\xf8\xfd\x7e\x50\x4a\x91\x92\x92\x02\xbf\ \xdf\x0f\x93\x59\xf8\xb0\xfe\x10\xbc\xb9\xd3\x49\xb2\xc7\x4d\x08\ \x80\x81\xc1\x61\xad\xe9\x6c\xe7\xa7\x6a\x40\xbe\xe7\x4a\xf5\xfe\ \x4d\x6b\x68\x7c\x3e\x9f\xdd\x2e\x09\xeb\x25\x87\x74\x0f\x21\xc8\ \x65\x80\x05\xc6\x9a\x23\x9a\xba\x5b\x55\xf4\xf7\x5c\x6e\xe9\xb9\ \xd4\xd4\xb4\xbf\xff\xee\x77\xd6\x4b\x8c\x31\xf4\xf4\xf4\x20\x31\ \x31\x11\x84\x70\xa8\xfe\x43\x1d\x32\xa6\xa5\x61\xca\x94\x64\x58\ \xcc\xc2\x80\x7f\xd8\x6a\x6a\x69\x3f\x14\x1e\x72\xae\xb8\x11\xe5\ \x6f\xa8\x9c\xbe\x64\x13\xb2\x63\xdb\x2b\xe9\xe9\x53\x1f\xb9\x6f\ \xdd\xfd\x92\x69\x9a\x38\xdf\xdd\x8d\x4f\x0e\x35\x22\xc5\xe3\x46\ \x46\x46\x1a\x2c\x66\x61\x68\x38\x84\x9e\xde\x7e\x6b\x34\xd0\xd5\ \x11\x51\xd4\xdb\xb6\x6c\xd9\x32\x70\x23\x32\x6f\x6a\x2f\x5b\x5b\ \x53\xbb\xa7\xb6\xbe\x36\xa7\xaf\xaf\xbb\xd0\x9b\x57\x20\xd4\xed\ \xff\x02\x6e\x97\x8c\xec\xcc\x74\x30\x8b\x61\x68\x38\x84\x81\xc1\ \x61\x3c\x78\xdf\x2a\x92\x90\xe0\x94\xbb\x7b\xba\xd6\xde\x71\xfb\ \x9d\xff\x51\x5f\x5f\x1f\xfd\x9b\x7a\x20\xe7\xee\x6d\x53\x39\x9e\ \x55\x12\xc2\xaf\x23\x96\x65\xe3\x38\xd8\x56\x96\x24\xf0\xcb\xe6\ \xe5\x72\xf9\xde\xe9\xd0\x0d\x03\x43\xc3\x23\xb8\x70\xc1\x8f\xf2\ \x85\x25\xf0\x24\x25\xc1\xe1\x70\xe0\xd8\x89\xa3\xda\xa1\x83\x9f\ \x1d\xe3\x39\xdb\xf2\x0d\x1b\x36\x68\xd7\x23\x9b\xde\xa8\xf2\xf9\ \x6b\xb6\x4e\x67\x9c\x75\xb4\x6c\xf6\xcc\xc4\x55\x4b\x67\x51\x42\ \x80\x23\xa7\x7b\xf0\xc9\x9f\x8e\x21\x2f\x0f\xc8\x31\x4c\x0c\x07\ \x46\xd0\xdb\x7b\x01\xf7\xac\x5a\x0a\x9b\x20\x40\x51\x14\x10\x42\ \x50\x5a\x32\x47\xd4\x54\xad\xf4\xcb\x23\x5f\xec\xae\xae\xae\x5e\ \x3d\xb1\x54\xfe\x8b\x03\xc8\x59\xe1\xb3\x33\x1e\x1f\x2d\x5b\x54\ \x9c\x34\x65\x4a\x1a\x9f\x99\x26\xc3\x34\x18\x22\x06\xb0\x68\x41\ \x09\x7e\xb3\xa7\x11\xa1\xd0\x28\xb2\x53\x28\xee\x59\xb5\x14\x61\ \x45\x01\x91\x65\x88\xa2\x88\x91\x91\x11\x30\xc6\x70\xeb\xbc\x32\ \x7b\x24\x12\x5e\x7a\xea\xcc\xc9\xdf\x59\x96\xf5\x20\x21\xc4\xfa\ \xeb\xec\x81\x07\xaa\x79\x0f\x37\xf2\xfb\xd2\x59\x39\xf3\x73\xb2\ \x33\x6d\x7d\x7e\x05\x6d\xbd\x41\x9c\x6c\x1f\xc6\xc0\xb0\x02\xcb\ \x02\xb2\x32\x92\xb1\xe7\x40\x93\xb5\xb0\xd0\x19\x2d\x2d\x9a\x49\ \x63\x2d\x67\xec\xd0\x8b\x44\x22\x20\x84\x20\x3b\x3b\x87\x06\x83\ \x41\xef\x9e\x0f\x77\x67\xd6\xd6\xd4\xed\xfe\x2b\x00\xb0\x48\x6e\ \xee\x07\x6f\x14\xe4\x4c\xbd\xb7\xb4\xa4\x50\xea\x19\x52\x10\xd5\ \x75\x84\x94\x28\x42\x8a\x0a\xc3\x30\x30\x1a\xd6\x20\xd9\x29\x82\ \x23\xaa\xa2\x8e\xf6\xb5\x24\xd0\x48\x62\x4e\x4e\x2e\x25\x84\x20\ \x1c\xbe\xd8\x7e\x12\x42\x10\x8d\x46\x61\x59\x16\x72\x73\xbc\x82\ \xdf\x3f\x58\x74\xdb\x82\xf9\x52\x5d\x6d\xfd\xc7\x7f\x31\x00\x45\ \x0f\xf8\x6c\x72\xee\xe1\x6a\x6f\x56\xda\xba\x05\x65\xc5\x52\xef\ \x50\x18\x5a\x54\x87\xd3\x4e\x01\x43\x45\x6f\x47\x13\x98\xc5\xc1\ \x22\x1c\x5c\xb2\x88\xf6\xae\x7e\xb5\x67\x20\xfa\x9d\xec\x84\xa1\ \x42\x4d\x55\x33\xb2\xb2\xb2\x29\x63\x0c\x9a\xa6\x8d\xd7\x57\x86\ \x61\xc0\xb2\x2c\x78\xbd\x79\xc2\x85\x81\xfe\xb2\x25\x4b\x17\x84\ \x6b\x6b\xf6\x1e\xba\xe9\x00\xf2\xd7\xf8\x5c\x9a\xe9\xa8\x2f\x9e\ \x99\x59\x3e\x7f\x5e\x91\xd4\xe3\x0f\x03\x96\x89\xcc\x54\x27\xc2\ \xa3\x21\x9c\x39\x79\x1c\x9c\x20\x81\xd8\x24\x24\xbb\x65\x8c\x8e\ \x46\x58\x5f\xff\xf0\xc9\x96\xdd\x15\xff\xb2\x78\xd1\x92\xb7\x42\ \x23\x81\xdb\x0d\xc3\x98\x96\x99\x99\x45\x75\x5d\x87\x69\x9a\xe3\ \xd5\x6b\xac\x40\xcc\xf3\xe6\x0b\x3d\x3d\xdd\xcb\x96\x94\x2f\xee\ \xae\xab\xdd\x7b\xec\xa6\x01\xf0\xde\xb3\xad\xc0\xe4\xf8\x4f\xe7\ \xcf\x9e\x31\xb3\xa8\x30\xcf\xde\xeb\x57\x90\xe6\xb6\x21\x2f\xdd\ \x8d\xee\xbe\x41\x1c\x3f\xfa\x15\x78\xd1\x09\x2a\x25\xc1\x93\x98\ \x00\xce\x02\x1a\x4f\xb7\x2a\x06\xb3\xee\x0e\xb6\xd4\x0f\xee\xdf\ \xbf\xdf\x5c\xbd\x6a\xcd\xef\xfb\x07\x7a\xbf\x05\x20\x2d\x7d\x5a\ \x06\x8d\x85\xcf\xc4\x0a\xd7\xeb\xcd\x17\xba\xbb\xbb\x56\x2f\x2b\ \x2f\x6f\xac\xab\xab\x6f\xba\x61\x00\xde\x6f\x57\xfe\x90\xe3\xc8\ \x1f\xee\x2c\x9f\x93\x9a\x99\x39\x4d\x88\xea\x26\x72\xa7\xca\xc8\ \x9b\xe6\x42\x43\xf3\x79\x1c\xf9\xea\x0b\x70\x82\x0c\x2a\x25\x21\ \x35\xd9\x0d\xc2\x98\x75\xbc\xf1\xec\xa8\x61\xe0\xae\x8e\x3d\x9b\ \xc6\xad\x58\x53\x53\x63\x2c\x5e\xb4\xf4\xad\xe1\xe1\xa1\x35\x84\ \x23\xa9\x19\xe9\x19\x7c\x34\x7a\xf1\x0c\x8b\x79\x83\x10\x02\x66\ \x32\x78\xbd\x79\xb4\xab\xbb\x6b\xdd\xd2\xe5\x8b\x0e\xee\xad\xdb\ \xd7\x76\x5d\x07\x59\xde\xaa\xca\x7c\x26\x90\x5f\x4b\x0e\x71\xc9\ \xda\xbb\x16\xc9\x84\xe3\xe1\x92\x04\xa4\x27\x3b\x90\xe2\x12\x51\ \x73\xa8\x15\x9f\x1f\x3e\x08\x42\x1d\xa0\x72\x12\xa6\xa4\x78\xc0\ \x0c\x93\x9d\x38\xd9\x1a\x34\x75\x7d\x45\xdb\x47\x4f\x9f\xb8\x64\ \xc9\xb1\x7d\xbb\x4c\x78\x76\x60\xee\x9c\x5b\x8b\xf2\xf3\x0a\x6c\ \xb1\x4d\xad\xeb\x3a\x38\x8e\x03\x17\xbb\xd4\x22\x40\x5d\x7d\x4d\ \x38\xa4\x8c\xde\xb1\x65\xe3\x96\xc3\x93\x07\xf0\x40\x35\x9f\x13\ \x69\xab\xe2\x61\x3d\x9e\x95\x35\x8d\xde\xbe\xb8\x94\x32\x8b\x21\ \x33\x45\x42\xba\x47\x82\x4d\xe0\xf0\xdb\xfa\x53\x38\x7d\xe2\x08\ \x2c\xf0\xa0\xb2\x07\x29\xc9\x1e\x10\x0b\xd6\xf1\xc6\x96\x90\x1e\ \x65\x4b\x3a\x6b\x2a\x4e\x5e\xb1\x38\xdc\xe5\x73\x25\x98\xd2\xa7\ \xb7\xce\x2b\x2b\xcc\xca\xcc\x11\x62\x20\x18\x63\x20\x84\x40\xd7\ \x75\x88\xa2\x08\x93\x99\xd8\xfb\x71\x6d\x28\x14\x55\x6e\xf9\xf9\ \x4f\x7f\xde\x3d\xa9\x5b\x09\xaf\xda\xfe\xab\x24\xb7\xf3\xb1\xb2\ \x79\x45\xf6\x3b\x96\xcc\xa1\x89\x4e\x01\x73\xf3\x92\x51\xea\x4d\ \x86\x4d\xe0\xf0\xda\xfb\x0d\x68\x3a\xd5\x00\x66\x11\xf0\x0e\x37\ \x5c\x2e\x37\xec\x02\x45\xc3\xa9\xb3\xa3\x06\xf4\x3b\xae\xa6\x3c\ \x00\xf8\x36\xf8\x42\xba\xc6\xca\xbf\x3a\xf2\xe5\xd9\xce\xae\x0e\ \x5d\x14\x45\x44\x22\x11\x18\x86\x01\x55\x55\xd1\xd7\xd7\x87\x96\ \x96\x16\x44\xb5\x28\x6e\x2b\x5b\x28\x4b\x44\xfc\xcf\x6b\xb8\x56\ \x61\x3f\x29\xf0\x66\x4a\xf3\x4b\x72\x31\x2b\xcb\x85\xb2\x82\x14\ \x94\xe4\x26\xe1\x4c\xd7\x10\x5e\x7e\xe7\x38\x7a\xbb\x5a\xa1\x6b\ \x51\xf0\x0e\x37\xa4\x84\x44\x78\x5c\x32\x8e\x36\xb4\x84\x8d\xa8\ \xf9\x70\xc7\xfb\x4f\x1f\x99\x6c\x62\xa8\xa8\xa8\x08\x46\x55\x73\ \xc9\x91\x23\x5f\xb6\xf5\xf4\xf6\x18\x92\x24\x41\x55\xd5\x8b\x3d\ \x84\x69\x22\x2b\x2b\x0b\x6d\x6d\x6d\x48\x4e\x4e\xe1\x45\xbb\xb8\ \xa0\xaa\xca\xe7\xb9\x2a\x80\xe9\x0f\x54\x39\x38\x10\xc7\xec\x59\ \xd9\x98\x39\xdd\x85\x52\xaf\x07\x0e\x1b\x8f\x5f\xbf\xdb\x80\xff\ \xde\xd7\x82\xd1\xc0\x20\x22\x4a\x08\xbc\x94\x08\x6a\x77\x61\xaa\ \xc7\x85\x86\xd3\xe7\xc2\x9a\xa6\xef\x6c\xfb\xb0\xe2\xfd\x6b\x2d\ \x26\x37\x6f\xde\x1c\x18\x1c\x18\x5e\xf6\xc5\x97\x87\xbb\x2e\x0c\ \xf4\x9b\xb2\x2c\x8f\xdf\x70\x70\x1c\x07\xc6\x18\x0c\xc3\x80\xe4\ \x90\xa3\xaa\x69\x9b\x79\xa5\x2c\xc4\x01\x10\x42\xa7\x6a\x78\xf7\ \x8c\x6f\xfd\xf4\x96\x82\x2c\xdb\xa9\xce\x61\x9c\xee\x18\xc6\x3b\ \x9f\xb6\x62\x30\x10\x46\x54\x53\x11\xe8\xef\x00\xb5\xbb\xc1\xd9\ \xdd\x98\x9a\x92\x88\xfe\x81\x61\xa3\xb7\xb7\xef\x70\xfb\x9e\xe7\ \xfe\x09\x88\xda\x00\x08\x71\x86\xb1\x26\xf0\xa7\x63\xef\xc5\x31\ \xb2\x03\xb0\x1f\x38\x70\xc0\xb4\x09\xe2\xdb\x82\xc8\x7f\xd7\xe3\ \x49\x91\x3d\x1e\x0f\x17\x08\x04\x30\x34\x34\x84\xd4\xd4\x54\x38\ \x1c\x0e\x9c\x68\x38\x6e\x1e\x3f\x72\xe2\xe9\x86\x86\x06\x3d\x9e\ \x2f\x3f\xc6\x54\x04\xe0\x88\x31\xf4\xe4\x2f\x2f\xa4\x82\x38\x23\ \xd1\xed\xe4\xda\x7a\x83\xd0\xf5\x8b\x17\xad\x21\x7f\x0f\xc0\xdb\ \xc0\x4b\x89\x90\x25\x19\xa2\x8d\xe2\xd4\xe9\x66\xd5\xdf\xb8\xfb\ \x07\xd1\x60\x6b\x14\x40\x0c\x00\x1d\x23\x7e\xec\x77\xec\x69\x8b\ \x53\x3e\x7e\x6e\x6f\x6e\x6e\x36\x35\x43\xff\xc0\x29\x3b\xee\x73\ \xbb\xdd\x62\x66\x66\x16\x97\x9c\x9c\x0c\x41\xa0\x38\xf8\xf9\x67\ \x91\x61\xff\xd0\xae\x5d\xbb\x5e\xfe\x64\x8c\x57\xcc\xf0\x16\x3f\ \xa6\xb8\x2d\x9e\xa1\x05\x72\x26\xc8\x12\xbf\x97\x3e\xc5\x23\x38\ \x44\x01\xa1\x51\xf5\xe2\xdd\x65\x64\x14\x9c\x23\x09\xe0\x44\x4c\ \x4b\x4d\x44\x4b\xd3\xd9\x48\xb0\xb7\xe5\x25\x7f\xe3\x3b\xc7\xe2\ \x14\xe6\xe2\x48\x88\x53\x9c\x8f\x03\x22\x4c\x94\x09\xc0\xde\xd1\ \xd6\x61\xf4\xf7\xf5\xbe\x27\x3b\xa5\xf4\xce\xae\xce\xf4\xd6\x73\ \x67\xcd\xe6\x96\xe6\x40\x4f\x77\x77\x55\xd5\x8e\x7f\xfd\x37\x5d\ \xd7\xc9\x84\xcc\x49\x08\x80\x84\x38\xcb\xc5\x9e\x42\xca\x9c\xef\ \x2d\x4d\xca\x9a\xf3\x72\xf9\xc2\xd9\xa2\xaa\x33\xf4\x0d\x85\xa0\ \x69\x51\x80\x77\xc0\xed\x72\xc2\x06\x13\xc7\x8f\x1f\xef\x6f\xab\ \xfd\xd5\x7a\x18\xaa\x0a\x40\x07\x10\x1d\x7b\xc6\xe6\x6c\x8c\xac\ \xb8\x39\x9d\xe0\x21\x1a\x07\x8e\xc4\xad\x35\xc7\xc8\x18\xa3\xf8\ \xf9\xf8\x7f\x31\x8b\xc4\x90\x71\xb1\x79\xb8\xaf\xb1\x87\xba\x72\ \x3a\x2f\x04\xcd\x65\xa9\xa9\x2e\x9a\xec\x96\x21\x8a\x0e\xb8\x13\ \x9c\x10\x79\x82\xc6\x93\x27\xd5\x40\xeb\xc1\xcd\xe1\xfe\x93\x9d\ \x97\x60\x1c\x13\x18\x9d\x20\xdc\x8c\xdb\x1b\xe6\x98\xa2\xb1\xf5\ \xd1\x31\xd2\x2e\x61\x8c\x4b\xf1\x36\x00\x98\x24\xce\xa5\x74\x42\ \xfc\x52\x00\x74\xda\x6d\x8f\xaf\x14\x53\x72\x2b\x65\xd9\x4e\x9d\ \x4e\x99\x68\x9a\x8e\x50\x28\x04\xa5\xbf\xf5\xe9\xfe\x2f\x5e\xaf\ \x8f\xb3\x56\x8c\x71\xbc\x40\x3d\x8e\x10\x17\x62\xf1\xa1\x46\xe2\ \xe8\x6b\x35\xfb\x04\xef\x99\x13\x3c\xf3\x67\x27\x31\x17\x07\x80\ \xff\x1a\x39\x1c\x34\xad\xe4\xfe\x62\x41\x70\x4d\x35\xcc\xc8\x70\ \xf0\xcc\x9e\x13\x6a\xa0\x4f\xbf\x84\x00\xf3\x12\xae\xb6\x26\xd1\ \x93\x5f\x0e\x80\x75\x95\xef\xaf\x58\x0b\x91\x38\x2b\xf1\x97\x10\ \x62\x4d\x88\x6d\x36\x19\x81\xdf\x8c\x09\xe3\xff\x00\x16\xa6\xac\ \xb7\xa6\xa8\x65\x5b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x0e\xb2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x05\x66\xc4\xb7\x32\x00\x00\x0e\x32\x49\x44\x41\x54\x68\ \xde\xed\x58\x6b\x70\x1c\xd5\x95\xfe\x6e\xf7\xed\xe9\x99\xee\xd1\ \x8c\x34\x7a\xd8\x96\xac\xd7\x48\xb2\x65\x24\x59\xb6\x91\xf1\x53\ \xb6\x01\x07\xdb\x04\xe3\x25\x01\x43\x8a\x54\xa8\x0a\x2c\xc9\x56\ \xaa\xcc\x6e\x82\xb1\x6c\x42\xed\x6c\x12\x10\xb6\xb1\xbc\x18\xc2\ \x16\x05\x0b\x95\xda\xdd\x84\x68\x77\x81\x80\x31\xe8\x61\xec\x60\ \x82\x6d\x1e\x7e\x49\x7e\x48\xb2\xac\x97\xf5\xb2\x34\xd2\xcc\x48\ \x3d\xd3\x3d\xdd\x7d\x7b\x7f\x58\xa3\x1d\x14\x3f\xe4\x47\x92\x3f\ \xdc\xaa\x53\x7d\x67\xfa\xf6\x39\xe7\x3b\xe7\xdc\x73\xcf\xb9\xc0\ \x37\xe3\x9b\xf1\xcd\xb8\xa1\xe1\xf3\xf9\x6c\xd5\xd5\xd5\xfc\xdf\ \x4a\x3e\xb9\x5e\xa5\x9d\x6e\xc7\x7f\x19\xba\x71\x3f\x21\xc4\x24\ \x84\xd3\x29\xa5\xad\x86\x61\xfc\x2f\x33\x50\x55\x51\x51\x11\xbc\ \x19\xca\x55\xee\x7c\x6d\x85\x16\x74\x7f\xe6\xf3\xad\x8f\xde\x54\ \x00\xdb\x5f\x78\xfe\x4f\x09\x2e\xd7\xc2\xbf\xbb\xf7\x3e\x8e\xe3\ \x78\x98\xa6\x89\x40\x60\x18\x8d\xa7\x1a\xd4\x8e\x8e\xb6\xa8\x6e\ \x58\x0f\x6e\x7e\x6a\xf3\x47\x37\xa2\xfc\xf6\x17\xdf\xfc\x67\x83\ \x31\x1f\xc7\xd3\xcf\x10\x31\x56\x6f\xda\xf4\xe8\xc8\xa5\xd6\x71\ \xd7\xc3\xdc\x34\x8c\x4d\x8a\xa2\x44\x06\x07\x07\x2d\xd3\x34\x11\ \x89\x44\x20\xcb\x4e\x2c\x5b\xba\xc2\xbe\x66\xf5\x5a\x97\x28\xd0\ \xff\xd9\xb1\x63\xeb\xbd\xd7\xc3\xfb\xd5\x57\x5f\x15\xb6\xed\xfa\ \xcd\x5b\x36\x87\x7d\xe3\xfc\xc5\x8b\x91\x3a\x25\x6d\x1e\x24\xfe\ \xcb\x6d\xdb\xde\x9c\x7a\xd3\x3c\x00\x00\xdb\xb6\x3d\x3b\x8f\xf0\ \xdc\xbe\x3b\x6f\xbf\x2b\x61\xda\xb4\x74\xa2\x28\x0a\x00\x40\x96\ \x65\x84\x42\x41\x7c\xf0\xe1\xfb\x03\x21\x4e\xc9\xf7\x6d\xf0\x85\ \x26\x1d\x32\xaf\xbc\x92\x24\x18\xf2\x1e\x77\x52\xe2\xec\xc2\xa2\ \x5b\x24\x70\x17\xed\xdb\xd5\xde\xae\x9f\xef\xe8\x1a\xb2\x2c\x73\ \xf9\xa6\x7f\x7c\xb4\xe9\x86\x3d\x00\x00\x4f\x3d\xf5\xf4\x11\x66\ \x18\x0b\xf7\xee\xab\x1b\x6e\xef\x68\x67\x4e\xa7\x13\x84\x10\x28\ \x8a\x02\xb7\x3b\x11\xb3\x0a\x8b\x5c\x2e\x53\xfa\xc5\x64\xf9\xfd\ \xf2\xa5\xd7\x72\x39\x43\x3a\x36\x3d\x3b\x63\x6e\xf1\x9c\xd9\xe3\ \xca\x03\x40\x66\x4e\x8e\xe0\x9d\x91\x9f\xca\x2c\x9c\xa9\xdc\xf9\ \x86\xf7\xa6\x00\x00\x80\x4d\x9b\x9e\x39\x0d\xa6\x97\xfd\xf1\x93\ \x8f\xb9\x48\x24\x0c\x9e\xe7\x61\x59\x16\x34\x4d\xc3\xcc\x19\x85\ \x22\x83\xf5\xfd\xc9\xf0\xd9\xba\xe3\xb5\x85\x22\x84\xa3\x45\x45\ \xb3\x32\xbc\xf9\x05\xa2\x61\xb2\x3f\x5b\xa3\xeb\x3a\xe3\x79\x7a\ \x22\x2f\xc3\xd9\x31\x69\x00\x96\x65\x5d\x35\xc4\x36\x6e\x7c\xa6\ \xcd\x26\x8a\x47\x55\x4d\x03\xcf\xf3\xe0\x79\x1e\x8c\x31\x24\x24\ \x24\x80\xf2\xd4\x56\x59\x59\xe9\xbd\xd2\xf7\xcf\xed\x7a\x23\x15\ \x94\x1e\x9c\x3f\xbf\xcc\x9d\x36\x75\x0a\x1f\xd1\xa2\x60\xa6\x09\ \xd3\x34\x60\x18\x06\x4c\x43\x47\x28\x10\x40\x67\x5b\x7b\x84\x59\ \xea\xda\xf5\xeb\xd7\x9b\x93\x02\x50\x55\x55\xe5\xd8\xbe\xe3\xf9\ \x86\xad\x2f\x54\xfe\xf8\xaa\xb9\x98\xc0\x6f\x59\x0c\x82\x20\xc0\ \x66\xb3\x41\x10\x04\xf0\x3c\x0f\xbb\xe8\x20\x84\xe8\xf2\x95\xbe\ \xe5\x2c\xdd\x21\xc9\x92\xe2\x4c\x90\x10\x0c\x8d\x42\xd3\xd4\x8b\ \xa4\xaa\x88\xaa\x11\xe8\x51\x15\x4d\xa7\x4e\x2b\x16\xd8\x63\x15\ \x4f\xfc\xa8\x73\xd2\x59\x88\x11\x63\x6f\x76\x56\xce\x4c\x77\x82\ \x6b\xe7\x0b\x55\x95\x3f\xbb\x92\x97\xf4\xa8\x91\x67\x9a\x0c\x36\ \x9b\x6d\x9c\x28\xa5\x20\xdc\xe4\x72\x04\x63\x0c\x51\x4d\x83\xa6\ \x46\xe2\x48\x05\x2c\x13\x9d\xe7\x3a\x55\x5d\xd7\xdf\xad\x78\xe2\ \xd1\xea\x6b\x4a\xa3\x86\xae\x2f\x5a\xb3\xfa\xdb\xf4\xa1\x87\x1e\ \xb6\x27\x7b\x52\x7f\xb1\x63\xe7\xd6\xe7\x2e\x95\xf2\x76\xee\x7a\ \xa1\x3a\x2b\x2b\x73\x4a\x4e\x76\x36\x28\xa5\xe3\x00\x38\x8e\x83\ \xa2\x8c\xda\x54\x95\xb5\x5e\x59\x7b\x5a\x44\x08\x04\xcb\x34\xc7\ \x2d\xaf\xa9\x2a\xc0\x0c\x84\x82\x41\xcb\x3f\x34\x38\xc0\x45\xf9\ \x1f\x5d\xee\x73\x7a\xb9\x17\x3c\x4f\x47\x82\xc1\x60\x82\x61\x18\ \x58\x79\xe7\x2a\x69\xef\xc7\xb5\x4f\x6c\xaf\x7a\x7e\x0e\xd3\xd9\ \x1b\x00\x3b\x4f\x88\xe5\x1f\x51\x02\xaf\xe6\xe6\x7a\x17\x96\x2f\ \x59\xee\x08\x04\x82\x30\x4d\x13\x84\x10\x10\x42\x60\xc1\x82\x1e\ \xd5\x0d\x9f\xcf\x17\xbe\x6c\xda\xdc\xf1\xfa\x5c\x4a\x69\x75\x61\ \x41\xae\x4d\x09\x2b\x90\xed\xc2\x98\x5b\x01\x93\x99\x68\x6f\xef\ \x8c\x98\x3a\x5b\xb7\x79\xe3\x0f\x94\x6b\x06\x40\x79\xda\x14\x8e\ \x84\xcb\xec\xa2\x1d\x8c\x31\xac\x5e\x75\xb7\xd4\xd2\xd2\xbc\x72\ \xc0\x3f\x58\x3e\x3a\x32\xc2\xfc\xfe\x41\x57\x61\xe1\x2c\x6d\xde\ \xdc\x32\x51\x51\x14\x98\xa6\x19\xb7\x27\x08\xec\x76\x3b\xdc\x6e\ \x37\xbf\x7d\xfb\xd6\x47\x37\x6e\xdc\xf4\xef\x13\xf9\x3f\xfb\xe2\ \xeb\xc5\x3c\x47\xf7\x95\x14\xcd\x90\x2d\x30\xf0\x84\xc7\xc0\xe0\ \x90\x36\xe8\x0f\x9a\x51\xd3\xa0\x46\xd4\xb0\x59\x8c\x3d\xb3\xf9\ \x67\x8f\x1d\xbd\xae\x5a\x68\xdb\xb6\x67\x7f\x32\xf7\xd6\xf9\x2f\ \xcc\x2d\x9d\x67\x57\x55\x15\x1c\xc7\x81\x52\x0a\x8e\xe3\xc6\xad\ \x0c\x00\x91\x48\x04\x8c\xb1\xf8\x3d\x71\xd1\x00\x94\xc2\xb2\x2c\ \xbc\xfb\xde\xdb\xea\xa8\x32\xf2\xf0\xa6\x27\xb7\xbc\x3d\xce\xfb\ \xc5\x37\x0b\x00\x1c\x2e\x2d\x99\x99\x08\x0e\x84\x27\x1c\x7a\xfb\ \x06\xd5\xee\xde\x0b\x07\x38\x8e\xfb\x87\x30\xe8\x80\x6f\xc3\xf7\ \x27\x75\x00\x5e\xb6\x8a\x5c\xb2\x64\xd9\xe9\xd0\x68\xe0\xc7\xc5\ \xb7\x94\xc8\x76\xbb\xfd\xff\x43\xc3\xb2\x60\x59\x16\x18\x63\x60\ \x8c\x81\xe7\x79\x50\x4a\xc7\x53\xa8\xa6\x69\x08\x04\x02\xe0\x38\ \x0e\xb2\x2c\x63\x46\xc1\x0c\xda\xda\x7a\x76\xdd\xf2\x65\xe5\x87\ \xea\xeb\x3f\x6e\xfb\xe5\x4b\xaf\xe5\xf2\x16\x39\x3c\xa7\x64\x66\ \x92\x20\xf0\x84\xf2\x3c\x2e\x5c\x18\x52\xcf\xf7\xf4\xd7\x7b\xd3\ \x9d\x6b\x1f\xff\xe1\xc3\xfe\xfd\x1f\xbe\xad\x4d\xf6\x2c\xba\x2c\ \x80\xfd\xfb\xf7\x47\xef\x58\xb9\xa2\xf9\x7c\xf7\xf9\xb5\xc5\xb7\ \x94\xd8\x04\x41\x18\xf7\x42\x8c\x62\x4a\x0b\x82\x30\x9e\x3a\xbb\ \xbb\xbb\xe1\xf1\x78\x10\x0c\x06\x21\x08\x02\x5c\x2e\x37\xf2\xbc\ \x05\xb4\xa5\xb5\xe5\xfe\xe5\x2b\xef\x6a\xe0\x89\xf4\x6e\x69\xf1\ \x8c\x64\x59\x72\x70\x94\xa7\x18\x18\x1c\xd2\xda\xda\x7b\xf6\x25\ \x49\xfa\x7d\x8f\x3c\xf2\x88\x71\xad\x87\xe9\x15\xeb\xf8\xfa\xda\ \xbd\x4d\xcb\x97\x2f\xe3\xce\x9d\x3b\xbb\xc0\xeb\xcd\xb7\x25\x24\ \x24\x7c\x4d\xf9\x58\xd6\xd1\xa2\x1a\x04\x7a\x11\x44\x38\x1c\x86\ \x24\x49\x48\x4b\x4b\x83\xdf\xef\x87\x28\x8a\x70\xbb\xdd\x98\x32\ \x35\x5d\x38\x73\xb6\xf7\xa1\xe2\x59\x33\x64\xb7\x4b\xe6\x79\x8e\ \xc3\xc0\x60\x40\x6b\x3e\xdb\xf5\x47\x35\xe8\x5c\xf7\xe4\x93\x8f\ \xe8\xd7\x53\x0d\x5c\xb5\x11\xa9\xad\xa9\x3b\xb0\xb4\x7c\x71\x5b\ \x43\x63\xc3\x72\xff\xd0\x80\x25\x8a\xa2\x8d\xe3\x38\xa8\xaa\x86\ \xfe\xfe\x3e\x1c\xfe\xfc\x90\xf2\x51\xcd\x1e\x5b\x5b\xdb\x39\xb5\ \xb8\xa8\x84\xba\xdd\x6e\xf8\xfd\x7e\x50\x4a\x91\x92\x92\x02\xbf\ \xdf\x0f\x93\x59\xf8\xb0\xfe\x10\xbc\xb9\xd3\x49\xb2\xc7\x4d\x08\ \x80\x81\xc1\x61\xad\xe9\x6c\xe7\xa7\x6a\x40\xbe\xe7\x4a\xf5\xfe\ \x4d\x6b\x68\x7c\x3e\x9f\xdd\x2e\x09\xeb\x25\x87\x74\x0f\x21\xc8\ \x65\x80\x05\xc6\x9a\x23\x9a\xba\x5b\x55\xf4\xf7\x5c\x6e\xe9\xb9\ \xd4\xd4\xb4\xbf\xff\xee\x77\xd6\x4b\x8c\x31\xf4\xf4\xf4\x20\x31\ \x31\x11\x84\x70\xa8\xfe\x43\x1d\x32\xa6\xa5\x61\xca\x94\x64\x58\ \xcc\xc2\x80\x7f\xd8\x6a\x6a\x69\x3f\x14\x1e\x72\xae\xb8\x11\xe5\ \x6f\xa8\x9c\xbe\x64\x13\xb2\x63\xdb\x2b\xe9\xe9\x53\x1f\xb9\x6f\ \xdd\xfd\x92\x69\x9a\x38\xdf\xdd\x8d\x4f\x0e\x35\x22\xc5\xe3\x46\ \x46\x46\x1a\x2c\x66\x61\x68\x38\x84\x9e\xde\x7e\x6b\x34\xd0\xd5\ \x11\x51\xd4\xdb\xb6\x6c\xd9\x32\x70\x23\x32\x6f\x6a\x2f\x5b\x5b\ \x53\xbb\xa7\xb6\xbe\x36\xa7\xaf\xaf\xbb\xd0\x9b\x57\x20\xd4\xed\ \xff\x02\x6e\x97\x8c\xec\xcc\x74\x30\x8b\x61\x68\x38\x84\x81\xc1\ \x61\x3c\x78\xdf\x2a\x92\x90\xe0\x94\xbb\x7b\xba\xd6\xde\x71\xfb\ \x9d\xff\x51\x5f\x5f\x1f\xfd\x9b\x7a\x20\xe7\xee\x6d\x53\x39\x9e\ \x55\x12\xc2\xaf\x23\x96\x65\xe3\x38\xd8\x56\x96\x24\xf0\xcb\xe6\ \xe5\x72\xf9\xde\xe9\xd0\x0d\x03\x43\xc3\x23\xb8\x70\xc1\x8f\xf2\ \x85\x25\xf0\x24\x25\xc1\xe1\x70\xe0\xd8\x89\xa3\xda\xa1\x83\x9f\ \x1d\xe3\x39\xdb\xf2\x0d\x1b\x36\x68\xd7\x23\x9b\xde\xa8\xf2\xf9\ \x6b\xb6\x4e\x67\x9c\x75\xb4\x6c\xf6\xcc\xc4\x55\x4b\x67\x51\x42\ \x80\x23\xa7\x7b\xf0\xc9\x9f\x8e\x21\x2f\x0f\xc8\x31\x4c\x0c\x07\ \x46\xd0\xdb\x7b\x01\xf7\xac\x5a\x0a\x9b\x20\x40\x51\x14\x10\x42\ \x50\x5a\x32\x47\xd4\x54\xad\xf4\xcb\x23\x5f\xec\xae\xae\xae\x5e\ \x3d\xb1\x54\xfe\x8b\x03\xc8\x59\xe1\xb3\x33\x1e\x1f\x2d\x5b\x54\ \x9c\x34\x65\x4a\x1a\x9f\x99\x26\xc3\x34\x18\x22\x06\xb0\x68\x41\ \x09\x7e\xb3\xa7\x11\xa1\xd0\x28\xb2\x53\x28\xee\x59\xb5\x14\x61\ \x45\x01\x91\x65\x88\xa2\x88\x91\x91\x11\x30\xc6\x70\xeb\xbc\x32\ \x7b\x24\x12\x5e\x7a\xea\xcc\xc9\xdf\x59\x96\xf5\x20\x21\xc4\xfa\ \xeb\xec\x81\x07\xaa\x79\x0f\x37\xf2\xfb\xd2\x59\x39\xf3\x73\xb2\ \x33\x6d\x7d\x7e\x05\x6d\xbd\x41\x9c\x6c\x1f\xc6\xc0\xb0\x02\xcb\ \x02\xb2\x32\x92\xb1\xe7\x40\x93\xb5\xb0\xd0\x19\x2d\x2d\x9a\x49\ \x63\x2d\x67\xec\xd0\x8b\x44\x22\x20\x84\x20\x3b\x3b\x87\x06\x83\ \x41\xef\x9e\x0f\x77\x67\xd6\xd6\xd4\xed\xfe\x2b\x00\xb0\x48\x6e\ \xee\x07\x6f\x14\xe4\x4c\xbd\xb7\xb4\xa4\x50\xea\x19\x52\x10\xd5\ \x75\x84\x94\x28\x42\x8a\x0a\xc3\x30\x30\x1a\xd6\x20\xd9\x29\x82\ \x23\xaa\xa2\x8e\xf6\xb5\x24\xd0\x48\x62\x4e\x4e\x2e\x25\x84\x20\ \x1c\xbe\xd8\x7e\x12\x42\x10\x8d\x46\x61\x59\x16\x72\x73\xbc\x82\ \xdf\x3f\x58\x74\xdb\x82\xf9\x52\x5d\x6d\xfd\xc7\x7f\x31\x00\x45\ \x0f\xf8\x6c\x72\xee\xe1\x6a\x6f\x56\xda\xba\x05\x65\xc5\x52\xef\ \x50\x18\x5a\x54\x87\xd3\x4e\x01\x43\x45\x6f\x47\x13\x98\xc5\xc1\ \x22\x1c\x5c\xb2\x88\xf6\xae\x7e\xb5\x67\x20\xfa\x9d\xec\x84\xa1\ \x42\x4d\x55\x33\xb2\xb2\xb2\x29\x63\x0c\x9a\xa6\x8d\xd7\x57\x86\ \x61\xc0\xb2\x2c\x78\xbd\x79\xc2\x85\x81\xfe\xb2\x25\x4b\x17\x84\ \x6b\x6b\xf6\x1e\xba\xe9\x00\xf2\xd7\xf8\x5c\x9a\xe9\xa8\x2f\x9e\ \x99\x59\x3e\x7f\x5e\x91\xd4\xe3\x0f\x03\x96\x89\xcc\x54\x27\xc2\ \xa3\x21\x9c\x39\x79\x1c\x9c\x20\x81\xd8\x24\x24\xbb\x65\x8c\x8e\ \x46\x58\x5f\xff\xf0\xc9\x96\xdd\x15\xff\xb2\x78\xd1\x92\xb7\x42\ \x23\x81\xdb\x0d\xc3\x98\x96\x99\x99\x45\x75\x5d\x87\x69\x9a\xe3\ \xd5\x6b\xac\x40\xcc\xf3\xe6\x0b\x3d\x3d\xdd\xcb\x96\x94\x2f\xee\ \xae\xab\xdd\x7b\xec\xa6\x01\xf0\xde\xb3\xad\xc0\xe4\xf8\x4f\xe7\ \xcf\x9e\x31\xb3\xa8\x30\xcf\xde\xeb\x57\x90\xe6\xb6\x21\x2f\xdd\ \x8d\xee\xbe\x41\x1c\x3f\xfa\x15\x78\xd1\x09\x2a\x25\xc1\x93\x98\ \x00\xce\x02\x1a\x4f\xb7\x2a\x06\xb3\xee\x0e\xb6\xd4\x0f\xee\xdf\ \xbf\xdf\x5c\xbd\x6a\xcd\xef\xfb\x07\x7a\xbf\x05\x20\x2d\x7d\x5a\ \x06\x8d\x85\xcf\xc4\x0a\xd7\xeb\xcd\x17\xba\xbb\xbb\x56\x2f\x2b\ \x2f\x6f\xac\xab\xab\x6f\xba\x61\x00\xde\x6f\x57\xfe\x90\xe3\xc8\ \x1f\xee\x2c\x9f\x93\x9a\x99\x39\x4d\x88\xea\x26\x72\xa7\xca\xc8\ \x9b\xe6\x42\x43\xf3\x79\x1c\xf9\xea\x0b\x70\x82\x0c\x2a\x25\x21\ \x35\xd9\x0d\xc2\x98\x75\xbc\xf1\xec\xa8\x61\xe0\xae\x8e\x3d\x9b\ \xc6\xad\x58\x53\x53\x63\x2c\x5e\xb4\xf4\xad\xe1\xe1\xa1\x35\x84\ \x23\xa9\x19\xe9\x19\x7c\x34\x7a\xf1\x0c\x8b\x79\x83\x10\x02\x66\ \x32\x78\xbd\x79\xb4\xab\xbb\x6b\xdd\xd2\xe5\x8b\x0e\xee\xad\xdb\ \xd7\x76\x5d\x07\x59\xde\xaa\xca\x7c\x26\x90\x5f\x4b\x0e\x71\xc9\ \xda\xbb\x16\xc9\x84\xe3\xe1\x92\x04\xa4\x27\x3b\x90\xe2\x12\x51\ \x73\xa8\x15\x9f\x1f\x3e\x08\x42\x1d\xa0\x72\x12\xa6\xa4\x78\xc0\ \x0c\x93\x9d\x38\xd9\x1a\x34\x75\x7d\x45\xdb\x47\x4f\x9f\xb8\x64\ \xc9\xb1\x7d\xbb\x4c\x78\x76\x60\xee\x9c\x5b\x8b\xf2\xf3\x0a\x6c\ \xb1\x4d\xad\xeb\x3a\x38\x8e\x03\x17\xbb\xd4\x22\x40\x5d\x7d\x4d\ \x38\xa4\x8c\xde\xb1\x65\xe3\x96\xc3\x93\x07\xf0\x40\x35\x9f\x13\ \x69\xab\xe2\x61\x3d\x9e\x95\x35\x8d\xde\xbe\xb8\x94\x32\x8b\x21\ \x33\x45\x42\xba\x47\x82\x4d\xe0\xf0\xdb\xfa\x53\x38\x7d\xe2\x08\ \x2c\xf0\xa0\xb2\x07\x29\xc9\x1e\x10\x0b\xd6\xf1\xc6\x96\x90\x1e\ \x65\x4b\x3a\x6b\x2a\x4e\x5e\xb1\x38\xdc\xe5\x73\x25\x98\xd2\xa7\ \xb7\xce\x2b\x2b\xcc\xca\xcc\x11\x62\x20\x18\x63\x20\x84\x40\xd7\ \x75\x88\xa2\x08\x93\x99\xd8\xfb\x71\x6d\x28\x14\x55\x6e\xf9\xf9\ \x4f\x7f\xde\x3d\xa9\x5b\x09\xaf\xda\xfe\xab\x24\xb7\xf3\xb1\xb2\ \x79\x45\xf6\x3b\x96\xcc\xa1\x89\x4e\x01\x73\xf3\x92\x51\xea\x4d\ \x86\x4d\xe0\xf0\xda\xfb\x0d\x68\x3a\xd5\x00\x66\x11\xf0\x0e\x37\ \x5c\x2e\x37\xec\x02\x45\xc3\xa9\xb3\xa3\x06\xf4\x3b\xae\xa6\x3c\ \x00\xf8\x36\xf8\x42\xba\xc6\xca\xbf\x3a\xf2\xe5\xd9\xce\xae\x0e\ \x5d\x14\x45\x44\x22\x11\x18\x86\x01\x55\x55\xd1\xd7\xd7\x87\x96\ \x96\x16\x44\xb5\x28\x6e\x2b\x5b\x28\x4b\x44\xfc\xcf\x6b\xb8\x56\ \x61\x3f\x29\xf0\x66\x4a\xf3\x4b\x72\x31\x2b\xcb\x85\xb2\x82\x14\ \x94\xe4\x26\xe1\x4c\xd7\x10\x5e\x7e\xe7\x38\x7a\xbb\x5a\xa1\x6b\ \x51\xf0\x0e\x37\xa4\x84\x44\x78\x5c\x32\x8e\x36\xb4\x84\x8d\xa8\ \xf9\x70\xc7\xfb\x4f\x1f\x99\x6c\x62\xa8\xa8\xa8\x08\x46\x55\x73\ \xc9\x91\x23\x5f\xb6\xf5\xf4\xf6\x18\x92\x24\x41\x55\xd5\x8b\x3d\ \x84\x69\x22\x2b\x2b\x0b\x6d\x6d\x6d\x48\x4e\x4e\xe1\x45\xbb\xb8\ \xa0\xaa\xca\xe7\xb9\x2a\x80\xe9\x0f\x54\x39\x38\x10\xc7\xec\x59\ \xd9\x98\x39\xdd\x85\x52\xaf\x07\x0e\x1b\x8f\x5f\xbf\xdb\x80\xff\ \xde\xd7\x82\xd1\xc0\x20\x22\x4a\x08\xbc\x94\x08\x6a\x77\x61\xaa\ \xc7\x85\x86\xd3\xe7\xc2\x9a\xa6\xef\x6c\xfb\xb0\xe2\xfd\x6b\x2d\ \x26\x37\x6f\xde\x1c\x18\x1c\x18\x5e\xf6\xc5\x97\x87\xbb\x2e\x0c\ \xf4\x9b\xb2\x2c\x8f\xdf\x70\x70\x1c\x07\xc6\x18\x0c\xc3\x80\xe4\ \x90\xa3\xaa\x69\x9b\x79\xa5\x2c\xc4\x01\x10\x42\xa7\x6a\x78\xf7\ \x8c\x6f\xfd\xf4\x96\x82\x2c\xdb\xa9\xce\x61\x9c\xee\x18\xc6\x3b\ \x9f\xb6\x62\x30\x10\x46\x54\x53\x11\xe8\xef\x00\xb5\xbb\xc1\xd9\ \xdd\x98\x9a\x92\x88\xfe\x81\x61\xa3\xb7\xb7\xef\x70\xfb\x9e\xe7\ \xfe\x09\x88\xda\x00\x08\x71\x86\xb1\x26\xf0\xa7\x63\xef\xc5\x31\ \xb2\x03\xb0\x1f\x38\x70\xc0\xb4\x09\xe2\xdb\x82\xc8\x7f\xd7\xe3\ \x49\x91\x3d\x1e\x0f\x17\x08\x04\x30\x34\x34\x84\xd4\xd4\x54\x38\ \x1c\x0e\x9c\x68\x38\x6e\x1e\x3f\x72\xe2\xe9\x86\x86\x06\x3d\x9e\ \x2f\x3f\xc6\x54\x04\xe0\x88\x31\xf4\xe4\x2f\x2f\xa4\x82\x38\x23\ \xd1\xed\xe4\xda\x7a\x83\xd0\xf5\x8b\x17\xad\x21\x7f\x0f\xc0\xdb\ \xc0\x4b\x89\x90\x25\x19\xa2\x8d\xe2\xd4\xe9\x66\xd5\xdf\xb8\xfb\ \x07\xd1\x60\x6b\x14\x40\x0c\x00\x1d\x23\x7e\xec\x77\xec\x69\x8b\ \x53\x3e\x7e\x6e\x6f\x6e\x6e\x36\x35\x43\xff\xc0\x29\x3b\xee\x73\ \xbb\xdd\x62\x66\x66\x16\x97\x9c\x9c\x0c\x41\xa0\x38\xf8\xf9\x67\ \x91\x61\xff\xd0\xae\x5d\xbb\x5e\xfe\x64\x8c\x57\xcc\xf0\x16\x3f\ \xa6\xb8\x2d\x9e\xa1\x05\x72\x26\xc8\x12\xbf\x97\x3e\xc5\x23\x38\ \x44\x01\xa1\x51\xf5\xe2\xdd\x65\x64\x14\x9c\x23\x09\xe0\x44\x4c\ \x4b\x4d\x44\x4b\xd3\xd9\x48\xb0\xb7\xe5\x25\x7f\xe3\x3b\xc7\xe2\ \x14\xe6\xe2\x48\x88\x53\x9c\x8f\x03\x22\x4c\x94\x09\xc0\xde\xd1\ \xd6\x61\xf4\xf7\xf5\xbe\x27\x3b\xa5\xf4\xce\xae\xce\xf4\xd6\x73\ \x67\xcd\xe6\x96\xe6\x40\x4f\x77\x77\x55\xd5\x8e\x7f\xfd\x37\x5d\ \xd7\xc9\x84\xcc\x49\x08\x80\x84\x38\xcb\xc5\x9e\x42\xca\x9c\xef\ \x2d\x4d\xca\x9a\xf3\x72\xf9\xc2\xd9\xa2\xaa\x33\xf4\x0d\x85\xa0\ \x69\x51\x80\x77\xc0\xed\x72\xc2\x06\x13\xc7\x8f\x1f\xef\x6f\xab\ \xfd\xd5\x7a\x18\xaa\x0a\x40\x07\x10\x1d\x7b\xc6\xe6\x6c\x8c\xac\ \xb8\x39\x9d\xe0\x21\x1a\x07\x8e\xc4\xad\x35\xc7\xc8\x18\xa3\xf8\ \xf9\xf8\x7f\x31\x8b\xc4\x90\x71\xb1\x79\xb8\xaf\xb1\x87\xba\x72\ \x3a\x2f\x04\xcd\x65\xa9\xa9\x2e\x9a\xec\x96\x21\x8a\x0e\xb8\x13\ \x9c\x10\x79\x82\xc6\x93\x27\xd5\x40\xeb\xc1\xcd\xe1\xfe\x93\x9d\ \x97\x60\x1c\x13\x18\x9d\x20\xdc\x8c\xdb\x1b\xe6\x98\xa2\xb1\xf5\ \xd1\x31\xd2\x2e\x61\x8c\x4b\xf1\x36\x00\x98\x24\xce\xa5\x74\x42\ \xfc\x52\x00\x74\xda\x6d\x8f\xaf\x14\x53\x72\x2b\x65\xd9\x4e\x9d\ \x4e\x99\x68\x9a\x8e\x50\x28\x04\xa5\xbf\xf5\xe9\xfe\x2f\x5e\xaf\ \x8f\xb3\x56\x8c\x71\xbc\x40\x3d\x8e\x10\x17\x62\xf1\xa1\x46\xe2\ \xe8\x6b\x35\xfb\x04\xef\x99\x13\x3c\xf3\x67\x27\x31\x17\x07\x80\ \xff\x1a\x39\x1c\x34\xad\xe4\xfe\x62\x41\x70\x4d\x35\xcc\xc8\x70\ \xf0\xcc\x9e\x13\x6a\xa0\x4f\xbf\x84\x00\xf3\x12\xae\xb6\x26\xd1\ \x93\x5f\x0e\x80\x75\x95\xef\xaf\x58\x0b\x91\x38\x2b\xf1\x97\x10\ \x62\x4d\x88\x6d\x36\x19\x81\xdf\x8c\x09\xe3\xff\x00\x16\xa6\xac\ \xb7\xa6\xa8\x65\x5b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x38\x3f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x03\x10\ \x10\x36\x04\xb7\x57\xef\xb1\x00\x00\x20\x00\x49\x44\x41\x54\x78\ \xda\xed\xbd\x77\x9c\x24\xe7\x5d\xe7\xff\x7e\x2a\x74\x98\x0e\x93\ \xc3\xce\xcc\xe6\x20\xad\x72\x96\x25\x4b\x66\x15\x57\x96\xb1\xe4\ \x80\x31\xd8\x70\x3e\x0e\x30\x98\x9c\xd3\x19\x4e\x60\xee\xf8\x19\ \x0e\xee\xe7\x33\x18\x7c\x1c\x60\x23\x63\xce\xe8\x6c\x24\x59\xc6\ \x56\xb0\x24\x5b\x39\x4b\xbb\xd2\x6a\x73\x98\xdd\xc9\xa9\x7b\x7a\ \x3a\x56\x3d\xcf\x73\x7f\x54\x75\x75\x55\x77\xcf\x6a\x25\x4b\xb2\ \x6c\xe6\xd1\xab\x54\xd5\x55\x35\xbd\x33\xf5\xf9\x3c\xdf\xf4\x7c\ \xbf\xdf\x82\xd5\xb1\x3a\x56\xc7\xea\x58\x1d\xab\x63\x75\xac\x8e\ \xd5\xb1\x3a\x56\xc7\xea\x58\x1d\xab\x63\x75\xac\x8e\xd5\xf1\xef\ \x62\x88\xef\xe6\x3f\xae\xe7\x2f\xcd\x92\x4f\x27\xd9\x28\xe7\x85\ \x78\xd0\x5d\x85\xe3\xfb\x84\x00\x95\xe3\xd7\x6d\x15\x86\xba\x00\ \x21\x36\x0a\x2d\x47\x35\x62\x1d\xe8\xf5\x02\x3d\xa8\xb5\x8e\x01\ \x19\x8d\xb6\x7c\x1a\x00\x1a\xa1\x85\xd6\xe8\x3c\x02\x07\x74\x51\ \x28\xe6\xb4\xd0\x53\x5a\x30\x8b\xd6\xd3\x42\x88\x59\xed\xaa\x69\ \x94\xf1\x70\x72\xd3\xa3\xc7\x56\xa1\x7b\x8b\x10\x40\xeb\x5b\x0c\ \x77\xe2\x91\xcb\x94\x10\xef\x04\x7d\x31\xe8\x8b\xd1\xba\xbb\x0e\ \x6c\x00\xb2\xd6\xe8\xf0\x67\xb4\x7f\xb9\x71\x5f\xe4\x7a\x70\x2d\ \xbc\xaf\xff\xd6\x7a\x56\x6b\x7d\x58\x08\x0e\xa3\xe5\x51\x09\xbb\ \x53\x8b\xf2\x4e\x71\xee\xae\xe2\x2a\xa4\x6f\x02\x01\xb4\xbe\xc5\ \x70\x27\x1f\xb9\x56\x23\xde\x0f\xdc\x0c\x7a\x50\xfb\x20\x37\x00\ \xd5\xf5\x9b\x7d\x60\xa3\x64\x38\x39\xe8\x61\xc0\x1b\xd7\xb5\x66\ \x85\x6b\x80\x56\x55\x8d\xda\xa7\x35\x2f\x0b\xed\xbc\xe8\x98\xf2\ \x8b\x5d\xeb\xf7\x1f\x5e\x85\xf8\x75\x24\x80\x9e\x78\x77\x87\x83\ \xf3\xe3\xa0\x7f\x15\xf4\x69\x75\xb0\x74\x33\xf0\x3a\x0c\xee\xc9\ \x66\x7b\xe3\xde\xd6\xd9\xde\x0c\xf8\x0a\xd2\x40\xeb\x76\x0c\x45\ \x23\x35\xa8\x31\x84\xde\xed\x28\xe7\x31\x53\x2e\xff\x6d\x66\xeb\ \xd4\xec\x2a\xe4\xaf\x81\x00\x5a\xdf\x62\x38\x53\x8f\xfd\x1c\xf0\ \x5f\xd0\xba\xef\xd5\x01\xdf\x0e\xf4\xe6\x99\xee\x5f\xd7\xfa\xe4\ \x80\x37\x91\x45\xb7\x23\x04\xad\x84\xf0\xa4\x93\x5b\x15\xc8\x97\ \xa4\x74\x9f\xd5\x5a\xff\x5d\xe7\xd6\xa3\x8f\xaf\xc2\x7f\x0a\x04\ \xa8\x4d\xdc\x78\x11\x42\xfe\x0d\x5a\x5f\xe8\x9d\x51\xe8\x96\x99\ \xab\x9b\x44\x7d\x14\xf8\x42\x11\x0e\x1e\x11\xcc\xcf\x49\x16\xf3\ \x92\xa5\x82\x43\xad\xea\x52\x73\x1c\x0c\x01\xae\xeb\x82\xd0\x58\ \xb6\x89\x69\x9a\xc4\x63\x31\x6c\xdb\x20\x99\xb0\xc8\x64\x4c\x3a\ \xb3\x06\xdd\xdd\x9a\x9e\x2e\x97\xde\x4e\x07\x84\x6a\xc2\x5b\xb7\ \xa3\xed\x4a\x74\x46\x6b\x17\x94\x7b\x5c\xe3\x3c\x6d\x28\xe3\xef\ \x52\xdb\x8e\x7d\x6d\x95\x00\xed\xc0\x9f\xba\xe1\x97\xd0\xfa\x2f\ \xd0\xda\x3c\xd9\xac\x6f\x06\x7e\x72\x1a\x1e\x7a\xd4\x61\xec\xc4\ \x12\x4b\xb9\x79\x6a\xd5\x39\x84\xd0\x08\x41\x63\x33\xbc\xbd\x11\ \x3e\x17\x3a\x2f\x56\x38\x6f\x98\x71\x12\x89\x7e\x32\x99\x2e\xba\ \xba\x92\xf4\xf5\x5a\xac\x1d\x76\x18\x1e\x28\xb5\xce\xfa\x53\x19\ \xca\x45\xe9\xda\x31\x2d\x9d\x27\xb4\xa5\xff\xac\x6b\xf3\xe4\xd3\ \xff\xee\x09\xa0\xf5\x0e\xcb\x99\x4a\x7e\x1a\x2d\x7f\xb6\x75\xd6\ \xb7\x07\x3e\xbf\x04\x77\xdc\x55\xe6\xc0\x81\x29\xca\xc5\x89\xf6\ \x80\x1b\x36\x96\xdd\x89\x69\x75\x62\xda\x59\x84\x30\x30\xcc\xa4\ \x07\xac\x61\x23\x84\x04\x5d\x45\x08\x17\xad\xcb\x08\x5d\x41\xc9\ \x45\xb4\x5a\x42\x08\xd9\x96\x1c\xf5\x61\x98\x69\xd2\xd9\x61\xfa\ \x7b\x3a\x19\x1e\x36\xd9\xb4\xb6\x44\x36\x5d\x3b\x89\x24\x10\x2d\ \x92\x41\xa9\xaa\xd6\xb2\x76\x40\x1b\xee\xb7\xa4\x70\x3f\xd1\xbb\ \x65\xe1\xf8\xbf\x3b\x02\x68\x8d\x70\xa6\x6f\xb8\x15\xa5\x3e\x7c\ \x2a\xb3\x7e\x6e\x4e\xf3\xa5\x2f\xe7\x39\x78\xe0\x00\xe8\x4a\x00\ \x8c\x1d\xeb\xc2\x4a\xae\xc7\x8e\xaf\x25\x96\x58\x8b\x1d\x1f\xc1\ \xb0\xd2\x08\x21\xbc\xcd\x10\x18\xc2\x68\x7c\xae\x9f\x33\x0c\x4c\ \xc3\x44\x08\x81\x61\x78\x22\x42\x00\xda\x5d\x42\xca\x45\xb4\x9c\ \x45\xba\x13\x28\x77\x02\xe9\x4e\x22\x6b\x13\x68\x5d\x6b\xfb\xa7\ \x25\x3b\x46\x19\xe8\x1f\x64\xc3\x7a\x8b\x6d\x1b\xf3\x24\xe2\xee\ \x29\xf0\x5f\x80\x56\x28\xb9\x5c\xd5\xd4\x5e\x40\xf0\x97\x9d\x5b\ \xe7\x6f\xfd\x77\x43\x00\x67\x62\xe7\xef\x69\xf4\x7f\xf5\x84\xa8\ \x3a\xe9\xac\xbf\xe3\x6b\x15\xee\xbf\xef\x45\xc0\x03\xde\xb4\x7b\ \x49\xa4\xcf\x26\x9e\x39\x1b\x3b\x31\xda\x1e\xe0\xf0\x39\xc3\xdb\ \xd7\xcf\x19\x86\x81\x69\x79\x76\x80\x69\x9a\x58\xa1\x63\xd3\x32\ \x31\xea\x3f\x87\x40\x03\x4a\x2b\x94\x94\x54\x2b\x27\xa8\x16\xf7\ \xe3\x54\x0f\x79\x5b\xe5\x88\xa7\xe7\xc3\x7f\xa8\xb0\x48\x67\xd7\ \x33\x3a\xd2\xcf\xd9\xa7\x55\x18\xe8\x5b\x6e\xf3\x30\x44\xcb\x53\ \x51\xb2\x82\xd6\xc5\xe3\x5a\xc9\xbb\x0d\xad\x7e\x27\xbb\xbd\x30\ \xff\x7d\x4b\x00\x67\x7c\xe7\xb5\x0a\x75\xaf\x10\xad\xb3\x5e\x6b\ \x15\x88\xca\x4a\x55\xf1\xa7\xff\x63\x8a\xd9\x89\x43\x1e\xf0\xf1\ \x11\x12\x9d\x57\x12\x4f\x9d\x8e\x69\xda\x98\xa6\xb9\xe2\x2c\xb7\ \x6d\x9b\x8e\x74\x92\x64\x3c\x81\x65\xdb\xd8\xb6\x85\x69\x98\x68\ \x34\x86\x3f\xf3\xd1\x20\x0c\x81\xd2\x1a\xa1\x3d\xca\x09\xf0\xa4\ \x81\xc0\x97\x12\x06\x86\x69\x62\x99\x16\x86\x61\x60\x18\x02\x57\ \x4a\x5c\xd7\xa5\x56\x2d\x53\xcc\xef\xa5\xb8\xf4\x3c\x95\xd2\x2e\ \xaa\xe5\x7d\x68\xe5\x44\xfe\xf0\x64\xc7\x08\xc3\xc3\x23\x9c\xbe\ \x45\xb1\x71\x74\x11\x84\x6e\x33\x1f\x44\x40\x0c\xad\x5d\x94\xbb\ \x5c\x52\xaa\xfa\xac\x10\xd6\x27\xba\xb6\x2f\xdc\xf3\x7d\x45\x00\ \xad\x3f\x60\x16\x8f\xce\x1e\x8b\xc5\xad\x91\x06\xf8\xaa\x65\xd6\ \xbb\x8e\xe2\xf7\x3f\x71\x9c\xa5\xc5\xe3\x18\x66\x0a\xbb\x73\x27\ \xb1\xe4\x36\x4c\xcb\xc2\x32\x2d\x2c\xcb\xc2\x34\xad\x00\xf0\x4c\ \x26\x45\x5f\x7f\x2f\x5d\x3d\x5d\x64\xd3\x19\xec\x98\x8d\xe3\x38\ \x94\x4b\x65\xaa\x35\x07\xa7\xe6\xe0\xba\x12\xad\x15\x4a\x79\x24\ \xb0\x4c\x03\x84\x81\x65\x9a\xd8\xb6\x85\x61\x5a\x98\x96\x81\x65\ \x18\x9e\xd5\xa8\x3d\xf9\xa4\x7d\x4f\x44\x18\x60\x20\x30\x4c\xd3\ \x23\x87\x69\x62\x1a\x06\x1a\x4d\xb5\x5a\xa3\x54\x5a\x22\x37\xf3\ \x0c\x85\xfc\xb3\x94\x96\x9e\xa4\x56\x3d\x11\x79\x08\xf1\xc4\x00\ \x6b\xd7\x6e\xe0\xdc\xed\x35\xd6\x0c\xe4\x43\x4f\x46\xb4\xcc\x13\ \x0d\x48\xa7\xa0\x95\xac\xec\x07\xe3\x93\xbd\x67\xe6\xfe\xe1\xfb\ \x82\x00\xc7\x9f\xb9\xe0\x93\x03\x6b\x7a\x7e\x0b\xad\xda\x8b\x7c\ \xff\xfc\x1f\xfc\xf1\x04\x73\x53\x47\x11\xb1\x4d\x58\xd9\xeb\xb0\ \xec\x74\x00\x7a\x9d\x00\x89\x44\x82\x8d\x9b\xd6\x33\x32\xba\x86\ \x74\x2a\xc5\xc2\xe2\x22\xf3\x73\x8b\xe4\xf3\x05\x8a\xc5\x12\xae\ \xe3\xae\xa8\x06\x1a\x22\xdf\x08\xbe\xd7\x34\x8d\x40\x0d\x58\x96\ \x85\x6d\x99\x9e\xf4\xb0\x2c\x4c\xd3\xc4\x30\x0d\x0c\xc3\xf0\x45\ \xbd\x40\x18\x06\x66\xdd\x9e\x30\x4d\x0c\xc3\x23\x87\x92\x8a\x72\ \xb9\xc2\xc2\xcc\x3e\x66\xa6\x1e\x60\x39\xf7\x18\x95\xe2\xde\x88\ \xa1\x98\xca\x6e\x64\xf3\x86\x41\xce\xdb\x9e\x27\x9b\x29\x47\x1f\ \x53\x13\x29\xa4\x53\xc4\x75\xca\x63\x68\xfd\xb7\xbd\x67\x2f\xfd\ \x37\x21\x50\xdf\x93\x04\xb8\xe5\x16\x8c\x5f\xf8\x91\xcb\x96\x33\ \x99\x64\x32\x2a\xf2\xa3\x3e\xfd\x17\x6f\x5b\xe6\xa1\x07\x77\x21\ \x62\x67\x20\xd2\x3b\xb0\xfc\x59\x5f\x9f\xfd\x89\x44\x07\x67\x9d\ \x73\x1a\x5b\xb6\x6e\x66\xb9\xb0\xcc\x91\x23\xc7\x99\x9e\x9c\xc5\ \x75\xdd\x93\xdb\x02\x21\x22\x98\x86\x0f\xb4\x19\xd5\xff\x01\x09\ \xc2\x84\x30\x3d\x35\x60\x9a\x9e\xb4\x30\x2c\xcb\x53\x0d\xbe\x4a\ \x10\xc2\xdb\x7b\xdf\x69\x60\x9a\x96\x4f\x06\xef\xdf\x2e\x15\xcb\ \x2c\xcc\x8f\x31\x39\x76\x37\x8b\x73\xf7\x51\x59\xde\x1b\xb1\x19\ \xfa\x07\xcf\xe0\x9c\x33\x63\x9c\xb6\x71\x36\x50\x06\x51\x42\x78\ \x7b\xe9\x56\xa8\x55\x97\x67\x80\x2f\xf5\x9f\xbd\xf4\x6b\x42\xe0\ \x7e\x4f\x11\xe0\x5b\xff\x3c\xf8\xf1\xb7\xbd\xe3\xcc\x4f\xd4\x67\ \x7a\xbb\x80\x4e\xb1\x2c\xf9\xcd\xdf\xda\x8d\x6b\xac\x41\x74\x5c\ \x1d\x80\x6e\xfa\xb3\x7e\x64\x74\x98\x1d\x3b\xae\xa0\x58\x2a\xb3\ \x67\xf7\x3e\x66\x67\xe7\x4f\x0e\x78\x9b\xd9\x5f\xdf\xbc\x80\x90\ \xe5\x11\xc1\x30\x23\x86\xa1\x69\xfa\x86\xa2\xd1\x20\x80\x65\x9a\ \x1e\x11\x0c\xc3\x3b\x17\x5c\x0b\x7f\x2f\x08\x61\x60\xf9\x52\xc4\ \xb2\x3c\x32\x08\x9f\x30\xc5\x62\x89\xa9\x13\x2f\x71\xe2\xe8\x9d\ \xe4\xe6\xef\xc3\xa9\x4c\x46\xec\x85\x6d\x5b\xd7\x72\xe1\x59\xf3\ \x24\x93\xd5\x90\xb9\x28\x22\x64\x90\x4e\x05\xa7\x5a\x58\xd0\x18\ \x7f\x3d\x70\x6e\xfe\xe3\xdf\x13\x04\xd0\x1a\xf1\xcc\x57\xd7\x4f\ \x9f\x7d\xe1\xc6\xfe\xa8\xc8\xd7\x0d\xff\x1f\xcd\xad\xff\x5c\xe0\ \x91\x47\xc6\x71\x92\x37\x61\x99\xb1\x08\x01\x2e\xba\xe4\x02\x2e\ \xbe\xe4\x3c\x9e\x7b\xfa\x45\x5e\x7e\xf9\x00\xa6\xe1\x3d\xe4\x16\ \xc0\x5f\x61\xf6\xd7\xc9\xd0\x98\xf5\xbe\x24\x08\x49\x80\x3a\xe0\ \x01\x21\x7c\x63\xd0\xb4\x3c\xf7\xd1\xa8\xdf\x57\x27\x83\xe9\x9f\ \x37\xbc\x20\x82\x21\xbc\x90\xb3\x10\xc2\x23\x83\xaf\x4a\xc2\x6a\ \x64\x29\x5f\xe0\xd8\x91\x47\x38\x71\xf8\x5f\x28\xcc\x7f\x0b\xe5\ \xbb\x99\x86\x99\x60\x78\xf4\x4c\x2e\xbf\xa0\x42\x7f\xcf\x92\x2f\ \x01\x5a\xc9\xe0\x3a\x65\xaa\x95\xe5\x69\x21\xac\x3f\x1b\x3c\x2f\ \xf7\xe7\x6f\x69\x02\x7c\xf1\xbf\x71\xd9\x85\x6f\x3f\xfd\xd1\x0d\ \x9b\x07\x5b\xf4\xbd\x0e\x11\xe1\xd7\x7f\xf7\x28\x0b\x95\x73\x11\ \xd6\x9a\x88\xd8\xbf\xe0\xc2\xf3\xb8\xec\xed\x6f\xe3\xdf\xee\xba\ \x9b\xf9\xd9\xc5\x08\x31\x0c\xc3\x58\x79\xf6\x9f\x44\x32\xd4\x41\ \xb4\x2c\xd3\xff\xae\xd0\xec\xaf\xbb\x84\xa6\x67\x2c\x1a\x61\x12\ \xd4\xd5\x82\x0f\x7e\x9d\x08\x0d\x32\x98\x81\x8a\x68\xac\x11\x68\ \x4f\x32\xd8\x26\xb1\x58\x2c\x90\x0c\x86\x61\xe0\xba\x92\x89\x13\ \x87\xd9\xbf\xe7\x8b\xcc\x4f\xdc\x49\xad\x3a\x41\xdd\xea\x1c\x18\ \x3c\x93\x4b\xce\x17\xac\x1f\x5e\x0c\xa9\x03\xd1\x70\x25\x11\xd4\ \x6a\x45\x6a\xa5\xe2\x09\xd3\xb4\x3f\x3e\x70\x7e\xee\xf3\x6f\x45\ \x02\x18\x0a\x6e\x48\xa5\xe3\x3e\xf8\xaa\x09\x7c\xe5\x49\x01\xad\ \x29\x16\x2d\x24\x7d\x68\xad\x83\x6d\xe3\xa6\xf5\x5c\xf9\x03\x6f\ \xe7\xdf\xee\xfa\x06\x53\x93\x33\x91\x6b\x75\x0b\xdd\x7b\xc6\xfe\ \xb9\x96\x95\xbc\xe8\xb5\xfa\x75\xad\x7c\x03\x54\x69\xa4\x52\x28\ \xa5\x3c\x9f\x5f\x6b\x94\xf6\xce\x69\xe5\x79\x0d\x5a\xf9\xab\x86\ \xfe\xfd\xde\x67\xef\x5c\xe3\xd8\xdf\x42\xdf\xe5\x49\x00\x8b\x58\ \x2c\x8e\x6d\x7b\xb9\x29\x95\x4a\x85\x72\xb9\x4c\xad\xe6\xa0\x94\ \xc2\xb6\x2c\x36\x6c\x3a\x8d\x9d\x37\xfd\x11\x37\x7e\xf0\x5b\x9c\ \x71\xe1\xa7\x48\x77\x5d\x0a\x68\x66\xa6\x76\x73\xd7\xd7\x77\xf1\ \x4f\xff\x9a\x64\xef\x91\x01\xef\x59\x69\x85\xc6\xdb\x40\x11\x8b\ \x75\x90\xea\xea\x1f\x15\xa6\xf1\x0f\x13\x4f\xa7\x5e\x9a\x7e\xa6\ \xfb\x9c\xb7\x1c\x01\x80\x4b\xec\x98\x15\xb8\x7c\x8d\x00\x50\xc3\ \x08\x9c\x9c\x74\xa9\xa8\xa1\xc8\xc3\x34\x0c\x83\x6b\xae\xdb\xc1\ \x23\x0f\x3f\xce\x89\xe3\x13\x68\x1f\x1c\xad\x34\x4a\x2b\xb4\x56\ \x0d\x12\xbc\x02\xe0\xd1\x35\x25\xef\xbc\xf4\x81\xaa\x7f\x4f\x00\ \xae\x52\xbe\x90\xd2\x3e\x01\x7c\x72\x84\x48\x12\x06\x3b\x20\x41\ \x98\x1c\xfe\xef\xa8\x94\xf7\xfd\x42\x08\x2c\xd3\x22\x1e\x4f\x60\ \x9a\x26\xae\xeb\x52\x2a\x95\x28\x57\x2a\xb8\xae\x04\x05\xdd\xdd\ \x5d\x5c\xf6\x8e\x1f\xe3\xe6\x1f\xf9\x0a\x17\xbf\xe3\x5f\xe8\xea\ \xbb\x1e\x21\x2c\x72\x0b\xfb\xf9\xe6\xfd\xcf\xf0\x4f\x5f\xe9\xe0\ \xd0\x58\xaf\x4f\x04\xcf\x88\xf6\x88\xa0\x49\x74\x64\x45\x2a\xd3\ \x7b\x86\x12\xee\x93\x53\x4f\xa7\x6f\x3f\xf2\xc0\x86\xc4\x5b\x86\ \x00\x02\xb6\xb7\x82\x1f\x0d\x00\xcd\xcc\x39\x54\xd5\x80\xf7\xc0\ \x7d\xa0\x2f\xb8\xe0\x5c\x94\xd2\x3c\xfb\xf4\x73\xc1\x83\x0c\x36\ \xa5\x1b\x40\x9c\x0a\xe0\xcd\xf7\xd4\x67\xaf\x6a\x92\x02\xfe\xac\ \x57\x4a\x22\xfd\x7f\x4b\x69\x1d\x5c\xf3\xfe\xed\x3a\x19\xb4\xbf\ \xd5\x7f\x26\x44\xd0\xd0\x77\x47\xae\x69\x85\x21\x0c\x62\x76\x8c\ \x58\x2c\xee\x4b\x85\x32\xa5\x72\x89\x5a\xad\x86\x52\x92\x44\x32\ \xce\xb9\x17\x5e\xcd\xcd\x3f\x7a\x2b\x57\xdc\xf0\x75\xfa\xd6\x7c\ \x00\xc3\x48\x92\x5b\xdc\xcf\x37\xee\x7d\x9e\x7f\xbe\x3d\xc3\xd8\ \x44\x67\xc3\x8e\xf2\x89\x20\x4c\x41\x3a\xdb\x1b\x8f\x75\x64\x6e\ \xb6\x53\xb3\x53\x93\x4f\x75\xfe\xd6\x5b\x45\x02\xf4\x48\xa9\xda\ \x80\xaf\x02\x57\x50\x0b\x0b\xa9\x93\x11\x90\xcf\xbf\xf0\x5c\x9e\ \x7a\xe2\x19\xa4\x94\x1e\x29\x42\xe4\xa8\x03\xd1\x88\x1e\xb6\x01\ \x9c\xf6\x2a\x21\x7c\x8f\x54\xca\x13\xf7\xba\x3e\xbb\x15\x52\xcb\ \xc6\xcc\x0f\xcd\xf2\x3a\x11\xa2\x64\x69\x10\xa3\x21\x25\x1a\xb3\ \x5f\x85\xa4\x4c\x40\x2e\xff\x3a\x1a\x2c\xcb\x24\x1e\x4f\x60\x18\ \x26\x4e\xcd\xa1\x58\x2c\x51\xad\xd6\x90\x52\x61\x59\x26\xa7\x6d\ \xbf\x80\x77\xff\xf0\x67\x78\xc7\x3b\xbf\x41\xef\xd0\xfb\x10\x46\ \x8c\x85\xf9\x97\xf9\xea\x37\x5e\xe2\xb6\xaf\x75\x31\xb7\x98\x6e\ \x21\x82\x15\x8b\xd1\xd9\xd3\xdf\x69\x58\xd6\x27\xc7\x9e\x48\x1e\ \x9a\xd8\xd5\x7b\xfa\x77\x9b\x00\x99\x4a\xa9\x1a\x01\xbf\x21\xbe\ \x3d\x55\xb0\x7e\xc4\xf0\x1f\xa4\x07\x74\x26\x93\x66\x60\xa0\x9f\ \x83\x07\x0e\x45\x66\x7f\xe3\x61\xeb\xe0\xde\xfa\xcf\x9d\x92\x04\ \x08\xdd\xa7\x69\x9a\xa5\xd2\x03\xda\xfb\x95\x42\xb3\xba\xfe\x6f\ \xf8\xd7\xa3\x33\x5b\x85\xf6\x3e\xf8\xfe\x7d\xd1\xeb\xa1\x7b\x64\ \x83\x18\xd2\x3f\x36\x0c\x81\xed\x1b\x88\xb5\x5a\x8d\x62\xb1\x48\ \xa5\x52\x45\x4a\x89\x61\x08\x36\x6f\x3b\x8b\x1f\xfc\xc0\x5f\xf3\ \xf6\xeb\xff\x8d\xee\xc1\x9b\x10\x98\xcc\x4c\xbd\xc8\x6d\xb7\x1f\ \xe1\xde\x87\xd7\x50\xab\x19\x2d\x44\xe8\xc8\xa4\xc9\x76\xf6\x6e\ \x72\xcb\xe5\xe7\x27\x1e\xcf\xfe\xff\xdf\x4d\x02\x14\x96\x0b\xe5\ \x86\xdb\x17\xe8\xfe\x06\x21\x3a\x3b\x5d\x2c\xb3\x01\xf0\x9a\x35\ \x43\x2c\x2e\x2c\xb2\x98\xcb\x45\x66\x7f\x30\xf3\x9b\xf4\xf7\x2b\ \x8a\xfc\x36\x52\xa0\x7e\xaf\x94\x12\x25\xbd\x59\x2f\xa5\xf4\xb6\ \x30\x50\x4a\x06\xe0\xca\xf0\x67\x29\x7d\xa0\x1b\x40\x7a\xdf\x13\ \xfe\xb9\xa6\xeb\xf5\xf3\x32\xfc\xfd\x8d\x63\x10\x81\xa7\xe0\x38\ \x0e\xcb\xcb\x45\xca\xe5\x0a\xae\xeb\x62\x18\x82\xad\xa7\x9d\xc3\ \xbb\xde\xff\x37\x5c\x72\xd5\xed\x64\xba\x77\xa0\x74\x95\xfd\xfb\ \x9e\xe2\x73\x5f\x5a\xe6\xe9\xdd\xfd\xde\x33\x0d\x45\x58\x0d\xcb\ \xa4\xbb\x77\x20\x6e\x26\xec\x5f\x1e\x7b\x34\x79\xec\xf8\x77\xc1\ \x48\x34\x80\xc5\xf9\x99\x42\x60\xed\x37\xaf\x01\x68\x14\x02\xc5\ \x60\x7f\xcd\x07\x55\x93\x4a\xa7\x28\x95\xca\x11\x95\x10\x48\x08\ \x5f\x84\x46\x44\xf4\xab\xb1\x03\x9a\xa5\x40\x60\x10\xca\x40\x0d\ \x28\x55\x57\x05\x2a\x50\x13\xb2\x0e\x7c\x60\x33\xe8\xe8\x8c\xf6\ \xb7\x06\x79\x74\x03\xec\xa6\xfb\xc2\x6a\x44\x4a\xff\xfb\x7d\xf2\ \x78\xea\x52\x60\xdb\x31\x6c\xdb\x5b\xd7\x28\x14\x0a\x94\xcb\x15\ \xa4\x54\x18\x86\xc1\x69\x67\x5c\xc4\xce\xf7\xfe\x03\xa7\x9f\xff\ \x19\xe2\xa9\xd3\x71\x6a\xf3\x3c\xf1\xe4\x73\x7c\xe1\x2b\x69\xa6\ \x17\x32\x0d\x6f\xab\x2e\x0d\xd2\x69\xb2\x3d\xbd\xeb\x54\xb5\xfa\ \xd4\xd8\x63\xd9\xcf\xbc\xd9\x46\xe0\xe1\xd9\x99\x25\x94\x6a\xb7\ \x00\xd4\x90\x02\xe7\x9c\xb1\x1c\xcc\x28\xd3\x34\x28\x95\x4a\x0d\ \x51\x1a\x26\x41\x33\x11\x74\x7d\xf6\x9c\x3a\xe0\x34\xa7\x1f\x28\ \x8d\x92\xf5\x4d\x35\xc4\xb8\xf4\x44\x7f\x00\xa0\x0c\x13\x41\x06\ \x33\x5b\x2b\x1d\x99\xe5\x0d\x40\xb5\x2f\x15\x64\xf0\x1d\x32\x00\ \xbe\x2e\x09\x9a\x48\xe2\x4b\x24\x29\x25\x68\xb0\xed\x18\xb1\x58\ \x8c\x6a\xb5\x46\xa1\x50\xa0\x5a\xad\xa1\xa4\x22\x1e\x8f\x73\xe1\ \xa5\x37\x71\xed\x0f\x7e\x85\x91\x2d\xbf\x8b\x69\x75\x93\x5f\xdc\ \xc7\x97\xef\x38\xcc\x37\x1f\x1d\x42\x2a\x5a\xa4\x41\x4f\xff\x40\ \xcc\xb2\xcd\x8f\x1d\x79\x28\xb9\xff\xf0\xee\x81\xc1\x37\x85\x00\ \x1a\x9e\xae\x55\x5c\x96\x72\xa5\x10\xf8\xaa\xc5\x2d\xbc\xf0\xcc\ \x62\xf0\x00\xcb\xe5\x0a\xc9\x64\xb2\x21\xe6\xeb\x96\x75\xd8\xd8\ \x52\x27\x97\x02\xed\x24\xc1\x8a\x04\xa9\xab\x02\x25\x83\x19\x5f\ \x07\x25\x3c\xa3\x65\x48\x7c\xd7\xa5\x86\x94\xd1\xd9\xeb\xcd\x7a\ \x19\x80\x2c\x23\xb3\x5c\x45\x7e\x3e\xd8\xa4\xb7\xb9\x52\x46\x24\ \x42\x5d\x3d\x81\x20\x91\x88\x63\x9a\x16\xc5\x52\x91\xa5\xc2\x12\ \x4e\xcd\x23\x42\xa6\x33\xc3\xdb\x77\xfc\x2c\x17\x5f\xf5\x7f\xc9\ \xf6\xbe\x0b\xad\x6a\xec\x7d\xf9\x19\x3e\xff\x25\xcd\xd8\x54\x36\ \x2a\x0d\x84\x22\xd3\xd5\x49\xb6\xbb\x6b\xab\x58\x58\x3a\x34\xf6\ \x58\xcf\x07\xdf\x70\x02\x18\x9a\x07\x01\x26\x4f\x2c\x86\xc0\x0f\ \x87\x82\x3d\x22\x6c\xdf\x5a\x21\x99\x70\xd0\x5a\x31\x3f\xbf\x40\ \x57\x77\x67\xc3\x07\x0f\x66\xba\x0e\x49\x01\x75\x52\x29\xb0\x12\ \xd0\x27\x93\x0c\x6e\x7d\xb6\xd6\x6d\x81\xc8\x2c\x95\x9e\x84\xa8\ \xab\x03\xd9\x00\x3c\x20\x81\x6c\xe8\xfb\x3a\xa8\x75\xa9\x21\x65\ \xf3\xa6\x90\x6e\xf4\x9c\x92\xd2\x27\x41\xe3\xbb\xea\x9f\x5d\x57\ \x62\x18\x06\xc9\x44\x07\x02\xc1\xd2\x52\x81\xc2\xf2\x32\xae\xe3\ \xa0\xb5\x66\x74\xed\x26\xae\xbc\xfe\xbf\xb3\xe9\xac\x4f\x13\x8b\ \x6f\xa4\x5c\x1a\xe7\xae\x7f\x3b\xc0\xbd\x8f\x0c\xa3\x22\xd2\x40\ \x61\x27\x62\xf4\x0c\x0d\xa4\x94\xac\xfe\xd3\xd1\x47\xb2\xff\xf2\ \x86\x12\x40\x3a\x3c\x04\xb8\x47\x0e\xcc\xa3\x74\x9b\x75\x00\xff\ \x9c\x65\x4a\xae\x79\x7b\x0e\xa9\x14\x13\x13\x13\xa4\xd3\x69\xe2\ \x89\x44\x74\xa6\x6b\x75\x52\x29\x10\x91\x04\x6d\x00\x6e\xf9\xaf\ \xad\x24\xf0\x01\x53\x61\xe0\x54\x00\x50\xfd\x38\x20\x41\xc8\xb0\ \x6b\x26\x86\x52\x61\x12\xd5\xbf\xaf\x4e\x8c\xf0\x77\x84\x7e\x4e\ \x4a\xa4\xdb\xf4\x6f\x84\x49\xa2\x24\x96\x6d\xd3\xd1\x91\x44\xba\ \x2e\xb9\x5c\x9e\x72\xb9\x8c\x52\x8a\x58\xcc\xe6\x9c\xf3\x77\x72\ \xf1\x8e\x7f\xa2\x7b\xe0\xc7\x00\xcd\xfe\xbd\x4f\x71\xeb\x97\x63\ \xcc\xe5\xe2\x11\xa9\x2b\x4c\x41\xef\x50\xbf\x69\xc7\xad\x0f\x1c\ \x7a\x20\x39\x76\xf0\x85\xc1\x81\x37\x82\x00\xe6\x57\x1e\xa4\xfa\ \xde\x6b\xb8\xde\xa9\xc9\x75\x3d\x7d\x49\xd2\x99\x58\x13\xf8\x2a\ \xc8\x0b\x1c\x1e\xaa\xf2\x8d\x07\xba\x71\x5d\xc5\xd9\xe7\x9c\xc5\ \x72\x61\x99\x99\x99\x59\x7f\x11\xa7\x1e\xcb\x37\x9a\x3e\x87\xe3\ \xfe\x5e\x8c\x5d\x84\x52\xbb\x5e\xed\x7f\x34\x2f\xcb\x8a\xe8\x3a\ \x7d\xe3\xff\x3a\x9a\xec\x15\xfe\xd1\x96\xe2\x22\xdd\x28\x64\x0a\ \x1f\x6b\x82\xb0\xb8\xd6\xba\xe1\xc9\x69\x85\xae\x9b\x2a\xf5\xb0\ \xb3\x6e\x0a\x43\x03\x96\x65\x83\x10\x2c\x2f\x17\xa9\x56\xab\x98\ \xa6\x17\x72\x4e\x26\x93\x0c\x8e\xbc\x0d\xa9\xb7\x53\x2c\xec\xa1\ \x52\x3a\xc2\xcb\xfb\xaa\x08\x7b\x2d\xc3\x03\xc5\x70\x1e\x1b\x89\ \x44\x02\xc3\xb2\x3a\xcb\x73\xb9\x8f\xfd\xd6\x4f\x77\xdd\xff\x3f\ \xfe\xa1\x3c\xfe\xba\x12\x00\xe0\x7d\xd7\x02\x9a\x9b\x1d\x47\xb2\ \x76\x43\x67\x5b\xf0\x41\x91\x4a\x48\xc6\xa7\x6c\xc6\x26\x92\xa4\ \x52\x29\x36\x6c\x58\xcf\x4b\x2f\xbd\xbc\xe2\x42\x4f\xf4\x1c\x91\ \xcf\xaf\xcf\x5a\xb6\x68\x5a\xd8\x16\x27\xb9\x47\x34\xec\x8e\xb6\ \x95\x67\xa1\xb5\x8b\x7a\x34\x52\x84\x40\xf7\xef\x89\x00\xae\x1b\ \xa1\xe5\xe0\x9a\xa2\x25\x64\x6e\xdb\x36\xb5\x6a\x95\xa5\x42\x01\ \xfc\xcc\x25\x61\x08\xfa\xfa\x37\xd2\xd1\x79\x95\x47\x90\xf2\x8b\ \x8c\x8f\x4f\x33\x31\xb3\x99\x2d\x9b\xca\x18\x42\x07\x7f\x97\x1d\ \xb3\x49\x24\x93\xb1\x7c\x2e\xf7\x91\x5f\xff\x68\x7a\xe6\x53\x7f\ \x5f\x7d\xe6\x75\x25\xc0\x8f\xbe\x8b\x7d\xd2\xe1\xe7\x97\x97\x6b\ \x89\xa1\x91\x34\x89\x84\xd9\x02\x7e\x5d\x34\x6d\x5c\x57\xe2\xde\ \x87\x7a\x98\x9d\xcd\x71\xf3\x7b\xde\xcd\x93\x4f\x3c\x85\x94\x2a\ \xba\x9a\xb7\x02\xe8\xe1\x75\xf9\xc8\x0a\x6a\xbb\xed\x94\x12\xd8\ \x57\x26\x81\xd0\x51\x5c\x03\x60\x11\xf5\xa9\xeb\xe5\x1e\x0a\xd1\ \x00\x3c\x5c\xd9\xa4\x1b\x95\x4a\x3a\xb4\x46\x81\xef\xe1\xe0\x47\ \x1e\x1b\xaa\x8a\x08\x21\xc2\x9b\xe7\x2d\xd8\x08\x61\xb0\xb4\x94\ \xa7\x5c\x29\x63\x5b\x36\x00\x1d\xa9\x14\xbd\xfd\x97\x52\x71\x46\ \xa9\x14\x9e\x63\x29\x7f\x94\x97\x0f\xf4\xb0\x61\xad\x45\x32\x21\ \x83\xbf\xcb\xb4\x4c\x52\x99\xb4\x59\xc8\x15\x6e\xfc\xd5\x9f\x48\ \xac\xfd\xd4\xe7\x6a\x5f\x7d\xdd\x08\x70\xdb\xdd\xb8\xef\xbb\x86\ \x35\x5a\xf3\xb6\xe5\x82\xc3\xfa\x4d\xd9\xb6\xe0\x6b\x14\xa9\xa4\ \xc4\x71\xe0\xf9\x97\x62\x6c\xda\xb4\x89\x8e\x8e\x0e\xc6\xc6\x8e\ \xb7\x01\x3f\x0a\x7a\xf3\x79\xc3\x30\x4e\x2e\xec\x85\x68\x25\xc4\ \x0a\xe4\x10\xa1\xc9\x2c\x9a\xcf\x8a\xf0\x64\x6f\x88\x77\x84\x06\ \x1d\x95\x0a\x3a\x54\xc2\x16\xac\x30\xea\x46\xd9\x5a\x10\x9d\xd4\ \x51\x1b\xa5\x1e\xfe\x8e\x2c\x46\x11\x95\x10\x5e\xbe\xa3\x41\x3c\ \x9e\xa0\x5c\xa9\x90\xcb\xe7\xfc\x4c\x67\x6f\x19\xbb\xa7\x6f\x33\ \xda\xb8\x90\x52\xf1\x10\xd5\xd2\x7e\x5e\xda\xa7\xe8\xea\xea\xa7\ \xb7\xab\x1a\xfc\x1d\x86\x61\x90\xca\xa6\x44\x71\xb9\x74\xc1\x2f\ \x7f\x24\x76\xe5\xff\xfc\x7c\xed\x1f\x5f\x8f\x40\x90\x97\xd6\xa4\ \xf8\x34\xe0\xcc\x4c\x15\x99\x9e\x58\x6e\x0b\x7e\xfd\xf8\xbd\x3b\ \xa7\xe9\xe9\x2a\xf3\xd0\x43\x0f\x73\xd9\xe5\x97\x7a\xe9\xd3\x81\ \xc1\x27\x5b\x62\xf1\xd1\xe8\x5b\x63\xff\x4a\x5e\xc0\x8a\x1e\x43\ \xf8\xe1\x2b\x85\x5b\xb7\xd6\x5d\x2f\x2b\xb8\x6e\xbd\xbb\xd2\x0d\ \x8c\xc4\xba\xb5\x2e\xdd\x36\x7b\xb7\x71\xaf\xeb\x5b\xf4\x61\xc3\ \x2e\xf8\xce\xf0\xf9\xe0\xe7\x1a\xc7\xed\xae\xb7\x78\x12\x5a\x93\ \xcd\x74\x92\x4c\x26\x99\x9e\x9a\x22\x97\x5b\x44\x29\x89\x40\xb0\ \x6e\xe3\x76\x36\x9d\xf1\xff\x91\xe8\x7c\x1f\xae\xbb\xc4\x37\xee\ \x3d\xc8\xa3\xcf\xf6\x47\x3c\x04\x21\x60\x60\xb8\x1f\xc3\x32\xae\ \x39\x70\x7f\xea\x69\xad\x1b\x18\xbe\x66\x09\x00\x70\xfb\x03\x2c\ \xbe\xf7\x1a\xfa\xd1\x5c\x9a\xcb\x55\xd9\xb8\x25\xeb\x67\xdf\xb7\ \x2e\x12\x19\x86\x62\x64\xb0\xc4\x1d\x77\xc3\x19\x67\x6e\x27\x16\ \x8b\x31\x7e\x62\x7c\x05\x9d\x5f\x9f\xfd\xb4\x9c\x0f\x54\xc1\x29\ \xea\xfb\x56\x71\x1f\x9a\xdd\x9a\x48\x9e\x5e\x44\xd5\x87\x96\xa5\ \x1b\xbc\x6a\x9a\xed\xa1\x00\x94\x6e\x2a\x56\x6d\x18\x80\x7e\x6c\ \x54\xa9\x90\x01\xa8\x5b\x0c\x41\xd5\xa4\x12\x54\x64\x49\xdb\x93\ \x12\xb6\x6d\x63\xdb\x31\xe6\xe6\x66\x29\x95\x4a\x24\x13\x09\x14\ \x90\x4c\x24\x48\x67\xcf\xa1\x5c\xeb\xa3\x5a\x7c\x86\xf1\x89\x71\ \xe6\xf3\x1b\xd9\xb6\xb1\xd4\xb0\x7b\x85\xa0\x23\xd3\x41\xad\xe2\ \x0c\x4f\xed\x13\x1f\xfa\xd8\xef\xb8\x9f\xfd\xcc\x67\x90\xdf\x11\ \x01\x00\xde\x7d\x2d\x4f\x1b\x9a\x9f\xa9\x94\x65\x5c\x18\xd0\x3f\ \x10\x6f\x2a\x09\x6b\x84\x8b\x87\xfa\x2b\x94\x8a\x06\xdf\x7a\xac\ \xc8\x07\x7e\xf8\x87\x78\xf6\xe9\xe7\x70\x9a\x93\x3f\x03\x51\x2e\ \x56\x24\x47\x5b\x51\xff\xaa\x0c\xbf\x30\x09\x74\x44\x15\x34\xf2\ \x11\x44\x34\x37\x41\x47\x75\x7e\xd8\x10\x0c\x47\x22\xbd\x55\x41\ \x7f\x1a\xd4\x2d\x7f\x1d\x15\xfd\xa8\x10\xc8\x4d\x39\x07\x3a\x88\ \x8b\xb4\xe6\x22\x68\xad\x31\x84\x41\x47\x47\x8a\xfc\x52\x9e\x85\ \xf9\x79\x12\xf1\x84\x97\x18\x6b\x59\xa4\xb3\x9b\xa8\xa9\xad\x54\ \x96\x77\x31\x3f\x73\x98\x63\x93\xa3\x9c\xb5\xad\x16\x72\x7e\x04\ \xc9\x74\x12\xe9\xaa\x5e\x77\x86\x9f\xfc\x2f\x3f\xd9\xfd\xbf\xfe\ \xec\xf3\xa5\xda\x77\x44\x80\x3b\xbe\x49\xe9\xbd\xd7\x60\xa0\xb9\ \x66\x6e\xa6\xca\xd0\x68\x92\x44\x42\xb4\x80\x5f\x57\x0d\xdb\xb7\ \xe5\xf9\xd6\xa3\x26\x89\x8e\xb5\x6c\xde\xb2\x89\xbd\x2f\xef\x6d\ \x05\xb8\xee\x82\x05\x40\x8b\xc6\x31\xa1\xa4\xd0\x76\xba\xff\x54\ \x48\x40\x1b\x12\x84\x2a\x86\x1b\x9f\xeb\xc7\x3a\xe4\xf9\xe9\xc6\ \xfa\x4c\x20\x09\xc2\x4b\xd6\xcd\xee\x5d\x54\x12\x68\xd5\x58\x39\ \x6d\xac\x85\xa8\x48\x54\xb4\xd9\x5b\x50\x5a\x45\x56\x4a\x01\x52\ \x1d\x69\xaa\xd5\x0a\x93\x53\x13\xc4\xe2\x31\x2c\xcb\x46\x08\x41\ \x3a\x3d\x88\xcb\xb9\x54\x4b\x2f\x93\x5b\xd8\xcf\xfe\xa3\xc3\x9c\ \x75\xba\xeb\x79\x08\x01\x09\x12\x48\x57\x65\x96\xca\xc5\x1f\xff\ \xd8\xef\xba\x7f\xf5\x6a\x25\x81\xd9\x7c\xe2\xe6\x77\xf0\x94\x10\ \xbc\x57\x6b\x06\xe6\x67\xaa\x6c\xdc\xd2\x81\x10\xb4\x5d\x28\x32\ \x0d\xc5\xe9\x9b\xf3\xfc\xe3\x6d\x45\x76\xee\xfc\x41\xe6\xe6\xe6\ \x98\x9f\x5f\x68\x92\x02\xed\x44\x3f\xa1\x6b\xb4\xb8\x86\x81\xb8\ \x17\xa7\x60\xfd\xb7\xbb\x1e\x80\x04\x68\xd1\xea\xee\x87\xdd\x3a\ \x3f\xea\x11\x90\x20\xe4\xcb\x87\x25\x42\x8b\x11\x18\x5a\xf2\xd6\ \x91\xe5\x6f\x1d\x8a\x8a\x36\x49\x83\x10\xf8\x0d\xd2\x78\x2a\x21\ \x91\xec\x00\x0d\xc7\xc7\xc7\xb0\x2d\x1b\xcb\xf6\x48\xd0\x91\xea\ \x44\x99\xe7\x51\x2d\x1d\xa1\x90\xdf\xc3\xde\x43\x03\x9c\x75\x86\ \xc4\x34\xb4\x27\x59\x81\x64\x3a\x49\xad\xea\x74\xca\x39\xf3\x83\ \x7f\x79\xab\xf3\x99\x3f\xfc\xc3\x53\x2d\x8d\x6e\x43\x80\x3b\x1e\ \xc4\x7d\xcf\x55\x3c\x01\xfc\x44\xa5\xa2\x4c\xa5\x60\x60\xc8\x5e\ \x71\xa1\x28\x9b\x76\x58\x3b\x34\xc7\x6d\x77\x69\x7e\xe8\x87\xde\ \xcf\xae\x17\x76\x51\xab\x39\x21\x90\xdb\xe9\xff\x06\xf8\x75\x69\ \x10\xcc\xfe\x53\x05\xb9\x45\xd1\xb7\x4a\x86\x46\x6e\x62\xb8\xc8\ \x95\xa8\x04\x08\xcd\xfe\x16\x8b\xdf\x3f\x17\xd5\xe9\x2a\x4a\x90\ \x10\xb0\x2d\xa4\x08\x12\x4c\xa2\xf7\xd4\x43\xd6\x91\x3c\x45\xa5\ \x89\xc5\xe2\x58\xa6\xc5\xd8\xf1\x23\x18\xa6\x49\x3c\x96\x40\xa3\ \x49\x26\x52\x28\xe3\x1c\x9c\xda\x0c\xcb\xb9\x17\xd8\x7b\xb0\x97\ \x73\xcf\x52\xbe\x24\xf0\x9e\x71\x47\xa6\x83\x4a\xa9\xd2\x3b\xbd\ \xcf\xba\xe9\xaf\xbe\xe0\x7c\xf6\x35\x13\xc0\x37\x08\x27\xdf\x73\ \x15\x06\xb0\x63\x7e\xce\x21\x9d\x8e\xd1\xd9\x6d\xb4\x5d\x25\xd4\ \x5a\x31\xd0\x5b\xc6\xad\x4c\x71\x70\x6c\x03\x97\x5c\x7a\x31\xbb\ \x76\xed\x0a\xa2\x6f\x75\x60\xa3\x6a\x81\x90\x6d\xd0\xd0\x0c\xbc\ \x56\x12\x70\x72\x82\x04\xe2\x3c\xf4\xb9\xa1\x0a\x74\x7b\x22\xd4\ \x41\x8e\x88\xff\xd6\x54\xb7\xb0\x37\xd3\x00\x55\x47\x42\xdf\x91\ \xc4\x13\xa9\x23\xaa\xa2\x9e\xc9\x54\x4f\x7d\x8b\xd9\x31\xe2\xf1\ \x24\x47\x8f\x1e\x46\x29\x45\x32\xd1\x81\xd6\x10\x8f\xc7\x91\x62\ \x3b\xae\xb3\xc4\x72\xfe\x39\xf6\x1f\x1e\xe2\xdc\x33\x25\x86\xd1\ \x88\x7e\xa6\x3a\x53\x14\x97\xca\x6b\x7e\xfe\xc7\x62\x97\xff\xe5\ \xad\xb5\x2f\xbc\x66\x02\x00\xdc\xf8\xa3\x3c\x6a\x2e\xf3\x4e\xad\ \x19\x9e\x9d\xae\xd1\xd3\x63\xd3\x91\x16\x91\x62\x91\x70\xf5\xd0\ \xa6\xb5\x79\x76\xef\x19\xa3\x67\xe8\x5a\x06\x07\x07\x38\x78\xf0\ \x60\x93\x0a\x08\x87\x63\xfd\x59\x1f\x06\x3f\x6c\x34\x9e\xa2\xce\ \x17\xaf\x82\x15\x81\xfe\x46\x35\x6c\x02\xd5\xc8\x42\x6e\x80\xaa\ \x42\x11\xbf\x50\xa0\x87\xa8\x14\x50\x41\x12\xac\x8a\x78\x01\x2a\ \xb4\x44\xae\x42\xe0\x87\x0d\xc1\x20\x8d\xcd\xcf\x49\x08\x9f\x57\ \x52\x61\xd9\x36\xa9\x8e\x34\x47\x8f\x1d\xa2\x5a\xad\x91\x4e\xa7\ \xd1\x5a\x13\x8f\xc7\xd0\xc6\x36\x9c\xda\x12\x4b\x8b\xcf\x72\xe8\ \xd8\x08\xe7\x9d\x59\x0b\x24\x28\x40\xaa\x33\xc5\xe2\x4c\x6e\xf3\ \xaf\xfe\xa7\x74\xea\xd3\xff\x58\xbd\xf7\x35\x13\xe0\xae\xbb\x50\ \xef\xd9\xc1\xbd\x5a\xf0\x61\xd7\xd5\xa9\xdc\xa2\x4b\x6f\x9f\x4d\ \x22\xd1\xae\x74\xcc\x7b\x50\x67\x6d\x9d\xe1\x5b\x0f\x1d\xe3\xf4\ \xb3\xdf\x87\x74\x5d\x26\x27\x27\x43\x46\x60\x18\xe4\xb0\x1d\x28\ \x02\x5d\x26\x82\x22\x9b\x15\x48\x70\x0a\x11\x42\xe9\x4a\x96\x8b\ \xcb\xe4\x0b\x79\x4a\xa5\x22\xc5\x52\x91\x6a\xb5\xe2\xa5\x82\xd7\ \xeb\x01\x7c\x9f\xba\x61\xdd\x37\x03\x4c\xab\x7b\xd7\x66\xf6\x6b\ \xe5\x7d\x4b\x20\xca\xb5\x6e\x31\x04\x75\x04\xec\x7a\x72\x4b\x38\ \x87\x52\xf9\x2a\x41\x47\x62\x26\xa6\x69\x92\x49\x65\x38\x7c\xe4\ \x00\x35\xc7\x21\x93\xce\x06\xee\xa3\x12\x5b\x91\x6e\x9e\xdc\xdc\ \x33\x4c\xce\x8d\x70\xe6\x69\xd5\x86\x1a\x35\x04\xa9\xae\x14\xf3\ \xe3\x0b\x97\xfd\xe6\xcf\x75\xbf\xf8\x3f\x3f\x57\x7e\xf9\x15\x4b\ \xc3\x4e\x36\xfe\xf6\x16\x76\x08\xc5\x3d\x5a\x63\x8f\x0c\xdb\x9c\ \x73\x61\x92\x54\x56\x34\xd2\xc6\xc3\xa5\x64\x5a\x21\x15\x7c\xe9\ \xeb\x3b\x39\xff\xed\xff\x99\xaf\xde\xf1\x35\x0e\x1f\x3e\xdc\xa8\ \xe9\x33\xc2\x25\x5e\x96\x5f\xc2\x65\xfa\x15\x3d\x66\x70\xbd\x7e\ \xbe\x39\xa2\x48\x44\xa5\x34\xce\xd5\x6a\x35\xa6\x67\xa6\x59\x58\ \x9c\xa3\x52\xab\x79\xc5\x20\xc2\x2b\x4a\x09\x4b\x09\xad\x35\x96\ \x6d\x91\x4d\x67\xc8\x64\xb2\xf4\x74\x75\x93\xcd\x66\x31\x84\x89\ \x61\x86\x8a\x54\xfc\xc2\x90\xa0\xbe\xd0\x27\xa9\x61\x84\x17\xbc\ \x1a\x36\x0e\x21\x77\x76\x25\x29\xd6\x5e\x2a\xa9\xd0\x12\x84\x0e\ \x24\x52\x3d\x29\x55\x6b\xcd\x72\xb1\xc0\xae\xdd\xcf\x31\x3a\xb2\ \x8e\xa1\xa1\x11\x50\x9a\x9a\xe3\xb0\xb4\x54\xa0\x38\xfb\x79\xaa\ \xc5\xa7\xb9\xec\xf2\xb3\xb8\xea\xf2\x1c\x08\x03\x81\x57\x01\x55\ \x5e\xae\x31\x79\x64\xba\x96\xee\xee\x3a\x6b\xf3\x0f\xcc\x1e\x78\ \xd5\x12\xa0\x3e\xbe\xfa\x20\x47\x6f\x7a\x07\x8b\xc0\x8d\x4b\x05\ \x45\xad\xec\x90\xcd\x9a\xc4\x13\xb4\x80\xaf\xd1\x08\xa1\x39\x73\ \xcb\x01\x1e\x78\xa8\xca\x95\x57\x7d\x98\xc9\xc9\x49\xf2\xf9\x7c\ \x48\xd4\x87\xe2\xf5\x0d\x6f\x30\xb2\x96\xb3\x92\x24\x68\x96\x02\ \x5a\x6b\x8e\x4f\x8c\x71\xe0\xd0\x01\x8a\xe5\x12\x42\x18\x41\x86\ \x8e\x97\xb2\x15\xf3\x2c\xea\x60\xb3\x00\x41\xa5\x5a\x25\x9f\xcf\ \x31\x31\x39\xc1\xc4\xf4\x14\xd5\x4a\x85\x58\xcc\x2b\x77\x6b\xd8\ \x00\x0d\xd5\x50\x8f\xfd\x7b\xda\x41\x35\xc5\x04\x54\x90\xa5\x1c\ \xb5\xf4\xa3\x99\xc7\xaa\x69\x99\x5c\x2a\x2f\x2a\xa8\x65\x58\x4d\ \xa8\x68\x22\xab\x94\x98\xa6\x4d\x3a\x9d\x61\xcf\x9e\xdd\x24\x62\ \x09\x12\xc9\x04\x5a\x7b\x61\x61\x61\x6d\xa7\x5a\x3e\xc4\xb1\x23\ \x87\xe8\x1b\x18\xa6\xbf\xb7\x1a\x10\xde\x8e\xdb\x80\x30\x0b\xb9\ \xe5\x1f\xf9\xcc\x17\xdd\x3f\x5f\xc9\x33\x30\x4f\x85\xa9\x77\x7e\ \x9b\x27\xdf\xb5\x23\xb5\x55\xe0\x9c\x93\xcb\x6b\xb4\x0b\xe9\x0e\ \x93\x58\x32\x5a\x4a\x56\x3f\x16\x42\xb3\x7d\xd3\x2e\x9e\x7c\xd6\ \xe4\xb2\x2b\x7e\x84\xf1\x13\xe3\x2c\x2d\x2d\xb5\xa8\x80\x46\x64\ \xab\x25\x88\x77\x52\x75\x50\x1f\x47\x8f\x1f\x63\x6e\x7e\xce\x07\ \x3d\xde\xd8\xfb\x04\x88\xd9\x31\x2c\x2b\x16\x80\xdf\x28\x37\xf7\ \xa4\x8f\x61\x1a\x28\x29\xc9\xe5\x73\x1c\x3b\x31\xc6\xfc\xfc\x1c\ \xb1\x58\xdc\x8b\xca\x85\xa3\x77\x6d\x97\x7c\xeb\x7e\x3e\x0d\xf1\ \xdf\xb4\x97\xa1\x04\x59\x2f\x73\x39\x1a\x1c\x52\xb2\x6e\x04\xca\ \x20\xab\x59\x6a\x2f\xcd\x4d\xfa\xea\x43\x2a\x85\x6d\x79\x51\xc3\ \x17\xf7\x3c\x47\x57\x67\x2f\xb6\x65\xfb\x2a\x4b\x60\xc5\xcf\xa4\ \x56\xdc\xcd\xcb\xfb\xe6\x39\xf7\xac\x34\xf1\xb8\xf4\x27\x8a\x17\ \x23\x58\x9a\x5f\x4e\x2d\x1c\x4d\x9e\xf6\x57\xb7\x56\xbf\xfc\x9a\ \x09\x00\xf0\x1f\x06\x9c\x3b\x96\x07\xd7\x7e\xc8\x50\x4b\x3d\x0b\ \x8b\x0a\xcb\xb0\x48\xc4\x4d\x12\x49\xd9\x54\x4a\xd6\x68\x0f\xb7\ \x65\xe4\x19\x76\xbf\xe4\x72\xd1\xe5\x1f\x66\xfc\xc4\x38\x85\x42\ \xa1\xed\x4c\x8f\x00\xde\xb4\xdc\x5f\x8f\xeb\x35\x13\xa1\xb0\x5c\ \x60\x72\x7a\x92\x58\x2c\x4e\x2c\x1e\x0f\x8a\x39\xea\x44\x68\x6c\ \x36\xb6\xdd\x4a\x00\x33\x54\x34\xea\x2d\x4c\x41\xb9\x5c\xe6\xf8\ \xf8\x18\x53\x33\x53\xc4\xe3\x71\x92\x89\x64\x08\x60\xd5\xb2\xda\ \x17\x29\x3c\x69\xbb\x57\x91\x14\xf6\x48\x72\x8c\x6c\xac\x9d\xd4\ \x8d\x47\xe9\x13\xa1\x4e\x8a\xe0\x9c\xd2\x5e\x0a\x9e\x54\xec\xd9\ \xb3\x9b\xa1\xa1\xe1\x60\x22\x49\x65\x60\x25\xb7\x51\xce\x3f\xc4\ \x81\x23\x59\x2e\x39\x5f\x06\x13\x0d\x01\xa9\x6c\x07\xb3\xc7\xe7\ \xcf\xfc\xb5\x9f\xcf\x7e\xfb\x2f\x3f\x57\x39\xfa\x9a\x09\x70\xdb\ \x1e\xf4\xce\x77\x7e\xe4\x5f\xb5\x5a\xfc\x25\x43\x2d\x18\xb3\x73\ \x2e\x31\x3b\x41\xcc\x8a\x91\x48\xd5\x22\xe0\xfb\x12\x13\x01\x6c\ \x18\x7e\x81\x83\x87\x8b\x9c\x7b\xf1\x47\x98\x9b\x9b\x65\x71\x71\ \x31\xa2\x0e\xa2\xc6\x5f\x94\x04\x02\x22\xa1\xcf\x30\x09\x66\xe6\ \x66\xd0\x1a\x62\x31\x0f\xf8\x78\x7d\xd6\xc7\xbc\x2d\x1e\x0b\x11\ \xc0\xb2\xb1\x6c\xbf\x81\x45\xa8\xd8\xd4\x68\xea\x25\x20\xfc\x5f\ \xaa\x5c\x29\x73\xec\xf8\x51\x72\xf9\x45\xba\x3a\x7b\x30\x4d\x33\ \x52\xef\x10\xf1\xf7\x83\xc0\x4f\xd4\x1d\x54\x5a\xf9\xe2\xbd\xa9\ \x10\x45\x85\x8d\x3e\x1d\x49\x68\x55\x81\x04\xa9\x27\xb1\x46\xaf\ \x67\xd2\x9d\xcc\xcc\x4e\x73\x62\x7c\x8c\xa1\xc1\x61\xa4\x1f\x49\ \xd4\x3a\x81\x19\x1b\x22\x3f\x73\x3f\x65\x67\x1d\x5b\x37\x55\x02\ \x02\x98\xa6\x89\x65\x5b\x62\x69\x6e\xf9\xbd\xbf\xf8\xfb\xf2\x2f\ \x9a\x23\x85\xe6\xab\x71\xa9\xbf\x7e\xdf\x93\x4b\x57\xbd\xf3\xe7\ \x94\x29\xc7\xae\x36\x54\x8e\xe9\xd9\x2a\x76\x2c\x89\xa1\xb3\x74\ \xa4\x8a\x78\xbd\x85\x1a\x4b\x07\x75\xbf\x7b\xb4\xef\x25\x26\x27\ \xe6\x38\xfd\xec\xff\x48\xb1\x58\x64\x66\x76\xa6\x45\xef\xb7\xcf\ \xeb\xd0\x21\x22\x68\x3f\x8d\xd9\xb3\xe4\x73\x85\x3c\xa6\x61\xf9\ \xb3\xbe\x41\x82\x98\xdd\x00\x3f\xe6\xcf\x7e\xdb\xb2\x1a\x6a\xc0\ \x6c\x18\x9a\x5e\xff\x00\x23\x00\xbf\x59\xca\xe4\x97\xf2\x1c\x3a\ \x72\x00\xcb\x8e\x91\x4d\x77\x46\xb2\x9d\x55\xa8\x56\x31\x5c\xa7\ \xa8\x55\x1b\x9d\xae\x5b\x6b\x0c\xc2\xb9\x8b\x11\x92\x04\x99\xcd\ \x3a\x50\x01\x81\xc4\xd0\x9a\xee\xee\x3e\xf6\xee\xdf\x83\xeb\xb8\ \x74\x75\x75\x07\xc4\x33\xad\x01\x94\x74\x39\x7a\xf8\x39\xb6\x9f\ \xd6\x4b\x3a\x2d\x03\x2f\x2b\xd1\x91\x60\x69\xa1\x18\xb7\xca\xa9\ \x4d\x7f\x79\x6b\xe5\x2b\xaf\x99\x00\x00\x3f\xfd\xd1\x5f\x78\x74\ \xb6\x34\xf8\x2e\xcb\x39\x32\x2c\xd4\x12\xb3\xb3\x15\x2c\xdb\xc6\ \x60\x98\x64\x72\x19\x21\x54\x34\xe4\xea\x6f\x83\xdd\xfb\x28\x2d\ \xbd\x40\xcf\x9a\x1f\x23\x16\x8b\x33\x3e\x3e\xb1\xe2\x6c\xaf\xe7\ \xef\xb4\xef\xd9\xe4\xd5\xf6\x97\xcb\x15\x4c\xcb\x22\x1e\xf7\x80\ \x8f\xc7\xea\xfb\x18\x31\x3b\x4e\x2c\x66\xfb\xc6\xa0\xed\x1b\x83\ \x56\xd0\x1c\xa2\x51\x26\xde\xc8\x5f\xa8\xab\x99\xf0\x0a\xa2\x06\ \x5c\xe9\x72\xfc\xc4\x31\x8a\xa5\x22\x83\xfd\x43\xfe\x22\x91\x6e\ \x5a\xce\x0e\xc7\xff\xa3\xb6\x40\x00\xa6\x0e\x83\xdf\x54\xbb\xd0\ \x62\xfc\x35\xc0\xd7\xe1\x24\x57\xa5\x10\x08\x52\x1d\x29\x9e\x7e\ \xf6\x71\xd6\x0c\x0d\x63\xdb\xb1\x20\x82\x69\x26\x36\x52\x2d\xee\ \xe2\xf0\x51\x8b\x4b\x2f\x92\xa1\x20\x9a\x47\x82\x99\xe3\x73\x67\ \xfd\xd2\x6f\xf4\x7f\xf6\xaf\xff\x77\xb1\xf8\x9a\x09\x70\xdb\x6d\ \xb7\xe9\xab\x76\xde\xf0\xb0\x6b\x9f\xf3\x93\xa6\x3b\x6e\x09\xb5\ \xc0\xfc\x7c\x05\xd0\xd8\xd6\x56\x62\xf1\x22\x86\x59\x8b\x80\x5f\ \x5f\x80\xeb\xec\x98\x24\x69\x7c\x83\x9a\x79\x13\xa3\xa3\x5b\x19\ \x3b\x76\x0c\xa9\x24\xa2\xc5\xf0\x6b\xf6\x53\x75\xc8\x1e\x68\xe4\ \xe9\x19\x86\xd7\x56\xd6\x23\x81\xa7\xff\xe3\x71\x9f\x04\xbe\x34\ \xb0\x6d\x9b\x58\xdd\x06\xf0\xc5\xbf\xe1\xeb\x7e\x51\xcf\x4f\xa4\ \xd1\x7a\x2e\xbc\xaa\x18\x16\xf9\x73\xf3\x33\x4c\x4c\x9c\x60\x74\ \x64\x1d\xa6\x61\x06\xf7\x45\x2d\xfb\x50\x09\x5a\x64\xe6\x47\x2d\ \x7c\x19\xaa\x43\x08\xc8\x20\x55\x74\xc6\x2b\x1d\xd4\x2e\x84\xd3\ \xe0\x3d\x7b\xa0\x83\x72\xb9\xc4\xe1\xc3\x07\x58\xb7\x7e\x63\x28\ \xac\x2d\xb0\xe2\xeb\x58\x98\xba\x87\xce\xee\x21\xd6\x0c\x39\x81\ \x14\xb0\x62\x16\x95\x62\x4d\x50\x72\x2f\xfe\xcc\x3f\xd5\x3e\xf7\ \x9a\x09\x00\xf0\xcd\x7b\xbe\x39\x7b\xdd\xce\xeb\x8a\x6e\xec\x9c\ \x1b\x0c\x39\x83\x21\x67\x59\x5c\xac\x50\xad\x96\x49\xa5\xce\xc4\ \x34\x25\x96\xb5\x1c\x5d\xab\xf7\xa5\x42\xdc\x2a\x31\x9c\xfd\x2a\ \xd3\x8b\xdb\xd8\x7e\xd6\x75\x1c\x3f\x3e\x46\xb5\x5a\x6d\x9a\xed\ \xe1\x00\x7f\xfb\x75\x0d\xcb\x34\x11\x3e\x01\x3c\xe0\xeb\xe0\xc7\ \x03\x3b\x20\x66\xc7\xb0\x63\x75\x15\x60\x05\x2d\xe5\x4c\xd3\xeb\ \x39\x68\x84\xd6\x25\xa2\xeb\x07\x44\x67\xb7\x6f\x00\x16\x96\x97\ \x18\x9f\x1c\x63\xfd\xda\x8d\x18\x86\xd9\xb6\x09\x69\xb3\x8d\xa0\ \x64\x1b\x97\x70\x05\x35\x20\x65\xb8\xde\x41\x46\x96\x90\x23\xcb\ \xdd\x5a\xd3\xd7\xdb\xcf\x9e\x97\x77\x91\x4c\x76\x90\xcd\x74\x06\ \xe1\x6c\x61\xa4\xd1\xca\xe5\xe0\xc1\x13\xbc\xe3\xed\x46\x23\x49\ \x56\x78\xcb\xc7\x53\xc7\xe6\xd6\xff\xde\xc7\xfa\xff\xf5\x53\xff\ \x58\x9c\x7e\xcd\x04\x00\xb8\xef\xde\xfb\x1f\xbf\xee\xba\xeb\x4e\ \x73\xed\x33\xcf\x36\x74\x01\xc3\x9d\xa0\x50\xa8\x32\x3f\xbf\x48\ \x6f\xdf\x76\x94\xee\xc1\xb6\xe6\x11\xb4\xaa\x04\x21\x34\x6b\xfb\ \x1e\x66\x29\xbf\xc8\x86\xad\x1f\x26\x9f\xcf\xb3\x94\xcf\xd3\x1c\ \xec\x13\x4d\xa4\x08\xdb\x02\xf5\x9e\x83\x75\xf0\x63\xb1\x90\x2a\ \x88\xd7\x3d\x02\x3b\x14\x0b\x88\x1a\x7f\xa2\xa9\xe9\x24\xe8\xa6\ \xb2\x76\x15\x15\xe9\x4a\xa2\x95\xa2\xb0\x5c\x60\x7c\xf2\x38\x9b\ \x37\x6e\x0d\x7a\x1a\x9e\x74\x23\x9a\x92\xd6\xd2\xb4\xa2\x29\xd3\ \x29\xb2\x74\xdd\x92\xa5\xdc\x20\x40\x9d\xc8\x2f\xbd\xfc\x02\x9b\ \x36\x6e\x0b\xb2\x9d\xb5\xd6\xd8\xf1\xb5\x14\xe6\x1e\x24\x95\xea\ \x63\x74\xa4\x16\xb8\x85\xa6\x65\x52\x2d\xd7\x44\xcd\x71\xcf\xfa\ \xcc\x17\x6b\xff\xf0\x1d\x11\x00\xe0\x8a\xb7\x5f\xf9\x75\x2b\x66\ \xbd\x4b\xda\xa7\x0f\x01\x18\xee\x51\x2a\x95\x1a\xc7\x8f\x4d\x32\ \xb8\x66\x2d\x9a\x33\x30\xcd\x45\x84\x28\x47\x5e\x0d\x50\x97\x08\ \x7d\xd9\x83\x24\x8c\x87\x49\x74\x7d\x90\x4c\x67\x3f\x93\x93\x93\ \x5e\x03\x88\x88\x0b\xb8\xd2\xde\x4b\xa8\x48\x76\xa4\x7c\xd0\xe3\ \x11\x55\xd0\xec\x09\x78\x6d\xec\xbc\x88\x63\x3d\x77\xb1\xf1\x80\ \xdb\x2d\xf0\xd4\x45\x6e\xa3\x74\x4c\xfa\x45\x29\x4b\x4b\x79\x1c\ \xb7\xc6\xf0\x9a\xd1\x53\x5c\x8f\x8a\x82\xdb\x36\x47\x31\x92\xc0\ \xd2\x26\x41\xb5\xcd\xbe\xab\xb3\x9b\x43\x47\xf6\x63\x5a\x16\x5d\ \xd9\xee\x20\x35\xcf\x2b\x5f\x8c\x33\x76\xec\x28\x57\x5e\x2e\x22\ \x52\xc0\xb6\x6d\x66\xc7\x17\xd6\xfe\xde\x2f\xac\xff\xd3\x4f\x7d\ \x3e\xe7\x7e\x47\x04\x78\xf0\xc1\x07\x9d\x9d\xd7\x5f\x75\x8f\xc6\ \xf8\x90\xb2\x37\xa5\xb4\xd9\x8f\x51\xdd\x87\x52\x2e\x47\x8e\x8c\ \xd3\xd9\x15\x23\x96\xb8\x02\x21\x34\x86\x98\x8d\xaa\x03\xff\x6f\ \x4f\xda\x79\x86\xb3\x77\xb0\x54\x5e\xcf\xc6\x2d\xd7\x30\x3d\x94\ \xcd\xee\x8d\x00\x00\x17\xb3\x49\x44\x41\x54\x33\x4d\xa5\x5a\x09\ \x69\xe4\xa8\x47\x10\xc9\xe1\xd7\x0a\xdb\xb6\x48\xa5\xd2\x3e\xe0\ \xf1\x88\x51\x18\x48\x01\xcb\xf6\xdb\xce\x5a\x41\x38\x37\x90\x35\ \xfe\xef\x12\xb6\xc4\x23\xf5\x85\x4a\x86\x4a\xce\xdc\xa0\x20\x64\ \x72\x6a\x9c\xa1\xa1\x11\x52\xa9\xd4\xa9\x01\xff\x4a\xe0\xaf\x58\ \x9b\xa0\x57\x26\x84\xff\xfb\xef\x3f\xb0\x87\xcd\x9b\xb6\x85\xf2\ \x2d\x25\x98\xfd\x14\xe7\x1f\x65\xf3\xa6\x0c\x5d\x5d\x0d\x8f\xc0\ \x8e\xdb\x2c\xce\x2e\x0b\x61\xaa\xc4\x5f\x7d\xa1\x72\xef\x77\x44\ \x00\x80\x7b\xef\x7d\x20\x77\xfd\x75\xd7\xdc\xab\xe1\x47\xb5\x35\ \x98\x50\xf1\x6d\x18\xd5\xfd\xa0\xaa\x8c\x9f\x98\xa3\x5a\x5d\xa0\ \x7f\xe8\xed\x68\xd6\x22\xc4\x24\x42\xd7\x9a\x96\x66\x3d\x95\x30\ \xd2\xf3\x14\x96\x7a\x81\x74\xdf\xfb\x31\xac\x24\x73\xb3\xb3\x2d\ \xf6\x80\xd6\xcd\xaf\x9d\x81\x6a\xad\x46\x47\x47\xca\xab\x54\xf2\ \x25\x40\x43\x1a\x34\x0c\xc1\xba\x01\x18\xe8\x7c\x1d\x5d\x01\xd4\ \x01\xe0\x2a\x54\x37\x28\x23\xc5\xa0\x41\x92\xa8\x74\x91\xae\x4b\ \x7e\x29\xcf\xd6\x4d\xa7\xb5\xaf\x72\xd2\xed\x81\x7f\x25\xf0\x4f\ \x45\xfc\x87\xf7\x99\x74\x96\x97\xf6\xbc\x40\x4f\x77\x1f\x89\x78\ \x22\xda\x0b\x41\x6b\x0a\xf9\x25\xce\x3f\xc7\x09\x85\xd1\x3d\xb5\ \x55\xc8\x97\xb6\x7d\xf6\x4b\xee\x9f\x7d\xc7\x04\xf0\x48\x70\xff\ \xd4\xb5\x3b\xaf\x7e\x14\x2d\x3e\x88\x91\xb1\x65\xe2\x1c\x84\x33\ \x86\x90\x79\x72\xb9\x02\xe3\xe3\x47\x18\x5d\xb7\x0d\xc3\xbe\x02\ \x21\x1c\x50\x53\x91\x77\x4a\xd4\xc9\x90\x4e\xce\x33\xda\x7d\x17\ \x55\xb5\x89\xe1\x75\x3f\xc0\xdc\xfc\x9c\x67\x20\xae\xf8\x9e\x20\ \xbf\x87\x61\xa9\x40\x36\x9b\x25\x93\xce\x44\x49\xe0\xab\x02\x4f\ \x05\x98\x41\x2a\x7a\xc3\x43\xd1\xd1\x82\xd3\x50\xc9\x99\x67\xa5\ \x37\x32\x85\x1b\x04\x70\x83\xe3\xc5\xdc\x3c\x1b\xd7\x6f\x21\x91\ \x48\x9c\x54\xf7\xbf\x2a\xf0\x4f\xd1\x0e\x08\xe7\x1b\xe4\xf3\x0b\ \x94\xcb\x25\x7a\x7b\xfb\x03\x09\xa0\x94\x04\xa3\x8b\xa5\xb9\xe7\ \xb8\xea\x4a\x23\x12\x1d\xb4\x6c\x8b\xa9\x63\xf3\x1d\x7f\xf8\x9b\ \xd9\x4f\xbf\x2e\x04\x00\xb8\xef\x9e\xfb\x8f\x5d\x7b\xfd\xd5\xbb\ \x41\xbc\x1f\x11\x37\x55\xe2\x7c\x04\x35\x84\x7b\x82\x6a\xa5\xca\ \xfe\xbd\x7b\xc9\x64\x34\xd9\x9e\xeb\x10\xe6\x66\xb4\x3c\x0e\x94\ \x23\x92\xa0\xfe\x08\x86\xbb\x9f\x21\x65\xed\xa2\xa3\xe7\x3d\xd8\ \xb1\x2c\x73\x73\x73\x41\xbb\x99\xe0\x91\x84\x92\x3c\xb4\xd6\xe4\ \x72\x8b\xa4\xd3\x19\xba\xbb\xba\xfd\x98\x40\x9c\x44\xbc\x1e\x21\ \xb4\x83\x16\xf4\xe1\x48\x9d\x0c\x59\xe2\xe1\x1a\xc3\x70\x9a\x78\ \x1d\x74\xef\x73\x68\x73\x5d\x1c\xd7\x21\x95\xca\x30\x38\x30\xf4\ \xda\xed\x80\xb0\xde\x3f\x05\x35\xa0\x83\x30\x71\xa8\xbe\x51\x49\ \x0e\x1f\x39\xc0\xfa\x75\x1b\x43\x6e\xa4\x44\x29\x81\x53\x1e\xe7\ \xf2\x8b\x25\xb1\x98\x0e\x19\x83\x16\x0b\x53\x4b\x98\x22\x3e\xfb\ \xba\x11\xc0\xf7\x0c\xf6\x5f\xbb\xf3\x9a\x67\xd0\xbc\x17\x61\xd8\ \x3a\xbe\x15\x6d\x8f\x20\xaa\x07\xd1\xaa\xc6\xf1\xb1\x09\x16\xe6\ \x0e\x30\xb2\xe1\x3c\xac\x8e\x6b\xbc\x3f\xd3\x3d\x1e\xfa\x03\x1b\ \x44\xe8\x88\x2f\xb2\xb6\xeb\x2e\x34\x1d\xf4\x0d\xed\xa0\x54\x71\ \x58\x5e\x2e\x34\x12\xba\x75\xb4\xd4\x58\x6b\xc5\xdc\xdc\x2c\x5a\ \x69\x86\x87\x46\x02\x35\x90\x8c\x27\xb0\x63\x5e\x7e\x9d\x8e\x00\ \xae\x1a\x33\xda\x0d\xcd\x6e\xd7\x03\xd8\x75\x1b\x60\xb7\x03\xbf\ \x7e\x2e\x93\xce\xb2\x76\x74\xfd\xeb\x63\x07\x68\xdd\xf6\xb8\xb9\ \xae\x22\x28\x77\xf7\x09\x10\x8b\xc5\xd9\xf3\xf2\x6e\xd6\xad\xdd\ \x80\x10\x22\x64\xc3\x78\x52\x6c\xb0\x2f\xc7\xc8\x90\xdb\xb0\x7d\ \x84\xa0\x52\x74\x90\xae\xea\x78\x5d\x09\xe0\x4b\x82\x83\xd7\xee\ \xbc\xfa\x61\xb4\x78\x3f\x10\xc7\xea\x83\xe4\xb9\xe0\x4e\x80\x9b\ \xa3\xb0\x54\x64\xef\x4b\xcf\xd1\xd7\x97\xa0\xb3\xef\x46\x44\xfc\ \x2c\x70\x27\x51\x32\xd7\xe2\x25\x68\x60\x20\xbb\x97\xe1\xce\x7b\ \xd0\xd6\xd9\x74\xf7\x9e\x4d\x2e\x9f\xa7\x56\xab\x36\xbd\xa2\xae\ \x61\x14\x2e\xe6\x16\x98\x9d\x9f\x65\x68\x70\x0d\xd9\x74\xd6\x73\ \x09\xed\x58\x30\xcb\x5d\x1f\x5c\x37\x72\xec\xef\xeb\xe7\x5d\x07\ \xc7\x6d\x9c\x93\xae\x8b\x74\x1d\xff\xb3\xd3\xb8\xd7\x75\x18\x1c\ \x18\x62\x78\x78\x74\xc5\x0a\xe7\xd7\x62\x07\x44\xd6\x14\xc2\xc0\ \x87\xda\xdc\xd4\xed\x13\xa9\xbc\x62\x91\xa3\xc7\x0e\xd1\xd3\xdd\ \x47\x2c\x16\x6b\x54\x3d\x2b\x89\x22\x49\x57\xea\x08\x67\x6c\x53\ \x11\x35\xe0\xd6\x24\xcb\x85\x4a\xea\x75\x27\x40\x5d\x1d\x5c\x77\ \xed\xd5\xf7\x21\xc4\xfb\x80\x0e\x8c\x38\x24\xcf\x43\x08\x13\xaa\ \xc7\x50\x4a\x72\xf8\xc0\x01\x16\xe7\x0f\xb0\x6e\xe3\xf9\xc4\xb2\ \x3f\x88\x61\x8f\xa0\xaa\x87\xd0\xaa\xd2\x12\x37\x30\x0d\xc9\x48\ \xf7\x93\xf4\x24\x9f\xc3\xea\x78\x07\x89\x8e\x61\x72\x8b\x8b\x48\ \x25\x43\xc5\x1d\x8d\xa7\x59\x2c\x2e\x73\xe0\xd0\x3e\xa4\x54\x0c\ \x0d\x0d\xa1\x35\xb8\xae\xf4\x41\x75\x70\x9c\x30\x98\x0e\xae\x13\ \x22\x80\x7f\x2d\x4c\x00\xa7\x09\xf4\xf0\xf1\x19\xa7\x9f\xe3\xb9\ \x60\xa7\x10\x07\x58\x49\x15\x84\xd3\xcd\x55\x9b\xea\xaa\x68\xe4\ \x50\x86\x7a\x21\x35\xfa\x21\x4d\xcf\x4c\x92\x48\x24\x48\x75\xa4\ \x22\xaa\x41\x29\x58\x3b\x34\xc5\x99\xa7\x55\xa2\x04\x70\x15\xf9\ \xd9\x82\xfd\x86\x10\x00\xe0\xbe\xfb\xee\x9f\xb8\xfe\xba\xab\xbe\ \xa2\x11\xd7\x01\xfd\x08\x01\xf1\x8d\x90\x3c\x03\x6a\x27\x40\x16\ \xc8\xe5\x16\xd9\xfd\xdc\xc3\x74\x66\x6a\xf4\x8f\x5c\x4b\x2c\xfb\ \x4e\x04\x16\x6e\xf5\x10\x68\xd9\x12\x4a\x4e\xc6\x97\x59\xdf\xfb\ \x20\x99\xc4\x14\x99\xbe\xab\xb1\xec\x2c\xb9\x7c\xce\x33\x78\x74\ \x34\xf3\x57\x49\xc5\xe4\xd4\x04\x7b\xf6\xee\x41\x2b\x45\x36\x93\ \xc5\x95\x12\xc7\x71\x70\x5c\x87\x9a\x53\xa3\xe6\x38\x38\x8e\x07\ \xb0\xe3\x86\x8e\xfd\x7b\x02\x82\xd4\x89\xe3\x46\x89\x93\xea\x48\ \x73\xc9\x85\x97\x9d\x72\xc6\x6a\x4b\xa2\x89\x0a\xb7\xa8\x6b\x18\ \x6f\x2d\xab\x87\xcd\x33\x5f\xa9\x60\xf6\xd7\x81\x9e\x9a\x9e\x20\ \x91\x48\x92\xea\x48\xb7\xf4\x44\x3a\x73\xcb\x3c\xdb\x36\x15\x43\ \xf9\x15\x02\xa9\x34\x0b\x93\x4b\xc6\x1b\x46\x00\xdf\x45\x5c\xbc\ \xf6\x9a\xeb\xbf\x80\xa1\xcf\x07\xb6\x78\xc1\xe7\x34\x22\x7d\x21\ \x08\x1b\x5d\x3d\x86\x56\x92\x23\x87\x0e\x72\x78\xdf\x23\xac\x5d\ \x37\x42\xa6\xff\xdd\x24\xb2\xd7\x22\xdd\x79\xdc\xea\x58\x8b\x4a\ \x40\x43\x26\x39\xcd\xba\xee\x7b\x48\xc4\x15\xd9\xbe\x2b\x10\xa2\ \x83\xa5\xa5\x9c\x9f\x4a\xd5\x58\x92\x06\x4d\xad\x56\x63\xec\xf8\ \x18\xfb\x0e\xbc\x8c\xe3\x38\x5e\x53\x0b\xad\xa8\xd5\x7c\xa0\x1d\ \x8f\x0c\xf5\x63\x4f\x3a\x38\x81\xb4\x70\xdd\x5a\x40\x06\xc7\xff\ \xec\xba\x0e\xa6\x69\x72\xc5\x65\x3b\x48\xc4\x93\xaf\x50\xe3\xd8\ \xd4\x42\xaf\xcd\x3e\x58\x3e\x5e\xb1\xa6\xb2\x5d\xef\xa3\xb0\x3d\ \x20\x39\x7e\xe2\x38\x5d\x9d\x5d\x24\x12\xc9\xc0\x36\xa8\x6f\x97\ \x5d\x38\xc3\xda\x35\xcb\x81\xfe\x17\x08\xa4\xa3\x98\x1d\xcf\x8b\ \x37\x94\x00\x9e\x24\xb8\xaf\x7a\xd3\xbb\xaf\xbd\xdb\x71\xf9\xb5\ \x46\x31\xaa\x40\xc4\x37\x20\x3a\xce\x42\xd7\x26\xc0\xcd\x53\x2e\ \x95\xd9\xfd\xdc\xa3\x94\x97\x0f\x31\xba\xe9\x12\x52\xbd\x37\x13\ \xcf\x5c\x86\x5b\x9b\x41\x56\x27\x5a\xbc\x05\xad\xa1\x3b\x75\x94\ \xf5\xdd\xdf\x20\x16\x33\xe9\xea\xbf\x0c\xc3\x4a\xb3\xb4\x94\xf7\ \x54\x83\x6e\x90\x40\x6b\x8d\xe3\x38\x4c\xcf\x4c\x71\xe8\xf0\x01\ \xe6\x17\xe6\x70\xa5\xd7\xd2\x25\x90\x0a\x8e\x43\xcd\xad\x13\xc2\ \xc1\x71\x6a\xfe\xe6\xe0\xd6\x89\xe1\x6f\xbd\x3d\x7d\x5c\x74\xde\ \xa5\xa4\x3b\xd2\x8d\xc6\x98\x6d\xb6\xe6\x86\x94\x51\xf0\x65\x2b\ \xf0\x5a\xbd\x62\x61\xad\x94\xad\x44\x90\x4a\x31\x36\x76\x84\xde\ \xbe\x7e\x62\xb6\xdd\x10\xff\x3e\x39\x76\x5c\x3a\xce\x40\x6f\x25\ \x42\x00\xc7\x51\x2c\x4e\x17\x78\xc3\x09\x00\xb0\xe3\xea\xab\x7e\ \x0a\xc4\x8d\xfd\x03\xfd\x54\xcb\xd5\xc6\xab\x5e\xcc\x14\x46\xfa\ \x42\x84\x99\x45\x57\xc7\xd0\xca\x61\x7a\x72\x82\xe7\x9e\xfc\x3a\ \xe9\x8e\x32\x83\x6b\x77\x90\xee\x7f\x3f\xf1\xce\xb7\x21\xab\x27\ \x70\xab\x93\x6d\xaa\x7b\xa0\x37\x7d\x98\x75\x5d\x77\x93\x4a\x38\ \xa4\x7b\x2f\x21\x1e\xef\xa1\x50\x28\xe0\xba\x6e\xa4\xc0\xb3\x2e\ \x76\xcb\xe5\x12\xf3\xf3\xb3\x4c\x4e\x8d\x93\xcf\x2f\x52\xad\x56\ \x70\xdc\x9a\x07\xb4\xeb\xfa\x84\xf0\x67\xbe\xe3\x80\x86\x78\xcc\ \xa6\xab\xb3\x9b\x2d\x9b\xb7\x32\x32\x34\x8a\x69\x59\x21\xf0\x74\ \x5b\xd0\xb4\x6a\xb4\xb6\x0b\x8e\xc3\x22\x5e\x47\x53\xc6\x9a\xdb\ \xed\x44\x24\x40\x53\x8f\xc3\xb0\x1d\x50\x2c\x2e\x33\x39\x39\xce\ \xda\xd1\xb5\x5e\xd5\x46\x48\xfc\x6b\x2d\xf9\xd0\xbb\x0f\x61\xdb\ \x3a\xc8\x77\x10\xbe\x17\xb0\xb4\x58\x96\x6f\x0a\x01\xae\xbd\xfe\ \xea\xcf\x6a\xcd\x50\x36\x9b\x65\x64\x64\x98\x85\x85\xc5\x48\xe1\ \xa6\x88\x8f\x20\x52\x17\x81\xaa\xa1\xab\x93\x28\xe5\x72\x70\xdf\ \x8b\xbc\xf0\xf4\x1d\xf4\xf5\x9a\xf4\x8d\x5e\x4f\x66\xf0\x47\x48\ \x64\x2f\xc6\xa9\x1c\x43\x56\xa7\xda\x4a\x84\xae\x8e\x31\xd6\x75\ \xdf\x47\x57\x6a\x82\x8e\xec\xc5\xa4\xb2\x6b\xa8\x56\xaa\x94\xab\ \x95\x50\xb1\x47\x74\x73\x1c\x87\x4a\xa5\x4c\xb9\x5c\xa2\x5a\x2d\ \xe3\x3a\x5e\x76\x93\x6d\x9a\x24\xe3\x71\x32\xe9\x34\xd9\x4c\x96\ \xce\x6c\x27\xa9\x54\x0a\x53\x98\xa1\x84\x90\x70\xc2\xa7\x0e\x1d\ \x87\x81\x6f\x05\x3b\xb2\xce\xd0\x4e\x1d\x9c\x4c\x02\x84\x9b\x59\ \xfa\x44\x98\x9d\x9d\x42\x2a\x49\x5f\x4f\x7f\x44\x2d\x28\x25\x39\ \x7d\xd3\x02\x57\x5f\x3e\x1d\xd1\xff\x08\xc1\x72\xae\x4a\xad\x22\ \xf3\x6f\x38\x01\x3e\xf9\xc9\x4f\x8e\x82\xfe\xa4\xb7\x82\x25\xe8\ \xed\xeb\x23\x9e\x48\xb0\x77\xef\x7e\xd2\xa9\x54\x23\x0b\x47\x58\ \x88\xe4\x36\x44\xf2\x74\xb4\x33\x8b\x76\x73\xd4\x6a\x35\x5e\xda\ \xf5\x04\x7b\x9f\xbf\x93\xa1\xa1\x4e\x7a\x47\x6f\xa4\x73\xf8\xc7\ \x49\x74\x5e\x80\x5b\x1e\xc7\xa9\x8c\x47\xaa\xbf\xeb\xfb\x74\x6c\ \x96\xd1\xae\x6f\x31\x94\x7d\x0e\x3b\xb1\x99\xee\xde\xed\x08\xc3\ \xa6\x58\x2a\xfa\xfd\xfd\x56\xd6\xd9\x4a\xb5\xaf\xfc\x69\x4e\xf8\ \x68\x69\x54\xdd\xb4\x45\x7b\x11\xcb\x96\xbe\xc4\x61\xc0\x9b\xc1\ \x6f\xfe\x1c\xed\x80\xaa\x22\x8b\x53\x8e\xe3\x70\x6c\xec\x08\x03\ \x03\x43\xc4\x62\xf1\x48\xf3\x2b\x29\x25\x1f\xba\xe9\x10\x23\x43\ \x95\x50\x5e\xa5\xe7\x05\xcc\x4f\x16\x30\x0c\x76\xbd\xe1\x04\xb8\ \xe6\xfa\x1d\x3b\xd1\x7c\x40\x6b\xa8\x56\x6b\xf4\xf5\xf7\x12\x8f\ \xc5\x78\xe1\xf9\x17\x98\x9a\x9c\xa6\xab\xab\x13\xd3\xb2\x42\x39\ \x4a\x69\x8c\xf4\x79\x60\xf5\xa3\x9d\x69\xb4\x2c\x53\x2a\x16\x79\ \xfe\xa9\xfb\x39\xb2\xe7\xeb\x0c\x8f\xae\xa1\x77\xf8\x9d\x74\xad\ \xfd\x09\xd2\xfd\x3b\x91\xee\x32\xd5\xe5\xfd\xa1\xca\x9f\x86\xfb\ \x15\xb7\x4a\xac\xe9\x7a\x96\x0d\xbd\xf7\x11\xb7\x34\xe9\xce\x73\ \x48\xa5\x07\xa9\xd6\xaa\x54\x7c\xa9\xd0\x5c\xfd\x1b\x6e\x7b\x1f\ \xcd\xf6\x69\xae\x00\x0e\x15\x7f\xe8\xa6\xd4\xef\xa6\x0e\xaa\x0d\ \x50\x65\x8b\x9b\xa7\xf5\xa9\x19\x81\xe1\x9f\x09\x1b\x84\x53\x53\ \x13\x28\xa5\x18\x1c\x18\x8a\x00\x2f\xa5\x64\xf3\xba\x45\x3e\x7c\ \xf3\xf1\x88\xe8\xaf\x4b\x80\x89\x23\x8b\x24\xd3\x89\x4f\xbf\xe1\ \x04\xb8\xf6\xda\xab\xaf\xd6\x5a\xdf\x88\xdf\x58\x21\x91\x48\x78\ \x39\xf8\xa6\xc9\xee\x5d\xbb\x99\x98\x9a\x24\x66\xc7\x48\x67\xd2\ \x41\xa8\x16\x40\xd8\xfd\x9e\xb7\x60\x65\xd1\xd5\x69\xb4\xaa\x92\ \xcf\x2d\xf0\xd4\x23\x77\x72\xe8\xe5\x3b\x19\xe8\xcf\xd0\x37\x7a\ \x03\x5d\xa3\x1f\xa2\x6b\xf8\x43\x68\x24\x95\xa5\x97\xd0\xca\x69\ \x79\x9f\xb4\x40\xd3\x93\x3a\xc6\xfa\x9e\x07\x19\xc8\xbe\x88\x9d\ \xd8\x40\x57\xcf\x36\xec\x58\x8a\x5a\xa5\x4a\xcd\xa9\x46\x2b\x7f\ \xc2\x9d\xcf\xdb\xa5\x7c\x87\x81\x5f\x41\xff\x37\x00\x6e\x05\x5b\ \x47\xd4\x83\x5c\xd1\x10\xd4\xed\x24\x40\xe8\x38\xb7\xb8\xc8\xfc\ \xe2\x1c\x43\x83\xc3\x20\x88\x2c\x5a\xc5\x62\x35\x7e\xfb\x67\xf7\ \x92\x4d\x37\xd2\xc4\xeb\x52\xa0\x58\xa8\x91\x9b\x2d\x29\x7b\x6b\ \xf9\xdd\x6f\x38\x01\xae\xbe\xf6\xaa\x8b\xd1\xfa\xc6\xba\x31\x56\ \xa9\x54\xe9\xe9\xe9\xa1\xb3\xb3\x93\x43\x07\x0f\xb3\x94\x5f\x62\ \x6e\x6e\x8e\xa5\xa5\x25\xba\xba\xba\xfc\xe2\x8d\x7a\x28\x54\x20\ \x62\x6b\x3c\x22\x18\x49\x54\x75\x0a\xb4\x43\x6e\x71\x9e\xa7\x1e\ \xbd\x8b\xdd\x4f\x7d\x81\x9e\x2e\x83\xbe\xe1\xcb\xc9\x0c\xdc\x40\ \xf7\xda\x8f\x20\xcc\x14\xd5\xe2\x41\xa4\xb3\xdc\xf6\xf7\x49\xd8\ \xcb\x8c\x74\x3d\xcb\xa6\xbe\x6f\x92\x49\xe4\x88\xa7\x36\xd2\xdd\ \xbb\x99\x58\x3c\x49\xad\x56\xa5\x56\xad\x86\x24\x80\x8a\xbe\x04\ \xa3\x0e\xb6\x6e\x4a\xf1\x6e\xe3\x09\x28\x1d\x6e\x85\xd3\xe4\x05\ \x84\xed\x81\x66\x2f\x61\x45\x8f\x40\x46\x0c\xc2\x42\xa1\xc0\xdc\ \xfc\x2c\xfd\xfd\x83\xd8\xb6\x1d\x99\xf9\x42\x38\xfc\xca\x7f\x3a\ \xc0\xe9\x9b\x8a\xa1\xe0\x4f\x43\x0a\x4c\x1d\xcb\xe3\x68\xeb\xc9\ \xf3\x77\x38\x9f\x7d\xe3\x09\x70\xcd\x35\xa3\x68\xfd\xc1\x7a\xaa\ \x55\xcd\xa9\x91\x48\x24\x88\xc7\x63\xf4\xf5\xf7\xf1\xe2\xee\x17\ \x51\x4a\x51\x2c\x16\xbd\x44\x51\x0d\x99\x6c\x06\xc3\x30\x1a\x86\ \xa2\x30\x10\xf1\x11\x8c\xf4\xf9\x5e\xfc\xc0\x99\x45\x2b\x87\xe5\ \xc2\x12\xcf\x3e\x71\x37\x4f\x7d\xfb\x7f\x93\xe9\x28\xd1\x37\x7c\ \x1e\xe9\xde\x2b\xe9\x5e\xfb\x11\x92\xd9\xb3\x91\x6e\x11\xa7\x34\ \x16\x74\xea\x6a\x8e\xce\x75\x26\xa7\x58\xdf\xfb\x04\x9b\xfa\xee\ \x23\x66\x15\x48\x74\xac\xa3\xbb\x6f\x23\xf1\x58\x07\x52\x49\x8f\ \x0c\x4d\x12\xa0\x01\x5e\xe8\xcd\x28\x6d\x3c\x01\xad\x64\x44\x35\ \x44\x3d\x02\xcf\x50\x6c\x78\x00\xb2\xc5\x1b\x58\xd9\x0d\x74\xc9\ \xe5\x16\x59\x2e\x2e\xd3\x95\xed\xf2\xc0\x0f\x75\x4f\x4d\x26\xaa\ \xfc\xc6\x4f\xef\xe7\xa2\xb3\x97\x42\x6e\x5f\x23\x0f\xbf\x52\x72\ \x99\x3e\xb1\x44\x2c\x91\xbd\xf4\xb3\xff\xa7\x54\x10\x6f\x34\x01\ \xfe\xe4\x4f\x6e\xd9\xe4\x2a\x71\x28\xac\x63\xed\x98\xcd\x96\xad\ \x5b\x40\x6b\x9e\x7c\xf2\x29\x1e\x7b\xe4\x31\x2f\x35\xdb\xcf\xd2\ \x4d\xa5\x52\x6c\xdb\xb6\x8d\xbe\xfe\xde\x36\x25\xd8\x1a\xad\x6a\ \xc8\xe5\x5d\xc8\xfc\x93\x28\xb7\xb1\x86\x10\x8b\x27\xd9\x71\xed\ \xcd\x9c\x7f\xd9\x07\xc9\x74\x9f\x89\x56\x0e\x4e\x79\x82\xfc\xc4\ \xed\xe4\x26\x6f\xc7\xa9\xf7\x58\x6c\x53\x84\x12\x4e\x3f\x1b\x9b\ \x3f\x9b\x63\xf3\x97\x53\x76\x37\x50\xa9\x1a\x14\x0a\x79\xf2\x85\ \x3c\xc5\xe2\x72\x88\x41\x62\xa5\xd6\x84\x2d\x2b\xd7\x41\x57\x82\ \x48\x22\x47\xa3\x03\x49\xf8\xb8\xd9\x6d\x0d\x57\x13\x57\x9d\x2a\ \xe5\x52\x09\x2d\x34\xc9\x78\x87\xff\x9e\xeb\x86\x14\x3a\x7b\x5b\ \x8e\x5f\xfe\x8f\x87\xe9\xed\x71\xbc\xb0\x3b\x22\x54\x2f\x68\xa0\ \x31\x38\xfc\xe2\x1c\x47\x27\xac\x87\xdf\xf7\x0b\xe5\x2b\xbf\x93\ \xaa\xfb\x57\x35\xfe\xf8\xbf\xde\x72\x44\x2a\xbd\x21\xfc\x47\xf5\ \xf5\xf7\xd3\xdf\xdf\x87\x54\x92\xaf\xdd\x79\x17\x87\x0e\x1d\x69\ \xbc\x45\xcc\x27\x42\x7f\x7f\x1f\xdb\x4e\xdb\x46\x47\x47\xc7\x0a\ \xb5\xf8\x0a\x55\xdc\x8b\xbb\xf4\x04\xba\x36\x43\xb8\x3b\xcc\x96\ \xd3\x4e\xe7\x07\xae\xf9\x21\xd6\x6d\xb9\x1e\x61\xc4\xd0\xaa\xc6\ \xf2\xc2\x13\x2c\x4d\x7d\x8d\xd2\xe2\xe3\x68\x59\x09\x15\x9d\xb4\ \x29\x51\xf3\xcf\xe7\x4b\x3d\x1c\x9a\xbe\x90\xd9\xe5\x33\x70\xd4\ \x1a\x2a\x55\xc9\xf2\x72\x81\x72\xa5\xe4\xbb\x8e\x95\xd6\x77\x23\ \xb5\x5b\x01\xd0\xcd\xc7\xd1\x40\x55\xcb\x92\x6f\xbd\xe7\x10\x5e\ \xb2\xa8\xeb\x3a\x28\x29\x83\xe2\x54\x1d\x7a\x03\xca\xf0\x40\x91\ \xf7\xed\x1c\xe7\xaa\xcb\xe6\x30\x4d\xc3\x8b\xb7\x85\x80\xaf\xef\ \xa7\xc7\x96\x39\x7e\xc2\x91\x7f\xf0\xb7\xb5\xee\x47\x1e\xa1\xf0\ \xa6\x11\xe0\x8f\xfe\xf8\x96\x3f\x51\x5a\xfd\x4e\xd8\xc0\x02\x58\ \xbf\x7e\x1d\x89\x64\x12\xc7\x71\xf8\xca\x97\x6f\x67\x62\xfc\x44\ \x44\x12\x08\xff\x25\xd1\x6b\x86\x87\xd9\xbc\x79\x13\x89\x44\x3c\ \x64\x80\xe9\xe8\x71\xe5\x28\xb2\xf0\x2c\xaa\x7c\x24\x34\xa3\xa0\ \x23\xd5\xc1\x0f\xec\xb8\x96\xb3\x2f\x7c\x17\xa9\xec\x26\xb4\x72\ \x90\x6e\x81\xd2\xc2\x13\x2c\xcf\x3f\x4c\x65\xe9\x79\xb4\xaa\x11\ \x32\x90\x09\x55\xad\xb7\x10\x64\x3a\x37\xcc\x91\xe9\x73\x59\x28\ \x6e\xa1\x26\xfb\x31\xcc\x14\x95\x6a\x85\x52\xb1\x48\xb9\x52\xa2\ \x56\xab\x50\x73\x5d\xa4\x53\xa3\xe6\x3a\x28\xa9\xda\x66\x35\x35\ \x83\x5e\x97\x29\x22\x48\x59\xf3\x6c\xa0\x7a\x34\x52\xca\x68\x92\ \x2a\x48\xb6\x6f\xcd\xb1\xf3\x8a\x29\xae\xb8\x68\x1e\xc3\x07\xde\ \xeb\xbc\x16\x05\x1e\x04\xb9\xd9\x2a\xe3\x63\x15\xfe\xe2\xef\xe5\ \xcf\x7d\xf9\x3e\xf5\xd7\xa7\x5c\x1e\xfe\x7a\x8c\x4f\x7c\xe2\xe3\ \x5b\xa5\x36\xf6\x2a\xad\x8c\x7a\xad\x9d\xd6\x5e\x8f\xfc\x8d\x1b\ \x37\x60\x18\x26\xb5\x4a\x95\x3b\xef\xbc\x8b\xe3\x63\x63\x7e\x23\ \x49\xff\xad\x9e\x3e\xe3\x4d\xcb\x64\xdd\xda\xb5\x6c\xdc\xb8\x01\ \x3b\x66\xaf\x4c\x04\x67\x09\x55\xdc\x85\x2a\xbe\x84\x96\xc5\x46\ \x9e\x01\xb0\x75\xeb\x16\x2e\xb9\xf4\x4a\xd6\x6d\xbe\x14\x3b\xde\ \x85\x56\x0e\xca\x2d\x50\xca\x3d\x4b\x39\xf7\x14\xb5\xe5\x3d\x68\ \x9c\xf6\x24\x08\x6d\xe1\x6b\x35\x69\x73\x64\x6a\x0b\x13\xf3\x1b\ \xc9\x97\xd6\x50\x95\x7d\x20\x3a\x31\x84\x15\xb4\xb9\xaf\xd6\xaa\ \x7e\x64\xb1\x16\x04\x69\x22\x25\x65\x78\xcf\x44\x4a\x97\x9a\x53\ \xf5\xd7\x29\xbc\xbd\xeb\x3a\x81\x47\xd2\xdb\x59\x66\xf3\xba\x3c\ \x17\x9c\x35\xcf\xdb\xce\x9b\x27\x9b\x71\x57\x06\xdd\x6f\xbc\x85\ \x30\x58\x98\xa9\x32\x71\xbc\xc6\x7f\xff\x3b\xf7\xae\xdb\xbf\xa9\ \x6f\x0a\x33\xf2\x4d\x21\x00\xc0\x2d\x7f\xf8\xf1\x2f\x28\xcd\x87\ \xc3\xaf\x75\xd3\x1a\xe2\xc9\x04\xeb\xd6\xad\x0d\xa2\x72\xf7\x7c\ \xe3\x6e\xf6\xed\xdd\x1f\xa4\x6e\x37\xf6\x1e\x11\xac\x98\xc5\xda\ \xd1\x51\xd6\xaf\x5f\x47\x3c\x1e\x6f\xb5\x0f\x02\x52\x48\x74\xf9\ \x20\xba\xb8\x1b\x55\x3d\x11\x09\x1f\x6b\x0d\x67\x6e\xdf\xcc\x05\ \x17\x5d\xc4\xc8\xfa\xf3\xb1\x62\x59\xb4\xac\xf9\x31\x85\x3d\xd4\ \x8a\x7b\x71\xca\x07\xd0\xb2\x10\xad\x5f\x6c\x26\x42\xd3\xe7\xf0\ \xb9\x62\xb9\x83\xa9\xc5\x1e\x16\x0a\x59\xf2\xcb\x59\x0a\xc5\x34\ \x85\x62\x92\x72\xd5\xa0\x56\xd3\xb8\x12\xca\x15\x8d\x54\x1a\x8d\ \x8b\x76\x6b\x58\x66\x05\xdb\x92\xc4\xe3\x2e\x3d\x9d\x15\xba\xb2\ \x55\x7a\x3a\x2b\xac\x19\x28\xb1\x79\x5d\x81\xae\xac\xd3\xf4\xef\ \x88\x26\xe0\x05\x02\xd3\xbf\xc1\x40\x6b\xc1\xcc\x89\x0a\x07\x8f\ \x2a\x3e\xfd\x39\xe7\x05\x43\xf2\x8e\xaf\x3f\xc1\xd2\xab\x6a\x10\ \xf1\xba\x11\xe0\x96\x5b\xb6\x48\x9c\x17\xb5\xd2\xf1\x66\x7f\x3b\ \xd9\x91\x64\x64\x74\xc4\xef\x93\x23\xf9\xf6\x03\xdf\xe2\xb9\xe7\ \x9e\x6f\x22\x80\x11\x6a\x33\xeb\x35\x5c\x1e\x19\x5e\xc3\xfa\x0d\ \xeb\xe9\xe8\x48\x35\x49\x83\x26\xe9\xe0\xe6\x50\xa5\xfd\x50\xd9\ \x8f\x76\x17\x23\xab\x8b\x06\x82\xed\xa7\xaf\xe3\xdc\xf3\xcf\x65\ \x64\xed\xe9\x58\x76\x06\xad\x6a\x28\x55\xc3\xad\x4e\xe1\x96\x0f\ \xe1\x56\x8f\x22\x9d\x49\x84\x90\x2b\x12\x20\x90\x0a\x46\x7b\x49\ \xf1\x6a\x09\x74\x6a\x3f\xd7\x8e\x00\xde\xe7\x6a\x49\x73\x62\xac\ \xca\x3d\xdf\x86\x6f\x3e\xe2\x3e\x5f\x73\xb8\xfe\xa1\xe7\x98\xa5\ \x5d\xb5\xdd\x9b\x35\xfe\xf3\xef\xff\xee\xc7\x81\x4f\xa8\xa6\x36\ \x2b\x5a\x6b\x3a\x52\x1d\xac\x19\x5a\xe3\x75\xe2\xd4\x8a\x3d\x7b\ \xf6\xf0\xc0\x37\x1f\x08\x5e\x35\x1f\x25\x40\x94\x14\x83\x43\xfd\ \xac\x5b\xb7\x8e\xae\xae\xee\xf6\x6a\x21\x4c\x8a\xda\x2c\xaa\xbc\ \x1f\x51\x39\x84\x56\xc5\x88\x54\x00\x58\x3b\xd2\xcb\xd9\xe7\x6c\ \x60\xfd\xba\x75\x64\x32\x43\x68\x84\xe7\x75\xc8\x12\xaa\x36\x8e\ \x72\x67\x50\x72\x0e\xa1\x16\x11\xc2\x3d\x65\x70\xbf\x73\xb0\x4f\ \x46\x80\x06\xf0\xb5\x0a\xcc\x4e\xb8\xec\xde\xab\xf9\xc2\xed\x92\ \x9a\xc3\xd7\xca\x16\x3f\x5a\x37\xfa\xbe\xab\x04\xb8\xe5\x96\x5b\ \x62\x35\xb7\xfc\x98\xd6\xe2\x82\x76\xad\xd5\x12\x89\x04\x6b\x86\ \xd7\x78\x7a\x5b\x29\x72\xb9\x3c\x77\x7f\xfd\x1b\x4c\x4e\x4e\x9e\ \x94\x00\xf5\x7d\x3a\x9d\x62\x74\xed\x28\x6b\xd6\xac\xc1\x34\x8d\ \x93\x12\x41\x29\x85\xae\x4d\x22\x2a\x47\xc1\x19\x43\xbb\x4b\x11\ \x7b\x01\x0d\x96\x29\x38\xfd\xb4\x01\x4e\xdb\xba\x86\xc1\xc1\x01\ \x92\xc9\x4e\x94\x72\xd1\xaa\x86\x96\x55\xb4\xcc\xa1\xf5\x02\x42\ \xe7\x31\x8c\x65\x0c\xa3\x86\xa8\x37\x71\x7c\xdd\xc1\x5e\xc9\x1e\ \xf1\xf4\x7f\xb5\x2c\x98\x18\x57\x1c\x3c\xac\xf9\x97\xbb\x14\x85\ \x12\x65\xad\xf9\xbd\xfb\x9e\xe0\x53\x27\xcb\x53\x7e\x53\x09\x00\ \xf0\xf1\x8f\x7f\x7c\xa3\xa3\x9c\x67\xd1\xba\x2b\xe8\xb0\x11\x02\ \x28\x66\xdb\x0c\xae\x19\xc2\x34\x4d\xbf\x11\xb4\xcb\xd3\x4f\x3e\ \xcd\x53\x4f\x3c\xe9\xb7\xa0\x31\x82\xe2\x8e\xf6\xea\xc1\x2b\x99\ \x1a\x5a\xb3\x86\x91\x91\x21\xb2\xd9\x6c\x13\xf0\x6d\x54\x84\xd6\ \xe0\x2e\xa2\xab\x63\x88\xda\x71\x70\x67\x22\x9e\x44\x9d\x18\xa6\ \x65\x70\xfa\x96\x2c\x1b\xd6\x66\x19\xe8\x4b\x91\xea\x48\x62\x9a\ \x36\x4a\xd6\x7c\xb5\x51\xc5\xd0\x45\x10\x65\x4c\xab\x8a\x61\x38\ \xd8\xb6\xc4\xb2\x74\x7d\xa2\xbe\xae\x12\xc1\xad\xc2\xcc\x9c\x60\ \xec\x04\x7c\xfb\x71\x78\xe1\x25\x8d\x06\x17\xcd\xe7\xb5\xc9\x1f\ \xdc\xfb\x08\x13\xaf\x84\xc7\x9b\x4e\x00\x80\xdf\xfe\xbd\xdf\x7e\ \x97\xd6\xea\x5f\xb5\xd2\x76\xb4\x16\xcf\x5b\xcb\x16\x42\x30\x30\ \x38\x40\x22\x91\x08\xdc\x9f\xc5\x85\x45\x1e\x7e\xf8\x11\x8e\x1e\ \x3e\x12\x69\xde\x24\x0c\x23\xd4\xbc\xa9\x95\x14\x1d\x1d\x1d\x0c\ \x0d\x0d\x32\x30\xd8\x4f\x32\xd9\xd1\x96\x08\xd1\x6e\x9f\x0a\xad\ \x2a\x08\x67\x1a\xdc\x29\x70\xa6\x31\x64\x2e\xd4\x79\x34\xa4\x32\ \x34\xc4\x62\x82\x4d\x1b\x92\x6c\x18\x89\xd3\xdd\x69\x90\x4a\x0a\ \x6c\x53\x23\x90\x48\xd7\xf1\xa4\x85\x72\x30\xfd\x5e\x05\xa6\x6d\ \x62\xda\x06\xa6\x25\xb0\x2c\x8d\x61\x2a\x4c\x43\x60\x18\x0a\x0c\ \x30\x0c\xaf\x19\xb7\x10\xca\x37\x28\x6c\x84\xb0\x01\x9b\x5a\xa5\ \xc6\xfc\xe2\x12\x53\xd3\x92\xb1\x71\xd8\xbd\x07\x8e\x1c\x0f\x24\ \x56\x55\xc3\xed\x86\xe4\x8f\xbe\xfe\x04\x7b\x4e\x15\x8b\xef\x0a\ \x01\x00\x7e\xeb\x77\x7e\xfd\xc3\x4a\x73\xab\x52\x5a\xb4\xae\xc4\ \x79\xef\xe6\xcb\x66\x33\x64\x3b\x3b\x03\xa0\xa4\x52\x4c\x4e\x4c\ \xf2\xe8\x43\x0f\x33\x33\x33\xdb\x20\x40\xf0\x86\x92\x93\x4b\x87\ \x6c\x36\xc3\xc0\xc0\x00\x3d\xbd\x3d\x24\x93\x89\x36\x6a\xa1\x3d\ \x29\xb4\xac\x20\xdc\x19\x84\x9c\x41\x38\xf3\x08\x9d\x47\x2b\x87\ \x48\xd2\xaf\x8e\xaa\x0f\x04\xf4\x74\x0a\xd6\x0c\x40\x57\x56\x93\ \x4d\x99\x24\x93\x26\x89\x84\x45\x3c\x66\x61\xdb\x31\x4c\xcb\xeb\ \x61\x64\x18\x26\xc2\xf0\x1a\x58\x49\x6d\xe0\xb8\x02\xa9\x04\x95\ \x8a\xcb\xd2\x72\x99\xd9\x85\x32\x87\x0f\xe7\x39\x70\xa4\x8a\x92\ \x34\x4b\xa6\xc7\xb4\xe0\x0b\x5a\xf2\x7f\xee\x7e\x8c\x85\x57\x8b\ \xc3\x77\x8d\x00\x00\xbf\xfe\x9b\xbf\xfe\x8b\x1a\xf5\xa9\xf6\x24\ \xf0\xc3\xc6\xb6\x45\x77\x4f\x8f\xd7\x1f\x2f\xd4\x2d\xe3\xe0\xc1\ \x83\xec\x7e\xe1\x05\x66\x67\xe7\xda\x10\xe0\x95\xa5\x43\x32\x99\ \xa0\xb7\xaf\x8f\xee\xee\x2e\x32\x99\x4c\x28\x38\xf3\x0a\xd2\xa1\ \x2e\xad\xdc\x02\x86\xce\x61\xc8\x9c\x67\x10\xaa\x65\x90\xe5\x50\ \xed\x5e\x54\x7d\xb4\x48\x8f\xe6\xf3\xa7\x72\x8f\xb7\x3f\x08\x3c\ \x28\x15\x0f\xda\xf0\xc0\x9d\xa7\x20\xe6\xdf\xb2\x04\x00\xf8\xb5\ \xdf\xf8\xe5\x9f\x56\x5a\xfc\x8d\x52\xca\x68\x21\x41\xa8\xdf\x6e\ \x26\x9d\x26\x93\xcd\x34\x15\x4a\x68\x66\xa6\xa7\x79\x71\xf7\x8b\ \x1c\x3b\x7a\x14\xb4\x6e\x10\xe1\x55\x48\x07\xcb\xb2\xc8\x76\x76\ \x92\xcd\x64\xc8\x64\xd3\x24\x93\xc9\x96\xfc\xfc\x76\xc7\xad\x21\ \x60\x85\x50\x25\x84\x2a\x82\x5a\x06\x55\x44\xe8\x2a\x5a\xd6\x40\ \xd7\xd0\xba\xe6\x65\x3d\xa9\x5a\x7b\x02\x08\x0b\x21\x6c\xb4\x61\ \x2b\x2d\x99\x05\xe7\x65\xe5\x96\x1f\xd3\x82\xfd\x5a\xb3\xcf\xb6\ \xd8\xff\xaf\xdf\x64\xfe\xf5\x7c\xfe\xdf\x75\x02\x00\xfc\xd2\xaf\ \xfe\xd2\x7b\x35\xfc\xa3\x56\x2a\x1d\x31\x0a\x9b\x5c\x45\x21\x0c\ \xd2\x99\x34\x1d\x1d\xc9\xe0\xed\xe2\xf5\x25\xda\x52\xb1\xc4\xbe\ \x7d\x7b\x39\x76\xf4\x28\xf9\x5c\xfe\x24\x04\x78\x65\xe9\x60\x98\ \x06\xd9\x74\x86\x8e\x54\x07\x89\x64\x92\x64\x32\xee\x67\xdb\xb4\ \x12\xe1\x75\x1b\x9a\x19\x21\xf4\xfd\x68\x71\xaf\xd6\xc6\x97\x6f\ \xbb\xed\xb6\xfc\x9b\xf1\xec\xdf\x12\x04\x00\xf8\x95\x5f\xf9\x95\ \xf3\x1c\xed\xde\xa1\xb5\x5e\x17\x59\x8b\x6f\x93\xa4\x61\x18\x06\ \xa9\x74\x8a\x44\x22\x11\xe9\xbd\x5f\xdf\x96\xf2\x79\x8e\x1f\x1b\ \x63\xfc\xc4\x38\xb9\xc5\x05\xaf\xcb\x67\x98\x08\xaf\xd2\x76\xa8\ \x7b\x16\xc9\x64\x22\x28\x39\xb7\xfc\xee\x23\x86\x21\x30\xbd\x7b\ \xb5\x38\xb5\x16\xa1\x39\x60\x12\x2d\x0e\x68\xf4\xcb\x06\xbc\xac\ \xb5\xf1\xec\x6d\xb7\xdd\xf6\x22\xa0\xdf\xec\xe7\xfe\x96\x21\x00\ \xc0\xc7\x3e\xf6\xb1\x6e\x2c\xf1\xf7\x5a\xeb\xf7\x44\xb2\x72\x5a\ \xfc\xf8\xba\x44\xf0\xde\xab\x17\x4f\x24\x30\x0c\xa3\x91\x33\x17\ \x4a\xd9\x2a\x95\x4a\xcc\xcd\xcd\xb2\x30\x3b\xcf\xe2\xe2\x02\x4b\ \x4b\x4b\x08\xad\x5f\xb3\x74\xb0\xe3\x71\xec\x78\x12\xc3\xb4\xc3\ \x79\x7f\x6e\x4d\x30\x78\xc6\xe8\xa8\x04\x7a\x94\xad\x04\x80\x25\ \x95\xa5\x94\x95\x51\x96\x2a\x1a\xae\x31\x0f\x2c\xdc\x76\xdb\x6d\ \xf2\xad\xf4\xcc\xdf\x52\x04\xa8\xff\x4e\x3f\xfb\x73\x3f\xfb\x51\ \x85\xfe\x53\xad\x74\xb6\xb9\x49\x73\xb3\x0e\x56\x21\x63\x31\x16\ \x8f\xfb\x5d\x34\x09\xba\x72\x49\x15\x6d\xdd\xea\xd6\xfb\xec\x96\ \x8a\x54\x4a\x25\xca\xe5\x32\xb5\x4a\x05\x57\xba\xde\xe3\xf0\xbf\ \xd7\xb4\x2c\x6c\xcb\xc6\xb4\x2d\x4c\xcb\xf6\x67\x7d\x3c\x92\x76\ \x5d\x7f\x05\xad\x56\xfa\xce\xe7\x9f\x7a\xfc\x66\xbe\x07\x87\x78\ \xab\xfe\x62\x3f\xf5\x8b\x3f\x35\x8a\x23\xfe\x5a\x2b\xfd\x83\xba\ \x6d\x9f\xfe\x95\x25\x83\x61\x9a\x41\x7f\x40\x84\x08\x48\x13\x2c\ \xa9\xd6\x81\xd3\xba\x91\x3f\x1f\xea\xd0\xa5\x83\x36\x6e\x2a\xd4\ \xae\x2d\x7c\xaf\xc4\x95\x0d\x8f\x40\xa1\x77\xbe\xf0\xc4\x13\xf7\ \xac\x12\xe0\x0d\x18\x3f\xf9\x33\x3f\x79\x83\x54\xfa\xcf\xb5\xd2\ \x67\x9c\x2c\x85\xbb\x45\x32\x84\xde\xf1\x63\x98\x86\xef\x6b\x7b\ \x62\x9e\x70\xe5\x6d\xa8\x4f\x7f\x34\x25\x2b\x5a\x9d\x1b\x74\xf0\ \xd2\x0d\xf2\xf8\x9d\x41\x1e\x79\xfe\x89\xc7\xaf\xe0\x7b\x74\x88\ \xef\x85\x5f\xf2\x96\x5b\x6e\xb1\x8e\x1e\x3f\xfa\x1f\x94\xd2\xbf\ \xa3\xb4\xde\xda\x6e\xd6\x47\xe3\x07\x6a\xe5\x2c\xdf\x36\xee\x9b\ \xf6\xdf\x10\xd6\xc8\xf8\xd5\x91\x9e\x7f\x5a\xca\xc6\x3d\x51\x02\ \xe6\xa5\x96\x17\xec\x7e\xea\xa9\xc3\xab\x04\x78\x73\x88\x60\xec\ \x3f\x7a\xe8\x87\x51\xfc\xaa\xd6\xea\x12\xd5\x2e\x9f\xbf\x05\x70\ \xb5\x22\x09\xa2\xaa\x84\x96\x0e\xe1\xed\xbd\x90\xfa\xfa\x85\xcc\ \x49\x21\x6e\xd8\xf5\xf8\xe3\x4f\xf0\x3d\x3c\xc4\xf7\xea\x2f\xfe\ \xa1\x0f\x7d\xe8\x3c\x25\xf8\x19\xa5\xf5\x07\x95\x52\xdd\x27\x27\ \x41\xeb\x5b\x3d\x56\x54\x25\xa1\x16\xf0\x2b\x13\x46\x3f\xad\xb4\ \xfc\xf0\x0b\x4f\x3e\xb9\x9f\xef\xf1\x21\xbe\xd7\xff\x80\x8f\x7e\ \xf4\xa3\xf6\xfc\x72\xee\x3a\x2d\xc5\x07\xb4\x52\x37\x6a\xad\x06\ \x4e\x4a\x82\x66\x03\xf2\xa4\xd5\x41\xaa\x59\xf4\x4f\x68\xf4\x1f\ \x65\xe3\xf1\xbf\x7b\xf0\xc1\x07\x5d\xbe\x0f\x86\xe0\xfb\x6b\x88\ \x9b\xde\xff\xfe\xf3\x34\xec\xd4\x4a\x5d\x86\x56\x6f\x53\x4a\x0f\ \x9c\x64\x26\xb7\xbe\xda\xb5\xf5\xde\x65\xa5\xf4\x7d\x4a\xe9\x5b\ \x85\x53\xf9\xea\x33\xcf\x3c\xe3\x7c\x5f\x3d\x30\xbe\xcf\xc7\x0d\ \xef\x79\xcf\x06\x21\xe5\x76\xa5\xd4\x19\x4a\xeb\x2d\x5a\xeb\x61\ \xad\xf5\x90\x86\x3e\x25\x55\x4c\x6b\x9d\xd2\x5a\x3b\x5a\xeb\x65\ \xa5\x75\x41\x2b\x39\xae\x35\x27\x94\xe2\x05\x29\xd4\x0b\xe5\x85\ \x85\xa7\x5e\x7a\xe9\xa5\x1a\xab\x63\x75\xac\x8e\xd5\xb1\x3a\x56\ \xc7\xea\x58\x1d\xab\x63\x75\xac\x8e\xd5\xb1\x3a\x56\xc7\xea\x58\ \x1d\xab\x63\x75\xac\x8e\xd5\xb1\x3a\x56\xc7\xea\x58\x1d\xab\x63\ \x75\xac\x8e\xd5\xb1\x3a\x56\xc7\xea\x58\x1d\xab\x63\x75\xac\x8e\ \xd5\xb1\x3a\x56\xc7\xea\x58\x1d\xab\x63\x75\xac\x8e\xd5\xb1\x3a\ \x56\xc7\xea\x58\x1d\x6f\xb1\xf1\xff\x00\x95\x26\xa1\x85\x9c\xef\ \xf5\xb2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x07\xfc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x36\xd9\x14\xd6\x24\x00\x00\x07\x7c\x49\x44\x41\x54\x68\ \xde\xed\x98\x5b\x6c\x14\xd7\x19\xc7\xff\xe7\xcc\x6d\x67\x67\x76\ \xd7\x5e\xaf\xf1\x62\xc8\x46\x18\x64\xc0\xd8\x48\x49\x89\x54\x2e\ \x02\x36\x09\xa5\x06\x51\x50\x53\x4b\x28\x72\x23\x11\x27\x54\x49\ \x1f\x51\xa4\x46\x11\x91\xab\xa8\xea\xe5\x21\x0f\x45\x48\x7d\x48\ \x15\x29\xa9\x5a\xa5\x55\xd5\x28\xae\x62\x15\xd1\x84\xd4\x01\x35\ \x22\x20\x8a\xbc\x31\x18\x0c\x31\xc6\x31\xbe\xec\xae\xf7\xbe\x3b\ \xb7\xd3\x87\xd9\xb1\xc7\xc6\x38\x36\x5d\x37\xad\xb4\x9f\x74\x34\ \x67\x8e\xce\x8c\xfe\xbf\xf3\x5d\xce\x99\x01\xaa\x56\xb5\xaa\x55\ \xad\x6a\x55\xfb\x3f\x36\x52\xe1\xf7\x71\x00\x94\x72\x13\x00\xf0\ \x00\x28\x00\x13\x80\x01\x40\x03\x90\x2b\x37\xf6\xbf\x04\x20\x00\ \x08\x01\xf0\x39\x03\x11\x40\xd8\x03\x84\x4c\x80\x7d\x0a\xc4\xef\ \x00\xba\x6b\xbe\x05\x60\x1a\x40\xa2\xdc\xff\xe6\x00\x7c\x3e\x5f\ \x9d\xa6\x69\xc1\x75\x8c\x79\x5e\x31\x8c\xdd\x4d\x8c\x1d\x54\x81\ \x9d\x84\x31\x3f\x55\xd5\x22\x61\x8c\x98\xb9\x9c\x64\x11\x92\xce\ \x02\x7d\x37\x09\xf9\xeb\xaf\x78\xbe\x6f\x84\x10\x1d\x80\x59\x2a\ \x95\x26\x00\x64\xbe\x09\x00\x1a\x0a\x85\xc2\x3e\xc0\xf7\x8b\xe9\ \xe9\xef\x37\x99\xe6\x2b\x81\xc7\x1e\xf3\x04\xf7\xec\x91\xbd\x6d\ \x6d\xe0\x42\x21\x10\x4a\x01\xc6\xc0\x0c\x03\xe6\xd4\x14\x72\xfd\ \xfd\x88\x9f\x3b\x57\x4c\x5d\xbd\x5a\xb8\xcd\x71\x3f\x7f\xb5\xa6\ \xe6\x83\x2c\x21\x56\xb1\x58\x4c\x64\x32\x99\xf8\x7f\x13\x80\x6b\ \x6c\x6c\x5c\x13\x2d\x95\x1a\x7e\x9c\x4c\xfe\x36\xd8\xd2\xd2\xbc\ \xe6\x85\x17\x24\x21\x12\x81\x3e\x31\x01\x7d\x6a\x0a\x56\x3e\x0f\ \x66\x9a\x80\x65\x01\x84\x80\x93\x65\xf0\x75\x75\x10\xeb\xeb\xa1\ \xdd\xb9\x83\xd1\xb7\xdf\x2e\x25\x07\x07\x63\xbf\x0e\x06\x7f\xf4\ \xa9\xc7\x93\xe2\x38\x2e\x3b\x3c\x3c\x3c\xf6\x30\x49\xb7\x6c\xe8\ \xe6\xe6\xe6\xd5\x47\x93\xc9\xe6\x63\xd3\xd3\x7f\x79\xf4\xe8\xd1\ \x48\xe3\xcb\x2f\x0b\x7a\x2a\x85\xe2\xf5\xeb\x30\xe2\x71\xb0\x42\ \xc1\x16\xee\x34\xc3\x80\x55\x28\xc0\x98\x9a\x42\xe9\xee\x5d\x70\ \x8a\x82\xd0\xa1\x43\xbc\xc4\x71\xab\xb6\x7c\xfe\xf9\x11\x4b\x92\ \x7a\x87\x03\x01\x2d\x18\x0c\xd2\x78\x3c\x9e\x5f\x51\x80\x4d\x9b\ \x36\xd5\xed\x32\xcd\xc6\xce\xf1\xf1\x3f\x36\xbd\xf4\x52\xd8\xff\ \xd4\x53\x34\x77\xe5\x0a\x8c\x78\x1c\x70\x56\x9c\x31\xfb\x6a\x9a\ \x33\x63\xc4\x05\x63\x24\x93\xd0\xc7\xc7\xe1\xdf\xb9\x93\x7a\x57\ \xad\x52\x1e\xb9\x70\xe1\xe9\xc1\x60\xf0\x4f\x79\x55\xe5\xea\xeb\ \xeb\x4b\xe3\xe3\xe3\xfa\x8a\x00\xec\xdd\xbb\x97\x17\x45\x31\xfc\ \x93\x58\xec\xf4\x23\x87\x0f\x6f\xa9\x79\xf2\x49\x9a\xbd\x74\x09\ \x56\xb1\x08\xc2\x98\x2d\xd6\x2d\xde\x81\x71\x81\x38\x57\xab\x58\ \x84\x36\x3a\x0a\xdf\xb6\x6d\x84\x07\x94\xcd\x17\x2f\x6e\x3c\xbb\ \x76\xed\x87\x1e\x8f\x47\x1a\x19\x19\x49\x2f\x39\x11\x97\x03\x20\ \x8a\x62\xb0\xeb\xc6\x8d\x6f\xf9\x1b\x1a\xb6\x85\x0e\x1d\xe2\xb2\ \x97\x2f\xdb\xe1\x62\x18\x80\xae\xdb\xe2\x74\xdd\x6e\x86\x31\x7b\ \x5f\x06\x20\xce\x98\x61\x80\x58\x16\x58\xa9\x84\xec\xc5\x8b\xa8\ \x3b\x78\x90\xaf\x0d\x87\xbf\x7d\xfc\xce\x9d\x56\x51\x14\x85\xf6\ \xf6\x76\xdf\x4a\x00\x10\x49\x92\x94\xb6\x64\xf2\x8d\x35\x9d\x9d\ \x6a\x61\x68\x08\x56\x26\x33\x23\x68\x06\xc2\xe9\xbb\xef\xdd\x40\ \x0e\x88\xae\x83\x18\x06\xac\x74\x1a\x85\xc1\x41\x34\x3e\xf3\x8c\ \xda\x3a\x39\xf9\x86\xdf\xef\x87\x20\x08\x6a\xc5\x01\x3a\x3a\x3a\ \x3c\x1d\xfd\xfd\xad\x4a\x38\xdc\x28\x35\x35\x41\x1b\x1e\x9e\x15\ \xe7\x16\xee\x00\xcd\x87\x71\x43\x95\x41\x58\x79\x4c\xbb\x7d\x1b\ \x52\x24\x02\x6f\x6d\xed\xa3\xdf\x8b\xc5\x36\xa8\xaa\xea\xe9\xee\ \xee\x5e\x92\x36\x7e\xa9\x00\x3c\xcf\x2b\x91\xc9\xc9\xf6\xd0\x81\ \x03\x5e\x7d\x6c\xcc\x16\x02\x80\x11\x02\x42\x66\xab\x31\x21\x04\ \x8c\x31\x80\x10\x3b\x2f\x18\xb3\xcf\x0c\xee\xe4\x66\x0c\xac\x50\ \x80\x99\x4c\xc2\x4a\xa5\x60\xa5\xd3\xc8\x13\x82\xe0\xc6\x8d\xf2\ \xfa\x2b\x57\xbe\xdb\x27\x08\x37\x26\x26\x26\xbc\x00\xb2\x15\x03\ \x90\x65\x59\x54\x4a\xa5\x7d\x72\x73\x33\xd5\x1c\x00\x47\x38\x21\ \x73\xfa\x04\xb0\xc5\x3a\xc6\x18\xa0\xeb\xb0\xa6\xa7\x6d\xc1\xa9\ \x14\xac\x52\x09\x8c\x31\x1b\x96\x31\xe8\x23\x23\xf0\x6e\xd9\xc2\ \xa9\x9f\x7d\xf6\x1d\xbf\x24\x9d\xca\x97\x4a\x62\x45\x3d\x50\x53\ \x53\xc3\x51\xd3\x0c\x71\x81\x00\xcc\xa1\x21\x30\x5d\x07\x21\xc4\ \xde\x6d\xdd\x10\xe5\xd5\x07\x63\x60\xb9\x1c\x58\x79\x85\xad\x7c\ \x1e\xb0\x2c\xdb\x1b\x8c\xcd\xf1\x1a\x03\x60\x64\x32\xe0\x03\x01\ \xc0\xb2\x56\x79\x24\x09\xaa\xaa\x72\x15\x05\x90\x65\x99\x32\xc6\ \x14\x92\xcb\xc1\xb8\x7e\x1d\x54\x55\x01\x9e\x07\x78\x1e\x84\x31\ \x58\x4e\x8c\x17\x8b\x60\xf9\x3c\x50\x2c\xda\xe1\xe2\x08\x06\x00\ \xe7\x68\xb1\xc0\x11\x80\xe5\x72\xe0\x14\x05\xd4\xb2\x7c\x52\x20\ \x00\x9e\xe7\x2b\x0b\xe0\xf7\xfb\x4d\x00\x60\x85\x02\xac\x78\x1c\ \xe6\xbd\x7b\x20\x94\xda\x5e\x98\xd7\x9c\x5c\x98\x13\x62\xe5\x50\ \x71\xc6\xe6\x9c\xa5\x19\x03\x38\xce\x4e\x6e\x80\x29\x8a\xc2\x18\ \x63\x66\x45\x01\x44\x51\x34\x41\x69\xda\xca\xe7\xeb\xa8\xd7\x0b\ \x2b\x9d\x06\x29\xaf\xe4\x03\x01\xee\x2b\xc4\x64\x36\x37\xdc\x39\ \x42\x08\x38\x45\x81\x99\xcf\x83\x51\x3a\xed\xf1\x78\x20\x49\x92\ \x51\xd1\x32\x2a\x08\x82\x06\x9e\xff\xca\x48\x24\xc0\xd5\xd6\xde\ \x97\xbc\xc4\x25\x66\xc6\x33\x94\xce\xe9\xcf\x99\xeb\x3c\x5b\x1e\ \xe3\x6a\x6b\xa1\xc7\xe3\x00\xcf\x8f\xaa\xaa\xca\x54\x55\xd5\x2a\ \x0a\xa0\x28\x4a\x4e\xaf\xa9\xf9\x20\x3b\x34\x64\x48\x91\x88\x2d\ \xca\xe5\x01\x38\x1e\x78\x80\x57\xbe\x6e\xae\x18\x89\x20\x33\x34\ \xa4\xeb\xb5\xb5\x3d\x3c\xcf\xb3\x5b\xb7\x6e\x15\x2a\x0a\x70\xec\ \xd8\xb1\x62\xe6\xf1\xc7\x7b\xe3\x5f\x7c\x51\x14\x57\xaf\x06\x11\ \x84\x59\x2f\xcc\x89\x12\x97\x40\x77\x58\xb9\x73\xc2\x1d\x52\x00\ \x88\x20\x40\x0c\x87\x91\x8c\xc5\xb4\x5c\x34\xfa\xb7\x60\x30\x58\ \xe8\xee\xee\xb6\x2a\x7d\x94\x00\x3d\x71\xe2\x9a\x65\x9a\x97\xb2\ \x03\x03\x4c\x6e\x6d\x5d\x38\xc6\x5d\x21\xe2\x16\x4f\xdc\xa1\x33\ \xbf\xc2\xb5\xb5\x21\x13\x8b\x31\x8b\x90\x0b\xfa\x73\xcf\x8d\xf9\ \xfd\xfe\xdc\x8a\x1c\xe6\x38\x8e\x4b\x15\xf6\xef\x7f\x7d\xfc\x93\ \x4f\xb2\xe2\xfa\xf5\xe0\xeb\xeb\xe7\xd5\x42\xbb\x44\x32\x60\x66\ \x93\x9a\x69\x4e\xe5\x99\xb7\xc1\xf1\x0d\x0d\x10\xd7\xad\xc3\x58\ \x5f\x5f\xb6\x74\xf8\xf0\x4f\x45\x51\xd4\xa3\xd1\x68\x76\x45\x00\ \xa2\xd1\xa8\xe1\x3d\x79\xf2\xaa\xae\x28\x7f\x18\xeb\xe9\x29\xaa\ \x7b\xf7\x82\xf3\xf9\xee\x83\x70\x9a\x7b\xa7\x9d\x69\xee\x05\x09\ \x04\xa0\xee\xde\x8d\xaf\x7a\x7a\x8a\xa6\xcf\xf7\x3b\xe9\xc4\x89\ \xbb\xb2\x2c\x27\x56\xfc\x93\xf2\xf2\x99\x33\x8d\xec\xc8\x91\x3f\ \x87\x36\x6f\xde\x16\x8a\x46\xf9\xfc\xf9\xf3\x30\xc6\xc6\x16\x2c\ \xa7\xb3\x5c\x73\x3d\xc2\x87\xc3\xf0\xee\xda\x85\xc9\x8f\x3e\x32\ \xe2\xd7\xae\xfd\xd3\x7b\xfe\xfc\x0f\x75\x8e\x4b\x6d\xdd\xba\x35\ \xb9\xd2\x9f\x94\xf8\xcd\x3b\xef\xe4\x52\xb2\xfc\x8f\xf4\x7b\xef\ \xed\xd4\x46\x47\xeb\x82\xfb\xf6\xf1\x5c\x4d\x0d\xac\x44\x02\x4c\ \x5f\xf8\x63\xca\x11\x4e\xbd\x5e\xc8\x4f\x3c\x01\xa9\xa5\x05\xa3\ \xef\xbf\x5f\x4a\x7d\xf9\xe5\x65\xf5\xad\xb7\xba\xfc\xad\xad\xd3\ \x1b\x36\x6c\x48\x2c\x57\x0b\x79\xd8\xf9\x1d\x1d\x1d\xf4\xd5\x17\ \x5f\x6c\x60\xcf\x3e\xfb\x4b\x3e\x9f\xff\xc1\xea\x3d\x7b\x24\xb5\ \xad\x8d\x18\x53\x53\x30\xee\xde\x85\x95\x4e\x83\x15\x8b\xf6\x43\ \x1e\x0f\xa8\xdf\x0f\x7e\xed\x5a\xf0\x75\x75\xc8\xf4\xf7\xb3\x7b\ \x1f\x7f\xac\x59\x3e\xdf\xef\xd5\xde\xde\x9f\x4d\x6a\x5a\x72\xc7\ \x8e\x1d\xee\x95\x67\x95\x06\x20\x0f\xba\x9e\x3d\x7b\x36\xe0\x7b\ \xf3\xcd\xed\xc2\xb9\x73\xaf\x53\xd3\xdc\x1a\x68\x69\xa1\xfe\xa6\ \x26\x41\x08\x06\x41\x65\xd9\xfe\x8b\x55\x28\x40\x4f\x24\x90\x1d\ \x1a\xd2\x92\x03\x03\xcc\xe2\xb8\x7f\xd1\x03\x07\x4e\xb2\xd7\x5e\ \x1b\x8c\xc5\x62\x89\xce\xce\xce\xdc\x3c\xe1\x6c\xa9\x20\xe4\x21\ \xc5\xcf\x19\x3b\x7e\xfc\xb8\xd0\xd9\xd9\x19\xf0\xbc\xfb\x6e\x33\ \xce\x9c\x79\x9a\x9f\x9a\xda\xcf\x74\x7d\x2d\x33\x8c\x5a\x00\x8c\ \xf2\x7c\x92\x09\xc2\x28\xea\xeb\x3f\x34\xda\xdb\xff\x4e\x9f\x7f\ \x7e\x74\x72\x72\x32\x73\xea\xd4\xa9\x74\x6f\x6f\xaf\x35\x4f\xf0\ \xb2\x20\x96\x0b\x40\x16\xf3\xc8\xf6\xed\xdb\xb9\xae\xae\x2e\xb9\ \xa1\xa1\x41\xf6\x78\x3c\x1c\xa5\x54\xa0\x94\x12\x4a\xa9\xa9\x69\ \x9a\x69\x9a\xa6\x3e\x30\x30\x50\x38\x7d\xfa\x74\xe1\xe6\xcd\x9b\ \x8b\x89\x65\x95\x04\x58\x2a\xc4\x62\xfd\xf9\x42\x16\xea\x2f\x5b\ \xfc\x72\x93\x98\x2c\x12\x56\x0b\xbd\x6b\x31\x80\xaf\x83\x58\x72\ \x22\xff\x27\xff\x46\x49\x05\xde\xc3\x1e\xa6\xf2\x54\xad\x6a\x55\ \xab\x5a\xd5\x2a\x66\xff\x06\xd3\xb4\xcc\x23\x75\x63\x80\x9e\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x10\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x05\xc7\x49\x44\x41\x54\x58\x85\xed\x96\x5b\x8c\x1d\x75\ \x1d\xc7\x3f\x33\x73\x66\xce\x65\xf7\xec\xd6\xad\x66\x8b\xe9\x65\ \x5b\x69\x11\x2b\x48\x2c\x94\xb6\x98\x6e\x6b\x45\x31\x04\x7d\xb0\ \xd1\xc4\x07\x13\x7d\xd1\x04\x83\x09\x49\x1f\x8a\x12\x57\x4c\x7c\ \xf1\x49\xf1\x12\x7d\x10\x2a\x08\x08\x82\xf0\x20\x15\x8b\x16\x08\ \x6c\xc1\x4b\x8b\xa6\xcd\x6a\xa5\x97\xbd\x75\xaf\x67\x97\xb3\xe7\ \x3a\xf3\xbf\xfc\x7c\x38\x67\xb6\x67\xcf\xce\x6e\xf7\x4d\x1f\xfc\ \x25\xdf\xcc\xcc\x7f\x7e\xf3\xfb\x7e\x7f\x97\xff\xcc\xc0\xff\xed\ \xbf\x6c\xce\x6a\x37\xbf\x03\x9f\x0e\x1c\xee\xc3\x75\x77\x09\xe4\ \x5c\x08\xc5\xda\x73\x5a\x78\x2c\x03\x4f\x1c\x81\x4a\xec\xfb\x10\ \xec\x4d\xb9\x7c\xc3\xc1\xb9\x43\xa0\x1b\xb0\xae\xc8\x65\xe3\xf0\ \x8c\x63\xf9\xf9\x03\x30\xb3\x66\x01\x03\xd0\x93\x76\xf8\x65\x90\ \x09\x0e\xde\xdc\x7f\x53\x6e\xf3\x2d\x3b\xc8\x74\x66\xd0\xa1\x66\ \x7c\x68\x98\x7f\x0e\x9e\xab\xcd\x4c\xce\x85\xc6\xca\x57\x03\x78\ \x49\x1c\x1e\xf3\x82\xd4\xa1\x0f\xef\xfe\x60\x76\xcb\xee\x9d\x4e\ \x7e\x7d\x17\x56\x1b\xa6\xfe\x3d\xc2\xf9\xc1\xb3\xd1\xc8\xa5\xa9\ \x48\xac\x7c\xfd\x5b\x70\xec\x9a\x02\x7e\x08\xe9\xb2\xeb\x9c\xde\ \x76\xc3\x75\x3b\x76\x7f\xae\x3f\xe5\x22\xd8\x28\x42\xc4\x80\x08\ \x8e\xe7\xe3\x06\x01\xd3\xa3\xb3\xbc\xfa\xd4\xab\xb5\x5a\x3d\xca\ \x7e\xe0\xc6\xcd\x6a\xcf\xe1\x03\xbe\x63\xea\xd8\x7a\x0d\x31\x11\ \x8e\x9b\xc2\x0d\x32\x78\x1d\x5d\x14\xc6\x66\x78\xed\x57\x27\xaa\ \xb5\x4a\xf8\xb3\xa3\x70\xff\xaa\x02\xbe\xe7\xf2\x78\xdf\xd6\xde\ \xc3\x7b\x3e\xdf\x9f\x96\xb0\x86\xd5\xaa\x71\x43\x2c\x20\x20\x34\ \x84\xf8\x69\x24\xe8\x60\x74\x68\x94\xbe\x9b\x37\x63\xe6\x0b\x88\ \xd1\x20\xd2\x00\x82\x88\x80\xe3\x90\xea\xea\xc1\x06\x9d\xbc\xf8\ \xe3\x67\xab\xd5\x72\xfd\xc8\x51\xcb\x4f\x12\x05\x0c\xc0\xf5\x59\ \xdf\x7b\xfb\xf0\x7d\xf7\x74\xd8\xa8\x8a\x68\x05\x56\x9a\x02\xda\ \x02\x03\x8e\xeb\xe1\x75\x76\xa3\xdf\x9d\x07\x31\x57\xfd\xa0\xe1\ \xd3\xf4\xc7\x0a\xa9\xee\xf5\xe8\x20\xcf\xf3\x3f\x7a\xb6\x28\xca\ \x6e\x3d\x0a\xf3\x00\xa9\x56\x01\xbe\xcb\x91\x1b\x6e\xda\x98\x91\ \xa8\x8e\xad\x56\xc0\xd2\x08\xb0\x42\x60\xb1\x82\xad\x56\x17\xcf\ \x5b\xfd\x96\x1c\x45\x88\xa6\xaf\xe0\x75\xbf\x9f\xbe\x0d\x3d\xd9\ \x8b\xe3\xb3\x0f\x60\x39\xb2\x4c\x80\x83\x73\xcf\xa6\x1b\x37\x79\ \xa6\x52\x42\xa2\x68\xb1\xe4\x57\x49\x97\x07\x46\x40\x9c\xab\xad\ \x41\x04\x5b\x0e\xd1\xe5\x3a\xa6\x16\x61\xeb\x0a\x09\x35\xb6\xae\ \xf0\xf2\x33\xf4\x5d\xbf\x2d\xb8\x34\x36\xfb\x45\x48\x10\x60\x44\ \xde\xd7\xd9\x91\x45\x4a\x73\x88\xd6\x4b\x03\x2f\x69\x03\x8b\x6d\ \x88\xd7\xc4\x58\xa2\xc9\x22\x6a\xaa\x84\x55\x86\x24\x33\x95\x32\ \xf9\x0d\xbd\x68\xa1\x37\x5e\x6b\xaf\x80\x88\xb5\x98\x28\x82\x78\ \xa0\xda\xb2\x5e\x24\x6e\x69\x8d\x5e\x08\xa9\x5d\x2a\x80\xb6\x89\ \xc4\x8b\xf1\x3d\x0f\xa5\x0d\xae\x43\x35\x7e\x7c\x89\x00\xd7\xa5\ \x54\xab\xd4\x7a\x02\x6b\x10\x15\x35\x16\xad\x34\x7c\x17\x45\x2c\ \xad\x44\x38\x53\x41\x4d\x95\x16\xf5\xac\x66\x5e\x67\x27\xa5\xc2\ \x1c\x0e\x8c\x2e\x72\x2e\x71\x48\xb9\x67\xe7\xc6\x0b\x38\xa4\x90\ \x50\x23\xa1\xc2\x46\x1a\x89\x14\x12\x35\xae\x25\x52\x88\x52\x58\ \xa5\x08\x47\xe6\x51\x93\x6b\x23\x07\x48\x6f\xea\xe3\xf2\xbf\x2e\ \x84\x46\x78\x34\x51\x40\xa4\x79\x74\xe4\xe2\x54\xcd\xcd\x75\x62\ \xb5\xc2\x2a\x8d\x68\x85\x28\xdd\x80\x36\x88\x32\x98\x72\x44\xed\ \xe2\xbb\xa8\x62\xb8\x36\x66\x20\xd5\xb3\x1e\x95\x5f\xc7\xc8\xc4\ \xac\x32\xf0\x48\xa2\x00\x63\xcc\x93\x93\x13\xc5\x4a\xb1\x18\xe2\ \x66\xf3\x88\x32\x48\xd4\x20\x15\xa5\x31\xf5\x88\x68\xaa\x44\x7d\ \x6c\x01\x89\x92\x07\x2d\xc9\xdc\x20\x4d\xfe\xd6\x7d\xbc\xf1\xd2\ \xc9\xaa\x20\xdf\x1e\x80\xd9\x44\x01\x03\x50\x57\x46\xee\x7d\xfd\ \xc4\xdf\x2b\x74\x6f\x00\xd7\xc7\xd4\x14\xba\x58\x27\x9c\xaa\x12\ \x8e\x95\xd1\x25\xb5\xe6\x92\x03\x38\xbe\x4f\xd7\x1d\xfd\xfc\xf9\ \xb5\x53\x61\x69\xa1\x72\x6a\x87\xe5\x07\xad\xf7\xbd\xf6\x07\x4e\ \xc2\xb9\x7e\xb1\x9b\xa7\x87\xa7\x3f\xb4\x65\xfb\x4e\x5f\x5d\x99\ \x45\x2f\xd4\x90\x6b\x4c\x78\x32\x79\x40\xf7\xfe\x43\xbc\x7d\xfa\ \xac\x1a\xbe\x30\x3a\xac\x84\x43\xf7\x42\x7d\x55\x01\x00\x5f\x13\ \x8e\x5f\x89\xf4\xed\xd3\xd3\xb3\x1b\xb7\xdd\xb6\xcb\x97\x52\x09\ \x1b\xd6\x93\x5c\x57\x34\x37\x9d\x61\xdd\xc1\x3b\xf9\xeb\xe0\xdf\ \xd4\xf0\x3b\xc3\xe7\x5d\x91\x7d\x0f\x42\x71\x99\xc8\x95\x02\x3c\ \x0d\xde\x3b\x0e\x4f\x75\xe4\x32\x77\xf7\x7f\x72\x7f\xd6\x5c\x3a\ \x4f\x34\x39\xb1\x36\xf2\x6c\x8e\xee\x03\x77\xf2\xd6\xc9\xc1\x70\ \x6c\x78\x6c\x48\x09\xfd\x03\xb0\x90\xe4\x9b\x58\x01\x80\x67\x40\ \x5e\x86\xdf\xfc\x51\xe9\xf7\x5c\xbe\x30\x7c\x4b\xdf\x6d\x1f\xf5\ \xd3\xd9\x2c\x7a\xae\xb0\x2a\xb9\x97\xef\x62\xdd\xc1\x4f\x31\xf8\ \x87\x57\xc2\xc9\xd1\x89\x33\xbe\x70\xe0\x9b\x50\x5e\xc9\x7f\xd5\ \x3f\xa2\xd8\x1e\x82\xaf\xa4\x5c\xf7\xe1\x7d\x07\x6e\xcf\xbd\xb7\ \x23\x4d\xf9\xcc\x5f\x10\xad\x97\xf9\xa5\x7a\xd6\x93\xff\xd8\xc7\ \x79\xe5\xb7\x2f\xd6\x0b\xb3\x73\xa7\xb2\xc2\xdd\xf7\x43\x6d\x55\ \xc1\xd7\xe0\x76\x01\xff\x24\x0c\xed\x14\x79\xb3\x70\x79\xfc\x33\ \xa9\x4c\xc6\xdf\xb8\x77\xaf\xa3\xa6\x26\x9b\x1f\xac\x86\x05\x1b\ \xae\x23\xbb\x67\x3f\x2f\x3f\xfd\x7c\xad\x30\xbf\x70\xe2\x98\xf0\ \xa5\x27\xc1\x34\x63\x34\xbf\xcb\x6b\x17\x90\x02\x32\x40\x0e\xe8\ \x00\x3a\xde\x82\x79\x81\xe3\xb9\xe9\xc2\xc1\x85\xd9\x42\x6e\xfb\ \x5d\x77\x79\xa6\x38\x8f\x29\x97\x48\x6f\xd9\x4a\xf0\x91\x5b\xf9\ \xfd\x13\xcf\xd5\x27\xaa\xb5\xe7\xbe\x2f\x3c\x38\xd3\x88\x9d\x06\ \xfc\x26\x62\xae\x25\x2f\x90\xa4\x16\xa4\x5b\x10\xb4\x1c\x03\x20\ \xe8\x85\xae\x2f\x3b\x7c\xb7\x37\x97\xdd\xf5\x89\x2f\x7c\x36\x1d\ \x38\x50\x0e\x15\x27\x7e\xfd\x42\x38\x6c\xf4\xe3\x3f\xb5\x3c\x02\ \x28\x20\x6a\x43\xd8\x44\x44\x63\x2b\xda\xa4\x0a\xf8\x6d\x02\x62\ \x64\x80\x2c\x90\xa9\x80\x7f\x0a\xde\xdc\x68\x74\x7a\xfa\x1f\x43\ \xdb\xd3\xb9\xac\xf7\xfa\xf1\x3f\x45\x67\xb4\xf9\xc5\x31\xe1\x77\ \xcd\xea\xb9\x4d\x38\x6d\x49\xb6\xb6\x42\x27\x09\x48\xb5\xc0\x4f\ \x38\xf7\x01\x5f\x20\x75\x5a\x38\x9f\xb6\x32\xe1\x8e\x8c\xef\x1d\ \x14\x79\xf8\x05\x78\xa3\x99\x95\x6d\x96\xb9\x1d\xba\xed\x5c\x27\ \xb5\xc0\x4d\xc8\x7e\x59\x1b\x5a\x04\x79\x79\x48\x97\x1a\xa5\xb5\ \x2d\x81\x57\x2a\x7f\x8c\x6a\x5c\x89\x95\xb6\xe1\x6a\xa4\xf1\x40\ \x79\x6d\x25\x6e\xcd\x5e\xd3\x98\x83\x18\xb1\x88\x5a\xf3\x7a\xd1\ \xae\xf5\x1e\xf0\x9a\x84\x4b\xb2\x6e\x22\xee\x71\x6c\xc2\xf2\x16\ \xc4\x19\xab\xe6\xfa\x32\x5b\xd3\x8b\xa8\xcd\xbf\x75\xb8\x62\xc4\ \x83\x15\x0b\x58\x71\xdf\xff\xcf\xd9\x7f\x00\xab\x13\x35\x3d\x4f\ \x21\x19\x04\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x11\x3a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2c\x2f\xf2\x3e\xe8\x23\x00\x00\x10\xba\x49\x44\x41\x54\x68\ \xde\xc5\x9a\x7b\x94\x5d\x55\x7d\xc7\x3f\xfb\x3c\xee\x3d\xe7\xbe\ \xe6\xce\xcc\x9d\x57\x66\x32\xaf\x90\x17\x21\x81\x00\x25\x05\x12\ \xd0\x56\xaa\x55\xac\xd5\x36\xcb\xf6\x0f\x15\xb5\x68\x7c\xf0\x87\ \xb6\x4a\xad\x2f\xd6\x6a\xbb\xda\x55\x57\x15\x94\x0a\x2a\x8a\x14\ \x6a\x83\xcb\x47\x2d\x6a\xd5\xa6\x14\x6a\x08\x12\xac\x10\x48\x02\ \x4c\xde\x93\x99\x49\xe6\x71\xdf\xef\x73\xce\xde\xbb\x7f\xdc\x3b\ \xc3\x9d\x57\x1a\x95\xae\xee\xb5\x7e\xeb\xb7\xcf\xbd\xe7\xf1\xfd\ \xfe\x5e\x7b\xef\xb3\x8f\xe0\x15\x6e\xbb\x77\xdf\x11\x72\x8c\xdc\ \x3a\x4b\x18\xed\x42\x19\x11\x00\x0c\x99\xd3\x88\xe9\xfb\xf7\x7e\ \xf6\xec\x2b\xfd\x3c\xf1\xeb\xde\xe0\xfd\xbb\xdf\x1f\xab\x9a\xce\ \x1b\x42\xa1\xf0\x9b\xfd\x20\xd8\x85\xa2\x3b\xd1\x9e\xa8\x85\xc3\ \x11\xcc\xb0\x25\xb4\x92\xca\xab\xf9\xa2\x5c\x2c\x1a\xb5\x6a\xcd\ \x12\x86\x38\xa6\x15\x8f\x68\xcd\xf7\x1f\xf8\xe6\x67\x0e\x00\x7a\ \xfe\x5e\x5a\x23\x80\x24\x79\x27\x89\xa9\x1c\x40\xa0\x84\x8f\x59\ \x2f\x12\x65\x4e\x08\x82\x57\x8c\xc0\x2d\xbb\x3f\x72\x85\x19\x32\ \x3e\xa9\xb5\xfe\xdd\x75\x1b\xd6\x19\x7d\x6b\xfb\xc3\x9d\xa9\x14\ \x6e\xc4\xa1\x56\xf7\xf0\x3c\x1f\xdf\xf7\x40\x35\x9e\x62\x5a\x16\ \x4a\x4a\xf2\xb9\x02\xe9\xd9\x39\x75\x6e\xe2\x6c\xa5\x94\x2b\xd6\ \x34\xdc\x63\x4a\x79\xe7\x7d\x5f\xfd\x9c\xc0\xb0\x07\xc0\xe8\x46\ \xdb\x6d\x08\xc3\x6d\xb0\x52\x1e\x86\x2a\x12\xf8\x73\x84\xfc\xf3\ \xc2\x65\xfc\xd7\x22\xf0\xee\xdd\x1f\xba\x44\x85\x42\x5f\x89\xba\ \xe1\x1d\x57\x5d\xb7\xc3\x19\x18\x1a\x10\x9e\xe7\x91\x9e\xcb\x91\ \xcb\x15\x28\x15\xcb\x48\x19\xa0\x95\x46\x29\x85\xd6\xaa\xa1\x95\ \x42\x18\x06\x91\x88\x43\x34\x16\x23\x1e\x4f\x50\xab\x55\x99\x38\ \x3d\xee\xd5\xcb\x47\xe4\xa5\x9b\x27\xbe\xfd\xd6\xdd\x07\x1f\x8b\ \x44\xbc\x0e\xb0\xda\x81\x48\x03\x9f\xae\x23\x74\x1e\xa9\x66\x30\ \xfd\x09\x64\x70\x8a\xb8\x37\x26\x04\xea\x97\x22\x70\xc7\x1d\x77\ \x18\xe3\x63\x95\x4f\x5a\xa6\x79\xfb\x75\xaf\xde\xe9\x8c\xac\x1f\ \x15\xe9\x74\x96\xc9\xc9\x69\xaa\x95\xda\x22\xa0\x86\xa1\xb1\x4c\ \xdd\x34\xa0\x26\x90\x92\x5a\xd5\x27\x08\x14\x4a\xc9\xc6\x79\x52\ \x13\x8d\x47\x59\x3b\x64\xd1\xd1\x76\x0e\x59\x7b\x3e\x88\x3a\xe7\ \xea\x57\xff\xc6\xc4\x13\x9d\x1d\x35\x8d\x10\x51\xc0\x40\xeb\x2a\ \x42\x65\xd1\xfe\x14\xc8\xd3\x28\xef\x38\xc8\x97\x44\xa2\x3e\x06\ \x60\x5d\xa4\xd5\x3b\xce\x8e\x95\xff\x75\x70\x68\xf0\xca\x1b\x5e\ \xfb\x2a\xb7\x5a\xa9\x73\xf8\xf0\x31\xea\xb5\x3a\x4a\x6b\x2c\x0b\ \xe2\x31\x03\xc7\x35\x08\xd9\x16\xd1\x68\x14\xd7\x75\x09\x85\x2c\ \x40\x50\xaf\x7b\xd4\x6a\x35\x82\x20\xa0\x5a\x0d\x98\x9a\xc8\x32\ \x3b\x53\xa0\x52\xce\x52\x9c\x9b\x24\x19\x29\x31\x3c\x6a\x5a\xf1\ \x88\x6d\x55\xab\xb1\xd7\xd4\xea\xe1\xa2\xe3\x44\xca\x60\x80\xa8\ \x68\x74\xb1\x04\x46\x1b\xc2\xb3\x11\x4a\x22\x54\x55\x17\xc9\x8a\ \x38\xb3\xff\x2b\x81\xb7\xef\xfe\x50\xbf\xb6\x42\xfb\xaf\xbe\xfe\ \x9a\x81\xcb\x2e\xbf\xd4\x3a\x73\x7a\x8a\x4c\xb6\x80\xd6\x9a\x50\ \x48\xd1\x96\xd0\xc4\xe3\x51\x36\x6c\x58\x47\x4f\x4f\x37\xb6\x6d\ \x37\x13\x52\x2f\xc8\xfc\xb1\x94\x92\x72\xb9\xcc\xf4\xf4\x1c\xb9\ \x5c\x9e\x7c\x76\x8c\x6a\xb1\x8e\x13\x4e\x63\xe8\x2c\xc9\x64\x05\ \xd7\xed\x34\x02\xd5\x9d\xa8\x07\x6d\xe1\xb0\x63\x94\x51\x05\x85\ \x9e\x4c\xa0\x4e\xaf\x47\xeb\x00\xa1\x4a\x40\x06\xa1\xa6\xc1\xbb\ \x30\x81\x77\xee\xbe\xad\x4b\x58\xd6\xc1\x5d\x37\xdd\xd0\x3b\x3c\ \x3a\x64\x1c\x3d\x7a\x12\xcf\x0f\x30\x4d\x48\xc4\x7d\x52\x9d\x6d\ \x6c\xdf\xbe\x95\x78\x3c\x0e\x80\x57\x3e\x4b\x76\xea\x51\x82\x7a\ \x9a\x9c\x37\x40\xa6\x9a\xa2\xad\x2d\xc5\xfa\x75\x9b\x11\x42\x60\ \x18\x06\xb1\x58\x8c\x68\x34\x8a\x52\x8a\x52\xa1\x44\xbd\x7a\x1e\ \xaf\x3a\x43\x2c\x52\x23\x64\x9b\x08\xb3\x1f\xd3\xbe\x44\x68\xdd\ \xe5\xf8\x81\x69\xda\x56\xa6\x8c\x76\x05\x04\xa0\xc6\xd7\x80\x9c\ \x41\x07\x1d\x68\x23\xa9\x4f\xe1\xac\x4a\xe0\x3d\x6f\xbc\x23\x22\ \xed\xca\x81\x6b\x5f\xbd\xab\x67\x60\x68\xc0\x38\x7c\xe4\x04\x4a\ \x29\x42\x21\x45\x32\x11\xb0\x63\xc7\x55\x74\x77\x77\x23\x04\xe4\ \x26\x1e\x61\xf6\xd8\x17\x50\xca\x23\xde\xb5\x0b\xd3\x59\xcb\x4c\ \x31\x85\x46\x30\x97\x4e\xd3\xdb\x9d\x27\x91\x48\x22\xc4\xcb\x29\ \x27\x84\xa6\x3d\xe9\x60\x24\xe3\xf8\xf5\x18\x21\xd3\x06\x23\x86\ \xa0\x0b\x21\xd6\x62\x86\x36\x00\xb6\x1d\xa8\xf1\xa8\x65\xd4\x4a\ \x88\x39\x09\x13\x49\x84\x11\x47\x98\x71\xb4\x19\xa1\x1d\x77\x55\ \x02\x41\xa2\x72\xff\xa5\x5b\xb7\x0e\x8e\xac\x1b\x36\x8f\x1c\x3d\ \x86\x94\x9a\x48\x44\xd2\x95\x0a\x71\xe3\x0d\x37\xe0\x38\x0e\xf5\ \xe2\x0b\x9c\x3e\xb8\x07\x94\x4f\x72\xe0\x4d\x84\xa2\x43\xa0\x25\ \x5a\x07\x84\xec\x80\xba\x6f\x23\x84\xc0\x75\xa3\x4d\xd0\x62\x21\ \x9c\x84\xd0\x08\xa1\x30\x84\x26\x1a\x0d\x61\x0a\x03\x44\x14\x29\ \x1d\x84\x88\x21\x8c\x3e\x0c\x33\x89\x5f\xcb\xd9\x4a\x47\x42\x86\ \x08\xfb\x08\xd3\x44\x63\x23\xb4\x89\xd0\x26\x26\xd6\x8a\x04\xde\ \xf1\xc7\x1f\xf9\x83\xb6\x8e\xe4\xeb\xaf\xb8\xe6\xf2\xd0\x0b\x2f\ \x9c\xc0\xf3\x02\x22\xae\xa2\xaf\x27\xca\x0d\x37\x5c\x8f\x6d\xdb\ \x64\x4e\x3f\xc4\xe4\xa1\xbf\x20\x35\xfa\x0e\xdc\xe4\x16\xb4\x0a\ \xd0\xb2\x8a\xd6\x01\x4a\x05\x0c\x27\x4f\x51\xa8\x47\xe9\xea\xdb\ \x81\xe3\x38\x28\xa5\x5a\xc0\x0b\xc0\x44\x6b\x13\x84\x05\x58\x08\ \x11\xc6\x30\x03\x84\x19\xa0\x54\x01\x25\xcf\xa2\xd5\x2c\x42\xe4\ \xa9\xd5\x4a\x91\x88\x53\x2b\xa3\x65\x80\xc0\x03\x11\xa0\x45\x40\ \x80\x6f\xad\x34\xb2\xd6\x84\xf8\xe2\xce\x57\xed\x8a\x9d\x3d\x33\ \x49\xa5\x52\xc5\x0e\x69\x7a\xba\x5d\x76\xed\xba\x1e\xcb\xb2\x98\ \x7e\xe1\xef\xc8\x9c\xfd\x0e\x6b\xb6\xdd\x81\x69\x3a\x68\x55\x47\ \x4b\x0f\xa5\x3c\xb4\x0e\xd0\xd2\x47\x68\x45\xc2\xca\x12\x71\xaf\ \x5b\xb0\xfe\x3c\xf8\x46\x62\x1b\x08\xc3\x45\x13\x59\x10\x74\x1e\ \xc3\x98\x03\xc3\x45\x7a\x95\x66\x91\xcc\xa1\xf5\x79\x51\xad\x64\ \x62\xae\x23\x27\xd1\xba\x80\x96\x45\xb4\xaa\x90\xa4\xba\x8c\x40\ \xcd\x8e\x7d\x62\xe3\x96\xcd\x49\x2b\x64\x33\x3d\x9d\xc6\xb4\x04\ \xdd\x29\x93\x5d\xbb\xae\xc5\xb2\x4c\xc6\x0f\xff\x03\x63\xcf\xfd\ \x3b\x57\xed\xbc\x0d\x01\x28\x55\x03\xd5\x04\x2f\x3d\xb4\xf6\x51\ \xd2\x47\x6b\x89\xd6\xaa\x51\x38\x96\x80\x9f\xd7\x4a\x27\x10\x24\ \x50\x3a\x89\x54\xed\x08\xca\x18\x9c\x45\x88\x3a\xe8\xf3\x04\x52\ \xa3\x55\x19\x43\xcc\x51\x2e\x67\x1c\xa5\xcc\x42\x34\x52\x9d\x41\ \xc8\x0c\xc8\xac\x10\xd4\x8d\x56\xf0\xef\xfa\xbd\x8f\xc6\x41\xbf\ \x77\xd3\xd6\x4d\xa1\xd3\xa7\x26\xd0\x5a\xd1\x9e\x34\xd8\xbe\x7d\ \x6b\x23\x0c\x64\x8d\x97\x0e\x3f\xca\x2d\x1f\x39\xc4\xc3\xdf\x79\ \x02\xad\x6a\x68\x59\x43\xc9\x6a\x23\x7c\x54\x15\xe9\x97\x51\xb2\ \x82\x0a\x2a\xa8\xa0\x4c\x73\xc0\x5c\x94\xc0\xf3\x4d\xe9\x6e\xa4\ \x4e\x21\x55\x37\x52\xf5\x20\x75\x2f\x52\x6a\x84\x3e\x8e\x29\xc6\ \x90\xde\x61\x82\xfa\x51\xca\xa5\x39\x32\x99\xa4\x71\xf4\x85\xee\ \x41\xb4\x3f\x81\x96\x53\xc4\xbc\x73\xcb\x06\x32\x1d\xd1\x7f\xb2\ \x6e\xc3\x25\x6e\x10\x04\x14\x0b\x25\x2c\x5b\xd0\xde\xee\xd0\xdf\ \xbf\x06\x00\xd3\x72\x79\xcd\x5b\xf7\xf2\xf8\x95\x47\xf9\xfd\x37\ \xff\x21\xc7\x8f\x8f\x73\xfb\x6d\xaf\x46\xe0\xa1\x55\x1d\x29\xeb\ \x68\xe5\xa1\xa4\xd7\xf0\x80\x92\x68\xb5\x78\xfe\xb5\xd8\x0b\x16\ \x9a\x01\x94\xae\x82\xf6\x00\x81\x21\x1c\xa4\x2a\x20\x44\x0d\x29\ \x05\xe7\xce\xf9\x54\x2b\x36\xd8\x03\x9c\x3c\x9e\x5f\xd3\x93\xea\ \xcc\x0d\xf6\x4f\x8d\x0b\x41\x06\xc0\x58\x32\xb5\xfb\xc0\xd0\xba\ \x91\xf0\xf4\xf9\x39\xb4\x52\xa4\x3a\x6d\xb6\x6d\xdb\xb2\x30\x18\ \x01\x18\x46\x88\x0d\x9b\xaf\x64\xff\x13\x4f\x72\x64\x6c\x8e\x5b\ \x3f\xf4\x4f\x94\x8a\x05\x64\x30\x6f\xf5\x4a\xb3\x5f\x46\x06\x65\ \xb4\x96\x8b\x1e\xd1\x3a\xb0\x01\x48\xd5\x41\xa0\x86\x08\xd4\x30\ \xbe\x1c\xc5\x0b\x46\x17\xb4\xb0\xb6\x30\x35\xd5\xc9\xe9\xf1\x18\ \xe7\xa6\x92\x64\x8a\xfd\xe6\xc3\xdf\xba\xe6\x0a\x91\xac\x9f\x58\ \xc0\x33\xdf\x79\xdb\xee\x3f\x1b\xb1\xed\x50\x4f\xb2\x3d\x49\x7a\ \x2e\x03\x28\xa2\x51\x93\x54\xaa\x73\xc5\x87\x77\xa6\x7a\xf9\xe1\ \x8f\x0f\xd0\x37\xb0\x8e\xdd\xb7\xee\xe5\xec\x64\x1a\x25\xab\x04\ \xfe\x3c\x89\x32\x2a\x28\xa3\x95\x5c\x74\xed\x4a\x4d\xe9\x1e\x7c\ \xb5\x11\x5f\xae\xc7\x97\x1b\xf0\x82\x8d\x78\xc1\x46\xa4\xde\x84\ \xed\x5c\xce\xf8\x99\x0e\x8e\x1d\x77\xa8\xf9\x9b\xac\xa3\x47\x06\ \x6e\x6e\xbd\x76\x81\x80\x65\xe8\xdf\xee\x5b\xdb\x6f\x15\x8b\x25\ \x82\x20\x20\x1c\x16\xac\x59\xd3\xbb\xcc\x62\xad\x53\x04\xdb\xb6\ \xb9\xef\xfe\xef\xf2\xb6\xb7\xbd\x9d\x3f\x7a\xdf\x0f\x78\xf6\xf0\ \xd4\xcb\xf1\xef\x37\xbc\xa0\x64\x7d\xc5\x7b\x2c\x6d\x5a\xc7\x09\ \xd4\x06\xbc\xe0\x32\x3c\xb9\x09\x2f\xd8\x4c\xdd\xdf\xcc\xc0\xd0\ \x6b\x39\x3d\x9e\xe2\xc5\x23\x0e\xda\x1c\x06\xc1\xd0\x7b\x76\xdf\ \xde\xb6\x80\xfb\x65\x2a\xe2\xa6\x8e\xae\x4e\xa7\x90\x6f\xcc\x73\ \x3a\x3a\x1c\xfa\xfa\x7a\x16\xd5\xee\xf9\x07\xb7\xf6\x01\x3e\xfc\ \xd1\xbf\x62\xe3\xe6\x6d\xdc\x7a\xeb\xfb\xb8\x7d\xcf\x08\xbf\xb3\ \x33\xd1\xac\x48\x01\x32\x28\xad\x0a\x7e\x45\xe3\x10\x45\x4a\xb7\ \x51\xa5\x94\x22\xe4\x84\xf0\xea\x71\x3c\xaf\x4e\xe0\x79\x84\x23\ \xae\x5f\xab\xd4\x77\x00\x3f\x59\xe4\x01\x43\x88\x2d\x91\x68\x84\ \x4a\xb9\x8a\x56\x8a\x48\xc4\x22\x91\x48\x2c\xb3\xfc\x52\x2f\x34\ \xe6\xfc\x9a\xd7\xdf\xbc\x9b\x1f\xff\x64\x1f\x77\x3f\x38\xc5\x3d\ \x0f\x9d\xc2\xf7\x2b\x1c\x19\xcb\xf0\xf8\x4f\x7f\x41\xb1\x58\x5c\ \xf1\xfa\xd5\x48\x2c\xd5\xfd\x6b\x7b\x01\x4d\xb5\x5a\xc6\x75\xa3\ \x8e\x40\x6d\x5c\x16\x42\x4a\xea\xc1\xb0\x13\xa6\x5a\xa9\xa0\x94\ \xc2\x0e\x59\x98\xa6\x09\x40\xb1\x54\xa0\x50\xcc\x2f\x03\x3e\x0f\ \x7e\xbe\x7f\xe9\x96\x6d\xfc\xf4\x89\x5f\xf0\xf4\xd1\x18\x6f\x7a\ \xdf\x19\xfe\xfa\x2b\x06\x5f\xfa\xfa\xe3\x6c\xdf\x7e\x15\x07\x0f\ \x1e\xbc\x28\x12\x75\xaf\x4e\xb1\x54\x58\xf0\x92\x65\x1b\x74\xf7\ \x76\xa2\x35\xd4\xab\x35\xec\x70\xc8\x46\x73\xe9\xb2\x10\xd2\x10\ \x16\xc2\xc0\xf7\x82\xe6\xa2\xc4\x40\x6b\xcd\xcc\xec\x34\xa7\xce\ \x34\x92\x7e\x64\x68\x94\xbe\xde\x7e\x84\x10\x4b\xe6\x35\x2f\xd7\ \xf8\x54\x2a\xc5\x6f\xdd\xf4\x26\xd2\xe9\x34\x9f\xff\xfc\x17\x10\ \x42\xb0\x7f\xff\x7e\x3e\xf0\x81\xdb\x38\x70\x60\xff\xa2\xf0\x5b\ \x4a\xa2\x5a\xab\x72\xfc\xe4\x18\xa0\x69\x4b\x24\xe9\xed\x5e\x83\ \x61\x18\x24\x93\x8d\x48\x08\x02\x1f\xd3\xb2\x00\xd1\xb9\xcc\x03\ \xa0\x43\x4a\x6b\xa4\x0a\xd0\x28\x4c\xd3\x58\xb0\xfe\x7c\xcb\x17\ \x0a\x8b\xbc\xb0\xd4\x1b\xf3\xf2\xd8\x63\x8f\x73\xcb\x2d\xef\x5c\ \x20\xb6\x73\xe7\x4e\xa4\x94\x9c\x3e\x7d\x7a\xc5\x75\xc2\xbc\x54\ \x2a\xe5\x85\x35\x7e\xb9\x52\x5e\x30\x6d\x28\x1c\x02\xad\x51\x52\ \x21\x84\x01\xc8\xe8\x32\x02\x42\xe0\xcb\x40\x36\x5e\x04\x48\x8d\ \x10\x0d\x0f\x74\xa5\xba\xb1\x2d\x1b\xcb\xb2\xe8\xed\xee\x5d\x11\ \xf4\x52\x32\x6b\xd7\xae\xe5\xc4\x89\x85\x52\x4d\xa9\x54\x22\x9f\ \xcf\xd3\xd5\xd5\xb5\x8c\x7c\x6b\x08\x25\xe2\x09\x9c\xb0\x83\x10\ \x82\xce\xf6\x14\x5a\x6b\x0c\xc3\xc0\xaf\xfb\x0d\x4f\x1b\x46\x63\ \x70\x14\xa2\xba\xbc\x0a\x09\xa3\xe6\x7b\x9e\x6d\x08\x50\x4a\x2d\ \xb8\x3a\xe2\x46\xb9\x7c\xeb\x95\xcd\x41\xcc\x58\x78\x70\x6b\xd8\ \x2c\x2d\x8b\xaf\x7b\xdd\x6b\xf9\xe0\x07\x3f\xc8\x89\x13\x27\x18\ \x1d\x1d\xe5\xee\xbb\xef\x66\xcf\x9e\xf7\x12\x89\x44\x56\xf4\xe0\ \xbc\x98\xa6\xc5\xc8\xd0\x25\x8b\x8c\x01\x82\x4c\xa6\x91\x7f\xb6\ \x65\xe1\x79\x3e\x42\x37\x46\xe1\x45\x04\x04\xfa\x5c\xa5\x5c\x89\ \xdb\x76\x08\xad\xca\xc8\x40\xe1\xfb\xfe\xc2\x12\x71\x9e\x50\x2b\ \xf8\xd6\xb2\x3a\xdf\xb2\xd9\x2c\x9f\xfa\xd4\xa7\xa9\x56\xab\x3c\ \xf3\xcc\x33\x1c\x3b\x36\xc6\x9e\x3d\xef\xe5\x2d\x6f\x79\xf3\x05\ \xc1\xaf\x9a\xe0\x0a\xce\x4f\x4d\x37\x96\xb0\x8e\x43\xa9\x58\x0c\ \x10\xbc\xb8\x3c\x89\xb5\x38\x52\x2e\x95\x36\x58\xa1\x10\x4a\x29\ \x72\xd9\x0a\x95\x4a\x95\x44\xc2\x5a\x94\xac\x2b\x25\x6f\xab\x07\ \x3e\xfe\xf1\x4f\x30\x33\x33\xc3\x8e\x1d\x3b\x78\xe0\x81\xfb\x17\ \x79\xe9\x62\xa5\xf5\xfc\x50\x28\xcc\xf8\xe9\x09\xb4\xd6\xb8\xd1\ \x18\xf5\xf1\xf1\x2a\xfa\x65\x02\x2f\x97\x51\xc5\x7f\x64\xd2\xe9\ \xba\x1b\x89\xa0\x95\xe2\xdc\x54\x86\x6c\x36\xbf\x6a\x9c\x2f\x2d\ \xa5\x5a\x6b\xf6\xed\xdb\xc7\xde\xbd\x0f\xe3\x38\x0e\x77\xdd\xf5\ \xb9\x15\x4b\xee\x2f\x23\xa6\x69\x92\xcf\x15\xa9\xd7\x3d\xec\x90\ \x8d\x65\x5b\x78\x75\xcf\x52\x7e\xf8\xa9\xe5\x04\x84\xff\x68\x71\ \x2e\x57\xb7\x43\x36\x20\x98\x9d\xce\x53\x2c\x96\x56\xac\x38\xad\ \x7a\xbe\x9f\xcb\xe5\xf8\xf0\x87\xff\x14\x80\x8f\x7d\xec\xcf\x19\ \x1e\x1e\x5e\xf1\xbc\xa5\xbf\x5d\xc8\x0b\x8e\xe3\xf2\xd8\xbe\x03\ \x68\xa5\x49\xb4\x77\x90\x4f\x67\xd0\x4a\x4d\xff\xe3\x77\xff\x26\ \xbd\x8c\xc0\x83\x0f\xdf\xf9\x42\xa0\xfc\x42\x36\x9d\x21\xd6\x96\ \x40\x4a\xc9\xb9\xc9\x0c\xa5\x52\x79\x55\x00\xad\x96\xbd\xef\xbe\ \xaf\x32\x35\x75\x8e\xab\xaf\xbe\x8a\x77\xbf\xfb\x5d\xab\x02\x5b\ \x7a\xed\x85\xc8\xd8\x56\x98\xfd\xff\xf5\x34\x5a\x6b\x52\xbd\x6b\ \xc8\xcc\x4e\x07\xc2\xe0\xc1\x15\x27\x73\xcd\x76\xef\xec\xd4\x39\ \x3f\x91\x4c\xa2\x94\xe2\xf9\x43\x27\x98\x99\x49\x5f\x30\x8c\xe6\ \xfb\x37\xde\x78\x23\x6f\x7c\xe3\xcd\xdc\x75\xd7\x9d\x0b\xd5\x6a\ \xb5\x50\xbb\x18\x71\xdd\x08\x4f\x1d\x78\x96\x4a\xb9\x42\x28\xec\ \xe0\x46\x22\x94\xf3\xa5\xaa\x61\xe8\xaf\xaf\x4a\xc0\x46\x7f\x29\ \x9f\xc9\x54\xa4\x54\xb8\xae\x4b\xa5\x5c\xe3\xe4\xb1\x49\x8a\xc5\ \xf2\x8a\x56\x6b\x05\x75\xf9\xe5\xdb\xb8\xf7\xde\x7b\x18\x1e\x1e\ \x5e\xf5\x9c\x8b\x25\x21\x84\x20\x64\x39\x7c\x7b\xef\xf7\xd1\x4a\ \xd3\x3f\x32\xcc\xd4\xf8\xb8\x46\xab\xa7\xbf\xf6\x8d\xcf\x9d\x5c\ \x95\xc0\x97\xff\xf9\xef\xe7\xa4\x52\x7b\xcf\x4f\x8c\x07\x9d\x7d\ \xbd\xa0\x35\xff\x7d\xf0\x45\xe6\xe6\xb2\x04\x41\x70\xc1\x30\x5a\ \x89\xdc\xaf\x4a\x22\x1e\x4b\xb2\xf7\xa1\xef\x51\xad\xd4\x70\xdc\ \x08\x6d\xed\x9d\x14\xe6\xe6\x0a\x1a\xe3\xa3\x4b\xa7\xe1\xe6\x92\ \x63\x3b\x6c\xda\xcf\xc7\x23\xed\xb7\x24\xda\xdb\x5d\xd3\xb4\x28\ \x97\x8a\x4c\x4e\xcc\x30\x32\xba\x86\x48\xc4\x59\x75\x6d\xb0\xd2\ \xf1\xaa\x53\xe6\x55\xae\xd1\x5a\x13\x8d\xc6\x38\x71\xec\x2c\xdf\ \xf9\xe6\x0f\x01\xd8\xb8\x7d\x3b\x93\x27\x4f\xc8\x4a\xad\xfc\xe8\ \x83\xdf\xba\xf3\x5e\xc0\x5f\x8d\x80\x00\x22\x93\xd3\x67\xc4\xd0\ \xc0\xc6\xaa\xf4\xfd\x6b\x07\x46\xd7\xd9\x95\x62\x81\x62\xbe\x44\ \x21\x5f\x62\x60\xb0\x87\x70\xd8\x5e\x71\xf4\x5d\x7a\x5c\x2a\x17\ \x99\x9e\x99\x22\x08\x02\x9c\xf0\xc5\x11\x8f\x46\x63\x94\x8b\x75\ \x3e\xfb\x37\x5f\x46\x4a\xc9\xda\x75\x97\x60\x08\x83\xd9\xe9\xf3\ \xa5\xe7\x0e\xef\xbf\x65\x7a\xee\x5c\x99\xc6\x8e\x83\x5c\x89\x40\ \x18\x70\x00\xe7\xa5\x13\xcf\x9e\xda\xb4\xee\x8a\xeb\x02\xcf\xeb\ \x5d\xbb\x6e\xbd\x91\xcf\xcc\x31\x3b\x93\x21\x97\x2d\x32\x38\xbc\ \xa6\x39\x3a\xeb\x0b\x5a\xf3\xd4\xf8\x49\xea\xf5\x1a\xe5\x4a\x89\ \x48\x24\xb6\x30\x35\x5f\xcd\xf2\x89\x78\x1b\xf9\x5c\x85\xbf\xbd\ \xe3\x0b\x78\x9e\x47\x57\x6f\x2f\xbd\x83\xc3\x9c\x38\x7a\xb4\x3a\ \x3d\x3b\xf9\x97\x07\x9e\xde\xf7\x4c\x13\xb8\x6a\xf5\xc2\x52\x02\ \xf3\x24\xc2\xd3\xe9\xf3\x4f\xf7\x77\x0d\xde\x8c\xd6\x6e\xff\xc8\ \x88\xc8\x67\x33\xcc\x9e\x4f\x33\x39\x3e\xc3\xfa\x8d\x43\x58\xb6\ \xd5\xba\x3b\xb4\x2c\x6c\xb2\xb9\xf4\xc2\x6f\x6d\x89\x24\xa6\x69\ \xad\x18\x4e\x96\x65\xd1\xd9\xd1\xc5\xe1\x43\x63\x7c\xfe\x33\xf7\ \xe1\x79\x1e\xed\x5d\x3d\x8c\x6e\xda\xcc\xd8\xe1\x43\xf5\x62\x31\ \xb3\xef\x91\x9f\x3c\xf4\xb5\x26\xf8\xa0\x45\xd4\x52\x02\x76\x93\ \x40\x08\x08\x97\xcb\x79\x5d\xab\x96\x7e\xde\x1e\x4f\xdd\x24\x4c\ \xd3\x5e\x3b\x3a\x2a\x4a\xf9\x1c\xe9\xb9\x0c\xcf\xfe\xe2\x45\xba\ \xba\x53\xb4\x77\x24\x31\x4d\x81\x94\x72\xd9\x1c\x26\xe2\x36\x36\ \x58\x92\x6d\xed\x44\x9a\xef\x46\x5b\xff\x37\x0c\x83\x78\xbc\x0d\ \xd7\x89\xf1\x95\x2f\x7e\x83\x1f\x7c\x6f\x1f\x52\x2a\xfa\x06\x07\ \x19\xde\xb0\x91\x97\x9e\x3f\xe4\x17\xf3\xf9\x17\xfe\xe5\x47\x5f\ \xff\xb4\x52\xca\x03\xbc\xa6\xe5\xe7\xf5\x32\x02\x66\x93\xc4\x82\ \xa4\x73\xb3\xd5\x72\xad\xf4\x6c\x7b\x34\xb5\xcb\xf7\x83\xd0\xd0\ \x86\x8d\x22\xf0\x7d\x0a\xd9\x1c\x87\x0f\x8d\x71\xe2\xd8\x38\xfd\ \x03\x6b\x48\x26\xdb\xb0\x9a\xeb\x87\xf9\x77\xa0\xa6\x69\x11\x71\ \xa3\x84\x42\xe1\x05\xf0\x86\x61\x10\x89\x44\x89\xb8\x51\x22\x6e\ \x8c\x1f\x3d\xf2\x38\x5f\xbc\xf3\x01\xa6\x26\xce\x63\x18\x06\xeb\ \xb7\x6e\xa3\x23\xd5\xcd\xd8\xa1\xe7\xbc\x7c\x3e\x73\xe4\x87\x8f\ \xee\xfd\x54\xbd\x5e\xab\x34\x41\xd7\x5b\x74\x7d\xde\xfd\xad\xaf\ \xcb\x2c\x20\x0a\xc4\x9a\x7a\x41\x06\xfa\x46\x86\x76\xfd\xe6\x1b\ \x3e\x9d\x68\x4b\x74\x0d\x6f\xda\x6c\x4b\x3f\xe0\xec\xc9\xe3\xd4\ \x9a\x8b\x8e\x58\x3c\xca\xd5\xd7\x6c\x63\xfb\xd5\x97\xd2\xd3\xd7\ \xdd\x78\xe5\xa8\x9b\x6f\xe4\x68\x4c\x00\x43\xe1\x10\xd5\x72\x8d\ \xc3\xcf\xbd\xc4\x93\xfb\x7f\xce\x8b\x47\x8f\x37\xa6\xed\x40\x67\ \x4f\x2f\x23\x1b\x37\x91\x9e\x99\xe5\xdc\x99\x33\xf5\x74\x76\xfa\ \xb1\x7f\x7b\x74\xef\x3d\x52\xca\x22\x50\x6e\x91\x52\x53\x57\x56\ \xdb\xe4\x73\x9b\xa0\x23\x2d\x04\x22\x40\xd4\x0d\xb9\x6d\x37\xbd\ \xea\x2d\xef\x69\x4f\xf6\x5c\xdf\xb5\x66\x8d\xdd\x37\x38\x28\x0a\ \xd9\x2c\xd3\x53\x67\x29\xe7\x0b\xcd\x6c\xd0\xa0\xc1\x8d\x3a\x24\ \x93\x6d\x84\xc2\x36\x5a\x2a\x0a\x85\x12\xd9\x74\x0e\x29\x25\xba\ \x99\xfc\x86\x30\xe8\xe8\xe9\x61\x60\x64\x14\xa5\x14\x67\x8e\x8d\ \xc9\x5a\xa5\xe2\xbf\x74\xec\xb9\x7b\x0e\x3e\xfb\x9f\x8f\x35\x41\ \x96\x5b\x74\xab\xc8\x0b\xed\x52\x46\x5a\x80\x2f\x15\x77\xf3\xfa\ \xed\x97\x5d\x7e\xd9\xb5\x7b\xdc\xb0\x9b\xea\xec\xed\x0b\xa7\xfa\ \xfa\x00\xc8\xcd\xcd\x90\xcf\x66\xa9\x14\x8b\xf8\x5e\x1d\xad\x1b\ \x1b\xbf\xba\x49\x0a\x20\xec\x3a\xc4\xdb\xda\x69\xeb\xe8\xa0\xa3\ \xbb\x87\x42\x2e\xcb\xcc\xe4\x84\x2a\x17\x8b\x32\x9b\x4f\x3f\xf5\ \xc4\x53\x3f\xfa\x5a\x26\x37\x3b\xdb\x04\x5d\x01\xaa\x2d\x24\x2a\ \x4d\x0f\x04\x17\xb3\xcd\xea\xce\x03\x6e\xd1\xf3\xe2\x00\xce\x55\ \x5b\x77\x5e\x73\xc9\xc8\x96\xdd\x61\x27\x32\xe8\xba\x11\x11\x6f\ \x4f\x5a\x89\x64\x3b\x91\x78\x0c\xc3\x30\x09\x3c\x9f\x20\xf0\x11\ \x86\x81\x61\x9a\x84\xc2\x61\xea\xb5\x1a\xc5\x5c\x96\x62\x36\x47\ \x21\x9b\xa9\x2b\xa5\x45\x2e\x3f\xf7\xd4\x33\x87\x9f\x7c\xf8\xec\ \xd4\xf1\x71\xa0\xd6\x94\x6a\x53\x2a\x2d\x7a\x91\xe5\x2f\x66\x9f\ \xd8\x6a\x01\xef\xb4\xe8\x70\x8b\x0e\x0d\xf4\x8d\xf4\x6d\x5a\x7f\ \xc5\xce\xf6\x64\xd7\x0e\xd7\x89\x8e\xa2\xb4\xc2\x34\x94\x65\x59\ \xc2\xb4\x4c\x43\x4b\x8d\x54\x81\xf2\x3d\x5f\x1b\xc2\xb0\x95\x52\ \x95\x52\x39\x7f\x78\x66\x6e\xf2\x67\xcf\x1c\x79\xf2\x67\xd5\x6a\ \xa9\xd4\x92\x98\xf5\x25\x24\x5a\xc9\xe8\x5f\xf5\x53\x03\x7b\x09\ \xf8\x70\x4b\xb9\x0d\xb5\x54\x2d\x0b\x30\x07\xfb\xd7\xf5\xa4\x3a\ \xd7\xf4\xbb\x8e\x9b\xb4\xcd\x90\xab\xd0\x81\xef\x79\xd5\x52\x25\ \x3f\x3b\x39\x75\x6a\x22\x93\x9f\x2d\xb4\xd4\xf2\xf9\xb2\xe8\x2d\ \xa9\x30\xb5\xa6\xae\xac\x06\xfc\x57\xd9\xa9\x37\x9a\x24\x42\x4d\ \x02\xf6\x12\xf0\x56\xb3\x14\x1b\x4d\x11\x2d\xf7\xd7\xcd\xba\x3d\ \x2f\xc1\x12\x12\xad\x44\x6a\x4d\xfd\x7f\xfa\xb1\x87\x58\x42\xc0\ \x6c\x12\x30\x9a\x7d\xd1\x22\xf3\x16\x54\xcd\xbe\x6c\x91\xa0\x65\ \x60\x92\xff\x2f\x5f\xab\xac\x70\x3f\xa3\xa5\xdf\xea\x01\xdd\xe2\ \x89\x57\xac\xfd\x0f\x81\x8e\x1f\x14\xda\x1a\x86\x4e\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x12\xa6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ \x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x13\ \x16\x2e\x0b\x02\x57\x39\xe0\x00\x00\x12\x26\x49\x44\x41\x54\x78\ \xda\xed\x9a\x79\x94\x54\xf5\x95\xc7\x3f\x6f\xaf\xea\x2a\xaa\xba\ \x1b\x9a\xad\x71\x63\x11\xd9\x65\x31\x22\x83\x20\x1e\x70\x37\x11\ \x51\xa3\x21\x6e\x93\xe8\x10\x46\x04\x23\x59\x26\x3a\x6a\x32\x39\ \x67\xb2\x4c\x12\xe3\x99\x49\x66\x72\x72\xc6\x1c\xb3\x4d\x26\x31\ \x71\x34\x6e\x60\x83\xda\x08\x28\x6b\x4b\x37\x36\x34\xdd\x40\xef\ \x5b\xed\xef\xbd\x5a\xde\x36\x7f\x54\x75\x35\xbd\x40\x30\xa2\x66\ \x32\xdc\x73\xfa\x9c\xaa\xd7\xf5\x7e\xbf\xdf\xfd\xfe\xee\xbd\xdf\ \x7b\xef\xef\x07\x67\xe5\xac\x9c\x95\xb3\x72\x56\xce\xca\x59\x39\ \x2b\xff\x4f\x45\xfa\x38\x26\xbd\xe5\xb6\xbb\x4b\xa6\x5e\x34\x73\ \x69\x32\x11\x69\x49\xa5\x52\xde\xc7\x09\x80\xf0\x51\x4f\xb8\xfe\ \xe1\xc7\x66\x1e\x3d\x52\x7b\x60\xda\x8c\x59\x24\x12\x26\xba\x9e\ \xc2\x34\x75\x72\xd9\xdc\xbb\xb9\x5c\xf6\x17\x8e\x6d\xff\xbc\xea\ \xb5\x17\x7b\x00\x17\xf0\xfe\xaa\x00\xd8\xb0\xf1\xb1\xf5\x47\xea\ \xf7\x3f\x39\xeb\xe2\x4f\x90\xcd\x39\x27\xfc\xc7\xc3\x75\x3d\x5c\ \xc7\x21\x97\xcb\x91\x49\x9b\x18\x86\x8e\x69\xea\xb6\x6d\xdb\xff\ \x63\xdb\xd6\x6f\xab\x36\xbf\xf8\x7b\xc0\x3e\xd3\xa0\x7c\x64\x00\ \xac\xdb\xf0\xc8\xe6\xe3\x4d\xb5\xcb\x2f\x9c\x3e\x1f\xd7\xed\xd7\ \xc1\xf3\x3c\xf0\x3c\x3c\xcf\xc3\xa3\xef\x73\xfe\xb9\xe7\x79\x78\ \xae\x8b\xed\x58\xe4\xb2\x59\x4c\xd3\xc4\x34\x74\xb2\xd9\x4c\x5b\ \xce\xca\x3d\x23\x8b\xd2\x6f\x5e\x7b\xed\xc5\xda\x0f\x62\x2d\x1f\ \x09\x00\x6b\x1e\xd8\xd8\xab\xc7\xbb\x47\x8e\xa9\x9c\x84\xe7\xf5\ \x2b\x3e\x65\xd2\x79\x1c\x3e\x72\x34\xff\xac\xa0\xf0\xfc\x79\x33\ \x69\x69\x6d\xc7\x73\x3d\xba\xba\x7b\xf1\x5c\x37\x0f\x08\xde\x00\ \xb0\x5c\xc7\xc1\xb2\x2d\x32\x99\x34\x69\xd3\xc0\x30\x0c\x1c\xc7\ \xae\xb6\x6d\xfb\xd7\xc9\x44\xfc\x99\x9a\x9a\xdd\xe6\xe9\x80\xf2\ \xa1\x02\xf0\xc5\x2f\x7f\x5d\x8c\x45\xba\x9c\x40\x89\x8a\xea\x2f\ \x2b\x9a\xbb\xe7\xc1\xc2\x4b\xe6\xb0\xe3\xed\x7d\xc5\x9d\x96\x65\ \x89\x5b\x56\x5e\x43\xcd\xbb\xef\x31\x7b\xd6\x45\x05\x8b\x80\xde\ \xde\x28\x9b\x36\xbf\x59\xfc\x1d\x85\xe7\x03\xbe\x17\xac\xc7\x73\ \x5d\x1c\xc7\xc1\xb2\x72\xa4\xd3\x79\x60\xb2\xd9\x8c\x6e\x59\xd6\ \xaf\x45\x51\x7c\xb6\xba\xba\xaa\x0a\x70\x4e\x04\x46\xf8\x10\x95\ \x9f\xd0\xd1\xda\xd4\x32\x79\xca\x64\x8c\xb4\x5b\xdc\xf5\xbe\x45\ \x97\x94\xf8\x11\x04\x48\xa5\x74\x3c\x0f\x6e\xbf\xf5\x7a\xea\xde\ \x3b\xc2\xb4\x8b\x26\x41\xc1\x05\x76\xed\xae\x61\xfe\xbc\x59\x74\ \xf7\x44\xa8\xda\xb2\x6d\x58\xa5\x07\xbb\x0c\x05\x4b\x19\x60\x2d\ \xae\x8b\x6d\x5b\x18\x86\x81\x61\xa4\xd0\xf5\xd4\xfa\x5d\xbb\xb6\ \x3f\xf5\xa1\x01\xf0\xd0\x97\x9e\xb8\xf5\xd8\x91\xda\xff\x9e\x35\ \x67\x3e\xba\x99\x03\xcf\xa3\xac\x2c\x4c\x49\x89\x9f\x44\x22\x45\ \x22\x91\xec\xf7\xf1\xc2\xa2\xc7\x8c\x1e\xc5\xd2\x25\x97\x16\x15\ \x6a\x6e\x69\xa3\xb4\x34\xcc\xa1\x43\x8d\x1c\x6e\x68\x62\x42\xe5\ \x38\x82\xc1\x12\x4a\x4a\xfc\xec\xde\x5d\x83\xe7\x79\x8c\x19\x53\ \x41\x47\x47\xd7\x30\x4a\x33\x00\x20\x80\x4c\x26\x4d\x3c\x1e\x23\ \x1e\x8f\x25\x76\xef\xde\x5e\x5e\x88\x1b\x67\x1e\x80\x0d\x1b\x1f\ \xff\x79\xd3\xe1\x9a\xcf\xce\x9e\xbb\x10\xd3\xcc\x14\x7c\x77\x50\ \xb0\xf3\x3c\x46\x04\x03\x8c\x1b\x37\x9a\x6c\x36\xc7\xf1\xe6\x56\ \x1c\xdb\x19\xe2\xe7\x7d\x9f\x45\x49\xa4\x72\xfc\x58\x4c\x33\x4d\ \x77\x77\x2f\x4b\x96\x2c\xa4\xa1\xa1\x89\xb6\xb6\x0e\x96\x2d\x5b\ \x4c\x55\xd5\x9b\x79\xab\x19\xf4\x7e\x9f\x58\x96\x45\x34\xda\x4b\ \x24\xd2\xc3\xde\xbd\x6f\x97\x03\xf1\x3e\x37\x38\xa3\x00\x3c\xf8\ \xc5\x47\x9b\x5a\x8f\xd7\x5f\x30\x69\xca\x6c\x6c\xc7\x3d\x89\xb9\ \xf6\xfd\x15\x02\x5f\x61\xd1\x92\x28\x32\x69\xd2\x05\x04\x02\x7e\ \x8e\x1d\x6b\xa6\xb7\x37\x3a\x04\x8c\x13\xc7\x08\x87\x43\x4c\x9f\ \x76\x21\xef\xbc\xb3\x17\xd7\xf3\x38\xef\xbc\x09\x74\xb4\x77\xa2\ \x28\x0a\xd9\x6c\x16\xd3\x4c\x03\xe0\xba\x0e\x89\x44\x9c\x48\xa4\ \x97\x1b\xaf\x5b\x68\x3d\xf2\xd8\x77\x7c\x7d\xbb\x7f\x46\x01\x58\ \xbb\xee\xcb\xb6\x9d\x4d\x4a\xc1\xd2\xb1\x78\xee\x09\x81\xa9\xa0\ \xc4\xb8\xb1\xa3\x69\x6b\xef\x1a\xa0\xf4\x40\xe5\x18\xb2\xf3\x95\ \x95\xe3\x98\x30\x61\x3c\xbd\xbd\x11\x1a\x1a\x1a\xf3\xf4\x79\xc2\ \xfb\x03\x01\x86\x05\xf3\xe7\xd0\xd0\xd0\x84\x28\x8a\xc4\x62\x71\ \x3c\xcf\xc3\x30\x74\xa2\xd1\x08\x23\x82\x32\x77\xad\xbe\xd6\xfc\ \xf4\xea\x07\x03\x27\xae\x5b\x3e\x03\xc1\xae\x34\x1e\xeb\x89\x05\ \x03\x0a\x96\x36\x06\xd7\xed\xdb\xf9\x81\x41\xaf\xad\xbd\x93\x5b\ \x6f\xbe\x0e\x0f\x68\x6b\xeb\xa0\xe6\xdd\xf7\x48\xa6\xf4\x21\x4a\ \xf7\x83\x03\x2d\x2d\x6d\x34\x37\xb7\x16\xe3\x84\xdf\xef\x67\xf2\ \xe4\x0b\xf0\x5c\x8f\x23\x47\x9a\xd0\x0d\x63\x80\xb9\xef\xde\xbd\ \x7f\xc0\xda\xb2\xd9\x2c\xc9\x64\x82\x54\x2a\xc1\x9d\x9f\x59\x89\ \x24\x0a\x99\xc1\xeb\x97\x3f\xa0\xf2\x4b\x3a\x5a\x9b\xde\x98\x3e\ \x63\x06\x91\x98\x71\x4a\x93\x5f\x75\xd3\x35\x78\x9e\xc7\x6b\x5b\ \xb6\x11\x89\xc4\xf0\x3c\x8f\xd9\xb3\x2e\xe2\x9c\x73\x2a\xd9\xb2\ \xf5\x2d\x74\xdd\x18\xea\xff\x03\x76\x1a\x0c\xdd\x60\xff\xfe\x03\ \xc5\xdf\x01\x8c\x1f\x3f\x8e\x50\x68\x04\xbd\xbd\x11\x7a\x7a\x7a\ \x8b\x6b\xb3\x6d\x9b\x54\x2a\x4e\x2a\x95\x60\xf5\xed\xcb\xf1\xfb\ \x7c\x20\x48\xa1\x33\x96\x07\x3c\xf4\xa5\xc7\xbf\xd5\x7c\xb4\xfe\ \x2b\xb3\x2f\xbe\x84\x58\x2c\x39\x8c\xd2\xfd\x26\x7d\xcb\xcd\xd7\ \xe2\x01\x2f\xbf\xb2\xb5\x40\x7b\x5e\x7f\x16\x88\xc7\xaa\x9b\xaf\ \x27\x1a\x89\xf1\x5a\x55\xf5\x10\x6a\x3b\x99\xcb\x9c\x4c\x02\x81\ \x12\x6c\xdb\xa1\xab\xab\x83\x78\x3c\xc6\xb4\xa9\xe3\x59\xbc\xe8\ \x62\x7c\x7e\x3f\x9a\xe6\xe3\xa6\x55\x9f\x13\x3e\xb0\x05\xac\x7f\ \xf8\xb1\x3d\xc7\x1a\x6b\xe7\x4d\x9f\xb9\x80\x68\x2c\x31\xd4\xe4\ \x0b\x0b\x16\x04\x81\x55\x37\x5d\x83\xeb\x79\x3c\xff\xc2\x66\xb2\ \xd9\xec\x40\xfa\xf3\x3c\x64\x45\xc6\x75\x5d\x4a\x4b\x43\xc3\xba\ \xc2\x00\x6a\x3b\x81\xd6\x4e\x26\xba\x6e\x60\x9a\x06\xba\x9e\xc2\ \x75\x2c\x16\x2d\x9c\x83\xa6\xf9\x50\x15\x15\x45\x51\x00\x7c\x80\ \xd5\x97\x3e\xbf\x6f\x00\xd6\x6d\x78\xc4\xe8\xe9\x68\x2a\x99\x38\ \x79\x16\xba\x6e\x0e\x6b\xae\x9e\xe7\xa1\x2a\x0a\x37\x5e\xbf\x1c\ \xd7\xf3\x68\x69\x6e\xe3\xda\xab\x97\x52\x77\xb0\x81\xc3\x0d\x8d\ \x78\x5e\x3e\xbd\x3d\xff\xbc\x09\xcc\x9b\x3b\x0b\xd7\x71\x79\xf7\ \xc0\xc1\xc2\x73\x6f\x20\xa0\x0c\xa5\xb5\x53\x89\x65\xe5\x0a\x7e\ \x9f\x64\xcd\x7d\x37\xe1\xf7\xfb\x51\x55\x15\x45\x55\x51\x15\x95\ \x70\x09\xd7\x24\x4c\xba\x81\x04\xd0\x79\xda\x2e\xf0\xd0\xc6\xc7\ \xb5\x74\xda\xcc\xc8\xa2\x85\xac\x86\xf2\xc1\xee\x24\x26\x1f\x1c\ \x11\xe0\xaa\xe5\x97\xe3\x79\x1e\xcf\xfe\xfe\xa5\x7c\x3e\x5f\x30\ \xf9\x6b\xaf\xbe\x02\x9f\xdf\x87\xeb\xb8\x98\x66\x9a\x8e\xce\x6e\ \x6a\x6a\x6a\xfb\x23\xfc\x30\x26\x7f\xba\xe2\x38\x36\xb1\x58\x94\ \x64\x32\xce\x8d\xd7\x5d\xc6\xc4\x89\xe7\x14\x76\x5e\x45\xd5\x54\ \x54\x55\xe3\xd9\x3f\x6c\xce\x6d\xd9\xba\x7d\x4f\x5d\x5d\xcd\xf7\ \x80\xb7\xc5\xd3\x4c\x6e\x66\x24\xe2\x91\xcc\xd8\x31\x65\x88\x4a\ \x10\xd7\x75\xf2\xbb\xe5\x7a\xfd\x94\xe7\xb9\xb8\x9e\xcb\xe8\x8a\ \x72\x56\x5c\xf9\x37\xb8\xae\xcb\xef\x9e\x7d\x11\xd7\x75\x71\x0b\ \x55\x9d\xe7\xba\xbc\xf8\x72\x15\x99\x74\x06\xf0\x78\x67\xd7\x3e\ \xf6\xed\x3b\x80\xeb\xb8\xc5\xf7\xf3\xe3\x16\xfe\xde\x87\xf2\xae\ \xeb\x16\x4a\x68\x83\x71\x63\xcb\x98\x34\xf1\x5c\x54\x55\xcb\xef\ \xbc\x96\xdf\xfd\x74\xda\xa2\xfe\x50\xb3\x5a\x57\x57\xf3\x33\xe0\ \x18\xd0\xf9\x27\x01\xd8\xf0\xf0\x63\x0f\xf4\x74\xb5\xd4\x4e\x99\ \x32\x89\x68\xcc\xc4\x73\xf3\xb5\xfb\x89\x4a\xcf\x9a\x39\x95\x0b\ \xa7\x5c\xc0\xf2\x2b\x17\xb3\xe8\xb2\x05\x38\x4e\x5e\xf9\x7e\x45\ \xfa\x94\xcb\x03\x86\x20\xe0\xba\x1e\x97\x2f\xbe\xb4\x60\xf6\x7d\ \x4a\x7b\x79\xb0\xbc\xf7\x57\xd9\x7a\x9e\x47\x36\x9b\x21\x95\x4a\ \x61\x9a\x06\xb7\xdd\x72\x15\x9a\xcf\x87\x5a\x30\x7b\x55\x51\x51\ \x54\x8d\xa7\x9f\x79\x91\xbd\x7b\xdf\xf9\x25\x70\x14\x38\x04\xd8\ \xd2\xa9\x83\xdd\x3f\xbe\xda\xd1\xda\xb4\x6e\xc6\x8c\x8b\xe9\xec\ \x8a\x0c\x9f\x73\xe3\xd1\xd9\xd9\x43\x6f\x6f\x94\xf6\xb6\x4e\xca\ \xca\xc2\xf8\x7c\x1a\xbd\xbd\x11\x74\xc3\x1c\x42\x6b\xf3\xe7\xcf\ \xa1\x34\x1c\xc2\xf5\x5c\xf6\xec\xa9\x21\x1e\x4f\x16\x5d\x69\xfa\ \xf4\xa9\x5c\xb6\x70\x01\x81\x40\x09\xba\x6e\x90\xcb\xe5\xf0\xfb\ \xfd\x8c\x1b\x37\xa6\x50\xe5\x59\xc3\xae\xd3\xb6\x2d\xe2\xf1\x28\ \xba\x9e\x62\xdd\xda\xdb\x08\x85\x46\x20\x49\x72\x1e\x00\x55\x43\ \xd5\x34\x9e\xf9\xe5\x26\x0e\x1e\x3c\x90\x68\x6c\x3c\xf4\x2d\x60\ \x1f\x10\x39\x15\x0b\x88\x0f\x3e\xf4\x68\x57\x67\xdb\xd1\x51\x93\ \xa7\xcc\xa0\xbb\xa7\x77\xd8\xf4\x75\x70\x12\x63\xa6\xd3\x6c\x7d\ \x63\x3b\x9e\xe7\x11\x28\xf1\x73\xc5\x92\xcb\x08\x85\x83\xa4\xcd\ \x34\x9a\xa6\x15\x77\xcb\x75\x5d\xde\x7c\x73\x07\x91\x48\x3e\xdd\ \x5d\xb6\x6c\x31\xc1\x60\x80\xb7\xdf\xde\x43\x5d\x5d\xfd\x20\xd3\ \x76\x98\x39\x73\x1a\xe0\xb1\x73\xe7\x6e\x62\xb1\xc4\x20\xbf\x77\ \x48\xa5\x92\x64\x32\x19\xae\xbc\x62\x01\x23\x47\x96\x23\x49\x12\ \x8a\xac\x20\x2b\x0a\x8a\xa2\x52\x7f\xa8\x99\xa3\x47\x9b\xd8\xbd\ \x7b\xc7\x46\xe0\x30\xd0\x75\x32\x1a\x14\xc6\x8e\xab\x54\x57\xdd\ \x76\x57\x26\x6d\x44\x19\x5f\x39\xb1\x3f\x5b\x3b\xcd\xf4\xb5\x2f\ \x88\xe9\xba\xce\x96\xad\xfd\x25\xac\xa6\x2a\x20\x40\x3a\x9d\x29\ \xfe\xce\xe7\xf3\xb1\x62\xc5\x52\x74\xdd\xe0\xf9\xe7\x5f\x19\xb2\ \x0b\x23\x47\x96\x73\xc9\x25\x73\xc9\x64\x32\x6c\xdd\xba\x6d\x58\ \xd3\x37\xcd\x3c\xed\x29\x32\x5c\xbe\x78\x3e\x8a\xa2\x20\x49\x32\ \xa2\x28\xa1\xaa\x2a\xa2\x28\xf1\xf2\xab\xdb\xd9\xb9\xb3\xfa\xa7\ \x05\xe5\x1b\x0b\x3d\x81\x21\x00\x08\x77\xde\xbb\xf6\xbc\x80\xdf\ \x7f\x34\xe8\x93\x30\x28\xc5\xb2\xad\x93\x72\xf1\xb0\x0d\x09\x8f\ \x93\x66\x72\x99\x4c\x66\xc8\xfb\xcb\x97\x2f\xc1\x75\x5d\xb6\x6c\ \xa9\x1e\xa0\xd8\x98\x31\x15\xcc\x9d\x3b\x0b\x80\x9a\x9a\xda\x42\ \xc9\x3b\x54\xf2\x7e\x9f\xc0\x30\x74\x1e\x7f\x74\x0d\x9a\xe6\x43\ \x14\xc5\xa2\xf9\x2b\x8a\xc2\x0f\x9e\xfa\x0d\x0d\x0d\xef\xf5\x24\ \x93\x89\x17\x80\x83\x40\xfa\x64\x6d\x71\x61\xe9\x15\x57\xc5\x1c\ \xdb\x22\x10\x0c\x92\xcb\xe5\xc8\xe5\xac\x01\x89\x87\x37\x44\x39\ \x4e\x99\xbe\x9e\xcc\x65\x4e\x1c\xaf\xbc\xbc\x8c\x49\x93\xce\x67\ \xec\xd8\xd1\x94\x96\x96\x62\xdb\x0e\xf3\xe6\xcd\xc1\x71\x1c\x36\ \x6d\x7a\x1d\x5d\x37\x4e\xc2\xf7\x16\x89\x44\x0c\xd3\x34\x59\x73\ \xdf\x2a\xc6\x8c\xa9\x40\x40\x40\xf3\x69\x79\xda\x53\x55\x9e\x7b\ \xa1\x9a\xfa\xfa\x7a\xb6\x6f\x7f\xe3\x01\x60\x2f\xd0\x3e\xb8\x4d\ \x26\x0f\xa6\x92\xb6\xd6\x63\x2c\x59\x34\x83\xbd\xfb\x0f\x12\x89\ \xc4\xa8\x18\x55\x41\xce\xb2\xc8\x64\x2d\x24\x51\x42\x10\x84\xbe\ \xd5\x0f\x5b\xa6\x9e\x32\x4e\x0c\x92\x86\x86\x26\x1a\x1a\x9a\x8a\ \xdf\x83\xc1\x00\x8b\x16\x5d\x82\x69\xa6\xd9\xb5\x6b\x2f\x53\xa7\ \x4e\xe6\xd0\xa1\x23\x27\xa1\xbc\x14\x99\x4c\x86\x8b\xa6\x9e\xc7\ \xc4\x89\xe7\x23\x49\x22\xb2\xac\x20\x08\x02\xaa\xaa\x11\x8d\xa5\ \x38\x78\xb0\x81\xb7\xde\x7a\xfd\x47\x40\x3d\x70\xfc\xc4\x32\x78\ \x38\x00\x3c\xcf\x75\x50\x55\x89\xe5\xcb\x97\x31\x7b\xce\x4c\x5a\ \x5b\xdb\x68\x6d\x6d\xe7\xf0\xe1\xa3\x44\x23\x09\x46\x96\x97\xe3\ \xb8\x2e\xe9\x74\x16\x51\x12\x11\x05\xb1\x0f\x8b\x53\x96\xa9\x9c\ \x26\xad\xe9\xba\xc1\xe6\xcd\x6f\x14\xc1\x1a\x4e\x79\xcf\xf3\x48\ \x17\xda\xe6\xb9\x6c\x86\x7b\xee\xba\xb9\xe0\xf7\x52\x31\xae\xc8\ \xb2\xc2\x7f\xfe\xec\x79\xea\xeb\xeb\xda\xd2\x69\xf3\x8f\xc0\x7b\ \x40\x6e\xb8\x39\x07\x5b\x40\xb7\xae\x1b\xa3\x2b\x2a\x46\x31\x72\ \x64\x39\x93\x26\x5e\x80\x6e\x18\xf4\xf6\x46\x68\x6b\x6d\xa7\xa5\ \xa5\x95\x86\x23\x47\x39\x12\xed\x25\x1c\x0e\xe3\x79\x2e\xa6\x99\ \x45\x92\x44\x44\x41\xca\x97\x56\x83\xfc\xfc\xfd\xca\x9f\x7a\x27\ \x97\xcb\x91\x4c\xc6\xc9\xe5\x72\x7c\xf3\x1b\xeb\x51\x35\x0d\x3c\ \x50\x14\x05\x59\x56\x90\x65\x99\xef\xff\xf0\x57\xb4\xb7\xb7\x52\ \x57\x57\xf3\x55\xa0\x0e\x48\x9e\x6c\x3c\x79\xd0\xe4\x75\x5d\x5d\ \xdd\xa3\x05\x41\x40\x92\x24\xfc\x7e\x3f\x3e\x9f\x8f\xf2\xb2\x32\ \xce\x3f\xef\x5c\x0c\xc3\x24\x1a\x8d\xd1\xde\xde\xc1\xf1\xe6\x16\ \x1a\x1b\x8f\x52\x7f\xe8\x38\x9a\x1a\x44\x10\x3c\x0c\x23\x8d\x28\ \x8a\x88\xa2\x84\x28\x8a\x9c\x69\xb1\x6d\x9b\x64\x32\x8e\xa2\xc8\ \xdc\x78\xfd\x55\x94\x95\x95\xe2\xb8\x2e\xbe\x42\xf0\x93\x15\x85\ \x9d\x3b\x0f\xd0\xdb\xdb\xcb\xb6\x6d\x55\xff\x52\x50\xbe\xed\x54\ \xed\xf1\x21\x00\x48\x92\xb4\xac\xaf\x92\x03\x18\x0c\x46\x59\x59\ \x29\xe7\x9e\x3b\x81\xd9\xb3\x67\x12\x8d\x46\x69\xef\xe8\xa4\xb9\ \xb9\x95\xa6\xa6\x63\xd4\x1d\x6c\x44\x96\x35\x24\x49\xc0\x30\x4c\ \x44\x51\x2a\x50\x92\xd8\x1f\x3b\xfe\x4c\xe9\xf3\x7b\xcf\x73\x91\ \x25\x58\xba\xe4\x52\x04\x41\x44\xf3\xc9\x38\x8e\x8b\xaa\x69\x38\ \x8e\xcb\xa6\xd7\x76\x50\x57\xb7\xbf\xd1\xb2\xac\x57\x0a\xb4\xe7\ \x9c\x6a\xdc\xc1\x79\xc0\x56\x45\x51\x1f\xc8\xe5\x72\xc5\xc4\x65\ \x40\x92\x50\x00\x43\x92\x24\x34\x4d\x23\x1c\x0e\x51\x59\x59\xc9\ \xcc\x19\xd3\x89\xc5\xe3\x74\x76\x74\xd1\xdc\xd2\xc2\xb1\x63\xcd\ \x1c\xa8\x6d\x00\x40\x51\xf2\x60\x08\x42\x3e\x48\x49\x92\xf4\xbe\ \xc1\xc8\xd3\x68\x1a\x23\x7f\x2a\xc4\x0f\xbf\xff\x28\x20\x20\x2b\ \x0a\x02\x02\x81\x80\x1f\x59\x92\x79\xf4\x9b\xff\x4a\x5b\x5b\xb3\ \x77\xf8\xf0\x7b\x8f\x14\x76\xdf\xf8\x53\x63\x0f\xb2\x00\xf7\xb9\ \xf2\xf2\x51\x24\x12\x49\x46\x8f\xae\xc0\xb6\x6d\x3c\xcf\xeb\xab\ \xa3\x87\x05\xc3\xef\x97\xf0\xf9\x34\x42\xa1\x10\xe3\xc7\x8d\xe3\ \xa2\x8b\x2e\x24\x91\x48\x72\xc5\xd2\x6e\x5a\x5a\x5b\x39\x7e\xbc\ \x85\x03\x07\x0e\x91\xcd\xb9\x05\x30\x0c\x40\x40\x51\x54\x24\xe9\ \xf4\x5c\xa5\xaf\xc4\x0d\x87\x43\xac\xb9\xef\xf3\xf8\xfc\x7e\x1c\ \xdb\x41\x53\x55\x24\x59\x46\x96\x64\x7e\xf2\xd3\xdf\x91\x4c\xc6\ \xa9\xae\xae\xfa\x36\x70\x00\xe8\x7e\xdf\xc7\xe3\x7b\xf7\xec\xf4\ \xe6\x2f\xb8\xec\x89\x9e\xee\x2e\x16\x2c\xb8\xb8\x18\x5d\xfb\x52\ \x4e\xdb\xb6\x8b\xdf\x07\x83\x21\x8a\x22\xb2\x9c\x77\x95\x50\x28\ \xc4\xe8\xd1\xa3\xa8\x1c\x3f\x9e\x0b\x26\x9e\xcf\xcc\x19\x53\x99\ \x30\x61\x0c\x7e\xbf\x4c\x22\x91\xc0\xb2\x6c\x54\x55\x21\x9d\x36\ \xc9\xe5\x72\xc5\x31\x40\x18\x62\x1d\x8e\x63\x93\x4c\x26\x08\x06\ \x03\x4c\x9a\x38\x8e\x2b\x97\x2d\x42\x94\x24\x54\x55\x43\x12\x25\ \x34\x55\xa3\xb5\xad\x9b\x57\x5e\xdd\xc6\x9e\x3d\x3b\x0f\xc6\x62\ \xd1\x27\x81\xda\x42\xd3\xe3\xfd\x9f\x0d\xde\x75\xf7\x1a\x6f\xff\ \xbe\x77\xa8\xd9\x97\xa7\xa3\xbe\x05\x6a\x9a\x36\x80\xcf\x2d\xcb\ \x1a\x90\xdf\xf7\x2b\x41\xb1\x31\x2a\x08\x02\xae\xeb\x92\xcb\x59\ \xa4\x52\x49\x12\x89\x24\xb1\x78\x82\xb6\xb6\x76\x5a\x9a\x5b\xa9\ \x3b\xd8\x40\x24\x9a\xc2\xe7\xf3\x61\x9a\x69\x5c\x97\x62\x06\x27\ \x8a\x52\xa1\xab\x9b\x2a\x80\x96\xe6\x27\x3f\xfe\x16\x82\x28\xe2\ \xf7\xfb\xb1\x2d\x1b\xbf\xdf\x8f\xa2\x2a\x3c\xfc\xa5\xef\x70\xfc\ \x78\xa3\x57\x5d\xbd\xe5\x56\x60\x2b\x10\x3d\x5d\xf7\x1a\x52\x0c\ \x89\xa2\xf4\xf3\x40\x30\x74\x67\x24\x12\xa5\xbc\xbc\xac\xa8\xb8\ \x6d\xf7\x57\x63\x7e\xbf\x0f\x59\x96\xb1\x6d\x07\x59\x96\xc8\x66\ \xb3\x45\x30\x6c\xdb\xce\x0f\x2c\xf7\x0f\xad\x28\x32\x15\x15\x15\ \x94\x97\x97\x33\xc1\xb2\x38\xf7\x9c\x09\x4c\x9b\x36\x95\x85\x0b\ \x3f\x41\x7b\x47\x27\x2d\x2d\x2d\xd4\xd7\x37\xd2\xd5\x1d\x47\x51\ \x44\x4c\x53\xc7\x71\x3c\x04\x01\x74\x3d\x85\xdf\xaf\xf1\x83\xef\ \x7d\x0d\x41\x14\xd1\x54\x0d\x45\x56\xd0\x54\x0d\x51\x92\xf8\xda\ \xa3\x4f\x12\x8f\x47\xa9\xae\xde\xf2\x04\xb0\x1f\x88\x7d\xa0\x1b\ \x22\x73\x2e\x5e\xf0\x5c\x59\x69\xd9\xe3\xff\xf6\xa3\x9f\xd2\x70\ \xa4\x89\x4b\x3f\x31\x0f\x9f\x2f\x0f\x82\xaa\xaa\x08\x82\x80\x6d\ \xdb\x58\x96\x8d\xe3\xd8\x28\x8a\x92\x3f\xdb\x77\x1d\x24\x29\x0f\ \x46\x9f\x6f\x67\x73\x39\x5c\xc7\x29\xbe\x27\x08\x02\x9e\xe7\x11\ \x0a\x85\x28\x2b\x2d\x65\xe4\xc8\x72\x2a\x2a\x46\x31\x6e\xec\x38\ \xa6\x4f\xbf\x90\x89\x13\x27\x50\x1a\x0e\x60\x3b\x39\xd2\xe9\x0c\ \x8a\x22\x13\x08\x04\xb8\x79\xe5\x0a\x66\x4c\x9f\x0a\x08\xa8\xaa\ \x82\xa6\x69\xc8\xb2\xcc\x2b\x9b\xb6\x71\xf0\x60\x03\x3b\x77\x6e\ \xdb\x9b\x4a\x25\x9f\x2a\x64\x7c\xce\x07\x3e\x1e\x57\x55\x75\xe2\ \xf2\xe5\x57\xbf\xba\x6c\xd9\xf2\xc9\xb5\xb5\xef\x72\xe4\x48\x23\ \x2b\x96\x5f\xc1\xc6\x87\xbf\x40\x49\x89\x1f\xcb\xb2\x50\x55\xb5\ \xd0\xe4\xcc\xc7\x07\xf0\x08\x04\x02\xf9\xa2\x07\xf0\xfb\x7c\x98\ \xa6\x59\x64\x8c\x6c\x36\x8b\xe3\xb8\x94\x94\xf8\x8b\xf3\xf4\x29\ \x99\x77\x93\x1c\xba\x6e\xd0\xd3\xdb\x8b\x69\xa4\xe9\x8d\x44\x70\ \x6c\x9b\x7d\xfb\x6b\xf9\xcc\xed\x2b\xf1\xfb\x7d\x45\x17\xf3\x97\ \x04\xb0\x2c\x8b\x8d\x5f\xfe\x36\x4d\x4d\x87\x9d\xed\xdb\xdf\xb8\ \x19\x78\xfd\x54\x09\xcf\x9f\x73\x3c\x2e\x00\x63\x54\x55\xbd\xe7\ \x96\x5b\x6e\x5f\x3f\x77\xee\xbc\xb1\x7b\xf7\xee\xe5\xf8\xf1\x66\ \x6e\xb8\x7e\x05\xeb\x1f\xbc\x0f\x55\x55\xb0\x6d\xbb\xe0\xc3\x79\ \x65\xfb\x98\x23\x18\x0c\x62\x18\x66\x11\x98\xbe\xe8\x1f\x08\x94\ \x90\xcb\x59\xe4\x72\x59\x82\xc1\x60\x71\x32\xd3\xcc\xe7\x0d\x82\ \x20\x90\xcb\xe5\xc8\x66\xb3\x44\x23\x11\x6c\xc7\x42\x10\x04\x46\ \x57\x54\xe0\xb8\x2e\x62\xc1\x0d\xd6\xae\x7b\x82\x48\xa4\x97\x97\ \x5f\xfe\xc3\xd7\x80\x5f\x00\xad\x7f\xce\x25\x89\xd3\x25\x64\x11\ \x38\x77\xc4\x88\xd0\xda\x3b\xee\xb8\xf3\xfe\x0b\x2f\x9c\x12\x7e\ \xfb\xed\x77\x68\x6d\x6d\x63\xd5\xaa\x1b\xf8\xfb\x2f\xdc\x53\x88\ \xd8\x2e\x81\x40\x09\x29\x5d\x47\x53\x35\x72\xb9\x1c\x9e\xe7\x32\ \x62\xc4\x88\xe2\x79\x40\x28\x34\x02\xc3\x30\x70\x5d\x8f\x11\x23\ \x82\x38\x8e\x8b\xae\xeb\x84\xc3\xfd\x67\x16\x79\xb0\xf2\x9d\x9e\ \x64\x32\x85\x20\x40\x20\x10\x40\x96\x65\x5c\xd7\xe3\xdb\xdf\xfd\ \x09\x4d\x4d\xcd\x54\x55\xbd\xb4\xa3\xb7\xb7\x7b\x6d\x21\xea\xdb\ \x1f\xe6\x2d\x31\x0f\x88\xe7\x72\xd9\xcd\x7b\xf6\xec\xfa\xee\xa6\ \x4d\xaf\xfc\x26\x1a\xed\xf1\xdd\x70\xc3\x27\xa7\x05\x02\x21\xe5\ \x07\x4f\xfe\x07\x3f\xfe\xf7\xa7\xb1\x6c\x9b\x8b\xe7\xcc\xc0\x75\ \x5d\x1c\xc7\x25\x18\x0c\x90\xc9\x64\x51\x55\xa5\x18\x40\x35\x4d\ \x23\x9d\xce\xe0\x38\x0e\x7e\xbf\x8f\x6c\x36\x8b\xeb\xba\xc5\x20\ \x1a\x8f\xc7\x29\x29\x09\xe0\xf3\x69\x85\x98\xe1\x22\x08\x02\x5a\ \xa1\xb5\xd5\xd0\x70\x8c\x57\x5e\x7d\x93\xc6\xc6\x43\x56\x43\x43\ \xfd\xfd\x85\xf6\x56\xf6\xe3\xba\x23\x24\x0b\x82\x30\x77\xd2\xa4\ \x29\xff\x70\xe7\x9d\xf7\xdc\xa8\x69\x9a\x5c\x5d\x5d\x4d\x34\x1a\ \xe3\xee\xbb\x3f\xcd\x3d\x77\xdd\x46\x26\x93\x41\x51\x54\x4a\x4a\ \xfc\x44\x63\x31\xca\xcb\xca\x48\xa5\x74\x5c\xd7\x21\x1c\x0e\x13\ \x8b\xc5\x70\x5d\x8f\x91\x23\xcb\xb1\x2c\x8b\x74\x3a\x4d\x28\x94\ \xb7\x86\x44\x22\x81\x24\x49\x45\xca\xd5\x34\x1f\xf7\xfc\xed\x46\ \x7a\x7a\x3a\x79\xf5\xd5\x17\x1e\x06\x7e\x79\x62\x7b\xeb\xe3\xbe\ \x23\xa4\x01\x8b\xe7\xce\x9d\xff\xc8\xea\xd5\x77\x2d\x4d\xa7\x4d\ \xb1\xba\xfa\x2d\x74\x5d\xe7\xf3\x9f\x5b\xcd\xea\xcf\xdc\x8c\xae\ \x1b\x04\x02\x25\x48\x92\x4c\x2a\x95\xa2\xac\xac\x94\x64\x2a\x95\ \x3f\x19\x0a\x87\x49\x24\xf2\xa7\x4c\xa5\xa5\xa5\x85\xb2\x37\x8d\ \xa2\x28\x58\xb6\x8d\xe7\x7a\x3c\xf0\xe0\x13\x18\x86\xc1\xa6\x4d\ \xcf\xbf\x9e\x48\xc4\xd7\x16\x3a\xbb\xee\x5f\xe2\x2d\xb1\x80\x28\ \x8a\x57\x2d\x5e\xbc\xf4\x91\xdb\x6e\xbb\x7d\x7e\x67\x67\x27\x3b\ \x76\xec\x20\x93\xc9\xf2\x85\x35\x77\x73\xeb\x2d\x37\x62\x18\x06\ \xe1\x70\x18\xcb\xb2\xc8\x64\xb3\x84\x43\x21\x74\x5d\xc7\x75\x5d\ \x42\x85\xcf\x20\x14\x59\xe7\x57\xbf\x7e\x9e\xaa\x2d\xdb\x39\x78\ \xf0\xdd\xcc\xbe\x7d\xef\x5c\x0b\xec\xf8\x20\xa6\xff\x51\xdd\x12\ \x13\x80\xb0\x28\x8a\x2b\xaf\xbe\xfa\xba\xaf\x7c\xea\x53\x2b\xa7\ \x36\x36\x36\xb2\x6b\xd7\x2e\x1c\xc7\x61\xdd\x03\x9f\xe7\x53\x9f\ \xbc\x9a\x74\x3a\x43\x38\x1c\x22\x9d\x4e\xe3\x38\x4e\x91\x41\xf2\ \x0d\x0e\x8d\x54\xca\xe0\xc1\x0d\x5f\xa7\xab\xab\x83\xcd\x9b\xff\ \xb8\xae\x60\xfa\xb1\x33\xb5\xc0\x8f\x4a\x04\xa0\x42\x51\x94\xcf\ \xae\x5c\x79\xeb\x86\x15\x2b\xae\x3a\xe7\xc0\x81\x03\xec\xdb\xb7\ \x1f\x51\x14\xd8\xb0\xfe\xef\xb8\xe6\xea\x65\x58\x96\xc5\x88\x11\ \x41\x4c\xd3\xc4\x2d\x9c\x31\x7e\xee\xbe\xaf\x92\xc9\xa4\x79\xe9\ \xa5\xe7\x5e\x36\x4d\xfd\x81\xc2\xc1\x86\xf7\x7f\x0d\x80\xc1\xf3\ \x4e\xf0\xf9\xfc\xf7\xaf\x5e\x7d\xd7\x9a\xcb\x2e\x5b\x34\x6a\xf7\ \xee\xdd\xd4\xd6\xd6\xa1\x28\x32\x1b\x1f\x5e\xcb\xb2\x2b\x16\x61\ \x3b\x0e\x5f\xff\xc6\x53\x74\x76\xf6\x50\x53\xb3\xdb\xa8\xad\xdd\ \xbf\x1c\xd8\x73\xba\x85\xce\x5f\x32\x00\x83\xa9\x78\x52\x38\x5c\ \xfa\xe0\xbd\xf7\xde\x77\xf7\xcc\x99\x33\x83\x6f\xbd\xb5\x9d\xc3\ \x87\x0f\x33\x7e\x7c\x25\x9a\xe6\xa7\xa3\xa3\x95\xaa\xaa\x97\xef\ \x07\xfe\x0b\x48\xf1\x57\x2c\x32\x30\xb7\xb2\x72\xc2\xaf\x1e\x7f\ \xfc\x9f\xb2\x4f\x3f\xfd\x0b\xef\x8e\x3b\xee\xf5\x34\x4d\xfb\x2d\ \x50\xf9\x17\xb2\x61\x1f\x99\xa8\xc0\xe5\x92\x24\xfd\x33\x10\x2c\ \x64\xa3\x67\xe5\xac\x9c\x95\xb3\x72\x56\xce\xca\x59\x39\x73\xf2\ \xbf\xe7\x5c\x0d\xb3\xf4\x23\xc5\x80\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x36\x8b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x01\x06\ \x10\x1f\x04\xfc\xa3\x2b\x79\x00\x00\x20\x00\x49\x44\x41\x54\x78\ \xda\xed\x7d\x7b\x98\x55\xd5\x7d\xf6\xbb\xd6\xbe\x9c\xdb\x5c\x18\ \x66\x86\x81\x01\x47\x06\xa2\x80\xe2\x0d\xc4\x90\xc6\x68\x22\x20\ \x6a\x63\x4c\xaa\x79\x0a\x3e\xf9\x6c\x6c\x4d\x93\x7c\x42\x48\x6d\ \xbf\x26\x4d\x9b\xf8\x19\x9b\x3e\x49\x9b\x1a\x05\xcc\x63\x9e\x18\ \xed\xd7\xda\x4a\x8d\x69\xa2\xb6\x8a\x72\x69\x12\x6f\x28\x85\x68\ \xbc\xa2\xc2\xc8\xc8\x0c\x0c\x03\xcc\xfd\x5c\xf7\x5e\xeb\xfb\x63\ \xff\xd6\xde\xeb\xec\xd9\x67\xe6\xec\x61\x50\x4c\x72\x78\xf6\xb3\ \xcf\xd9\x73\xce\x61\x9f\xfd\xbe\xbf\xf7\x77\x59\xbf\xb5\x36\xc3\ \xfb\xfb\x61\x00\x48\x00\xb0\x69\x6f\xc4\xfc\x3c\xa7\xbd\x88\xf9\ \x39\x17\x40\x01\x40\x91\xf6\xee\xfb\xf5\x02\xb2\xf7\xe1\x39\x9b\ \x00\x52\xb4\x99\x63\x00\x6b\x11\x31\x2c\x7a\x9f\x45\x04\x61\xb4\ \xf1\xd0\x67\x04\x00\x49\x9b\x0b\xa0\x04\xc0\xa1\x7d\x91\xf6\x95\ \x88\xe2\x00\xc8\xd1\xe6\xfc\x8e\x00\x93\xff\xe0\x1a\xe8\x76\xc4\ \xdf\x6d\x00\x49\xfa\x7b\x72\x02\x4a\x10\xc7\xf2\xf3\x04\x74\x9e\ \x88\x11\x7e\x14\x35\x32\x88\xdf\x11\xe0\xf8\x1e\x36\x80\x0c\x81\ \xca\x2a\xa8\x40\x6a\x0c\xc0\x99\xa6\x04\xb6\x66\xf9\x46\x48\x05\ \x84\x66\xf9\xea\x79\x51\xb3\x7c\x39\x06\x21\x72\x15\xac\x5f\x12\ \x49\x46\x2a\x10\xe5\x77\x04\x18\xe3\x91\x00\x50\x1b\xb2\x76\x4e\ \x64\xa8\x25\x42\x54\x52\x89\xb4\x16\x17\x98\x93\xf0\x1b\x25\x01\ \xab\xfc\x7d\x76\x0c\xeb\xce\x03\x18\x22\xd0\x45\x48\x15\x86\xe8\ \xf3\xbf\x23\xc0\x18\x8f\x24\x01\x6c\x69\xc7\x52\x74\x2c\x13\x3a\ \x5f\x46\xef\x4f\x57\x50\x89\xa8\x80\x51\xb7\x7c\x1e\x52\x00\x11\ \x52\x02\x77\x1c\x52\x28\xeb\xce\xd2\x73\x19\xfa\xfb\x08\x81\x9e\ \xd3\x8e\x97\xe8\x58\xfe\x77\x04\x18\x2d\xf5\xf5\x21\xe0\x33\x00\ \xa6\x90\x35\xeb\xe7\x9b\x06\x50\x07\xa0\x26\x22\x90\x43\x28\x2b\ \xb0\x35\x17\xc0\x63\x9e\x93\xd0\x5c\x40\x31\x14\xf5\x47\xbd\x77\ \x18\xc0\x20\x11\x42\x27\x43\x01\x40\x3f\x11\x42\x27\xc2\xc0\xc9\ \xe0\x1a\xde\x6b\x02\x70\x02\x33\xad\x1d\xab\x21\xe0\xed\x10\xa8\ \x75\xb4\x99\x11\xe4\x49\x11\x61\xc6\xca\x0c\x26\xeb\xa1\x22\xfe\ \x11\xda\x17\x23\xfe\x3e\x48\x5b\x21\xe4\x06\xfa\x89\x28\xea\x91\ \xa5\xf7\x89\xdf\x46\x02\x28\x7f\xce\x35\xf9\x6f\x0a\x01\x9f\x01\ \xd0\x48\xc0\x22\x82\x10\x61\x77\xe1\x31\xc2\xb6\xd9\xa2\x45\x8b\ \xea\x97\x2c\x59\xd2\x70\xe6\x99\x67\x36\xce\x99\x33\xa7\x61\xc6\ \x8c\x19\xf5\xa9\x54\x2a\x91\x4c\x26\xad\x64\x32\x69\xa5\xd3\xe9\ \xa4\x6d\xdb\x16\x00\x14\x8b\xc5\x52\x36\x9b\xcd\xe7\xf3\xf9\x52\ \x3e\x9f\x2f\xe5\x72\xb9\xc2\xc1\x83\x07\x07\xf6\xed\xdb\xd7\xf7\ \xca\x2b\xaf\x1c\xdd\xb9\x73\x67\xdf\xee\xdd\xbb\x07\x8a\xc5\x62\ \x54\x30\xa8\x64\x7d\x30\x42\x1d\x72\x00\x8e\x86\xac\xbf\x08\xe0\ \x88\xe6\x06\x84\x16\x37\xfc\x56\x10\x80\x03\x68\xd0\xa4\xdd\x00\ \x30\x95\xc0\xd4\x55\xa0\x31\x14\xec\x99\xf4\x9e\xba\x70\x10\xd8\ \xd2\xd2\x62\xaf\x5a\xb5\x6a\xd6\x25\x97\x5c\xd2\x76\xee\xb9\xe7\ \xb6\xb5\xb6\xb6\x36\x99\xa6\x39\xa9\xa9\xa0\xe3\x38\x6e\x77\x77\ \xf7\x91\x17\x5e\x78\xa1\x73\xfb\xf6\xed\x9d\x9b\x36\x6d\x3a\xd0\ \xd3\xd3\x53\x8c\x08\x02\x07\x09\x50\x27\x74\xfc\x68\xc8\xfa\x87\ \x00\x1c\xd3\x62\x8d\x02\x80\xbe\x77\x5b\x0d\xde\x6d\x02\x24\x08\ \x7c\x65\xf5\xb5\x04\xbe\xa1\x59\x7c\x73\xc8\xef\xa7\xe8\x3d\x35\ \xfa\x17\x5d\x76\xd9\x65\xcd\xd7\x5f\x7f\xfd\xbc\xc5\x8b\x17\x9f\ \xda\xde\xde\x3e\x9d\x73\xce\xdf\xcd\x1f\x22\x84\x10\x1d\x1d\x1d\ \x87\x76\xed\xda\xb5\xff\xde\x7b\xef\xdd\xb3\x79\xf3\xe6\xde\xd0\ \x5b\x86\x09\xe0\x5c\x28\x1e\xe8\xd5\xac\xdd\xa5\xf7\x0c\x69\x6a\ \xd0\xf7\x6e\x66\x0b\xef\x26\x01\x6a\x35\x2b\x37\x09\x68\x25\xed\ \x16\x80\x69\x21\x90\xd3\xa4\x02\x7e\x7c\x70\xfa\xe9\xa7\xa7\x6f\ \xba\xe9\xa6\x33\x2e\xbf\xfc\xf2\x33\xda\xda\xda\x5a\x4e\xa6\xf4\ \xa5\xb3\xb3\xb3\xe7\xb1\xc7\x1e\x7b\xf5\xb6\xdb\x6e\x7b\xf5\x8d\ \x37\xde\xc8\x86\xfc\xfc\x51\xda\xeb\xe4\x38\x4c\xee\x43\xb9\x8a\ \x5e\x4d\x35\x86\x34\x52\xbc\xef\x09\xc0\xc8\x82\x13\x9a\x45\x4f\ \xd3\x52\xb2\x06\x02\x9a\x57\x92\xff\x1b\x6e\xb8\xa1\x6d\xed\xda\ \xb5\x4b\x16\x2e\x5c\x38\xfb\xdd\xb6\xf4\x89\x28\xc3\xcb\x2f\xbf\ \xfc\xf6\x86\x0d\x1b\x76\xde\x7d\xf7\xdd\x9d\x63\xb8\x01\x41\xaf\ \xfb\xb4\xd4\xf3\xb0\xa6\x18\x05\x52\x07\xf9\x7e\x26\x00\x27\x30\ \x2d\xfa\xbf\xa6\x10\xe0\xca\x1d\xcc\xd0\x88\x61\x01\x68\x21\x37\ \x00\xce\x39\xd6\xae\x5d\x3b\x67\xdd\xba\x75\x1f\x6a\x6f\x6f\x6f\ \xc5\xfb\xf0\xd1\xd1\xd1\xd1\x7d\xc7\x1d\x77\x3c\xbb\x61\xc3\x86\ \x7d\x42\xf8\xae\x7d\x04\x40\x8f\x66\xfd\x05\x00\x07\x35\xd9\xef\ \xa3\x6c\x41\xd2\x7b\x8e\x9e\xc8\xb8\xe0\x44\x12\xc0\x20\xf0\x4d\ \xda\xa6\x69\x56\x5d\x4f\xaf\xb9\xa6\x10\x8d\x00\x18\xe7\x1c\x5f\ \xf9\xca\x57\xe6\xdd\x78\xe3\x8d\x4b\x67\xce\x9c\x39\x0d\xbf\x01\ \x8f\xae\xae\xae\xc3\x77\xde\x79\xe7\x8e\xef\x7c\xe7\x3b\x7b\x88\ \x08\x92\x80\x55\x16\x2e\xc8\xfa\x07\x34\xb5\x38\x4c\x2e\xc1\xa1\ \xf7\xba\xef\x27\x02\x58\x9a\xac\xdb\x64\xe9\x06\xbd\x9e\x46\x04\ \x50\xee\x60\x86\x4a\xe5\x96\x2f\x5f\xde\xb8\x71\xe3\xc6\x15\xf3\ \xe6\xcd\x3b\x05\xbf\x81\x8f\x3d\x7b\xf6\xbc\xb3\x66\xcd\x9a\x2d\ \x5b\xb7\x6e\x3d\xaa\xa5\x90\x07\x35\xd9\x1f\x20\xe0\x05\x01\x7e\ \x90\xd2\x46\xe5\x2e\x4a\xef\x07\x02\x24\xc8\xa2\x19\x01\xdc\x82\ \x60\x78\x76\x16\x82\x41\x99\x06\x0a\x04\xd1\xdc\xdc\x6c\xff\xe0\ \x07\x3f\xf8\xd0\x27\x3e\xf1\x89\xc5\x86\x61\x18\xf8\x0d\x7e\xb8\ \xae\xeb\x3e\xfc\xf0\xc3\xbb\x3e\xff\xf9\xcf\x3f\xdb\xdb\xdb\xab\ \xd2\xc8\x5e\x2d\x16\x28\x02\x38\x80\x60\xf8\xb9\x87\x08\x22\x49\ \x31\x26\x35\x43\x30\x4e\x20\xf8\x19\x0d\xfc\x24\x80\x53\x10\x8c\ \xc9\xb7\x52\x3c\x80\xb5\x6b\xd7\xb6\xff\xe4\x27\x3f\xb9\xe6\xbc\ \xf3\xce\x9b\x73\xb2\x07\x78\x93\x12\x14\x71\xce\x17\x2c\x58\x30\ \xf3\x86\x1b\x6e\x38\x23\x9b\xcd\x1e\x7b\xfe\xf9\xe7\xfb\x11\x8c\ \x65\x8c\xd0\xf5\xaa\x25\xd0\x5d\x0a\x8a\x4b\xb4\xa5\x68\xef\x9e\ \x8c\x0a\x60\x2b\x3f\x4e\x3f\xa0\x59\x4b\xe7\x66\x22\x18\xad\x6b\ \x05\x60\xa6\x52\x29\xbe\x69\xd3\xa6\x8b\xae\xbc\xf2\xca\x25\x8c\ \x31\xfc\x36\x3e\xa4\x94\x78\xe4\x91\x47\x76\xae\x5a\xb5\xea\x97\ \xb9\x5c\x4e\x90\xbf\xef\x46\x30\xda\xd8\xa5\xa5\x8f\xbd\x94\x1a\ \xaa\xf8\xa1\x78\x32\x11\xc0\x84\x57\xc6\xe5\x21\xf0\x6b\xc9\xc7\ \x33\xfd\xf9\xa2\x45\x8b\xea\x1e\x7c\xf0\xc1\x2b\xdf\xab\xe8\x3e\ \x57\x70\x70\x64\x20\x8b\xc1\x9c\x57\x8d\x9d\x9a\x49\x63\x6a\x7d\ \x0a\x09\xeb\xbd\xf1\x3e\x1d\x1d\x1d\xdd\xd7\x5c\x73\xcd\x23\xbb\ \x77\xef\x1e\x24\x80\x0f\x6a\x60\x1f\xd4\x6a\x02\x8a\x04\x02\x5e\ \x39\xd9\x39\x19\x08\x60\x10\xf8\x06\x59\xf8\x74\xfa\xde\x7a\x72\ \x01\xca\xdf\x4f\x03\x80\x9b\x6e\xba\xe9\x03\xb7\xde\x7a\xeb\x65\ \xe9\x74\x3a\x75\x22\x2f\xea\x9b\x5d\x7d\xd8\xb6\xfb\x6d\xbc\xf6\ \x76\x2f\xde\xe9\x1d\xc4\xe1\xbe\x1c\xfa\xb3\x79\x14\x4b\x2e\x84\ \xa4\x1f\xae\x7e\xbd\xf4\xac\xd1\xe0\x1c\x96\xc5\x31\x25\x93\x40\ \xcb\x94\x34\x4e\x99\x56\x8f\x33\xdb\x9b\xb0\x7c\x71\x3b\xda\xa7\ \x4f\x39\xa1\x24\xc8\x66\xb3\xb9\xaf\x7f\xfd\xeb\x9b\x6f\xbb\xed\ \xb6\xb7\xe8\xd0\x61\x2d\x2e\xe8\xa1\x00\x51\x02\x38\xa4\xb9\x87\ \x23\xc7\xeb\x0e\xd8\x24\x10\xa8\x89\x7c\xbb\xca\xeb\x39\xf9\x77\ \x55\xa9\x6b\x22\xd7\x80\x3b\xee\xb8\xe3\xbc\x35\x6b\xd6\x2c\xe3\ \x9c\x4f\xba\xe6\xf7\xf4\x0d\x63\xd3\xf6\x57\xf1\xcb\x17\xdf\xc1\ \x9b\xdd\x7d\x18\xca\x96\x60\x99\x1c\x09\x9b\x23\x61\x19\x48\x58\ \x26\x6c\xcb\x84\x6d\x5a\x30\x2d\x0e\xc3\x60\x30\x18\x87\x94\x12\ \x42\x4a\x38\x8e\x80\xe3\x3a\x28\x96\x5c\x94\x4a\x0e\x0a\x45\x07\ \x85\x92\x8b\x42\xc9\x41\xd1\x95\xa8\xcf\x24\x30\x6f\xd6\x54\x5c\ \x7c\x4e\x1b\x56\x7d\xec\x0c\x34\xd6\xa7\x4f\x44\x11\x49\x6e\xdc\ \xb8\x71\xdb\xba\x75\xeb\x7e\x45\x87\x8e\x12\xc8\x20\x12\xf4\x93\ \xf5\xab\xba\x41\x89\xfe\x2e\xdf\x2b\x02\xd4\x53\x00\x63\x92\x9f\ \x37\x28\x68\x69\xa5\xef\x9e\xa6\x0a\x3f\xf7\xdf\x7f\xff\x87\x57\ \xad\x5a\xf5\x7b\x93\x2b\xe5\x25\xfc\xe8\xb1\x5f\xe3\x67\x4f\xed\ \xc1\x5b\x5d\xfd\x30\x0c\x8e\x94\xcd\x91\x4e\x25\x90\x4e\xda\xa8\ \xa9\xc9\x20\x9d\x4e\xa2\x26\x9d\x41\x32\x99\x84\x6d\x5b\x30\x38\ \x03\x67\x0c\x8c\x01\x8c\x01\x52\x02\x42\x02\x42\x48\xb8\xb4\x95\ \x5c\x07\xb9\x6c\x0e\xd9\x5c\x16\xc3\xc3\x39\x64\xb3\x59\x64\x73\ \x05\xe4\x0b\x79\xe4\x8b\x2e\x1c\x17\x98\xdf\xd6\x88\xab\x2f\x9a\ \x87\xeb\x2f\x3b\x07\xa6\x31\xb9\xb1\xeb\xa6\x4d\x9b\x9e\x59\xbd\ \x7a\xf5\xd3\x5a\x61\xe8\x30\x81\xdc\x4d\x95\x44\x97\xe2\x03\x87\ \x02\xc7\x81\xf7\x82\x00\x29\x02\x97\x11\xf8\x76\x28\xe0\x9b\x0a\ \xa0\xd9\xb6\x6d\xf6\xe8\xa3\x8f\xae\x58\xb6\x6c\xd9\x39\x93\x96\ \x4f\xbf\x73\x0c\xb7\xfe\xcb\x53\x78\xf6\xd5\x2e\x38\xae\x44\x3a\ \x61\x21\x93\xb6\x50\x53\x93\x41\x6d\x4d\x2d\x6a\x6b\x6b\x91\x4e\ \xa7\x60\x70\x06\xd3\xe0\x30\x38\xd3\x36\x94\x91\x40\x08\x40\xc8\ \x00\x7c\xc7\xa5\xe7\xa1\x63\xf9\x5c\x01\xc3\x23\xfd\x18\x1a\x1c\ \x46\x6e\x64\x04\x23\xb9\x02\xf2\xc5\x12\x4c\xd3\xc4\x47\xce\x9a\ \x85\x9b\xaf\xbb\x18\x6d\x2d\x75\x93\x46\x82\x6d\xdb\xb6\xbd\x78\ \xc5\x15\x57\x6c\xa1\x21\xe8\x5e\x4a\x01\xf5\xc0\xb0\x48\xcf\x25\ \x91\x24\xf7\x6e\x12\x40\x0d\xe6\x28\x17\x50\x47\x2e\xa0\x4d\x77\ \x01\xb6\x6d\xb3\xa7\x9e\x7a\xea\xca\x25\x4b\x96\xcc\x9b\x8c\x8b\ \xf2\xeb\x7d\xbd\xf8\xc6\x3f\xfd\x12\xbb\xf6\x1c\x82\x69\x30\xa4\ \x53\x09\xd4\x64\x52\xa8\xab\xad\x43\x6d\x7d\x2d\xd2\xe9\x0c\x81\ \x1e\x00\x6e\x6a\xe0\x27\x2d\x03\x0b\x5a\x53\x38\x6d\x5a\x12\x4d\ \x35\x26\x6a\x6c\x06\x21\x25\x06\x73\x0e\x0e\x0f\x39\xd8\x73\x28\ \x8f\x3d\x3d\x79\x14\x9c\x00\x7c\x8f\x00\x02\xae\x80\xff\xba\x98\ \x2f\x60\x68\xa8\x1f\xc3\xc3\x43\x18\x1e\x1e\x46\x2e\x57\x80\x2b\ \x80\xa5\x67\xce\xc2\x37\xaf\xbf\x08\xa7\xcd\x9c\x3a\x29\x24\xd8\ \xb9\x73\xe7\x9e\x0b\x2f\xbc\xf0\x11\x22\x81\xee\x02\x3a\xc9\x05\ \x0c\x6a\x2e\xa0\x77\x22\x41\x21\x9b\x20\x69\x94\xdf\xaf\x41\x30\ \xb0\x73\xaa\x76\x6c\x26\x00\x3c\xfe\xf8\xe3\x2b\x2e\xbd\xf4\xd2\ \x73\x8f\xf7\x42\x1c\xee\xcf\xe2\xc6\x3b\x1e\xc7\xd3\x2f\x1f\x80\ \x65\x71\x64\x92\x09\xd4\xd4\xd4\xa0\xbe\xa1\x1e\x99\x4c\x2d\x12\ \x09\x7b\x14\xe0\x61\xcb\x3f\xbf\xbd\x0e\x1f\x9d\x57\x8f\xba\x94\ \x01\x21\x04\xa4\x94\x91\xdb\x40\xce\xc5\xb6\xd7\x06\xf1\x52\x57\ \x6e\x94\x0a\xb8\xc2\x8b\x17\x84\x00\x5c\x21\xe0\x0a\x89\xe1\x81\ \x3e\x0c\x0d\x0e\x78\x44\xc8\xe6\x51\x12\x02\x1f\x3d\x67\x36\x36\ \xac\x5b\x89\xba\x74\xe2\xb8\x49\xf0\xc4\x13\x4f\xbc\xb0\x72\xe5\ \xca\x2d\xaa\xaa\x4c\x2e\xa0\x04\x60\x3f\x82\x01\xa4\xe1\x89\xc6\ \x03\x13\xc9\x7b\x6a\x48\xea\x4d\x2d\xe2\x9f\x49\x85\x8c\x24\x3d\ \x67\xf7\xdf\x7f\xff\x85\x57\x5d\x75\xd5\x92\xe3\xcd\x93\xff\xfe\ \xdf\x9f\xc3\xe7\x6f\xdb\x8c\xce\xc3\x03\xa8\x49\xa5\x50\x3f\xa5\ \x0e\x0d\x8d\xcd\x68\x98\xda\x88\x74\xa6\x16\xa6\x69\x82\x33\xe6\ \x6f\x06\x67\xe0\x3c\x78\x6d\x9b\x1c\x57\x2f\x69\xc1\xb2\x33\xa6\ \x22\x69\x1b\x50\x35\x07\xc6\x58\xe4\x96\xb4\x38\xe6\x4f\x4f\xa0\ \x26\xc1\xb1\xb7\xb7\x08\x21\x24\xa4\x0c\x66\x8c\xa8\xcb\xab\x5e\ \xdb\xc9\x14\xd2\x35\xf5\x30\x2d\x03\xdc\x60\x60\x42\xe2\xad\x03\ \x47\x71\xcf\x63\x2f\xc2\x32\x0d\x9c\x3f\x6f\xc6\x71\x11\x60\xee\ \xdc\xb9\xd3\xe7\xcf\x9f\xcf\x7f\xf2\x93\x9f\x74\xd2\xb5\x57\x3d\ \x87\x09\x52\x80\x14\x11\x80\x69\x95\xc4\x13\x46\x00\xd5\xbd\xc3\ \xb5\x1a\xfe\x54\x92\x7c\x4e\xd5\x3e\xf3\xf6\xdb\x6f\x3f\xf7\x86\ \x1b\x6e\xb8\xf8\x78\x7e\xf8\x5b\x5d\x7d\xb8\xe2\xaf\x1e\xc0\x63\ \xcf\xef\x83\x65\x19\xa8\xab\xad\x41\x7d\x43\x03\xea\x1b\x1a\x91\ \xa9\xa9\x83\x69\x9a\x01\xd8\xfa\xa6\x93\x81\x31\x7c\xe6\xc2\x99\ \x58\xdc\x5e\x3f\x0a\xe8\xb1\x48\x00\x00\xad\x53\x6c\xd4\xa7\x38\ \x5e\x3d\x98\xf7\x03\x45\x29\x83\xa0\x11\x0c\x90\xbe\x80\x32\x58\ \x89\x34\x52\xa9\x0c\xb8\xc1\x61\x30\x89\x62\xb1\x84\xed\xbb\xf6\ \xe1\x3f\x77\xbc\x85\x65\xe7\x9d\x8a\xba\x4c\x72\xc2\xd7\x62\xe1\ \xc2\x85\xa7\x34\x34\x34\x64\x37\x6f\xde\xdc\x43\x41\xf7\x00\x5d\ \x7b\xd5\x9d\x9c\x24\x12\xd8\x5a\xd9\xf8\x84\x10\xa0\x41\x03\xbd\ \x86\xfe\x63\x55\xe8\x99\x01\x20\xb5\x6e\xdd\xba\x39\xdf\xf8\xc6\ \x37\x7e\x9f\x1d\x47\x79\xef\x9f\xb7\xbc\x8c\xeb\xbe\xfd\x28\xfa\ \x87\x73\xc8\x64\x92\xa8\xad\xab\x43\xdd\x94\x46\xd4\xd4\x4d\x81\ \x9d\x48\x44\x82\x1d\xb5\x2d\x3f\x6b\x1a\x3e\x76\x46\xd3\x28\x70\ \xc7\x03\x5f\x3d\x9f\x5e\x6f\x23\x5b\x14\x78\xe7\x58\xd1\x03\x5d\ \xb2\x32\xeb\x57\xca\x00\xda\x33\x6e\x20\x91\xaa\x81\x61\x5a\xe0\ \x0c\x00\x93\xe8\xed\x1b\xc2\x7d\x5b\x5f\xc6\xac\x69\x53\xb0\xa0\ \xad\x71\xc2\x24\xb8\xe0\x82\x0b\xe6\x0c\x0c\x0c\x1c\x7a\xee\xb9\ \xe7\x06\x09\xe8\x21\x52\xe2\x11\xcd\x35\xe7\x49\x99\x73\x27\x82\ \x00\x7a\xcf\xbe\xf2\xfb\xa7\xd0\xbe\x01\xc0\xd4\xf3\xcf\x3f\xbf\ \xee\xbe\xfb\xee\xfb\xb4\x6a\xb6\x8c\x3d\x50\x22\x04\x3e\xf7\x8f\ \x8f\x61\xe3\xcf\xfe\x07\x06\x07\x52\x99\x0c\xea\xea\xa6\xa0\xa6\ \x6e\x0a\x52\x99\x5a\x18\x06\x1f\x17\x74\x06\x80\x73\x86\xba\x94\ \x89\x3f\x5d\xd6\x0e\xcb\xe4\xb1\xad\x5f\x7f\xdd\x36\x35\x81\xe7\ \x3a\x46\x50\x74\x84\xe7\xff\xa5\xf4\x49\xa0\xdb\x99\xf4\xdd\x16\ \x60\xda\x09\xd8\xc9\xb4\x8f\x4a\xa1\x58\xc4\x7f\x3e\xbd\x07\x9d\ \x47\x86\xb0\x62\x71\x3b\xf8\x04\x6c\x83\x31\xc6\x2e\xba\xe8\xa2\ \x39\x4f\x3c\xf1\xc4\xeb\xdd\xdd\xdd\xa0\x60\x30\xaf\x29\x82\xad\ \x8d\x25\x94\xaa\x0d\x08\xab\x25\x00\x43\x30\xbc\xdb\x42\x24\x68\ \xd2\x54\xa0\x35\x93\xc9\x98\xdb\xb6\x6d\xbb\xba\xa5\xa5\xa5\x61\ \xa2\x39\xfd\x65\x5f\x7d\x00\x4f\xfd\x7a\x3f\x12\x96\x8d\x54\x4d\ \x06\xb5\xf5\x0d\x48\x65\x6a\x91\x48\xa6\xaa\x00\xde\x03\x8c\x53\ \x7e\xbf\xf2\xec\x66\xcc\x6f\xad\x89\x04\x3b\x0e\x01\x2c\x93\x23\ \x57\x74\xb1\xf7\x70\x3e\xb0\x7a\xa9\x59\x3f\xca\x63\x02\x48\x0f\ \x19\xc6\x0d\x58\x89\x94\xf7\x3d\x12\x90\x52\xe0\xc5\x37\xba\xf1\ \xe4\x4b\x07\xf0\xa9\x8f\xcc\x9b\x50\xed\xc0\xb2\x2c\x73\xd9\xb2\ \x65\xad\x3f\xfa\xd1\x8f\x5e\x2d\x95\x4a\x29\x02\x9c\x1c\x12\xb2\ \x44\x02\xe5\x0a\xb2\x55\x0d\x4e\xc5\x08\xfc\x54\x91\x47\x4d\xd0\ \x6c\xd0\xa4\x9f\xdd\x77\xdf\x7d\x1f\x99\x3b\x77\xee\x84\x6a\xfb\ \xc7\x06\xf3\xb8\xe8\xcb\xf7\xe1\x95\x8e\xc3\x48\x24\x93\x48\xd6\ \xd4\x22\x53\xdb\x80\x44\x2a\x03\xd3\x4e\x8c\x11\x24\xea\x60\x78\ \xff\x04\xf9\xe8\xb3\x4e\xa9\x85\xeb\xba\x70\x5d\xd7\x8f\xfa\x39\ \xf7\xd4\x80\x73\x5e\x71\x33\x0c\x63\xd4\xb1\x73\x4e\xa9\x29\xfb\ \xbf\x74\xd8\x25\xe0\xab\xc2\x28\xab\xe1\x06\xd2\x75\x8d\xc8\x4c\ \x69\x40\xba\xb6\x06\xa9\x54\x12\xbb\xf6\x74\xe1\x8a\xbf\xda\x84\ \xfe\xe1\x89\x8d\xea\xce\x9d\x3b\xb7\xf5\xbe\xfb\xee\xfb\x88\x7e\ \xed\x09\x0b\x35\x3f\x42\xc7\x6a\x52\x14\x40\x49\xbc\x41\x51\x3f\ \xa7\x4a\x9f\x4d\x2a\x50\xbb\x6e\xdd\xba\x39\xeb\xd6\xad\x5b\x3e\ \x11\xb7\x7f\xf0\xc8\x10\x96\xfd\x9f\x7f\x43\xf7\xd1\x21\xd8\xc9\ \x04\x92\x99\x1a\xa4\x6a\xea\x61\xa7\xd2\xb0\x2c\x7b\x1c\x6b\x0f\ \x2a\x7a\xea\x18\x03\x43\x26\x69\xe0\x0f\xce\x9f\x56\x96\x4d\xa8\ \xbd\x22\x40\x25\xeb\x8f\x52\x87\xba\xb4\x89\xad\xaf\x1e\x83\xe3\ \x52\x30\x08\x59\x46\x86\x30\x39\x74\x77\x00\x30\x18\x56\x02\x8c\ \xca\xce\x90\x12\x87\x8e\x0c\xe0\xbf\x76\xbc\x85\x2b\x96\x7e\x00\ \xb5\x29\x3b\xf6\x35\x9b\x37\x6f\xde\xcc\xfe\xfe\x7e\x15\x0f\x80\ \x7c\xbe\xca\x0a\x92\x14\x1f\x58\xd5\x04\x84\xbc\x4a\xeb\x57\xfd\ \x7c\x06\x82\x99\x3c\x36\x80\xa9\xcd\xcd\xcd\xf6\xcd\x37\xdf\xbc\ \x62\x22\xe0\x1f\x1d\xcc\xe3\xf2\xaf\xfd\x18\x87\xfb\x46\x60\x27\ \x12\x48\xa4\x32\x48\xa4\x6b\x61\x26\x92\x30\x4c\x2b\x08\xb6\x22\ \x2f\xb2\x2c\x03\xc2\x8b\xce\xbd\x63\x75\x29\xb3\xcc\xfa\x85\x10\ \x65\xcf\x85\x10\x91\x4a\x10\x65\xfd\x9c\x73\x18\x9c\xa3\x3e\x65\ \xf9\xdf\xaf\x14\x07\x88\x76\x05\x11\xfe\x1b\xc9\x74\x1d\xd2\xb5\ \xf5\x48\xa6\x33\x48\x26\x53\xe8\x3c\xd4\x8f\x6b\x6e\x7e\x00\x7d\ \xc3\xf9\x89\xc4\x03\xb8\xf9\xe6\x9b\x57\x34\x37\x37\xdb\x14\x90\ \xab\x2a\x6c\x1d\x61\x34\x85\x30\xab\x39\x5e\x17\xc0\xe9\x8b\xd5\ \x14\x2e\x55\x04\x02\x05\x82\xec\xae\xbb\xee\x5a\xda\xd0\xd0\x10\ \xbb\x06\x9a\x2f\x38\xf8\xc4\xdf\x3c\x80\xee\xa3\x83\xb0\xac\x04\ \xec\x44\x1a\x89\x74\x2d\x0c\x2b\x05\x4e\xe0\x47\xca\x7e\x04\x21\ \xa4\x66\x95\x42\x00\x26\x47\x19\xd8\x51\x24\x70\x5d\xb7\x4c\x11\ \xc6\xdb\x6c\x93\x95\x13\x8d\x46\x10\xa5\x26\x03\xba\xd2\x8c\x76\ \x07\x0c\x89\xb4\xa7\x6e\x89\x74\x1a\x56\x22\x81\x8e\x83\x03\xf8\ \xf4\xff\xfd\x09\xf2\x85\xf8\xa3\xba\x0d\x0d\x0d\x75\x77\xdd\x75\ \xd7\x52\x6d\xcc\x45\x0d\xbc\x31\xc2\x4a\xc7\x6e\xc2\x04\xa8\x09\ \x7d\x61\x1d\x49\x4b\x2d\x80\xcc\xf2\xe5\xcb\x1b\x27\x52\xec\x11\ \x52\x62\xf5\xb7\x1e\xc2\x9b\xef\x1c\x83\x6d\xd9\xb0\x93\x29\xd8\ \xe9\x5a\x30\x23\x01\x6e\x59\xd1\x7e\xde\x07\x5e\x55\xed\x02\xe0\ \x55\x75\x4e\x45\xe9\x03\xd9\xc0\xfa\xc7\x52\x82\x70\x7c\x30\xd6\ \x76\x6c\xd8\xf1\xbf\x5f\xaf\x07\xf8\xe7\x44\xe7\x27\xca\x48\x20\ \x7d\xa5\x50\x31\x81\x47\x82\x5a\x24\xd3\x69\xd8\x09\x0b\xaf\xee\ \x3f\x8c\xeb\xbf\xfb\x08\x84\x88\x3f\xa0\x77\xd5\x55\x57\x2d\x59\ \xbe\x7c\x79\x23\x82\x69\x76\x56\x08\xab\x71\x55\x80\x8f\xf3\xb7\ \x0c\xed\x55\x13\xa7\x6a\xf7\x6a\xe6\x9c\x63\xe3\xc6\x8d\x2b\x0c\ \x23\x7e\x38\xfb\xd7\x77\xff\x1c\x4f\xbf\xf4\x0e\x4c\xcb\x80\x69\ \x27\x61\xa5\xd2\x60\xa6\x05\x6e\xd9\xa3\x83\xbb\x51\xe5\xda\x80\ \x10\x61\xe0\xd5\xf3\x63\x23\x25\xe4\x8a\xee\x98\xd6\x1f\x7e\xae\ \x14\x21\x0a\xfc\x6c\x51\x60\x20\x57\x2a\x53\x00\xa1\x40\xd7\x8a\ \x44\x08\xef\xcb\x82\x45\xaf\x6c\xc4\x0d\x13\x76\xaa\x16\x76\x32\ \x0d\x3b\x91\x86\x69\x98\x78\xee\xd5\x2e\xdc\xfc\x4f\xbf\x8c\xdf\ \x88\x61\x18\x7c\xe3\xc6\x8d\x2b\xa8\x93\x4e\x8d\xcd\x4c\xd5\x46\ \x6a\x75\x0c\x63\x07\x81\xaa\x4f\xad\x4e\x63\xd8\x14\xfa\xe2\xfa\ \xaf\x7e\xf5\xab\xf3\xfe\xf0\x0f\xff\xf0\x82\xb8\x27\xfd\xe8\xf3\ \xfb\xf0\xb7\xf7\x3d\x0d\x30\x06\xcb\x4e\xc1\x4e\x67\x60\xd8\x29\ \x18\x66\x02\xe0\x46\x10\xdc\xc1\x0b\xf0\x78\x59\x90\x16\x15\xac\ \x51\x00\x48\xef\x87\x64\x90\x90\x98\x35\xc5\xc2\xf4\x3a\x2b\x52\ \x8e\xc3\x32\x1d\x7e\x4f\x38\x48\x7c\x7e\x6f\x3f\x9e\xdb\xdb\x1f\ \x92\xff\x40\xcd\x50\x16\x18\x06\x75\x82\xe8\xb8\xc5\x53\x02\xc6\ \x39\x84\xe3\x91\x2f\x91\x4c\xe2\xa5\xbd\x07\xf1\x81\x99\x8d\x38\ \x6d\x66\xbc\x2c\xba\xa9\xa9\xa9\xbe\x50\x28\x1c\x7d\xea\xa9\xa7\ \xfa\xb4\xfc\x5f\x4d\x6b\x57\x8b\x59\x89\x4a\x25\x62\x3e\xce\x70\ \x2f\x34\xeb\x57\xfd\x7e\x53\x39\xe7\xb8\xf1\xc6\x1b\x97\xc6\x05\ \xbf\xfb\xe8\x30\xfe\xe6\x9e\xed\xe0\xa6\x09\xd3\xb6\x61\x27\x92\ \xe0\x56\x12\xdc\xb0\xc0\x0c\x33\x24\xf9\x2a\xc5\x22\x2b\x13\x9e\ \x02\xe8\xb5\xf9\x4a\x0a\x20\x04\xf0\xcc\x5b\x83\x91\x31\x40\x38\ \x18\xac\x26\x3e\xf8\xf9\x6b\x47\xcb\xbe\x5b\xe8\x2a\xe0\x9f\x5f\ \x70\xce\xbe\x72\x85\x82\x17\x29\x83\xd1\x37\xc3\xb0\x61\xa5\xd3\ \x48\x65\x6a\x60\xd8\x29\x30\xd3\xc6\xd7\xee\xde\x86\xee\xa3\xc3\ \xb1\x95\xe0\xc6\x1b\x6f\x5c\x4a\x2a\x30\x55\xab\xd9\xe8\xd8\xa5\ \xe2\x2a\x80\xf2\xf3\x49\xad\xe9\x43\xcd\xe0\x9d\xb2\x6e\xdd\xba\ \xb9\x9f\xfe\xf4\xa7\xcf\x8f\x7b\xa2\x9f\xfd\xfb\x87\xd1\xd9\x9b\ \x83\x95\xcc\x78\x45\x96\x54\x06\xdc\xb4\xc1\x2c\x0b\x52\x72\xb2\ \xea\x70\x5a\xa7\x8e\x8d\x56\x00\xb0\xa0\x16\x0f\x6a\xee\x50\xfb\ \xde\x61\x07\x73\x9b\x13\x68\xcc\x98\xa3\x2c\x5c\x0f\xd6\x2a\x29\ \x81\x7a\xfe\xe2\xfe\x41\xfc\x78\x47\xb7\x0f\xb6\x0f\xba\x92\x7f\ \x68\xc7\xfd\xd4\x4f\x0b\x0c\xf5\x22\x91\x46\x0e\xc6\x0d\x48\x29\ \x61\x1a\x16\x24\x63\x90\x52\x20\x9b\x2f\x60\xe7\xeb\x07\xb0\xfa\ \x92\x33\x63\x5d\xd7\xba\xba\xba\x4c\x7f\x7f\x7f\xcf\x8e\x1d\x3b\ \xd4\x14\x75\xb5\x98\x95\xab\xa5\x82\x79\x44\xcc\x30\xe2\xe3\x58\ \x7f\xad\x66\xfd\xfe\xfe\x4b\x5f\xfa\x52\x6c\xeb\xff\xd7\x6d\xaf\ \xe2\x85\xb7\x7a\x61\x58\x49\x58\xc9\x34\x12\x99\x29\x00\x37\xc1\ \xb9\xb7\x72\x8b\xf0\x2e\x65\x44\x74\xaf\x0f\xc4\xc8\x32\x00\x84\ \x90\x81\x35\x8a\xf2\xbd\x2b\x24\xee\xdb\x71\x04\x83\xb9\x52\x6c\ \xeb\x57\xcf\x8f\x0d\x17\x70\xe7\x96\x7d\x81\xc2\xf8\x24\x50\x16\ \x2e\x43\x79\xbf\xf7\xcc\x53\x83\xd1\xb1\x0c\xc0\xbc\xf7\x32\xe6\ \xf5\x20\x5a\x36\xcc\x54\x0d\x0c\x2b\x01\x6e\x26\xc0\x4d\x1b\xbf\ \x7a\xab\x07\xf7\x6d\x79\x35\xb6\x0a\x68\x98\x34\x86\xf6\xb5\x63\ \xa9\x40\x25\x05\x50\x39\x7f\x33\xe5\x98\xd3\x28\xa5\x98\xfa\xb9\ \xcf\x7d\xee\xd4\xeb\xae\xbb\x2e\x16\x01\x86\xb2\x45\x7c\xf1\xf6\ \xff\x42\x41\x1a\x30\x12\x29\xcf\xe7\x27\x6a\xbc\x8b\x62\x9a\x90\ \x92\x7b\x8d\x9a\x5a\x91\x47\x19\xb7\x52\x81\xb2\x2e\x4e\x46\x8b\ \xfd\x31\x46\x85\x50\x36\xba\xbd\x41\x32\x64\x8b\x02\x1d\x47\xf2\ \x38\x67\x56\x1a\x26\x1f\x1d\x03\x8c\x15\x1f\x8c\x14\x5c\x7c\xfb\ \x91\xbd\x38\x70\x34\x5f\x6e\xfd\xd0\x46\x03\x95\xec\xab\x3d\xc5\ \x1f\xba\xbf\xd7\xd3\x56\xa5\x4e\xea\x35\x23\x22\x00\x80\x14\x12\ \xae\xeb\xf5\x18\xfc\xcf\x6b\xef\xe0\x33\x2b\xce\x8a\xd5\xa5\xdc\ \xd0\xd0\x50\xdb\xdd\xdd\xdd\xb5\x7b\xf7\xee\x61\x6d\x30\x68\x90\ \x8c\x7c\x80\xf0\x1c\xa9\x86\x00\x09\x92\xfc\x1a\xda\xa6\x22\x98\ \xaa\x9d\xbc\xe7\x9e\x7b\x96\x4f\x9f\x3e\x3d\x56\xa4\xf2\xb5\x1f\ \xfd\x1c\x2f\x76\x1c\xf1\x80\xb7\x52\x30\xec\xb4\x67\x05\x30\x20\ \xc1\x7d\x19\x1d\x0d\x3c\x2b\x03\xde\x77\x05\x32\x20\x41\x99\x3b\ \xf0\x8b\x32\xc1\x5f\x8e\x8d\x08\xbc\xf0\x4e\x0e\xa7\x35\x5b\xa8\ \x4d\x1a\x63\x82\xae\xfe\xf6\xf6\x91\x1c\xbe\xf5\xf0\x3e\x74\x1e\ \xc9\x97\xa5\x7a\xe1\x2a\x60\x90\xf6\xb1\xb2\xd7\xfa\x28\xa1\xaf\ \x0c\x8c\x88\xe3\x0f\x1d\x7a\x84\xf1\xd2\x43\xee\xa9\x8f\xe3\x42\ \x08\x07\x43\xd9\x1c\x0e\xf4\x0e\xe2\xf7\x97\x7e\x20\x96\x0a\xb4\ \xb5\xb5\xa5\xee\xba\xeb\xae\xd7\xe8\xe5\x30\x49\x7e\x2e\x14\x1c\ \xba\xe3\xb9\x80\x94\x56\x03\x80\x96\x4f\xd6\xce\x9b\x37\x2f\x73\ \xd6\x59\x67\xcd\x8e\x73\x52\x6f\xf7\x0c\xe0\xbf\x76\xbc\x01\x6e\ \xda\xe0\x86\x0d\x66\xd9\x00\x37\x20\xc3\xd5\x3c\x84\x73\xec\xf2\ \xd7\xca\xf2\x84\x90\xbe\xfc\xbb\x32\x70\x01\x7e\xb7\x8e\x84\xd6\ \xce\xe5\x3d\x3f\x38\x50\xc4\xdf\x6d\xee\xc1\x3f\x3f\x7b\x04\x9d\ \x47\xf3\x65\xee\x40\x97\xfc\x8e\xde\x2c\x7e\xf0\xdf\x5d\xf8\xeb\ \x07\xf7\xe2\x50\x7f\x51\x73\x2f\xf4\xfd\x22\x18\x6b\x10\xc2\x3b\ \x07\x48\x16\x04\xa8\x32\xc0\x17\x9a\xab\x28\x4b\x0f\x75\x45\x40\ \x40\x58\x66\x98\xe0\xa6\x05\x70\x1b\x30\x2c\x3c\xf8\xe4\x6b\xe8\ \x38\xd8\x1f\x8b\x00\x67\x9d\x75\xd6\xec\x79\xf3\xe6\xa9\x8c\x4d\ \xd5\x6f\x74\x2c\x47\xb9\x01\xb3\xc2\xb0\xaf\xea\xf1\x4f\x69\x6d\ \x5e\xfc\xcb\x5f\xfe\xf2\xfc\xb8\xd3\xb7\xbe\xfb\xc0\x73\x10\xe0\ \x30\x0c\xcb\x0b\xf8\x98\xe9\x5d\x70\xba\x18\x2e\xc9\x27\x34\x0b\ \xf2\xba\x75\x59\xf9\x40\x8b\x60\x00\x27\xd3\x17\x5e\x84\x0e\x21\ \x89\xc2\x0c\x4c\x4a\x48\x06\x7f\x34\x90\xd1\x31\xc6\x02\x30\x9e\ \x7c\x6b\x04\x4f\xbd\x35\x82\xa6\x1a\x13\xb3\x1a\x2c\x34\xa4\x4d\ \x30\xc6\xd0\x97\x75\xd1\x79\xb4\x80\x23\x23\x8e\xa6\x06\x7a\xe1\ \x29\xf4\x5c\x06\xed\x37\x0a\xd2\xa0\x1a\xa9\x14\xa1\xbc\x54\xac\ \x3e\xeb\xb7\x22\xfb\xef\x21\x25\x60\x26\x60\x98\xe0\x86\x09\x21\ \x4d\x14\x1d\x86\x6f\xdd\xff\x2c\xee\xbe\xe9\xf2\xaa\xaf\x35\xe7\ \x9c\x7f\xf9\xcb\x5f\x9e\xff\xc5\x2f\x7e\x71\x17\x61\x36\x44\x18\ \x4a\xc2\x34\x39\x1e\x01\x2c\xad\x84\xa8\x33\xa8\x1e\x00\xae\xb8\ \xe2\x8a\x85\xb1\x06\x7a\x8e\x0e\x63\xcb\xce\xb7\x20\x8d\x14\x98\ \x49\xa9\x9e\x61\x06\x72\x1a\x2a\xe5\x2a\xe0\x85\x00\x81\xad\x03\ \x5f\x4e\x02\x46\x7e\x40\x0a\x0f\x78\xc6\x00\x4e\x17\x35\xc8\x24\ \x74\xb7\x11\xf4\xef\xf4\x0c\x96\x70\x78\xa8\xa4\x0d\xd8\x84\x4a\ \xcd\x15\xc0\xf3\x88\xca\xfc\xb2\x8e\x2a\xee\x04\xc3\xc0\xc1\xdf\ \xf5\xef\x56\xa4\x00\x11\x24\x28\x0b\x85\x2a\x89\xcc\x84\xc3\x4c\ \xb8\xcc\x00\x33\x4c\x3c\xf4\xd4\x1e\xdc\xfa\x47\x1f\xc1\x8c\xc6\ \x9a\xaa\xaf\x39\x61\xb4\x8b\x30\x1b\x22\x0c\x73\x84\xa9\x1a\x24\ \x2a\x55\x72\x01\x89\x90\x54\xa8\x2a\x52\x66\xe5\xca\x95\x4d\x6d\ \x6d\x6d\xb1\xe6\xeb\x7f\xe7\xdf\x9f\x43\x51\x30\x08\x66\x00\xdc\ \x04\x33\xac\xb2\x54\x28\xf0\xad\x14\xbd\x8b\x28\xe9\x97\x65\x2e\ \x21\x88\xf6\xe5\xa8\xbd\xab\xbb\x05\x3a\xee\x6a\xf2\xed\x3f\x97\ \xe5\xcf\xf5\xd7\xae\x08\xbb\x91\xf2\xef\x75\x7d\xf2\xaa\xcf\x79\ \x01\x9c\x28\x23\x49\x90\x0e\x86\x07\xaa\x7c\x25\x50\xcd\x25\x44\ \x18\x21\x24\xc0\x0c\x94\x04\x00\xc3\x04\x0c\x1b\x05\x07\xb8\xf5\ \x5f\x9f\x89\x1b\x07\x4c\x5b\xb9\x72\x65\x93\x8e\x5d\x08\xd3\xc4\ \x58\x31\x80\xad\xbd\xd9\xa2\x2d\x0d\x00\x7f\xfc\xc7\x7f\x3c\x3f\ \xce\x89\x38\xae\xc0\xe3\xcf\xbf\x09\x6e\x58\xe0\xa6\x89\x92\xe0\ \x90\x30\xcb\x2c\x4e\xf9\xd4\xa0\xd6\x3f\x3a\x06\x08\xa7\x77\x65\ \xc5\x18\x0d\xac\xb0\xbf\x76\x65\x00\x66\x25\xf0\xdd\x88\xe3\x42\ \x27\x41\x98\x18\x22\x08\xf2\x5c\xe1\x49\xb7\xf0\x83\x43\xf8\x45\ \x2a\x05\xb6\x10\x5a\xba\x28\xc9\xad\x91\x1b\xf0\x33\x09\xfa\xbc\ \x23\x81\x91\xa2\x0b\xc9\x0c\x80\x19\x00\xe3\x80\x61\xe2\xa1\xa7\ \xf7\xc0\x71\xe3\x2d\x10\xa2\x61\x95\xd6\x70\x4c\x85\x30\xae\xa8\ \x00\x36\xf9\x8b\xb4\xce\x9c\xc5\x8b\x17\x9f\x1a\xe7\x24\x1e\xf8\ \xe5\x1e\x0c\x64\x4b\x80\x61\x81\x73\x13\x8c\x5b\xc8\x39\x2e\x1c\ \x57\x40\x1f\xf7\x08\x14\xa0\x42\x55\xaf\x42\x8e\xaf\xac\xaf\x0c\ \xf4\x0a\x9b\xa3\x08\x21\xcb\xad\x7c\x94\xa5\x6b\xef\x71\x5c\x11\ \xa8\x8b\xb2\x78\xa1\x81\x5f\x26\xe7\x5a\x70\xaa\x52\x45\xa1\x67\ \x05\x2c\x50\x00\x3f\xae\x09\xc8\xee\xb8\x12\xd9\xbc\x43\xa4\x20\ \x02\x70\x0e\x30\x03\xfd\x23\x25\x3c\xf0\x8b\x3d\xb1\x08\xa0\x61\ \x95\xd2\x88\x60\x20\x58\x41\x35\x92\x00\x6a\xe1\x86\x54\xd8\x0d\ \xb4\xb4\xb4\xd8\xed\xed\xed\xd3\x63\x11\xe0\xbf\x5f\xf5\x64\x9f\ \x71\x30\xc3\xf4\x4b\xbd\x79\x47\xa0\xe4\x0a\x1f\x38\xe5\x98\xc7\ \x2c\xed\xea\x5b\x24\x19\x74\xb7\x50\xfe\x3c\xca\xba\x15\xc0\x0e\ \xe5\xdd\x61\x37\x31\x3a\x9b\xd0\xe4\xdf\x8f\xf8\x99\x47\x04\xa1\ \x5b\xbe\x56\x16\x2e\x1b\xbc\x22\x77\x27\x82\xac\x40\xbd\xb7\xe8\ \x0a\x0c\xe7\x1d\x52\x14\x09\x70\x83\x36\xd3\x53\x01\x66\xe0\x5f\ \xb6\xbe\x1c\x8b\x00\xed\xed\xed\xd3\x5b\x5a\x5a\xec\x08\xf9\x4f\ \x11\xc6\x76\x14\x01\x2c\x2d\x0b\xd0\x59\x93\x58\xb5\x6a\xd5\xac\ \x38\xd1\xff\xd1\xc1\x3c\x9e\x7b\xad\x0b\xcc\x30\xc0\x0c\x03\xdc\ \x30\xc0\x0d\xee\x07\xc0\xb9\x82\x8b\x6c\xc1\xd5\xaa\x79\x32\xba\ \xaa\x57\xc9\x05\xc8\xf0\x24\x8d\xca\xbe\x3b\x0a\x7c\x3f\x95\x8b\ \x52\x81\xf0\xfb\xfc\x31\x08\xf8\x2d\x67\xca\x67\xfb\x43\xd1\x7e\ \xdc\x22\x47\x8d\x63\xa8\xfc\x3f\x70\x0d\xcc\xcf\x6c\x0a\x25\x0f\ \x7c\x11\xea\x2c\x02\xe3\x5e\x8d\x84\x5c\xc1\x33\x2f\xbf\x83\xa3\ \x83\xf9\x58\xd9\xc0\xaa\x55\xab\x66\x21\xb8\x8b\x4a\x3a\x84\xad\ \x15\x45\x00\x53\x53\x02\x43\xf7\x1b\x97\x5c\x72\x49\x5b\x1c\x06\ \xfe\xf4\xe9\x37\x51\x74\x84\xcf\x60\xce\xbd\x4e\x1b\x55\xa2\x61\ \x0c\x28\x3a\x02\x83\x39\x07\x25\xb7\x92\x05\x47\x93\x40\xf7\xc5\ \xe1\xf7\xe8\xa4\xd0\x81\x15\xe3\x04\x78\x3a\x11\x74\x15\xb0\x0d\ \x06\x49\x96\x2e\x34\x12\xb8\xda\xff\x1f\x2e\xf9\x86\xcb\xc5\xae\ \x80\xe6\x2e\x02\x57\x32\x9c\x77\x90\x2d\x3a\xe5\x0a\xe1\x67\x1e\ \xb4\x76\x16\x37\x20\x39\x47\xa1\x24\xf0\xb3\xa7\xdf\x8c\xa5\x02\ \x1a\x66\x2a\x9e\x33\x34\xcb\x37\xa3\xd2\x40\xb5\xb6\xbe\xa9\xbd\ \x31\x09\x00\xe7\x9e\x7b\x6e\x2c\x02\xfc\xf7\x0b\x6f\x43\x32\xaf\ \xca\x27\xc1\xc1\x0d\x03\xc2\x1f\xb2\x95\x7e\xa5\x4f\x08\x81\xa1\ \x5c\x09\x06\xe7\x48\x58\x9c\x26\x6b\x4a\x2f\x99\x87\x2c\x4b\x01\ \xc3\xc5\x5e\xe6\x97\x53\xd5\x90\x31\x25\x56\x52\x4f\xff\xd4\xeb\ \xa0\x92\x88\x0a\x95\x40\xce\x19\x66\x37\xa5\x30\x6f\x46\x06\xf3\ \x67\xa4\x31\xbf\x35\x8d\xd9\x8d\x49\x5c\x75\xc7\xaf\x91\x2d\x04\ \x29\xa0\x77\xfe\x0c\x5e\xab\x6f\x74\x7b\x38\x63\x5e\x7a\x0a\xad\ \xd4\xab\xfe\x96\x2f\xb8\x28\xb8\xae\x17\xfd\xeb\x83\x4a\x22\x20\ \x09\x38\x87\x64\x44\x02\x66\x40\x32\x8e\xad\xbf\xea\xc0\x9f\x5c\ \x7e\x56\xd5\x18\x68\x98\xe9\x93\x46\x1c\x0d\xe3\x48\x02\x98\x21\ \x1f\x61\xdb\xb6\xcd\x5a\x5b\x5b\x9b\xe2\x10\x60\xd7\x1b\x07\x49\ \xc6\xbc\x25\xf9\x19\xe3\x41\x6e\xce\x54\x99\x37\xc8\xcb\xf3\x25\ \x17\xc3\x85\x12\xd2\xb6\x89\x4c\xc2\xf0\x0a\x98\x44\x02\x49\x24\ \x60\x32\xd8\x4b\x26\xcb\x40\x57\x44\x08\x46\x11\x75\x32\x78\xdf\ \xc3\x82\xca\x0d\x18\x03\x9a\x6b\x6d\x2c\x98\x59\x83\x33\x5a\x6b\ \x70\xc6\xcc\x1a\xcc\x9b\x91\x41\xd2\x62\xa3\x1a\x50\x04\x05\x86\ \x4c\x23\x9d\x56\x73\x06\x0b\x52\xfc\xb2\x58\x86\xa9\xfc\x9f\x64\ \xbf\xe8\xb8\xc8\x17\xbd\xd8\x47\xcd\x0b\x88\xb4\x7e\x29\xbd\x91\ \x51\xc6\xbd\x51\x42\x30\x48\xc6\xb1\xf3\xf5\x83\xb1\x14\xa0\xb5\ \xb5\xb5\xc9\xb6\x6d\x56\x2c\x16\x6d\x4d\xd9\x73\x1a\xce\x65\x04\ \x60\x9a\xec\xeb\xa9\x82\xbd\x68\xd1\xa2\xfa\x38\x0b\x2f\xbf\xd3\ \x3b\x84\xce\xc3\x03\x48\x24\x6b\x3c\x09\x63\x0c\x12\x3c\xb0\x54\ \x30\x70\x26\x7d\x22\x70\xee\xcd\xa7\x83\x64\x9e\x2c\x16\x5c\xa4\ \x13\x06\x32\x09\x03\xa6\xc1\xc1\x64\x50\xf8\x91\xc4\x8b\x4a\xd6\ \xcf\x64\x00\xb6\x22\x03\x20\x91\x49\x18\x98\x3f\xb3\x06\x0b\x67\ \xd5\x61\xe1\x29\xb5\x58\x78\x4a\x2d\x9a\x6a\xac\x32\xa0\xa3\x1a\ \x43\x3c\x4b\x0e\xe4\x9d\x31\xef\x3c\xe1\xab\x58\x20\x28\x2c\x54\ \xd8\x01\xa9\x40\xde\x11\xc8\x51\xbc\xe3\x4d\x5a\x09\x1a\x49\xa2\ \xac\xdf\x5b\x34\x50\xfa\xae\x40\x82\x01\x8c\x63\x7f\x4f\x3f\x0e\ \xf4\x0e\x63\x56\x73\x75\x45\x21\xd3\x34\x8d\x45\x8b\x16\xd5\xef\ \xd8\xb1\x23\x1f\xc2\x54\x15\x82\x18\x00\x69\x86\x88\x60\x69\xe9\ \x20\x03\x60\x5f\x70\xc1\x05\xb1\xe6\x3a\x6f\xd9\xdd\x09\x29\xbd\ \x13\xf7\xc6\xcb\x19\x04\x00\x43\x59\x26\xd3\xdb\xae\x95\x65\x91\ \xb4\x92\x0f\x1d\xce\x3b\x18\x29\x38\x48\x5a\x1e\x11\x92\x96\xe1\ \x59\xb0\x18\xcf\xfa\x01\xd3\x60\x98\xdb\x92\xc6\xd9\x6d\xf5\x38\ \xbb\xad\x1e\x67\xb5\xd5\xe1\x03\x2d\x19\x02\x4b\x8e\x3b\x12\x38\ \x6a\x54\xb0\xa8\x2d\x29\x83\x72\xeb\xd7\xc6\x75\x20\xb4\xaa\xa0\ \x2b\x24\x72\x45\x07\x85\x92\xf0\x89\xc2\xb5\xee\x25\xbd\x7b\x28\ \x6c\xfd\x7e\xc3\x0b\xe3\xf4\x5f\xd0\xb5\x04\xc7\x96\xdd\x6f\xe3\ \xfa\x95\xd5\x17\x63\x2f\xb8\xe0\x82\xa9\x3b\x76\xec\xe8\x23\x2c\ \x13\x21\x8c\x4d\x00\x25\x33\x34\x2a\xa8\xb3\xc4\x02\xc0\x16\x2c\ \x58\x10\x6b\xe4\xef\x95\x8e\xc3\x3e\xe8\x92\x84\x5e\x4a\xe6\xa5\ \xb5\x42\xa9\x80\xf4\x2d\xd9\x27\x02\xc3\xa8\x66\xd0\x5c\xd1\x45\ \xae\xe8\xc2\x34\x18\x52\xb6\x81\x94\x65\x20\x69\x1b\xd4\xbb\xe7\ \x59\x7c\x4b\xbd\x85\xb3\xdb\x6a\x71\x4e\x5b\x3d\xce\x6e\xab\xc3\ \x99\xb3\x6a\x91\x49\x9a\x15\x7b\xfe\x55\xa7\x4f\x35\xad\xd7\x52\ \x4a\x94\x5c\x01\xce\x98\x6f\xc1\x5a\x04\xe2\x83\xc9\xc0\xe0\x08\ \x81\x42\x49\x20\x5f\x74\xe1\x4a\xf8\x53\xd4\xfc\x61\x6b\x6d\xd4\ \xba\x92\xef\x2f\x6b\x7c\x05\x83\x90\xdc\x1f\x0d\x95\x60\x78\xe5\ \xed\x23\xb1\xdc\x00\x61\xc7\x34\x3c\x75\x8c\x8d\x28\x02\x18\x28\ \xbf\xd3\x16\xe6\xce\x9d\x1b\x4b\x01\xde\xec\xee\xa3\x93\x67\x70\ \xb5\x54\x0b\x08\xe4\xda\x23\x03\x0b\x5e\x6b\x72\x1d\x5d\x55\x94\ \x18\xca\x39\x18\xca\x39\xb4\xd0\x03\x47\x92\x08\xb1\xe5\xab\x4b\ \x46\x81\x1d\xd9\x96\x4d\xed\x5d\x51\xd6\x1f\xf5\x19\x45\x14\xa9\ \xd5\xf8\x39\x27\xd4\x38\xe0\xba\x12\x25\xd7\xf3\xeb\x25\xaa\x27\ \x28\x2b\x0f\xac\x3d\x34\x26\xa1\x59\xbf\x4a\x7f\x83\xc6\xd2\xf2\ \x76\x37\x29\x25\x75\x0a\x31\xff\x3d\x6f\x76\x1d\x8b\x45\x00\x0d\ \x3b\x75\xeb\x1c\x16\xc2\xda\x97\x7e\xae\xc9\x82\xa1\x47\x8a\xd3\ \xa7\x4f\xaf\x8f\xf3\x9f\x76\x1c\xec\x0f\x7e\x18\xe5\xbc\x2a\xdd\ \x8a\x8a\x03\x38\x53\x53\xbb\x25\xb8\x60\x15\xa7\x59\xa9\x87\x2b\ \xbc\x66\x8d\x91\x82\x5b\xb1\x07\x5f\x07\x51\xa5\x9f\x0a\xd0\xb0\ \x22\x8c\xa7\x00\x42\x02\x82\xc0\x76\x5c\x89\xa2\x2b\xe0\x38\x02\ \xae\x54\x23\x8f\xcc\xdf\xb3\x31\xf7\x81\xf5\xeb\xc0\x87\xbb\x9c\ \x02\x37\xc0\xfc\x45\x84\x05\xbc\x80\x70\xdf\xa1\xbe\x58\x04\xd0\ \xb0\x33\x35\xf0\xcb\x30\x37\x43\xd9\x95\x7e\x27\x2d\x0e\x00\xa9\ \x54\xbc\xb9\x4b\x5d\x47\x06\x21\x24\x83\x00\x2b\x1b\x93\x77\x85\ \x84\x65\x70\x0f\x68\x0e\x70\xa1\xa6\x7a\x51\xbb\x34\x0b\xe2\x80\ \x38\x8f\x28\x02\xe8\x60\xab\x59\x40\x51\x53\xbf\xc6\xfb\x5e\xc6\ \x18\xf6\x1f\x19\x09\x75\x28\x6b\x16\xae\xef\x31\xd6\xde\xb3\x7e\ \x51\x36\x0a\x2a\xcb\xc6\x11\xa4\x56\x07\xf1\x83\x41\x11\x0c\x1c\ \x01\x0c\x07\x8f\x0c\xc6\xba\x36\x1a\x76\x3c\x02\x5f\x16\xa5\x00\ \x2c\x4c\x80\x74\x3a\x1d\x8b\x00\x5e\xc4\xcb\xa9\x58\x02\x9f\x00\ \x42\x78\x43\xde\xfe\x1c\x3f\x2e\x3d\xcb\x17\xa4\x00\x24\xa1\x6e\ \x4c\x06\x28\x49\xaf\xe4\xf3\xc7\xb2\xf0\x4a\xef\x53\xd6\x2f\x69\ \xb4\x8e\xf1\x28\x39\xd7\xf6\x63\xfd\x2d\x22\xf0\x1b\x45\x04\x11\ \x26\x82\x3e\xe1\x94\x12\x66\x06\x8c\xe4\xe3\x2d\x09\xa8\x61\xa7\ \x63\xca\xc6\x52\x80\x51\x04\x48\x26\x93\x89\xea\xc1\x00\xf2\xc5\ \x22\x60\xa6\xca\xba\x68\xbc\x01\x19\x01\x57\x84\x27\x7a\x86\x48\ \x50\xa5\x1b\xd0\x1f\xca\xc2\xe3\x3e\xf4\x49\x20\x95\xfc\x3f\xd5\ \x64\x46\x05\x74\xfa\xeb\xb0\x2a\x8c\x56\x09\xf8\x8d\xa2\xd5\x2b\ \x40\x30\xcd\x4d\x27\x42\xbe\x18\x6f\x0a\x99\x86\x5d\x14\x01\x58\ \xd8\xf2\x23\x5d\x40\x32\x99\xac\x7a\xb1\x87\x23\x83\x39\xff\x17\ \x07\x35\x7b\x51\xb6\xd0\x12\xe7\xde\x45\x0d\x48\x10\x2c\xdb\xe6\ \x29\x03\x26\xa4\x00\x63\x6d\xfa\xa2\x50\xaa\xfd\x4b\x7f\xae\x2b\ \xc2\xa8\xd9\xc3\x21\x49\xe7\x61\xc9\x1f\xc7\xef\x2b\xe9\xd7\xa3\ \xfe\xb2\x21\xe4\x51\x0a\x10\x00\x2f\x99\x8c\xb8\xc6\xf9\x38\x04\ \xb0\xc6\x73\x01\xbc\x12\xf0\x6a\x9f\x48\x24\xaa\x76\x01\xfa\x4c\ \x57\x35\x6c\x1a\x0c\xc1\x06\xae\xc0\x5b\xdb\x47\x07\x1e\x65\x44\ \x88\x63\xd0\xd5\x00\x1e\x06\x3e\x6a\x0b\xbb\x85\x32\x42\x54\x0a\ \xf6\xaa\xf0\xfb\xfe\x9a\x05\xe3\x44\xfd\xfa\xd8\x46\x78\xfa\xb9\ \x5e\x68\x3e\x36\x94\xad\xfa\xda\x68\xd8\xf1\x4a\x44\x38\x71\x37\ \x59\x64\x5e\xaa\xe4\x08\x01\xc7\xa5\xe1\x57\xce\xe0\x18\x02\x16\ \x2d\xe1\xe6\x72\xe9\xed\x05\xa3\xbd\xf7\x5a\x48\x06\xc7\xad\xce\ \x0d\x34\xfe\xef\x5f\x8c\xdd\x92\x7e\xf7\x8a\xea\x4f\x39\x22\x55\ \x8c\x8a\xf0\x79\xd8\x0d\x8c\xda\x6b\xe0\x8b\x72\xb9\x17\xa2\x7c\ \x7e\x81\x4e\x84\xf2\xc1\x2f\x11\x74\x92\x96\xd5\x1f\x26\xf7\x11\ \xbe\x77\x2e\xc2\xfb\x42\xa1\x50\xf5\xb2\x63\x0d\x35\xc9\xb2\xd9\ \x91\x42\x48\x38\x8e\x84\xe3\x3a\x65\xa3\x6f\xaa\x26\x10\x56\x02\ \xb5\xa6\x5f\x5c\x15\x38\x1e\x17\x11\xe5\x1e\xc2\x0a\x30\xca\xb7\ \x47\x80\x1e\x15\xf4\x85\xfd\xbe\x2e\xff\x42\xca\x32\xbf\x1f\xee\ \x88\x0e\x7e\x00\x83\x3e\xb7\x68\x6a\x6d\xf5\x6b\x14\x6b\xd8\x45\ \x61\x2b\x74\x02\xc8\x4a\x44\xc8\xe7\xf3\x55\xdf\xa6\xa4\xa9\x8e\ \xfa\x0d\xd4\x80\x09\xa3\x20\xd0\x15\x70\xa8\x33\xc7\x53\x03\x39\ \x0a\xf4\xa8\xed\x44\x10\x20\xca\x25\x44\xb9\x07\x00\xe3\x82\xaf\ \x83\xae\xbf\x27\x1c\xf4\x09\xa1\xf7\x0d\x8c\xf6\xfb\xe1\xa1\x6d\ \xef\xc4\x95\x02\x08\x0d\x21\x89\xa6\xba\xea\x97\x9b\xd3\xb0\x13\ \x11\xf8\x4a\xdd\x05\x68\xd5\xed\x51\x04\x28\x54\x2f\xa1\x40\xd2\ \x32\x91\xd7\x6a\x9d\xae\x70\xa9\xfb\x46\xc2\xe1\x81\x1b\x30\x0d\ \xc3\x97\x7b\x41\x2a\xa0\xba\x6c\xfc\xe3\x02\xb1\x32\x82\xb1\xea\ \x04\x51\xb5\x81\xaa\x5c\xc2\x18\xe0\x47\x45\xfe\xaa\x58\x35\x1a\ \xfc\xd1\x41\x9f\xdf\x53\x10\x9a\x07\x31\x7a\x55\x4a\xef\x40\xd2\ \x8e\xe7\xb1\x35\xec\x74\x4c\x65\x14\x01\x44\x25\x02\x64\xb3\xd9\ \x58\x2b\x4f\xa6\x92\x06\xf2\x59\x6d\x92\x3c\xd5\xd3\x0d\x57\x90\ \x65\x0b\x18\x8e\xb7\xb7\x0c\x3e\x8a\x00\xa6\xc1\x21\xa4\xf0\x8f\ \x0b\xf7\xf8\x08\x10\x55\x08\x8a\x43\x9e\xf1\x64\xbf\x5a\xf0\x83\ \xbe\xc7\x0a\x4d\x2f\x0a\x7c\x1d\xa7\xd0\xc2\x43\x99\x44\xbc\xd5\ \xf7\x34\xec\xa2\x08\x50\x9d\x0b\xc8\xe5\x72\xb1\x08\xd0\xda\x54\ \x47\xf2\xa5\x7e\x84\x80\x10\x6e\x10\x08\xba\x81\x2b\x90\x12\xc1\ \x1a\xbf\xfa\x02\xcf\xc6\xe4\xb9\x82\x6a\xd2\xc4\xb1\x52\xc5\x49\ \x05\xbf\x2c\xf0\x2b\x0f\xfa\xca\x84\x4e\x1f\x83\xd6\xae\xe5\x8c\ \xe6\xda\x58\xbf\x5d\xc3\xae\xa2\x0b\xe0\xa1\x37\x38\xf0\xe6\x8e\ \x49\x7a\x8e\x43\x87\x0e\xc5\x5a\x8b\x7e\xce\x8c\x06\x6d\xc8\x4b\ \xf8\x7b\xc7\x75\x51\x72\x3d\x35\x28\x51\x63\x68\xc9\x57\x85\xd0\ \xc6\xbc\x45\x9f\x4d\xc3\xdb\x26\x1a\x10\xaa\x21\xe0\xe3\x49\x15\ \x39\x8b\x8e\xf6\x75\xf0\xbd\x36\xb1\xf1\xc1\x2f\x6f\x59\x2b\x7f\ \x1e\x4e\xf7\x7c\x03\xd2\xba\x04\xe6\xc4\x9b\x92\xa9\x63\xe7\x20\ \xb8\x3b\xa9\x13\xa5\x00\xae\xb6\x57\x77\xac\x2c\x02\xc0\xde\xbd\ \x7b\x63\x0d\x41\x9d\xd6\xda\x50\x7e\xf2\xaa\x0b\x96\x06\x53\x1c\ \xa1\x48\xe0\xed\x55\x40\xa8\x2c\xdf\x8c\x50\x00\x73\x02\x37\x13\ \x53\x85\xa5\x28\xe0\xab\xad\x0d\x28\x05\x88\x26\x41\x00\x7e\x74\ \xc0\x37\xba\x65\xbd\x2a\xf0\xfd\x9e\x72\x39\x6a\x8b\xbb\x0c\xaa\ \x52\x22\xb6\x00\x00\x15\xff\x49\x44\x41\x54\xbd\x86\x9d\x5a\x31\ \x44\x86\xb0\xf6\x63\x00\x57\x7b\x23\x10\xdc\xa6\x4c\xbe\xf6\xda\ \x6b\xb1\x86\xa0\xce\x6c\x9f\x16\x30\x58\x08\x80\xbb\x80\x74\x01\ \x98\x9e\xc5\x3b\x0c\x06\x97\xda\x73\x81\x84\x69\xc0\x34\x98\x37\ \x4d\x9c\x0b\x3f\x16\x90\x10\xde\xa8\x98\xe1\x8d\x2c\x56\x53\x1b\ \x08\x37\x5f\xe8\x31\xc0\x44\x62\x81\x51\x83\x3f\x11\x79\x7e\x25\ \xf0\x5d\x31\x7e\xa3\x6b\xc4\x78\xa7\x16\x8a\x09\xed\xb9\xc4\x99\ \xb3\x63\x75\xe6\x81\xb0\x93\x1a\x9e\x3a\xc6\x65\x04\x70\x34\xe0\ \x01\x6f\x95\x89\x0c\x80\xe2\xf3\xcf\x3f\x1f\x4b\x01\x56\x2c\x6a\ \xf3\x2e\x8d\xbe\x5a\x92\x22\x03\xa3\x06\x0b\x47\xd5\x01\x3c\x12\ \x70\x26\x90\xb0\x38\x04\xf7\x3a\x7a\x54\x37\x91\x07\xbe\x22\x02\ \x87\x94\xc2\xaf\x23\x8c\x07\x7c\x70\x4b\x18\x39\xa1\xb8\x41\x15\ \x84\xa2\x6a\xfb\xfa\xc8\x9e\xa8\xca\xef\x57\x0b\xbe\xca\x1f\x69\ \x53\xd7\x4d\x4a\x30\x29\xb1\x62\xd1\xec\x58\xbf\x83\xb0\x2b\x12\ \x09\x0a\x21\x8c\x9d\x70\x1a\xe8\x46\xb0\xa4\xb8\x7b\xf7\xee\x01\ \xc7\x71\xdc\x6a\xfb\x02\x4f\x69\xae\xc5\x29\xd3\xea\xd1\xd9\x3b\ \x02\x08\x17\xe0\x22\x08\x64\xa4\x0b\x57\x30\x94\x1c\xe9\x81\xcf\ \x3d\xf0\x95\x9c\x06\xe0\x73\x48\x43\x78\xed\x50\xb2\x5c\x05\x54\ \xb0\x05\x60\x14\xd8\x51\xcf\xc7\x23\x40\xa5\x9e\x81\x60\x31\xc9\ \xf2\xa0\x2f\x18\xe7\x88\x0f\xbe\x2b\xc2\xd1\x7e\xc4\x68\x9a\x6f\ \xf9\x7a\x20\x2d\x71\xea\xf4\x29\x55\xf7\x03\x02\x80\xe3\x38\xee\ \xee\xdd\xbb\x07\x74\x2c\x35\x02\xb8\xe1\x20\x50\x31\x42\x05\x0b\ \xfe\x87\x8a\xc5\xa2\xec\xee\xee\x8e\xd5\x8b\xf4\xc1\xf9\x33\xb5\ \x8a\x60\x00\xbe\xf7\x83\xe0\xc7\x00\x45\x0a\x06\x8b\x14\x0f\x08\ \x29\x61\x72\xee\x07\x7f\x41\x20\xe8\x1d\xb3\x68\x1f\x1e\x3c\xaa\ \xfc\x1c\x55\x45\xfe\x63\xc5\x02\x9e\xff\x2f\x0f\xf6\x22\x37\x39\ \xf6\xf4\xb4\x71\xc1\x2f\x8b\xfe\xc5\xa8\xeb\x76\xc1\xfc\x99\xb1\ \xac\xbf\xbb\xbb\xfb\x08\xdd\x6a\x46\x27\x80\xd4\x70\x46\x14\x01\ \xd4\x1b\xd4\x87\xf2\x00\xf0\xc2\x0b\x2f\x74\xc6\xf9\xcf\x97\x2f\ \x9e\x1d\x30\x38\x6a\x03\x34\xf0\xbd\xac\xa0\x48\x1b\x63\x20\xf0\ \xb9\x0f\xbe\x65\x78\x77\xfe\xb0\x0d\x8e\x84\xc9\x91\xb4\xb9\x3f\ \x9e\xa0\x6f\x9e\x5b\x41\xd9\xb1\x70\xf0\xa7\x6f\xd5\xa4\x87\xaa\ \x83\x49\xcd\x45\x8c\x9e\x54\x12\x3d\x2d\x2d\x2c\xfd\x63\x8b\x91\ \x24\xb0\xdd\x40\xfe\x7d\x42\xb8\x58\xb1\xb8\x3d\x16\x01\x34\xcc\ \xf2\x1a\x01\x74\x8c\x23\x09\xa0\xde\xa8\xdc\x41\x0e\x00\xb6\x6f\ \xdf\x1e\x8b\x00\x57\x5f\x78\x3a\x6c\x43\xdd\x92\xcb\xa5\x4d\x04\ \x3f\x90\x64\x54\x81\x5e\x74\x03\x02\x14\x1d\x01\x93\x33\x58\xa6\ \x07\x7a\xc2\xf4\x26\x8d\xa8\x7d\xd2\x32\xe8\xb9\x47\x12\xdd\xda\ \x83\xdb\xc5\x04\xad\x66\x71\xc0\x8e\x54\x08\x54\x9e\x32\x26\x2a\ \x5a\xfd\x68\xa2\x8c\x1b\x8a\x28\x6b\x17\x74\xe3\x70\x4d\x0d\x12\ \x26\xc7\xa7\x3e\x7c\x5a\x2c\x02\x68\x98\xe5\x34\xd9\x2f\x86\xb0\ \x2e\x23\x40\x29\xc4\x98\x2c\x7d\xa8\xb0\x69\xd3\xa6\x03\x42\x8d\ \x92\x54\x33\x42\x57\x97\xc4\x47\xce\x9e\x0d\xaf\x31\x4c\xd2\xde\ \x05\x93\xb4\xc1\xb3\x74\xaf\x47\x00\xfe\xf8\x80\x3e\x9b\xd7\x03\ \xdf\x40\xc2\xe2\xb0\x4d\x03\xb6\xe5\xdd\x00\xd2\xa6\xd7\x1e\x19\ \x3c\x92\x84\x55\x40\x27\xc1\x44\x81\x57\xa4\x09\x83\xe9\x83\x5e\ \x8d\xe4\x57\x5d\xca\xd6\x02\x65\xe5\x2a\x25\x19\x8f\x14\xb8\xf0\ \x9c\xd9\x68\x8c\x31\x06\x20\x84\x10\x9b\x36\x6d\x3a\x80\x60\xc9\ \xb8\x6c\x08\xdb\xc8\x05\x22\x94\x8f\xc8\x69\xcc\x01\x80\x91\x9e\ \x9e\x9e\x62\x47\x47\xc7\xa1\x38\x0c\xbc\x6e\xe5\x42\x48\xe9\x82\ \xc1\x05\xf7\xda\x1a\xe1\x4d\x79\x14\xde\x46\xf9\x7d\x78\xba\x77\ \x89\xc8\x20\x84\x24\xb0\xb9\xd7\x05\x6c\x72\x24\x4c\xe6\xb9\x00\ \x4b\xdd\x0d\xd4\x40\xc2\x64\xb0\x0d\xee\x83\x1e\x76\x0b\x71\x00\ \x8f\x52\x8b\xa8\xd9\xc3\x15\x27\x92\x46\x94\x77\xab\x44\xac\x1c\ \x78\x05\x3e\xbc\xe3\x9f\xbd\xf4\xec\x58\xd6\xdf\xd1\xd1\x71\xa8\ \xa7\xa7\xa7\x88\x60\x55\x30\x1d\xd3\xb2\x1b\x4b\x85\x2b\x2c\x05\ \xcd\x05\x64\xf5\x0f\xef\xda\xb5\x6b\x7f\x9c\x93\xb8\xf6\xa3\xf3\ \x31\x25\x9d\x80\x14\x02\x9c\x49\x18\x4c\xc0\xa4\x75\xc1\xbc\xe7\ \x41\x15\x50\x91\xc0\x09\xcd\xe9\x17\x42\x20\x49\x24\x50\xd6\xef\ \xbb\x03\xe5\x1a\xd4\x71\x33\x22\x40\x64\x18\x17\xec\xf1\xdc\x43\ \x35\x81\x9e\x98\x88\xe4\xeb\x91\xbf\x74\x01\xd7\xd5\x62\x00\xd7\ \x3f\xde\x50\x93\xc0\xaa\x8f\xc6\xbb\xed\xa2\x86\x55\x2e\xa4\xe6\ \x45\x2d\x1d\x8c\x24\x40\x31\xe4\x37\x4a\x8a\x08\xf7\xdc\x73\xcf\ \xeb\x71\x4e\xc2\x34\x38\xae\xbe\xf8\x0c\x48\x57\xc0\x29\x95\xc0\ \xa4\x0b\x0e\x6f\x33\x48\x15\x0c\x26\x61\x1a\x1e\x58\xae\x00\x5c\ \xca\x04\xf4\x61\x63\x57\x82\xdc\x80\xee\xff\xc9\xfa\x2d\x4f\x0d\ \x52\xf4\xda\x36\x8d\xb2\x1b\x45\x1a\xa1\x18\x60\x22\xb1\x80\x0e\ \xbc\xee\xa6\x2a\xf9\xfa\xd8\xa3\x97\xbe\xe5\x6b\x01\xa0\xaf\x08\ \x12\x57\x5f\x7c\x66\xec\xdb\xcb\x68\x58\x65\x35\x1c\x73\x21\x8c\ \x2b\x2a\x40\x99\xfc\x53\x52\x3a\xf2\xf8\xe3\x8f\x1f\xe9\xec\xec\ \x3c\x1c\xe7\x44\xbe\x79\xdd\x87\xbd\x09\x97\x42\xa0\x58\x2a\x41\ \x4a\x07\x06\x93\x1e\xf0\x4c\xc0\x60\x81\x0a\xa8\x45\xbf\x9c\xf0\ \xea\x1e\xae\x67\x61\x09\x65\xfd\xda\x96\x34\x15\xf0\xe4\x26\x34\ \x85\x50\x4a\x10\x55\xfb\x8f\xb3\x85\x17\x91\x18\x6b\x8b\x5d\x73\ \x92\xe1\x20\x59\x94\x11\x22\x69\x72\x7c\xf3\xba\x0f\xc7\xfa\xca\ \xce\xce\xce\xc3\x8f\x3f\xfe\xf8\x11\x1d\xbb\x10\xa6\x63\x2a\x40\ \x89\x3e\xa4\x6e\x4e\xa8\x1a\xd1\x07\x00\xe0\xd1\x47\x1f\x8d\xb5\ \x54\x45\x6b\x53\x0d\xfe\xe0\xe2\x33\x00\x21\x20\x85\x8b\x7c\xa1\ \x84\x62\xb1\x04\x2e\x05\x29\x80\xf0\x14\x81\x07\x83\x3e\xae\x16\ \x10\x7a\x64\x10\x5e\x47\xb1\x2b\x29\x0d\x24\xc0\xc9\x05\xd8\x7a\ \x4c\x60\x7a\xf3\x08\x95\xcb\xb0\x0c\x3e\xa1\x51\xc0\xb2\x65\x64\ \xc5\xe8\x00\xf5\xb8\xad\x5e\x97\xfe\x32\xeb\x57\xf2\xef\x1d\xbf\ \xfa\xe2\x05\xb1\x56\x08\x0b\x61\xa4\x06\x82\x06\x09\xcb\x2c\x61\ \x5b\x1a\x8b\x00\x2a\x52\x54\x8b\x0c\x2b\x57\x30\x0c\x40\xdc\x7e\ \xfb\xed\xaf\xc7\xc9\x06\x00\xe0\xd6\xcf\x5e\x08\xdb\xf4\x57\x56\ \x44\xb1\x54\x42\x36\x5f\x00\x93\x0e\x0c\xe9\xc2\x84\x20\x35\xf0\ \x46\x01\xd5\xb4\x6a\x9f\x04\xa1\x0c\xc1\xd6\x7c\xbf\x9e\x1e\x26\ \x2c\xba\x55\xbc\x9f\x2e\x32\x24\x6d\x7e\xdc\x85\xa0\x49\x95\x7b\ \x3d\xea\x17\x0e\x01\xee\x94\x81\xae\xc8\x60\x1b\xc0\x37\xff\xe8\ \xc2\xb8\xbd\x0f\xe2\xf6\xdb\x6f\x7f\x9d\x80\x1e\xd6\xa4\x3f\x87\ \x60\x01\x69\x8c\x47\x00\x25\x15\xc3\x21\x06\x0d\xed\xd9\xb3\x67\ \xe4\xa5\x97\x5e\x7a\x3b\xd6\xf0\xf0\xf4\x7a\xac\xba\x64\xa1\xc6\ \x72\x07\xa5\x52\x09\x03\x23\x05\x38\xae\x43\x6a\x20\x61\x50\x04\ \x6f\x1a\x41\xb9\xd7\x15\x81\x4b\x70\x5c\xe9\x0f\x27\x5b\x9c\x11\ \xf8\x86\x46\x04\xe6\xab\x82\x0a\x08\xc3\x2e\x60\x22\x85\x20\xa7\ \x6c\x5e\xc3\x71\xc8\x7d\x19\x52\xae\x87\x87\x0e\xbe\x6f\xfd\x1e\ \x09\x56\x5f\x72\x16\xe6\xcc\x98\x12\xeb\x6b\x5f\x7a\xe9\xa5\xb7\ \xf7\xec\xd9\x33\x02\x6f\x3d\x40\x5d\xc1\x87\x43\xd8\x8e\x49\x00\ \x95\x3b\x2a\x1f\xa2\x4b\x09\xee\xbc\xf3\xce\xff\x89\xfb\x7b\x37\ \xac\x59\xe1\xf5\xb2\x49\xc7\xff\xa1\xc2\x75\xd0\x3f\x94\xc7\x50\ \x2e\x0f\x88\x12\x0c\xe6\x94\x05\x70\xaa\x4e\x10\x25\xbd\x25\xd7\ \xeb\xd4\x51\x96\x6f\x1b\x06\x2c\xcd\xef\x33\x1e\x34\x73\x1e\x8f\ \xff\x17\x42\x1c\xbf\x9f\x8f\x02\x5f\x84\xe4\x5e\x38\x5a\x21\xc8\ \x45\x73\x5d\x0a\xeb\xd7\x2c\x8f\xfd\xd5\x1a\x36\xba\xeb\x56\x71\ \x80\x1b\xf6\xff\x95\x08\xa0\xe7\x8b\x23\x9a\x8c\x64\x01\x14\x7e\ \xf8\xc3\x1f\xee\xef\xe8\xe8\xe8\x8e\x73\x62\x75\x69\x1b\xdf\xfa\ \x93\x8f\x95\x57\x03\x85\x03\x08\x07\xd9\x5c\x01\x47\x06\x72\xc8\ \x17\x4a\xe0\xd2\xf1\x5c\x81\x1f\x13\x50\x0c\xe0\xbb\x00\x41\x4a\ \xe0\x4d\xc5\x2e\x3a\xc2\x6b\xdb\xe6\xda\x40\x10\x67\x34\xfd\xc5\ \x23\xc3\x44\xc0\x2f\x2f\x04\x4d\x12\xf0\x7e\xc4\xef\x68\x96\xef\ \x04\xe0\x6b\x6a\xf0\x77\x37\x5c\x82\xba\x78\x33\xf2\xd0\xd1\xd1\ \xd1\xfd\xc3\x1f\xfe\x70\x3f\x81\x9c\xd5\xdc\xf7\x48\xa8\xbe\x53\ \x9e\xad\x8d\x41\x00\xb5\xd6\x6c\x2d\x80\xa3\x00\x66\xd1\xbe\x75\ \xfd\xfa\xf5\x3b\xbe\xf7\xbd\xef\xfd\x41\x9c\x13\xfc\xd3\x2b\xce\ \xc6\xbd\x9b\x7f\x8d\x1d\xaf\x75\x01\x42\xad\x7f\xc3\x00\xc9\xe0\ \x94\x4a\x38\x32\x20\x91\x2d\x3a\x68\xac\xcd\xf8\xb7\x8c\x53\x35\ \x92\x9c\xdf\x4d\xc4\x60\x1a\x02\x26\xe7\xb0\x4d\x01\xd3\xe0\xd8\ \xf0\xc9\xda\x8a\x77\x01\xad\x34\x55\x3c\xba\xf7\x2f\x98\x13\xa0\ \xf7\x0c\x1c\xf8\xc7\x0f\x56\xfe\x6e\x00\xd3\xd6\x3c\x59\x3d\xf8\ \xc2\x09\xf2\x7d\xbd\x3c\x2e\x1c\xdf\x30\x96\x9e\x31\x0b\x37\xc4\ \x58\x0b\x48\x3d\xd6\xaf\x5f\xbf\x83\x9e\x1e\x0d\xed\x87\x2a\xc9\ \xff\x58\x0a\xa0\x72\xc7\x3c\xd5\x8d\x47\x88\x59\xc3\x00\x8a\xeb\ \xd7\xaf\xdf\xdb\xd5\xd5\x75\x38\xee\x49\x3e\xf0\xf5\xab\xd0\x50\ \x63\x07\xec\x77\xd5\x8f\x57\x6a\x50\xc4\x81\xa3\x43\x38\x32\x38\ \x82\x42\xd1\x03\x5d\x75\x10\xe5\x8a\x0e\x46\x68\x09\x99\x6c\xd1\ \xf5\x56\x11\xc9\x3b\xc7\x55\xea\x0d\xc7\x02\x71\xd4\x42\x08\x51\ \xfd\x34\x0d\xa1\x83\xaf\x07\x7f\x4e\x99\x3b\x68\xa8\xb1\xf1\xe3\ \xaf\x7f\x2a\x36\xf8\x5d\x5d\x5d\x87\xd7\xaf\x5f\xbf\x97\x72\xfc\ \x61\xc2\x6a\x84\xb0\xcb\x87\x1a\x42\xaa\x22\x80\xce\x98\x01\x8d\ \x51\x12\xc0\x31\x21\x04\xee\xbc\xf3\xce\x1d\x71\x4f\xf4\x94\xe6\ \x5a\xdc\xfd\xe7\x1f\x07\x87\x1b\xba\x08\xc1\x26\x5d\x07\xc3\xd9\ \x02\x7a\xfa\x47\xd0\x3f\x9c\x47\xa1\xa4\xac\x5f\xfa\xc0\x7b\x4b\ \xac\x79\x6b\x04\xc4\x91\xf3\x89\x0e\x0c\x8d\x35\xb7\x70\xbc\x60\ \xdf\xff\x6d\x0a\x7c\xe5\x06\x7c\xf9\xf7\x5e\x73\x08\xfc\xe8\x2f\ \xae\x8c\x35\xe6\xaf\xf9\xfe\x1d\x74\x2e\xc7\xe8\x7f\x3d\x1a\xc2\ \xae\xe2\xdd\xc4\xc7\x6a\xf2\x70\xa8\x2b\xa8\x44\x6e\xa0\x04\x6f\ \xe5\x69\x17\x40\xdd\x33\xcf\x3c\xd3\xb7\x6a\xd5\xaa\xb6\xa6\xa6\ \xa6\x58\x0b\x48\x2c\x68\x6b\xc4\xe1\x81\x3c\x76\xbe\xde\x45\x13\ \x49\x59\xd0\xd2\xa3\x8f\x8d\x50\x3b\x79\xae\xe4\xc2\xa1\xeb\xac\ \x0a\x45\x25\xd7\xab\x0b\x38\x52\x62\xf5\x79\xe9\x48\x39\x97\x93\ \xe2\xb4\xc7\x6f\x28\xf9\xde\x13\x07\x46\xdd\xd2\x56\x2d\x7b\xc3\ \xf5\x78\xc7\x2f\xf1\x6a\x84\xf0\x5f\x0b\x7c\xf1\xaa\xc5\xf8\xf3\ \x6b\x62\xdf\x82\x11\x7b\xf6\xec\x79\xe7\xda\x6b\xaf\xfd\x85\x94\ \xb2\x04\xa0\x87\x54\xa0\x87\x70\xea\xa5\x20\xb0\x1f\x15\x56\x5e\ \x18\x4b\x01\x44\x44\x26\xa0\x18\xd6\x2b\x84\xc0\x9a\x35\x6b\xb6\ \xb8\x6e\xcc\x95\x8c\x01\x6c\x58\xb3\x0c\x97\x9c\xd7\x5e\x1e\x10\ \xb9\xa5\x08\x45\x70\x21\x1d\x07\x85\x42\x11\x83\xd9\x12\x86\xf3\ \x0e\xf2\x25\x17\x45\x47\x60\xb8\xe0\x62\x24\xef\x56\x9c\xe9\x33\ \x19\xae\xa1\x9a\xef\xb1\x0c\x1e\x6c\xa6\x37\x8c\x6d\x30\x01\x26\ \x5c\xb8\xae\xa7\x68\xd1\xe0\x3b\x3e\x39\x96\x2d\x6a\xc7\x86\x1b\ \xe3\x47\xfd\xae\xeb\x8a\x35\x6b\xd6\x6c\x21\xeb\xef\x55\x0a\x1d\ \x91\x01\x54\xc4\x68\xbc\x22\xf3\xb0\x96\x4f\x0a\xda\x97\x28\xb0\ \x18\xd9\xba\x75\xeb\xd1\x87\x1e\x7a\x68\xe7\x44\x3a\x76\xff\xf3\ \x6f\xaf\xc6\xd9\xed\xd3\xb4\x8c\x40\x73\x09\xbe\x44\x96\xca\xf6\ \xae\xeb\xa2\x50\x12\xc8\x16\xbc\xfd\x48\xc1\x99\x14\xc0\x8f\xe7\ \x3b\x14\xe8\x9c\x6e\x57\x5b\x2c\x16\x51\x2a\x15\xe1\x3a\x45\x8d\ \xc8\x44\x6e\x37\x04\xbe\x74\x70\xf6\x9c\x16\x3c\x72\xeb\xd5\xe0\ \x13\x98\xff\xf0\xd0\x43\x0f\xed\xdc\xba\x75\xeb\x51\x02\x79\x88\ \xb0\xd1\xb1\x92\x5a\x0d\x60\x42\x04\x10\x5a\x09\x51\x7d\xa1\x6a\ \x0f\x3b\x0c\x40\x7e\xe1\x0b\x5f\xd8\xd1\xd7\xd7\x37\x18\xf7\xe4\ \x53\x09\x13\x5b\xff\x61\x35\xb5\x91\x87\x83\xa2\x92\x77\xb1\xd4\ \x45\x53\x0a\xa1\x36\x29\xfc\x11\xc4\x89\x82\x3d\xd1\xe0\x2f\xfc\ \x7d\x85\x92\xc0\x48\xce\x45\x36\x57\x44\xa9\x58\x84\xd4\x95\xcc\ \x75\x46\x93\x5b\x03\xff\xb4\xd6\xa9\xd8\xfe\xdd\x6b\x91\x4a\xc4\ \x9f\xa4\xdd\xd7\xd7\x37\xf8\x85\x2f\x7c\x61\x07\x61\xa2\x02\xf2\ \x23\x21\x83\xcd\x8e\x65\xfd\xd5\x10\x40\x57\x81\x7e\xf2\x2b\x83\ \xf4\xc5\x45\x00\xc7\x7a\x7b\x7b\x8b\xb7\xdc\x72\xcb\x96\x89\xf8\ \xdc\xe6\xfa\x14\xb6\x7f\x77\x35\xe6\xce\x98\x12\x44\xc7\xae\x06\ \x7e\xf8\x42\xaa\x20\x4a\x59\x94\x14\xb1\xad\x7b\xb2\xdc\x83\x3a\ \x5e\x2c\x96\x20\x44\x31\x14\xd1\x87\xf2\xfc\x32\xe0\xbd\xe3\x1f\ \x98\xd1\x80\xed\xdf\x5d\x1d\xab\xd1\x43\x8f\x4b\x6e\xb9\xe5\x96\ \x2d\xbd\xbd\xbd\x45\x92\xfc\x22\x61\x32\x48\x18\xf5\x57\x63\xfd\ \x40\xf5\x13\xce\x6b\x69\xab\x81\x77\x0b\x39\x1b\xc0\x6c\x22\xd0\ \x6c\x00\xf6\x4f\x7f\xfa\xd3\x8f\x7e\xf2\x93\x9f\x5c\x32\x91\x40\ \xeb\xd8\x50\x1e\x97\xfc\xc5\xfd\x78\x71\xef\x21\x6f\x99\x74\x6e\ \xd0\x82\x42\xb4\x74\x3a\x2d\x3a\x5d\xb6\xe7\x06\x05\x8e\xb4\xe4\ \x08\x8c\x31\x7f\x8d\xea\xea\xd5\x27\x9d\xa8\xd9\xc9\x8c\x79\x5d\ \x49\xc1\x44\x0e\xaf\xa9\xa3\xe4\x8a\xc8\x45\x1a\xfc\xc6\x4d\xc8\ \x88\x2e\x1e\x31\x7a\x80\xa7\x2c\x06\x70\x71\xce\xdc\xe9\xd8\xfe\ \xdd\xd5\x98\x5a\x9b\x9c\x50\x60\xfa\xb3\x9f\xfd\x6c\xe7\xa7\x3e\ \xf5\xa9\x9f\x13\xf0\x6f\x93\x95\xbf\x4d\xaf\x0f\x13\xf0\x43\x5a\ \x0d\xe0\xb8\x09\xa0\x6e\x51\x6e\x00\x98\x01\x6f\x05\xea\x66\x78\ \xb7\x94\x4b\x02\x68\xcb\x64\x32\xe6\x8b\x2f\xbe\xb8\x6a\xee\xdc\ \xb9\xad\x13\xf9\x51\xb9\x82\x83\xcb\xbf\xf6\x63\xfc\xe2\xc5\xfd\ \x34\xf3\xc2\x2c\xbb\x71\xc2\x68\x22\x28\xe0\xf5\xe7\x54\x16\x04\ \xc3\xa4\x2d\x30\xa0\xd2\x39\x68\x1d\xbb\x7e\xc3\x2b\x42\x9d\x3c\ \xd4\xc8\xa1\x6a\xfa\xc2\x0d\x35\x7a\x3a\xb8\xf8\x9c\xd9\x78\xec\ \xef\x3e\x3d\x21\xd9\x07\x80\xbd\x7b\xf7\x76\x9f\x73\xce\x39\x9b\ \x46\x46\x46\x1c\x00\x9d\x94\xe7\x1f\xa3\x20\x30\x07\xe0\x20\xa9\ \xc0\x61\x54\xb1\xe6\x9a\x11\xe3\xff\x76\x09\xf8\x02\xa5\x83\x79\ \xda\x4b\x00\xa2\x54\x2a\xa5\x9f\x79\xe6\x99\xfd\x9f\xf9\xcc\x67\ \x16\x5a\x96\x15\xfb\xd7\x59\x26\xc7\xff\x5a\x71\x26\x7a\x06\x72\ \xf8\xd5\x9e\x6e\x48\xbf\x27\x7e\x14\x12\x1e\x00\xfe\xca\xcd\x22\ \x18\x5e\x45\x08\x20\x9f\xbe\xfa\x1a\xbf\x6c\x9c\xde\x3c\x6d\x41\ \x06\xbf\x8b\x59\x35\xb3\xba\x41\xa3\xab\x6e\xe5\x91\xd6\x5e\x5e\ \xf1\xe3\xcc\xc5\x17\xae\x3a\x1f\x9b\xfe\xfa\x4a\xd8\x96\x31\x21\ \xf0\xb3\xd9\x6c\xfe\xe3\x1f\xff\xf8\x03\xfb\xf7\xef\xcf\x13\xe0\ \x6a\xc4\xef\x20\x5d\x88\x43\x5a\xda\x57\xd5\x8a\x52\x71\xce\xc4\ \x41\x70\x57\x31\x0e\x6f\xed\xd9\x1c\xbc\xbb\x53\xe5\x01\x24\xba\ \xbb\xbb\x31\x32\x32\x72\xe4\xd2\x4b\x2f\x5d\xc0\x26\x30\x1f\x9b\ \x33\x86\x8f\x7f\x70\x2e\xce\x9a\xd3\x82\x2d\xbb\xf7\x21\xaf\x2f\ \x4e\xa2\x6e\xb9\x01\xfd\xe6\x7c\xa1\x09\x94\xda\x44\x0a\x7f\xae\ \x4b\x68\x86\xad\xd7\x75\x2b\x47\xb7\xaa\xab\x1e\x3c\xe8\xc0\x8a\ \xf2\x66\x4d\x5d\xee\xf5\x21\x5c\xdf\xbf\xeb\xc7\x83\x98\xa5\xa1\ \x2e\x81\x7f\xfd\xda\xa7\xf0\x17\xd7\x2c\xf1\x27\x97\xc4\x1e\x43\ \x12\x42\xfe\xe5\x5f\xfe\xe5\xc3\x3f\xfd\xe9\x4f\x0f\x91\xb4\xab\ \xb4\xef\x00\x91\x60\x80\xb2\x81\x7c\x35\xd2\x3f\x11\x02\xa8\x76\ \xa2\x0c\xa9\x40\x5a\x83\x26\x43\xff\x79\xdd\x73\xcf\x3d\x37\x38\ \x75\xea\xd4\xec\xd2\xa5\x4b\xe7\x4e\x54\x71\x17\xb4\x35\xe2\xda\ \x8f\x9d\x81\x67\x5e\xed\x42\xd7\xe1\xfe\x00\x60\x56\xbe\x60\x42\ \x39\xf8\xc1\x2c\xda\x32\x89\x56\x24\xf1\xd7\x67\x73\xcb\xa6\xae\ \x8f\x9e\x84\x21\xcb\x1a\x32\x03\xab\x16\xa1\xd6\xf6\x30\x09\x42\ \xad\xef\xf4\xd9\xa5\x0b\x66\x61\xfb\x3f\xac\xc6\x07\x17\xcc\x38\ \x2e\x2f\xb4\x7e\xfd\xfa\xad\xb7\xdc\x72\xcb\x6b\x04\xf6\x01\x2d\ \x23\x1b\x22\x3c\xf4\x3a\x80\x3c\x51\x04\x50\x5f\xac\xac\xbf\x96\ \x18\xa7\xee\x4a\x91\x03\x50\xb7\x79\xf3\xe6\x9e\xf9\xf3\xe7\xf3\ \x85\x0b\x17\x9e\x32\xd1\x1f\x5c\x9f\x49\xe0\x86\x2b\xce\x41\x6b\ \x73\x3d\x76\xbc\x72\x00\xd9\x7c\x51\x5b\xb7\x5d\x6a\x8a\x40\x7b\ \xa6\xcb\xbf\x0c\x01\xaf\x93\x42\x54\x00\x3e\xe2\x58\x58\xea\xa1\ \x1d\x23\x9f\x3e\x8a\x18\xb4\x35\xd5\xa5\x70\xfb\xda\x95\xf8\xfe\ \x97\x2e\x45\x7d\x26\x71\x5c\xe0\x6f\xda\xb4\xe9\xd9\xcf\x7d\xee\ \x73\xcf\xd3\x8f\xea\xd2\x46\xf9\x7a\xe8\x98\x72\x01\x43\x51\x43\ \xbe\x93\x11\x04\x86\x3f\xd3\x84\xe0\x8e\xa2\x2a\x38\x3c\x55\x3b\ \x36\x13\x00\x1e\x7f\xfc\xf1\x15\x97\x5e\x7a\xe9\xb9\xc7\x1b\x83\ \x0d\x8e\x14\xb1\xf6\xce\x2d\xb8\x7f\xdb\xcb\x28\xb9\xa2\x3c\x10\ \x2c\xdb\x98\x16\x00\x6a\x77\xa8\xd0\x97\x41\xac\x18\x07\xe8\xf7\ \x72\x0d\x29\x4d\x78\xa2\xab\x22\xd8\xa8\xa9\x5c\x2e\x2c\x83\x63\ \xf5\xb2\x85\xd8\xb8\x76\x05\x6a\xe3\xad\xb2\x1b\xf9\x78\xe2\x89\ \x27\x5e\x58\xb9\x72\xe5\x16\x35\xee\xa3\xf9\xfd\xfd\x5a\xb0\xa7\ \x8e\x1d\x41\xcc\xc5\x76\x27\x1a\x2a\x9b\x94\x05\x28\x32\xd4\x91\ \x2a\xb4\x51\x7c\x30\x05\x40\x8b\x6d\xdb\xec\xa9\xa7\x9e\xba\x72\ \xc9\x92\x25\xf3\x30\x09\x8f\x7d\x87\x06\xf0\x37\xf7\x3e\x89\xff\ \xf8\xc5\x6b\x28\x38\x8e\x96\x15\xb0\x20\x25\xa4\x75\xf6\xa9\x39\ \x20\x62\xac\x81\x8d\x7d\x35\x64\xd8\xcd\x40\x03\x5d\x4f\xff\xca\ \x49\x90\x30\x0d\x5c\x7d\xf1\x02\xdc\xfa\xd9\x0b\x63\x77\xf2\x54\ \x7a\xec\xdc\xb9\x73\xcf\x85\x17\x5e\xf8\x08\xcd\xf1\xeb\xa1\xe0\ \x4e\x50\xf4\x5f\xa0\xbc\x5f\x81\xde\x5b\x6d\xe0\x37\x19\x04\x00\ \xc9\xbe\x5a\x8f\x7e\x26\xd5\x06\xd2\xf4\x9c\x53\x8a\xd8\x6c\xdb\ \x36\x7b\xf4\xd1\x47\x57\x2c\x5b\xb6\xec\x9c\xc9\xca\xca\xba\x8f\ \x0c\xe3\x1b\xff\xef\x69\xfc\xc7\x93\xaf\xa0\x6f\xb8\xa0\xa5\x7e\ \x7c\x1c\x05\xd0\x6e\x24\x54\xf6\xf3\xb5\xd7\x65\x6b\xf3\xe9\xeb\ \xf4\xc8\x08\x12\xb8\x68\xa8\x4d\xe2\xea\x8b\xce\xc0\x2d\xd7\x5d\ \x88\xd6\xa6\x9a\xc9\xfa\x89\xd8\xb6\x6d\xdb\x8b\x57\x5c\x71\xc5\ \x16\x02\xbf\x97\x7c\xbb\x72\x01\xaa\x10\xd7\x45\x27\xdb\x37\xd6\ \x88\xdf\x89\x22\x00\x28\x03\xc8\x90\x22\xcc\x24\x57\x50\x03\xa0\ \x55\xab\x1d\x34\x00\xc0\xfd\xf7\xdf\xff\xe1\x55\xab\x56\xfd\x1e\ \x26\xf1\xe1\xb8\x02\xff\xf6\xf3\xd7\xf1\xcf\x8f\xbf\x84\x27\x7f\ \xfd\x36\xdd\xa9\x4c\x77\x03\x9a\x1a\xe8\xb7\xa2\x97\x55\x28\x00\ \x64\x48\x0d\x82\x0c\xc3\x36\x39\x3e\x72\xf6\x6c\xfc\xd1\xca\xb3\ \xb0\xfa\xa3\xf3\x63\xf7\xed\x57\xe1\xf3\x9f\x59\xbd\x7a\xf5\xd3\ \xaa\xea\xab\xe5\xf4\xdd\x24\xf7\x2e\x81\xaf\x7a\x35\x06\x26\xfa\ \x7f\x1d\x2f\x01\xf4\x78\x20\x41\x45\x22\xdf\x05\xd0\x7b\x9a\x00\ \x34\x02\xc0\x1d\x77\xdc\x71\xde\x9a\x35\x6b\x96\x71\xce\x27\x7d\ \xc9\xcb\x63\x43\x79\x3c\xf8\xe4\x1b\xd8\xb2\xab\x03\xcf\xbd\x76\ \x00\x07\x7a\x06\x20\x95\xec\x33\x4e\x75\x00\xed\xb4\xc3\xeb\xf0\ \xca\xd0\x9d\x9f\xfc\xa0\x12\x60\x52\xe2\x94\xe9\xf5\xf8\xe0\xfc\ \x59\x58\x71\x7e\x3b\xae\xbe\xf0\xf4\x09\x57\xf1\xc6\x4b\xf5\x36\ \x6e\xdc\xb8\x6d\xdd\xba\x75\xbf\xd2\x7a\x30\xd4\xd8\x8b\xee\x02\ \x0e\x92\x0b\x98\x90\xdf\x9f\x4c\x02\xa8\x4c\xa2\x09\xc1\x2d\xe7\ \xa7\xd3\xf7\xd6\x13\x09\x18\xa9\xc0\x34\x00\xb8\xe9\xa6\x9b\x3e\ \x70\xeb\xad\xb7\x5e\x96\x4e\xa7\x53\x38\x81\x8f\xce\xc3\x43\xd8\ \xfa\xab\xfd\x78\xb9\xa3\x17\x6f\x75\x1d\x43\x47\xcf\x00\x0e\xf4\ \xf4\x7b\xf7\xf2\xa9\xb0\xea\x76\xc2\x36\x91\xb2\x4d\xcc\x6a\x99\ \x82\xd9\xd3\xea\x70\xda\xac\x46\x2c\x6c\x6f\xc6\xf2\xf3\x4e\x45\ \xdb\xb4\xda\x13\x79\xba\xc8\x66\xb3\xb9\xaf\x7f\xfd\xeb\x9b\x6f\ \xbb\xed\xb6\xb7\xb4\xc1\x36\xb5\xc4\x4b\x0f\x59\xb9\xa4\x62\x8f\ \x6a\xf3\x3e\x82\x60\x79\x9f\xf7\x8c\x00\x2a\x28\x6c\x22\xeb\xaf\ \xa5\x00\x51\x8d\x21\xcc\xa0\xff\xc7\x7f\xbe\x68\xd1\xa2\xba\x07\ \x1f\x7c\xf0\xca\xf6\xf6\xf6\x56\xbc\x47\x8f\x43\x7d\x59\x0c\x64\ \xbd\x36\xf9\xfa\x74\x12\xd3\x1b\xd2\xef\xd5\xa9\xa0\xa3\xa3\xa3\ \xfb\x9a\x6b\xae\x79\x64\xf7\xee\xdd\x6a\xc4\xf5\x20\x82\xd6\xee\ \x83\x5a\x61\xa7\x97\x9e\x0b\x02\xdf\x39\xde\xff\x7b\x32\xa5\xd8\ \x26\xa9\x67\x21\x12\xe8\x81\x61\x8a\xe2\x03\x33\x95\x4a\xf1\x4d\ \x9b\x36\x5d\x74\xe5\x95\x57\x2e\x61\x8c\xe1\xb7\xf1\x21\xa5\xc4\ \x23\x8f\x3c\xb2\x73\xd5\xaa\x55\xbf\xcc\xe5\x72\x82\x00\xed\x26\ \x0b\xd7\x03\x3e\x1d\x7c\xd5\xf2\x55\x9c\x8c\x73\x30\x26\xf1\xf7\ \xa8\x45\x25\x52\x74\x72\xaa\x6a\xe8\xd0\x8f\xa8\x41\xd0\x57\x90\ \x70\x1c\xc7\xda\xb4\x69\xd3\xdb\xc7\x8e\x1d\x3b\xb8\x74\xe9\xd2\ \x59\xa9\x54\x2a\xf1\xdb\x04\x7e\x5f\x5f\xdf\xe0\x57\xbe\xf2\x95\ \x47\xfe\xec\xcf\xfe\xec\x05\xc7\x71\x54\x0b\xfe\x01\x04\x2b\x79\ \x1c\x40\xd0\x9e\xaf\x72\x7d\x55\xe9\x2b\x4e\xd6\x79\x9c\x08\xd3\ \x4b\x50\x0a\xa8\xee\x44\xde\x42\xd6\x6f\xc1\x6b\x2d\xb7\xb5\xb8\ \xa0\x19\x00\x9a\x9b\x9b\xed\x1f\xfc\xe0\x07\x1f\xfa\xc4\x27\x3e\ \xb1\xd8\x30\x0c\xe3\x37\x19\x78\xd7\x75\xdd\x87\x1f\x7e\x78\xd7\ \xe7\x3f\xff\xf9\x67\x69\x3c\x5f\x59\xb7\xf2\xf7\x45\xad\xbe\x2f\ \xc8\xff\xe7\x34\xf0\x0b\x93\x79\x3e\x27\x4a\x7b\x2d\x72\x07\x9c\ \x00\x9f\x41\x6a\xc3\x29\x18\xac\xd7\x6a\x09\x33\xe8\xfd\x58\xbe\ \x7c\x79\xe3\xc6\x8d\x1b\x57\xcc\x9b\x37\xef\x94\xdf\x44\xf0\xf7\ \xec\xd9\xf3\xce\x9a\x35\x6b\xb6\x50\x1b\x17\x10\x8c\xe4\xe9\x1d\ \xd8\x87\x09\x78\x97\xfe\x56\xa4\xd7\x47\x51\xa1\xb5\xfb\x64\x71\ \x01\x65\x19\x0d\xfd\xa8\x24\x82\x19\x46\xea\x56\xe6\xc3\x24\x71\ \x69\x94\x77\xaf\xa4\xf6\xed\xdb\x97\xfb\xfe\xf7\xbf\xff\x72\xa1\ \x50\x38\x3a\x7f\xfe\xfc\x86\xba\xba\xba\xcc\x6f\x02\xf0\x5d\x5d\ \x5d\x87\xbf\xfd\xed\x6f\x6f\xbb\xf6\xda\x6b\x7f\xb1\x77\xef\xde\ \x9c\xe6\xc7\x0f\x86\x2c\x5d\xb5\xde\xe7\x29\xda\x2f\xd1\xb5\x9a\ \x94\x80\xef\xdd\x54\x00\xf5\xe0\xa4\x04\xea\xa6\x85\x53\x54\x61\ \x48\xab\x1b\xe8\xb7\x34\x6d\xa1\xb8\x01\x9c\x73\xac\x5d\xbb\x76\ \xce\xba\x75\xeb\x3e\xf4\x5e\x66\x0b\xc7\x1b\xdd\xdf\x71\xc7\x1d\ \xcf\x6e\xd8\xb0\x61\x9f\x36\x87\x40\x0d\xe2\xe8\x8b\x72\x1e\xd4\ \xa4\xbd\x4f\x33\x8a\x12\x91\x42\x9c\xa8\x73\x7c\x37\xc2\x6f\x46\ \x31\x41\x42\x93\x7d\x35\x80\xa4\x62\x81\xc6\xa0\x6c\x87\x1a\x7a\ \xed\x57\x5a\x6e\xb8\xe1\x86\xb6\xb5\x6b\xd7\x2e\x59\xb8\x70\xe1\ \x6c\xce\x39\x3f\x99\x41\x17\x42\x88\x97\x5f\x7e\xf9\xed\x0d\x1b\ \x36\xec\xbc\xfb\xee\xbb\xf5\xd5\xd5\xf2\x04\xe6\xb0\xa6\x92\x47\ \x35\xdf\xaf\x06\x76\xf4\x85\x1c\x62\x0d\xed\x9e\xac\x04\x80\x56\ \x13\xa8\xd5\xea\x06\xcd\x44\x06\x65\xfd\xd3\x08\x7c\x68\xe9\x63\ \x23\x82\xbe\x03\x9c\x7e\xfa\xe9\xe9\x9b\x6e\xba\xe9\x8c\xcb\x2f\ \xbf\xfc\x8c\xb6\xb6\xb6\x96\x93\x09\xf8\xce\xce\xce\x9e\xc7\x1e\ \x7b\xec\xd5\xdb\x6e\xbb\xed\xd5\x37\xde\x78\x43\xbf\xb3\x53\x96\ \x80\xd6\x8f\x0d\x13\xd8\x4a\x05\x72\x28\x1f\xcc\xa9\xaa\x9f\xef\ \xfd\x46\x00\x25\xfb\x0d\x9a\xb5\xd7\x92\x3a\xa8\x58\x24\x43\xc4\ \xd0\x53\xc2\x14\xbd\xa7\x6c\xa4\xe5\xb2\xcb\x2e\x6b\xbe\xfe\xfa\ \xeb\xe7\x2d\x5e\xbc\xf8\xd4\xf6\xf6\xf6\xe9\xef\xb6\x32\x08\x21\ \x44\x47\x47\xc7\xa1\x5d\xbb\x76\xed\xbf\xf7\xde\x7b\xf7\x6c\xde\ \xbc\xb9\x37\xf4\x96\x61\xb2\x60\x7d\x90\x46\x35\x6e\x8c\x68\xa9\ \xf3\x31\x0d\x6c\x41\x8a\x50\x78\xb7\x7e\xc7\x7b\x51\x81\xe1\x44\ \x82\x84\x16\x88\x4e\xd5\xd4\x21\xd2\x0d\x90\x6a\xd4\xc2\x1b\x7a\ \x2e\x2b\xc4\xb7\xb4\xb4\xd8\xab\x56\xad\x9a\x75\xc9\x25\x97\xb4\ \x9d\x7b\xee\xb9\x6d\xad\xad\xad\x4d\xd5\xae\x6d\x5c\xed\xc3\x71\ \x1c\xb7\xbb\xbb\xfb\xc8\x0b\x2f\xbc\xd0\xb9\x7d\xfb\xf6\xce\x4d\ \x9b\x36\x1d\xa0\xa5\xd8\x10\x92\xf9\x41\x02\xd4\x19\x43\xfe\x95\ \x95\x1f\x43\x50\xca\x2d\x10\xf8\xe2\xdd\x04\xe3\xbd\x2c\xc1\x65\ \x08\x50\x65\xb9\x49\x78\xe5\x64\x3b\xf4\x9e\x46\xcd\x55\xe8\x4a\ \x52\x47\x9f\x1f\x75\x1f\x15\xdb\xb6\xd9\xa2\x45\x8b\xea\x97\x2c\ \x59\xd2\x70\xe6\x99\x67\x36\xce\x99\x33\xa7\x61\xc6\x8c\x19\xf5\ \xa9\x54\x2a\x91\x4c\x26\xad\x64\x32\x69\xa5\xd3\xe9\xa4\x6d\xdb\ \x16\x00\x14\x8b\xc5\x52\x36\x9b\xcd\xe7\xf3\xf9\x52\x3e\x9f\x2f\ \xe5\x72\xb9\xc2\xc1\x83\x07\x07\xf6\xed\xdb\xd7\xf7\xca\x2b\xaf\ \x1c\xdd\xb9\x73\x67\xdf\xee\xdd\xbb\x07\x68\x68\x36\xfc\x50\x33\ \xa5\x06\x23\x2c\x37\x47\xc0\x8f\x68\xc7\x8a\x14\xd5\xe7\x35\xab\ \x1f\x0a\xbd\xe7\xb7\x82\x00\x4a\x0d\xea\x74\x3f\x4f\xd6\x3f\x25\ \x44\x04\x05\x78\x1d\x46\xaf\x69\x60\x13\x41\x32\xb4\x37\x4f\xf0\ \x39\x3b\x04\xec\x08\xed\x8b\x11\x7f\x1f\x8c\x20\x44\x91\xa2\xfb\ \xe1\x50\x7c\x30\xf8\x6e\x5b\xfd\xc9\x44\x00\x1d\xc4\xfa\x90\x35\ \x67\x88\x08\x89\xd0\xf9\xa6\x89\x08\x35\x88\x9e\xd9\x94\xa0\xef\ \x53\x7b\x8b\xf6\x71\x63\x04\x81\xe0\x4e\x1b\x6a\x81\xc5\x62\x05\ \xff\xac\x16\x65\x52\xb3\xa6\x64\xc8\xef\xf7\x87\x2c\x5c\x75\xf1\ \x16\xdf\xeb\x0b\x7f\xb2\x8d\xc2\x24\x23\x64\x3d\x45\xc7\x32\xa1\ \xf3\x65\xf4\xfe\x34\xfd\x2d\x39\xce\xef\x31\xb4\xd4\x93\xa3\xfc\ \x76\xb9\xda\x22\xfd\x7e\x4a\x36\xd6\x30\xab\x2a\xd6\x8c\x10\xe0\ \xf9\x10\xe8\xaa\xf8\x35\x14\x0a\x02\x95\xbb\xc8\x9f\x2c\x17\xfc\ \x64\x1d\x86\x4b\x10\xe8\x76\xc8\x5d\xa8\xb8\x21\x59\xc1\x9d\xa4\ \x88\x10\xca\xfa\xcd\x49\xf8\x8d\xfa\x12\xfa\xfa\xfa\x3b\x51\xb2\ \x9d\xd7\xfc\xb9\x08\xc9\x7f\xec\x8e\xdd\xdf\x66\x02\xe8\xae\x21\ \xca\xba\x4d\x02\x5b\x6d\xc6\x18\xbf\x4f\xb9\x00\x5b\xb3\x7e\x5d\ \x09\x10\xb2\x7c\xf5\xbc\x88\xf2\x9b\x2d\x45\x3d\xf4\xf5\x14\x73\ \xa1\xc8\x5f\x57\x89\xe2\xc9\x7a\x81\xdf\x2f\x03\xf1\x5c\x03\xdb\ \xae\x40\x94\x24\xfd\x3d\x89\x13\x37\xc6\xa1\x16\x5b\xcc\xd1\x3e\ \x0a\xd8\xa2\x46\x08\x71\xb2\x5f\xd8\xf7\x63\x27\x86\x6e\xfd\xe6\ \x18\x84\xb1\xb4\x20\xd0\xa4\xbd\xb2\x7c\x16\x11\x14\xea\xf3\xcc\ \x54\x6f\x83\xa3\x05\x81\xa5\x31\x00\x75\x2a\xa8\x00\x7e\x47\x80\ \x13\xfb\x30\x42\x51\xbf\x31\x01\x65\xc1\x04\x2c\xd5\x0d\x65\x05\ \xee\xfb\xf5\x02\xfe\x7f\xa9\xb6\x37\x5c\xdd\xa9\xe6\x9c\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x24\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x07\x05\x0c\x22\x27\x4d\xb3\xa0\x3a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xed\x7d\x69\x6c\x1c\xd7\xb5\xe6\xb9\xf7\xd6\xd6\ \x1b\xd9\x4d\x52\xdc\x64\x52\x4b\x64\xda\x92\x22\x5b\x8a\x62\x3b\ \x71\x5e\xe2\x2d\x98\x38\x2f\x7b\x90\x40\x48\xf2\x0c\xf8\xd9\x80\ \x33\x99\x71\xe6\xc7\xc3\x20\x19\xcc\xcc\x43\xe0\x0c\x06\x79\x78\ \x40\x60\x07\x33\x49\xfc\x0c\x79\x90\x89\x25\x6b\x75\xc6\x8e\x6d\ \xc5\xb6\xa2\x28\x5a\x1c\xcb\x52\x24\x4b\x66\x64\xd1\xb6\x56\x4a\ \x24\x25\x52\x64\xef\xdd\x55\x75\xeb\xde\x33\x3f\x58\xd5\x2e\x16\ \xab\x49\xca\xb6\x44\x36\xdd\x17\x28\xf4\xed\xc3\x66\x2f\x75\xbe\ \x7b\xce\x77\xce\xb9\x0b\x81\x1a\x6a\xf7\xdf\x7f\xbf\x21\x84\x58\ \x22\x84\x58\x42\x29\x6d\x91\x52\x36\x13\x42\x9a\x11\x71\x81\x10\ \xa2\x93\x10\xd2\x49\x29\x6d\x02\x80\x46\x42\x48\x1c\x00\xd4\x0f\ \xe9\xa3\x39\x00\xe4\x84\x10\x19\x00\xb8\x44\x29\xbd\x48\x08\x19\ \x46\xc4\x31\x4a\xe9\x28\x22\x8e\x02\xc0\x28\x00\x9c\xb6\x6d\xfb\ \xcc\xb6\x6d\xdb\xca\xb5\x72\x4f\xc9\x5c\xfb\x42\x0f\x3c\xf0\x40\ \xc2\xb2\xac\x9b\x10\xf1\x7a\x42\xc8\x12\x21\xc4\x8d\x00\xb0\x82\ \x31\xb6\x10\x00\x52\x13\xbe\x3c\x21\x60\x18\x06\x08\x21\xa4\xa6\ \x69\x24\x1a\x8d\x12\x5d\xd7\xa5\x7b\x09\x42\x88\xa4\x94\x3a\x8c\ \x31\x81\x88\x52\x55\x55\x4e\x08\x11\x88\x28\x74\x5d\xb7\x11\x51\ \x20\xa2\x00\x00\x61\xdb\x36\x41\x44\x21\x84\x40\xcb\xb2\x28\x00\ \x48\x21\x04\x0a\x21\xa8\x94\x12\x4d\xd3\xd4\x6c\xdb\xd6\xcb\xe5\ \x72\x84\x73\xae\x0b\x21\x0c\x44\x34\x10\x91\x06\x7f\x03\x22\x0e\ \x13\x42\x4e\x12\x42\xce\x48\x29\x4f\x53\x4a\xcf\x48\x29\x4f\x11\ \x42\x8e\x6e\xdc\xb8\x31\x57\x07\x80\xdb\xbe\xf7\xbd\xef\x35\x48\ \x29\xd7\x30\xc6\xd6\x72\xce\x3f\xa7\x28\xca\x27\x11\xb1\x93\x10\ \xe2\x7d\x2f\x5c\xb0\x60\x01\xef\xec\xec\x14\x2d\x2d\x2d\x32\x95\ \x4a\x61\x32\x99\xc4\x44\x22\x41\x0c\xc3\xa0\x9a\xa6\x51\x42\x08\ \xe9\xef\xef\x47\x77\xb4\x13\x00\x70\xdc\x11\xeb\x00\x00\x47\x44\ \x4e\x29\x75\x10\x71\x82\x0c\x00\x1c\x42\xc8\x8c\x64\x94\x52\x0e\ \x00\x0e\x22\x4e\x92\xe5\x72\x39\x25\x97\xcb\x69\xf9\x7c\x3e\x92\ \xcd\x66\x1b\x72\xb9\x5c\x53\x2e\x97\x6b\x2d\x14\x0a\x2d\x52\xca\ \x14\x22\xa6\x00\x80\xbd\x87\x0d\x3c\x49\x29\x3d\x2c\xa5\x3c\x0c\ \x00\x87\x39\xe7\x47\xb6\x6d\xdb\x96\xfd\x48\x00\xe0\xbb\xdf\xfd\ \x6e\x0a\x00\xee\x12\x42\x7c\x85\x31\xf6\x79\x42\xc8\x42\xef\x3b\ \xa4\x52\x29\xf3\xc6\x1b\x6f\x2c\x2e\x5a\xb4\x88\x77\x76\x76\xca\ \x54\x2a\xc5\xe2\xf1\xb8\x42\x29\xa5\x88\x08\x42\x08\x22\xa5\x24\ \x88\x48\xa4\x94\x44\x4a\x49\x85\x10\xd4\x71\x1c\x7a\xfe\xfc\x79\ \x04\x00\xc5\xbd\xd1\x3c\x08\x02\x4f\xa9\x1f\x14\x04\x88\x38\x63\ \x60\x78\x32\x21\x04\x0e\x0c\x0c\x34\x0e\x0f\x0f\xb7\x0e\x0d\x0d\ \x2d\x1d\x1d\x1d\x5d\x81\x88\x8b\x00\xa0\xcd\xfd\xed\x88\x88\xef\ \x12\x42\x76\x03\xc0\x1f\x6d\xdb\xfe\xd3\xb6\x6d\xdb\xc6\xe6\x0d\ \x00\xee\xbb\xef\xbe\x56\xce\xf9\xb7\x01\xe0\x01\x45\x51\x56\x23\ \x22\x55\x14\xc5\x6c\x6a\x6a\xba\xd4\xdc\xdc\x3c\xd6\xd6\xd6\x96\ \x5d\xbe\x7c\x39\xac\x59\xb3\x66\x8d\x94\x12\x01\x00\xa5\x94\xe0\ \x5d\x88\x08\xae\xc2\x41\x4a\x49\x84\x10\x04\x11\x29\x22\x12\x1f\ \x00\xa4\x6b\x01\x58\x50\xf9\x5e\x9f\x10\x52\x51\xa0\x27\x0b\x58\ \x87\x09\x20\x71\x41\x30\xad\xcc\x05\xc6\x24\xd9\x74\xc0\x18\x1e\ \x1e\x36\xde\x7d\xf7\xdd\x65\x83\x83\x83\x1f\xcf\x66\xb3\x37\x53\ \x4a\x57\x12\x42\x92\x00\x20\x08\x21\xfb\x11\xf1\x19\x21\xc4\x33\ \x9b\x37\x6f\x1e\xac\x45\x00\x90\xef\x7c\xe7\x3b\x5f\x40\xc4\xff\ \xc2\x18\xfb\x3b\x00\x60\x89\x44\x62\xa8\xa3\xa3\xe3\x74\x77\x77\ \xf7\x60\x57\x57\x57\x96\x10\xa2\x00\x80\x42\x08\x51\xa5\x94\xca\ \xaa\x55\xab\x3e\x11\x8b\xc5\x52\x88\x88\xae\xe2\xd1\x55\x76\x05\ \x04\x42\x08\x22\x84\x20\x00\x50\xb1\x00\x88\x48\xce\x9e\x3d\xeb\ \x59\x00\x35\xcc\x02\x4c\x25\x0b\x58\x87\xf7\x05\x8c\x6a\x20\x98\ \x89\x8c\x31\xc6\x11\x91\x73\xce\xc5\xab\xaf\xbe\xfa\xb1\x53\xa7\ \x4e\xfd\x3b\x29\xe5\x5d\x94\xd2\x95\x00\x80\x00\xf0\x22\x21\xe4\ \x89\x0d\x1b\x36\xec\x70\x9f\xcf\x6d\x00\x7c\xf3\x9b\xdf\xfc\x96\ \xae\xeb\xff\x42\x29\xfd\x98\x61\x18\x23\x5d\x5d\x5d\x6f\xac\x5c\ \xb9\xf2\xdd\xa6\xa6\x26\x13\x00\x14\x44\x54\x3d\xc5\xbb\x0a\x53\ \x10\x51\x4d\xa5\x52\x4d\x3d\x3d\x3d\x6b\xfc\x16\xc0\x05\x03\xf1\ \xbb\x00\x3f\x00\x3c\x57\x70\xf6\xec\x59\xcf\x02\xa8\x57\xa2\xfc\ \x80\x75\x98\x56\x86\x88\xdc\xef\x1e\x7c\x60\x99\xa0\xd4\x2b\x01\ \x01\x22\x3a\x8a\xa2\x70\xaf\x2f\xa5\xe4\x88\xe8\x1c\x39\x72\x24\ \xf5\xf6\xdb\x6f\x7f\xb5\x5c\x2e\x3f\xc0\x18\x5b\x26\xa5\x3c\x4e\ \x08\xf9\x6f\x4f\x3f\xfd\xf4\x73\x73\x12\x00\x5f\xfd\xea\x57\xdb\ \x62\xb1\xd8\x76\x4a\xe9\xdf\x35\x34\x34\xbc\xbd\x6a\xd5\xaa\x3d\ \x37\xde\x78\xe3\x05\x29\xa5\xea\x2a\x5b\x01\x00\x95\x10\xa2\x04\ \x65\x1e\x08\x56\xae\x5c\x79\x73\x2c\x16\x6b\x74\x47\xbd\x07\x04\ \x3f\x00\x40\x08\x41\x5d\x00\x78\x20\xf0\x00\xe0\xbd\x97\xb8\x9a\ \x20\xa8\x06\x0c\x3f\x47\x98\x0a\x18\x41\x99\x94\x92\x2b\x8a\x52\ \xe9\x03\x80\x23\x84\xe0\x86\x61\x70\x42\x88\xe3\x38\x0e\x7f\xfa\ \xe9\xa7\xd7\x16\x0a\x85\xff\x4e\x29\xbd\x47\x08\xf1\xb2\xa2\x28\ \x0f\x6c\xd8\xb0\x61\x68\xce\x00\xe0\xcb\x5f\xfe\xf2\xa7\x1b\x1b\ \x1b\x5f\x30\x0c\xc3\x5c\xbb\x76\xed\xd6\x1b\x6e\xb8\x61\xc0\x37\ \xca\x27\x28\x3c\x4c\xe6\x81\x20\x99\x4c\x36\x5d\x7f\xfd\xf5\xab\ \xfc\x00\xf0\x73\x00\x1f\x11\xac\x8c\x7e\x97\x03\x08\xd7\xb2\xa8\ \x00\x20\xaf\x54\xf9\xd5\x88\xe2\x4c\x65\x61\xe4\xf1\x83\x82\xc0\ \x71\x1c\x1e\x8d\x46\x39\x21\xc4\xe1\x9c\x73\x00\x70\xd6\xaf\x5f\ \xbf\x06\x00\x9e\x94\x52\xb6\xe7\x72\xb9\x2f\xbe\xf8\xe2\x8b\x87\ \x3f\xa8\xee\x94\x0f\xfa\x06\xb7\xdd\x76\xdb\xf5\xa9\x54\xea\x85\ \xa6\xa6\xa6\x13\xf7\xde\x7b\xef\x56\x55\x55\x09\x22\x2a\x84\x10\ \x40\x44\xf4\x22\x3a\xaf\x1f\x26\xf3\x7c\x5b\x3a\x9d\xce\x17\x0a\ \x85\x6c\x2c\x16\x6b\x0c\xc4\xd5\x20\x84\xc0\x52\xa9\xc4\x4d\xd3\ \x94\xe5\x72\x19\x2c\xcb\x22\x9c\x73\x45\x4a\xc9\x5c\xc5\x23\x22\ \x62\x2e\x97\x83\x6c\x36\x4b\x33\x99\x0c\xcb\x66\xb3\x24\x9b\xcd\ \x2a\x85\x42\x41\xda\xb6\x8d\x88\x28\xf2\xf9\x3c\x41\x44\x61\xdb\ \x36\x96\xcb\x65\xe2\xe6\x07\x1c\x55\x55\x1d\x44\x14\xd1\x68\xd4\ \x06\x00\xc1\x18\x73\x0c\xc3\xb0\x1a\x1b\x1b\x8b\xc9\x64\xb2\xd4\ \xd4\xd4\x54\x68\x6a\x6a\x2a\xb6\xb7\xb7\xe7\x54\x55\x05\x42\x08\ \x41\x44\x37\x1d\x31\xde\xf7\xcb\xbc\xef\x2e\xa5\x24\x94\x52\xff\ \xdf\x40\x08\x41\x18\x63\x13\x64\x8e\xe3\x10\x45\x51\x80\x52\x4a\ \xa4\x94\x00\x00\x50\x2c\x16\x49\x3c\x1e\x07\x5d\xd7\x89\x65\x59\ \xb0\x71\xe3\xc6\x43\x3f\xfc\xe1\x0f\x6f\xc9\x64\x32\xff\x2b\x99\ \x4c\xbe\x7c\xcb\x2d\xb7\xdc\x7a\xe8\xd0\xa1\xd3\xb3\x0a\x80\x65\ \xcb\x96\xfd\x8f\x78\x3c\x7e\xee\x2b\x5f\xf9\xca\x6f\x09\x21\xcc\ \x25\x75\x15\xa5\x22\x22\x52\x4a\x71\x3a\x19\x00\x20\x21\x04\x07\ \x07\x07\x07\x7a\x7a\x7a\x1a\x4c\xd3\xb4\x8b\xc5\x62\xb9\x50\x28\ \xd8\xf9\x7c\xde\x31\x4d\x13\xa5\x94\xea\xc0\xc0\x40\x64\x74\x74\ \x34\xc2\x18\x8b\x94\x4a\x25\x75\x78\x78\x98\x9d\x3d\x7b\x96\xbe\ \xf3\xce\x3b\xe4\xd4\xa9\x53\xc4\xb2\x2c\xf0\xc5\xdd\x57\xa5\xe9\ \xba\x6e\xc6\xe3\xf1\x5c\x2a\x95\x1a\x4b\xa5\x52\xa3\x0b\x16\x2c\ \xb8\xdc\xd9\xd9\x39\xf2\xb1\x8f\x7d\xec\xd2\xaa\x55\xab\x2e\x45\ \x22\x11\xc7\x05\x01\xf1\x5b\x5a\x57\xe1\x24\x08\x02\x0f\x08\x9c\ \x73\xa2\xaa\x2a\x50\x4a\x09\x63\x8c\x38\x8e\x03\xb9\x5c\x8e\x24\ \x93\x49\x48\x24\x12\x04\x00\xe0\xb3\x9f\xfd\xac\x13\x8f\xc7\x7f\ \xb8\x79\xf3\xe6\xd4\xc2\x85\x0b\xff\xf9\xd0\xa1\x43\xff\x38\xab\ \x00\xa0\x94\xae\xba\xe5\x96\x5b\xfe\x2f\x21\x44\xfa\x13\x1e\x81\ \x47\x18\x0f\xe7\x71\x5a\x59\x3e\x9f\x2f\x9c\x38\x71\xa2\xcf\x71\ \x1c\x65\x60\x60\xa0\xa1\xbf\xbf\x3f\x3e\x30\x30\x10\x1b\x18\x18\ \x88\x5c\xbc\x78\x51\x13\x42\xd0\x64\x32\x09\x8a\xa2\x80\x10\x02\ \x1c\xc7\x01\xc7\x71\xa0\xb5\xb5\x15\x92\xc9\x24\x0c\x0e\x0e\xc2\ \x85\x0b\x17\xc0\x71\x9c\xab\x06\x00\xcb\xb2\x0c\xcb\xb2\x8c\xd1\ \xd1\xd1\xd6\x90\xfb\xc1\x93\xc9\xe4\x40\x6b\x6b\xeb\xe9\xae\xae\ \xae\xd3\x37\xdd\x74\xd3\xbb\x77\xdf\x7d\xf7\x59\x17\x14\xe0\x03\ \xc2\x04\x0b\xe0\xf5\x6d\xdb\x26\x9a\xa6\x8d\x2b\x47\x51\x88\x6d\ \xdb\x30\x3a\x3a\x4a\x3a\x3a\x3a\x00\x00\xe0\xad\xb7\xde\xc2\x5b\ \x6f\xbd\x15\xda\xda\xda\xfe\xab\x65\x59\x9b\x67\xdd\x05\x78\x23\ \xda\xd7\xc5\xa0\x79\xf7\xfa\xe3\xbf\x11\xab\xca\x06\x06\x06\xf4\ \xbd\x7b\xf7\x76\x5c\xb8\x70\xa1\x5d\x08\x91\x5a\xb8\x70\x21\x63\ \x8c\x01\xe7\x1c\x14\x45\x81\x8e\x8e\x8e\x8a\xc2\x39\xe7\x95\xbe\ \x1f\x08\x4d\x4d\x4d\x10\x8b\xc5\xe0\xd2\xa5\x4b\x30\x3a\x3a\x0a\ \xef\x7d\xb5\x6b\xd3\xa4\x94\xea\xd8\xd8\xd8\xe2\xb1\xb1\xb1\xc5\ \x7d\x7d\x7d\x77\xef\xdc\xb9\x13\x1e\x7d\xf4\x51\xab\xb9\xb9\xb9\ \x77\xd9\xb2\x65\xaf\xdf\x7d\xf7\xdd\xaf\xdf\x75\xd7\x5d\x17\xbc\ \x6c\x27\x21\x84\x78\x66\x9f\x52\x4a\x84\x10\x1e\x08\x88\x10\x02\ \x54\x55\x25\x42\x08\x38\x7d\xfa\x34\x41\x44\xf2\xc8\x23\x8f\x40\ \xa1\x50\xf0\x7c\xcf\x07\xfe\x71\x1f\x98\x04\xde\x77\xdf\x7d\xcf\ \x24\x12\x89\xc5\x5f\xff\xfa\xd7\x7f\xcd\x18\x9b\xc0\xf4\x83\xe1\ \x9e\x17\xf3\xfb\x65\x43\x43\x43\x0d\xdb\xb6\x6d\xbb\xfe\xf5\xd7\ \x5f\x5f\x74\xf1\xe2\xc5\x06\xff\x7b\x33\xc6\xe0\xba\xeb\xae\x83\ \xc5\x8b\x17\xc3\x82\x05\x0b\x40\x08\x51\x51\xb6\x1f\x00\x1e\x08\ \x82\xb2\x52\xa9\x04\xc3\xc3\xc3\x30\xce\xa1\xe6\x4e\x8b\x44\x22\ \xfd\x9d\x9d\x9d\x7f\xfe\xc6\x37\xbe\xf1\xec\x97\xbe\xf4\xa5\xf3\ \x7e\x32\xe8\x45\x01\x9a\xa6\x55\xc8\xa0\x94\xd2\xc9\x66\xb3\xfc\ \xdb\xdf\xfe\x36\x07\x00\xd8\xb6\x6d\x9b\xfa\xfc\xf3\xcf\x6f\xc8\ \xe5\x72\xc5\xe7\x9e\x7b\xee\x1f\x67\x15\x00\x5f\xfb\xda\xd7\xd6\ \x25\x93\xc9\x5f\x36\x34\x34\xf4\xdd\x7b\xef\xbd\x9b\x0c\xc3\x20\ \x7e\xa6\x1f\x16\xf3\x03\x80\xf2\xc7\x3f\xfe\x71\xd1\x8b\x2f\xbe\ \xb8\xf2\xf8\xf1\xe3\xdd\x52\x4a\x3a\x03\xbf\x0b\x9d\x9d\x9d\xd0\ \xde\xde\x0e\xb1\x58\x6c\x82\xa2\xa7\xba\x38\xe7\x90\xcb\xe5\xa0\ \x5c\x9e\x93\x05\x3a\x99\x4c\x26\x5f\xbd\xf9\xe6\x9b\x37\xff\xe8\ \x47\x3f\xda\x17\x89\x44\x6c\x2f\x0f\xa0\xeb\x3a\x17\x42\x70\x00\ \x70\x6c\xdb\xe6\x42\x08\xe7\xe0\xc1\x83\x7c\x70\x70\x90\x95\xcb\ \xe5\xff\x8d\x88\x5f\xdf\xbf\x7f\xff\xba\xb3\x67\xcf\xfe\x79\x56\ \x01\xd0\xdd\xdd\xbd\xf4\xe1\x87\x1f\xfe\x87\xb7\xde\x7a\xeb\x3f\ \x51\x4a\xcd\x4f\x7c\xe2\x13\x5b\x96\x2f\x5f\x7e\xbe\x5a\xb8\x77\ \xf0\xe0\xc1\xf6\xc7\x1f\x7f\xfc\xce\x73\xe7\xce\x2d\xfc\x00\x23\ \x08\x9a\x9b\x9b\x81\x10\x02\x94\x52\x10\x42\x80\xc7\x9c\x3d\x2b\ \xe1\xef\x7b\xd6\x81\x73\x7e\xcd\x5d\xc2\x15\x10\xcb\x13\xb7\xdd\ \x76\xdb\xff\xfc\xc9\x4f\x7e\x72\x40\x4a\xc9\x75\x5d\xaf\x58\x03\ \x00\x70\xca\xe5\x32\xdf\xb4\x69\xd3\x6a\x44\xfc\x35\x22\xb6\x9f\ \x3b\x77\xee\x3f\xee\xdf\xbf\xff\x25\x00\x28\xcf\x2a\x00\x00\x00\ \x1e\x7c\xf0\xc1\x07\xbe\xf0\x85\x2f\x24\xf6\xee\xdd\x7b\x5f\x3a\ \x9d\x5e\x9b\x48\x24\xfa\x56\xad\x5a\xf5\xa7\xe5\xcb\x97\x5f\xf0\ \x83\xe0\xd1\x47\x1f\xfd\xd4\x8e\x1d\x3b\x3e\x37\x93\x11\xff\x11\ \x6d\xb2\xa5\xa5\xe5\xdf\x9e\x7a\xea\xa9\x7f\x65\x8c\xd9\x5e\x32\ \x68\xe3\xc6\x8d\x6b\x4a\xa5\xd2\x3f\x09\x21\xfe\x1e\x00\x7e\xdf\ \xd8\xd8\xf8\xc3\x8d\x1b\x37\xb6\x66\xb3\xd9\x0f\x9c\x07\xf8\x50\ \xc2\x25\xc3\x30\x9a\xee\xbd\xf7\xde\xc8\xc7\x3f\xfe\xf1\x37\x10\ \xf1\xc2\xc8\xc8\xc8\xc7\xcf\x9c\x39\xf3\xf9\xbe\xbe\xbe\x55\xe9\ \x74\x5a\x89\x46\xa3\x85\xc7\x1e\x7b\xec\xb6\x97\x5f\x7e\xf9\x0e\ \x2f\x0c\xaa\xb7\xf0\x01\x59\x2a\x95\x6e\x79\xfe\xf9\xe7\x17\xf4\ \xf4\xf4\x1c\xdb\xbd\x7b\xf7\xba\x03\x07\x0e\x3c\x66\x59\xd6\x7f\ \x46\x44\xab\x5c\x2e\xff\xd3\xd6\xad\x5b\x1f\xb9\x7c\xf9\xb2\x96\ \xc9\x64\xb8\xe3\x38\x99\xb9\x92\x0a\x66\x3f\xf8\xc1\x0f\xfe\xfd\ \xb7\xbe\xf5\x2d\x9b\x10\xa2\x0a\x21\xb4\xde\xde\xde\x15\x67\xce\ \x9c\xb9\x3d\x9d\x4e\xdf\x88\x88\xac\x50\x28\x58\x27\x4f\x9e\xd4\ \x86\x86\x86\x48\x3a\x9d\x9e\xb3\xa6\x78\x36\x5b\x2a\x95\x82\x8e\ \x8e\x0e\x58\xbc\x78\x71\x39\x95\x4a\xe9\x6e\x54\xb1\xcf\x34\xcd\ \x6d\xa7\x4e\x9d\xfa\x23\x22\x0e\xf7\xf6\xf6\xa6\x55\x55\xfd\x24\ \xe7\xfc\xaf\x73\xaa\x16\x70\xeb\xad\xb7\xde\xfd\xc8\x23\x8f\x5c\ \xaf\xeb\x3a\xf3\x99\x7d\x25\x9b\xcd\x26\x4f\x9c\x38\xb1\x6a\x70\ \x70\x70\x45\x36\x9b\x5d\x84\x88\xd4\x71\x1c\x39\x34\x34\x44\x2e\ \x5f\xbe\x4c\xc6\xc6\xc6\x60\x6c\x6c\x0c\x6c\xdb\xfe\x48\x29\x5b\ \xd3\x34\x68\x6a\x6a\x82\xa6\xa6\x26\x68\x6e\x6e\x86\xf6\xf6\x76\ \xa1\x69\x1a\x03\x00\xa9\xaa\xea\xa1\x7c\x3e\x7f\x6c\x6c\x6c\xec\ \xd5\x52\xa9\x74\x9a\x52\x9a\x8d\x44\x22\x63\xeb\xd6\xad\x1b\xfe\ \xfe\xf7\xbf\x9f\x04\x00\x03\x00\xce\xcf\xb5\x6a\x20\x79\xe8\xa1\ \x87\xfe\xc3\xba\x75\xeb\x64\x20\xdc\xf3\x42\x43\xb5\x50\x28\xc4\ \x4f\x9d\x3a\xb5\xe4\xe2\xc5\x8b\x8b\x47\x47\x47\xbb\xca\xe5\x72\ \xd2\xfb\xe7\x42\xa1\x00\x1e\x18\xc6\xc6\xc6\xa0\x50\x28\x40\xb1\ \x58\xac\x90\xbb\x5a\x6d\x94\x52\x88\x46\xa3\x90\x48\x24\x2a\xca\ \x4e\xa5\x52\x10\x8f\xc7\xc1\x97\x18\x1a\x88\x44\x22\xaf\x35\x36\ \x36\xbe\xba\x6c\xd9\xb2\xfd\x7b\xf7\xee\x4d\x0e\x0d\x0d\x35\x20\ \x62\x8e\x31\x96\xa5\x94\x66\x3e\xff\xf9\xcf\x5f\xbc\xe7\x9e\x7b\ \xcc\x4f\x7e\xf2\x93\x37\x01\xc0\xe1\x0f\xeb\xfb\x29\x1f\xe2\x6f\ \xc5\x83\x07\x0f\x1e\xbc\xe3\x8e\x3b\x6e\x6f\x6f\x6f\x97\x81\x64\ \x10\x20\x22\xc6\xe3\x71\xf3\xe6\x9b\x6f\x7e\xf7\xa6\x9b\x6e\x3a\ \x0b\x00\xaa\x65\x59\x91\xc1\xc1\xc1\xb6\xe1\xe1\xe1\xd6\xcb\x97\ \x2f\x2f\x68\x6c\x6c\x6c\xe9\xee\xee\x8e\xf8\x6b\x00\xa5\x52\x09\ \x0a\x85\x02\x94\xcb\x65\x28\x16\x8b\x90\xcd\x66\xa1\x50\x28\x80\ \x65\x59\x95\x6b\xb6\x47\xb2\xae\xeb\x60\x18\x06\xc4\x62\x31\x48\ \xa5\x52\xe0\xa6\x6e\xa1\xa1\xa1\x01\xa2\xd1\x28\xb8\x35\x10\x2f\ \x1a\x19\x53\x55\xf5\xed\x86\x86\x86\x63\xcd\xcd\xcd\x27\xae\xbf\ \xfe\xfa\xb7\x16\x2c\x58\x90\xf6\xf2\x00\x7b\xf6\xec\x69\x1c\x1e\ \x1e\x6e\xd5\x75\x3d\xa3\xaa\xaa\x49\x29\x35\xd7\xac\x59\x93\x5d\ \xb1\x62\x85\xf8\xe2\x17\xbf\xb8\x08\x00\xce\x7d\x98\xdf\xff\xc3\ \x04\x00\x1c\x3d\x7a\xf4\xd0\xf6\xed\xdb\x57\x3d\xfc\xf0\xc3\x31\ \x2f\xd7\xef\x82\x00\x43\x0a\x42\xa8\xeb\x3a\x5f\xb2\x64\xc9\xc5\ \xa5\x4b\x97\x8e\x02\xc0\xbb\x88\xa8\x5a\x96\x15\x19\x1e\x1e\x4e\ \x65\xb3\xd9\x86\x74\x3a\x1d\x1f\x19\x19\x49\x14\x0a\x85\x48\x34\ \x1a\xd5\xda\xda\xda\x68\x73\x73\x33\x44\x22\x11\x30\x0c\x03\x14\ \x65\xfc\xeb\x9b\xa6\x09\x85\x42\x01\x32\x99\x0c\xa4\xd3\x69\x18\ \x1b\x1b\x83\xd1\xd1\x51\xb0\x6d\x1b\x1c\xc7\x81\x7c\x3e\x0f\x52\ \x4a\xb0\x2c\x0b\x4a\xa5\x12\x00\xc0\x24\x97\xe3\xa5\x5f\x75\x5d\ \x07\x5d\xd7\x2b\xe1\x26\x63\x0c\x18\x63\x10\x8b\xc5\x20\x1e\x8f\ \x43\x34\x1a\xad\x7c\xbe\x61\x18\xe0\x16\x7a\x2a\x21\xa9\x9b\x80\ \xe2\xb6\x6d\xe7\x09\x21\x23\x91\x48\xa4\x3f\x99\x4c\x9e\xd3\x34\ \x6d\x60\xf1\xe2\xc5\xef\xa4\x52\xa9\x6c\x70\x8e\x80\x97\x06\x1e\ \x1a\x1a\x32\x8e\x1d\x3b\xb6\x34\x12\x89\x98\x8c\x31\xcb\x30\x0c\ \x73\xf1\xe2\xc5\xf9\xcf\x7c\xe6\x33\x56\x7f\x7f\x3f\xcb\x64\x32\ \x29\x00\x38\xf9\xa1\xb2\xce\x0f\x7b\x44\x2c\x59\xb2\xa4\xed\xc1\ \x07\x1f\xbc\xef\xf6\xdb\x6f\x17\x50\xa5\xec\x8b\x88\x93\x64\x61\ \x59\x42\xef\x35\x5e\xa9\x57\x08\xa1\x16\x8b\xc5\xb8\x6d\xdb\x51\ \x44\xd4\x1d\xc7\xd1\x35\x4d\x53\x62\xb1\x18\x35\x0c\x83\xea\xba\ \x4e\xa2\xd1\x68\x45\x39\x9e\x15\x09\xd6\x0d\x84\x10\x60\x9a\x26\ \x58\x96\x55\xc9\x19\xc0\x78\xda\x6d\xc2\xeb\x4c\xd3\xf4\x92\x49\ \x58\x2c\x16\xb1\x5c\x2e\x0b\xcb\xb2\x1c\xce\xb9\x2d\x84\x28\x03\ \x40\x41\x51\x94\x7c\x2c\x16\xbb\x1c\x8f\xc7\x47\x63\xb1\xd8\xc5\ \x54\x2a\x35\x68\x18\x46\x79\xa6\xa5\x60\x44\xe4\x8c\x31\xee\x38\ \x8e\x78\xea\xa9\xa7\x7a\x8a\xc5\x22\xa5\x94\xe6\x34\x4d\xcb\xb4\ \xb7\xb7\xa7\xef\xb9\xe7\x9e\x91\x48\x24\xc2\xd7\xad\x5b\xb7\x7c\ \x78\x78\xf8\x20\x8c\xcf\x77\x98\x9b\x16\x00\x00\xe0\xcc\x99\x33\ \x97\x5e\x7a\xe9\xa5\xbe\xb5\x6b\xd7\xf6\xe8\xba\x0e\xae\x25\x98\ \x50\xf6\x75\xf3\xff\x13\x64\x38\x31\x2c\x08\xd6\x13\x48\x4f\x4f\ \x4f\xa7\x3b\x07\x80\x44\x22\x11\xc3\x9d\x19\x24\x60\x7c\x06\x91\ \x37\x49\x84\xb9\x73\x05\xa8\x94\x52\x8a\x71\xed\x3a\x85\x42\x41\ \x3a\x8e\x23\x08\x21\x42\x08\x01\xee\x74\x70\x49\x29\x95\x00\x20\ \x3d\xa5\x68\x9a\x26\x14\x45\x31\x85\x10\x9c\x52\x6a\x0b\x21\xb2\ \x88\x68\x39\x8e\x53\xe6\x9c\x9b\x30\xf3\x99\x41\x40\x08\x21\xc1\ \x52\x70\x35\x99\x10\x82\xec\xdc\xb9\xb3\x8b\x73\x6e\x18\x86\x91\ \xd3\x75\xdd\x8a\xc7\xe3\xe6\x9d\x77\xde\x99\x8d\xc7\xe3\xf0\xb3\ \x9f\xfd\xac\x39\x9b\xcd\x8e\x7c\xd8\xca\xbf\x2a\x00\x00\x00\xd8\ \xbf\x7f\xff\x8b\x4f\x3f\xfd\xf4\xd2\xfb\xef\xbf\x9f\x56\xab\xfd\ \x87\xc9\xaa\x01\x03\x11\x65\xa1\x50\x28\x27\x93\xc9\x84\xe3\x38\ \x44\x55\x55\xa6\x69\x1a\xa5\x94\x52\xc6\x18\x75\x1b\xa1\x94\x12\ \xb7\xbe\x02\xde\xc4\x51\x44\x64\x52\x4a\xf4\xde\x47\x08\x81\x52\ \x4a\xe1\xad\x09\x10\x42\x38\x52\x4a\x26\xa5\xe4\x8e\xe3\x38\xee\ \x2c\x24\x2a\xa5\x24\xc5\x62\xd1\x10\x42\x20\x22\xda\x6e\x3d\x81\ \xf8\x88\x5b\xd5\xda\x3f\x4c\x33\x1f\x20\x28\xfb\xdb\xdf\xfe\x96\ \xbc\x70\xe1\x42\xbb\xae\xeb\x39\x4d\xd3\xec\x68\x34\x5a\x5e\xbd\ \x7a\x75\x46\xd7\x75\x04\x00\x38\x70\xe0\x40\x87\x65\x59\xfb\xaf\ \x0a\x49\xbd\x4a\xdc\x08\xdf\x7c\xf3\xcd\x67\x0e\x1d\x3a\xa4\x79\ \xb5\xff\xc0\x28\x0f\x95\xf9\x81\x11\x94\xa5\xd3\xe9\xfc\x78\xe1\ \x8c\x82\x94\x52\x32\xc6\xbc\x9b\x3d\xd1\xa7\x85\x54\xc8\xde\x5b\ \x66\x00\x15\x7f\x0d\x00\x5e\x6d\xbe\x72\xf9\x40\x44\xbd\x05\x1f\ \x2e\x90\xd0\xb7\x56\x81\xf8\x2b\x79\x41\x99\x94\xb2\xaa\xcc\xab\ \xfd\xfb\x65\xb9\x5c\x4e\xeb\xed\xed\x5d\xaa\xeb\xba\x65\x18\x86\ \x15\x8f\xc7\xcd\x9e\x9e\x9e\x7c\x57\x57\x97\x03\x00\xf0\xd0\x43\ \x0f\xad\x4c\xa7\xd3\x07\xaf\x5a\x94\x72\xb5\xde\xf8\xd8\xb1\x63\ \x03\x3b\x76\xec\xf8\x6b\x2e\x97\x53\xdc\x70\x68\x92\xa9\x0f\x03\ \x81\x9f\x30\xfa\x65\xa5\x52\xc9\xb6\x6d\x9b\xbb\xa5\x53\xe9\x8d\ \x20\xbf\x72\xa7\x52\xbc\x4f\x29\x95\x47\x97\xb8\x55\x00\xe0\xfd\ \xcd\x7b\x6f\x4a\x29\x21\x84\x54\x78\x82\xff\xc3\xbc\x8c\xa6\x5f\ \x16\x02\x0c\x08\x01\x46\x45\x26\x84\x20\xfb\xf6\xed\x5b\x4a\x29\ \x95\x91\x48\xc4\x8e\x46\xa3\x56\x5b\x5b\x5b\x71\xf9\xf2\xe5\x25\ \x00\x80\xdf\xfc\xe6\x37\xad\x43\x43\x43\xfd\x00\x60\xd7\x1c\x00\ \x00\x00\xf6\xee\xdd\xfb\xca\x96\x2d\x5b\xd2\x9e\x32\x3d\x85\x83\ \x6f\xde\x80\x5f\x16\x32\x8a\x27\xc8\x32\x99\x4c\x91\xbe\x37\x8b\ \x64\x92\x32\xa7\x00\x01\x09\x98\x6f\xf0\x8f\x7e\xf7\xff\xfd\xd6\ \x80\x52\x4a\xc1\x1d\xf8\xd4\x9b\x97\xe8\x53\xde\xa4\x91\x0d\x21\ \xb3\x7f\x82\x32\xbf\x55\x00\x00\x72\xf0\xe0\xc1\xce\x52\xa9\x14\ \x75\x95\x6f\xa6\x52\x29\x73\xf9\xf2\xe5\x79\xce\x39\x29\x97\xcb\ \x6c\xf7\xee\xdd\x89\x6c\x36\x7b\xfa\x6a\xea\xe8\xaa\x17\x65\xf6\ \xed\xdb\xb7\x79\xcf\x9e\x3d\xe4\x0a\x40\x50\x55\x96\xc9\x64\x0a\ \xde\xe8\x14\x42\x48\xd7\x64\x57\x94\x1f\x06\x02\x7f\xed\xc1\x07\ \x86\x09\x7d\x9f\x62\xfc\x56\x9a\x7a\xc0\xf2\x00\xe9\x1f\xc5\x41\ \x10\x4c\x27\x0b\xf2\x87\x81\x81\x81\xf8\xd0\xd0\x50\x9b\xae\xeb\ \x56\x24\x12\xb1\x1a\x1b\x1b\xad\x15\x2b\x56\x64\xa2\xd1\x28\x02\ \x00\xfc\xf8\xc7\x3f\xbe\x7e\x68\x68\xe8\x2f\x57\x3d\x51\x75\xb5\ \x3f\x60\x60\x60\x60\xf4\x85\x17\x5e\xd8\x71\xe6\xcc\x19\x05\xdf\ \x9b\x45\x39\xc9\xdf\x07\x7c\x77\xa8\x8c\x73\x2e\x8a\xc5\xa2\x49\ \x29\xa5\x42\x08\x24\xef\xb5\x29\x41\x10\x22\x0f\xb3\xd2\x13\xac\ \xb8\x0f\x3c\xc4\x8d\x62\x2a\xca\x0d\x9a\xfa\x2b\x91\xb9\x05\x1f\ \xa5\xb7\xb7\x77\x89\xaa\xaa\x3c\x1a\x8d\xda\xf1\x78\xdc\x5e\xb4\ \x68\x51\x2e\x95\x4a\x09\x00\x80\x27\x9e\x78\x62\xe1\xd9\xb3\x67\ \x8f\x5e\x0d\xd6\x7f\xcd\x01\x00\x00\x70\xe4\xc8\x91\xc3\xdb\xb7\ \x6f\x3f\x6e\xdb\x36\xf5\xcf\x09\x0b\x86\x80\xae\xc2\xab\xca\x00\ \x00\xd3\xe9\x74\x91\x52\x4a\x7c\x53\xca\x82\x4a\xac\xce\x4c\xdf\ \xf3\xdb\x30\x91\xd7\x4d\x70\x23\x24\x48\xf4\xbc\x74\x74\xe0\x43\ \xae\x88\x03\xf8\x65\x87\x0f\x1f\x5e\x02\x00\x10\x8d\x46\xed\x48\ \x24\x62\xb5\xb7\xb7\xe7\xbb\xba\xba\x4c\x97\xf1\x37\xec\xd9\xb3\ \x27\x5b\x2c\x16\x2f\x5d\x93\x54\xf5\xb5\x4a\x99\xbe\xf4\xd2\x4b\ \x9b\xb7\x6c\xd9\x92\x9e\x2a\xe6\x9f\x89\x2c\x93\xc9\x94\x3c\x56\ \xee\x59\x81\x60\xe8\xe5\x4f\x25\x4f\x47\x10\x7d\x61\x2a\x81\xc0\ \xec\x5d\x77\xfd\xe1\x24\x85\xfb\x99\x7e\x50\x16\x00\xce\x24\x59\ \x6f\x6f\x6f\x47\xa9\x54\x8a\x18\x86\xc1\x23\x91\x88\x95\x4a\xa5\ \xcc\xee\xee\xee\xa2\x4b\x0a\xe9\x86\x0d\x1b\x1a\x47\x46\x46\xde\ \xb8\x66\xb5\x8a\x6b\x98\x36\xc7\xfd\xfb\xf7\xff\x66\xdf\xbe\x7d\ \xdc\x1f\xf3\x07\x15\x1e\x26\xf3\x93\x42\x29\x25\x66\x32\x99\x02\ \x63\x8c\x48\x29\xd1\x9f\x8a\xf5\x93\xf4\xa0\xff\xf7\x3e\x33\x18\ \x12\x06\xfb\x6e\x54\xe0\xa5\x78\x89\x1b\x85\x4c\xf2\xe3\xbe\xf7\ \x9e\x10\xf3\x07\x47\xbb\x5f\x76\xe9\xd2\xa5\xf8\xe0\xe0\x60\xab\ \xaa\xaa\x3c\x12\x89\x58\x89\x44\xc2\x5a\xb2\x64\x49\x96\x31\x86\ \x42\x08\xf2\xd3\x9f\xfe\x74\x51\x5f\x5f\xdf\x9f\xae\x69\xb1\xea\ \x5a\x7e\xd8\xc9\x93\x27\x47\x76\xee\xdc\xb9\xf9\xc4\x89\x13\x64\ \xaa\x98\x7f\x3a\xd9\xc8\xc8\x48\xd1\x5d\x39\x24\x43\x14\x53\xf5\ \xd1\x1d\xd5\x55\xd3\xe1\xde\xa8\x77\xfd\xbe\xa7\x40\xac\x16\xf3\ \x5f\x49\x1e\xc0\x34\x4d\xe5\x9d\x77\xde\x59\xa4\xeb\x3a\x37\x0c\ \xc3\x32\x0c\xc3\x5e\xb8\x70\x61\x2e\x1a\x8d\x4a\x42\x08\x59\xbf\ \x7e\x7d\xc7\xd1\xa3\x47\xf7\xbb\x99\xc5\x6b\xd6\x14\xb8\xc6\xed\ \xd5\x57\x5f\x3d\x6e\x18\xc6\xce\xb6\xb6\xb6\xbf\x6f\x6e\x6e\xf6\ \x17\x8c\x2a\x31\xbf\xb7\x34\xcc\x3f\xad\xdc\x9f\x39\x2c\x95\x4a\ \x56\xa9\x54\xb2\x23\x91\x88\xee\x38\x8e\x54\x14\x85\xfa\x47\x65\ \x50\xc9\xd5\x5c\x41\x60\x14\x4f\x8a\x16\x5c\x33\x5e\xc9\x03\x05\ \xe7\xf1\x07\x32\x82\x95\xbe\x4b\x00\x27\xc8\x7a\x7b\x7b\x17\x11\ \x42\xd0\x30\x0c\x4b\xd7\x75\xde\xd2\xd2\x52\x48\x26\x93\x36\x00\ \xc0\xee\xdd\xbb\x93\x7b\xf7\xee\x7d\x27\x9f\xcf\x5f\xbe\xe6\xe5\ \xea\xd9\x28\xa1\xee\xda\xb5\xeb\xa5\x2d\x5b\xb6\xbc\x29\x84\x20\ \x61\x09\xa2\x90\x64\xd0\x24\xd9\xd8\xd8\x58\x11\xc7\xd7\x55\x4b\ \x6f\x09\xb9\x77\xf9\x46\x7c\x55\x20\x04\x5f\x1f\xc2\x07\x82\x29\ \xe9\x49\xf1\x7d\x98\x2c\x60\x1d\x88\x6b\xf9\xda\xcb\xe5\xb2\xe1\ \x9a\x7e\xde\xd0\xd0\x50\xee\xe8\xe8\x28\x01\x00\x9c\x3d\x7b\xd6\ \xd8\xbe\x7d\x7b\x71\x70\x70\xb0\x6f\x36\x74\x31\x6b\x93\x33\xb7\ \x6f\xdf\xfe\x7f\xb6\x6e\xdd\x7a\xa9\x5a\xcc\x1f\x48\x06\x4d\x92\ \xa5\xd3\xe9\x92\x94\x12\x39\xe7\xc2\x5b\x44\xea\xe1\x23\xa8\xe8\ \x20\x08\xa6\x99\x8e\x36\xc1\x25\xb8\x2e\xe0\x7d\xc7\xfc\x63\x63\ \x63\xf1\x91\x91\x91\x66\x5d\xd7\xb9\xae\xeb\x76\x34\x1a\xb5\xba\ \xbb\xbb\x73\x8c\x31\x04\x00\xf2\xab\x5f\xfd\x2a\xde\xd7\xd7\xb7\ \x67\xb6\xf4\xc0\x60\xf6\x1a\x72\xce\xdf\x8c\xc5\x62\x9f\x5a\xb4\ \x68\x91\x41\x08\xa1\xee\xf7\x61\x2e\x30\x19\x1d\xa7\xf7\x13\x64\ \xde\xeb\xa4\x94\xd4\x30\x0c\x4d\xd7\x75\x45\x51\x14\x4a\xde\xf3\ \x17\xc4\xe7\xcf\xc3\x94\x8e\x3e\xbe\xe9\xed\x48\x82\x00\x20\x09\ \x21\x12\x11\xa5\xcb\x2f\x1c\x7b\xbc\x99\x8e\xe3\xd8\xee\xff\x49\ \xb7\xb6\x21\x61\x7c\x15\xf2\x94\x32\xce\x39\xed\xeb\xeb\xeb\x62\ \x8c\x71\x4d\xd3\xca\x86\x61\x98\x5d\x5d\x5d\x63\x86\x61\xd8\x84\ \x10\x7c\xec\xb1\xc7\x9a\xff\xfc\xe7\x3f\x3f\x7b\x2d\xe2\xfd\xb9\ \x08\x00\x18\x1e\x1e\x36\x0b\x85\xc2\xb9\x85\x0b\x17\x7e\x6a\xc1\ \x82\x05\x8a\xab\x5c\x4f\xe9\xd4\x5d\x6c\x3a\x41\xe6\x7b\xa4\x88\ \x48\x1b\x1a\x1a\x0c\x42\x08\x51\x14\x85\xfa\x48\x5c\x35\x00\x4c\ \xc8\x42\xfa\x72\x11\x38\x3e\x98\xa5\x07\x00\x29\x84\x70\x38\xe7\ \xb6\x65\x59\x25\x21\x84\xe3\x02\xa4\x02\x14\x5f\x3f\x54\x86\x88\ \xf8\xf6\xdb\x6f\x2f\x14\x42\x10\x4f\xf9\xad\xad\xad\xe9\xc6\xc6\ \xc6\x32\x00\xe0\xf6\xed\xdb\x1b\x5f\x79\xe5\x95\x3f\x95\x4a\xa5\ \xec\x6c\xea\x40\x81\x59\x6e\x7f\xfd\xeb\x5f\xdf\x6e\x6e\x6e\xde\ \xd6\xdc\xdc\xfc\x0f\x6d\x6d\x6d\x10\x12\x02\x42\x20\x22\xa8\x0c\ \xe5\x5c\x2e\x67\x39\x8e\x23\x01\x40\xea\xba\xee\x77\x03\xc4\x7d\ \x1d\x09\x73\x01\x7e\x97\x11\xe0\x03\x24\x98\x77\xa8\x96\x07\xf0\ \xe7\x1e\xc2\xea\xfc\x17\x2e\x5c\x58\x60\x59\x96\xae\xeb\x7a\x51\ \xd3\x34\x1e\x8f\xc7\xcb\x4d\x4d\x4d\xa6\x94\x92\xbc\xf1\xc6\x1b\ \x89\xdd\xbb\x77\x1f\x1d\x19\x19\xb9\x38\xdb\xf7\x9f\xc1\x1c\x68\ \xa7\x4e\x9d\x3a\x4d\x29\x6d\xbe\xe9\xa6\x9b\x96\xb8\x8c\x9e\x05\ \x2c\x41\xa8\x05\x00\x00\xaa\xaa\xaa\x62\x18\x86\xe2\xce\x0b\x08\ \x5a\x00\x12\x08\x07\x27\x2c\x4e\xf5\xa2\x0d\x6f\xae\x00\x22\x7a\ \x6e\x40\x08\x21\x04\xe7\xdc\x2e\x97\xcb\x45\x29\xa5\x70\x57\x3f\ \xa3\x6b\xe6\xbd\xd0\x20\x54\x96\xcb\xe5\x22\x83\x83\x83\x2d\x8a\ \xa2\x58\xaa\xaa\x5a\xd1\x68\xb4\xb4\x70\xe1\xc2\x34\x21\x44\x8c\ \x8c\x8c\x28\xeb\xd7\xaf\xbf\x74\xec\xd8\xb1\x03\x73\xe1\xde\xcf\ \x09\x00\x00\x00\xbc\xf5\xd6\x5b\x6f\x08\x21\x56\xad\x5d\xbb\x76\ \x01\x22\x52\x42\x88\xdf\xef\xb3\x10\x10\x30\x00\xa0\x8e\xe3\x90\ \xc6\xc6\x46\x03\x00\xa8\x0b\x1e\x12\x88\xe9\x21\x10\x25\xa0\x6f\ \x82\x88\xdf\x15\x54\xcc\xbf\x94\x12\x85\x10\x5c\x08\x61\x17\x0a\ \x85\x12\x00\x08\x97\xa8\x4a\x37\x3a\x90\x81\x7e\x45\xc6\x39\xa7\ \x67\xce\x9c\xe9\x64\x8c\x39\xaa\xaa\x5a\xba\xae\x97\xdb\xda\xda\ \xd2\x9a\xa6\x71\xdb\xb6\xc9\xcf\x7f\xfe\x73\xfb\xc0\x81\x03\x2f\ \xcc\x95\xfb\x3e\xa7\x96\x68\x6d\xde\xbc\xf9\x5f\x76\xec\xd8\xd1\ \x1f\x4c\xfc\x04\xea\x07\x13\x22\x03\xcb\xb2\xb8\x69\x9a\x82\x73\ \x2e\x82\x91\x40\x48\x78\x18\x0c\x2b\x31\x2c\x3c\x74\xff\xe6\x59\ \x0f\x39\xd3\x1c\x3f\x21\x84\x9c\x3f\x7f\xbe\x0d\x00\x40\xd3\x34\ \x5b\xd7\x75\xbb\xb9\xb9\xb9\xa0\xeb\xba\x23\xa5\x24\xbf\xfc\xe5\ \x2f\x23\xfb\xf7\xef\xff\xdd\x5c\xba\xe7\x0c\xe6\x56\x13\xd9\x6c\ \xf6\x70\x32\x99\xbc\xad\xab\xab\x2b\xe1\x11\xc1\x10\x97\xc0\xfc\ \x7d\x4a\x29\x8d\x44\x22\xaa\xaa\xaa\x9e\x05\x20\x61\x16\xc0\x87\ \x21\xe9\x1f\xf9\xbe\xe7\x12\x11\x85\x94\x12\x1d\xc7\xe1\x8e\xe3\ \xd8\xe5\x72\xb9\xe4\x1f\xed\x1e\xd1\xf3\xc8\x9e\x5f\x76\xf9\xf2\ \xe5\x44\x36\x9b\x4d\x78\xa6\xbf\xb1\xb1\xb1\x90\x4c\x26\x0b\x84\ \x10\xdc\xb8\x71\xa3\xb6\x67\xcf\x9e\x8d\xc5\x62\xd1\xaa\x03\x60\ \x8a\x36\x32\x32\x52\xce\x64\x32\x7f\xeb\xec\xec\xbc\xbd\xb5\xb5\ \x35\xea\xe7\x00\x7e\x37\xe0\xef\x73\xce\xc1\x73\x03\x8c\x31\xea\ \xa5\x73\x83\x99\x41\x4f\xe7\xbe\xad\x69\x50\x08\x51\x89\x04\xdc\ \x28\x00\xc7\xb9\x9f\xe0\x9c\x73\xab\x3c\xbe\xae\x3c\xd4\xfc\xfb\ \x65\xa6\x69\x2a\x43\x43\x43\xad\x8a\xa2\x58\x9a\xa6\x59\x91\x48\ \xa4\xd4\xd2\xd2\x92\x25\x84\xc8\x97\x5f\x7e\xd9\x78\xee\xb9\xe7\ \x9e\x1b\x1a\x1a\x1a\x9d\x6b\xf7\x7b\xce\x01\x00\x00\xe0\xe2\xc5\ \x8b\xd9\x7c\x3e\x7f\x71\xe9\xd2\xa5\x9f\x4e\x26\x93\x6a\x80\x0f\ \x54\x78\x81\x27\x93\x52\x12\x4d\xd3\x54\x45\x51\x98\xae\xeb\x34\ \x18\xfb\xfb\x47\xbf\xb7\x1b\xa9\x6f\xc4\x57\xf2\x00\xbe\xfa\x82\ \x74\x1c\xc7\x36\x4d\xd3\xb6\x2c\xcb\x9c\x49\xcc\x3f\x30\x30\xd0\ \x06\x00\x42\x55\x55\x5b\xd3\x34\xb3\xa5\xa5\x25\xa3\x28\x8a\x73\ \xe4\xc8\x11\xf5\x99\x67\x9e\x79\xf9\xe4\xc9\x93\x67\xe6\xe2\xbd\ \x9e\x93\x00\x00\x00\x38\x7f\xfe\xfc\x05\x45\x51\x0a\xcb\x96\x2d\ \xbb\x25\x12\x89\x84\x25\x83\x26\x90\x42\x44\x24\xd1\x68\x54\x55\ \x55\x95\xf9\xdd\x40\x48\x1e\x00\x3d\xa5\x13\x42\xbc\x47\xe9\x03\ \x81\x94\x52\x4a\xdb\xb6\xb9\x6d\xdb\xa6\x6d\xdb\xa6\x7f\xb4\x07\ \x63\x7e\x00\xc0\xcb\x97\x2f\x37\x9a\xa6\xa9\xa9\xaa\x6a\xab\xaa\ \x6a\x35\x35\x35\x65\x35\x4d\xb3\xfa\xfb\xfb\xd5\x27\x9f\x7c\xf2\ \xd0\xb1\x63\xc7\x8e\xcc\xd5\xfb\x3c\x67\x01\x00\x00\x70\xe2\xc4\ \x89\x77\x35\x4d\x53\x7a\x7a\x7a\x56\x6b\x9a\x46\xc2\xa2\x00\x7f\ \x34\x10\x8f\xc7\x75\x42\x48\xc5\x0d\x84\x85\x81\xbe\xac\x5f\xa5\ \xef\x9f\x36\x0e\x00\xc2\x4d\x04\xd9\x96\x65\x59\xb6\x6d\xdb\xfe\ \x70\xcf\x4d\xf2\x54\x40\x50\x2e\x97\xd5\xd1\xd1\xd1\x94\x9b\xed\ \x33\x1b\x1a\x1a\x0a\xb1\x58\xac\x94\xcb\xe5\xd8\xfa\xf5\xeb\x4f\ \xfc\xe5\x2f\x7f\xd9\x39\x97\xef\xf1\x9c\x06\x00\x00\x40\x6f\x6f\ \xef\x31\x5d\xd7\xdb\x56\xae\x5c\x79\x83\x5b\xab\xf7\xe7\x01\x26\ \x80\x40\x51\x14\x45\xd3\x34\xa6\x69\xda\x84\xea\x60\xc0\x0d\x4c\ \x88\xff\x3d\xe5\x7b\xc4\xce\x7d\x2e\x1d\xc7\xe1\xa6\x69\x9a\x9c\ \x73\xdb\x1f\xee\x05\x48\x23\x5e\xba\x74\xa9\xc5\x35\xfd\x96\x61\ \x18\xe5\xc6\xc6\xc6\xbc\x10\x02\x7e\xf1\x8b\x5f\x5c\xda\xb5\x6b\ \xd7\x96\xb9\x7e\x7f\xe7\x3c\x00\x00\x00\x8e\x1e\x3d\xfa\x5a\x32\ \x99\xbc\x71\xf9\xf2\xe5\xdd\xd5\x2c\x00\x00\x30\x21\x04\x8d\x44\ \x22\xaa\x0b\x80\x20\x09\xf4\x2b\x5e\x06\x48\x5f\xc5\xff\xbb\x07\ \x4a\x48\x37\x0d\x6c\xba\x5b\xb4\x84\xc6\xfc\x63\x63\x63\x0d\x9c\ \x73\x45\x51\x14\xae\xeb\xba\xd9\xd4\xd4\x94\x21\x84\xc8\x27\x9f\ \x7c\x32\xf3\xfc\xf3\xcf\x3f\x51\x0b\xf7\xb6\x26\x00\x00\x00\x30\ \x36\x36\xb6\x8f\x10\xf2\x89\x9e\x9e\x9e\x8e\x6a\x16\x40\x08\x41\ \x22\x91\x88\xca\x18\xf3\xdc\x00\xb8\xcb\xc6\x42\x0b\x40\x9e\xf2\ \xa5\x94\xde\x73\xe1\x01\xc4\xb6\x6d\x6e\x9a\xa6\x29\x84\xe0\x9e\ \xbf\xf7\x25\x83\xa4\x6d\xdb\x6a\x3a\x9d\x6e\x70\x4d\xbf\xd5\xd8\ \xd8\x98\x55\x14\xc5\xd9\xba\x75\x6b\xe9\xb7\xbf\xfd\xed\x2f\x67\ \xb3\xc0\x33\x5f\x01\x20\xf2\xf9\xfc\x9e\x86\x86\x86\xdb\xba\xbb\ \xbb\x5b\x43\x48\x21\x03\xb7\x82\xa8\x69\x9a\xe2\xe5\x04\x5c\x1e\ \x30\x41\xf9\x9e\x05\xf0\xa2\x00\x2f\x85\xeb\x6f\x8e\xe3\xd8\xb6\ \x6d\x9b\xee\xfa\xc2\xb0\x98\x3f\x45\x29\x15\x8c\x31\x3b\x91\x48\ \x14\x0c\xc3\x30\x5f\x79\xe5\x15\xeb\xd9\x67\x9f\xfd\x75\x36\x9b\ \x2d\xd6\xca\x7d\xad\x19\x00\xb8\x39\x02\xdb\x71\x9c\xd7\x23\x91\ \xc8\x67\xae\xbb\xee\xba\x14\x84\x54\x0d\x85\x10\xd4\x30\x0c\xa6\ \x69\x1a\xf3\x2d\x00\x99\xc0\x01\x60\x7c\xd8\xfb\x93\x42\x13\xfc\ \x3f\x00\x38\x9c\x73\x6e\x9a\x66\x59\x4a\x29\x82\x31\x7f\x3e\x9f\ \x8f\xda\xb6\xad\x31\xc6\xac\x48\x24\x52\x4e\x24\x12\x85\x5d\xbb\ \x76\xc9\x67\x9f\x7d\xf6\xc9\x53\xa7\x4e\x5d\xac\xa5\x7b\x5a\x53\ \x00\x00\x00\xe8\xef\xef\x2f\x70\xce\x0f\x75\x74\x74\xdc\xd9\xd2\ \xd2\xd2\x10\xcc\x0e\x22\x22\x51\xc6\x1b\x55\x14\x85\x7a\xc7\xcc\ \xf8\x0f\xa2\xf0\x17\x80\x3c\x4b\xe0\x56\xfd\xbc\x15\xc4\xe8\x38\ \x8e\x55\x2e\x97\xad\x60\xe2\x47\x08\x41\x72\xb9\x5c\xc2\x33\xfd\ \x89\x44\x22\xf7\xe6\x9b\x6f\x3a\xbf\xfb\xdd\xef\x9e\xe8\xed\xed\ \x3d\x5d\x6b\xf7\xb3\xe6\x00\x00\x00\x70\xee\xdc\xb9\x0c\xa5\xf4\ \xad\x96\x96\x96\x3b\x9b\x9a\x9a\xa2\x1e\x08\xbc\x22\x12\x22\x52\ \x5d\xd7\x99\x57\x1c\xf2\x8d\x7e\x7f\xf2\xc6\x9f\xfe\x05\x2f\xfc\ \x73\xb9\xa0\xe0\x9c\x3b\xa6\x69\x9a\x84\x90\x09\x16\x20\x97\xcb\ \xc5\x11\x11\x15\x45\xe1\x89\x44\x22\xd7\xdf\xdf\x2f\xb6\x6f\xdf\ \xbe\xe1\xb5\xd7\x5e\x3b\x5e\x8b\xf7\xb2\x26\x01\x00\x00\xf0\xce\ \x3b\xef\x0c\xa9\xaa\xfa\x6e\x47\x47\xc7\x5d\x6e\x1a\x98\x79\x7c\ \x40\x4a\x49\x35\x4d\x63\x2e\x0f\xa0\x2e\xfb\x9f\x90\xb9\xf3\xb3\ \x7f\x57\xf9\x28\x84\x90\xde\xde\x01\x6e\x0a\xc0\xf2\x62\x7e\x00\ \x40\xdb\xb6\x95\x72\xb9\x6c\x10\x42\x78\x22\x91\xc8\x0d\x0f\x0f\ \x3b\x9b\x36\x6d\xfa\x7f\xbb\x76\xed\xda\x5f\xab\xf7\xb1\x66\x01\ \x00\x00\xd0\xd7\xd7\xd7\xaf\xeb\xfa\xb9\xeb\xae\xbb\xee\x4e\x2f\ \x09\xe4\x59\x03\x4a\x69\x65\x0f\x01\x5f\x2e\x60\x82\x1b\x78\x4f\ \x34\x31\x0b\xe8\xee\x2d\x61\xd9\xe3\xfb\xc8\x54\x7c\x7f\x2e\x97\ \x4b\x10\x42\x9c\x48\x24\x52\xca\x64\x32\xf6\xd6\xad\x5b\x9f\xff\ \xc3\x1f\xfe\xb0\xa3\x96\xef\x61\x4d\x03\x00\x00\xe0\xf8\xf1\xe3\ \xa7\x0c\xc3\xb8\xd4\xdd\xdd\x7d\x47\x34\x1a\xd5\xe1\xbd\xfa\x00\ \x55\x55\x55\x61\x8c\xd1\x4a\x12\xc0\x17\x0a\x7a\xf3\xff\x02\x20\ \x10\x42\x08\x49\x08\x11\xa6\x69\xda\x8e\xe3\x70\x8f\x03\x98\xa6\ \xa9\x3b\x8e\x43\x75\x5d\xb7\x1c\xc7\x29\x6d\xda\xb4\xe9\xa5\xdf\ \xff\xfe\xf7\xdb\x6b\xfd\xfe\xd5\x3c\x00\xdc\x6c\x61\x9f\xa6\x69\ \xd9\x25\x4b\x96\x7c\xce\x30\x0c\xcd\xe3\x03\x8a\xa2\x50\x5f\x52\ \x68\xc2\xa8\x0f\xcc\x04\xf2\x40\xe0\x71\x03\xc1\x39\xb7\x1d\xc7\ \xf1\x92\x40\x50\x2a\x95\x0c\xf7\x14\xd2\xd2\xa6\x4d\x9b\x76\x3d\ \xf3\xcc\x33\xbf\x9d\x0f\xf7\x6e\x5e\x00\xc0\x05\xc1\x9b\xf1\x78\ \xbc\xbc\x74\xe9\xd2\xcf\x69\x9a\xa6\xb8\x20\x60\xee\xe6\x8b\xd4\ \x4d\xfe\xb8\x11\x60\xe5\xd1\x23\x86\x1e\x08\x84\xcb\x07\x84\x6d\ \xdb\xb6\x1b\x02\x4a\xcb\xb2\x54\x29\x25\xd1\x75\xbd\xb8\x61\xc3\ \x86\x7d\x5b\xb6\x6c\xf9\xd5\x7c\xb9\x6f\xf3\x06\x00\x00\x00\x6f\ \xbc\xf1\xc6\xe1\x44\x22\x01\xcb\x96\x2d\xfb\x8c\xa2\x28\x8a\x94\ \x92\xa8\xaa\x4a\xdd\x19\xc3\xe0\x53\xb4\xf4\x57\x01\x5d\x24\x08\ \x5f\x29\x58\xd8\xb6\xcd\x11\xd1\x41\x44\xb4\x2c\x4b\x57\x55\xb5\ \xb4\x65\xcb\x96\xd7\x37\x6e\xdc\xf8\xaf\xf3\xe9\x9e\xcd\x2b\x00\ \x00\x00\x1c\x39\x72\xe4\xb5\xee\xee\xee\xc5\x4b\x97\x2e\x5d\x85\ \x88\xcc\x25\x83\x24\x30\xea\xc3\x4a\xc0\x1e\x30\xbc\xc3\xa4\x6d\ \x29\xa5\xe4\x9c\xab\x88\x28\x76\xef\xde\x7d\xfc\xf1\xc7\x1f\xff\ \x67\xcf\x25\xcc\x97\xa6\xc0\x3c\x6c\xe9\x74\xba\x57\x4a\x09\xe5\ \x72\x19\x4b\xa5\x92\x14\x42\x30\x77\x22\x07\x40\x60\x2f\x20\xdf\ \xf1\x73\x92\x10\x42\x2c\xcb\x62\x8e\xe3\x50\xd3\x34\x15\x21\x04\ \x9e\x3b\x77\x4e\x5b\xb4\x68\x51\x3e\x9f\xcf\xff\x0d\x6a\x24\xbf\ \xff\x91\x07\x00\x21\x04\x19\x63\xe8\x9d\x2c\x12\x8f\xc7\x21\x16\ \x8b\x51\x00\x20\xe5\x72\x59\x96\x4a\x25\x56\x2c\x16\x45\xb9\x5c\ \x56\xbc\x29\xe0\x52\x4a\x21\xa5\x54\x6c\xdb\x2e\x73\xce\x89\xa2\ \x28\x34\x1a\x8d\x22\x63\x4c\x6a\x9a\x26\xdc\x84\x10\xd4\x01\x50\ \x03\xcd\xb7\x68\x13\xbd\x2d\x5e\xe3\xf1\x38\xa8\xaa\x4a\x28\xa5\ \xd4\xb6\x6d\xb4\x2c\x0b\x38\xe7\x68\x59\x16\x5a\x96\x25\x2d\xcb\ \xf2\xe6\x00\x38\x9c\x73\x9b\x31\xc6\x19\x63\x42\x55\x55\x05\x11\ \x09\xa5\x94\xd5\x01\x50\x23\xcd\x7f\x1e\xa1\xb7\xbe\x5f\x51\x14\ \xd0\x34\xad\xb2\xb7\x2f\x63\x0c\x2d\xcb\x02\x45\x51\x50\x55\x55\ \xa9\xeb\xba\xe4\x9c\x4b\x45\x51\x84\x65\x59\xde\x64\xd1\xca\xac\ \x6f\xc6\x98\x56\x07\x40\x8d\x59\x00\xf0\xad\x1f\xf0\xb9\x87\xca\ \xc6\xce\xde\x66\xd3\xee\xb1\xb4\xe0\xdb\x2e\x6e\xd2\x1e\x42\x30\ \x4f\x1b\x9d\xc7\x00\xa8\x2c\xfa\x08\xee\x1e\x1a\xd8\x22\x2e\x4c\ \x56\x75\x2f\x80\x3a\x00\x6a\x07\x04\x00\x13\xb7\x98\x09\xdb\x36\ \x34\x8c\x40\x56\x5d\x05\x54\x07\x40\x0d\x45\x01\xe0\xdb\x54\x62\ \xaa\x13\x36\xfd\x8b\x49\x83\x9b\x41\xf9\x77\x0e\x63\x8c\xd5\x01\ \x50\x2b\xcd\x71\x1c\x12\x38\x98\xda\xbf\xc5\x0c\x09\x53\xbe\x1f\ \x3f\x41\xbf\x3f\x8f\x0d\x00\xcc\xe7\xf3\xfb\x3c\x85\xcb\xa9\xdc\ \x80\x5f\xe1\x21\x5b\xbf\x91\xf9\x7e\xcc\xdd\xbc\x05\x80\x7b\xa0\ \xc4\x4c\xcf\xa6\x9b\x0a\x18\x30\x9f\x41\x30\x6f\x01\xe0\xc5\xff\ \xe0\x9b\x08\x3a\x1d\x21\x0c\xb3\x00\xc1\xbd\x87\xea\x00\xa8\x11\ \x12\x18\x8c\x02\xa6\xc9\x17\x4c\xe2\x00\x81\x5d\xc6\xeb\x16\xa0\ \xd6\xcc\x7f\x60\x2f\x98\xa9\x94\x0f\xd5\x88\xa0\x3f\x0a\xa8\x03\ \xa0\xf6\x22\x01\x4f\xff\x57\x6c\x40\x42\x46\x7d\xdd\x02\xd4\x14\ \xfd\x1f\xdf\xe0\xb1\xf2\x74\xaa\x73\x84\xa6\x0a\x01\xfd\x47\xd2\ \x84\x9d\x4f\x54\x07\xc0\xdc\x25\x80\xde\xf6\x6e\x93\xb6\x9b\x0f\ \x03\x41\x60\xd7\xf0\xaa\xbc\xa0\x0e\x80\xda\xb2\x02\x61\xa7\x8e\ \x84\x29\x1c\xa6\x50\x78\x9d\x03\xd4\xaa\xfe\xbd\x3c\x40\xc8\x46\ \x91\x53\x66\x02\xa7\x8a\x0c\xea\x00\xa8\xa1\x48\xd0\xad\xe7\x07\ \x0f\x9c\xa8\x28\x39\x44\xf9\xa1\xa7\x7c\xd5\x2d\x40\xed\x46\x01\ \x33\xce\x04\x5e\x41\x7d\xa0\x0e\x80\x1a\x8a\x02\x26\x6d\x2a\x19\ \x6a\x2a\x42\xce\x0c\xf2\xe7\x01\xc8\x95\x9c\x4a\x55\x07\x40\xcd\ \x59\x00\x52\xcf\x03\xcc\xd3\xe6\x71\x00\x3f\x11\x9c\x6a\x5e\x40\ \x58\x08\xe8\x9d\x1e\x56\xe7\x00\x35\xd8\x38\xe7\x13\xa6\x85\xc1\ \x7b\x13\x44\xa6\xcc\x03\x40\x95\x93\x3e\xeb\x00\xa8\xad\xd1\x4f\ \xfc\x16\x60\x26\x33\x82\xaa\x55\x03\xc3\x88\x62\x1d\x00\x35\x02\ \x82\x30\x0e\x50\xa5\x36\x30\x65\x1e\xa0\x3e\x1f\xa0\xc6\x1a\x63\ \x0c\xdd\x62\xd0\x04\x0e\x10\x50\xf8\xa4\x3c\x40\x48\x56\xb0\xf2\ \x3a\xce\x39\xab\x03\xa0\x46\x9a\xff\xec\xc1\x29\x46\x7d\xe8\x68\ \xaf\x56\x0b\x28\x14\x0a\x7a\x1d\x00\x35\xd4\xfc\x79\x80\xa9\x38\ \x80\x3f\x0f\x10\x4c\x02\xf9\xf3\x00\xf5\x6a\x60\x0d\x35\x44\x24\ \xe3\x7b\x3c\x93\x49\xb3\x82\xc3\x94\x5f\x45\x56\x8f\x02\x6a\x1c\ \x04\x95\x2e\x4c\x3e\x78\xb2\x1a\x11\xac\x9a\x07\xa8\x47\x01\x35\ \xc6\x01\xbc\xdd\xc0\xc2\xfe\x36\x55\x14\xf0\x51\x0a\x01\xe7\x3d\ \x07\x08\x96\x84\xa7\x09\x01\x43\x41\x50\xe7\x00\xb5\x0b\x80\x69\ \x6b\x01\x61\x23\xbb\x9e\x07\x98\x07\xcd\x71\x9c\xca\xde\xc0\x50\ \xbd\x1a\x58\x55\xf9\x61\x73\x04\x14\x45\x91\x75\x00\xd4\x58\x24\ \xe0\x0b\x94\x55\x1b\x58\x00\x00\x03\x89\x49\x44\x41\x54\x05\xe1\ \xfd\xce\x0e\xf6\xfa\xb1\x58\xcc\xaa\x03\xa0\x06\xf3\x00\xbe\x03\ \xa2\x67\xe2\x06\x82\xa5\xe0\xf9\x1c\x01\xce\x5f\x00\x48\x29\x41\ \x4a\x49\xbc\x74\x70\xd8\x26\x11\x7e\x85\xcf\x60\x75\x70\x9d\x03\ \xd4\xa0\x0b\x40\x29\xe5\x84\xbd\x02\x02\xe1\xe0\xb4\x79\x00\xbf\ \xac\x3e\x23\xa8\xc6\x5a\x70\x5d\xc0\x34\x1c\x60\xca\x5a\x40\x3d\ \x0a\xa8\x51\x37\x50\xe5\xc0\xe8\xa0\x2c\xcc\xd2\xd7\xf7\x07\x98\ \x0f\x51\x80\xff\xb4\x71\x4f\xf9\xd3\x65\x02\xeb\xeb\x02\xe6\x5f\ \x08\x38\xdd\xea\xe0\x49\xfe\xbe\xca\x5a\x81\x3a\x00\x6a\x2d\x0a\ \x98\x6e\x12\xe8\x74\x5b\xc6\xd4\xa3\x80\x1a\x8f\x02\x7c\x26\x7f\ \xd2\xc4\x10\x1f\x38\xc2\xf2\x00\xe8\xd3\x7d\xdd\x02\xd4\x5a\x73\ \xab\x81\xfe\x25\xe2\xd5\x5e\x07\x33\xb4\x00\x75\x00\xd4\x9a\x01\ \x90\x52\xa2\xa2\x28\x58\x6d\x87\x90\x2a\xa4\x71\x52\x26\xd0\x93\ \xd5\xab\x81\x35\xd4\x14\x45\x91\xee\x74\xae\x8a\x1b\x98\x6a\x7e\ \xe0\x74\xab\x83\xeb\x79\x80\xda\x24\x82\x61\x31\xbf\x1f\x10\x53\ \x7a\x87\x20\xff\xab\xcf\x08\xaa\x3d\x00\x90\x2b\x28\xe1\x4e\x62\ \xfc\xf5\xb5\x81\xf3\x80\x07\xb8\x7e\x3b\x6c\x9f\xc0\x49\xe6\xbf\ \xca\xce\xe0\xf5\x28\xa0\x56\xa3\x00\x21\x04\x09\x4b\xfd\x56\x1b\ \xf9\x41\x59\x7d\x9f\xc0\xda\xcf\x03\x80\xaa\xaa\xde\xa9\x21\x61\ \x5b\xc1\x80\x9f\xe9\x4b\x29\x29\x22\x32\x29\x25\x95\x52\x2a\xee\ \x73\xea\x01\x62\xbe\x46\x01\xf3\xf1\xc4\x10\x9a\xcb\xe5\xa2\xb1\ \x58\x8c\xd9\xb6\xad\x11\x42\x54\x29\x25\x43\x44\x1a\x32\xe5\xcb\ \x23\x85\x44\x4a\x49\x85\x10\xcc\x71\x1c\xd5\x71\x1c\xe9\x4e\x28\ \xa5\x8e\xe3\x00\xe7\x5c\x14\x8b\x45\xc3\x1d\x30\xf5\x63\xe3\x66\ \xc3\xaa\xfb\x2c\x96\xe7\xab\x69\xe0\x39\x01\x80\x24\x00\x24\x8f\ \x1e\x3d\x3a\xb4\x66\xcd\x9a\xb2\xe3\x38\x1a\x22\xaa\x8e\xe3\x28\ \x6e\x9c\x3f\xd5\x44\x50\xe2\x5a\x03\x2a\x84\x50\x1d\xc7\xa1\x88\ \xc8\x2c\xcb\xc2\x03\x07\x0e\x0c\xec\xdc\xb9\xb3\x1f\x00\x56\x00\ \x40\xc6\xbd\xd0\x77\x49\xf7\xf2\x3f\x9f\xca\xf5\xcc\xb9\x1b\x3b\ \x57\xbe\x4b\xe5\xf4\xef\x80\x82\x83\xfd\x30\x00\xc4\x3d\x00\x00\ \x40\x4a\xd7\xf5\xce\xd5\xab\x57\x7f\xba\xab\xab\x6b\xc1\x0d\x37\ \xdc\xd0\xba\x7a\xf5\xea\xe6\xee\xee\xee\x48\x43\x43\x83\xc6\x18\ \x23\xb6\x6d\x13\xce\x39\xda\xb6\x2d\xb3\xd9\xac\x48\xa7\xd3\x76\ \x2e\x97\x73\x86\x86\x86\xf2\x03\x03\x03\xd9\x6c\x36\x5b\xbc\x78\ \xf1\x62\xfe\xe4\xc9\x93\x03\x17\x2e\x5c\x38\xec\x2a\x3d\xed\x03\ \x40\xa1\x0a\x00\x64\x15\x99\x77\x09\x9f\xfc\x23\x0b\x00\x12\xa2\ \xe8\xe0\xf3\x99\x5e\x1e\x18\x0c\x57\xf9\x8d\xee\x63\x83\xdb\x8f\ \xc2\xd4\x73\xff\x21\x64\xb4\xfa\xc9\x63\x09\x00\xb2\x00\x90\x73\ \x15\x9f\x75\x1f\xcd\x2a\x0a\x9e\xe9\x25\x42\x9e\xe3\x7c\x76\x01\ \x61\x23\x9c\x4d\x21\x9b\xaa\x5f\x0d\x30\xc2\xbd\x38\x00\xd8\x00\ \x50\x76\x5f\x17\x03\x00\xdd\xf7\x3d\xaa\x01\xdf\x3f\x7d\xcc\x02\ \x80\xa2\xfb\x1e\xb6\xfb\x9e\xde\xfb\x6b\xee\xbd\x9b\x4e\xa1\x33\ \xed\x8b\xd9\xb2\x10\xca\x2c\x29\x7f\xa6\x8f\xd5\xfe\x36\xd5\xeb\ \x4b\xae\xb2\x2c\x77\x94\x96\x00\x20\xe2\x5a\x08\xc3\x55\x9e\xea\ \x7b\x1f\x08\x01\x8e\xe9\x5e\x65\xf7\xff\x0b\xee\xc5\xdd\xcf\xd0\ \x43\x14\xc8\x7c\xef\x23\xdd\xdf\xec\xfd\x2d\xd8\x17\x10\x3e\xff\ \x70\x42\x2e\xeb\x5a\x80\xe0\x5a\x01\x20\xb8\x65\xdb\x74\x97\x77\ \x03\xab\xfd\x6d\xba\xd1\x8b\xae\x99\xce\xf9\x00\xa2\xfa\x94\xaf\ \xfa\x40\x03\x3e\xe5\x70\x1f\x08\x78\xc8\xa8\x9e\x6a\xa4\x8b\x00\ \x11\x0c\xfb\xde\x33\xfd\xfd\xd7\x8c\x40\xce\x06\x07\x98\xa9\x89\ \x7f\xbf\xbc\x80\x54\x79\x84\x40\xc4\x30\x15\x88\x30\x30\x0a\xab\ \x11\xbc\xf7\xeb\xef\xa7\x73\x0b\x1f\x99\x28\x80\x4c\x41\x08\xc9\ \x34\x0a\x0e\x2a\x99\x84\x84\x85\x53\x29\x7e\x3a\x12\x18\x06\x84\ \xb0\xd1\x3c\x1d\xeb\xf7\xcb\xab\x11\x3f\x9c\x4d\x05\xcc\xd5\xf0\ \x94\x84\x80\xa0\x5a\xfc\xef\x57\x3e\x84\x28\x7e\x2a\x5f\x3b\x95\ \xbb\x82\x10\x20\xc0\x14\x26\xbd\x1a\x08\x70\xb6\x15\x5d\x6b\x00\ \x78\x3f\xbf\x81\xcc\xa0\x7f\x25\x51\x40\x18\xaf\xa8\xd6\xaf\xd9\ \xf6\xff\x01\xb9\x99\x3e\xb7\xcf\x9e\x63\x96\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x18\xeb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x03\x12\ \x0a\x39\x2b\x20\xa6\x20\x0a\x00\x00\x18\x6b\x49\x44\x41\x54\x78\ \xda\xed\x5d\x5d\x6c\x1c\xd7\x75\xfe\xee\x9d\x99\xdd\x9d\xe5\xfe\ \x52\x34\x25\x8a\x5c\x89\x2b\x1b\x16\x64\x55\x16\xed\x0a\xa8\xe1\ \xb4\x81\x8d\x38\x70\xe0\xa0\x2f\x79\x4b\xf3\xdc\xe4\x21\x40\x03\ \x19\xb0\x91\x47\x3d\x18\x41\x62\xc1\x02\xdc\x87\x00\x49\xfb\x90\ \xd4\x7d\xa8\x0a\x34\x86\x11\xd8\x30\xe0\xda\x7e\x48\x50\xdb\x15\ \x21\x43\x90\xe2\xd8\x80\xe5\x1f\xc9\xae\x25\x86\xe6\xcf\x92\xe2\ \xfe\xcc\xce\xdc\x3e\xcc\xdc\x99\x3b\x33\x77\x7e\x96\xdc\x25\xa9\ \xdd\xbd\xc0\x60\x66\x47\x24\xb5\x73\xce\x77\xce\xf9\xce\xb9\x77\ \xee\x01\xc6\x63\x3c\xc6\x63\x3c\xc6\x63\x3c\xc6\x63\x14\x07\xd9\ \xa3\xff\x57\x01\x50\x02\x50\x00\x90\x19\x71\x1d\x74\x00\x6c\x02\ \x68\x00\x30\x47\x01\x00\x0a\x80\x43\x00\x0e\x03\x28\x02\xd0\x46\ \x1c\x00\x06\x80\x0d\x00\xff\x07\xe0\xd6\x6e\x83\x40\xdd\x83\x07\ \x2e\x01\xb8\x07\xc0\x8c\x73\x8c\x3d\x00\xf0\x95\x03\x84\x2d\x00\ \xab\xc3\x0e\x80\x0c\x80\x3c\x80\x49\x00\x47\x7f\xf4\xa3\x1f\xdd\ \x3b\xca\xda\xff\xd5\xaf\x7e\x75\x1d\x40\x1b\xc0\xf2\x5e\x18\xc3\ \x5e\x84\x80\xc3\x00\x8e\x01\x38\x0e\xe0\x38\x63\xec\x99\x91\x26\ \x61\x84\x9c\x07\xf0\x91\x73\x7c\xe2\x84\x82\x5d\x1b\x74\xcc\x83\ \x47\x7b\x8c\x01\x30\x06\xc0\xde\x0e\xc6\xd8\xc8\x0a\x7f\x3f\x3c\ \xfb\x18\x00\x63\x00\xec\xbd\x10\x46\x11\x04\xfb\xe5\xb9\xf7\x0d\ \x00\x46\x09\x04\xfb\xe9\x99\xf7\x05\x00\x2c\x6b\x74\x40\xc0\x9f\ \x93\x3f\xf3\x5e\x0f\x75\x3f\x08\x04\x60\x10\x65\x41\x08\x19\x7a\ \xcb\xdf\x2f\x80\x1f\x03\x60\xc4\x01\xb0\x6f\x38\x80\x18\x06\x2c\ \xcb\x1a\x3a\xe5\x5b\x96\x25\x7d\xd6\xb1\x07\x70\x3c\x80\x7d\xed\ \x17\x18\xa5\x74\xe8\x94\x2f\x1e\x96\x35\x06\x00\x2c\x8b\x81\x52\ \xe6\x5c\x03\xa2\xce\x2d\xcb\x02\x21\xe4\xae\x0d\x09\x51\x4a\x1f\ \x73\x80\x00\x00\x08\x61\xc2\x67\x3f\x08\xee\x56\x5e\x90\xa4\x7c\ \xcb\xb2\xc6\x1e\xc0\x16\x94\xe5\x28\x9d\xfa\x40\x40\x48\x18\x08\ \x77\x0b\x08\x92\xac\xde\x3b\xac\x31\x00\x44\xc2\x17\x8c\xf9\x1c\ \x08\xde\xc1\xf6\x75\x48\xf0\x14\x8b\x08\x85\x8b\xd6\x6f\xed\x0b\ \xb2\xbb\xaf\x00\xc0\x18\x40\x29\x01\xa5\x04\xf6\x52\x05\xd9\xb1\ \x3f\xbd\x41\x9c\xc2\x45\x4f\x60\x7b\x83\x31\x00\x7c\x1c\x00\xb0\ \x1c\xa5\xc2\x51\x32\x0d\x58\xbe\x1d\x0e\x18\x0b\x7b\x82\xbd\x06\ \x82\x5f\xc9\x69\x2c\x5f\x04\xc0\x98\x03\x38\x56\x40\x01\x58\x0e\ \x00\xec\xeb\xa8\x70\x60\xa7\x8c\xc4\xf5\x18\x7b\x15\x16\x44\xa5\ \xdb\x85\xac\x78\x10\x70\x85\xdb\x29\xa1\x77\x3d\x06\x80\x2b\x04\ \x02\x4f\x87\x44\x08\x07\x54\x50\x3a\x01\x63\xc4\xc7\x09\xf8\xcf\ \x72\x20\x0c\x32\x3c\xf0\xb4\x2d\xac\x78\x71\x76\xcf\x0f\x06\xbf\ \xd5\x8f\x38\x00\xce\x9d\x3b\x57\x30\x4d\xf3\x3f\xb7\xb6\xb6\x1e\ \xbe\x7d\xfb\xb6\x72\xeb\xd6\x2d\x1a\x05\x00\x1e\x0e\x38\x10\xc4\ \x70\xc0\x01\x61\x83\xc1\x56\xbc\xff\x9a\xf9\x40\xb0\x5d\x40\x88\ \x79\x7a\x9c\xf2\x65\x40\xf0\xd8\x7f\x3c\x00\x9e\x78\xe2\x89\xb3\ \x87\x0e\x1d\xb2\x0e\x1e\x3c\x68\xe6\xf3\xf9\xcb\x8a\xa2\x7c\xe7\ \xdc\xb9\x73\x9b\x43\x09\x80\x5c\x2e\xf7\xbd\xa9\xa9\xa9\x6f\x7c\ \xf9\xe5\x97\xd8\xd8\xd8\x40\x2e\x97\x73\xad\x80\x31\x0a\x4a\xad\ \x10\x00\xbc\xb3\xed\x0d\xb8\x72\xb9\x07\xf0\x3c\x02\x73\x41\x60\ \xff\x3c\x73\x7f\x9f\x2b\x2f\x2d\x10\xfc\x8a\xe7\x0a\x0e\x9f\xc5\ \x79\x0c\xb1\xb0\xc3\x2b\x7f\x51\x00\x10\x79\x40\x2e\x97\x53\xf3\ \xf9\x3c\x4a\xa5\x12\x66\x67\x67\xbf\xb1\xbc\xbc\xfc\x3d\x00\xff\ \x36\x94\x00\xa0\x94\x4e\x64\xb3\x59\x2c\x2f\x2f\x63\x79\x79\x19\ \xeb\xeb\xeb\x2e\x00\x3c\x02\x08\x30\x46\x1c\xd2\x27\x9e\xb9\x65\ \x53\xe7\x9e\x07\x04\x5b\x09\xc4\x07\x02\xef\x8c\x10\x10\x38\xc8\ \x02\x6a\x0f\x80\xc0\xbb\x97\x04\x02\x4f\xf1\xb6\x62\xc5\xdc\xdf\ \x03\x83\x25\x25\x82\xeb\xeb\xeb\xc8\x64\x32\xc8\x66\xb3\x38\x76\ \xec\x18\x28\xa5\x13\x43\xcd\x01\x14\x45\x09\x58\x49\x18\x00\xfe\ \x58\x6e\x2b\x9d\x7b\x01\x5b\xa9\xd4\x49\x15\x45\x20\xc8\x41\x60\ \xff\x1d\x0f\x08\xde\xff\xc5\x24\x96\xef\x07\x83\xf8\x39\xda\x03\ \xc0\x67\xed\x72\xf7\x1f\x0d\x00\x51\x06\x5c\x36\x43\x0b\x00\x45\ \x51\xa0\x69\x9a\xaf\x10\xc2\x85\x61\x93\x7e\x2f\xe6\x73\x00\x88\ \x5e\xc0\x0e\x03\xa2\x92\x83\x07\x57\x3a\x13\xc0\x03\x1f\x10\xfc\ \x8a\x25\x31\xd6\x2f\x2a\x5c\xf4\x1e\xf1\xe9\x5e\xb0\xdc\x1b\xcf\ \x05\xfc\x45\x21\x4d\xd3\x76\x1d\x04\xbb\xee\x01\x54\x55\x85\x65\ \x59\x30\x4d\xd3\x7d\x70\x2f\x36\xcb\xc8\x9f\x07\x06\x0f\x10\x32\ \xe5\x13\x41\xe9\x1e\x11\xe4\x16\x2b\x02\x21\xca\xed\x8b\xf7\xc5\ \x68\x21\x5a\x7a\x5c\xd1\xc7\x5f\xf2\x15\xad\x3f\x1e\x00\x5c\x16\ \xaa\xaa\x0e\xb7\x07\x00\xe0\xf3\x00\x8c\x31\x98\xa6\xe9\xe6\xfc\ \xdc\xda\x3d\x12\x47\x5d\x65\x52\x4a\x7d\x20\x90\x03\x00\xbe\x9a\ \x80\x78\x16\x63\xba\x17\x06\x64\x56\xdf\x5b\xda\x17\x57\xf4\x91\ \x79\x82\xa0\xe5\x8b\xd7\x9a\xa6\x0d\x37\x00\x28\xa5\xa0\x94\xba\ \xa8\xb7\x0f\xcb\x11\x28\x84\xb8\xce\x49\x9f\xe7\x05\x3c\x02\x98\ \xa4\x78\xef\x73\x98\x4f\xa0\x07\x12\xc8\x12\x40\x20\x07\x42\x1a\ \x2e\xe0\x65\x03\x9e\x1c\xf8\xfa\x87\xdd\x5e\x03\xb1\xeb\x1c\x80\ \x87\x00\xd1\x03\xd8\xc2\x67\xe0\x0b\x94\x44\x45\xfa\x5d\x3e\x8b\ \xb1\x7e\x22\x64\x05\xc1\x6b\x48\x6a\x0d\x51\x29\xa0\x9c\xfd\xcb\ \x52\xbe\x34\xb5\xff\x70\x38\xb0\x04\xe5\xfb\x3d\x80\xaa\xaa\xc3\ \xcf\x01\x14\x45\x91\xcc\x88\xf9\x05\x67\xe7\xfb\x04\x94\xda\x56\ \xef\x27\x80\x71\xf1\x1f\x92\xeb\x20\xfb\x97\x59\x7f\x3c\xfb\x0f\ \xc6\xfe\xa4\xc9\x9f\x68\x2e\x60\x85\x08\xb0\x68\x0c\x43\x9f\x05\ \x70\xf7\x26\xba\x3d\xd3\x34\xc1\x18\x0d\x59\x16\x57\x3c\xa5\x08\ \xc5\x7e\x11\x08\xa2\xb5\x47\xc5\x7f\x59\x08\x48\xe2\x00\xb2\x10\ \x10\x9c\x03\x08\x96\x7e\x65\xf3\xfe\xe1\x09\x20\xbf\xe2\xc5\x30\ \x20\xca\x68\xa8\xe7\x02\x44\x01\xd9\x00\xe0\x9f\x3d\x20\xf0\x7c\ \x3f\x48\x00\xc3\x24\xb0\xb7\xf8\x9f\x54\x0d\x8c\x2a\xff\xf6\xc2\ \x03\x92\x26\x80\xc4\xc3\x0f\x7a\x32\xdc\x1e\x40\xe4\x00\xdd\x6e\ \x57\x20\x81\x41\xe1\xd9\xee\x9f\x5f\xdb\xeb\x06\x89\x00\x04\x48\ \x3c\x80\xa8\xfc\x70\xfc\xef\x55\xb8\x9e\xd2\x83\x05\xa0\xf8\xc9\ \x9f\xb0\xd5\xc7\x01\xc0\x36\x80\x6e\xb7\x3b\x3a\x1c\x80\x52\xea\ \x5a\x3d\x0f\x07\xe1\x10\x40\x05\x2f\xe0\x91\x3f\x0e\x84\xde\xc8\ \x1f\x09\xc5\xfe\x28\x2c\xc8\x2b\x81\xac\x27\x32\x28\xcb\xf9\xa3\ \x94\xef\xcd\x83\xf8\xd3\xe1\xa1\xe6\x00\x8a\xa2\x04\xd2\x40\x33\ \xa4\x78\x7e\xcd\xc3\x40\xb8\xcc\xeb\x1d\x5c\x68\x51\xe4\xaf\x1f\ \x24\x30\x8e\x0c\x06\xdd\x78\x7c\x09\x38\x3a\xfe\x8f\x44\x1a\xc8\ \x95\x13\xac\x04\xfa\xdd\x28\xf1\xc5\x44\xef\x6c\x03\xc1\xb2\xfc\ \x24\xd0\x5e\x55\x8c\x08\x6f\x10\x9e\x5f\xe8\x95\x04\x46\x4d\xfe\ \x78\x2e\xdf\x4a\x28\x03\x47\x03\x20\x58\x09\xdc\x77\x1c\xe0\xf9\ \xe7\x9f\x3f\x64\x59\xd6\x57\x41\x0b\x0e\x9e\x83\xf7\xa2\xae\x5f\ \x7d\xf5\x55\x2c\x2c\x2c\x48\x48\x20\xb7\x72\xbf\x17\xf0\x03\x80\ \x45\x90\x40\x4b\x92\x0e\xca\xc9\xe0\x4e\x48\x60\x98\xfc\xa5\x9d\ \x07\x90\x87\x81\x60\xb5\x90\xa7\x81\x97\x2e\x5d\xfa\xe5\xcb\x2f\ \xbf\xfc\xcb\xa0\x91\xc8\xae\x83\xd9\x94\x78\x16\x74\x36\xf3\xec\ \xb3\xcf\xde\xda\x16\x00\x4c\xd3\x5c\x10\x85\xc8\x15\x2a\x53\xb2\ \xec\x7e\x10\x04\xad\x56\x0b\x84\x10\x49\x1a\xc8\xdc\xb9\x7e\x0e\ \x02\x3b\xde\x7b\xf3\xff\x62\xfc\xf7\xbc\x00\x0d\x59\x7f\x12\x0f\ \x48\x0b\x80\xf8\xf8\x1f\xf6\x02\x7e\xe5\xfb\xa7\x85\xe3\xca\xbf\ \xa2\x22\x09\x21\x68\xb5\x5a\x3e\x22\x28\xfb\xbe\xc1\xec\x24\x6a\ \x9e\x82\xeb\x10\xc0\xeb\xdb\x02\x00\x21\xe4\xc1\x28\xe5\x47\x1d\ \x32\x50\xf0\x7b\xf9\x7c\x1e\x85\x42\xc1\x55\x7e\x30\x0d\xe4\x96\ \x2e\x5e\x7b\xca\xf6\xc7\x7f\xcb\xb2\xad\xdf\x9b\x30\x22\xb1\x61\ \x20\x89\x08\xa6\x25\x80\x41\xf6\x2f\xcf\xfd\xe3\x79\x80\xec\xda\ \x34\x4d\xe4\xf3\x79\x29\x0f\x08\xbe\x41\x14\x55\x9b\x10\xaf\xf9\ \xdf\x76\x74\xb8\x6d\x00\x2c\x70\xeb\x4c\xab\xe4\x38\x2f\x60\x59\ \x16\x2e\x5e\xbc\x88\xf5\xf5\x75\xc9\x5c\x00\x2f\xfe\xa4\x8f\xff\ \x1e\x10\xa2\x33\x02\x71\xad\x41\x6f\x24\x30\x38\x15\x9c\x76\x12\ \x48\x5e\x01\x8c\x5a\x15\xcc\xe5\xb0\xbe\xbe\x8e\x97\x5f\x7e\x19\ \xaa\xaa\xc6\x12\xc1\xb8\x3a\x45\x10\x0c\x8e\x57\x59\xd8\x36\x07\ \x60\x8c\x9d\xde\x89\xc5\x07\x43\x00\x00\x5c\xb9\x72\x05\xcd\x66\ \x33\x14\x02\x3c\x96\x4f\x7d\x60\x08\xc6\x7f\x19\x08\xa2\x4a\xc2\ \xd1\xc5\x20\xf9\x64\x50\xd2\x14\x70\x6f\x25\x60\xd9\x7a\x00\x39\ \x1f\x30\x4d\x13\xcd\x66\x13\xd7\xae\x5d\x43\xb1\x58\x8c\xad\x05\ \xf4\xe2\xfe\x9d\xef\x70\x7a\x5b\x00\xb8\x70\xe1\x82\x6e\x18\xc6\ \xfd\xbc\xf8\xb2\x5d\xf7\x2f\xde\xd7\x34\x0d\xdd\x6e\x17\xdd\x6e\ \x57\x52\x09\x14\x89\xa0\xdf\xe5\x07\xf3\xff\x28\x10\x04\xcb\xc2\ \xf1\xb3\x81\x69\x0b\x41\x7e\x22\x28\xe7\x01\x32\xe5\x07\x97\x87\ \xc9\x8b\x42\xfc\xe7\xb9\x5c\x34\x4d\x8b\x0c\x01\x71\x4a\x97\x81\ \xd3\xe1\x50\xf7\x5f\xb8\x70\x41\x7f\xfa\xe9\xa7\x9b\x3d\x01\xa0\ \xdd\x6e\x3f\xa0\xaa\xaa\x2a\x53\xfe\x76\x38\x01\x21\xc4\x5d\xf0\ \xc0\x15\x6f\x57\x04\x4d\x50\xca\x9c\x83\x48\x01\x20\xcb\xff\xe5\ \xae\x7f\xff\xcc\x06\xc6\x01\x40\x56\x0b\xe0\x4a\xd4\x34\xcd\x57\ \xdf\x48\x1b\xf3\xc3\x44\xda\xbd\xa7\x1a\x86\x71\x12\xc0\x62\x4f\ \x00\x50\x55\x75\xa1\x17\x45\xc7\x79\x03\x6e\x7d\x99\x8c\xbd\x15\ \x2e\x2f\x7d\x32\xc6\xf0\xe1\x87\x1f\x08\x13\x3c\xd4\x7d\x2d\x2c\ \x68\xe1\xde\x3d\x84\xca\xbf\x7e\x85\x7b\xe5\x60\x79\xfc\x4f\xeb\ \x01\x82\x61\x81\xf9\x32\x04\xf9\x8a\x60\xfe\x2e\x40\xd8\x4b\x44\ \xcd\x10\xf2\x50\xc1\x3d\x00\x97\x91\xb8\x0a\x3a\xad\xd5\x47\x85\ \x28\x4a\xe9\xe9\x9e\x01\x40\x08\x91\xc6\xff\x5e\x41\x21\xa6\x33\ \xd9\x6c\x16\x84\x10\x94\x4a\x25\x10\x42\xa0\x69\x1a\x7e\xfb\xdb\ \x7f\x4d\x35\x09\x13\x7c\x70\xd9\xef\xec\xd6\x8b\x16\x22\xa8\x65\ \x75\x86\x74\x3c\xc4\xbe\x2e\x16\x8b\xc8\xe5\x72\x28\x16\x8b\x30\ \x4d\xd3\x95\x11\x7f\x36\x6f\xb5\x14\xeb\xc5\xed\x07\xb9\xc8\xe9\ \x9e\x39\x00\x21\xe4\xc1\xa0\xe2\x7b\x0d\x07\x41\xf7\xcc\x19\x6e\ \xb1\x58\x84\xa6\x69\x68\xb7\xdb\x03\xd9\x24\x41\xac\xb1\x07\x3f\ \xcb\xe2\x69\x50\x49\xfc\x5a\x2c\x33\x0f\x6a\xaa\x96\x1b\x46\x2e\ \x97\x03\xa5\x14\x99\x4c\x26\xc4\x57\x44\xa5\xa6\x71\xfb\xa2\xf7\ \x70\x8e\x07\xb7\x03\x80\x85\x60\xcd\xbd\x97\x43\x16\x9f\xb3\xd9\ \xac\xfb\xf7\x79\xac\x1b\xe5\x9d\x42\x39\x00\x38\x37\x12\xbd\xa4\ \xcc\xeb\xf4\xe2\xf6\xc5\xcc\x29\x2e\x15\x94\x02\xe0\xfc\xf9\xf3\ \x75\x4a\x69\x39\x8d\x82\x7b\x01\x40\x2e\x97\x43\xb7\xdb\x75\x6b\ \x02\x7c\x75\xd0\xa8\x03\x40\xb4\x58\x5d\xd7\x7b\x02\x40\x84\xc5\ \x07\x8f\xf2\xf9\xf3\xe7\xeb\xcf\x3c\xf3\xcc\xa7\xa9\x00\xa0\x28\ \xca\x83\x49\x4a\x8d\xe3\x07\x51\x23\x97\xcb\xa1\xd3\xe9\x48\xe3\ \xe5\x28\x0f\xc6\x18\x0c\xc3\x00\x00\xe8\xba\x1e\xcb\x3d\xa2\xdc\ \xbe\x68\xf1\xb2\x7f\x57\x14\xe5\x41\x00\xe9\x00\x40\x29\x3d\x2d\ \xb3\xe0\x24\x8f\x10\x65\xf9\xa2\x07\x10\x01\x30\x1e\x61\x6f\x90\ \xcb\xe5\x62\x8d\x22\x09\x04\x12\xf7\xcf\x75\x73\x1a\xc0\x2b\x69\ \x3d\xc0\x42\xaf\x71\x3e\xce\xf5\x8b\x00\xe0\x48\x1f\x0f\xf9\x8a\ \xa9\xa8\x10\x20\x23\x84\x71\x16\x2f\xd9\x90\x72\x21\x35\x07\xc8\ \x66\xb3\xd3\x54\xa1\x37\x2b\x95\x8a\x4a\x29\x85\xa2\x2a\xa0\xa0\ \xa0\x8a\x9d\xdf\x13\x10\xf7\x3a\x98\xf2\x11\x42\x40\x28\x01\x25\ \xe1\x85\x1a\xba\xae\x1f\xea\x74\x3a\x63\x9f\x1f\xad\x5c\x96\xcf\ \xe7\x91\xd3\x73\xb7\x42\x0b\x4f\x98\x05\x66\xf9\x17\xa2\xf8\xa6\ \x87\x4d\x0b\x0c\xcc\xbd\xb6\x60\xc1\xec\xda\xc5\xb6\xb5\xb5\xb5\ \xae\x65\x5a\xd3\xa9\x01\x70\xff\x89\x7b\xcf\x00\x24\xfb\xe8\xdf\ \xfc\x6d\x5f\x1f\x70\x7d\x6d\x1d\x6f\xbf\xfd\xb6\x2f\x1b\x18\x0f\ \x5f\xf5\x95\xbc\xfb\xee\xbb\x58\x38\xbd\x30\xd3\xcf\xbf\xfb\xce\ \xff\xfe\x11\x8c\xb1\x74\x00\x58\x5c\xfc\x7d\x7e\xab\x4d\xb3\xaa\ \xa2\xa2\xdd\x6e\xf7\xfb\x01\xd1\x6a\xb5\xc6\x9a\x8e\x18\xad\x56\ \x0b\xed\x76\xbb\xef\x72\xd7\x54\x0d\x5d\xb3\x9b\x5d\x5c\xfc\x7d\ \xfe\xcc\x99\xbf\xdf\x8a\x05\x40\xa7\x93\xaf\x52\x4a\xa1\x6a\x5a\ \xdf\xe3\x75\xa7\xd3\x81\x61\x18\x7b\xf2\x02\xc4\xdd\x30\x0c\xc3\ \x70\x65\xd4\xcf\xa1\x6a\x1a\x2c\x66\xa1\xd3\xc9\x57\x61\xf7\x26\ \x8c\x0b\x01\xfa\xa4\x42\x2d\x68\xaa\xd6\xf7\x14\xad\xd3\xe9\xe0\ \xe2\xc5\x8b\x43\xb9\x19\x74\x3f\x46\x2e\x97\xc3\x81\x03\x07\xfa\ \x2e\x77\x4d\xd5\x60\x76\xbb\xb0\xa8\x5a\x05\xf0\x65\x2c\x00\x54\ \x95\x55\x19\xa1\x50\x55\xb5\xef\x5f\xc4\x30\x0c\x5c\xbd\x7a\x15\ \xcd\x66\x73\xac\x6d\xc9\xa8\x54\x2a\x78\xf4\xd1\x47\xfb\x2e\x77\ \x5e\x82\x57\x18\x9b\x4c\xe4\x00\x44\x53\xaa\xc4\x02\x54\x45\x1d\ \x88\x07\x30\x0c\x03\xdd\x6e\x77\xac\x6d\xc9\xe8\x76\xbb\xe8\x74\ \x3a\xfd\x07\x80\xe2\xac\x32\xa2\xa8\x26\x02\x80\x82\x56\x41\xbd\ \x5a\x7d\xbf\x1f\x70\xd4\x4b\xbf\x71\x83\x2f\x0c\xe9\x7b\x08\xf0\ \x16\x99\x24\x03\x40\x51\x48\x95\x31\x62\xe7\xfb\x7d\xfe\x22\xfc\ \x05\xc8\xf1\x88\x97\x51\xbf\xe5\xee\x2d\xca\x61\xc9\x00\x00\x94\ \x2a\xc0\xa0\x0c\x20\x04\x8c\x01\xb0\x57\x00\x50\xe1\x6c\xc1\x5b\ \x49\x01\x00\x54\xf8\x14\x65\xbf\xbf\x08\x5f\x05\x34\x1e\xd1\x21\ \x60\x10\x6f\x08\x09\xba\x4c\xc3\x01\x48\x95\x89\xc4\x61\x00\x31\ \x6e\x90\xf3\x01\xe5\x72\x19\xdf\xfe\xf6\xb7\x71\xe4\xc8\x91\xbe\ \xa5\x9b\x94\x52\xdc\xb8\x71\x03\x6f\xbc\xf1\x06\xd6\xd7\xd7\x07\ \x4a\x02\xf9\xff\xd7\x5f\x00\x68\x20\x20\x20\x69\x00\x00\x42\x27\ \x09\x18\x94\x01\x79\x00\xc3\x30\x06\x06\x80\x4c\x26\x83\x13\x27\ \x4e\xe0\x95\x57\x5e\xc1\xed\xdb\xb7\xfb\xfa\xb7\xa7\xa7\xa7\x71\ \xe6\xcc\x19\xbc\xf7\xde\x7b\x03\x9b\xd1\x1c\xd4\x3b\x82\x1e\x9f\ \x23\x29\xd2\x40\x82\x12\x03\x09\xad\x7b\xeb\x57\x1d\xa0\xd3\xe9\ \x0c\x4c\x80\x07\x0f\x1e\xc4\xe2\xe2\x22\x18\x63\xb8\xe7\x9e\x7b\ \xfa\xee\xbd\x16\x17\x17\x51\xad\x56\x71\xf3\xe6\xcd\x81\x7c\x7f\ \x9e\x26\xf7\x5b\xee\xd4\xde\x66\x05\x04\x28\xa5\xe0\x00\x14\x04\ \x0c\x94\xf4\x1f\x00\x1b\x1b\x1b\x03\x05\x00\xa5\x14\x53\x53\x53\ \xbb\x92\xab\x0f\x62\xb4\xdb\x6d\x6c\x6c\x6c\xf4\x1f\x00\x84\xda\ \x01\x40\xf2\x46\x94\xcc\x03\x14\x01\x02\x45\x55\x06\x02\x80\x76\ \xbb\x3d\xb0\x10\x30\x3d\x3d\x3d\xf0\x79\x06\xd3\x34\xf1\xc1\x07\ \x1f\x0c\xe4\x6f\x1b\x86\x31\x10\x00\x08\xba\x2c\x26\x03\xc0\xde\ \x9c\x65\x20\xcb\xb5\x1a\x8d\x06\xda\xed\xf6\xc0\x2a\x81\x33\x33\ \x33\xd8\x8d\x31\x28\x0f\xd0\x6a\xb5\xd0\x68\x34\xfa\x2e\x77\xf7\ \xad\x29\x10\x1a\xd6\x77\x60\xfc\xe9\x83\x3f\x7d\x0c\xe0\xde\x1f\ \xfe\xe3\x0f\xc7\x79\xd9\x10\x8d\x5f\xff\xcb\xaf\x01\xe0\xfa\xc9\ \x07\x4e\xde\x17\x9f\x06\x12\x3a\xc1\x18\x43\xb5\x5a\x1d\x4b\x6d\ \x88\x06\xb1\xdf\x9e\x9a\x48\x0c\x01\x0c\xd0\x41\x08\xfe\xeb\x77\ \xbf\x83\x3a\x9e\xb7\x1f\x8a\x61\x9a\x26\x3e\xbe\x7e\xdd\xd6\x6d\ \x12\x00\x2c\xcb\xd2\x14\x45\x01\xb3\x2c\x8c\x0b\xb7\xc3\x31\x78\ \x6d\xc1\x34\x4d\x2d\x11\x00\x94\x50\x4a\x40\xc6\x8b\x36\x86\x0d\ \x00\x20\xa0\x24\x5c\x62\x0c\x03\x40\x51\x72\xbc\xf0\x31\x9e\xbc\ \xb9\x3b\xc6\xea\xea\x2a\xae\x5e\xbd\x0a\x55\x55\x71\xea\xd4\x29\ \x14\x8b\x45\x59\x2a\xe0\xea\x36\x21\x0d\x24\x2e\x6a\xc6\xe3\xee\ \x50\xfe\x3b\xef\xfc\x0f\x4e\x9f\x7e\x10\x86\xd1\xc5\x6b\xaf\xbd\ \x86\xa7\x9e\x7a\x0a\x13\x13\x13\x32\xbd\xb2\x64\x00\x10\xb2\x0e\ \xa0\x3c\x88\x85\x09\xe3\xd1\xff\xf1\xd1\x47\x1f\xe1\x9b\xdf\xfc\ \x3b\x1c\x3c\x38\x83\xd5\xd5\xaf\x31\x3f\x3f\x8f\x4f\x3f\xfd\x14\ \x27\x4e\x9c\xf0\x88\xbd\xb7\x0f\x71\x23\x11\x00\x10\x3c\xc0\x18\ \x00\xfb\x7f\xd8\x3b\xaf\x02\x2b\x2b\xcb\xb8\x73\xa7\x89\x46\xa3\ \x81\x52\xa9\x14\xe8\xc9\xec\x75\x5b\x4d\x04\x80\x61\x74\x37\xb9\ \x07\xd8\x8b\xbd\x6b\xc7\xa3\xb7\x71\xfc\xf8\x71\xbc\xf5\xd6\x5b\ \xa8\xd5\x6a\x58\x5d\x5d\xc5\x27\x9f\x7c\x82\x47\x1e\x79\xc4\xc7\ \xdf\xec\x59\xd8\x2e\x00\x6c\x26\x02\xa0\xd3\xe9\x98\x76\xee\xd8\ \x1f\x0e\x60\x18\x06\x3e\xfb\xec\x33\x7c\xfd\xf5\xd7\xe3\xf7\x02\ \x53\x0e\x4d\xd3\x70\xe0\xc0\x01\xcc\xcf\xcf\x27\xf6\x11\x52\x55\ \x15\x8f\x3f\xfe\x18\xae\x5c\xb9\x02\x5d\xd7\xf1\x83\x1f\xfc\x83\ \xbb\x1d\xaf\x57\x07\xb0\x78\xf9\xda\x4c\xe1\x01\x3a\x4d\x80\x38\ \xf5\xfa\x9d\x15\x82\x2c\xcb\xc2\xe6\xe6\x26\x4e\x9e\x3c\x89\x89\ \x89\x89\xd0\x3b\xee\xc1\x73\x2f\x5b\xb2\xf5\xeb\x70\x78\x8f\x7b\ \x8e\xeb\x42\xb2\xdd\xfb\x51\x3f\x1b\xf5\x6f\xa6\x69\x62\x6b\x6b\ \x0b\x4b\x4b\x4b\x28\x14\x0a\x89\x9e\x98\x52\x05\x0f\x3d\xf4\xb0\ \x23\x73\x16\xd2\xb3\x69\x9a\x8e\xf1\xb1\x66\x0a\x0f\x60\x76\x00\ \x06\xd3\xec\xba\x4d\x9c\x76\x52\x81\x9a\x9f\x9f\xc7\xd2\xd2\x12\ \x9e\x7b\xee\x39\xbc\xfe\xfa\xeb\xd8\xdc\x8c\x6e\x8b\xdb\x8f\xe5\ \x62\xbb\xb9\xe4\xac\x5f\x1c\x49\xfc\x3b\x85\x42\x01\x4f\x3e\xf9\ \x24\x7e\xf2\x93\x9f\xe0\xe8\xd1\xa3\x58\x5a\x5a\x4a\xfc\xfd\xa5\ \xa5\x25\x5c\xbf\x7e\x1d\xc5\x62\x11\xc7\x8f\x1f\x0f\x79\x0d\x7b\ \x0a\xdb\x00\x40\x3a\x69\x3c\x40\xc7\xfe\xa5\x9d\xef\x5f\x5f\x28\ \x14\xf0\xfe\xfb\xef\xe3\xbb\xdf\xfd\x2e\xd6\xd6\xd6\xc6\xbe\x3d\ \xe5\xf8\xf3\x9f\xff\x8c\xdf\xfc\xe6\x37\x78\xf5\xd5\x57\x71\xff\ \xfd\xf7\xc7\x1a\xcd\x57\x5f\x7d\x85\x9b\x37\x6f\x60\x61\xe1\x34\ \x96\x96\xfe\x82\xb7\xdf\x7e\x1b\x8f\x3d\xf6\x98\x6f\x5a\xbc\xdb\ \xe5\x1e\x00\xc9\x00\x68\xb7\x3b\x4d\x42\x6c\xd4\xa8\xea\xce\x42\ \xc0\xca\xca\x0a\xce\x9e\x3d\x8b\x46\xa3\x31\x26\x94\x3d\x8e\x46\ \xa3\x81\xb3\x67\xcf\xe2\xa5\x97\x5e\x8a\x6d\x28\xf9\xf9\xe7\x9f\ \xe3\x5b\xdf\x7a\x1c\x93\x93\x53\xa8\x56\xab\xf8\xec\xb3\xcf\xb1\ \xb9\xb9\xe9\x2b\x06\xf1\x45\x2c\x8c\xa1\x99\xc2\x03\x18\xa6\x93\ \x0d\x40\xd3\xb6\xdf\x4e\xc0\x34\x4d\x5c\xbd\x7a\x15\x97\x2f\x5f\ \x1e\x2b\x7f\x9b\xe3\xf2\xe5\xcb\xb8\x72\xe5\x0a\x4e\x9d\x3a\x15\ \xb9\xd0\xc5\xde\x7d\xd5\xc4\xca\xca\x32\x56\x56\xd6\xd0\x6e\xb7\ \x91\xc9\x64\x7c\x59\x80\x61\xf0\x10\x90\x8a\x04\x1a\x6b\x36\x17\ \x68\x23\x93\xd9\x3e\x00\xee\xdc\xb9\x83\x2f\xbe\xf8\x22\xf4\xaa\ \x73\xdc\x1e\x38\xa3\xb2\x64\x3c\x8e\x3b\x04\xdf\x9b\x7c\xf1\xc5\ \x17\x51\xaf\xd7\x43\x95\x3d\x3e\xee\xbb\xef\x5e\xfc\xe1\x0f\x7f\ \xc4\xd4\xd4\x14\x96\x96\x96\x9c\xed\xe6\xa9\x6f\xd1\x8d\xf0\xc6\ \xf1\x5a\x8a\x10\xd0\x5e\x05\x08\x5a\xad\x36\x74\x3d\xb7\xa3\xf4\ \x4f\xb6\xf2\x47\xe6\x0d\x46\xed\x5d\x81\x5e\xf6\x2f\xe6\xcb\xe8\ \xa3\xe6\x65\x14\x45\xc5\x03\x0f\x9c\xc0\x87\x1f\x7e\x84\xa9\xa9\ \x29\x3c\xfc\xf0\xc3\xa1\x15\x4b\xf6\xbe\x03\x1d\x00\x6c\x35\x4d\ \x21\x68\x95\x31\x86\x76\xbb\xb3\xa3\xa5\x5b\x51\xeb\xff\xd3\x6c\ \x84\x3c\x2a\x20\x48\xb3\xec\x8e\x1b\x52\x92\x2e\xee\xbb\xcf\x5e\ \xe8\xb3\xb5\xb5\x05\x09\xaf\xe3\x2f\x9d\x26\x03\xa0\xd5\x6a\xaf\ \xd9\xae\xa8\xb5\x23\x00\x44\x79\x80\x60\x2c\x13\x77\x0c\x1f\x05\ \x20\xc8\x3a\xb0\xa4\x31\xa4\x9d\xe8\xa2\xd9\xb4\x3d\x00\x63\x29\ \x3c\x40\xbb\x6d\xac\x12\x02\xb4\x5a\xed\x1d\x4d\x07\xf3\x2f\x1d\ \x9c\x55\x0c\xe6\xa8\xc2\x62\x05\xa8\xaa\x8a\xa7\x9f\x7e\x56\xb0\ \x0e\x2a\x69\x08\x25\xdf\x38\xda\x16\x2a\xa4\xad\xe8\xc3\x46\x16\ \xdf\x30\xc2\x03\xa7\x7d\xcf\xbf\x83\xb8\xbf\x83\x58\xdc\x06\xd1\ \xb2\xe3\xc2\x85\xe7\xd1\xed\x76\x7d\xbd\x96\x82\xf2\xe8\x25\x04\ \xa4\x19\xad\x56\x1b\x9d\x8e\x01\xc6\x52\x70\x80\x4e\xc7\xe6\x00\ \x5b\x5b\xad\xbe\x84\x80\xe0\xdf\xe0\xbb\x61\x8b\xd6\xcf\x95\x76\ \xf8\xf0\x2c\x1e\x7a\xe8\xaf\x7d\x3b\x87\xcb\x3a\x86\xfb\xb7\xa3\ \x43\xaa\x86\x51\x7e\x57\xeb\x6f\x1b\x13\x6c\x17\x13\x5d\xa9\x04\ \xe4\x3d\x83\x98\xb4\x09\x94\xac\x77\xe0\xe1\xc3\xb3\xf8\xf2\xcb\ \x2f\xdc\x26\x91\xc1\xb7\xb0\x83\xf2\x4a\x1b\x02\xe2\xc6\xd6\x56\ \x4f\x1c\xc0\xfc\x1a\x60\x68\xb5\x5a\x3b\x42\x1d\xcf\x3d\x83\x5f\ \x3c\x97\xcb\xf9\x84\x2c\x72\x85\xd9\xd9\x39\x68\x9a\x1a\xda\x78\ \x32\xbc\x27\x61\xda\x26\xd2\xa2\xb2\x93\x3b\x87\xf5\xb2\x63\x79\ \x6f\x1d\x43\xbc\xf3\xec\xec\x1c\x6e\xdf\xbe\x05\x4d\xd3\xa0\x69\ \x5a\xe8\x25\xdc\xa0\xbc\xb8\x0c\x77\xe6\x01\x5a\x8e\x8c\xc9\xd7\ \x89\x00\xb0\x2c\xb2\x46\x29\xdb\x31\xea\x0c\xc3\x70\xf7\xb0\x4b\ \x4a\xfb\xf8\xd9\x06\x80\x26\xc4\x47\x1e\x06\x48\xa4\x37\xd8\x49\ \x07\xd1\xa8\x10\xb0\x9d\x8e\xa1\x51\x0d\xa3\x82\xdd\x41\x66\x67\ \xe7\x70\xf9\xf2\xa2\xef\xd9\x45\x00\x04\xe5\xc5\xdf\xa7\xdc\xa9\ \x37\xb6\x81\x9f\xc2\x03\x70\x37\x61\x18\xe6\x8e\xff\x53\x99\x07\ \x88\x03\xc1\xec\xec\x9c\xbb\x9f\x8d\xd8\x2b\xd8\xbf\x39\xb5\x07\ \x8a\x28\x00\x6c\xb7\x77\x60\xba\x9e\x81\x71\x00\xb0\x62\x7b\x07\ \x72\x0f\x10\x47\x78\xa3\x3c\xc0\xce\x8c\xd1\x74\xc0\x45\x92\x39\ \x00\x63\xe6\x2a\x40\xdd\xd7\x94\xb6\x3b\x36\x37\x37\x13\x91\x1b\ \x14\x60\xad\x56\x73\xb6\x33\x21\x91\x61\xc0\xf3\x00\x54\xb2\x1f\ \x6e\x54\xa3\x06\xbf\xd5\x27\xf7\x0e\x16\x3d\x40\xd8\x53\xc9\x5a\ \xc5\xf9\xdb\xc3\x44\x75\x0e\xb5\x9f\x51\x36\x23\x19\xc7\x01\x36\ \x37\x37\x13\xa7\x85\x93\xbc\xb1\xa7\xdb\x44\x0e\xb0\xb6\xaa\x28\ \x93\x30\x4d\x6b\x47\x13\x38\x8d\x46\x23\x35\x8f\xe0\x82\x38\x72\ \xa4\x16\xe2\x00\x49\x84\x30\x2e\xf6\xf7\xb3\x67\x90\xe8\xfe\x15\ \x05\x29\x43\x80\x15\x6a\x1c\x79\xe4\x48\x4d\xaa\xf8\xa8\x10\xd0\ \x8f\xd7\xc5\x78\x66\x61\x18\x6b\xc9\x00\x38\x77\xee\x5c\xe7\xe7\ \x3f\xff\xe7\x3f\x31\x06\x7d\x75\x75\xad\xb6\x7d\x0f\xb0\x41\x5a\ \xad\xb6\xd2\xed\x76\x49\x9a\x10\xa0\xeb\x3a\x0e\x1d\x9a\x09\x29\ \x3f\xdd\x4e\xe4\x08\x65\x01\x83\x02\x80\xac\x5d\xbc\x1c\x08\x61\ \xf7\xcf\x98\x85\x43\x87\x66\xa0\xeb\x7a\xe4\x86\x59\x41\x0f\xd0\ \x6a\xb5\x59\xa3\xd1\x30\x2d\x6b\xfb\x05\x12\xcb\xd2\x6e\x02\x68\ \x9e\x3b\x77\xae\x93\x82\x03\x00\x3f\xfd\xe9\x3f\xfd\x55\xbf\x0a\ \x1f\xbf\xf8\xc5\xcf\xa5\x5f\x9c\xb7\x47\xe1\x8a\xad\xd5\x8e\x84\ \xe2\xbf\xdf\xed\xd3\x58\xc5\x07\xe3\x7e\x74\xf7\xf0\x24\x4b\x62\ \xb1\xdd\xc3\x93\x52\x41\x19\x1f\x08\x36\x8e\x3e\x7a\x74\x1e\x37\ \x6f\xde\x40\x26\x93\x41\x36\x9b\xf5\xd5\x4b\x82\x1e\xe0\xe2\xc5\ \xff\x18\xe8\x4c\xda\xc0\xbb\x87\x47\x85\x80\x89\x89\x09\xe4\x72\ \x39\x34\x9b\x4d\x6c\x6d\x6d\xa1\x5e\xaf\xbb\xee\x5f\xa6\xf8\x64\ \xf6\x1f\x9f\x01\xf8\x63\xff\x4e\xda\xc7\xa7\xed\x20\x4a\xed\xf7\ \xac\x99\x05\xcb\xa2\x3e\x20\xd4\xeb\x75\x2c\x2f\xff\x05\xf9\x7c\ \x1e\xba\xae\xa3\xd5\x6a\xb9\x7c\x6b\xb7\xdf\xc5\x18\x38\x00\xa2\ \x62\xd7\x81\x03\x07\xdc\x42\x08\x63\x0c\xc7\x8e\xdd\xeb\x7a\x80\ \xe8\xb4\x2f\x8a\x03\xa0\xc7\x42\x90\x0c\x04\x69\xfa\xf3\x26\x87\ \x00\x1e\xfb\x6d\xe5\x73\x20\x58\x6e\x33\x6c\xcb\xb2\x70\xec\xd8\ \xbd\xb8\x76\xed\x2a\x0a\x85\x02\x26\x26\x26\x30\x31\x31\xe1\x02\ \x60\xb7\x57\x62\x0f\x1c\x00\xc1\x52\x27\xef\x88\x71\xf8\xf0\x61\ \x34\x9b\x4d\x30\xc6\xd0\xe9\x74\x30\x3f\x3f\x0f\x55\x55\xa4\x84\ \x2f\x6d\x21\xc8\x1f\x02\xe2\xd3\xbe\xe8\xe6\xd1\xd1\x69\x61\x52\ \x1b\x79\x5b\xc9\x5e\xfb\x5b\xcb\xb2\x81\xe0\x07\x01\xc1\xfc\xfc\ \x3c\xb2\xd9\x2c\xf2\xf9\x3c\x4a\xa5\x12\x74\x5d\xc7\xed\xdb\xb7\ \xdd\x4e\x20\x43\x05\x80\x72\xb9\xec\xfb\x5c\xa9\x54\x50\x2c\x16\ \x31\x35\x35\x85\xf5\xf5\x75\x74\xbb\x5d\xb4\xdb\x6d\xd4\x6a\x47\ \xa0\x28\x6a\xa4\xf2\x83\x3c\x20\xdc\x58\x32\x3e\xfd\x4b\x76\xff\ \x49\x61\x20\xbe\x2a\xe8\x29\xdf\x12\x3e\x53\x09\x08\x28\x6a\xb5\ \x23\xd0\x75\x1d\x13\x13\x13\x28\x95\x4a\x28\x97\xcb\x98\x9b\x9b\ \xc3\xc6\xc6\x46\x48\x5e\x77\x3d\x00\xae\x5d\xbb\xe6\xfb\x5c\xad\ \x56\x51\xab\xd5\x50\x2e\x97\xdd\xa6\xc9\x9a\xa6\xa1\x56\x9b\x75\ \x3c\x40\x54\xee\x4f\x23\xfa\x05\xc7\xa5\x7e\xc9\x6d\xe3\xa3\x6b\ \x01\x49\x99\x80\x1f\x08\xdc\xe5\x33\x46\x1d\xe5\x5b\x12\x10\xd8\ \xfb\xaf\xd4\x6a\xb3\xd0\x34\x0d\xba\xae\xa3\x50\x28\xa0\x5c\x2e\ \xa3\x5e\xaf\xe3\xe6\xcd\x9b\x21\x79\xdd\xf5\x00\xb8\x74\xe9\x52\ \xc8\x03\xd4\xeb\x75\x64\x32\x19\x74\x3a\x1d\x6c\x6c\x6c\xa0\x52\ \xa9\x60\x72\xf2\x40\x28\xef\xf7\x5c\xbf\x4c\xf9\xf1\x25\xdf\xb8\ \x10\x90\xa6\x12\x28\x0f\x01\xe9\x88\xa1\x68\xf1\xb6\x37\xf0\x1a\ \x60\x5b\x16\xc3\xe4\xe4\x01\x54\x2a\x15\xe4\x72\x39\x14\x0a\x05\ \x54\x2a\x15\xe4\xf3\x79\x6c\x6c\x6c\x84\xe4\x75\xd7\x03\x20\xc8\ \x6a\xf3\xf9\x3c\x8e\x1d\x3b\x86\x46\xa3\x81\xad\xad\x2d\xe8\xba\ \x8e\x6a\xb5\x1a\xe8\x3f\x14\x04\x81\xa8\xec\xe8\x92\xef\x76\x3b\ \x85\xa7\x05\x8a\xac\x2c\x1c\x55\x22\xe6\x5c\xc0\x9e\xee\xf6\xdc\ \x3f\x21\xf6\xf4\xf7\xd1\xa3\x47\xd1\x6a\xb5\x50\x28\x14\x50\x2a\ \x95\x50\x2a\x95\xf0\xf1\xc7\x1f\x0f\x5f\x16\x10\x2c\x6c\x94\xcb\ \x65\x4c\x4f\x4f\xbb\xd5\xc2\x6c\x36\x8b\x5a\xad\x06\x55\xe5\x1b\ \x1a\x07\xad\x9f\x44\xae\x09\x90\x11\xbe\x41\x67\x34\x22\xaf\x48\ \x26\x86\x7c\xe1\x07\x73\xba\x9d\x73\x2f\x40\x50\xab\xd5\x70\xe3\ \xc6\x0d\x97\x08\x4e\x4f\x4f\xa3\x5c\x2e\xef\xfa\x56\xfa\xbb\x0e\ \x80\x7a\xbd\x8e\x6a\xb5\xea\x5a\x7f\x26\x93\xc1\xcc\xcc\xe1\x50\ \xb7\xf1\xa4\xa2\xcf\x7e\x78\x71\x55\xfc\x1e\xf2\x7a\x00\x02\xdd\ \x3d\x99\xdb\xf6\x7e\x66\xe6\x30\x6e\xdd\xba\xe5\xf2\x80\x6a\xb5\ \x8a\x7a\xbd\x8e\x95\x95\x95\x5d\x7d\x06\xba\x1b\x00\x10\x8f\x93\ \x27\x4f\xba\x99\x00\x07\xc0\xec\xac\x08\x00\xe2\xab\x04\x46\xf5\ \x2b\xdc\x6f\x23\xdc\x58\x53\x09\x7c\xf6\x9e\x4b\x51\x14\xcc\xce\ \x1e\x46\x26\x93\x81\xae\xeb\x28\x16\x8b\xa8\x54\x2a\x38\x79\xf2\ \x64\x48\x5e\x43\x07\x80\x53\xa7\x4e\x21\x97\xcb\x41\xd3\x34\x77\ \x35\xcc\xf4\xf4\x41\x89\xa2\x45\x81\xed\x5f\xc5\x47\x01\xc1\xfe\ \xce\x24\x12\xd0\xd3\xd3\x07\x41\x88\xdd\x97\x41\xd3\x34\xe4\x72\ \x39\x9c\x3a\x75\x6a\xd7\x01\x30\xf0\x10\x10\x64\xd6\x2f\xbc\xf0\ \x02\x36\x37\x37\xb1\xb6\xb6\x86\x95\x95\x15\xac\xac\xac\xe0\xc7\ \x3f\xfe\xb1\x64\xba\x97\xdc\xf5\xbd\x85\x65\x1d\x3d\x39\x57\xa8\ \x54\xca\x78\xf3\xcd\x37\xf1\xfe\xfb\xef\x63\x72\x72\x12\x95\x4a\ \x05\x85\x42\x61\xd7\xbf\xa3\xba\xdb\xff\x61\x70\xa6\x4c\xd7\xf3\ \xa8\x56\xab\xd2\x74\x6f\x18\x06\x7f\x16\x3f\x00\x2c\x54\xab\x55\ \xe8\x7a\x3e\xb4\x6e\x60\xb7\x9f\x7b\xd7\xdf\xd9\x12\xdb\x9d\x9a\ \xa6\x89\x5a\x6d\xce\x51\xbc\x9f\xfd\x0f\xdb\x08\x4f\x71\x53\xd4\ \x6a\x73\xae\x1c\xb8\x5c\x76\xdd\x4b\xed\xf4\xb9\x9c\x83\xc2\xde\ \x4c\x40\x03\x90\x01\x90\x85\xbd\x29\xa1\x9e\x04\x80\xb9\xb9\x39\ \x5f\x8c\x1c\xf6\x21\x72\x9c\xb9\xb9\x54\x00\xe0\x72\xcc\x3a\xb2\ \xd5\x1c\x59\x53\x41\xfe\x03\x0b\x01\x44\x00\x0a\x0d\x28\x3c\xe9\ \x9a\x00\x20\x3f\xfb\xd9\xcf\x0e\x05\xee\x95\x00\xcc\x01\xa8\x03\ \x38\xf6\xfd\xef\x7f\xff\x09\x4a\xe9\x99\x51\xda\x8f\x88\x7b\x83\ \x7a\xbd\xbe\xf8\xdc\x73\xcf\xfd\x37\x80\x4f\x00\x7c\x0a\xe0\x0b\ \xd8\x1b\x39\x31\xe1\x28\x04\x3e\x33\x00\x56\xca\x6b\xcb\x57\xd7\ \x4e\x01\x00\x1a\xa3\x54\x1a\x73\x3f\xea\x9e\xec\xdf\x0a\xc2\x31\ \x31\x3f\x3f\x5f\x1d\xc5\xcd\xa8\x08\x21\x98\x9f\x9f\xaf\x02\x98\ \x08\xc8\xa4\x1b\xa3\x58\x2b\xc5\xbf\x89\xca\x8f\xfb\x59\x1f\x00\ \x68\x82\x02\xe3\xce\xbd\xfe\x0e\x77\x69\x39\x00\xd9\xb9\xb9\xb9\ \x12\x46\x74\x38\xcf\x9e\x75\x64\xc1\xe5\x72\x27\x41\xe9\xb2\xb3\ \xe5\xc8\x97\xdf\x23\xc2\xe7\xe0\x7d\xf1\x6c\xd1\x80\x8b\xd8\xce\ \x39\xed\x17\x65\xc2\x7f\xae\x38\x87\x3a\x3b\x3b\x3b\xb2\x00\x70\ \x9e\x5d\x15\x62\x3a\x22\x5c\x7d\xd2\x79\xdb\x3a\x54\x85\x0f\xa6\ \x10\xf7\x69\xca\x58\x9f\xf6\xe7\xc4\xeb\x16\x80\xa6\x73\xde\x2c\ \x14\x0a\xff\x2e\x21\xa3\x24\x82\xe0\x50\x09\x3f\x49\xfa\x9d\xbe\ \x67\xb2\xc2\x11\xbc\xef\x72\xdd\x94\xbf\x63\x39\x16\xbf\xe5\x1c\ \x4d\x00\xed\x1e\xe3\x7c\x52\x68\x88\x02\x4c\x24\x09\x0c\x6f\x33\ \x15\x16\x70\x6a\x12\x28\xb9\xaf\x01\xc8\x3b\x67\xc3\x39\x23\xa0\ \xbc\x28\x65\x06\x7f\x06\x11\x0a\x4f\x7b\x2f\x49\xd1\xbd\xdc\x63\ \x01\x65\xc7\x01\x40\xbc\x36\x00\xdc\x06\xb0\xea\x10\xc0\x3b\x11\ \x4a\xec\x95\x04\xa6\x5a\x45\xac\x6e\x03\xf9\x88\x00\x08\x24\x8a\ \x91\x01\x60\xcb\x79\xe8\x3b\x00\xfe\xe2\xb8\x3f\x12\x63\xc9\xa4\ \x47\x00\x90\x1d\x2a\x3e\x49\xe9\xac\x47\x00\xb0\x18\x2f\xc0\x8d\ \xad\x01\x60\xd9\x91\x47\x37\x41\xa1\x7d\x7d\x7f\x7e\xaf\xe8\xb7\ \xe2\xa4\x83\x19\x44\x6f\x46\x48\x22\x40\x95\x64\xe1\x24\xe5\xdf\ \x4a\xa3\xf0\x34\x16\x9f\x04\x06\x24\x28\xce\x84\xbd\x7b\x57\x23\ \xc1\xb0\x06\x32\xfe\x1f\x3a\x29\xcd\x5d\x12\x1d\xc3\x38\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x18\xd5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0a\x05\x13\x1b\x29\x4b\x65\x20\x7b\x00\x00\x18\x62\x49\x44\ \x41\x54\x78\xda\xed\x5d\x79\x70\x1c\xd5\x9d\xfe\x5e\xcf\xa9\xfb\ \xb4\x34\x92\x2d\x19\x19\x61\x19\x5b\xb6\xb1\x09\x66\xb9\x6c\x17\ \xd8\x09\x2e\x48\xb8\x56\xb5\x6c\x58\x2e\x43\xc8\xe2\xe0\x5a\x17\ \xce\x72\x99\x38\xc2\x26\x24\x40\x95\xb3\x9b\x83\x6c\x58\x42\x20\ \x89\x71\x28\x57\x5c\x40\x42\x20\x98\x94\x0f\xca\xc6\x5e\x8e\xf8\ \xc0\xc2\x96\x8c\xc7\x1a\x69\x64\x8d\x8e\xd1\xdc\xd3\x33\xdd\xfd\ \xde\xfe\x11\x77\xa7\x35\x9e\xa3\x7b\x66\x64\x1d\xf4\x57\x35\x35\ \x3d\xdd\x3d\x7d\xfd\xbe\xf7\xbb\xde\xef\xbd\x06\x0c\x18\x30\x60\ \xc0\x80\x01\x03\x06\x0c\x18\x30\x60\xc0\x80\x01\x03\x06\x0c\x18\ \x30\x60\xc0\xc0\x14\x07\x31\x1e\x41\x66\x3c\xf0\xc0\x03\x85\xa1\ \x50\xc8\x41\x08\x89\x6f\xdd\xba\xb5\xd7\x20\xc0\x97\x04\x77\xdc\ \x71\xc7\x55\x00\x36\x02\x58\xca\x18\xb3\x33\xc6\xc0\x18\x1b\x06\ \xf0\x1b\x49\x92\x9e\xde\xbe\x7d\xbb\xd7\x20\xc0\x14\x6d\xf1\x3c\ \xcf\xff\x37\x80\xfb\xeb\xea\xea\xd0\xd4\xd4\x84\x86\x86\x06\x70\ \x1c\x87\x03\x07\x0e\xe0\xc4\x89\x13\x60\x8c\x75\x09\x82\xb0\x6c\ \xc7\x8e\x1d\x67\x26\xf3\xbd\x9a\x0c\x71\x8f\xc6\x3d\xf7\xdc\x33\ \x3f\x1e\x8f\xef\x64\x8c\x7d\xad\xa2\xa2\x02\x2d\x2d\x2d\x68\x6e\ \x6e\x46\x4b\x4b\x0b\xe6\xce\x9d\x8b\xda\xda\x5a\x14\x16\x16\xc2\ \xed\x76\x57\x51\x4a\xab\x8f\x1d\x3b\xf6\xc6\x64\xbe\x5f\xce\x10\ \xf9\x3f\x70\xe7\x9d\x77\x7e\x47\x92\xa4\xff\xa3\x94\x5e\x4c\x29\ \x05\xcf\xf3\xb0\x5a\xad\xb0\x58\x2c\xb0\x58\x2c\x08\x04\x02\x08\ \x04\x02\x20\x84\xa0\xbe\xbe\x1e\x94\xd2\xaf\x4d\xf6\x7b\x36\x1b\ \x62\x07\xee\xba\xeb\xae\x2a\xc6\xd8\xaf\x28\xa5\x37\x9d\xb5\xf3\ \x60\x8c\x21\x14\x0a\xc1\x6c\x36\xc3\x6a\xb5\xc2\x6a\xb5\xc2\xeb\ \xf5\x22\x10\x08\x20\x14\x0a\x21\x1a\x8d\x82\x52\xea\x30\x08\x30\ \xc9\x71\xf7\xdd\x77\x2f\xa5\x94\xfe\x8e\x52\xda\xc0\x18\x03\xa5\ \x54\x21\xc0\xf2\xe5\xcb\xb1\x72\xe5\x4a\x94\x95\x95\xc1\x6c\x36\ \x43\x14\x45\xd8\xed\x76\x04\x83\x41\x04\x83\x41\x50\x4a\x61\x10\ \x60\x92\xa2\xad\xad\xcd\x64\xb7\xdb\x37\x4a\x92\xb4\x81\x52\x6a\ \x52\x0b\xbe\xb4\xb4\x14\xeb\xd7\xaf\x47\x4d\x4d\x0d\x06\x06\x06\ \xd0\xdb\xdb\x0b\x4a\x29\x2a\x2a\x2a\xb0\x64\xc9\x12\xec\xda\xb5\ \x0b\x5e\xaf\x17\x92\x24\x19\x04\x98\x8c\xb8\xf7\xde\x7b\x1b\x44\ \x51\x7c\x8d\x52\x7a\xb5\x5a\xf0\x94\x52\x2c\x59\xb2\x04\xf7\xde\ \x7b\x2f\x86\x87\x87\x71\xfc\xf8\xf1\x51\xff\x1b\x18\x18\xc0\xc0\ \xc0\x00\x6a\x6a\x6a\x70\xe8\xd0\xa1\x29\xf1\x2c\xbe\x74\x04\xb8\ \xeb\xae\xbb\x6e\x91\x24\xe9\x25\x4a\x69\xa5\x2c\x7c\x4a\x29\x38\ \x8e\xc3\x83\x0f\x3e\x88\x05\x0b\x16\xc0\xe9\x74\x82\xe7\xf9\xa4\ \xff\xf7\xfb\xfd\xb0\x58\x2c\x0a\x69\x0c\x02\x4c\x9e\xf0\xce\xce\ \x18\xfb\x31\xa5\xf4\xdb\x94\x52\x22\x49\x92\x22\xc4\x19\x33\x66\ \x60\xdd\xba\x75\x10\x45\x11\xc7\x8e\x1d\x4b\x2b\x58\xc6\x18\x78\ \x9e\x87\x24\x49\x20\x84\x18\x04\x98\x0c\xb8\xff\xfe\xfb\x2f\x16\ \x04\xe1\x75\x49\x92\xe6\xab\x1d\x3d\x4a\x29\x6e\xb8\xe1\x06\xdc\ \x78\xe3\x8d\x70\xb9\x5c\x18\x19\x19\xc9\x78\x2c\x4a\x29\x42\xa1\ \x90\xf2\x7f\x83\x00\x13\x1c\xab\x57\xaf\xfe\x96\x28\x8a\xff\x45\ \x29\x2d\x64\x8c\x41\x6e\xf9\x45\x45\x45\x78\xe8\xa1\x87\x50\x53\ \x53\x83\xcf\x3e\xfb\x0c\xf1\x78\x5c\xd3\xf1\xec\x76\x3b\x42\xa1\ \xd0\x94\x10\xfe\x94\x26\xc0\xda\xb5\x6b\x4b\x23\x91\xc8\x4b\xa2\ \x28\xb6\x51\x4a\x21\x7f\x18\x63\x58\xb0\x60\x01\x56\xaf\x5e\x8d\ \xa1\xa1\x21\x1c\x3d\x7a\x54\xf7\xb1\x83\xc1\xa0\xe1\x03\x4c\x64\ \x3c\xf0\xc0\x03\x97\x47\x22\x91\xdf\x53\x4a\x2f\x90\x55\x35\xa5\ \x14\x26\x93\x09\x77\xde\x79\x27\x16\x2f\x5e\x8c\xce\xce\x4e\x04\ \x83\xc1\xac\x8e\x1f\x0a\x85\xa6\x44\x08\x38\xe5\x08\xd0\xde\xde\ \xce\xf5\xf5\xf5\x3d\x42\x29\xdd\x44\x29\xb5\xa8\x5b\x7d\x5d\x5d\ \x1d\x1e\x7c\xf0\x41\x10\x42\xf0\xc9\x27\x9f\x64\xad\xc2\x39\x8e\ \x33\x4c\xc0\x44\xc4\x9a\x35\x6b\x1c\xfd\xfd\xfd\xbf\x61\x8c\xad\ \x4c\x54\xf9\x2b\x56\xac\xc0\xaa\x55\xab\xd0\xdd\xdd\x8d\xfe\xfe\ \xfe\x9c\xce\x63\xb3\xd9\x14\x27\xd0\x20\xc0\xc4\x11\xfe\xf5\x94\ \xd2\x57\x25\x49\xaa\x51\x0b\xbf\xb8\xb8\x18\xf7\xdc\x73\x0f\x1c\ \x0e\x07\x0e\x1d\x3a\x84\x48\x24\x92\xf3\xb9\x44\x51\xcc\xcb\x71\ \x0c\x02\xe4\xc7\xd6\x5b\xcc\x66\xf3\x0f\x19\x63\x0f\x33\xc6\x88\ \xda\xde\xb7\xb6\xb6\xe2\xf6\xdb\x6f\x87\xdf\xef\xc7\x47\x1f\x7d\ \x94\xb7\x16\x2b\xb7\x7e\x43\x03\x8c\x7f\xab\x6f\x06\xb0\x0d\xc0\ \x57\xe4\x04\x0d\x63\x0c\x16\x8b\x05\x6d\x6d\x6d\x58\xb0\x60\x01\ \x4e\x9c\x38\x81\xc1\xc1\xc1\xbc\x9e\x37\x16\x8b\x29\xf6\xdf\x88\ \x02\xc6\x09\x0f\x3d\xf4\xd0\xbf\x31\xc6\x7e\xce\x18\x2b\x95\x63\ \x7b\x49\x92\x50\x5f\x5f\x8f\xdb\x6f\xbf\x1d\x66\xb3\x19\x07\x0e\ \x1c\x40\x2c\x16\xcb\x78\x2c\xbd\xd9\xbc\x78\x3c\x3e\x65\x1c\xc0\ \x49\x47\x80\x35\x6b\xd6\x14\x73\x1c\xf7\x33\x00\x77\x27\x6e\x5b\ \xbe\x7c\x39\x96\x2d\x5b\x06\xb7\xdb\x8d\x93\x27\x4f\x6a\x16\xb8\ \xde\x56\x3c\x95\x22\x80\x49\x45\x80\x75\xeb\xd6\x2d\x96\x24\x69\ \x1b\x63\x6c\xb6\xba\x68\xa3\xb4\xb4\x14\x37\xdf\x7c\x33\x6a\x6b\ \x6b\xf1\xb7\xbf\xfd\x0d\x3e\x9f\x2f\xad\xd0\x73\x55\xdb\x06\x01\ \xce\x3f\xc8\xda\xb5\x6b\xff\x83\x52\xfa\x23\x00\x36\xf5\x86\xd6\ \xd6\x56\x5c\x7f\xfd\xf5\x08\x06\x83\xd8\xbf\x7f\x3f\x04\x41\x18\ \x13\xa1\xab\xc1\xf3\xfc\x94\x71\x00\x27\x3c\x01\xd6\xae\x5d\x3b\ \x8d\xe3\xb8\x97\x19\x63\x37\xaa\x5b\xbd\xc5\x62\xc1\xaa\x55\xab\ \xd0\xd2\xd2\x82\xce\xce\x4e\xb8\x5c\xae\xac\x6d\x7a\x36\x04\x30\ \x34\xc0\xf9\x51\xf9\xd7\x02\xf8\x2d\x63\xac\x5e\xbd\xbe\xba\xba\ \x1a\x37\xdf\x7c\x33\xec\x76\x3b\xf6\xef\xdf\xaf\xa4\x73\xcf\x57\ \xd7\xac\xda\x04\x18\xdd\xc1\x63\x80\xf6\xf6\x76\xb3\xcf\xe7\x6b\ \x07\xf0\x38\x63\x8c\x53\xc7\xdc\xf3\xe6\xcd\xc3\x8a\x15\x2b\xe0\ \xf1\x78\x70\xf0\xe0\x41\x30\xc6\x14\x21\x9c\x2f\xb5\x1c\x89\x44\ \x94\x73\x19\x61\x60\x9e\xb1\x7e\xfd\xfa\x99\x81\x40\xe0\x35\x42\ \xc8\x95\xea\x87\x6b\x36\x9b\x71\xdd\x75\xd7\x61\xf6\xec\xd9\x38\ \x7a\xf4\x28\xce\x9c\x39\xa3\xb4\xc0\x6c\x84\x90\x4b\xcb\x35\x4c\ \xc0\xd8\x09\xff\x9f\x19\x63\xff\xcb\x18\x2b\x57\x0b\xb5\xac\xac\ \x0c\x37\xdd\x74\x13\x08\x21\xd8\xbd\x7b\xb7\x52\xaa\xa5\x57\x88\ \xf9\x52\xd7\x67\xcb\xc1\xa7\x84\xfa\x9f\x10\x04\x68\x6f\x6f\x2f\ \x0c\x85\x42\x5b\x18\x63\xdf\x4e\x8c\xcf\x9b\x9b\x9b\xb1\x62\xc5\ \x0a\x74\x77\x77\x2b\x05\x9a\x99\x54\x7e\x2a\xc1\xe8\xd1\x14\xe9\ \x84\x1b\x0e\x87\x47\xa5\x82\x2f\xbe\xf8\x62\x26\xff\x47\xfe\x70\ \x1c\x07\x8e\xe3\x90\x6c\x3d\x80\x51\xdf\xf2\xfa\x74\xfb\xa9\xaf\ \x5d\xc3\xb2\x9f\x52\xfa\x67\x42\xc8\xa3\x7b\xf7\xee\xed\xc9\x78\ \xaf\xe3\x29\xfc\xef\x7e\xf7\xbb\xad\x8c\xb1\xdf\x03\x98\xa7\xb6\ \xab\x84\x10\x2c\x5d\xba\x14\xcd\xcd\xcd\xf8\xf8\xe3\x8f\xe1\xf5\ \x7a\x75\xb7\xe2\xb1\x6a\xa1\x5b\xb7\x6e\x85\xdf\xef\x1f\x75\x0e\ \xf5\x77\xb2\x4f\x32\x01\xa7\x22\x8c\xbc\xac\xde\xae\x93\x00\xf2\ \x72\x8f\x20\x08\x97\x7c\xf8\xe1\x87\xde\x09\xa9\x01\x1e\x79\xe4\ \x91\x7f\x67\x8c\xfd\x18\x80\x5d\x2d\xfc\xa2\xa2\x22\xdc\x70\xc3\ \x0d\x10\x45\x11\x3b\x77\xee\x54\x0a\x2f\xb4\xda\xfb\x6c\x35\x84\ \x56\x48\x92\xa4\x98\x00\xf9\x1c\xb2\xa0\x52\x21\xf1\x5a\xe4\x2a\ \x64\xf5\x76\xf5\x3a\x79\x39\x07\xe1\x03\x40\x83\xc5\x62\xd9\x0c\ \xe0\x3b\x13\x8a\x00\x8f\x3d\xf6\x58\x05\xa5\xf4\x25\xc6\xd8\xad\ \x89\x0f\xe6\x82\x0b\x2e\xc0\xb2\x65\xcb\xd0\xd9\xd9\x09\xa7\xd3\ \x99\x51\x68\xe3\xa1\x11\xe4\x28\x40\x1d\x81\x24\x13\xb8\x5a\xc0\ \x89\x02\x57\x0b\x4a\x4d\xd8\xc4\xe3\xa6\x3b\x87\x16\x30\xc6\x56\ \x4d\x28\x13\xf0\xf8\xe3\x8f\x5f\x45\x29\x7d\x8d\x31\xd6\xa8\xbe\ \x61\x00\xb8\xe2\x8a\x2b\xd0\xd8\xd8\x88\x83\x07\x0f\x22\x14\x0a\ \xe5\x45\xf8\x5a\x1f\x5e\xae\xe4\x48\xa6\x6d\xe4\x4e\xaa\x4c\x3e\ \x88\x9e\xf5\x8c\x31\x88\xa2\x78\xce\x36\xf9\xf7\x37\xbe\xf1\x0d\ \x3c\xff\xfc\xf3\xf0\x78\x3c\xca\xba\x0f\x3e\xf8\x80\x8c\xbb\x06\ \x68\x6b\x6b\x33\xcd\x9a\x35\xeb\x71\x4a\xe9\xf7\x13\xcf\x59\x50\ \x50\x80\x95\x2b\x57\x22\x1c\x0e\xe3\xfd\xf7\xdf\x1f\x75\x73\xa9\ \xd4\xbe\x16\x73\x90\x69\x9f\xb1\x4a\x15\xab\x8f\x97\xd8\xea\x33\ \x9d\x2b\x95\x60\xd5\x48\x76\x4c\xb5\xd6\x49\xb5\x7d\xdc\x08\xb0\ \x61\xc3\x86\xe9\x94\xd2\xdf\x31\xc6\x96\xab\x5b\x3d\x63\x0c\xf5\ \xf5\xf5\xb8\xf2\xca\x2b\xf1\xd9\x67\x9f\x29\xb1\x7d\xae\xc2\x4f\ \xe7\x03\x8c\xa5\xd0\xf5\x46\x1e\x5a\x5b\x7e\x2a\x4d\x90\x6c\x9d\ \xd6\xd2\xf6\xf3\x46\x80\x0d\x1b\x36\x7c\x9d\x31\xf6\x32\x80\xea\ \xc4\x6d\x97\x5e\x7a\x29\x1c\x0e\x07\x76\xed\xda\x75\xce\x85\xeb\ \x11\x7e\xaa\xee\xdd\x64\x6a\x5d\x8f\x13\x99\x0f\x21\x67\xdb\xd2\ \xb5\x90\x20\xd9\x7a\xb9\xfe\x41\xcf\x35\x8d\x09\x01\xd6\xae\x5d\ \x6b\x2b\x2d\x2d\x7d\x8e\x31\xb6\x56\x2e\xd5\x92\x2f\xca\x66\xb3\ \xe1\x9a\x6b\xae\x81\xd7\xeb\xc5\xee\xdd\xbb\x35\x0b\x21\x95\xf0\ \x53\x11\x22\x93\x06\x48\x27\x1c\xad\x24\xd0\xf2\xa0\xb3\x6d\xe9\ \xd9\x90\x20\x1e\x8f\xeb\x26\x64\xde\x09\xf0\xe4\x93\x4f\xb6\x9c\ \x8d\xed\x2f\x49\xdc\x36\x6d\xda\x34\x2c\x5e\xbc\x18\x87\x0f\x1f\ \x56\x62\xfb\x5c\x04\xad\x65\x9d\x96\xd0\x30\x1b\x6d\xa0\xf7\x58\ \x5a\x54\x79\xba\xdf\x5a\xf6\x1d\x77\x02\x6c\xdc\xb8\xf1\x5e\x4a\ \xe9\x4f\x00\x14\x27\x16\x4e\xce\x99\x33\x07\x95\x95\x95\xd8\xbd\ \x7b\x37\x44\x51\xcc\xb9\x95\x8f\xa7\x36\xd0\xfa\x90\xf5\xd8\xef\ \x5c\x49\xc0\x18\x83\x20\x08\xe3\x43\x80\xf6\xf6\xf6\x52\x51\x14\ \xff\x87\x31\xf6\xaf\xe7\x9c\xc0\x6c\xc6\xa2\x45\x8b\x30\x38\x38\ \x88\xfd\xfb\xf7\xeb\x0e\xed\x12\xd7\x65\xfa\xad\xe7\x58\xf9\xce\ \x13\xe8\x0d\xe9\xb4\x08\x5a\x0f\x21\xa2\xd1\xe8\xf9\x27\xc0\xf7\ \xbe\xf7\xbd\xcb\x28\xa5\xdb\x08\x21\x17\x26\xc6\xf6\x65\x65\x65\ \x68\x69\x69\xc1\x91\x23\x47\x32\xc6\xf6\x89\x99\xb5\x54\xad\x30\ \xd9\xef\x54\xce\xa0\x96\x75\xd9\xd8\xfe\xb1\x14\x7e\x2a\x21\xa7\ \xea\x82\x56\x5f\x77\x3c\x1e\xd7\x7d\x0f\xa6\x1c\x6e\x98\x70\x1c\ \xf7\x9f\x84\x90\xad\x8c\xb1\x73\xbc\xfc\x86\x86\x06\x54\x56\x56\ \xe2\xd3\x4f\x3f\x1d\x55\x9d\xab\x55\xf5\xea\xf9\x9d\x8d\xe6\xc8\ \x77\x86\x30\x5f\x42\xcf\x21\xf5\x8b\xf2\xf2\x72\x9c\x3c\x79\x12\ \xe1\x70\x58\x59\xe7\x72\xb9\x9e\xca\xbb\x06\xf8\xc1\x0f\x7e\x50\ \xfb\xd4\x53\x4f\xfd\x86\x31\xf6\xd5\x44\x5b\x6f\x32\x99\x70\xe1\ \x85\x17\x62\x60\x60\x00\x5d\x5d\x5d\x39\x79\xf8\x5a\x5b\x7e\x26\ \x7f\x20\x93\x7f\x90\x6f\x12\xe4\xcb\xa6\xab\x97\xd3\xfd\x4f\x1d\ \x05\x8c\x79\x1e\x60\xf3\xe6\xcd\x5f\x15\x45\xf1\x55\xc6\x98\x23\ \xf1\xe2\xad\x56\x2b\x9a\x9a\x9a\x70\xf4\xe8\x51\xc4\x62\x31\xcd\ \x76\x38\xb1\x57\x2d\x95\x60\x92\xfd\x4e\x14\x74\xbe\x5a\x6c\x3e\ \x42\x41\x2d\x0e\x9f\x5e\x5f\x20\x99\xa6\x90\x7b\x14\xc7\x94\x00\ \xbf\xfc\xe5\x2f\x2d\x7d\x7d\x7d\xcf\x08\x82\xb0\x1e\xaa\x3e\x04\ \xf9\x26\xfa\xfa\xfa\x50\x51\x51\x01\x42\x08\x2e\xbf\xfc\x72\xf4\ \xf7\xf7\xe3\xd4\xa9\x53\xe7\x54\xea\xa6\x6b\xad\xea\x87\x9e\xaa\ \x15\x6b\xf1\x0f\x32\xfd\x4f\x4b\xcb\x4f\x97\x50\xd2\x1a\x0d\xa4\ \x22\x80\x1e\xd5\x9e\xca\x34\xa8\x7f\x73\x1c\x07\x4a\xe9\xd8\x85\ \x81\x9b\x37\x6f\xbe\xb0\xbf\xbf\x7f\x1b\x21\xe4\x32\xf5\x05\xc8\ \xb1\x67\x57\x57\x97\x12\xd7\x7f\xf2\xc9\x27\x30\x99\x4c\x98\x3f\ \x7f\x3e\xe6\xce\x9d\x8b\x82\x82\x02\x0c\x0f\x0f\xa3\xbb\xbb\x1b\ \xa2\x28\x6a\xb6\xd5\x99\xc8\x90\x49\xd5\xa7\x1b\x00\x92\x2a\x3c\ \x4c\x15\xf2\xe9\x09\x05\xf5\xd8\xff\x74\x76\x5f\x8b\xe0\x13\xef\ \x35\x1b\x27\x30\x23\x01\x36\x6d\xda\xf4\x4d\x4a\xe9\x2f\x28\xa5\ \xa5\x89\xc2\x1f\x1e\x1e\x46\x67\x67\x27\x04\x41\x18\x75\x62\x49\ \x92\x70\xf8\xf0\x61\x1c\x3e\x7c\x18\x1c\xc7\xe1\xa2\x8b\x2e\xc2\ \x9c\x39\x73\x50\x54\x54\x04\x41\x10\xe0\x74\x3a\x11\x89\x44\x92\ \x0a\x2c\x55\x2b\xd6\xdb\xd2\x53\xed\x93\x49\xa8\xf9\x8e\xfb\xb5\ \x3a\x78\x5a\xb6\x25\x5b\x4f\x08\x51\xba\x9b\xf3\x6a\x02\x9e\x7f\ \xfe\xf9\xa2\x48\x24\xf2\x73\xc6\xd8\xdd\x89\x9d\x38\x92\x24\xc1\ \xe9\x74\xc2\xed\x76\x67\x64\x1c\x63\x0c\x9d\x9d\x9d\x8a\x43\x58\ \x56\x56\x86\xf9\xf3\xe7\xa3\xae\xae\x0e\x36\x9b\x0d\x23\x23\x23\ \xf0\x78\x3c\xa3\x0a\x2d\x33\x39\x80\xc9\x34\x85\x16\x35\xaf\xc5\ \xe1\xcb\xc5\x29\xcc\x07\x01\xb4\x6a\x00\x35\x01\xe4\xeb\x4d\xd6\ \x55\x9c\x15\x01\x36\x6d\xda\xb4\x28\x12\x89\x6c\x63\x8c\xb5\xc8\ \x27\xe1\x38\x0e\x92\x24\x21\x14\x0a\xe1\xf8\xf1\xe3\xa3\x42\x0d\ \x3d\x08\x04\x02\xd8\xb7\x6f\x9f\x22\xbc\x86\x86\x06\x34\x35\x35\ \xc1\x66\xb3\xc1\x6c\x36\xc3\xe7\xf3\x61\x64\x64\x44\xb3\xfd\x4f\ \xa6\x41\xb4\xa8\xf4\xb1\xcc\x09\xe4\xcb\x34\x24\x5b\x9f\xca\x09\ \x04\x90\x9f\x4c\xe0\xd3\x4f\x3f\xbd\x84\x52\xfa\x57\x00\xc5\x6a\ \x07\x83\x52\x8a\xde\xde\x5e\x9c\x3a\x75\x2a\x2f\x65\xd1\xf2\x45\ \xf7\xf4\xf4\xa0\xb7\xb7\x57\x21\x59\x5d\x5d\x1d\xea\xeb\xeb\x61\ \xb5\x5a\x95\xf9\x79\x87\x86\x86\x46\x95\x86\xa5\xb2\xf7\x99\xec\ \xbc\x16\xbf\x20\x5b\x12\x64\x1b\xe7\x67\x6a\xe1\x99\xb4\x00\x21\ \x44\x79\x36\x89\xa6\x38\x2b\x02\x30\xc6\xb6\x30\xc6\x14\xe1\xcb\ \xf5\x6a\x03\x03\x03\x29\x47\xdd\x26\x2b\x8e\xd4\x4b\x04\xf9\x86\ \xfa\xfa\xfa\x46\xd5\xfd\x17\x17\x17\xa3\xb1\xb1\x11\x16\x8b\x05\ \x26\x93\x09\x66\xb3\x19\x92\x24\xc1\xef\xf7\x8f\x1a\xa7\x9f\xac\ \x2e\x2f\x9d\xd6\xc8\x35\x73\xa8\x47\xf8\x5a\x55\x7a\xa2\x8f\xa5\ \x85\x18\x84\x10\x98\x4c\xa6\x51\xfd\x01\x39\x11\x80\x52\x7a\x69\ \xb2\x93\x79\x3c\x1e\xdd\xb1\x72\x2e\x6a\x54\xfe\x6f\x38\x1c\x3e\ \xa7\x24\xdc\x6e\xb7\xc3\xe1\x70\x28\x5a\x82\xe3\x38\x45\x5b\x24\ \xd6\xec\xe9\xed\xde\xcd\x86\x04\xd9\x10\x20\x95\xe0\x53\x2d\xa7\ \x23\x80\x7a\x9f\x9c\x09\x00\xa0\x1b\x40\x8b\x5a\x85\xca\xf3\xed\ \x0c\x0f\x0f\xe7\x24\x4c\x2d\xdb\x53\x2d\xab\xd7\xc5\x62\x31\xb8\ \x5c\xae\x51\xa5\xd3\xc0\xdf\x6b\x0d\xe4\xa9\xdd\xe5\xf2\x28\x8e\ \xe3\x60\x32\x99\x40\x08\x51\xe2\xe4\x64\xc4\xc8\x26\x27\x90\xa9\ \xf2\x38\x53\x1e\x3f\x97\x24\x53\xe2\x7e\x72\x1e\x40\x6f\x24\x90\ \xcc\x04\x3c\x43\x29\x7d\x55\x4e\xeb\x9a\xcd\x7f\xdf\x65\xc6\x8c\ \x19\x88\x44\x22\x39\x4d\xb9\x92\xce\x44\x68\x11\x7c\x62\x94\x90\ \xb8\x4e\x10\x04\x0c\x0d\x0d\x9d\x53\xa7\x2f\x9b\x33\xbb\xdd\x3e\ \xaa\x0e\x9f\x31\xa6\x90\x43\x26\x8a\xbc\x6f\xb6\xe1\x60\xb6\xad\ \x3f\xb1\xb5\xcb\xd1\x16\xa5\x74\xd4\xb7\xfc\x11\x45\x51\xf1\xfa\ \xe5\x37\x9a\xa8\xa7\xaf\xd1\x2c\x93\x64\x2b\x37\x6e\xdc\x78\x1f\ \xa5\xf4\xa7\x8c\xb1\x02\x99\x04\x94\x52\x08\x82\x80\xfe\xfe\x7e\ \x7c\xf1\xc5\x17\xa3\x26\x4b\xce\xc7\xb7\xd6\xe5\x54\x83\x30\xf4\ \x1c\x27\x5d\xc2\x29\x31\xbd\x9a\x6c\xc4\x8e\xba\x85\xab\x8b\x30\ \x53\x69\x08\xd9\x49\x53\xab\x6f\xf5\x34\x76\xb2\x70\xd5\xcb\xea\ \x69\xec\x13\x3f\xea\x6d\x1c\xc7\xa1\xa0\xa0\x00\x56\xab\x15\xb1\ \x58\x0c\x3e\x9f\x6f\x54\x35\x72\xa6\xaa\xe0\x94\x1b\x9f\x78\xe2\ \x89\x56\xc6\xd8\xef\x19\x63\xf3\x38\x8e\x83\xd5\x6a\x05\xc7\x71\ \x10\x04\x01\x7e\xbf\x1f\x27\x4f\x9e\x44\x30\x18\xd4\xf4\x70\xb5\ \x12\x40\x0f\x09\xb2\x25\x82\x5e\x12\xe4\xa3\x13\x28\x93\x6d\xd7\ \x22\xe8\x54\xdb\x4d\x26\x13\x0a\x0a\x0a\x60\xb3\xd9\xc0\xf3\x3c\ \x7c\x3e\xdf\xa8\x8c\x6b\x26\x02\xa4\xac\x21\x7e\xe6\x99\x67\x3e\ \xe3\x79\xfe\x32\x00\x2f\x88\xa2\xc8\xa2\xd1\x28\x62\xb1\x18\x4c\ \x26\x13\xca\xcb\xcb\x31\x6f\xde\x3c\xcc\x98\x31\x23\xe7\x78\x39\ \x97\x22\x8d\x54\xa6\x20\x93\xf0\xb5\x10\x29\xd3\x70\x2f\xad\x9f\ \x4c\x9a\x2e\xd3\xff\x32\x3d\x9f\x5c\xab\x9b\x35\x49\xef\xd1\x47\ \x1f\xbd\x89\x52\xfa\x2b\x00\x55\x6a\x6d\x20\x33\xce\xe9\x74\x8e\ \xea\xfd\xcb\x45\xf5\x6b\x7d\x58\x5a\xd7\xa7\x3b\x9f\x16\x2d\xa0\ \x95\x8c\x5a\xf3\xfd\xa9\xbc\xfa\x54\xad\x3e\xd3\x6f\x42\x08\x4a\ \x4a\x4a\x60\xb5\x5a\xc1\xf3\x3c\xbc\x5e\x6f\x7e\x34\x80\x1a\xcf\ \x3e\xfb\xec\x9b\x84\x90\x05\x94\xd2\xdd\x82\x20\x20\x12\x89\x20\ \x1e\x8f\xc3\x66\xb3\xa1\xb2\xb2\x52\xa9\xf7\x3b\x9f\x5a\x20\x59\ \xeb\x4f\xd6\x6a\xf4\x9a\x82\x6c\x5a\xbe\x16\x1f\x25\xd5\x7e\x99\ \xee\x4b\x6b\x49\x9c\xde\x01\x21\xba\x08\x00\x00\xcf\x3d\xf7\x5c\ \x5f\x49\x49\xc9\x75\x00\x9e\x94\x24\x49\x88\x46\xa3\xe0\x79\x1e\ \x16\x8b\x05\x65\x65\x65\x68\x6a\x6a\xc2\xcc\x99\x33\x95\xa8\x61\ \xac\xcc\xc2\xf9\x32\x05\x99\x8e\x9b\x4f\x33\xa1\xc5\x74\x64\x1b\ \x36\xe7\xc5\x04\x24\xe2\xe1\x87\x1f\xfe\x27\x51\x14\xb7\x02\x98\ \x25\x3b\x21\x66\xb3\x19\x3c\xcf\x23\x10\x08\xa0\xb7\xb7\x17\xe1\ \x70\x38\x6b\xe7\x2f\x5b\x5b\x79\x3e\x4c\x81\x1e\x67\x50\x4b\xb2\ \x27\x9d\x09\x50\x47\x09\xa9\xcc\x81\xc9\x64\x42\x71\x71\x31\xec\ \x76\x3b\x22\x91\x08\x86\x87\x87\xf3\x6f\x02\x12\xb1\x65\xcb\x96\ \x03\x76\xbb\xfd\x12\x4a\xe9\xb6\x58\x2c\x06\xbf\xdf\x8f\x68\x34\ \x0a\x9b\xcd\x86\x8a\x8a\x0a\xcc\x9a\x35\x0b\x35\x35\x35\xba\xd4\ \x52\xb6\x0f\x7b\x22\x99\x82\x7c\x92\x56\x4f\x8a\x3d\x93\x59\xc9\ \xa9\x1e\x20\x8d\x49\x08\x02\xf8\xe6\x9a\x35\x6b\xde\x93\x24\xe9\ \xa7\xa1\x50\xa8\x38\x16\x8b\xa1\xa8\xa8\x08\x25\x25\x25\x30\x99\ \x4c\x28\x2c\x2c\xc4\x99\x33\x67\x74\xa7\x27\x73\x31\x1d\x7a\x4c\ \xc1\x58\x85\x83\xd9\x66\xf9\x92\xd5\x32\x68\xa9\x6f\xd4\x12\x31\ \xe4\x55\x03\xa8\xf1\xc2\x0b\x2f\xbc\xc2\x71\xdc\x22\xc6\xd8\x27\ \x72\x54\x20\x13\xa1\xaa\xaa\x0a\x33\x67\xce\x44\x59\x59\xd9\xb8\ \x85\x88\x7a\x7c\x02\xad\x2d\x5e\x9d\x66\xce\x34\x1b\x88\x5e\x6d\ \x92\x49\x23\xe9\x75\x1a\xc7\x9c\x00\x67\x49\x70\x92\x52\x7a\x05\ \x21\x64\x8b\x20\x08\x92\xcf\xe7\x53\xde\xaf\x57\x59\x59\x89\xfa\ \xfa\x7a\xd4\xd4\xd4\x28\xa9\xd6\x5c\x5a\xb6\x16\x35\xaa\xc5\x14\ \xe8\x15\x7a\x26\x53\x93\x0f\xf3\x90\x6b\xcf\x6a\x36\x39\x81\xbc\ \x0d\x0d\x7b\xf1\xc5\x17\x05\x00\xeb\x57\xaf\x5e\xfd\x17\x00\xaf\ \x86\xc3\x61\x47\x2c\x16\x43\x69\x69\x29\xca\xca\xca\x60\xb5\x5a\ \x61\xb7\xdb\x31\x34\x34\x94\xf2\xa5\x8c\x63\x15\x11\x64\x63\x0a\ \xb4\xe6\x05\xb2\xe9\xe0\x49\x37\xa2\x39\x9d\xfa\xcf\x74\xdf\xd9\ \x84\x82\x79\x7f\x7d\xfc\xcb\x2f\xbf\xfc\x9e\x20\x08\x0b\x29\xa5\ \xef\xc6\x62\x31\xe5\x8d\xdb\x76\xbb\x1d\x35\x35\x35\xa8\xaf\xaf\ \x47\x59\x59\xd9\x79\x99\x66\x2d\x1b\x9f\x40\x4b\x6b\x55\xab\xf9\ \x54\x2a\x5f\xab\x06\xd1\xe2\x8f\x64\x93\x7e\xd6\x0a\xd3\x58\x3c\ \xf8\x23\x47\x8e\x84\x0f\x1d\x3a\xb4\x75\xd1\xa2\x45\x41\x49\x92\ \x96\xf1\x3c\x6f\x8e\xc5\x62\xb0\xdb\xed\x28\x2e\x2e\x86\xc5\x62\ \x51\x8a\x18\x13\x8b\x39\xf4\x3e\xcc\x44\x01\x68\x55\xb3\xb9\x7a\ \xfa\xe9\x4c\x48\x2e\x82\x4c\x16\x32\xa6\xdb\x47\x0e\xc3\xad\x56\ \x2b\xe4\x24\x9d\xba\x33\x28\xd3\xc8\x20\x6e\x2c\x5b\xe0\x2b\xaf\ \xbc\xb2\x85\xe3\xb8\x2b\x00\x1c\x8f\x46\xa3\xf0\x78\x3c\x08\x04\ \x02\x28\x2d\x2d\x85\xc3\xe1\x80\xc3\xe1\x80\xdd\x6e\xcf\x8a\xbd\ \x99\x5a\x93\x9e\xf0\x30\x9b\xb4\x73\xaa\x39\xfe\xf2\x95\xf4\xd1\ \xea\xd5\xa7\x2a\x1d\x1b\x37\x13\x90\x84\x04\x87\x78\x9e\x5f\x4c\ \x08\xf9\xb5\x20\x08\xcc\xeb\xf5\x62\x60\x60\x00\x1c\xc7\xa1\xa6\ \xa6\x06\x0e\x87\x03\xa5\xa5\xa5\x63\x3a\xe3\x97\xde\x8c\x5e\x36\ \x51\x41\xb6\x82\xcf\xd6\xf1\x53\x0b\x5e\xfd\xbf\x96\x96\x16\x34\ \x36\x36\xa2\xba\xba\xfa\xfc\x3a\x81\xe9\xb0\x7d\xfb\xf6\x28\x80\ \xd5\x77\xdc\x71\xc7\x5f\x24\x49\x7a\x21\x18\x0c\x56\xc6\x62\x31\ \x54\x54\x54\xa0\xaa\xaa\x0a\x76\xbb\x1d\x16\x8b\x05\x81\x40\x60\ \xcc\x5f\xc8\x98\x4e\x08\x7a\xbd\xf1\x5c\xc6\x17\xa6\x1a\xc3\x90\ \x6b\x0f\xdf\x8c\x19\x33\x50\x58\x58\x08\xbf\xdf\x8f\xa1\xa1\xa1\ \x89\x41\x00\x19\x5b\xb7\x6e\x7d\xbd\xad\xad\xed\x43\x8e\xe3\x5e\ \xe3\x79\xfe\x2a\x8f\xc7\x83\x68\x34\x8a\xaa\xaa\x2a\x4c\x9f\x3e\ \x1d\x36\x9b\xed\x9c\xde\xac\x6c\x1e\x6e\x26\xa7\x2b\xd3\xbe\x89\ \x95\x44\x16\x8b\x05\x85\x85\x85\x28\x2c\x2c\x3c\xa7\x28\x24\x95\ \x40\x93\x7d\x6b\xe9\xfd\x03\x90\x34\x05\x2c\x57\xfa\xa8\xbf\x65\ \x1f\xa0\xa4\xa4\x04\x82\x20\x80\xe7\x79\x94\x94\x94\xa8\x23\x02\ \xef\x84\x22\xc0\x59\x6d\xe0\x6a\x6f\x6f\x5f\xda\xd1\xd1\xd1\x2e\ \x8a\xe2\xe3\x23\x23\x23\x66\x9e\xe7\x51\x55\x55\x85\xda\xda\x5a\ \xd8\x6c\x36\x0c\x0f\x0f\x2b\x93\x1d\xe4\x63\x52\x68\xbd\xea\x58\ \x4d\x04\xf9\x01\x57\x57\x57\x83\xe3\xb8\x51\x93\x5a\xa5\x23\x8d\ \xfc\xad\xd5\x74\xa8\x43\xb9\xc4\x0a\xa4\x4c\x08\x06\x83\x88\xc7\ \xe3\xa8\xab\xab\xc3\xe0\xe0\x20\xca\xcb\xcb\x65\x13\xf0\xf1\x84\ \x23\x00\x00\xb4\xb7\xb7\x53\x00\x1b\x6f\xbd\xf5\xd6\xf7\x19\x63\ \xbf\x0d\x85\x42\x8d\x3c\xcf\xa3\xb2\xb2\x12\x95\x95\x95\x28\x28\ \x28\xc0\xe0\xe0\x20\x82\xc1\xa0\x52\x2a\xa5\x65\x84\x4f\xae\x55\ \xc8\xa9\x9c\x3e\xc6\x18\x02\x81\x00\xe2\xf1\xb8\x32\xdf\x81\x16\ \x07\x51\xef\x72\xe2\x3a\xbd\x71\x7d\x2c\x16\x43\x55\x55\x15\x44\ \x51\x44\x71\x71\x31\x00\xfc\x64\xdc\x9d\xc0\x74\xd8\xb1\x63\xc7\ \x5e\x4a\xe9\x42\x8e\xe3\x76\xc4\xe3\x71\x0c\x0e\x0e\x2a\xc3\xcd\ \xa6\x4f\x9f\x8e\x9a\x9a\x1a\x58\x2c\x96\xac\x3d\x5c\x3d\x99\x45\ \x2d\x45\xa7\xc9\x5a\x69\xba\xd6\xac\xa5\x6f\x21\x5d\x3f\x84\xde\ \x7b\xf6\x7a\xbd\xf0\xf9\x7c\x70\xbb\xdd\x38\x70\xe0\xc0\xbb\x1f\ \x7c\xf0\xc1\xdb\x13\x52\x03\xa8\xf1\xc6\x1b\x6f\xf8\x00\xdc\x76\ \xcb\x2d\xb7\x7c\x4b\x14\xc5\x1f\xfb\xfd\xfe\xa2\x68\x34\x8a\x69\ \xd3\xa6\xa1\xba\xba\x1a\x76\xbb\x1d\x03\x03\x03\x88\x46\xa3\x19\ \x33\x6a\xd9\x64\x08\x33\xf9\x03\xea\xd6\xa9\xce\xff\xab\x05\x95\ \xac\xb2\x58\x5e\x27\x9b\x11\xad\x11\x43\x2e\x9a\x2c\x1a\x8d\xc2\ \xe5\x72\x0d\x11\x42\x7e\x55\x54\x54\xf4\x7d\x4d\xcf\x05\x13\x08\ \xb7\xdd\x76\xdb\x1c\x41\x10\x5e\xa7\x94\x2e\x90\x6b\x0f\x6b\x6b\ \x6b\x01\x00\x03\x03\x03\xf0\xf9\x7c\x69\x63\xf0\x54\x0f\x57\xef\ \x7a\x35\x19\x2c\x16\x0b\x8a\x8b\x8b\x51\x50\x50\x80\x68\x34\x8a\ \x6d\xdb\xb6\x21\x1a\x8d\x2a\xea\xd9\xe9\x74\x4e\xea\x37\x47\x70\ \x13\xe9\x62\xfe\xf0\x87\x3f\x1c\x77\x38\x1c\x5f\xe1\x38\xee\x67\ \x92\x24\x51\x79\x5e\x01\x9e\xe7\x31\x7d\xfa\x74\xd4\xd7\xd7\x2b\ \x83\x54\x93\xa9\x48\xad\x33\x7d\xe8\xd1\x04\xc9\x7e\x27\xaa\x7b\ \x83\x00\x79\xc4\x8b\x2f\xbe\x28\xbc\xf5\xd6\x5b\x6b\x4d\x26\xd3\ \xd7\x01\x78\x82\xc1\x20\x5c\x2e\x17\x3c\x1e\x0f\xca\xcb\xcb\xd1\ \xd4\xd4\x84\xc2\xc2\x42\xc5\x13\xcf\x87\x6f\xa0\x45\x1d\xab\x53\ \xd6\xb9\xaa\x6a\x83\x00\x1a\xf0\xe6\x9b\x6f\xfe\x99\xe3\xb8\x85\ \x84\x90\xbf\xc6\x62\x31\xf4\xf7\xf7\xe3\xf4\xe9\xd3\xa0\x94\x2a\ \x99\xae\x68\x34\x7a\xce\x98\x78\x3d\x33\x8a\xe9\xf5\x09\x52\x68\ \x04\xc3\x04\x8c\x15\xde\x7a\xeb\x2d\xcf\xdb\x6f\xbf\xbd\x82\xe3\ \xb8\xc7\x24\x49\x8a\x8d\x8c\x8c\xc0\xe9\x74\xc2\xeb\xf5\xa2\xb6\ \xb6\x16\x4d\x4d\x4d\xa0\x94\x2a\x2f\x72\x4a\x67\x0a\xb2\xd5\x04\ \x6a\xcf\x5f\x3d\xce\x30\xd5\xf0\x31\x83\x00\x63\x80\xb7\xdf\x7e\ \xfb\x59\xb3\xd9\x7c\x25\x80\xae\x68\x34\x0a\xb7\xdb\x0d\x97\xcb\ \x05\x9b\xcd\x86\xe6\xe6\x66\x94\x94\x94\x20\x10\x08\x24\x9d\x83\ \x28\xd7\xfe\x85\x74\x7d\x03\x67\x1d\x41\x43\x03\x9c\x0f\xfc\xf1\ \x8f\x7f\xfc\xd4\x6c\x36\x5f\x42\x08\x79\x55\x14\x45\x26\xcf\x43\ \x18\x0e\x87\xd1\xd0\xd0\x80\x86\x86\x06\x84\x42\x21\x65\x46\x52\ \xad\x53\xaf\x26\x13\x7e\xb2\x68\x21\x9b\x34\xb3\x41\x80\xfc\x93\ \x20\xf2\xce\x3b\xef\xdc\x43\x08\xb9\x03\x80\x2f\x1c\x0e\xe3\xd4\ \xa9\x53\x70\xbb\xdd\x28\x2f\x2f\xc7\x9c\x39\x73\x60\x36\x9b\x31\ \x3c\x3c\xac\xe4\xca\xf5\x9a\x85\x74\x9a\x20\x59\xed\xc1\x59\x0d\ \x40\x0c\x02\x9c\x47\xbc\xfb\xee\xbb\xdb\xec\x76\xfb\x42\x00\x07\ \x44\x51\x84\xdb\xed\x56\x66\x2b\x6b\x6e\x6e\x46\x6d\x6d\x2d\x06\ \x07\x07\x95\xfe\x84\x5c\xfa\xcb\x13\x5f\xea\x94\x98\x87\x30\x34\ \xc0\xf8\x69\x03\xd7\xd5\x57\x5f\x7d\x15\xc7\x71\x3f\x64\x8c\x89\ \x3e\x9f\x0f\x27\x4e\x9c\x40\x7f\x7f\x3f\x6a\x6b\x6b\xd1\xd2\xd2\ \x82\x68\x34\x8a\xe1\xe1\xe1\x8c\x73\xef\x68\x9d\xe8\x21\x31\x33\ \x68\x44\x01\xe3\x8c\xf6\xf6\x76\xba\x73\xe7\xce\x27\xcc\x66\xf3\ \x0a\x42\x48\x6f\x2c\x16\x43\x77\x77\x37\xba\xba\xba\x60\x36\x9b\ \x31\x77\xee\x5c\x14\x15\x15\xa1\xaf\xaf\xef\x9c\x59\x34\xb5\x0a\ \x5f\x16\x7a\x62\x19\xf8\x54\x01\x37\x15\x6e\x62\xe7\xce\x9d\x7b\ \x0a\x0b\x0b\x17\x00\x78\x8b\x52\x8a\xc1\xc1\x41\x74\x74\x74\xc0\ \xeb\xf5\xa2\xa9\xa9\x09\x4d\x4d\x4d\x18\x1a\x1a\x52\xa6\x9f\xd3\ \x3b\x43\x67\xa2\xe6\x48\x30\x01\x86\x06\x98\x20\xa1\xe2\xc8\x9e\ \x3d\x7b\x6e\x32\x99\x4c\xdf\x21\x84\x84\xc3\xe1\x30\xba\xba\xba\ \xe0\x74\x3a\x51\x5a\x5a\x8a\xd6\xd6\x56\x00\x40\x6f\x6f\xef\xa8\ \xf9\xf4\xb4\xf8\x08\x89\x26\x40\x4d\x02\x43\x03\x4c\x30\xec\xda\ \xb5\xeb\x05\xab\xd5\x7a\x19\x21\xe4\x98\xec\x20\x7e\xfe\xf9\xe7\ \x88\x46\xa3\x98\x33\x67\x0e\xea\xea\xea\xd0\xdb\xdb\x8b\x40\x20\ \x70\x4e\x75\x4e\xaa\x88\x21\x5d\x01\xa8\x41\x80\x09\x88\xf7\xdf\ \x7f\xff\xf3\xe2\xe2\xe2\x4b\xcd\x66\xf3\x2f\x28\xa5\xd4\xeb\xf5\ \xa2\xa3\xa3\x03\x3d\x3d\x3d\x70\x38\x1c\x98\x37\x6f\x1e\x02\x81\ \x00\xdc\x6e\x77\xc6\x69\x58\x00\x8c\xda\xc7\x88\x02\x26\x09\xde\ \x79\xe7\x9d\xd8\x9e\x3d\x7b\xd6\x00\xb8\x95\xe3\xb8\xc1\x58\x2c\ \x06\xa7\xd3\x89\x8e\x8e\x0e\x70\x1c\x87\x85\x0b\x17\xa2\xb4\xb4\ \x14\xa7\x4e\x9d\x1a\x35\xb7\x60\xa6\x09\x1b\x93\x74\x04\x19\x3e\ \xc0\x44\xc6\xfe\xfd\xfb\xdf\xb4\x58\x2c\x0b\x08\x21\xbb\x64\x07\ \xf1\xc8\x91\x23\xf0\x78\x3c\x68\x6a\x6a\xc2\x45\x17\x5d\x04\x8f\ \xc7\x83\xfe\xfe\x7e\xa5\xf8\x32\x95\x56\x90\x05\x3f\x95\x4c\x80\ \x09\x5f\x02\x9c\x3e\x7d\x3a\xd4\xd3\xd3\xf3\xea\xcc\x99\x33\x05\ \xc6\xd8\x35\xb1\x58\xcc\xe4\xf3\xf9\xc0\xf3\x3c\x6a\x6b\x6b\xe1\ \x70\x38\xe0\xf7\xfb\xe1\xf1\x78\x50\x54\x54\x34\x6a\x10\x2b\xc7\ \x71\xca\x44\xd6\xa2\x28\xa2\xab\xab\x6b\xd4\xdb\xc0\xcf\x9c\x39\ \xf3\x34\x00\x6a\x68\x80\x49\x80\x7d\xfb\xf6\x3d\x63\xb5\x5a\xaf\ \xe6\x38\xee\x0b\x49\x92\xe0\x76\xbb\x71\xe4\xc8\x11\x04\x02\x01\ \xcc\x9e\x3d\x1b\x0d\x0d\x0d\x70\xb9\x5c\x4a\x2a\x39\x99\x46\x50\ \xdb\x7e\xc3\x07\x98\x84\xd8\xb3\x67\xcf\x47\xf1\x78\x7c\x01\x21\ \x64\x2b\x00\xe6\xf7\xfb\xd1\xd1\xd1\x01\xa7\xd3\x89\xea\xea\x6a\ \xb4\xb6\xb6\x22\x1a\x8d\xe2\xf4\xe9\xd3\x88\xc7\xe3\xca\xa4\x8d\ \xf2\x27\x49\x26\xd0\x30\x01\x93\x0d\x67\xce\x9c\x11\x7a\x7a\x7a\ \x76\xcc\x9c\x39\xf3\x24\x80\xeb\x24\x49\xb2\x07\x02\x01\x04\x02\ \x01\x94\x95\x95\xa1\xa1\xa1\x01\xa2\x28\xa2\xa7\xa7\x07\x85\x85\ \x85\x8a\x59\x90\x27\xa3\x96\x7b\x1c\x09\x21\x70\xbb\xdd\x93\xda\ \x04\x7c\x29\x09\x20\xa3\xa7\xa7\xe7\xe8\xac\x59\xb3\x5e\x67\x8c\ \x5d\xce\x18\x9b\x11\x89\x44\x94\x77\x1f\x35\x36\x36\xa2\xa6\xa6\ \x46\x99\xfb\xc8\x62\xb1\x80\xe7\x79\x4c\x9b\x36\x0d\x05\x05\x05\ \x08\x87\xc3\x90\x24\x09\xbd\xbd\xbd\x9b\x0d\x02\x4c\x62\x74\x77\ \x77\xfb\xee\xbb\xef\xbe\x5f\x3b\x9d\x4e\x0b\x21\xe4\x0a\x49\x92\ \x38\x9f\xcf\x07\xaf\xd7\x0b\xbb\xdd\x8e\xe9\xd3\xa7\xc3\x64\x32\ \xc1\x66\xb3\x29\x93\x67\xcb\x73\xf4\x9e\xad\x57\x9c\xd4\x04\x20\ \x30\xa0\x60\xe9\xd2\xa5\x4b\x25\x49\xfa\x2d\x63\xac\x51\x1d\xfb\ \x57\x54\x54\xa0\xb5\xb5\x15\x15\x15\x15\x30\x9b\xcd\x08\x06\x83\ \x18\x1c\x1c\x44\x4f\x4f\x0f\xfe\xf4\xa7\x3f\x59\x01\x88\x00\xd8\ \x64\xbc\x67\xce\x10\xfb\x3f\xb0\x77\xef\xde\xbd\x16\x8b\x65\x21\ \x21\x64\x47\xe2\xd8\x81\x48\x24\xa2\x0c\x09\xb3\xdb\xed\xf2\x20\ \xcc\x90\x11\x05\x4c\x31\xec\xde\xbd\xdb\xb7\x6f\xdf\xbe\xdb\x38\ \x8e\xfb\x16\x21\x24\xc4\x71\x1c\xa2\xd1\x28\x42\xa1\x10\x78\x9e\ \x87\x20\x08\xb0\x5a\xad\x18\x1e\x1e\x86\xcf\xe7\x73\x9f\x6d\xf9\ \x6c\xb2\xde\xaf\xc9\x10\x79\x72\xb8\x5c\xae\x4f\x67\xcd\x9a\xb5\ \x9d\x31\x76\x21\x21\x64\xb6\xdc\x83\x18\x08\x04\xd0\xd1\xd1\x01\ \xb7\xdb\x0d\xc6\xd8\x4b\x2e\x97\xeb\xaf\x93\x99\x00\x86\x0f\xa0\ \x01\xd7\x5e\x7b\xed\x12\x49\x92\xd6\x31\xc6\xae\x27\x84\x54\x9c\ \x1d\x31\xfc\x2e\xcf\xf3\xff\x72\xf0\xe0\xc1\xc0\x64\xbe\x37\x83\ \x00\x3a\xd0\xd6\xd6\x66\x1a\x19\x19\x99\xce\x71\x1c\xff\xde\x7b\ \xef\x0d\x18\x4f\xc4\x80\x01\x03\x06\x0c\x18\x30\x60\xc0\x80\x01\ \x03\x06\x0c\x18\x30\x60\xc0\x80\x01\x03\x06\x0c\x4c\x02\xfc\x3f\ \x09\x17\xff\x5e\x62\xf1\x62\xf3\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x0e\x23\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2b\x0f\x86\x11\x5e\x2c\x00\x00\x0d\xa3\x49\x44\x41\x54\x68\ \xde\xed\x5a\x79\x74\x54\xd7\x7d\xfe\xee\x7d\x6f\xf6\x19\x0d\xa3\ \x7d\x61\xd0\x16\x09\x84\x00\x81\x25\x36\x9b\x2d\x6c\x26\xd8\x90\ \x3a\x8e\x71\x9a\x34\x6b\x9b\xc5\x71\x9c\x80\xcf\x71\x5a\x92\xb4\ \xe5\x24\x3e\x49\xa8\x8f\x93\xd4\xf6\x69\xd3\xba\x27\x6d\x53\x37\ \x3e\x29\xa5\x76\xc0\x60\x20\x98\x82\x30\x20\x81\x15\x14\x16\xa1\ \xcd\x23\x24\xd0\x3a\x92\x66\x34\x9a\xd1\xac\xef\xde\xfe\xf1\x96\ \x79\x6f\x84\xb0\x15\x9c\xf4\x9f\xbc\x73\x7e\xbc\xf7\x66\x9e\xee\ \xfb\xbe\xdf\xfe\xbb\x03\xf0\xc7\xe3\x8f\xc7\x3d\x1d\xe4\x83\x58\ \xa4\xf6\xb1\x7d\xe6\xa9\x88\x75\x15\x07\xdf\x46\x08\x79\x00\xe0\ \xd5\x1c\x70\x83\x13\x42\x00\x70\xc2\x39\x01\x26\x00\xd2\x09\xe0\ \x6d\x70\x1c\xb7\x3b\x62\x4d\xd7\x0f\xec\x4b\xfc\xbf\x12\xa8\xd8\ \xbe\xbf\x81\x81\xef\x21\x84\xef\x58\x58\x51\xc8\x57\xd7\x95\xba\ \xea\xaa\x8b\x48\x79\xb1\x07\xf9\xd9\x4e\xd8\x6d\x26\x10\x00\x91\ \x68\x12\xc3\xe3\x61\xdc\x1c\x08\xe0\x4a\xe7\x20\x3f\x77\xf5\x66\ \xe8\x46\xf7\x08\xe5\x1c\x87\xb9\x20\x3d\xdf\x7b\xf8\xdb\xbf\xf9\ \x83\x12\x98\xf7\xd0\x0f\xea\x29\xf8\x3f\xb8\x9d\xf6\x9a\xc7\xb7\ \xd6\x39\x77\xae\xaf\x21\x95\x73\x73\x66\xb5\x9a\xef\xf6\x38\x0e\ \x9d\x69\xe3\xbf\x3c\xde\x1a\x99\x08\xc7\xae\x32\x86\x27\x7b\xdf\ \xdc\x7b\xf9\xf7\x4a\xa0\x78\xc7\x3e\xbb\x45\xb2\xbe\x90\xe5\x34\ \x3f\xfe\x95\x5d\xf7\x3b\x77\x6d\x59\x02\xbb\xd5\x64\x78\x26\x14\ \x89\xa3\x6f\x30\x88\xb1\x89\x29\x84\xa3\x09\x10\x10\x38\x6c\x66\ \xe4\xce\xb1\xc3\x5b\xe8\x46\x96\xc3\x62\x78\x7e\x2a\x9a\xc4\x81\ \x93\x57\xf1\x8f\x07\xce\x87\x43\xe1\xf8\xab\x3c\x12\xfb\xfa\xcd\ \xd3\xfb\x62\x1f\x38\x81\x8a\xed\xdf\xaf\x66\x20\xc7\xff\x64\x43\ \x6d\xf1\x33\x9f\x5b\x6f\xce\x76\xdb\xb5\xef\xae\x76\x0d\xe1\xd4\ \x3b\x3e\x5c\xee\x18\x42\xff\xc8\x04\x08\x25\x20\x20\x20\x24\xf3\ \x15\x1c\x25\xf9\x59\x58\x36\xbf\x08\x9b\x96\x57\xa2\xa6\x3c\x4f\ \xfb\x66\x2c\x38\x85\xe7\x7e\x7e\x26\xf1\xab\xd3\xd7\x6f\x53\xce\ \x3f\xe2\x3b\xfa\xad\xce\x0f\x8c\x40\xf9\xc3\xfb\x57\x98\x04\x7a\ \xec\x6f\xbe\xb4\xc9\xf3\xe8\xa6\xc5\xda\x5f\xfd\xb6\x73\x10\x2f\ \xbf\xd6\x82\xf6\x5e\x3f\x28\x25\xa0\x84\x80\x18\x64\x3a\x01\x0e\ \x80\x73\x0e\xce\x81\x9a\xb2\x3c\xfc\xf9\xce\xfb\x50\x5b\x99\xaf\ \x3d\xf1\xda\xa9\xeb\xd8\xf7\xd3\x93\xe3\xa9\x78\x72\x9b\xef\xd8\ \xde\x4b\xf7\x4c\xa0\xfc\xe1\xfd\x2b\xec\x66\xe1\xf8\x4b\x7b\x1f\ \x99\xb3\x6a\xf1\x3c\x80\x00\xd1\x58\x12\x2f\xfe\xb2\x09\xbf\x6e\ \xee\x06\xa1\x04\x94\x50\x99\x00\x9d\x4e\x80\xe8\x5e\x21\xc3\x4f\ \x13\x60\x8c\x03\xe0\xd8\xba\xb2\x12\x5f\x7a\x64\x39\xac\x16\x11\ \x00\xd0\x74\xb5\x0f\x4f\x7d\xff\xf5\x60\x28\x9e\xd8\xdc\x77\x64\ \x6f\xcb\xef\x4c\xa0\x74\xc7\xf7\xca\x2d\x82\xe5\xd2\x3f\x7f\xe7\ \xe3\x39\x2b\x17\x79\x01\x02\xdc\x1a\x9a\xc0\x5f\xff\xf4\x24\xfa\ \xfd\x93\x10\x28\x01\xa5\x2a\x78\xaa\x11\xa0\xef\xc7\x02\x8c\x83\ \x71\x0e\xce\x39\x18\xe3\x28\xce\x75\xe1\x6f\xbf\xf8\x61\x14\xe7\ \xb9\x14\x12\xb7\xf0\x95\x67\x0f\x8e\x27\x12\xf1\xfb\x7a\x8e\x7e\ \xa7\x77\x26\x8c\xc2\xdd\x72\x7b\x2a\x6e\x39\xf7\xdd\x27\xb6\x7a\ \xb7\xac\xac\x02\x08\xd0\xd5\x37\x8a\x67\x5e\x38\x8e\xd1\xe0\x14\ \x04\x81\x42\x10\x05\x88\x82\x20\x5f\x2b\x67\x51\xa0\xca\xbd\x2c\ \x32\x31\x3a\x8d\x28\x25\x46\x8b\x4d\x46\xe3\x68\xbc\x7c\x13\x75\ \x55\x85\xc8\xce\xb2\x61\x6e\x81\x1b\x05\xb9\x2e\xdb\xa9\x4b\xbe\ \x07\x4b\xea\xd6\xbc\xec\x6f\x3b\x2d\xcd\x8a\x80\xb3\xf4\xc1\xfd\ \x3b\x37\xd6\x6e\x7d\xea\x13\x0f\x88\x20\x40\xff\xc8\x04\x9e\xfe\ \xf1\x31\x4c\x4e\x25\x34\xa0\x2a\x58\x3d\x09\x4a\xf5\x04\x04\x08\ \x94\x6a\x42\x29\x85\xa0\x5a\x89\x52\xc5\xfd\x14\x4b\x11\x82\x78\ \x52\xc2\xf9\x2b\x7d\x58\xb5\xd8\x0b\x97\xdd\x82\x9a\xf2\x7c\xf4\ \xfb\x43\x59\xd7\x3a\xc7\x6d\x81\xae\xb7\x4e\xbe\x6f\x17\xaa\x78\ \xf8\xef\xaa\x5c\x0e\x73\xf3\xd1\x17\x3f\xef\xc9\x76\xdb\x11\x8d\ \x25\xf1\xc4\x0f\x0f\x61\x60\x74\x52\x06\xa3\x01\x56\x80\x09\x04\ \x02\xa5\xc8\xf7\x38\x51\xe5\xcd\xc6\xd2\xea\x02\x14\xe5\x38\xe1\ \x72\x58\x60\x16\x29\x18\x07\x62\xf1\x14\x7a\x87\x82\xb8\xd8\x36\ \x88\x6b\xbe\x11\xc4\x12\x29\xcd\x7d\x24\xc6\xc0\x24\x26\x5f\x4b\ \x0c\x45\xb9\x4e\xfc\x68\xcf\x36\x58\xcd\x22\x02\xa1\x28\xb6\x7f\ \xed\x67\x81\xf1\x70\xb4\xa1\xef\xc8\x5e\xdf\xfb\xb2\xc0\x9c\xea\ \xcd\xff\xb5\xfb\x53\x6b\x16\xae\x5e\x52\x0a\x00\xf8\xc9\x2f\xce\ \xa3\xb5\x73\x48\xd1\xb8\x00\x51\xd4\x59\x40\x94\x2d\xf0\xc2\xd3\ \xdb\xb0\xb1\xa1\x14\xab\x6b\x8b\x51\x5e\x94\x85\x6c\x97\x05\x4e\ \x9b\x09\x76\x8b\x08\xbb\x45\x84\xcb\x6e\x82\x37\xdf\x85\xa5\x55\ \x05\x58\x59\x5b\x82\x5b\x23\x21\x04\x27\xe3\x86\xa0\x57\x55\x1a\ \x0a\xc7\x11\x9c\x8c\x62\x65\xed\x5c\x58\x2d\x26\x58\x2d\x26\xdb\ \xb9\xcb\x37\x6b\x82\x9d\x27\x5f\xc9\xc4\x4a\xa7\x05\xee\x43\xfb\ \x6b\xdc\x4e\xeb\x7d\x8f\x6d\x59\x02\x00\xb8\xd2\x35\x84\x13\xcd\ \xdd\x8a\xe6\xd3\x5a\x57\x5d\x44\x14\x04\x88\xa2\x00\xb3\x48\xe1\ \x30\x03\x94\x30\x30\xc6\x64\x2c\x19\x69\x15\x00\xcc\x22\x41\xa1\ \xc7\x8a\x27\x3f\xd6\x00\x6f\x81\x5b\x56\x86\x28\x28\x56\x55\x2c\ \x2b\x52\x9c\x7a\xa7\x07\x6d\x3d\x7e\x10\x00\x8f\x6e\x5c\x84\x39\ \x2e\xdb\xf2\xf2\x6d\xfb\xe7\xbf\x27\x01\x02\xfe\xcd\x5d\x5b\x96\ \xcc\x51\x2b\xec\xcb\xaf\xbd\x93\xe1\xd7\x74\x5a\xd0\x8a\x42\x7a\ \x19\x3d\x60\x4a\xa9\xe1\xac\xe5\x22\xce\x91\x65\xa3\xf8\xe4\xd6\ \x85\x8a\x12\x74\x16\xa5\x82\x16\x2f\x3f\x3f\xfa\x5b\x00\x80\xcd\ \x6a\xc2\x27\xb7\x2d\x9b\x43\x04\xfe\xcc\x5d\x09\xd4\xd7\xff\x93\ \x89\x70\x7c\x74\xe7\x86\x85\x04\x00\xae\x75\x0f\xa3\xbd\x77\xd4\ \x90\x41\xf4\x96\x10\x35\x22\x02\xa0\x03\x1d\x8e\x4b\x18\x0d\xc5\ \xd1\x71\x2b\x80\x9e\xc1\x10\x42\x53\x09\xa3\x9b\x00\x60\x8c\xa1\ \x28\xc7\x01\x4f\x96\xd5\xa0\x18\x7d\x16\xeb\xec\x1b\x43\x47\xef\ \x28\x08\x80\xed\x6b\xe7\x13\x0e\xf2\xc8\x86\x0d\xfb\x44\x3d\x66\ \xc3\xcd\x78\xe1\xd8\xaa\x9a\xf2\x42\x5a\x39\x37\x1b\x00\x70\xea\ \x1d\x9f\x92\xeb\x89\x21\x60\xef\x64\x11\x51\xa0\x88\x26\x19\x5a\ \xdb\x87\xd0\xdc\x36\x08\x7f\x20\x0a\x50\x19\x70\xb5\xd7\x83\x4f\ \x6d\x5e\x00\x87\xc5\x18\x72\x02\x21\xc8\xf3\x38\x30\x39\x95\x34\ \xe4\x13\x0e\xb9\x3e\x50\x4a\xd1\xd8\xda\x87\xf9\xa5\xb9\xa8\x2c\ \xc9\x46\x4d\x45\xbe\x70\xdd\x37\xbc\x02\xc0\xf9\x3b\x12\x00\xc8\ \x83\xab\x97\x96\xba\xd4\xbb\xcb\x1d\x43\x20\x6a\x0a\x54\xf2\xb6\ \x66\x81\x0c\x4b\x9c\x6e\xbd\x85\x96\x8e\x61\x4c\x4e\x25\xe5\xac\ \x24\x0a\x4a\x4f\x04\x8c\x86\x62\x90\x98\x0c\x0a\x86\xb2\x26\xff\ \x93\x76\x41\xb9\x42\x53\xce\x41\x29\x07\x15\x38\xae\xbd\x3b\xa2\ \x3d\xbf\x66\x59\xb9\xab\xdd\x37\xfc\xe0\xcc\x04\x08\x5d\xb3\xb4\ \xba\x98\x02\xc0\x64\x24\x8e\x81\xd1\x10\x44\x51\x90\xdd\x27\xa3\ \x28\xa9\x45\x4a\x25\xf1\x56\x4b\x5f\x46\x01\x4b\x57\xe5\xad\xf5\ \xa5\x70\x58\x44\x70\xce\x32\x48\x10\x04\x23\x72\x5d\xe1\x3a\x02\ \x9c\x73\x70\x2a\x13\x1e\x18\x9d\x44\x38\x9a\x84\xd3\x66\x42\x5d\ \x75\x11\x25\x94\xac\x9d\x31\x06\x08\xe7\x1f\x2a\x2b\xf6\x00\x00\ \xfa\x86\x82\x86\xb6\x40\xb5\x80\x6c\x05\xa3\x5b\x19\x5c\x49\x14\ \xb4\xe2\x66\x36\x09\xd8\x5c\x3f\x0f\x75\x15\x39\xa0\x24\x6d\x01\ \xce\x39\x08\xa5\xe8\xee\x9f\x40\x52\xe2\x5a\xc1\x4b\xc7\x1a\xd1\ \x62\x8e\x50\x82\x7e\x7f\x08\x00\x50\x56\xec\x01\x67\xbc\x6a\xc6\ \x18\xe0\xe0\x9e\x82\x6c\x27\x00\xc0\x1f\x9c\x4a\x83\xa7\x44\xae\ \x9a\x94\xde\x41\xd2\xc1\x2d\xea\x0a\x9c\x49\x14\xb0\x7d\x65\x19\ \x6a\xe7\xcd\x81\x40\xe5\x82\xc5\x95\xde\x87\x10\x82\xe0\x14\xc3\ \x09\xc5\x6a\x9c\x73\x08\x02\x01\xe7\x14\x8c\x2a\xee\x43\x39\x08\ \xe3\xa0\x84\x60\x6c\x22\x0a\x00\xc8\xf3\xd8\xc1\x00\xcf\x8c\x04\ \xc0\x09\xb5\x59\xe4\xf4\x19\x4f\xa4\xd2\xe0\x67\xb0\x84\x6a\x85\ \xcc\xa0\x16\x05\x8a\x87\x56\x95\x61\xa1\xd7\x0d\x0a\x09\x4a\x59\ \xd0\xc0\x87\x62\x0c\x07\x1a\xdf\x45\x2c\x29\x41\xa0\x54\x73\x17\ \x19\xb8\x6e\x7d\x42\x40\x08\x45\x2c\x91\x92\xd3\xa9\xc5\x04\xc2\ \xb9\x30\x33\x01\x5d\x73\xa1\xe5\x73\x18\xc1\x1b\xf2\xbc\xce\x42\ \x69\xf7\xa2\x58\x54\x91\x83\xf9\x25\x59\x20\x5c\x82\xc1\xe3\x09\ \x41\x30\xca\x70\xf0\xac\x0f\xe3\xe1\x38\x04\xaa\x68\x5c\xa0\x4a\ \xe0\x32\xe3\x3b\xd4\x16\xfd\x2e\xdd\x8f\xb1\x90\x11\xce\x62\xf1\ \x24\x00\xc0\x6a\x16\xe5\x7e\x9e\xc0\xd0\xdf\x4f\xb3\x48\xa6\x4b\ \x09\x14\x2b\xab\x0b\x20\x40\x02\x63\x4c\x73\x1b\x00\x08\xc7\x81\ \xd7\x2f\xf4\x21\x14\x4d\xe9\x7c\x9e\x4e\x03\x6d\x98\x27\x88\x5c\ \xc8\x00\xb9\x9f\xe2\x04\xd2\xcc\x41\x0c\x12\x18\x1e\x0b\x2b\xfe\ \xe6\x50\xd5\xa6\x69\x2f\x7d\x9d\x41\x4a\x67\x11\x81\x12\x38\x6d\ \x22\x24\x49\x52\x9a\x35\xb9\xb5\x60\x9c\xe0\x42\xc7\x28\x22\xb1\ \x54\x7a\xf8\xa1\xc6\xd9\x41\xb5\xb8\xa6\x38\x10\x00\x04\xd9\x59\ \x36\x00\xc0\x48\x20\x02\x0a\x12\x98\x91\x00\x07\xba\x6e\x0e\x06\ \x01\x00\xde\x02\xb7\xb2\xa0\xde\xad\x90\x1e\x52\x94\x17\xaa\x5f\ \xaa\x00\x44\xa5\x2a\x27\x98\x88\x38\x13\x90\xe0\x22\x12\x5c\x04\ \xa7\x02\x62\x49\x49\x76\x17\x32\x5d\xcb\x46\xf0\xf2\xba\x32\x09\ \x60\x6e\xbe\x4b\xcb\x8c\x94\x92\xce\xbb\x04\x31\x7b\xfb\x4a\xe7\ \xc0\xba\x4d\x2b\x2a\xa9\xcb\x6e\xc6\xdc\xfc\x2c\x0c\x8f\x47\xa6\ \x05\x89\xae\x23\x00\x81\x4e\x5b\x04\x90\x18\xc7\xbf\x9e\xe8\x82\ \xd9\x2c\xc0\x24\x0a\x10\x4d\x22\x4c\x82\x00\x89\x31\x4c\x45\x13\ \xca\xf3\x44\xa7\x1c\x92\xf6\xec\x3b\x34\xf7\x25\xf9\x2e\xd8\xad\ \x66\x80\x73\x5c\xe9\x1c\x64\x8c\x4b\x67\x67\x24\x40\x18\x3d\x7e\ \xee\x4a\xef\x53\x7b\xb0\xd6\x0d\x00\x4b\xab\x0b\x71\xbc\xe9\xdd\ \x69\x8b\x66\x14\x54\x83\x09\x05\x0a\x7c\x6e\x4b\x15\xa8\xe6\x66\ \xe9\x00\x3e\xda\x32\x80\xc1\xb1\x88\x36\x56\x4e\xab\xca\x77\x38\ \x16\x95\xa7\x07\xfe\xb7\x5b\x7d\x93\x12\x27\x27\x66\x74\x21\x8f\ \xdf\xd3\xdc\xd6\x3d\x22\xf9\xfa\xc7\x01\x00\xeb\x96\x95\x19\x57\ \xe7\xba\x1b\xae\x9f\x71\x95\xea\x09\x2e\xb7\x3f\x9c\x81\x25\x22\ \x90\xe2\x61\xa4\x62\x61\x48\xf1\x08\xa4\x54\x12\x02\x81\xae\x1e\ \xc0\x10\xe0\xe0\x30\x5c\xab\x55\x79\xf5\xe2\x12\x00\x40\xcf\x60\ \x10\xd7\xbb\xfc\x52\xaf\xbd\xa2\x79\x46\x02\x2d\x2d\x5f\x4e\x12\ \xce\x7f\x75\xa4\xb1\x83\x73\x00\x35\x65\xb9\x58\x50\x96\x9b\xde\ \x49\xc8\x00\xab\x02\xd0\xdf\x33\xae\xdf\x3a\xe1\x5a\x20\x73\x0e\ \x79\xf2\x52\xa6\x2f\xce\x99\x61\xa8\xe7\x9c\x6b\x24\xd4\xdd\x8b\ \x6a\x6f\x36\xd4\xc6\xf2\xcd\x73\x9d\x9c\x10\x7e\x10\x07\x76\x49\ \x77\x9d\x07\x38\x23\xfb\x5f\x3d\x7e\x39\x18\x8d\xc9\xe9\xf4\xd3\ \x1f\xa9\x33\xf6\x28\xaa\xb0\xf4\x67\x4c\x01\xc1\x18\x07\x93\x64\ \x96\x6a\xf6\xd1\xb4\xcc\x39\x24\x49\x1e\x19\x25\xc6\xe5\xe6\x8e\ \xa5\xc1\x33\x95\xbc\x6a\x09\xce\xb1\x6b\xd3\x42\x79\xf7\x2e\x96\ \xc4\x7f\x1e\x6d\x09\x72\x90\xe7\xde\x73\xa0\xe9\x39\xf6\x97\x1d\ \x13\x93\xd1\x4b\xff\x73\xba\x0d\x50\xac\xf0\xe1\xfa\x0a\x23\xf8\ \x4c\xd0\x9a\x30\x30\xce\x0c\x16\x48\xa7\x51\x0e\x49\x92\x90\x92\ \x24\x48\x92\x04\x26\x31\xc5\x22\xc6\x36\x43\x5d\x77\x6d\xdd\x3c\ \x54\xce\x95\xbb\x86\x43\x8d\xed\x7c\x22\x14\x6d\xf2\xbd\xf1\xcd\ \xae\xf7\x24\x00\x00\x49\x89\x7e\xf5\xa5\x57\xcf\x05\xc6\x43\x72\ \x0f\xf2\x85\x1d\x4b\x51\x9c\xeb\x4c\xbb\x88\xf6\x32\xa6\x01\x94\ \x18\x83\x24\x71\x24\x93\x12\x00\x02\xd1\xea\x32\x88\x20\x8a\x88\ \xc6\x53\x48\xa5\x24\xd9\x0a\xaa\x30\x96\x76\x2d\x45\x8a\x72\x1c\ \x78\x7c\xb3\xac\xfd\x40\x28\x8a\xbf\x7f\xe5\x4c\x20\x89\xc4\x93\ \xef\x7b\x5b\x25\xd4\xfd\xeb\x80\xa3\x6c\x63\x76\x30\x1c\x6d\xd8\ \xb8\xbc\x52\x14\x05\x8a\xba\xaa\x02\x9c\xbf\x7a\x1b\x89\x94\xae\ \xdc\xc3\x38\xef\x12\x00\x8c\x03\xcd\xed\xc3\x68\x6e\x1f\xc6\xc5\ \x0e\x3f\x9a\x3b\x46\x70\xb1\xdd\x8f\xa6\x1b\x23\x08\x45\xe2\x8a\ \xfb\xa4\xc1\xab\x96\x50\x5d\xcb\x66\x11\xb1\x7b\xd7\x72\x6d\x13\ \xf8\x07\x3f\x3b\x13\x6b\xed\xb8\xfd\x62\xcf\xe1\x6f\x1f\x9c\xd5\ \xbe\x50\x71\xdd\x03\x8d\xd7\x3a\x02\x8f\x7b\x8b\x3c\x79\xf3\x4b\ \x73\xe1\xb4\x5b\x50\x5b\x91\x87\x96\x1b\x83\x48\xa4\x98\xb6\x97\ \xa3\xe6\x73\xb5\x0e\xe8\xd3\x2c\xd3\xc5\x8b\xea\x62\xaa\xa5\x18\ \x63\x06\x4b\x30\xc6\xe1\xb0\x99\xb0\xfb\xb1\x06\x14\xe5\xc8\x1d\ \xf1\x1b\x67\x3b\xf8\x0b\xbf\x38\xdb\x31\x67\xc0\xf3\xa7\x83\x83\ \x6f\xb0\x59\x11\xf0\xb7\x9d\x96\xdc\x95\x9b\x8e\x9c\x6d\xed\xf9\ \xcc\x7d\x0b\xbd\xb6\x92\x3c\x17\x3c\x59\x36\xd4\x2f\x28\xc2\x55\ \xdf\x08\xc2\x53\x49\xad\x2a\xa7\x77\x44\x88\xec\xff\x86\xa0\x87\ \xe6\xe7\x92\x12\x23\x9a\xdb\x48\x1c\x12\x93\x20\x31\x86\x02\x8f\ \x1d\x5f\xff\x78\x3d\x0a\x73\x9c\xe0\x00\x2e\x5e\xbf\x8d\x3d\xcf\ \x1d\x1a\x93\x18\x5b\xdf\x76\x7a\x77\x60\xd6\x5b\x8b\x00\x10\xec\ \x7e\x2b\xe8\xac\x58\x7f\xe2\xe4\x85\xee\x4f\x2c\xab\x99\x6b\x2d\ \xc9\xcb\x82\xd3\x6e\xc6\xba\xba\x79\x98\x8c\xc4\xd1\x3b\x34\x91\ \x26\x60\xdc\x02\xcd\x48\xa3\x8a\x28\x31\x23\x6b\x9d\x6b\xbe\x7f\ \x7f\x6d\x31\xbe\xb8\xa3\x0e\x59\x0e\x0b\x38\x80\xdf\xb4\x0f\xe0\ \x89\x67\x0f\x4e\xc4\x62\xc9\x0d\xbe\x23\x7f\xd5\x75\x37\x8c\xc2\ \x7b\xed\x4e\x07\xbb\x4e\x0d\xd9\x4b\x56\x9f\x39\x7a\xa1\xeb\x51\ \x6f\x91\xc7\x56\x5d\x9a\x0b\x51\xa0\x58\x5a\x5d\x88\x05\x65\x39\ \x18\x1a\x0b\x63\x6c\x22\x66\x28\xd3\xd3\xeb\x80\x2e\x4b\xe9\x5c\ \xa7\xbc\xc8\x8d\xcf\x6e\x5b\x84\x75\x75\x5e\x6d\xac\x3c\xdc\xd8\ \x81\x6f\xfc\xf0\xf5\x40\x60\xbc\x7f\xe7\xad\x93\xcf\xb6\x02\x60\ \xf7\xb2\xbd\x4e\x01\xd8\x00\xd8\xf2\x6a\x1f\x59\xe0\x2a\x6b\x78\ \xe5\xd1\x2d\xcb\x8a\x9f\xfe\xb3\xb5\x26\x8f\xd2\x21\x02\x80\xaf\ \x3f\x80\x8b\x37\x06\xd0\xde\x3b\x0e\x7f\x30\xaa\x75\x9a\x24\xa3\ \x6f\x02\x80\x7c\x8f\x1d\xd5\xde\x6c\x34\xcc\x2f\x44\x79\x91\x3b\ \xad\xa8\xc9\x18\x9e\xff\x8f\xc6\xc4\x7f\x9f\xb8\x3c\x3c\xfe\xee\ \xf9\xcf\x06\x3b\x8e\x74\x01\x88\x01\x88\x2a\xc2\x66\x4b\x80\x00\ \xb0\x2b\x04\xac\x00\x6c\x26\x7b\xae\xbb\x78\xd5\x5f\x7c\x2b\x3b\ \xaf\x60\xdb\xee\x4f\xaf\xb7\xed\x5c\x5f\x03\x75\x82\x53\x17\x8a\ \xc4\x92\x18\x1e\x8f\x20\x10\x8e\x21\x16\x97\x40\x88\x3c\x5b\x78\ \x5c\x56\xe4\x7b\xec\x70\x64\xfc\x24\x15\x4d\xa4\x70\xa8\xb1\x1d\ \x3f\xfa\xb7\xff\x8d\x8e\x8d\x0c\x1c\x1b\x6c\xfe\x97\xe7\x53\xd1\ \x40\x48\x01\x1d\xd3\x9d\xa7\xee\xd4\x32\xdd\x8d\x80\xa8\x6a\x5f\ \x25\xa0\x5e\xbb\x3f\xb4\x61\x91\xa7\x72\xdd\x9e\x9c\xec\xec\x8a\ \xcf\x7c\x74\xa5\x65\xfb\x03\xd5\xc4\x5b\xe0\x9e\xd5\x6f\x56\xb7\ \x86\x43\x78\xf3\x42\x27\xff\xf7\xd7\x9b\xe2\x63\xfe\xd1\x9e\xb1\ \xce\x53\x2f\x85\x7a\xcf\xdf\xd0\x69\x5c\x05\xae\xb7\x42\x6a\xb6\ \x16\xd0\x83\xd7\x9f\xad\x00\xac\x59\x65\x6b\x16\xba\xcb\x57\x7c\ \xcc\x64\xcf\x5d\xb1\xb8\xba\x18\x1b\x1a\xaa\xac\x4b\xaa\x8b\x88\ \xb7\xc0\x8d\x5c\xb7\x5d\xfb\xc5\x25\x96\x48\x61\x34\x38\x85\xdb\ \x23\x21\x5c\xe9\x1a\xe4\x6f\x35\xb5\xc7\xaf\x77\x0f\x21\x15\xf6\ \x5f\x0a\xdc\x6c\x3a\x3c\xd9\x7b\xe1\x46\x06\xd8\xcc\x6b\xf5\xcc\ \x67\x1b\x03\x44\x0f\x18\x80\xe5\x0e\x67\x8b\x20\x58\x6c\xce\xf2\ \xfb\x6b\x9d\xf9\xf3\xeb\x4d\x8e\x9c\x1a\x6a\xb2\x16\x81\x08\x0e\ \x70\x65\x6b\x8e\x30\xce\x39\x8b\x20\x19\x1b\x8a\x87\xfd\xed\xe1\ \x91\xf6\xcb\x91\x9b\x17\x6e\x48\x52\x62\x0a\x40\x42\x91\x18\x80\ \xb8\x22\xea\x75\x54\x77\xcf\xef\xe5\x57\x4a\xaa\x00\x36\xab\xa0\ \x95\x6b\x33\x00\x93\x4e\x44\x45\xa8\x92\xe1\x32\x92\x2b\x24\x25\ \x18\x53\x8a\x24\x75\xa2\x12\x51\x49\xa8\xa4\xee\x29\x0b\xcd\x44\ \x26\x13\xbc\x0a\x5c\x50\x84\xea\xfa\x2c\xa2\xd3\x1e\x53\x44\x52\ \x44\x25\x91\xca\x20\xc1\xfe\xa0\xff\x57\x42\x59\x87\xea\xc0\x0b\ \xba\xcf\xa0\x03\xaf\xb7\x82\xa4\xfb\xec\x77\x3e\xfe\x0f\xdd\xa0\ \xfa\x18\x83\x95\x59\xfe\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x03\x2c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ \x67\x9b\xee\x3c\x1a\x00\x00\x02\xbe\x49\x44\x41\x54\x38\x4f\x6d\ \x53\x5d\x48\x53\x61\x18\xb6\x48\xa8\xcc\x12\xba\xa9\xc8\xab\xba\ \xa9\x6e\xd5\xa9\xd9\x45\x44\x74\x91\xfd\x80\x45\x81\x44\x75\xa1\ \x6e\x9a\x50\x52\xa9\x11\x16\x65\x24\x51\x69\x98\x94\x94\xa4\xb1\ \x9d\xcd\xd4\x9c\x65\x8e\xa1\xf9\x87\x65\x33\xb5\xda\x14\x67\xfe\ \x24\xba\xcd\xe6\x9c\x58\xf3\x6c\x35\xb7\xf3\xf6\x7c\xc7\x9d\x31\ \x46\x17\x0f\x7c\xe7\xfd\x79\xde\xe7\x7d\xbe\xef\x44\x10\x51\x84\ \x84\xb8\x0c\x65\x6c\xb2\x42\xfd\x22\x39\x5b\x3d\x99\x90\xa5\x72\ \x27\x29\xd4\x56\x9c\xdb\x10\x4f\x03\x22\xc3\x6a\x0b\x81\x98\x60\ \x20\x3e\x43\x79\x3c\x51\xce\xb9\xe5\x65\x9d\xde\x52\xad\x89\x34\ \xdd\x3f\x48\xd3\x35\x49\xe5\x4d\x43\x74\xf6\xae\x7e\x49\x96\xa5\ \x5a\x44\xc3\x69\xb1\x36\x53\x99\x89\x33\x01\x9b\x24\xb6\x5d\x49\ \x0a\x8e\xbf\xdf\x60\xa2\xaa\xf7\xe3\x54\xd3\x3e\x41\xcd\x9f\xad\ \xd4\x61\xb2\x53\xff\xc4\x02\x0d\x4f\x2f\x52\x87\x71\x96\x0e\xe7\ \x37\xf2\x50\xd6\x79\xe0\x52\x9d\x07\x24\x3e\xf4\x6d\x14\x09\x20\ \xf5\x99\xa2\xac\xd3\x9f\xf7\xf4\x03\xa5\xe4\x68\x08\x49\x82\x74\ \xdf\x99\x3b\x3a\x57\x4d\xeb\xa8\x60\xb6\xfc\xa2\x31\xdb\x6f\x9a\ \xf8\xe9\xa2\x12\xf5\xa0\xff\x93\x79\x8e\xe5\xff\x82\x20\x5a\x24\ \x80\x74\xd7\xfe\x8b\x75\x94\x72\xa1\x56\x40\x82\x47\xe2\x0a\xb0\ \x15\x38\x98\xa8\xe0\x06\xce\x97\xe8\xf9\x81\x31\x07\x4d\x3b\x78\ \xb2\x2d\xb8\x45\xa0\xce\x8b\x7c\x94\xb4\x3f\x6b\x5c\x96\x3f\xea\ \xad\xc2\xae\x36\x24\x76\x84\x19\x76\x8e\xa9\xea\x1d\xb1\xd3\x47\ \xb3\x83\x66\xe6\x79\x10\x70\x8c\x60\xbd\x54\xe0\x4b\x2d\x7c\x5b\ \x74\xb5\xea\xcb\x9e\x53\xb7\x5b\x37\xe3\x7b\x75\x48\xf3\x1a\x28\ \xec\x29\xad\xff\xea\x9d\xc5\x64\xb6\xca\x8a\x02\x6e\x19\xb9\x75\ \x52\x51\x74\xe8\xc4\xb0\xe9\xd5\x00\x1d\xba\xdc\xf0\x27\x35\xbf\ \xd1\x23\xa2\xa0\xd1\xc3\x62\xc0\x5a\xa9\x88\x19\x22\x04\xe0\x67\ \x8a\x00\x36\x41\x0f\xc4\x02\x5b\xfe\x83\xed\xac\x37\xb8\x82\xd5\ \xc9\x93\xd5\xe9\x26\x0b\xf6\x7b\xae\x1b\xf1\xcb\xe4\xdc\x14\xe2\ \x31\xe1\x8a\x8a\x94\xc3\xdb\xf2\x2a\x07\x92\x02\x43\x36\x88\x41\ \x76\xa7\x6c\xaf\x9e\x11\x07\x19\x46\xe7\x98\x34\xa6\x24\x3b\x6c\ \x95\xa8\xf8\x4c\x95\xfd\x42\x85\xe1\x41\xda\x0d\x5d\x77\xdc\xca\ \x0a\x91\x62\x12\xce\xfb\x19\x01\x73\xd7\x02\x25\x5d\x46\x1b\x1d\ \x29\xd4\xf2\xb8\xc2\x3e\x14\x25\x04\x08\xb2\x53\x72\x6a\x9d\xc7\ \xae\xb7\xb0\x2b\x14\x64\x72\x95\x37\xb8\x02\x5c\xf6\xb3\xc7\x52\ \xf1\x66\x48\x98\xb2\x2f\x89\x0f\xa6\x7f\xdc\x49\xa5\x0d\x46\x21\ \xb5\x40\xcb\x63\xf2\x32\x5e\x2a\x01\xc2\xbe\xdc\x5a\x42\x8c\x91\ \x68\x82\x04\x50\x20\xa4\x17\xeb\x3c\x78\xa6\x43\x47\xaf\x35\x2d\ \x35\xf7\xcd\x90\xe1\xfb\x3c\xb5\x7d\x9b\x25\xad\x61\x86\xaa\xdb\ \x27\xa9\xa4\xce\x48\xb7\x54\x83\xf4\xf0\xb5\x89\x30\x90\x3d\xb6\ \xdd\xa1\x26\x12\x9a\xcb\x03\xe7\x13\xb2\x2c\x6e\xe1\xe4\xcd\x77\ \xae\x62\x6e\x90\x9e\xb4\x98\xa9\x52\x3f\x46\xf7\xea\x4d\x94\xfb\ \xb8\xdb\xc7\x7e\x38\x78\x96\x2e\x79\x23\x11\xbc\x04\x56\x85\x18\ \x16\x09\xa4\x41\x66\x3b\x7c\xb0\xa3\xc1\x8b\xb3\x65\x6f\x8e\xfa\ \x15\xe2\x3b\xa5\x3a\x86\x7f\x41\x5a\x86\x0e\x33\x52\x87\xaf\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0a\xce\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\ \x14\x2c\x24\x65\xec\x31\xab\x00\x00\x0a\x4e\x49\x44\x41\x54\x68\ \xde\xed\x99\xdb\x6f\x14\xd7\x1d\xc7\x3f\x67\x66\xf6\xea\xb5\xd7\ \xbb\xc6\xc6\x18\x63\xb0\x03\xe1\xb6\x26\x10\xae\xb9\x71\x69\x2a\ \x51\x02\x8d\xc8\x85\xc8\x11\x69\x78\xa0\x4a\x1f\x4a\x83\x54\xa9\ \x4a\xd5\x3f\xa0\x8d\x14\xa9\x6a\x1e\x28\x51\x92\x26\x52\xa2\x34\ \x2f\x41\x40\x42\xa1\x44\xe0\x20\x37\x15\x89\xc2\x25\xc0\x3a\x86\ \x80\x0d\x32\x17\x83\xed\xb5\xbd\xde\xdd\xd9\xdb\xcc\x9c\x3e\xd8\ \xbb\x5a\xd6\xbb\xf6\xda\xa6\x6f\x39\xd2\xd1\xfc\xe6\xec\x99\x3d\ \xbf\xef\xf9\x7e\x7f\xbf\x73\xe6\x0c\xfc\x54\x7e\x2a\xd3\x2a\xa2\ \xd8\x0f\xfb\xf7\xef\xdf\x68\xb7\xdb\xdf\x05\x2a\x14\x45\x41\xd3\ \x34\x84\x18\xe9\x6e\x59\x16\xa6\x69\x62\x59\x16\x52\xca\xac\x9d\ \xb9\xe6\xd6\xdc\x36\xd3\x34\xb3\xfd\x33\x76\xa6\xbd\xd8\xb3\x52\ \x4a\x3d\x91\x48\xbc\xfe\xd1\x47\x1f\x1d\x29\xe4\xa7\x56\x0c\x80\ \xa6\x69\xff\x78\xee\xb9\xe7\x9a\x2a\x2b\x2b\x31\x4d\xb3\x60\x1f\ \x29\xe5\xb4\xdb\xc7\x6b\x13\x42\x60\x18\x06\x7b\xf7\xee\xfd\x18\ \xf0\x4d\x0a\x80\x94\xb2\xd2\xed\x76\xd3\xd3\xd3\x43\x2a\x95\x42\ \x08\x81\x65\x59\xb8\x5c\xae\xec\x7d\x96\xc6\x22\x76\xa1\xfb\x62\ \xbf\x15\x02\x22\x84\xc0\xef\xf7\x93\x4a\xa5\x2a\x8b\x4e\xf4\x38\ \x00\xb2\x14\x17\xb2\xa5\x94\x59\x07\x8a\xd9\x85\xee\x4b\x61\x2a\ \x17\xc0\x44\x7d\xb4\x09\x83\x64\x74\xf0\x62\x33\x5b\x2a\x13\x13\ \xb1\x31\x59\x70\x25\x31\x30\x91\x2c\x26\x02\x31\x15\x20\xb9\xfa\ \x2f\x05\xb0\x36\x99\x3f\xca\xb7\x01\xae\x5c\xb9\x32\x29\xad\x4f\ \x54\x16\x2f\x5e\x3c\x29\x36\x8a\x02\xc8\xcf\x3c\xc5\x40\x2c\x5a\ \xb4\xa8\x24\x26\x26\x0b\xa4\xd4\x67\x8a\x02\xb0\x2c\x6b\x42\xc9\ \x08\x21\xb8\x7c\xf9\xf2\xa4\x06\x9c\xe8\xf7\x25\x4b\x96\xdc\xc7\ \xfe\x94\x19\xc8\x64\x9a\x89\x40\xe4\x52\x3e\x51\xc0\x4f\x76\xd6\ \xff\x2f\x31\x90\x7f\xed\xe8\xe8\x28\x3a\xd0\x54\x24\xb3\x74\xe9\ \xd2\x07\x13\x03\xb9\x12\x1a\x8f\x81\x25\x4b\x96\x4c\x2a\x9d\x96\ \x02\x2a\x5f\x42\xd3\x8a\x81\x42\xce\xe4\x33\x30\x91\x73\xa5\x32\ \x21\xa5\x24\x10\x08\x8c\x19\x67\xda\x0c\x14\xca\xc9\xc5\x18\x98\ \xee\xec\x17\x92\xcd\x94\x83\x38\x33\xe8\xe0\xe0\x20\x1e\x8f\x07\ \x55\x55\xc7\x38\xfb\xc3\x0f\x3f\x4c\x3b\x68\x73\x4b\x20\x10\x18\ \x33\x69\xd3\x5e\x07\x74\x5d\xc7\xeb\xf5\x16\x9c\xe9\x4c\xd0\x4d\ \x65\x6b\xf1\x20\x4a\x49\x12\xaa\xab\xab\xc3\xed\x76\x13\x8b\xc5\ \x0a\x32\x30\x9e\x93\xba\xae\x33\x38\x38\x48\x38\x1c\x46\x08\x81\ \xdd\x6e\x27\x12\x89\xe0\x74\x3a\xf1\xf9\x7c\xf8\xfd\x7e\xec\x76\ \x7b\xb6\x7f\x73\x73\x73\xc1\x0d\xe2\xb4\x00\xa8\xaa\x4a\x32\x99\ \x2c\x98\x52\x8b\x31\xd0\xdf\xdf\xcf\x99\x33\x67\x68\x6a\x6a\x62\ \xed\xda\xb5\xf8\x7c\xbe\xec\x6e\x56\x55\x55\xd2\xe9\x34\xb7\x6f\ \xdf\xe6\xf4\xe9\xd3\x78\x3c\x1e\x56\xad\x5a\x85\xdb\xed\xbe\xcf\ \xf9\x69\x2f\x64\xc5\x74\x9d\xeb\x6c\x7b\x7b\xfb\x98\x99\xef\xe9\ \xe9\xa1\xbc\xbc\x9c\x1d\x3b\x76\x60\x18\x06\x1d\xd7\xef\xf2\xf1\ \x97\x1d\xdc\x1d\x48\xa0\xa7\x4c\xaa\x2a\xec\x3c\xd2\xe8\xe3\xb1\ \x40\x3d\x2d\x2d\x2d\xdc\xba\x75\x8b\xcf\x3e\xfb\x8c\xc6\xc6\x46\ \x9e\x7a\xea\xa9\x31\xdb\xf1\x69\x31\x30\x91\xa6\x73\x83\x0e\xe0\ \xec\xd9\xb3\xcc\x9b\x37\x8f\x55\xab\x56\xf1\x5d\xf0\x06\xfb\xbe\ \xb8\xcc\xed\x50\x9c\xa6\x7a\x3f\x35\xfe\x32\x2a\x3d\x2a\x3d\x43\ \x71\xce\xb7\x76\xf3\xd7\x43\x57\x68\x59\x3f\x87\x5f\x6d\x5e\xc6\ \xee\xdd\xbb\xf9\xe4\x93\x4f\xe8\xee\xee\x66\xee\xdc\xb9\xd3\x97\ \x50\x6e\x10\x8f\x07\x22\x18\x0c\x66\xdb\x42\xa1\x10\x1e\x8f\x87\ \x95\x2b\x57\x72\xe0\xe4\x25\xf6\x1d\xf9\x91\x75\x81\xd9\xfc\xfa\ \xd9\xe5\x34\xd4\x94\xa3\x08\x41\xda\xb4\x88\x27\x0d\x6e\xf5\x47\ \x38\xf7\x63\x2f\x47\xbe\xbb\xc3\xf9\xce\x21\xfe\xbc\x7b\x1d\x2d\ \x2d\x2d\x7c\xf0\xc1\x07\x3c\xff\xfc\xf3\x78\xbd\xde\x92\x00\x28\ \x93\x5d\x89\xf3\xed\x40\x20\x40\x20\x10\x60\xf1\xe2\xc5\xf4\xf4\ \xf4\xb0\x69\xd3\x26\xfe\x73\xee\x1a\xfb\x8f\x5e\x65\xd7\xb6\x15\ \xfc\xee\x85\x47\x69\x6e\xaa\xa1\xa2\xcc\x89\xc3\x61\xc3\x61\xb7\ \x53\xe6\x72\xd2\x58\xe7\xe7\x99\xc7\x16\xb0\x73\xcb\x72\x62\x69\ \x85\xbf\xfc\xf3\x3b\x34\x4d\x63\xf3\xe6\xcd\x7c\xf3\xcd\x37\xf7\ \x8d\x91\xef\x4b\x49\x00\x0a\x69\xaf\x10\x88\xf6\xf6\x76\x82\xc1\ \x20\x5f\x7d\xf5\x15\xeb\xd7\xaf\x67\x68\x28\xcc\xdf\x0e\x76\xf0\ \xf3\xd5\x73\x79\x62\x49\x35\x02\x2b\x6f\x5f\x05\x42\x19\xb1\x35\ \x55\x30\xcb\xef\x62\xc3\xaa\x26\xae\xde\x4d\xd0\x7a\xe6\x1a\x0b\ \x16\x2c\x40\xd7\x75\xfa\xfa\xfa\xa6\xc7\x40\x31\x09\xe5\x03\x0a\ \x04\x02\x34\x37\x37\x13\x89\x44\x98\x33\x67\x0e\xc7\xbe\xbd\x81\ \xc7\xe3\x62\xc3\xa3\x8d\x38\x1d\x76\x10\x0a\x86\x69\x61\x98\x16\ \xd6\xa8\x23\x8a\x00\x45\x08\x14\x65\x44\x52\x9a\xaa\xf0\xd8\xb2\ \xb9\x7c\xf8\x65\x17\xba\xae\xb3\x62\xc5\x0a\xae\x5e\xbd\x5a\xd2\ \x4a\x3c\x6d\x09\x09\x21\x88\x44\x22\xb8\xdd\x6e\x4c\xd3\xa4\xf5\ \xe2\x3d\x16\x34\x54\xe3\xf3\xd8\x31\x4c\x0b\xd3\x92\x18\x96\xc4\ \xb4\x24\x96\x25\x41\x4a\xa4\x04\x81\x44\x11\x82\x44\xca\xc4\x61\ \x53\x98\x39\xc3\xc3\x90\x6e\xd2\x75\xab\x9f\xda\xda\x5a\x6e\xdc\ \xb8\xf1\x60\x63\x60\x3c\x10\x43\x43\x43\x94\x97\x97\x93\x4a\xa5\ \xe8\xea\x89\x32\xa7\xb6\x02\x24\x98\x96\xc4\x34\x25\xa6\x35\x32\ \xfb\x52\x4a\x24\x8c\xc8\x48\x40\x22\x65\x62\x59\x12\x9b\x2a\xb0\ \xab\x0a\x33\xfd\x1e\x3a\xba\x07\xd1\x34\x8d\x54\x2a\x45\x3a\x9d\ \x7e\x30\xbb\xd1\x2b\x57\xae\x30\x6b\xd6\x2c\x3c\x1e\xcf\x18\x10\ \x97\x2e\x5d\xa2\xbf\xbf\x9f\xb2\xb2\x32\x0c\xc3\x20\x96\x34\x48\ \xc6\x75\x22\x31\x1d\x9b\x3a\xa2\x73\x55\x8c\xc8\x06\x46\x40\x98\ \x96\x24\x91\x34\xb8\x76\xab\x9f\x44\xda\xc2\x90\x02\xc3\x02\x21\ \x0c\xc2\xb1\x34\xa6\x69\xe2\x70\x38\xd0\x75\x3d\xbb\xb8\x4d\x09\ \x40\x86\xba\xba\xba\x3a\xaa\xaa\xaa\x48\x24\x12\x63\xfa\x35\x37\ \x37\xd3\xd9\xd9\x49\x28\x14\x42\xd3\x34\x5c\x0e\x0d\xc5\xe6\xc4\ \x66\x77\xe0\xb0\x29\xd8\xd4\x91\xaa\xaa\x23\xba\x17\x02\x0c\x43\ \x92\x92\x09\xea\x67\xd7\x91\x32\x25\x89\x94\x49\xd2\x90\x28\x1d\ \x03\x78\x5c\x1a\xe9\x74\x3a\xbb\x62\x3f\x90\xbd\x50\x45\x45\x05\ \x86\x61\x14\x94\x4f\x30\x18\x64\x78\x78\x98\x54\x2a\x85\xdd\x6e\ \x67\x76\x95\x8b\xee\x3b\x7d\xcc\xf4\x40\xb5\xd7\x89\xaa\x80\xa6\ \x8c\xb0\x80\xb4\x88\xea\x71\x06\x87\xa3\xa4\x0d\x89\x21\x15\xd2\ \x16\xa4\x2d\x48\x99\xd0\x1b\x8a\x30\x6f\x66\x03\x00\xb1\x58\x8c\ \xb2\xb2\xb2\xa9\x03\x28\x76\x1e\x5a\x88\x01\xc3\x30\xf8\xf4\xd3\ \x4f\xb1\xdb\xed\xac\x5f\x5a\xcd\xb9\x1b\x31\x52\xc2\xc1\x70\x5a\ \xc3\xe3\xd0\x50\x34\x81\xaa\x2a\xd8\x54\x41\x6d\x85\x97\x9a\x99\ \x90\x34\x2c\x12\x29\x93\x44\xda\x22\x9e\x32\xb9\xd3\xaf\xa3\x08\ \x78\x78\x8e\x9f\x9e\x9e\x1e\x7c\x3e\xdf\xf4\x18\x28\x76\x56\x99\ \x6f\x5f\xba\x74\x09\x80\xb2\xb2\x32\xfa\xfb\xfb\x79\x61\xfd\x7c\ \x0e\x7f\x7b\x8a\x1b\xdd\xf7\xf0\x79\x54\xec\xaa\xc4\xa6\x80\xa6\ \x64\xae\x20\x01\x43\x0a\xd2\xe6\xc8\xec\xa7\x4d\xc1\xbf\xcf\xdc\ \xe1\x95\x4d\x73\x71\x38\x1c\x7c\xff\xfd\xf7\xcc\x9f\x3f\xff\xc1\ \xbc\x52\x96\xc2\x80\x10\x82\x19\x33\x66\xf0\xf5\xd7\x5f\xd3\xd2\ \xd2\xc2\x6f\x7e\xf1\x30\xef\x1e\xef\xe4\x95\x67\x96\x51\x55\xee\ \xc0\x69\x53\x71\xd8\x54\x6c\xaa\xc0\xa6\x29\xc0\x48\xfe\x4f\x9b\ \x92\x44\xda\xe4\xd8\xe9\x2e\xdc\x76\x8d\x5f\x3e\xb9\x90\xde\xde\ \x7b\x5c\xbc\x78\x91\xed\xdb\xb7\x4f\xef\x7d\xa0\x14\x09\x65\xb2\ \x50\xc6\x8e\xc7\xe3\xb4\xb7\xb7\xb3\x7d\x53\x33\x77\x06\xe2\x7c\ \x70\xf8\x1c\x1b\x1f\xa9\xa5\xa1\xda\x85\x2a\x24\x9a\x32\x92\x3e\ \xa5\x04\x89\x20\x9a\x34\x69\xbb\xd8\x47\x3c\x69\xb0\x6f\xef\x06\ \x54\x55\xe1\xe4\xc9\x93\x84\xc3\x61\xae\x5f\xbf\xce\xc2\x85\x0b\ \xa7\xc7\x40\x29\x07\xac\x19\x06\x84\x10\x34\x35\x35\x71\xe0\xc0\ \x01\x2a\x2b\x2b\xf9\xed\x8b\x6b\x68\x98\xe9\xe1\xef\x5f\x5c\xa6\ \xdd\xe3\x62\x69\x53\x35\xb3\x66\x94\x63\x57\x15\xc2\x7a\x92\x6b\ \x37\x07\xb8\x78\xb5\x97\x27\x97\xce\xe0\x0f\x2d\x6b\x70\x39\x6d\ \x84\xc3\x61\x96\x2f\x5f\x8e\xcf\xe7\xe3\xed\xb7\xdf\xe6\xe5\x97\ \x5f\x66\xc3\x86\x0d\x0f\x2e\x06\x0a\x95\x5c\x06\x00\xe6\xcf\x9f\ \xcf\xe1\xc3\x87\xd9\xb8\x71\x23\x5b\x9f\x58\xca\xcf\x56\x36\xd1\ \x7a\xb6\x8b\xff\x06\xef\xd2\xda\xd5\x43\xca\xb0\xf0\x97\xdb\x79\ \xf4\xa1\x19\xbc\xfe\xec\x06\x1e\x9a\x53\xcd\xe0\xe0\x20\x9d\x9d\ \xdd\x44\x22\x11\x82\xc1\x20\x00\x5b\xb7\x6e\xe5\xd0\xa1\x43\xf4\ \xf5\xf5\x4d\xed\x13\xd3\xab\xaf\xbe\x1a\xda\xb7\x6f\x9f\x3f\x1e\ \x8f\x63\x59\x16\x42\x08\x4c\xd3\xc4\xe9\x74\x62\x9a\x66\xc1\x43\ \xdf\xcc\xfd\xf0\xf0\x30\x27\x4e\x9c\xc0\xe1\x70\xf0\xf8\xe3\x8f\ \x53\x5d\x5d\x8d\xcb\xe5\xca\x32\x9b\x79\x23\x8b\x46\xa3\x9c\x3f\ \x7f\x9e\x13\x27\x4e\xb0\x7a\xf5\x6a\x3c\x1e\x0f\xe1\x70\x98\x58\ \x2c\x46\x22\x91\xc0\xe7\xf3\x71\xee\xdc\x39\x82\xc1\x20\xba\xae\ \xdb\x4e\x9d\x3a\x65\x94\x0c\x60\xe7\xce\x9d\xa1\x77\xde\x79\x67\ \x5c\x00\xf9\xce\xe7\xbf\x56\x5e\xbb\x76\x8d\x0b\x17\x2e\x90\x4a\ \xa5\xa8\xa9\xa9\xc1\xeb\xf5\x66\xdf\x89\x07\x06\x06\xe8\xec\xec\ \xa4\xa1\xa1\x81\x65\xcb\x96\xb1\x7f\xff\x7e\x36\x6f\xde\x8c\xdb\ \xed\x26\x12\x89\x60\x18\x06\xc3\xc3\xc3\x54\x55\x55\xd1\xd9\xd9\ \x49\x5b\x5b\xdb\x97\x76\xbb\xfd\xc5\xcf\x3f\xff\x3c\x52\x12\x80\ \x96\x96\x96\xd0\x7b\xef\xbd\x37\x29\x00\xc5\xee\x23\x91\x08\xdd\ \xdd\xdd\x44\xa3\x51\x92\xc9\x24\x2e\x97\x0b\x9f\xcf\x47\x63\x63\ \x23\x0e\x87\x03\x80\xae\xae\x2e\xde\x7c\xf3\x4d\xb6\x6c\xd9\x82\ \xcf\xe7\x63\x68\x68\x08\x45\x51\x08\x85\x42\xf8\xfd\x7e\x7a\x7b\ \x7b\x39\x7a\xf4\xe8\x45\x21\xc4\xd6\x63\xc7\x8e\xdd\x1a\x0f\x80\ \x02\xb8\x5f\x7a\xe9\xa5\x9b\xef\xbf\xff\x7e\x65\x22\x91\xc8\x02\ \x30\x0c\x03\x97\xcb\x95\xcd\x50\xe3\x39\x9f\xfb\x29\x6a\xbc\x43\ \xaa\xdc\x1d\x67\x28\x14\xe2\xad\xb7\xde\x62\xcd\x9a\x35\x34\x34\ \x34\x30\x30\x30\x80\xcb\xe5\xe2\xde\xbd\x7b\x54\x54\x54\xa0\xeb\ \x3a\x07\x0f\x1e\xbc\x63\x18\xc6\x33\xc7\x8f\x1f\xbf\x50\x68\x37\ \xea\x06\xaa\x81\x99\x96\x65\x89\x52\x03\x39\x37\xf5\xa6\xd3\x69\ \x12\x89\xc4\x98\x1a\x8f\xc7\xd1\x75\xfd\xbe\x1a\x8b\xc5\x88\x46\ \xa3\xc4\x62\x31\xe2\xf1\x38\x6e\xb7\x9b\x37\xde\x78\x83\x8e\x8e\ \x0e\x82\xc1\x20\x7e\xbf\x9f\x64\x32\x49\x4d\x4d\x0d\xd1\x68\x94\ \x9a\x9a\x1a\xf6\xec\xd9\x53\xa7\xaa\xea\xbf\x76\xec\xd8\xe1\xca\ \x07\x60\x1f\x05\xe0\x01\x2a\x00\x33\xb3\x0f\xaa\xac\xac\xc4\xeb\ \xf5\xe2\xf3\xf9\x70\xbb\xdd\x94\x97\x97\x53\x5e\x5e\x8e\xc7\xe3\ \xa1\xac\xac\x0c\xa7\xd3\x89\xcd\x66\x43\xd3\x34\x54\x55\x45\x51\ \x94\xfb\x58\x30\x4d\x13\xc3\x30\x48\xa7\xd3\xa4\x52\xa9\x2c\xa0\ \xdc\x9a\x48\x24\x48\x26\x93\xa8\xaa\xca\x9e\x3d\x7b\xd0\x75\x9d\ \xb6\xb6\x36\xbc\x5e\x2f\xe9\x74\x9a\xfa\xfa\x7a\x16\x2d\x5a\xc4\ \x8a\x15\x2b\x78\xfa\xe9\xa7\x67\x87\xc3\xe1\x67\xf3\xd3\xa8\xcc\ \xb9\xca\xde\xde\xde\x0f\x77\xed\xda\xf5\x7a\xa9\xa7\xc9\xf9\x72\ \xc9\xac\xe4\xa3\x6d\x22\xbf\x4f\xfe\xb7\x87\x02\x32\x94\x42\x08\ \x65\x70\x70\x50\xdd\xb6\x6d\x1b\xf5\xf5\xf5\xa8\xaa\x8a\x69\x9a\ \x99\x6d\xbd\x03\x10\xb9\x00\xd2\x40\x6c\x34\x2e\x64\x5b\x5b\xdb\ \x87\x2e\x97\xeb\x80\xcb\xe5\xf2\x00\x42\x4a\xa9\x4e\x90\x8e\x55\ \x29\xa5\x32\x6a\x2b\xa3\xb6\x32\xfa\xac\x02\x28\xa6\x69\x8a\x4c\ \x5b\x4e\xcd\x20\xc9\xec\x5d\x2c\x55\x55\xa5\x10\x22\x29\x84\xb0\ \x7a\x7b\x7b\xd7\x86\xc3\xe1\xdf\xbf\xf6\xda\x6b\x5a\x6d\x6d\x2d\ \x37\x6f\xde\xa4\xb5\xb5\x35\x02\x1c\x01\xa4\x28\xe2\x8c\x13\x70\ \x01\x36\x40\x1d\xad\x4a\x09\x61\xa0\x66\x00\x8c\x56\x35\x27\x31\ \xe4\x3b\x5e\x90\xcc\x9c\x9a\x1c\x05\x95\x5c\xb7\x6e\xdd\x23\x15\ \x15\x15\x7f\xd2\x34\x6d\x99\x65\x59\xa7\x15\x45\xf9\xe3\xd1\xa3\ \x47\xcf\x8c\x9b\x46\x4b\x5d\x2f\x26\x78\x46\xc9\xbb\x4e\x06\x80\ \x95\x53\x65\x0e\x53\xf7\x95\xff\x01\xf5\xce\x9a\x63\x38\xe1\x8e\ \x64\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ " qt_resource_name = "\ \x00\x05\ \x00\x6f\xa6\x53\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x0c\ \x08\x1a\x9d\x27\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x0e\xfe\x4a\xe7\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2d\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x07\ \x09\xba\x57\x87\ \x00\x62\ \x00\x75\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x08\xfa\x35\x27\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x06\xec\x10\xa7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x68\x00\x6f\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0a\xfc\x6e\x07\ \x00\x63\ \x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2d\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x02\x6f\x48\x87\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x77\x00\x61\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x0f\ \x02\x30\x8b\xe7\ \x00\x6c\ \x00\x69\x00\x73\x00\x74\x00\x2d\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x09\xd0\x7a\x07\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x08\xea\xfb\x67\ \x00\x70\ \x00\x72\x00\x6f\x00\x63\x00\x65\x00\x73\x00\x73\x00\x2d\x00\x73\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0f\x22\x64\xc7\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x72\x00\x69\x00\x67\x00\x68\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x02\xe9\xcb\xe7\ \x00\x64\ \x00\x69\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x79\x00\x2d\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x12\ \x0d\xab\x70\x07\ \x00\x64\ \x00\x72\x00\x69\x00\x76\x00\x65\x00\x2d\x00\x68\x00\x61\x00\x72\x00\x64\x00\x64\x00\x69\x00\x73\x00\x6b\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x1e\ \x09\x5d\x99\xc7\ \x00\x70\ \x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2d\x00\x64\x00\x65\x00\x73\x00\x6b\x00\x74\ \x00\x6f\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0c\x2b\x1f\xc7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x08\x51\xc9\x27\ \x00\x63\ \x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x06\x0c\x0a\x07\ \x00\x61\ \x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2d\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x00\x03\x49\x87\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x14\ \x00\xda\xd2\xa7\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2d\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0c\x1a\xdc\xa7\ \x00\x73\ \x00\x75\x00\x67\x00\x67\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x0b\xa9\xab\x27\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2d\x00\x61\x00\x73\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x08\x86\x28\x87\ \x00\x69\ \x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x74\x00\x2d\x00\x77\x00\x65\x00\x62\x00\x2d\x00\x62\x00\x72\x00\x6f\x00\x77\ \x00\x73\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x09\xc6\x19\x27\ \x00\x6c\ \x00\x69\x00\x73\x00\x74\x00\x2d\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x01\x70\xe1\x87\ \x00\x70\ \x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2d\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\ \x00\x6d\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x01\x31\x80\x47\ \x00\x73\ \x00\x70\x00\x65\x00\x61\x00\x6b\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x08\x12\xae\xa7\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x2d\x00\x72\x00\x65\x00\x63\x00\x6f\x00\x72\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\xc8\x59\x27\ \x00\x6c\ \x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x05\x9e\x83\x27\ \x00\x63\ \x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x02\x65\x50\x27\ \x00\x62\ \x00\x61\x00\x62\x00\x69\x00\x6c\x00\x6f\x00\x6f\x00\x36\x00\x34\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x0b\xee\xab\x27\ \x00\x64\ \x00\x69\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x2d\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\ \x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x08\x44\xd5\x07\ \x00\x73\ \x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x2d\x00\x66\x00\x69\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x12\ \x0e\x2f\x68\xa7\ \x00\x64\ \x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x0f\ \x0e\x36\x76\xc7\ \x00\x67\ \x00\x6f\x00\x2d\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x0f\xad\xca\x47\ \x00\x68\ \x00\x65\x00\x6c\x00\x70\x00\x2d\x00\x62\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x08\x15\x13\x67\ \x00\x76\ \x00\x69\x00\x65\x00\x77\x00\x2d\x00\x72\x00\x65\x00\x66\x00\x72\x00\x65\x00\x73\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x0b\x27\xb1\x67\ \x00\x65\ \x00\x64\x00\x69\x00\x74\x00\x2d\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x28\x00\x00\x00\x02\ \x00\x00\x02\x76\x00\x00\x00\x00\x00\x01\x00\x01\x89\xd2\ \x00\x00\x02\xa0\x00\x00\x00\x00\x00\x01\x00\x01\x93\x85\ \x00\x00\x03\xa4\x00\x00\x00\x00\x00\x01\x00\x02\x02\xc0\ \x00\x00\x03\x72\x00\x00\x00\x00\x00\x01\x00\x01\xf4\x0a\ \x00\x00\x03\x72\x00\x00\x00\x00\x00\x01\x00\x01\xe5\x54\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xae\x6a\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xb0\x91\ \x00\x00\x04\x14\x00\x00\x00\x00\x00\x01\x00\x02\x5a\x55\ \x00\x00\x00\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x8f\x33\ \x00\x00\x01\x82\x00\x00\x00\x00\x00\x01\x00\x01\x0b\xa1\ \x00\x00\x03\xfc\x00\x00\x00\x00\x00\x01\x00\x02\x49\x17\ \x00\x00\x02\x54\x00\x00\x00\x00\x00\x01\x00\x01\x63\x87\ \x00\x00\x03\xe6\x00\x00\x00\x00\x00\x01\x00\x02\x43\x03\ \x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x69\x27\ \x00\x00\x03\xc0\x00\x00\x00\x00\x00\x01\x00\x02\x3b\x03\ \x00\x00\x05\x02\x00\x00\x00\x00\x00\x01\x00\x03\x07\x89\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x04\x66\x00\x00\x00\x00\x00\x01\x00\x02\xa3\x8e\ \x00\x00\x02\x34\x00\x00\x00\x00\x00\x01\x00\x01\x43\x1f\ \x00\x00\x03\x1e\x00\x00\x00\x00\x00\x01\x00\x01\xcf\xd3\ \x00\x00\x01\x38\x00\x00\x00\x00\x00\x01\x00\x00\xd8\x9b\ \x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x42\x1c\ \x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x01\x23\xf9\ \x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x8c\ \x00\x00\x03\x54\x00\x00\x00\x00\x00\x01\x00\x01\xdf\x18\ \x00\x00\x03\x54\x00\x00\x00\x00\x00\x01\x00\x01\xe2\x36\ \x00\x00\x01\x1a\x00\x00\x00\x00\x00\x01\x00\x00\xb2\xb8\ \x00\x00\x00\xa8\x00\x00\x00\x00\x00\x01\x00\x00\x7b\x03\ \x00\x00\x05\x28\x00\x00\x00\x00\x00\x01\x00\x03\x0a\xb9\ \x00\x00\x02\xf0\x00\x00\x00\x00\x00\x01\x00\x01\xaa\x47\ \x00\x00\x04\x34\x00\x00\x00\x00\x00\x01\x00\x02\x6c\xff\ \x00\x00\x02\xce\x00\x00\x00\x00\x00\x01\x00\x01\x9d\x99\ \x00\x00\x02\x18\x00\x00\x00\x00\x00\x01\x00\x01\x2a\xd0\ \x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x01\x1c\x74\ \x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x01\x14\xef\ \x00\x00\x04\x8e\x00\x00\x00\x00\x00\x01\x00\x02\xc7\x9a\ \x00\x00\x04\xb8\x00\x00\x00\x00\x00\x01\x00\x02\xe0\x89\ \x00\x00\x00\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x2f\xd6\ \x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x00\xe4\xad\ \x00\x00\x04\xdc\x00\x00\x00\x00\x00\x01\x00\x02\xf9\x62\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources() babiloo-2.0.11/qt/gui_widgets.py0000644000017300007100000000246711445134342016461 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import * from PyQt4.QtGui import * class MyLineEdit(QLineEdit): def __init__(self, *args): QLineEdit.__init__(self, *args) def event(self, event): if (event.type()==QEvent.KeyPress) and (event.key()==Qt.Key_Down or event.key()==Qt.Key_Up or event.key()==Qt.Key_PageUp or event.key()==Qt.Key_PageDown): self.emit(SIGNAL("downOrUpKeyPressed (QEvent)"), event) return True return QLineEdit.event(self, event) babiloo-2.0.11/qt/settings.py0000644000017300007100000002707411445134342016010 0ustar kmoskmos00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (C) 2008-2010 Ivan Garcia # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from PyQt4.QtCore import Qt, SIGNAL, QObject, QSettings, QVariant, QCoreApplication from PyQt4.QtGui import QMessageBox, QFileDialog, QItemSelectionModel, QDialog from settings_ui import Ui_SettingsDialog import webbrowser import time, thread, platform import logging import core.languages.availablelanguages as availablelanguages from dictionariesview import DictionariesModel from onlineDictionariesView import OnlineDictionariesModel log = logging.getLogger("babiloo.gui.settings") class settingsDialog(QDialog): def __init__(self, parent): QDialog.__init__(self) self.ui = Ui_SettingsDialog() self.ui.setupUi(self) self._main = parent self.settings = self._main.settings self.initDictionaries() self.SetSignals() self.TAB_DICTIONARIES = 1 self.TAB_MANAGE_DICTIONARIES = 0 self.TAB_DOWNLOAD_DICTIONARIES = 1 self.readSettings() def SetSignals(self): QObject.connect(self.ui.exportDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonExportDict) QObject.connect(self.ui.importDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonImportDict) QObject.connect(self.ui.deleteDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonDeleteDict) QObject.connect(self.ui.moveDownDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonMoveDownDict) QObject.connect(self.ui.moveUpDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonMoveUpDict) QObject.connect(self.ui.infoDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonInfoDict) QObject.connect(self.ui.refreshDictButton, SIGNAL("clicked(bool)"), self.dictionariesModel.onButtonRefreshDict) QObject.connect(self.ui.dictionariesFolderButton, SIGNAL("clicked(bool)"), self.onChangeDefaultDictionaryDirectory) #Download dictionaries QObject.connect(self.ui.downloadFromLinkButton, SIGNAL("clicked(bool)"), self.onlineDictionariesModel.onButtonDownloadFromLink) #QObject.connect(self.ui.downloadLinkEdit, SIGNAL("clicked(bool)"), self.dictionariesModel.onDownloadLinkEdit) QObject.connect(self.ui.downloadFromListButton, SIGNAL("clicked(bool)"), self.onlineDictionariesModel.onButtonDownloadFromList) QObject.connect(self.ui.infoOnlineDictButton, SIGNAL("clicked(bool)"), self.onlineDictionariesModel.onButtonInfoOnlineDict) QObject.connect(self.ui.refreshOnlineDictButton, SIGNAL("clicked(bool)"), self.onlineDictionariesModel.onButtonRefreshOnlineDict) QObject.connect(self.dictSelectionModel, SIGNAL("selectionChanged(QItemSelection, QItemSelection)"), self.onDictionariesSelection) #QObject.connect(self.onlineDictionariesSelectionModel, SIGNAL("selectionChanged(QItemSelection, QItemSelection)"), self.onlineDictionariesModel.onDictionariesSelection) QObject.connect(self.ui.helpTranslateButton, SIGNAL("clicked(bool)"), self.onOptionHelpTranslateButton) QObject.connect(self.ui.buttonAccept, SIGNAL("clicked(bool)"), self.saveSettings) QObject.connect(self.ui.buttonCancel, SIGNAL("clicked(bool)"), self.cancelSettings) self.ui.downloadFromListButton.setEnabled(False) self.ui.infoOnlineDictButton.setEnabled(False) def changeTab(self, tabNumber): self.ui.tabWidget.setCurrentIndex(tabNumber) def onOptionInterfaceLanguage(self, option): QMessageBox.about(self,_("Alert"),_("The new language will be displayed after restarting the program.")) def readSettings(self): languages = {} for lang_locale in self._main.interface_langs: languageName = availablelanguages.locale2name(lang_locale) if not languageName: languageName = lang_locale languages[languageName] = lang_locale langs = languages.keys() langs.sort() for lang in langs: self.ui.optionInterfaceLanguage.addItem(lang, QVariant(languages[lang])) self.ui.optionInterfaceLanguage.adjustSize() optionInterfaceLanguage = self.settings.value("settings/interfaceLang", QVariant("en")) index = self.ui.optionInterfaceLanguage.findData(optionInterfaceLanguage) if index != -1 : self.ui.optionInterfaceLanguage.setCurrentIndex (index) QObject.connect(self.ui.optionInterfaceLanguage, SIGNAL("currentIndexChanged(int)"), self.onOptionInterfaceLanguage) optionAutoComplete = self.settings.value("settings/autoComplete", QVariant(True)) self.ui.autoComplete.setChecked(optionAutoComplete.toBool()) optionIgnoreAccents = self.settings.value("settings/ignoreAccents", QVariant(True)) self.ui.ignoreAccents.setChecked(optionIgnoreAccents.toBool()) optionCaseSensitive = self.settings.value("settings/caseSensitive", QVariant(False)) self.ui.caseSensitive.setChecked(optionCaseSensitive.toBool()) defaultDirectory = self.settings.value("settings/dictsDefaultDirectory", QVariant(True)) self.ui.dictionariesFolderEdit.setText(defaultDirectory.toString()) self.ui.autoComplete.setChecked(optionAutoComplete.toBool()) def cancelSettings(self): self.reject() def saveSettings(self): log.debug("Saving Options Settings") optionInterfaceLanguage = self.ui.optionInterfaceLanguage.itemData(self.ui.optionInterfaceLanguage.currentIndex()) self.settings.setValue("settings/interfaceLang", QVariant(optionInterfaceLanguage)) optionAutoComplete = self.ui.autoComplete.isChecked() self.settings.setValue("settings/autoComplete", QVariant(optionAutoComplete)) optionIgnoreAccents = self.ui.ignoreAccents.isChecked() self.settings.setValue("settings/ignoreAccents", QVariant(optionIgnoreAccents)) optionCaseSensitive = self.ui.caseSensitive.isChecked() self.settings.setValue("settings/caseSensitive", QVariant(optionCaseSensitive)) defaultDirectory = self.ui.dictionariesFolderEdit.text() self.settings.setValue("settings/dictsDefaultDirectory", QVariant(defaultDirectory)) self.accept() def onChangeDefaultDictionaryDirectory(self): currentDir = self.settings.value("mainwindow/workingDirectory", QVariant()) dir = QFileDialog.getExistingDirectory(None, _("Open Directory"),currentDir.toString(), QFileDialog.ShowDirsOnly) if dir: self.ui.dictionariesFolderEdit.setText(dir) def initDictionaries(self): engine = self._main.engine self.dictionariesModel = DictionariesModel(self._main) self.ui.dictsTable.setModel(self.dictionariesModel) self.dictSelectionModel = QItemSelectionModel(self.dictionariesModel) self.ui.dictsTable.setSelectionModel(self.dictSelectionModel) self.onlineDictionariesModel = OnlineDictionariesModel(self._main) #self.onlineDictionariesSelectionModel = QItemSelectionModel(self.onlineDictionariesModel) self.ui.onlineDictionariesView.setModel(self.onlineDictionariesModel) #self.ui.onlineDictionariesView.setSelectionModel(self.onlineDictionariesSelectionModel) QObject.connect(self.onlineDictionariesModel, SIGNAL("dataChanged(QModelIndex,QModelIndex)"), self.onSelectOnlineDictionariesView) QObject.connect(self.ui.onlineDictionariesView, SIGNAL("activated(QModelIndex)"), self.onClickOnlineDictionariesView) QObject.connect(self.ui.onlineDictionariesView, SIGNAL("clicked(QModelIndex)"), self.onClickOnlineDictionariesView) #QObject.connect(self.onlineDictionariesView, SIGNAL("customContextMenuRequested(QPoint)"), self.onContext) QObject.connect(self.onlineDictionariesModel, SIGNAL("updatedOnlineDictionaries()"), self.onUpdatedOnlineDictionaries) #self.onlineDictionariesModel.clearTree() thread.start_new_thread(self.onlineDictionariesModel.refreshOnlineDict, ()) self.ui.dictsTable.resizeRowsToContents() self.ui.dictsTable.resizeColumnsToContents() self.updateButtonsDictionaries() def onClickOnlineDictionariesView(self, index): treeItem = self.onlineDictionariesModel.getSelectedItem(index) if treeItem.data["type"] == "dict": treeItem.checked = not(treeItem.checked) self.ui.infoOnlineDictButton.setEnabled(True) self.onlineDictionariesModel.emit(SIGNAL("dataChanged(QModelIndex,QModelIndex)"),index, index) if len(self.onlineDictionariesModel.getCheckedDictionaries()): self.ui.downloadFromListButton.setEnabled(True) else: self.ui.downloadFromListButton.setEnabled(False) else: self.ui.infoOnlineDictButton.setEnabled(False) def onSelectOnlineDictionariesView(self): self.onlineDictionariesModel.getCheckedDictionaries() def updateButtonsDictionaries(self): self.ui.dictsTable.resizeRowsToContents() selected = self.dictSelectionModel.selection() if selected.count(): self.dictionariesModel.rowSelected = selected.last().bottomRight().row() self.ui.exportDictButton.setEnabled(True) self.ui.deleteDictButton.setEnabled(True) self.ui.moveDownDictButton.setEnabled(False) #disabled temporarily self.ui.moveUpDictButton.setEnabled(False) #disabled temporarily self.ui.infoDictButton.setEnabled(True) else: self.dictionariesModel.rowSelected = None self.ui.exportDictButton.setEnabled(False) self.ui.deleteDictButton.setEnabled(False) self.ui.moveDownDictButton.setEnabled(False) self.ui.moveUpDictButton.setEnabled(False) self.ui.infoDictButton.setEnabled(False) def onDictionariesSelection(self, selected, unselected): self.updateButtonsDictionaries() def onUpdatedOnlineDictionaries(self): self.ui.onlineDictionariesView.expandAll() # locale_lang_index = self.onlineDictionariesModel.getIndexFromLanguage('vi') # if locale_lang_index: # self.ui.onlineDictionariesView.expand() def onOptionHelpTranslateButton(self): webbrowser.open( "http://www.babiloo-project.org/translate.html", new=2, autoraise=1) #Control the STATUS BAR PROGRESS def progress(self, val = None,msg = None): #by calling progres(), it will return False if it has been canceled if (val == None and msg == None ): return not self.status_progress.wasCanceled() if msg != None: self.status_progress.setLabelText(msg) if val < 0: self.status_progress.setMaximum(0) else: self.status_progress.setValue(val) QCoreApplication.processEvents() for i in range(1000): i = i * 5 QCoreApplication.processEvents() babiloo-2.0.11/qt/about.ui0000644000017300007100000004245011443252102015233 0ustar kmoskmos00000000000000 AboutDialog Qt::WindowModal 0 0 400 416 0 0 400 400 400 600 About Babiloo false Qt::Vertical QSizePolicy::Fixed 20 16 Tahoma 10 75 true true <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Tahoma'; font-size:10pt; font-weight:600; font-style:italic;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"><span style=" font-size:29pt; font-weight:600;">Babiloo</span></p></body></html> Tahoma 10 75 true true <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Tahoma'; font-size:10pt; font-weight:600; font-style:italic;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"><span style=" font-family:'serif'; font-size:14pt; font-weight:600;">2.0.0</span></p></body></html> Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft 0 0 true 0 0 5 5 Qt::WheelFocus 0 &About false QFrame::NoFrame <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'DejaVu Sans'; font-size:10pt;">Homepage:</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.babiloo-project.org/"><span style=" font-family:'DejaVu Sans'; font-size:10pt; text-decoration: underline; color:#0057ae;">http://www.babiloo-project.org</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'DejaVu Sans'; font-size:10pt; text-decoration: underline; color:#0057ae;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'DejaVu Sans'; font-size:10pt;">Bugs and new requests:</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="https://bugs.launchpad.net/babiloo"><span style=" font-family:'DejaVu Sans'; font-size:10pt; text-decoration: underline; color:#0057ae;">https://bugs.launchpad.net/babiloo</span></a></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'DejaVu Sans'; font-size:10pt;">IRC: </span><span style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:600;">irc.freenode.net</span><span style=" font-family:'DejaVu Sans'; font-size:10pt;"> - </span><span style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:600;">#babiloo</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:600;">Donations</span><span style=" font-family:'DejaVu Sans'; font-size:10pt;">:</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.babiloo-project.org/donations.html"><span style=" font-family:'DejaVu Sans'; font-size:10pt; text-decoration: underline; color:#0057ae;">Our paypal account</span></a></p></body></html> true A&uthors false QFrame::NoFrame <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">Ivan Garcia &lt;</span><a href="mailto:ivangarcia@gmail.com"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0057ae;">ivangarcia@gmail.com</span></a><span style=" font-family:'Sans Serif';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">Marco Ferreira &lt;</span><a href="mailto:mferreira@devion.org"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0057ae;">mferreira@devion.org</span></a><span style=" font-family:'Sans Serif';">&gt;</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">Marco Rodrigues &lt;</span><a href="mailto:gothicx@gmail.com"><span style=" text-decoration: underline; color:#0000ff;">gothicx@gmail.com</span></a><span style=" font-family:'Sans Serif';">&gt;</span></p></body></html> &License Agreement false QFrame::VLine Qt::ScrollBarAlwaysOff QTextEdit::WidgetWidth <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">Copyright (c) 2008-2009, Babiloo Developers</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">The team would like to thank these 3 GPL projects where Babiloo has used part of their codes:</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">- QStardict</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">- OpenDict</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">- Sdiqt</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">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. </span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">This program is distributed in the hope that it will</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">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. </span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc.,</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. </span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p></body></html> Qt::Horizontal 40 20 &Close babiloo-2.0.11/qt/settings_ui.py0000644000017300007100000010004011445134557016476 0ustar kmoskmos00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'settings.ui' # # Created: Sat Sep 18 14:06:55 2010 # by: PyQt4 UI code generator 4.7.2 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_SettingsDialog(object): def setupUi(self, SettingsDialog): SettingsDialog.setObjectName("SettingsDialog") SettingsDialog.resize(584, 518) SettingsDialog.setToolTip("") SettingsDialog.setModal(True) self.verticalLayout_7 = QtGui.QVBoxLayout(SettingsDialog) self.verticalLayout_7.setObjectName("verticalLayout_7") self.tabWidget = QtGui.QTabWidget(SettingsDialog) self.tabWidget.setEnabled(True) self.tabWidget.setObjectName("tabWidget") self.tabGlobalSettings = QtGui.QWidget() self.tabGlobalSettings.setObjectName("tabGlobalSettings") self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabGlobalSettings) self.verticalLayout_4.setObjectName("verticalLayout_4") self.horizontalLayout_2 = QtGui.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.label_61 = QtGui.QLabel(self.tabGlobalSettings) font = QtGui.QFont() font.setWeight(75) font.setBold(True) self.label_61.setFont(font) self.label_61.setObjectName("label_61") self.horizontalLayout_2.addWidget(self.label_61) self.optionInterfaceLanguage = QtGui.QComboBox(self.tabGlobalSettings) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.optionInterfaceLanguage.sizePolicy().hasHeightForWidth()) self.optionInterfaceLanguage.setSizePolicy(sizePolicy) self.optionInterfaceLanguage.setMinimumSize(QtCore.QSize(150, 0)) self.optionInterfaceLanguage.setObjectName("optionInterfaceLanguage") self.horizontalLayout_2.addWidget(self.optionInterfaceLanguage) self.helpTranslateButton = QtGui.QPushButton(self.tabGlobalSettings) icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/icons/preferences-desktop-locale.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.helpTranslateButton.setIcon(icon) self.helpTranslateButton.setObjectName("helpTranslateButton") self.horizontalLayout_2.addWidget(self.helpTranslateButton) self.verticalLayout_4.addLayout(self.horizontalLayout_2) self.caseSensitive = QtGui.QCheckBox(self.tabGlobalSettings) self.caseSensitive.setObjectName("caseSensitive") self.verticalLayout_4.addWidget(self.caseSensitive) self.autoComplete = QtGui.QCheckBox(self.tabGlobalSettings) self.autoComplete.setChecked(True) self.autoComplete.setObjectName("autoComplete") self.verticalLayout_4.addWidget(self.autoComplete) self.ignoreAccents = QtGui.QCheckBox(self.tabGlobalSettings) self.ignoreAccents.setChecked(True) self.ignoreAccents.setObjectName("ignoreAccents") self.verticalLayout_4.addWidget(self.ignoreAccents) self.hboxlayout = QtGui.QHBoxLayout() self.hboxlayout.setSpacing(6) self.label_7 = QtGui.QLabel(self.tabGlobalSettings) self.label_7.setText("") self.label_7.setObjectName("label_7") self.hboxlayout.addWidget(self.label_7) self.label = QtGui.QLabel(self.tabGlobalSettings) self.label.setEnabled(False) self.label.setTextFormat(QtCore.Qt.PlainText) self.label.setObjectName("label") self.hboxlayout.addWidget(self.label) self.speechCmdEdit = QtGui.QLineEdit(self.tabGlobalSettings) self.speechCmdEdit.setEnabled(False) self.speechCmdEdit.setToolTip("") self.speechCmdEdit.setObjectName("speechCmdEdit") self.hboxlayout.addWidget(self.speechCmdEdit) self.verticalLayout_4.addLayout(self.hboxlayout) spacerItem = QtGui.QSpacerItem(369, 171, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.verticalLayout_4.addItem(spacerItem) self.tabWidget.addTab(self.tabGlobalSettings, "") self.tabDictionaries = QtGui.QWidget() self.tabDictionaries.setObjectName("tabDictionaries") self.vboxlayout = QtGui.QVBoxLayout(self.tabDictionaries) self.tabInstallDictionaries = QtGui.QTabWidget(self.tabDictionaries) self.tabInstallDictionaries.setEnabled(True) self.tabInstallDictionaries.setObjectName("tabInstallDictionaries") self.tab = QtGui.QWidget() self.tab.setObjectName("tab") self.verticalLayout_3 = QtGui.QVBoxLayout(self.tab) self.verticalLayout_3.setObjectName("verticalLayout_3") self.dictsTable = QtGui.QTableView(self.tab) self.dictsTable.setDragDropMode(QtGui.QAbstractItemView.DropOnly) self.dictsTable.setAlternatingRowColors(True) self.dictsTable.setSelectionMode(QtGui.QAbstractItemView.ExtendedSelection) self.dictsTable.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) self.dictsTable.setShowGrid(False) self.dictsTable.setObjectName("dictsTable") self.verticalLayout_3.addWidget(self.dictsTable) self.hboxlayout1 = QtGui.QHBoxLayout() self.hboxlayout1.setObjectName("hboxlayout1") self.importDictButton = QtGui.QToolButton(self.tab) icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/icons/list-add.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.importDictButton.setIcon(icon1) self.importDictButton.setObjectName("importDictButton") self.hboxlayout1.addWidget(self.importDictButton) self.deleteDictButton = QtGui.QToolButton(self.tab) self.deleteDictButton.setEnabled(True) icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(":/icons/list-remove.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.deleteDictButton.setIcon(icon2) self.deleteDictButton.setObjectName("deleteDictButton") self.hboxlayout1.addWidget(self.deleteDictButton) self.line = QtGui.QFrame(self.tab) self.line.setFrameShape(QtGui.QFrame.VLine) self.line.setFrameShadow(QtGui.QFrame.Sunken) self.line.setObjectName("line") self.hboxlayout1.addWidget(self.line) self.moveUpDictButton = QtGui.QToolButton(self.tab) self.moveUpDictButton.setEnabled(True) icon3 = QtGui.QIcon() icon3.addPixmap(QtGui.QPixmap(":/icons/arrow-up.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.moveUpDictButton.setIcon(icon3) self.moveUpDictButton.setObjectName("moveUpDictButton") self.hboxlayout1.addWidget(self.moveUpDictButton) self.moveDownDictButton = QtGui.QToolButton(self.tab) self.moveDownDictButton.setEnabled(True) icon4 = QtGui.QIcon() icon4.addPixmap(QtGui.QPixmap(":/icons/arrow-down.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.moveDownDictButton.setIcon(icon4) self.moveDownDictButton.setObjectName("moveDownDictButton") self.hboxlayout1.addWidget(self.moveDownDictButton) self.line_2 = QtGui.QFrame(self.tab) self.line_2.setFrameShape(QtGui.QFrame.VLine) self.line_2.setFrameShadow(QtGui.QFrame.Sunken) self.line_2.setObjectName("line_2") self.hboxlayout1.addWidget(self.line_2) self.infoDictButton = QtGui.QToolButton(self.tab) icon5 = QtGui.QIcon() icon5.addPixmap(QtGui.QPixmap(":/icons/dialog-information.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.infoDictButton.setIcon(icon5) self.infoDictButton.setObjectName("infoDictButton") self.hboxlayout1.addWidget(self.infoDictButton) self.exportDictButton = QtGui.QToolButton(self.tab) icon6 = QtGui.QIcon() icon6.addPixmap(QtGui.QPixmap(":/icons/document-save-as.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.exportDictButton.setIcon(icon6) self.exportDictButton.setObjectName("exportDictButton") self.hboxlayout1.addWidget(self.exportDictButton) self.refreshDictButton = QtGui.QToolButton(self.tab) icon7 = QtGui.QIcon() icon7.addPixmap(QtGui.QPixmap(":/icons/view-refresh.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.refreshDictButton.setIcon(icon7) self.refreshDictButton.setObjectName("refreshDictButton") self.hboxlayout1.addWidget(self.refreshDictButton) spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.hboxlayout1.addItem(spacerItem1) self.verticalLayout_3.addLayout(self.hboxlayout1) self.label_14 = QtGui.QLabel(self.tab) self.label_14.setObjectName("label_14") self.verticalLayout_3.addWidget(self.label_14) self.horizontalLayout_4 = QtGui.QHBoxLayout() self.horizontalLayout_4.setObjectName("horizontalLayout_4") self.dictionariesFolderEdit = QtGui.QLineEdit(self.tab) self.dictionariesFolderEdit.setObjectName("dictionariesFolderEdit") self.horizontalLayout_4.addWidget(self.dictionariesFolderEdit) self.dictionariesFolderButton = QtGui.QPushButton(self.tab) self.dictionariesFolderButton.setObjectName("dictionariesFolderButton") self.horizontalLayout_4.addWidget(self.dictionariesFolderButton) self.verticalLayout_3.addLayout(self.horizontalLayout_4) icon8 = QtGui.QIcon() icon8.addPixmap(QtGui.QPixmap(":/icons/drive-harddisk.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.tabInstallDictionaries.addTab(self.tab, icon8, "") self.tab_2 = QtGui.QWidget() self.tab_2.setObjectName("tab_2") self.verticalLayout_5 = QtGui.QVBoxLayout(self.tab_2) self.verticalLayout_5.setObjectName("verticalLayout_5") self.label_12 = QtGui.QLabel(self.tab_2) self.label_12.setObjectName("label_12") self.verticalLayout_5.addWidget(self.label_12) self.horizontalLayout_3 = QtGui.QHBoxLayout() self.horizontalLayout_3.setObjectName("horizontalLayout_3") self.downloadLinkEdit = QtGui.QLineEdit(self.tab_2) self.downloadLinkEdit.setObjectName("downloadLinkEdit") self.horizontalLayout_3.addWidget(self.downloadLinkEdit) self.downloadFromLinkButton = QtGui.QToolButton(self.tab_2) icon9 = QtGui.QIcon() icon9.addPixmap(QtGui.QPixmap(":/icons/download.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.downloadFromLinkButton.setIcon(icon9) self.downloadFromLinkButton.setObjectName("downloadFromLinkButton") self.horizontalLayout_3.addWidget(self.downloadFromLinkButton) self.verticalLayout_5.addLayout(self.horizontalLayout_3) self.label_13 = QtGui.QLabel(self.tab_2) self.label_13.setObjectName("label_13") self.verticalLayout_5.addWidget(self.label_13) self.onlineDictionariesView = QtGui.QTreeView(self.tab_2) self.onlineDictionariesView.setObjectName("onlineDictionariesView") self.verticalLayout_5.addWidget(self.onlineDictionariesView) self._2 = QtGui.QHBoxLayout() self._2.setObjectName("_2") self.downloadFromListButton = QtGui.QToolButton(self.tab_2) self.downloadFromListButton.setEnabled(True) self.downloadFromListButton.setIcon(icon9) self.downloadFromListButton.setObjectName("downloadFromListButton") self._2.addWidget(self.downloadFromListButton) self.line_4 = QtGui.QFrame(self.tab_2) self.line_4.setFrameShape(QtGui.QFrame.VLine) self.line_4.setFrameShadow(QtGui.QFrame.Sunken) self.line_4.setObjectName("line_4") self._2.addWidget(self.line_4) self.infoOnlineDictButton = QtGui.QToolButton(self.tab_2) self.infoOnlineDictButton.setIcon(icon5) self.infoOnlineDictButton.setObjectName("infoOnlineDictButton") self._2.addWidget(self.infoOnlineDictButton) self.refreshOnlineDictButton = QtGui.QToolButton(self.tab_2) self.refreshOnlineDictButton.setIcon(icon7) self.refreshOnlineDictButton.setObjectName("refreshOnlineDictButton") self._2.addWidget(self.refreshOnlineDictButton) spacerItem2 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self._2.addItem(spacerItem2) self.verticalLayout_5.addLayout(self._2) icon10 = QtGui.QIcon() icon10.addPixmap(QtGui.QPixmap(":/icons/internet-web-browser.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.tabInstallDictionaries.addTab(self.tab_2, icon10, "") self.vboxlayout.addWidget(self.tabInstallDictionaries) self.tabWidget.addTab(self.tabDictionaries, "") self.tabPlugins = QtGui.QWidget() self.tabPlugins.setEnabled(False) self.tabPlugins.setObjectName("tabPlugins") self.verticalLayout_6 = QtGui.QVBoxLayout(self.tabPlugins) self.verticalLayout_6.setObjectName("verticalLayout_6") self.dictsTable_2 = QtGui.QTableView(self.tabPlugins) self.dictsTable_2.setDragDropMode(QtGui.QAbstractItemView.DropOnly) self.dictsTable_2.setAlternatingRowColors(True) self.dictsTable_2.setSelectionMode(QtGui.QAbstractItemView.ExtendedSelection) self.dictsTable_2.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) self.dictsTable_2.setShowGrid(False) self.dictsTable_2.setObjectName("dictsTable_2") self.verticalLayout_6.addWidget(self.dictsTable_2) self._3 = QtGui.QHBoxLayout() self._3.setObjectName("_3") self.importDictButton_2 = QtGui.QToolButton(self.tabPlugins) self.importDictButton_2.setIcon(icon1) self.importDictButton_2.setObjectName("importDictButton_2") self._3.addWidget(self.importDictButton_2) self.deleteDictButton_2 = QtGui.QToolButton(self.tabPlugins) self.deleteDictButton_2.setEnabled(False) self.deleteDictButton_2.setIcon(icon2) self.deleteDictButton_2.setObjectName("deleteDictButton_2") self._3.addWidget(self.deleteDictButton_2) self.line_5 = QtGui.QFrame(self.tabPlugins) self.line_5.setFrameShape(QtGui.QFrame.VLine) self.line_5.setFrameShadow(QtGui.QFrame.Sunken) self.line_5.setObjectName("line_5") self._3.addWidget(self.line_5) self.infoDictButton_2 = QtGui.QToolButton(self.tabPlugins) self.infoDictButton_2.setIcon(icon5) self.infoDictButton_2.setObjectName("infoDictButton_2") self._3.addWidget(self.infoDictButton_2) self.refreshDictButton_2 = QtGui.QToolButton(self.tabPlugins) self.refreshDictButton_2.setIcon(icon7) self.refreshDictButton_2.setObjectName("refreshDictButton_2") self._3.addWidget(self.refreshDictButton_2) spacerItem3 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self._3.addItem(spacerItem3) self.verticalLayout_6.addLayout(self._3) self.tabWidget.addTab(self.tabPlugins, "") self.tabPopupWindow = QtGui.QWidget() self.tabPopupWindow.setEnabled(False) self.tabPopupWindow.setObjectName("tabPopupWindow") self.gridlayout = QtGui.QGridLayout(self.tabPopupWindow) self.gridlayout.setSpacing(6) self.gridlayout.setObjectName("gridlayout") self.groupBox = QtGui.QGroupBox(self.tabPopupWindow) self.groupBox.setEnabled(False) self.groupBox.setObjectName("groupBox") self.gridlayout1 = QtGui.QGridLayout(self.groupBox) self.gridlayout1.setSpacing(6) self.gridlayout1.setObjectName("gridlayout1") self.vboxlayout1 = QtGui.QVBoxLayout() self.vboxlayout1.setSpacing(6) self.vboxlayout1.setObjectName("vboxlayout1") self.pronounceWordBox = QtGui.QCheckBox(self.groupBox) self.pronounceWordBox.setObjectName("pronounceWordBox") self.vboxlayout1.addWidget(self.pronounceWordBox) self.gridlayout1.addLayout(self.vboxlayout1, 4, 0, 1, 1) self.hboxlayout2 = QtGui.QHBoxLayout() self.hboxlayout2.setSpacing(6) self.hboxlayout2.setObjectName("hboxlayout2") self.label_4 = QtGui.QLabel(self.groupBox) self.label_4.setObjectName("label_4") self.hboxlayout2.addWidget(self.label_4) self.timeoutBeforeHideSpin = QtGui.QDoubleSpinBox(self.groupBox) self.timeoutBeforeHideSpin.setDecimals(1) self.timeoutBeforeHideSpin.setMinimum(0.0) self.timeoutBeforeHideSpin.setMaximum(10.0) self.timeoutBeforeHideSpin.setSingleStep(0.1) self.timeoutBeforeHideSpin.setProperty("value", 0.5) self.timeoutBeforeHideSpin.setObjectName("timeoutBeforeHideSpin") self.hboxlayout2.addWidget(self.timeoutBeforeHideSpin) self.gridlayout1.addLayout(self.hboxlayout2, 3, 0, 1, 1) self.hboxlayout3 = QtGui.QHBoxLayout() self.hboxlayout3.setSpacing(6) self.hboxlayout3.setObjectName("hboxlayout3") self.useScanModifierBox = QtGui.QCheckBox(self.groupBox) self.useScanModifierBox.setEnabled(False) self.useScanModifierBox.setObjectName("useScanModifierBox") self.hboxlayout3.addWidget(self.useScanModifierBox) self.modifierKeyBox = QtGui.QComboBox(self.groupBox) self.modifierKeyBox.setEnabled(False) self.modifierKeyBox.setObjectName("modifierKeyBox") self.modifierKeyBox.addItem("") self.modifierKeyBox.addItem("") self.modifierKeyBox.addItem("") self.modifierKeyBox.addItem("") self.hboxlayout3.addWidget(self.modifierKeyBox) self.gridlayout1.addLayout(self.hboxlayout3, 2, 0, 1, 1) self.useScanBox = QtGui.QCheckBox(self.groupBox) self.useScanBox.setChecked(True) self.useScanBox.setObjectName("useScanBox") self.gridlayout1.addWidget(self.useScanBox, 0, 0, 1, 1) self.showIfNotFoundBox = QtGui.QCheckBox(self.groupBox) self.showIfNotFoundBox.setObjectName("showIfNotFoundBox") self.gridlayout1.addWidget(self.showIfNotFoundBox, 1, 0, 1, 1) self.gridlayout.addWidget(self.groupBox, 0, 0, 1, 1) self.groupBox_2 = QtGui.QGroupBox(self.tabPopupWindow) self.groupBox_2.setEnabled(False) self.groupBox_2.setObjectName("groupBox_2") self.gridlayout2 = QtGui.QGridLayout(self.groupBox_2) self.gridlayout2.setSpacing(6) self.gridlayout2.setObjectName("gridlayout2") self.hboxlayout4 = QtGui.QHBoxLayout() self.hboxlayout4.setSpacing(6) self.hboxlayout4.setObjectName("hboxlayout4") self.label_3 = QtGui.QLabel(self.groupBox_2) self.label_3.setObjectName("label_3") self.hboxlayout4.addWidget(self.label_3) self.popupOpacitySpin = QtGui.QSpinBox(self.groupBox_2) self.popupOpacitySpin.setPrefix("") self.popupOpacitySpin.setMinimum(0) self.popupOpacitySpin.setMaximum(100) self.popupOpacitySpin.setProperty("value", 0) self.popupOpacitySpin.setObjectName("popupOpacitySpin") self.hboxlayout4.addWidget(self.popupOpacitySpin) self.gridlayout2.addLayout(self.hboxlayout4, 2, 0, 1, 1) self.hboxlayout5 = QtGui.QHBoxLayout() self.hboxlayout5.setSpacing(6) self.hboxlayout5.setObjectName("hboxlayout5") self.label_5 = QtGui.QLabel(self.groupBox_2) self.label_5.setObjectName("label_5") self.hboxlayout5.addWidget(self.label_5) self.popupDefaultWidthSpin = QtGui.QSpinBox(self.groupBox_2) self.popupDefaultWidthSpin.setMinimum(96) self.popupDefaultWidthSpin.setMaximum(9999) self.popupDefaultWidthSpin.setProperty("value", 320) self.popupDefaultWidthSpin.setObjectName("popupDefaultWidthSpin") self.hboxlayout5.addWidget(self.popupDefaultWidthSpin) self.gridlayout2.addLayout(self.hboxlayout5, 0, 0, 1, 1) self.hboxlayout6 = QtGui.QHBoxLayout() self.hboxlayout6.setSpacing(6) self.hboxlayout6.setObjectName("hboxlayout6") self.label_6 = QtGui.QLabel(self.groupBox_2) self.label_6.setObjectName("label_6") self.hboxlayout6.addWidget(self.label_6) self.popupDefaultHeightSpin = QtGui.QSpinBox(self.groupBox_2) self.popupDefaultHeightSpin.setMinimum(96) self.popupDefaultHeightSpin.setMaximum(9999) self.popupDefaultHeightSpin.setProperty("value", 240) self.popupDefaultHeightSpin.setObjectName("popupDefaultHeightSpin") self.hboxlayout6.addWidget(self.popupDefaultHeightSpin) self.gridlayout2.addLayout(self.hboxlayout6, 1, 0, 1, 1) self.gridlayout.addWidget(self.groupBox_2, 1, 0, 1, 1) spacerItem4 = QtGui.QSpacerItem(20, 101, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.gridlayout.addItem(spacerItem4, 2, 0, 1, 1) self.tabWidget.addTab(self.tabPopupWindow, "") self.tabApperance = QtGui.QWidget() self.tabApperance.setEnabled(False) self.tabApperance.setObjectName("tabApperance") self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabApperance) self.verticalLayout_2.setObjectName("verticalLayout_2") self.groupBox_5 = QtGui.QGroupBox(self.tabApperance) self.groupBox_5.setEnabled(False) self.groupBox_5.setObjectName("groupBox_5") self.verticalLayout = QtGui.QVBoxLayout(self.groupBox_5) self.verticalLayout.setObjectName("verticalLayout") self.m_preview = QtGui.QTextEdit(self.groupBox_5) self.m_preview.setReadOnly(True) self.m_preview.setObjectName("m_preview") self.verticalLayout.addWidget(self.m_preview) self.gridLayout = QtGui.QGridLayout() self.gridLayout.setObjectName("gridLayout") self.label_2 = QtGui.QLabel(self.groupBox_5) self.label_2.setObjectName("label_2") self.gridLayout.addWidget(self.label_2, 0, 0, 1, 1) self.m_elementCombo = QtGui.QComboBox(self.groupBox_5) self.m_elementCombo.setObjectName("m_elementCombo") self.m_elementCombo.addItem("") self.m_elementCombo.addItem("") self.m_elementCombo.addItem("") self.m_elementCombo.addItem("") self.m_elementCombo.addItem("") self.gridLayout.addWidget(self.m_elementCombo, 1, 0, 1, 1) self.m_fontCombo = QtGui.QFontComboBox(self.groupBox_5) self.m_fontCombo.setObjectName("m_fontCombo") self.gridLayout.addWidget(self.m_fontCombo, 3, 0, 1, 1) self.label_9 = QtGui.QLabel(self.groupBox_5) self.label_9.setObjectName("label_9") self.gridLayout.addWidget(self.label_9, 0, 1, 1, 1) self.label_10 = QtGui.QLabel(self.groupBox_5) self.label_10.setObjectName("label_10") self.gridLayout.addWidget(self.label_10, 0, 2, 1, 1) self.m_colorButton = QtGui.QToolButton(self.groupBox_5) self.m_colorButton.setObjectName("m_colorButton") self.gridLayout.addWidget(self.m_colorButton, 1, 1, 1, 1) self.m_backgroundButton = QtGui.QToolButton(self.groupBox_5) self.m_backgroundButton.setObjectName("m_backgroundButton") self.gridLayout.addWidget(self.m_backgroundButton, 1, 2, 1, 1) self.m_sizeSpin = QtGui.QSpinBox(self.groupBox_5) self.m_sizeSpin.setSuffix("") self.m_sizeSpin.setMinimum(4) self.m_sizeSpin.setMaximum(150) self.m_sizeSpin.setSingleStep(2) self.m_sizeSpin.setProperty("value", 10) self.m_sizeSpin.setObjectName("m_sizeSpin") self.gridLayout.addWidget(self.m_sizeSpin, 3, 1, 1, 1) self.horizontalLayout = QtGui.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.m_boldButton = QtGui.QToolButton(self.groupBox_5) font = QtGui.QFont() font.setWeight(75) font.setBold(True) self.m_boldButton.setFont(font) self.m_boldButton.setCheckable(True) self.m_boldButton.setObjectName("m_boldButton") self.horizontalLayout.addWidget(self.m_boldButton) self.m_italicButton = QtGui.QToolButton(self.groupBox_5) font = QtGui.QFont() font.setWeight(50) font.setItalic(True) font.setBold(False) self.m_italicButton.setFont(font) self.m_italicButton.setCheckable(True) self.m_italicButton.setObjectName("m_italicButton") self.horizontalLayout.addWidget(self.m_italicButton) self.m_underlineButton = QtGui.QToolButton(self.groupBox_5) font = QtGui.QFont() font.setWeight(50) font.setUnderline(True) font.setBold(False) self.m_underlineButton.setFont(font) self.m_underlineButton.setCheckable(True) self.m_underlineButton.setObjectName("m_underlineButton") self.horizontalLayout.addWidget(self.m_underlineButton) self.gridLayout.addLayout(self.horizontalLayout, 3, 2, 1, 1) self.label_11 = QtGui.QLabel(self.groupBox_5) self.label_11.setObjectName("label_11") self.gridLayout.addWidget(self.label_11, 2, 1, 1, 1) self.label_8 = QtGui.QLabel(self.groupBox_5) self.label_8.setObjectName("label_8") self.gridLayout.addWidget(self.label_8, 2, 0, 1, 1) self.verticalLayout.addLayout(self.gridLayout) self.verticalLayout_2.addWidget(self.groupBox_5) self.tabWidget.addTab(self.tabApperance, "") self.verticalLayout_7.addWidget(self.tabWidget) self.horizontalLayout_5 = QtGui.QHBoxLayout() self.horizontalLayout_5.setObjectName("horizontalLayout_5") spacerItem5 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout_5.addItem(spacerItem5) self.buttonAccept = QtGui.QPushButton(SettingsDialog) self.buttonAccept.setObjectName("buttonAccept") self.horizontalLayout_5.addWidget(self.buttonAccept) self.buttonCancel = QtGui.QPushButton(SettingsDialog) self.buttonCancel.setObjectName("buttonCancel") self.horizontalLayout_5.addWidget(self.buttonCancel) self.verticalLayout_7.addLayout(self.horizontalLayout_5) self.retranslateUi(SettingsDialog) self.tabWidget.setCurrentIndex(4) self.tabInstallDictionaries.setCurrentIndex(1) QtCore.QObject.connect(self.useScanModifierBox, QtCore.SIGNAL("toggled(bool)"), self.modifierKeyBox.setEnabled) QtCore.QMetaObject.connectSlotsByName(SettingsDialog) SettingsDialog.setTabOrder(self.speechCmdEdit, self.tabWidget) SettingsDialog.setTabOrder(self.tabWidget, self.moveUpDictButton) SettingsDialog.setTabOrder(self.moveUpDictButton, self.moveDownDictButton) SettingsDialog.setTabOrder(self.moveDownDictButton, self.infoDictButton) SettingsDialog.setTabOrder(self.infoDictButton, self.useScanBox) SettingsDialog.setTabOrder(self.useScanBox, self.showIfNotFoundBox) SettingsDialog.setTabOrder(self.showIfNotFoundBox, self.useScanModifierBox) SettingsDialog.setTabOrder(self.useScanModifierBox, self.modifierKeyBox) SettingsDialog.setTabOrder(self.modifierKeyBox, self.timeoutBeforeHideSpin) SettingsDialog.setTabOrder(self.timeoutBeforeHideSpin, self.pronounceWordBox) SettingsDialog.setTabOrder(self.pronounceWordBox, self.popupDefaultWidthSpin) SettingsDialog.setTabOrder(self.popupDefaultWidthSpin, self.popupDefaultHeightSpin) SettingsDialog.setTabOrder(self.popupDefaultHeightSpin, self.popupOpacitySpin) def retranslateUi(self, SettingsDialog): SettingsDialog.setWindowTitle(_("Babiloo Settings")) self.label_61.setText(_("Interface Language:")) self.helpTranslateButton.setText(_("Translate this Application...")) self.caseSensitive.setText(_("Case sensitive")) self.autoComplete.setText(_("AutoComplete")) self.ignoreAccents.setText(_("Ignore accents")) self.label.setText(_("Pronounce words using this command:")) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabGlobalSettings), _("Global settings")) self.importDictButton.setText("...") self.deleteDictButton.setText("...") self.moveUpDictButton.setToolTip(_("Move up")) self.moveUpDictButton.setText(_("Up")) self.moveDownDictButton.setToolTip(_("Move down")) self.moveDownDictButton.setText(_("Down")) self.infoDictButton.setToolTip(_("Show information about dictionary")) self.infoDictButton.setText(_("Show info")) self.exportDictButton.setText("...") self.refreshDictButton.setText("...") self.label_14.setText(_("Directory storing the dictionaries:")) self.dictionariesFolderButton.setText(_("Browse...")) self.tabInstallDictionaries.setTabText(self.tabInstallDictionaries.indexOf(self.tab), _("Installed Dictionaries")) self.label_12.setText(_("From link:")) self.downloadFromLinkButton.setToolTip(_("Download dictionary")) self.downloadFromLinkButton.setText(_("Download dictionary")) self.label_13.setText(_("From list:")) self.downloadFromListButton.setToolTip(_("Download dictionary")) self.downloadFromListButton.setText(_("Download")) self.infoOnlineDictButton.setToolTip(_("Show information about dictionary")) self.infoOnlineDictButton.setText(_("Show info")) self.refreshOnlineDictButton.setText("...") self.tabInstallDictionaries.setTabText(self.tabInstallDictionaries.indexOf(self.tab_2), _("Download Dictionaries")) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDictionaries), _("Dictionaries")) self.importDictButton_2.setText("...") self.deleteDictButton_2.setText("...") self.infoDictButton_2.setToolTip(_("Show information about dictionary")) self.infoDictButton_2.setText(_("Show info")) self.refreshDictButton_2.setText("...") self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabPlugins), _("Plugins")) self.groupBox.setTitle(_("Behavior")) self.pronounceWordBox.setText(_("Pronounce the word")) self.label_4.setText(_("Timeout before hide after mouse over")) self.timeoutBeforeHideSpin.setSpecialValueText(_("Don\'t hide")) self.timeoutBeforeHideSpin.setSuffix(_(" seconds")) self.useScanModifierBox.setText(_("Show only if modifier pressed")) self.modifierKeyBox.setItemText(0, "Alt") self.modifierKeyBox.setItemText(1, "Control") self.modifierKeyBox.setItemText(2, "Shift") self.modifierKeyBox.setItemText(3, "Win") self.useScanBox.setText(_("Scan selection")) self.showIfNotFoundBox.setText(_("Show if word not found")) self.groupBox_2.setTitle(_("Apperance")) self.label_3.setText(_("Transparency")) self.popupOpacitySpin.setSuffix("%") self.label_5.setText(_("Default width")) self.label_6.setText(_("Default height")) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabPopupWindow), _("Popup window")) self.groupBox_5.setTitle(_("Preview")) self.label_2.setText(_("Element")) self.m_elementCombo.setToolTip(_("Select element")) self.m_elementCombo.setItemText(0, _("Title")) self.m_elementCombo.setItemText(1, _("Explanation")) self.m_elementCombo.setItemText(2, _("Abbreviation")) self.m_elementCombo.setItemText(3, _("Example")) self.m_elementCombo.setItemText(4, _("Transcription")) self.m_fontCombo.setToolTip(_("Select font")) self.label_9.setText(_("Foreground")) self.label_10.setText(_("Background")) self.m_colorButton.setStatusTip(_("Click to select color")) self.m_colorButton.setText("#000000") self.m_backgroundButton.setStatusTip(_("Click to select color")) self.m_backgroundButton.setText("#000000") self.m_sizeSpin.setToolTip(_("Select font size")) self.m_boldButton.setToolTip(_("Bold")) self.m_boldButton.setText("B") self.m_italicButton.setToolTip(_("Italic")) self.m_italicButton.setText("I") self.m_underlineButton.setToolTip(_("Underline")) self.m_underlineButton.setText("U") self.label_11.setText(_("Size")) self.label_8.setText(_("Font")) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabApperance), _("Appearance")) self.buttonAccept.setText(_("Ok")) self.buttonCancel.setText(_("Cancel")) import images_rc babiloo-2.0.11/qt/main_ui.py0000644000017300007100000004100411445134342015556 0ustar kmoskmos00000000000000# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'main.ui' # # Created: Mon Jun 1 04:37:24 2010 # by: PyQt4 UI code generator 4.4.4 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_MainWindow(object): def setupUi(self, MainWindow): MainWindow.setObjectName("MainWindow") MainWindow.resize(647, 476) icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/icons/babiloo64.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) MainWindow.setWindowIcon(icon) self.centralwidget = QtGui.QWidget(MainWindow) self.centralwidget.setObjectName("centralwidget") self.verticalLayout_2 = QtGui.QVBoxLayout(self.centralwidget) self.verticalLayout_2.setObjectName("verticalLayout_2") self.splitter = QtGui.QSplitter(self.centralwidget) self.splitter.setOrientation(QtCore.Qt.Horizontal) self.splitter.setObjectName("splitter") self.frameArticles = QtGui.QFrame(self.splitter) self.frameArticles.setFrameShape(QtGui.QFrame.StyledPanel) self.frameArticles.setFrameShadow(QtGui.QFrame.Raised) self.frameArticles.setObjectName("frameArticles") self.verticalLayout_8 = QtGui.QVBoxLayout(self.frameArticles) self.verticalLayout_8.setObjectName("verticalLayout_8") self.tabWidget = QtGui.QTabWidget(self.frameArticles) self.tabWidget.setTabPosition(QtGui.QTabWidget.West) self.tabWidget.setElideMode(QtCore.Qt.ElideNone) self.tabWidget.setObjectName("tabWidget") self.tab_4 = QtGui.QWidget() self.tab_4.setObjectName("tab_4") self.verticalLayout_6 = QtGui.QVBoxLayout(self.tab_4) self.verticalLayout_6.setObjectName("verticalLayout_6") self.horizontalLayout_4 = QtGui.QHBoxLayout() self.horizontalLayout_4.setSpacing(0) self.horizontalLayout_4.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) self.horizontalLayout_4.setObjectName("horizontalLayout_4") self.articlesClearButton = QtGui.QToolButton(self.tab_4) icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/icons/clear-right.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.articlesClearButton.setIcon(icon1) self.articlesClearButton.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly) self.articlesClearButton.setObjectName("articlesClearButton") self.horizontalLayout_4.addWidget(self.articlesClearButton) self.articlesText = MyLineEdit(self.tab_4) self.articlesText.setObjectName("articlesText") self.horizontalLayout_4.addWidget(self.articlesText) self.articlesSearchButton = QtGui.QToolButton(self.tab_4) icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(":/icons/system-search.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.articlesSearchButton.setIcon(icon2) self.articlesSearchButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.articlesSearchButton.setObjectName("articlesSearchButton") self.horizontalLayout_4.addWidget(self.articlesSearchButton) self.verticalLayout_6.addLayout(self.horizontalLayout_4) self.wordList = QtGui.QTableView(self.tab_4) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.wordList.sizePolicy().hasHeightForWidth()) self.wordList.setSizePolicy(sizePolicy) self.wordList.setLineWidth(0) self.wordList.setAlternatingRowColors(False) self.wordList.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) self.wordList.setShowGrid(False) self.wordList.setGridStyle(QtCore.Qt.NoPen) self.wordList.setWordWrap(False) self.wordList.setCornerButtonEnabled(False) self.wordList.setObjectName("wordList") self.verticalLayout_6.addWidget(self.wordList) icon3 = QtGui.QIcon() icon3.addPixmap(QtGui.QPixmap(":/icons/edit-find.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.tabWidget.addTab(self.tab_4, icon3, "") self.tab_5 = QtGui.QWidget() self.tab_5.setObjectName("tab_5") self.verticalLayout = QtGui.QVBoxLayout(self.tab_5) self.verticalLayout.setObjectName("verticalLayout") self.historyList = QtGui.QTableView(self.tab_5) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.historyList.sizePolicy().hasHeightForWidth()) self.historyList.setSizePolicy(sizePolicy) self.historyList.setLineWidth(0) self.historyList.setAlternatingRowColors(False) self.historyList.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) self.historyList.setShowGrid(False) self.historyList.setGridStyle(QtCore.Qt.NoPen) self.historyList.setWordWrap(False) self.historyList.setCornerButtonEnabled(False) self.historyList.setObjectName("historyList") self.verticalLayout.addWidget(self.historyList) icon4 = QtGui.QIcon() icon4.addPixmap(QtGui.QPixmap(":/icons/clock.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.tabWidget.addTab(self.tab_5, icon4, "") self.tab_6 = QtGui.QWidget() self.tab_6.setObjectName("tab_6") self.verticalLayout_7 = QtGui.QVBoxLayout(self.tab_6) self.verticalLayout_7.setObjectName("verticalLayout_7") self.horizontalLayout_5 = QtGui.QHBoxLayout() self.horizontalLayout_5.setSpacing(0) self.horizontalLayout_5.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) self.horizontalLayout_5.setObjectName("horizontalLayout_5") self.contentSearchClearButton = QtGui.QToolButton(self.tab_6) self.contentSearchClearButton.setIcon(icon1) self.contentSearchClearButton.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly) self.contentSearchClearButton.setObjectName("contentSearchClearButton") self.horizontalLayout_5.addWidget(self.contentSearchClearButton) self.contentSearchText = MyLineEdit(self.tab_6) self.contentSearchText.setFocusPolicy(QtCore.Qt.StrongFocus) self.contentSearchText.setObjectName("contentSearchText") self.horizontalLayout_5.addWidget(self.contentSearchText) self.contentSearchButton = QtGui.QToolButton(self.tab_6) self.contentSearchButton.setIcon(icon2) self.contentSearchButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.contentSearchButton.setObjectName("contentSearchButton") self.horizontalLayout_5.addWidget(self.contentSearchButton) self.verticalLayout_7.addLayout(self.horizontalLayout_5) self.contentSearchList = QtGui.QTableView(self.tab_6) self.contentSearchList.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) self.contentSearchList.setShowGrid(False) self.contentSearchList.setObjectName("contentSearchList") self.verticalLayout_7.addWidget(self.contentSearchList) self.horizontalLayout_6 = QtGui.QHBoxLayout() self.horizontalLayout_6.setObjectName("horizontalLayout_6") self.contentSearchProgress = QtGui.QProgressBar(self.tab_6) self.contentSearchProgress.setEnabled(False) self.contentSearchProgress.setProperty("value", QtCore.QVariant(0)) self.contentSearchProgress.setObjectName("contentSearchProgress") self.horizontalLayout_6.addWidget(self.contentSearchProgress) self.stopContentSearchButton = QtGui.QToolButton(self.tab_6) self.stopContentSearchButton.setEnabled(False) icon5 = QtGui.QIcon() icon5.addPixmap(QtGui.QPixmap(":/icons/process-stop.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.stopContentSearchButton.setIcon(icon5) self.stopContentSearchButton.setObjectName("stopContentSearchButton") self.horizontalLayout_6.addWidget(self.stopContentSearchButton) self.verticalLayout_7.addLayout(self.horizontalLayout_6) self.tabWidget.addTab(self.tab_6, icon2, "") self.verticalLayout_8.addWidget(self.tabWidget) self.frameDefinitions = QtGui.QFrame(self.splitter) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.frameDefinitions.sizePolicy().hasHeightForWidth()) self.frameDefinitions.setSizePolicy(sizePolicy) self.frameDefinitions.setFrameShape(QtGui.QFrame.StyledPanel) self.frameDefinitions.setFrameShadow(QtGui.QFrame.Raised) self.frameDefinitions.setObjectName("frameDefinitions") self.verticalLayout_3 = QtGui.QVBoxLayout(self.frameDefinitions) self.verticalLayout_3.setObjectName("verticalLayout_3") self.verticalDefinitionLayout = QtGui.QVBoxLayout() self.verticalDefinitionLayout.setObjectName("verticalDefinitionLayout") self.definitionView = DefinitionView(self.frameDefinitions) self.definitionView.setObjectName("definitionView") self.verticalDefinitionLayout.addWidget(self.definitionView) self.verticalLayout_3.addLayout(self.verticalDefinitionLayout) self.verticalLayout_2.addWidget(self.splitter) MainWindow.setCentralWidget(self.centralwidget) self.menubar = QtGui.QMenuBar(MainWindow) self.menubar.setGeometry(QtCore.QRect(0, 0, 647, 24)) self.menubar.setObjectName("menubar") self.menu_File = QtGui.QMenu(self.menubar) self.menu_File.setObjectName("menu_File") self.menuHelp = QtGui.QMenu(self.menubar) self.menuHelp.setObjectName("menuHelp") self.menu_Options = QtGui.QMenu(self.menubar) self.menu_Options.setObjectName("menu_Options") self.menuDictionaries = QtGui.QMenu(self.menubar) self.menuDictionaries.setObjectName("menuDictionaries") MainWindow.setMenuBar(self.menubar) self.statusbar = QtGui.QStatusBar(MainWindow) self.statusbar.setObjectName("statusbar") MainWindow.setStatusBar(self.statusbar) self.actionQuit = QtGui.QAction(MainWindow) icon6 = QtGui.QIcon() icon6.addPixmap(QtGui.QPixmap(":/icons/system-log-out.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionQuit.setIcon(icon6) self.actionQuit.setObjectName("actionQuit") self.actionAbout = QtGui.QAction(MainWindow) icon7 = QtGui.QIcon() icon7.addPixmap(QtGui.QPixmap(":/icons/dialog-information.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionAbout.setIcon(icon7) self.actionAbout.setObjectName("actionAbout") self.actionSettings = QtGui.QAction(MainWindow) icon8 = QtGui.QIcon() icon8.addPixmap(QtGui.QPixmap(":/icons/preferences-system.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionSettings.setIcon(icon8) self.actionSettings.setObjectName("actionSettings") self.actionScan = QtGui.QAction(MainWindow) self.actionScan.setCheckable(True) self.actionScan.setEnabled(False) self.actionScan.setObjectName("actionScan") self.actionImport_Dictionary = QtGui.QAction(MainWindow) icon9 = QtGui.QIcon() icon9.addPixmap(QtGui.QPixmap(":/icons/dictionary-new.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionImport_Dictionary.setIcon(icon9) self.actionImport_Dictionary.setObjectName("actionImport_Dictionary") self.actionManage_Dictionaries = QtGui.QAction(MainWindow) icon10 = QtGui.QIcon() icon10.addPixmap(QtGui.QPixmap(":/icons/system-installer.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionManage_Dictionaries.setIcon(icon10) self.actionManage_Dictionaries.setObjectName("actionManage_Dictionaries") self.actionVisit_HomePage = QtGui.QAction(MainWindow) icon11 = QtGui.QIcon() icon11.addPixmap(QtGui.QPixmap(":/icons/go-home.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionVisit_HomePage.setIcon(icon11) self.actionVisit_HomePage.setObjectName("actionVisit_HomePage") self.actionReport_A_Problem = QtGui.QAction(MainWindow) icon12 = QtGui.QIcon() icon12.addPixmap(QtGui.QPixmap(":/icons/bug.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionReport_A_Problem.setIcon(icon12) self.actionReport_A_Problem.setObjectName("actionReport_A_Problem") self.actionTranslate_This_Application = QtGui.QAction(MainWindow) icon13 = QtGui.QIcon() icon13.addPixmap(QtGui.QPixmap(":/icons/preferences-desktop-locale.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionTranslate_This_Application.setIcon(icon13) self.actionTranslate_This_Application.setObjectName("actionTranslate_This_Application") self.actionDownload_Dictionaries = QtGui.QAction(MainWindow) icon14 = QtGui.QIcon() icon14.addPixmap(QtGui.QPixmap(":/icons/internet-web-browser.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionDownload_Dictionaries.setIcon(icon14) self.actionDownload_Dictionaries.setObjectName("actionDownload_Dictionaries") self.menu_File.addAction(self.actionQuit) self.menuHelp.addAction(self.actionVisit_HomePage) self.menuHelp.addSeparator() self.menuHelp.addAction(self.actionReport_A_Problem) self.menuHelp.addAction(self.actionTranslate_This_Application) self.menuHelp.addSeparator() self.menuHelp.addAction(self.actionAbout) self.menu_Options.addAction(self.actionSettings) self.menuDictionaries.addAction(self.actionImport_Dictionary) self.menuDictionaries.addAction(self.actionDownload_Dictionaries) self.menuDictionaries.addAction(self.actionManage_Dictionaries) self.menubar.addAction(self.menu_File.menuAction()) self.menubar.addAction(self.menuDictionaries.menuAction()) self.menubar.addAction(self.menu_Options.menuAction()) self.menubar.addAction(self.menuHelp.menuAction()) self.retranslateUi(MainWindow) self.tabWidget.setCurrentIndex(0) QtCore.QMetaObject.connectSlotsByName(MainWindow) def retranslateUi(self, MainWindow): MainWindow.setWindowTitle("Babiloo") self.articlesClearButton.setToolTip(_("Clear the search box")) self.articlesClearButton.setText(_("Clear")) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_4), _("Articles")) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_5), _("History")) self.contentSearchClearButton.setToolTip(_("Clear the search box")) self.contentSearchClearButton.setText(_("Clear")) self.stopContentSearchButton.setText("...") self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_6), _("Search")) self.definitionView.setHtml(QtGui.QApplication.translate("MainWindow", "\n" "\n" "

", None, QtGui.QApplication.UnicodeUTF8)) self.menu_File.setTitle(_("&File")) self.menuHelp.setTitle(_("&Help")) self.menu_Options.setTitle(_("&Settings")) self.menuDictionaries.setTitle(_("Dictionaries")) self.actionQuit.setText(_("&Quit")) self.actionAbout.setText(_("&About Babiloo")) self.actionSettings.setText(_("&Configure Babiloo")) self.actionScan.setText(_("&Scan")) self.actionImport_Dictionary.setText(_("Install from file...")) self.actionImport_Dictionary.setIconText(_("Import")) self.actionImport_Dictionary.setToolTip(_("Import")) self.actionManage_Dictionaries.setText(_("Manage Dictionaries...")) self.actionVisit_HomePage.setText(_("Visit HomePage")) self.actionReport_A_Problem.setText(_("Report A Problem")) self.actionTranslate_This_Application.setText(_("Translate This Application...")) self.actionDownload_Dictionaries.setText(_("Download Dictionaries")) from gui_widgets import MyLineEdit from definitionView import DefinitionView import images_rc babiloo-2.0.11/qt/chooseLanguage.ui0000644000017300007100000000631411443252102017044 0ustar kmoskmos00000000000000 ChooseLanguageDialog Qt::ApplicationModal 0 0 282 337 0 0 Choose language: true Available languages: 0 0 Qt::Horizontal <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click <a href="http://www.babiloo-project.org/translate.html"><span style=" text-decoration: underline; color:#0057ae;">here</span></a> to help us to translate </p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Babiloo into your language.</p></body></html> Qt::RichText true Qt::Horizontal Qt::Horizontal 158 20 OK babiloo-2.0.11/qt/.idea/qt.iml0000644000017300007100000000043611444512710015674 0ustar kmoskmos00000000000000 babiloo-2.0.11/dicts/README.txt0000644000017300007100000000007411443252102015736 0ustar kmoskmos00000000000000This is the folder where you should add dictionaries files. babiloo-2.0.11/images/dictionary-new.svg0000644000017300007100000007136111443252104020065 0ustar kmoskmos00000000000000 image/svg+xml New Bookmark bookmark remember favorite Andreas Nilsson Jakub Steiner create bookmark action babiloo-2.0.11/images/arrow-left.png0000644000017300007100000002340711443252104017176 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME $'m IDATx}yxUչ}N9$ @ 0ZiVVzUՋPz[;\}ڧ^[qD B" !2yN9{d3$f쇬{ַx/e2^x/eM)u3(K!RA R8bҮZ @3@M Vi̥G??NN `yQ>yEN0Ǖ2^ϻ pJ)Hdk@r-`(aDÇ 03} `#ow@puD l'gc5/?0: ..>v͞}"S=wBc`OڷqxPf/(XI`/l_zxxDEE" 0X,6-CX,BGG'::;с޾>c;>Sڐ:=q`=pQDJO78 )HNNFJR2BB]t\ǥz456j\ΰ{=' )Cg ɨ{iӦ!3#Sf. fܹ8} Ξ^ŲxOyyyKfĘySsb8rź1 * /^@Y ;w"c}{>7f4w瞅b9;wÍu!Oۃ'Q~:<=}c[Pzzz`Zݍ~ڭ7=G;̌ C6oN>=luG_uPXtN=9:Λx,[RXtR{pa477 "5WE!-- !!hljcL>FiI9|PYYɾ/\kPwNHo#5%Etgzkhw$chjj}ŊkW\-EEHKKÜ9qhnnFZZ:8"FH#6&)hjnbqHB8!Y~߿r_l:|OU^p8A\:Ye=. hll'|Պ6nqxhnnFC}=ay) rK dパd̘X]uzW ,94:"BJJ nznglV{.jchhhwfbʕX~%8|Q{"RRSa6+m <ى^Kg̬>uUO%.ODii\K sv9 Kd^3uػgl6nZ = k/DZc؈ #)9.f=H X)GWWG2#3PuU˗'O(|DX驩XP+1U90ܴաx^o<=S`X'+*Pwj/^Da*&!d&%&== 3q/Y3f{ԩ֫YYOer3?9) 8[=YJyew/֢x>[n[+VGԄDFF p"L4 ]Q#ns#`VVUVV Z^"㰨`}"DQ(2&B>ssg;s3!H7r0QD _\ Apmz0åϟc 00!ogvQ\M\m"n 3ixn8V\;#t( `I Dk׮VYs55 r\,^Ղ100 G[S˗1hRL&,Y!!!q!y/^1իWc͚5^W_ŁDDD`e jɡH"Uހ\FS dRѵU^^2Wi \yss좑i 2OR5bd|hcp<>?r1{ǎ -q`L(Iz:2N#aB6!;+ 'U}" Ƅb*`u&Js;ZT/uѣ݇ӫ>wwwFKK fAV,U$N-h gShhl곍٬~HWz?((333(̲Y:IB=ftܘUʼ|~u_x\niA\\2ḡ(2bRᄨ[HJ'0mTwchhH9&spӘ{nZ]+_|Vv6xYJ,2.hYVw^>xG#ӞsUGLzi@HǒQH9 qqqhjjR^¨S00a;;u:ȴDҸS}I"Qy$l6cX|෴=+aaaEX'ڬRduE:Q p;Gt'0fQr?&:&u.pDȪQ]D&jl6 1$8HQ'ρܫGY18QV&wf;ij?JWW|I0&bzF&""#d)dP\mg ͑e$j.G;8(JoI"Ii]`j-$!(8Qv%(O? ZZZSk#|9XS2fHahhH&>8|6[oE)_TzJ|~`CIrhnnFdd$~wž}`60+gp:ܜ`DoC]Įv~U:/MΉy`>K(5auvv1 ""BU#鯥"JG[k+|ӧO+.]‹/ 3d_%JŽq7yy^1G_FKh"n%himAtTcF\ BAAPVZL0L;wDy99cFG[X2+sJRlV{! ˆѩڱd rDA@GGBzxʎqqxב+ "dϞb2y IZRN_ҼXԸ/ى߇Ag|A?ȹ?0!aP ?#l6N xב؋ǟ7m np?5bA "AjFm(8md#+JWjWF#߅8l߶B}]]>H ,aAfŐeVձ?VU^K†~+Uyd9./waTHǷ<8S}}IШkqu%&8@ZͪJt#9vQQ.^& ٳf!<<ucjՍ V\n.A@EIb]),6 6zc~<\:#$=#ĺ;d=+hll;WvTHPy3&%ϝ7(EN {] 8 Nm35\QnL\c25+hjjVyVsXXypڋhwv/HXO;.'k d`p kd2!k,DEGy]qJNNܿ1T *%6ܻ$Sv w y/)m yGYF[k+N9s$Xv-fϞ!>\QǨuWWH>~KވuP 11=܃*07xgf\nlpczS=*| {^$$ȚXw7T+ RSSaA{+1RzYu9~xy V31wt?|1d 1q8Jý' Dpѹ}BPOBRbx.>>=ݸ{QVVWIO"nB:;:Q{3={fLCox׆$H mX9]XI_QQQضm8CM9z }m=k,V#qB¤cFG?*O:n¬qOźfpV7l̜9'ko$XnM>6fNv3݄]H8kiC;ֿ o =F}W#?1CCCݻ `Mș;?сHyp~E8^ ]u3i5)ĺuPRR)1-=h|dE%W@#Zwyh  FD[=0댙3 ł0>?|w //'3uͽ&ὂ=ڝN hhǧ{>kb>{ @TTWҊ<*=iGtr'p /o> ZZZ`ߜ>@ Оߏ=_<ʙ<X0봌i1 ('?O Ŷgx9v"~.źDZuyR.QOpѦ g V6a֘t!!^0߿m-HNIB@@zەk3{/-^2C@\n#G ((sx`LܹsBjj $\QmPo ӱ.ulV`447_Ʉsy||чhkm۷7pi[v|Eppkax"Fi52*!hn~a\i֎ 06/zۧY_sD(S=uaH ǎfjᤤ$mmHtI9=4`QqqG3 IDATPDt'qY0>Y#""&=y8p`?`X0iRư0tKQ>9i8xq>Af@DDPVV~{4{yGΜ=!)9F }m\U\COrDF- aĤD/sx//r@ǰ{L'P  +A(Y0fGtTQqXh!IӃ?0***sf~4sLtÖ-[::@IqIk%ɂ0kXxcX߀hiiŅ.Iֆ*++%K#$$d'}wÆM)x+5fϳYR5,,111hoShnj’%K4IP__\pXG7/;*2Ǘ/_DzJn544o@*4ce={?{hjnBtL4,]10EGڣk'ɓGf X47tu5jkk|rJBgg'xqcsQ+=6Fw޹*{ۘl/UK[[;< Պ+ÍߺO>yq76/&kyםciJ`7yr:rg`tMZOnvaʱ)v<,@+Vx"Μ9! Nӧxv㣛Fs9$xa"zHCUP Xi}ћcu1/XQ|J1ܺaCўm/oK2`Ko~tsXMW^y%E^E؋ёqOYz% /X"`7 y\Aׯ|J>b=Λx"BL\lPE<~J?U%z_|qle}'G7W^=t~4}=GM7}t>[{q*0lU~=SUJΫ<ܶB~b!+\,aMn:vWzb,6jyuMv|&E?/j f$UDk%Ƴwb˥}r+y#ߜFwp7D,3oEP`p9EH?ONA٬/8V`:u@\IA#OC3Vݘ:9=+2"bl3xbXz1OFh C?}~ppzkՕmogCԹ Мpnz .ИD9 P@OH(F +%t9WF@ ݁N^wT~.UEp/ݝy}a@w'\ejpTwбD7׃Z0:zoĿ/x|z4to]}@IENDB`babiloo-2.0.11/images/love.png0000644000017300007100000000302011443252104016046 0ustar kmoskmos00000000000000PNG  IHDR szzsBIT|dIDATX[u?3sfe֭fe[i+H,nkE1}} IWL|I}* lKjug:|8ggnM%~~lj7uw \sZx,OJM|Cec0fГve Sn-;tfСf|hL΅WxIԡ`vN~}V=ȥH|[p~vu;v?"(BĀӣԫZ=~jcz 1 2x]fxW'Jpx{>ߟժqC, 4i$`th7c grQO Y{}tبhVuvߝ1W ?z(n= VˑnژVB`V[Eu =ً`9LsϦ7yRBhWIF@A[:a 53]-46EH`DّEJsK/imX"jU$32 h7^k(xڲ^$ni^]*ċ= C5~|ץTzk54|E,D8SAMf^g'.r.qHg 8P#F5%RRXGQk#Ho.Fx4Q@ytTub*h(݀62rD⻨b6f ճ_Ĭ2Hc̓Jf2H 1hD}l- M}ɪ DPWF}+toX'%8OSairjN¹~?eN_]E/ԐkLx2y@C}0:CB}U__ӳݶ˗R ֓\W47a;;]}Bqȕ< ;Ou2wr\:O496lwplxlH Xg@^Q\0|Km,z*bO1Wщ3pP^?\}nϽ#M_z֓y/ sCmUv$ ypy3L߸w&#g?/?|0p'4c4k2@:ނyBn]wy8)HoJ['/<8ӈ&b%/[ 腮/;|7/|68P'~B8l?<( jCDDc+ڤ mbd, htzCӹ?Eg1wM8mIB' HO8_ uZ82ᎌyxm\'M~YZyyH-W*j\j@ym%n^ӘZzѮKn"ql2[ӋͿubă Xq5=O!IENDB`babiloo-2.0.11/images/accents.svg0000644000017300007100000003666711443252104016563 0ustar kmoskmos00000000000000 image/svg+xml Jakub Steiner http://jimmac.musichall.cz Character Map key map character accessory babiloo-2.0.11/images/drive-harddisk.png0000644000017300007100000000360111443252104020006 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME)IDAThYKo +F8 #Ųyd1(9"a2Y {$ςXB( ȸtW?Tis"Ԛ;;T5FQ.JO *I>~4fsr|ζ@y>VO$bV<>jZ[!{_x2 ERdyc gΜaqㆳofhR>(c}{ !0 ,--}S,_VWW(eM atR 4&HYymqX0zbY8KKK B|,Ce², Xrs. aHR*y!Is0 QPVݺug{&l6ySR 1b4PxJi~JxOaׯBふ7o". UgY<%`U"òKS1;wW^5&j eԩShjaA@JWOZSaHBgϞ+cȲlueei_j5ayJiF~= 3p%(kW\AݖeY#-,>E_?{(333(˿i4FhZǏ9i0`F55U &FumFH/_6-˺;@eweAHȶ.\K҃uxYGab~~^21 c… h]uGVu.!]jQ[X0ILMMavvf@fmۈX mP(MuSTE4QaqqzMv9<!boJaW]:bJ/a98lZhZRԚ28UK{v qPTTO10H.b}۶Q*.!#e&89dY<18瘚iLJDQ(8 " cYDii <ϓQɻ<>8ŋٳM?,?1y(`&80 LweKlT i4M0V Hj5JFɓ]SHy㨴'FQ~Tt Ð, uQ.u8ظȲ R$fW.m|MOO,4f5D54Z-|6> EG>b&s}B^Q%aif0Ho ^}:Nam—HkTZT@TUdY$IaKt$O?z c aJ2o^ A97cj[5'a8$|o$*5.9[,6 image/svg+xml Jakub Steiner http://jimmac.musichall.cz babiloo-2.0.11/images/accents.png0000644000017300007100000000366011443252104016533 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME-@;0IDATh]lWwfvwf?ۍ5PJ@ (mDyE*HmJB T IJ#EJRT҆Pcq(_u8N^\vvvzDjf{sޅ[Vn=)E~bY֚rk'0UU3;Y/i={~C2&uebӜ|d۴?7x2NaYV[ POXʡtj>N}Y& X~HIz~2". h*7 gw2c6"1jʀrJvuuM.^:GwrnZN̓JR9A4$z^IBGtz>u;vl6bb/Hi)JB!_+.hѼxasI.ÒH(B RJUA^jͼKMi@~vܝhauКDzxr<iiM' !}i{B p]lt \'xF=>>N&eM Cv4u*8 /'׿Ç_'RQ͋^eyfdz{ߗ;ǣ73!Dk ч {aL]+dJi?.%X($jav̿[l1iy^^ 3,={g,A; ES.xN)!?wۘ[xi?s M\ ި!T <~ϼys?p?246_o<{-R6AF'vu#%;Q^x| |]Ca%}|S9r ֭[/S< ҖQS#Q'[ P.ټe3[>n˵ewh%ϺUOTOݼ`}c Raß!۟67n`b "<ˀ=Koywپ};Rg]Z ,=ԓl۶SNY;>2 {_%w.W'^Niз޾-H-dI40 *;[YÒ^ݨ$#)Hd@ՙ[Rۋ@EX.`lR*['lC7.æ@w.݌|6:g5c EUR1B:\^wBQh陫B"w2scCҵMXV*d\1Mg6̂0`62@bUU&zBL7ek=jĈtvF.8(%zXcV_kBУ˒y_d! GBA:='5?Y0 mò,:1;;K*4/nN! tχBfޙfBQT??q+(ٽ[C%asRGBbKGD pHYs B(xtIME "dJ IDATx}w}WU'l"O`ZlEPͤ'KSO9=K{-˲,$[ɲ(M sN<:U=3K 7ꗫTNZV0y|߁bR!u o8P`Ç.888h n˹&~?W㟱4NT ~W 4x @ף 8Z?$TӼ$q8PY]+( wuޫE~a1 pr<…Ýnkr$˯;x?888+l(7ʊKp)|8S;|?uѼgw^f&L:q *#2 y꛾ ]҃l.@ z-,#JUpˈ X,5yGYϣ;c[v&c,=( YK(FtGJ# ~*q9>v1 JIl x `Z90J)87)_g~o [ckҕe 8z 1d2 w!@V 3Nw !|.!HRuhfq# ,bqlfRNT(Ws~;ӺNs^HrG2?9p%/Mq֡MD/ ]..i@|1o BC&ܳ׽"v |]Wg"I 33ƳO=bi\x)&lMO&i% +(zceI? !W= Qe J ہej | nb rFh;]y)43#G<DH.5Y|&ћ`hK~^9 Z (q=Yh&'!1N* #Dê DmW4 Fy9l~F4\ qW Bp[oD[ J)@pbfj l -`$vR (sFF!|7#ݏt"'ZvDYڌpt(0y$ CC.Z91 I  Iw*;m !02k3 6Pt 9]&@A|ڕ@LNbzngLȲZ9ev(94U4۶~fg72=^<zϽ?@s +H!|v W ޕ~@Ta8Ǽ aX*K!ԻBH A@,(h/#_ð'tww\Xe;.Re pq3оr@Lxvi|a,1AZXO #=c~.۳5b{hz! [hlNm?>+ >0eDlE4r{s9Tu8R=7oWԁXb]Z깿{/0W{.ۃ6Lf‚DsD8pc݈'QG3|\pqG[&Yw.4@$I]7}a^?p@p"mn_Pڧ+Ѓ|XXxw<>8~g.}?Bֵk3PN<G7)!<޸gO' 2@y/">0f*3>Ek3Iw) iJู 3g}ON=MM vx>6Qࢍ 'Z+v^[5ǡC|N\q gO)(e MS֍;??p?^o-2O#," &F=o t =t= 0UZ>C?7ӹnhrSZ %+G۷_~oqgƾ[!g:ITy! "5 @+=瘭X Y}E{{qЫ \\M7]P>kZ|/ Ox aHt~=A;ptqDN;7d/a6|?~A4}^\;D%0F}AC7 cyw]ϾZ{,(=G×AرXX’"JU0 _Gxj1bCQ5S!DH !=租č~ǧaֲN ͏?"⊡S]@79hx 45`vrw`>/>?NfzVX`X:- Up܁|=O-q1'TT<TPPNA4"\@p><ߋ>N*_q; !$ G԰ 2?7sr_fnt =vo_8G}ͮa}EQ: g4K##Ŀ| Յk>ZH5N)i}tִdtg} ނo9-邯Ͽ7mޛI `}s?Ja^IY~ggcc7? Up |?.BSAhoιzW _*Fmz0r+|9T+,H y$;RyPJE(jJ%E44plHqWr7Ì; \(:auI%h.[-OfNTI!ÙP%} I_Hy4:%,s`vnK*GGQ3^y^ֵ=ϻebC#D$%F(d>i[(: ? \ tYAN%C72ij BS+'q0B@)E&(!%lIhP̿WewA0q Fu6Bx>!\"C^@$HL$;b"T{UU\JWX@Q7 4mbUN$Y(AkЖ3D@lZ2,a$}P|xN,7 oǍC` P_ @`& Ж'mά%~BR Ys\#/j(}5LB( Jmo.Hh3Im۠:.|1;|d +2PUBFy勶]K1J 3|^ d9 C'<'`$y0tsw,C4Y&epcrC[n D$P1`Z|(G<_24) o--!A30kmC&?WRmo)Q h8N3JKvt @ڦPHVf09 h$$~OBHQ8ZlCw11TD6kaRfQG5CA _"$=ko+#ddr(7jAncV8!H 0r\DHX Tbt0 PFN:yS8PARF&RS9bC3Gepln b)`~n0֑ؤng/G9)[Go:1 b8OByʨ#Hi ׉ % #x =R@_ThB^8ΗrObH1@Jry ss\V x~Y6i[2hLg,l阞`~Гޢ@ 9KzӼV#p;5M'Yxӛv\WP'ZoSś[\Dqdrv(Q)"y|Zyy@)gbfnp\^J(!`B ]CX5,TX"0Bk'0[3tE 9!`n xȌ1G:5C<""ضZT4F@f0\"Țrj-Q^{m^x>&g09U` 4UFPu:. :P PL7E=i{#ȭ F)V&0: 0t]v)sN (@3>$$ ǦMcCER,ҜooS kL&Wku4D'1}X3æBX{W0!$˲2S>"fãsK(W*$@U)//K jw^pg[M9qjiP )/Zӄ ɸ@ͤ\+|PUT/A>B'Oq]P d [(r3'M <ɱXB\JZVwEiKZ~y/xNsBcA{Bc<G$EJ~0^u B+a\ű%pR1Y2bΌb plF,RBNU" *n@J<F@QǶ] زQ̙Y:-bRomDJ*J9Zy84%xo|lr [r[<~FIDAT99zq g_b &2$F1>`Lrf I{'g"uBU% ]B%zᴼdp-Q#]Be:|9MJK3 &5ܷxF\RyuG$ %WHy:7(!tS*'qaə2Ϗyڒ[DrL3HD}!b9YaHx󆡯Ǔ>@~ar3at0QC1o7Q]T6*5 O4PB`h ]L+u[B#֍vE:~/ck\y啪msU7LC@r\q<O1X`+ ]1z>v=8 E%A4EHP|rslK(I1%Rgh7X)$M\.b JXeۇ 'A7, ,wDGg8:Seh0Q̙Q,1ClT<e9|.y0c`@ DSu XzRF"$=uq{a7`b1hˆ`1R`_<3՗|1f[6vU E.m82CSȚYnzI$1vvՆj-7o7IalMI2{ p9gBG}\t`{#(]v.뮻U$J եEq; K by G`d$> sf;ΔAR 5@)I"+ps>>?'( bƍ4>RLk KGSVGKt/:~iKޔ)D\|T@p 0؍vsV4[4]hɲ2p(3vnbʱ*g8MoWP_gP|3fq667Bp/A(0i81EN;}UkBDLe992ϮIC' dbi3@g6ɒ%ҥIY/zA3U* "Z^ ̑a3%DvˠO,mvZ}I{-õѮWAzhi>vDݔvXYK$ذa8i)ގQK:~Q mI1T}t{,R")M:"`aN@z@Ȑ(eDɴ,lvMѝzA7ݛ);Z)"nx,S.y4c<&Jϭ)(EB(8Ey}8tt4ENaٺi Bl\SB $ |wv8G09=Wl' ,IR{"Xt9q<'(v8\  ۅB>CI$fRi1vCf5+zMNArHkH|;̓@:a͉.$:i 9^j (ju瞎Ii|jԬd뚓!)_6"ħ%{}Q5!cD`be,H,[fvIբI) ( <^-`m0v$qlXV6R0h[g0c#=^K\Hl12\ pV>|}mA$_ W7wݰ,Z)k@~=4 %[UY&} %]]Mb5["q!\E(LsH{lTfck:D!$p/o}n\;q-TcwYl\>QR)]ns뵚,KGL_G)r9GQs,'\2v"3niI,ό+uL.Oެl43LLL /c~ oG)W݋wa7}7izMUˣwi0 #T\x+ hgoI :2l5md 1 3D@.:n@sqq[ŋژ/aƚ7 `Ҟ~8 |HG(}z 8ת +LSA.ö9u nDJK Ìwڨ ]7㖳HJqռ0eqYb8g?!C[C%7Up]5ޓJn/F)&AXhqTȳ06}8BP,;VrEٝI,nhKR>%ryHCQ(I(*$IȐeI:L> BPA @>|_ $ё44 !p ([Rk9g,iT 9@2P>Tfaz>{>$ǭS;o??;/_\ڶ!$=چ͑H׫ɄVZnI)D~._Wų<xDއz޹r6FU/'+ O♧`X]Y$}wmV.'V+7(>H~ x,3&MBW'F-#IENDB`babiloo-2.0.11/images/media-record.svg0000644000017300007100000002657311443252104017471 0ustar kmoskmos00000000000000 image/svg+xml Media Record Lapo Calamandrei media player record music sound video babiloo-2.0.11/images/search-filter.png0000644000017300007100000002201011443252104017631 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME "'M: IDATx}il׵MRdRKdڒ"[b;q^-8/{@H ـ3q C yx@`3I y%kuƎmŶ(ZR$KfdѶVJ$%RdUu3?X.IʶD6(f/u{wι j!X"XB)mR6BqI)mFBH9D)HF1J("(m̶mʵrO\B<@²zB!č1Rfr\S.k- -R" RUvB" PHΞ=Y5L% Xj 1sūSN;)]ҕ"! 6pm|B)a#]]]o\ݦ&DT=Ż SQMRM===k?/8qqe``?>00\xQBd2 q$ … q˲ ˲֐@kk鮮7tӻw}Y m&+GQm0::J:::୷[oeYgx#Šy{v\p]Zp!cE9畾MMMҥK0:: }kӤⱱ}}}wܹ}Qwٲe}ݯu]l'!xfRJTU%B8}4AD#@P|qw}$_eCCC ۶m__t{3뮃ŋ @QQR0ΡND"7엾~2EUȠf6ضmor{g_%_644{{ ~?qы/RJ: Xl8\:L&_7G?Dl/:BpplB|pp_߿gyVݽz?QJO|[/_~Zws-#RBǜ=+{ցs~]vO~r@Ju]Xp2ߴijD5";w?߿%(*|/${_:^H$VZ˗_GԎ;>7mߞze^2hƍkJ? !~Í7fP%0?7Ϝ9UtZF{춗_~/ Y*ny۽{lllRtRD"c֭ϵj y衇úud BCP(O:ŋGGGrBƠP(@XZmRFH$*NRD"566lٲ{M 5 b1f>_{O~7)oŃ;noood "qo~n: eY˗//hlllkR e(fP(eYkG`b1HRn(5/SU톆c',X{inu=I)5׬Y]b}=zW=1/C B:_dťKZNeنt:I H4hss3D"0 e뛦 B2 iQmǁ|>RJ, J$_u]]+&c c C4|az*!m !#H?L4m`Rlp2;410 s|3V?d2)8{D,YoP싈daYB5^WŸmQD5MSb5 NhE9 `&XUxmLIX,\. ˲ι-(@AQ|,GcT*5hFy`D18xꩧz"4M˴瞑H$׭[|xx w̙3^z饾k%Pud81,HOOO;D"Ý$`|7IsRq:BA:#!BtpI) =h&E1Rj !h9S望0A@!Rp5ܹsnu݊wޙ9͎|ʿ*ؿO?￟VɪeP('Ʉ8DUUiRuQDdRJGRJ B8RJ&8,$*$bB "n=[?L3 (pB9Mh4Z^zuFu8p@eY IJ|g:y(xጂR2Ƽ=ѧT[f ^mr@D.зV+yA̫e\N]e͞|WWCLZrرc;vk.Sph0eRɶmS rRO)GU{oJ)!Txü_ FE& [J)HĎFV[[[q%7CCC`ʖ-[Ҟ2=oހ_2'2L7d2 o~րRJԛSޤ !2UrRuoR)sy9)l݉l6{je۷yϞ= @PUd BHdW }bVzAL' 򇁁PV$+Vd(?~hh/W=Qu?````^qߛE9|ws.ŢI)B$)A"<čb* +w<x^hQ.J 'xbٳg^ pȑ۷o?n6 «tRJ|SʂJL0Mp#$HttCe^FH$b绺L7ٳ'[,/]TJKlْ*柉,ɔ3nTxLG_vҥ`<XDZdI1BӟtQ__ߟiZ~ɓ'Gvܹĉd:H]9$CSUިw@_I4MwY:7 2 ^pa.JBY~}ѣGkW_=nζonn*14?ܟ9,JVT#8TGeP\A`O\3^2K'z{{B0 KuRH&6ݻ{}'_(ڵ-[) a d$XUKo wF|U _)I},`k~P(={ؾ}{qppo6t1k3onzZHM钔9[D# 6%.}ccc񑑑f]׹v4s1_*׷g`rߌbZhAa.0d뤔0 MuEQJÔ>H !/{I!a|29bqMʆa]]]ca؄|ǚ??{-6 ¹ ~j\O]l:A{H BQH\5LBr8>)p8eY%!_?To/BO2_y?Jl@Yn_nnnmmmB " \.g9#@w} s~$w.\X`YzQ4MMMݻw8hN:M)m馛,Ab Z',N o"zn@!.E)pW?k T"-XZhp4!D(ׯtرs [o!V]v"RB0F !%oT̿\a J7:~E9gΜd9ZҚq۶s/̕>hm޼_vL"˲is.@Hx +1,qҥN&jTx'RMTEQ4GoWt6MӶ,˜I?00BUU[4%(sgyɓg⽞8EQ ˖-%%&BD$hTUU@H=BGRJ۶mۦmۦc~˗/7jj555e5M'|бcǎڶ1ƬH$RN$]vg}SN]{ZS/putt""QUz j$!c,!Q rYJ%V,E\V)RJ!Tl.sΉ(4"cLj&܄Pͷh-^8J(Զm, 8hYZ%-8s1cBUU P#_Q4/c -EQPUUKEQeYdʬoƘV@Yf.nB0O,".LVu/:j 64@V]T@ ETb6IAwcP+q8ڿ S?A? <˩܀_![~ݼ{LϦ 0A0o:! L]`/Ո? "OWl@BF}ts G҄OT%nA`𪼠ڲa)PxԪ<@FSf HЭ(9D|-@F3^A}&m*j*B ȕJU@YRq?j^@XV58{D@>O`&3UÈb50P60e>c bP<@HV:9F)F}hV ( z5y8?Lj` 5D${xG56UQ = CAP ika#qPXUasEuX$ UXIDATX̪g_H)AJItp&~`upԠ @)儽y>#Zp]4`Z@= Q7P,QqOe_8IZ:j- nt[ԣ|&8}Zs%^3uԚR(Xm*qR&Гի5Etj~ty$a1Sz =+(Nb~;lI(V! KVAY}ީ!a[K))"2)%R*sbF墱XٶBT)%CD2#DJIqqN(\E0cfê,i9$$=:f͚8"(n?DPZ*Pǡ, ܹV@ƽwI?̹;WK0=@JիWk 7кzHCC#m9ڶ-٬Hv.sl6[xbɓ.\8*=@ dw # ^ Wcۏs!dc su* %B|va#M!_ 0½8Pv_=?}kN3ٲ,)6K,w ZU{^e C|#->pB.ZZ etwmы@>pxȨj 3׌@Ty@000 s (LA4 *S)~:<˫?M𔄀ZW>(~*_; &p]kx?̠%Q@֯>ϞcIENDB`babiloo-2.0.11/images/dialog-information.png0000644000017300007100000003321311443252104020672 0ustar kmoskmos00000000000000PNG  IHDR>asRGBbKGD pHYs B(xtIME+y IDATx}{U}־\fG Đh" jcLy >llM|BHm&M>IcJirio(h \^cgaPLrxsawY6aHio<9@@9Rck1,zEagI }vmI{rJt~526 *@j fFHfyQ|9!r_IF*wPvNd%BTR%}v "EH#$liRt,:_FOWPQ|RRwR(sӎXw-!35P&"C(+5c\@1Gw B'C@?B'kp3!uIa &"#>H[!(ꑥF(5o H"aw1¶٢E,Ypg6Ι3aƌT*L&d2imR6R>/r+ݹsgݻbT0d}0Br7VhФ0U1pbZj%\v綵698nww^xs흛6m:S P'thbw[ m$|eY|s=5]ve_ŋ>s"vڵ{ݳy[ \(լݥ ijnf &j5+7 h%i!Ӥ~|p駧o3.3ZN{n{7ȆQ8LC^M54R ȂEORWnmڵK.\8ݶ(/ v}ݝcAR~&'0-Јah!79֮];gݺujooo}wņa ~>û>?۫^-(8`"I1&5C0N  $SɷRxGvZꗹ\NF0إx2W!k3E|+߫>Wppd WIcj} >\s#w$j`j^99`YtzrOnzet:u"/]}ضmv/yK.~1%@˔4NV3ۛ|q;ڧO9$foa-.Q8#$|9wUk"׀;5k,O cW}ʖ` #aHX&l˄mZ0-`0BJ8:(\J EBAѕ$0oT\|NV} 4֧ODInܸqۺu~E A.+Sc7(hi ?WZ{+%_gO[]0 ͑N%Nڨ N&A2m[08g RBBH\l\9dYds y.ֈ//;1MYzZa0MDǁ)v( ٶm裏Xl9Os Sx.8D:a!PSAmM-jkkN`p086@@|ǥc\#Fnd#LGΚm-uFm۶xWl!^JH%$n@ (PG.Mwmz%K̛}?i0S dRCm}- nj'- ZS8mZM5&jl!%s9s(==y|/`hCF.W+g7͜:)$عs /": j.w"A! i߯A0svl&<+.sB;/eqd ԠL- {a?W!@ŶRWn ‹\! > xDQ=g66[tIOr-L.`?{jHM-I$=gW]uՒ͓ߟoیIP? hڈti3ogo?nx~[]}ceA}Ci1|™X^? HSlԧ8^=E) 2X4R a0b?we睊Lrb…444d7oCA]{՝$ZAcU nݺ97~Gy(sdCݔFMHD-?k>vF(p_=^o#[xX]2W3n aZ }[_ƬiSq$ z !R5Is'zϾо?j=P">aR ꦠn RZts?]䱭_65:FPtIۙ` ɴJX>Gbq;l1.9O<ݠ`0)% %C0B$hT5ɘ۶ma9e_}Oz?TM HejHS~fo;,#Wtp>zY?cH X=R7K̛P,sٲe?я^-J)D U NTGMlФw};wjᕎH$H"SۀD*N$`xNp]׏9Ԁs^q3 cԱsN)t%(uLi@Tt኿ڄቍΝ;~ 5?BjR@IAQ?JM*Pnݺ9֭[>C!jaҰ,{k*zC&iΟVM"@%RR0YF09tw0Vΐ v+~);57o~| XJW|<67߼b"F`'H2Hka&0L+"/,‹νcu)eυJes>e߯vtҵH3H&S<ԏkn~}W477*la409^.U쮻Z/8<Dt- +NG~!fB&GQ$p]LlF&Ҍv ntV" uwuRmE 1Jn }aIK-'RRb›mٰ)Z0#nY~^UUuNERp|0vl_D'H }P1GZ$i ??wUW-Y|y#ivVqU Ujjcƍ+ #~8wOLˀi'a`n٣Qڀac#%~! lQ` W*S@׊D˂El vv2 ;ix.O߈a|ƍ+NLFju cONc~'= 0NNg`)fF xYQHd5:+R2~O8H|~o?@PuS9/L⥽񁙍8mf,P(}ꩧ_MkWYJ%b>p/4W~S90 Ӷa'Vܰ 3$*"+J [1@8&>kG˾[*_pξr)7ðaHej`)0ކño\J*0Uإ*ICnݺϏ{ٛxETܴ, RrpZVjPash̘,\*)zAxGhO "F H)a$cR /`3c]׺Lώ;uyD0XfK_RlmⅷzaXIX4)7r.eDt25+$qRlWϏ p}$P.CySѱ 2 Z6T +n&Mzmy5 h4c@%P93(}뮻.E|BA0)'jb{ZGR.NF1FP6A2dG8gV&\|8p4_nF=VN5#"k3+ΊեPݵ{am0h| ڦ"{O>=V/vR0g0 } <+w2 A;2_N5[Mc>tɗz*`( zCBC~ 0I~.㹀VOΛ7/sYg͎sRo vn f7 "!%`&` !Mo,5_/~qa6DJ49,3⊅zcη Iar**_NF~@ xN5$t px ؄J*V$( *̄L3L<Gƚ9a0" s$*UrT*RfʕMmmmߟCQ0f3T((e.!娽:j?׮u}y(#I|%P%D!$  _L[re]X1٢- 蒄^J極B-'èf\E4Re iԻY|KjqN[=nÙjI{UO5RJ\ΘoZBI _tJSakmԺ/k| `x#a4f- acRQH&"`ʺhW'zHP>I ?dFt*V +@0M'Bo ]X#]@2z#95{QE H,)&cmPK+¨!Ia+ף!Q /8sjH$vLW5l [GeDc>j 2BT DFx^h>6hJD8q7Yd^ǥW-rZHǭ 4_ݒ~O9"Uy kr|~N/t&w.BPc 5ɲّBH8:eo&V_\8 0ʷG.B2~>hjmkkEa+tJDUߦ Ԁ p3S9 D %Dク' mĕ !ꗛӰJhQ(T/@2jpF0 ×{A*l2Q\GEX5AS1zUJ@Ҏ5tLeD%dX+OYm< We  >! UCdZ M/ |CD4P rTG~n+乂jıRI,+ʄN֮X]î 78IzCZ~ΌmK{uQr=5(QchWƼEM&!I9u6/oY+N|Һěc ;Ww,޽{c AP~ SHU@,ߌPs7S(૭ (&A~t7e*r9j R"IDATZ1DcW{#ܦLkl0Xt; si47M ?ި,VS7_1DbQ?y~%]1~kx ęcu恰:ep4o ?KV,j.Z" G<p&8:zT7"¯#|pK9AjȞW iSMJ0)bX+ !pF{qjOi);"d W0=sHCxP\T`Q#@`1/+~hoz -q)U8ݻt,5 P1B ŢՋ3`E )arA h<UEc/"79q/ŨvjF'pFԇ /tϗ/08j4𽬠Hc exw ɑ?o[AٱpoդIET=--,c$@}BX=4t# ިAoW_x:lCݒ˥M?dT^t3Xz&}2GڃfqTT2&*Zh(ktpM &ǧ>|Z,h4/.#@)Ę,}iӦBT3BWGΞ 1LtG>@MҦ㟽Xq`U0ӲK+,dڵk1%ILuAP B I$Pq3"@dC5둿tb?PƻU.E-$@17JsqN48 HW) o3H &aX\acW܀-O R6E`"*أkW_|fhXe5s!+*@SR:<Dy݇ BX*AJL` Ega eږ4&4PJUk]s Y"ir|Ï?c*@>nNGTEkS 3! |b.)>zd^G+) $zL`z˰ >Qed^2WV a ,a[*RT +W0 @~^WVDTB6_ „ 5Fմj |&,U.2$m~܅I{=`7¸o֤?`iG%! ٳg䥗^z;zdrR #8Cj aPoAKp\'[F櫂 .`" l^q}Ro V_r̘k_z饷3o=@]C؎I;*K {7YIu?P. pN%%Qo,34sB_^8Z!Es] ,6Vq#d~sbuiW\GrJ\P AJM.:k@g4#D//M~hkjw7\x3p?HSAl-fѾu;A+ƽuBJ82 -:hS5M`&Mڊw4UPcwՏWjPāC828B]uFh lV;U qBQ4 N;h*6]]]ׯ_rajˇB"ΘQ1!qOZ&]zG?G_{Kykđ 5p`m ||^s/5t.=®jp+Dnoi@3<ӷjժX H,hk9-jdžG5kl!U Th"O ڗ(ٺuчzhD:voӴ@s DPH;nW[,Q*:EDn7tpoMCZ nQnofxKhd2/jܹQ˿c4,qh"(Tä-09h~+B<ȡj 5z:x>=!{vs9FFF 0 aTv yKT*ygZY&Zq&zr՞nH'~"^E lXX#>5եpڕ.E}&q\oڴ}sӏFzrCQC?ӄ*8k(8 %u9 b}5d@]OI0 \} cwTzܹsυ^NP__[m7ɾZ~&Sl6{GW,[ʺ iǓo~|n$TekhM-]֦ضmۋW\q|rE'7ֈ߉"(Ȑ"$WPU4UV&Ϗ'6ݩLw跢U(dH 69>rlʳcWYzӪ$.z5&/x AE"{4wqޚ5kq'}cCy<زϽvz 3NuН`RYXq~; WK6nܸmݺuz0؋ ߟLL - 4馛>p뭷^NS8CxouCG{v6MjpڬF,loNE۴yfo6KYbj>`y*(l"믥Q!̠hѢ|VGC}Y d6tթkydj Za 9{2&g!a3JM6]tW.a!#|Us0&E%RtrjЏAWpڴiǎ;tYT*~__WGqT +y@Оr}U+NyKP DBok-'>0 7xu݇~x?gi<_YE/4 y>'J{-rAj)j 3X|yƍW̛7DΚ5kP؇ xVGQdqe $FV$qiwۗrP8:o]]]ookwޜ,])/ѵTꦅSTaH4ms]vκu>^f qnذa6@ rԤO3Bs|7oF1AB}5bƠlzWZnᆶk.Ypl9?AB_~ 6氦G5߯vb 힬VDe|hc#~n/ Ξ{n7xCS֏ Jr(̩F% ג:X$CSl.k-^2!DGGǡ]v{l޼7a`}F5nh1 lAPx~{QDN! jz.+ķثVu%{mMծm\q /й}M6ACCP-,ePeIxd;FUJRGu۶٢E,Ypg6Ι3aƌT*L&d2imR6R>/r+ݹsgݻhh6P3#,7GhNJ5 緂J t?O?%DxFi`A27O9; DP|0n[D5g5ٔS{qcNjbeRd,\u $#d=E2e4-91ԓv"~J60*֌5 ȟ,dKv]!YI;Qf!ʺM[mO[~] |-E=s_Wz/\ۮ@$=7ơ[> آFq_c'n Ф|To1u*~G0BQ1e, e7\ݩIENDB`babiloo-2.0.11/images/edit-find.png0000644000017300007100000000531611443252104016756 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME,$e1 NIDATho?gf׻c&qi*QȅixJJTJ?j(Q&R4/A@BD 7%: 2̜>ػZֻڦo9=~s T~**h*EA4nYibYRʬ643vسRJ=HG)V ix*++1M`)kB`{M vC*BeY\}"vb"J*N8YمKa*D} dtb3[*1Yp%10,&1 /6?ʷ\2)OT/^<)6<@,Z$&& g,kB!|%Kd@R>QOv/1(:T$t%KL**_BӊB30s2!$g ͔83 UU8?L;hsK 3i^t]LMek JIv 20388H8Fn't:|~v{sss J2,R1ϙ3ghjjbڵ|nVUU4ox<VZi/dtl{{顼;v`HL*<@=---ܺu>Fz1i10sٳ̛7UV]Pz?52*=*=CqηvCWhY?_m^ݻOfܹӗPn" fB+Wr%u4ԔAڴ' nG8c/G!{---|(vVo_t 2ya|{yTĦd C MMsq8|̟?R€3f_o~0gQUiSqTl)HOD.v_>{\x۷O} ePƎ㴷}S3w|pڅ*$2> 4iG image/svg+xml Jakub Steiner http://jimmac.musichall.cz Locale Preferences locale preferences babiloo-2.0.11/images/system-installer.png0000644000017300007100000000502011443252104020422 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME((6 IDATh]l\qݵJ|$ q4*I P)MyQPR)(OHU>U"D["ZVBiBc6M{_3S'v7q"ew̽gΙ97ڍv}o{i3BP9R> `G7 _ؘE"fcG5I{s܏3btt˹%S+8SWP~W.֭[;w=; 69|gϞ~}ӧw]ett ټyz+{a.r O>R;cI/7)缟lݺg}vU6y ez-~R8 Wf>]]]< $ C=?0o.d> ;vˀtvv3p) 0-_ 9eddjJEyXlk֬!/ 閿@E9rM6]#=JOOͬ^7f}8j rA s0p9<ϛü,];wQa%MSshiiiaŊl۶:Dkks[Y(ESxWزe 7o\.388HX>qEZ8 Ð6vŶmTuww],{{q3qvd8;Ð>(B`:8ib˖-,^_7twwW;Ox67s' Ð1c.Mv(+|͗_U͝Qa033r׮]< Z-);ڃB-@jas!>;HSc#g E!He˖ܷ 03O tBuv`mC #_S'yxj qb's\6_T=&}W_>( tZ#!CH o?$!ۃT+ RRԑ$1ZKɓ'o^N^ZP Оə!aLLb-QP^BXS:k^NƀT,떟5A*ErJƿ2Cō$q O$ QlKl Qyׯ? gΰj3XuhC, MH/K{2>~{ ~n 5lܴ $X+%SRRjti?yWN%V:?#Q~?hXl̪U4@=?LTg(HtsN""d?~qn=br46"ZgXTXH?$ɯ2@󕢐y[jfACH)}xZ$ HeA|>Oa"Z[a,Ƥ,d߾} @TzL~oLg>̿>)Z+(%Zi\¢V5DCS Hɰ34V8: Fs`]{Wxe~w b)JJxZiIj@̤HDBf@ht2d. NX,a߾}~`vZ~eL; /xtip!|n A)uE9ӧ?y8Cp~9#N(!lYD>#\y qj) (% 1iHƘ4'N8n_z'N:u83 Mh797V[ksIds[ouΝ;_vm}ݧsvǎ3CCC{T*>>r@PgEη1@6mVSSS鵴 BP.)J}}}x㍟G1`ԕ32UW\Auu]׭[}k}߿ cƪ====u ׮u:SFm5ibnh׹]$FxIENDB`babiloo-2.0.11/images/media-record.png0000644000017300007100000000377411443252104017454 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME+6$|IDATh[lmggv^bFdHIT.6 QPSK(r#'TIQF!EH}H)ZU(bф5" 1 11;Ӈٱ86]7t4gΌ]ΙVUjU?6Rqr(@+7 9@L} k`@|>_iuy^1MT1?U"ad}7 xoY*&d  >7+쑽mmB!J r;WL]Zq?,!VXLd2kll\-~L6Ҽ$!>1}j V>feeuuݹѷ.%cǓ8.;<<<0IlGcyH/ z*0qB4ÀU(B]pСCq|Kz- x<_QM62?6RS4w xpV1j3cc$߹zWRp`OyUKݻE1X#oyIt V˜--ށq8WX6: ߶m/n:9 j:::<J8(55A͇qCAXyL}R$omߋ6^6~<+Ё^}lBf1!1;/ f PLJ`ƍ+W'7&&&eYTJ}rs3G8!s:밦mR 11##n©}$ʗJbE=PSSQ q̡!0]!mc`Xy|,`d2Vy$ re2~TUx1XN`2׮{uKmݺ5ҟ;R{FG\M DL_cN^O<_J}e6lH,W y_l`>K>={$SS0ޅNC~Zuu{Y>ޟMjZrǎg ={6{¹sShi&AAeU(@O$ҒN^b00P8}t͛eX*bB/[r,V k1Xr"'FITjUZ*fӴ#ucIENDB`babiloo-2.0.11/images/dictionary-new.png0000644000017300007100000000451211443252104020044 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME+ˊQIDATh޽[lW93ً׷$Ŏ i%hBQB RHqy/T"x#/> M@# *AC) Iķ$׻9A!a!HYfB9+`mHAZtB0`i`hUF(շ"DuQ`(V"Xi2~XSۚm{/2P(Dl*4x+kܣv LLL055d)USU[h]ɂ]s 2$f TEl%g=3MŲ\m4("wVd61@ 6&d$*![ j)P[׿ b&&&n0dW(D(aB(TB0*$Ձ 4ptiֲ[[[!ꗉE5cQ6pQ'*D2|[ 2RJ5 i qDINM38*Znd&16Hei%W=:Y7T r{ƀpq&NWBd.ǎN#d) b/A*ސ]f4!t333- l3(C`S%D!ƍ[b*+-!=jȠYPAFs""`hUJk+~DŽ8 ϸH {qfgO0>>_%O(4ڎ5!4n,..⹊d2@ v ne@-PTx;-&é)>rr.9XcP"4Z˭[PbH$mSN֞u~m_)A!Zk5NѪ7gff81}J@L(%h%b>)2=7V>}zBdڕZS^E>c88F:[ܱaxGZG'[' [(%&"7}pcCQt]^cAnkjfњ`[_̷$FH8sn~8Jhu\VB?\~/|S{ccc,l W[tBA`xI7#㌏H$Fyd~s㷯]T,7$*g{r_,G3Sd36~c*S\r\hЙ3gBcV''yS x^[5={>=1Pc}^A?yDK.ui9j#1X^Ғm+mg?:ɧynncw@޷9Z6a0j |hAj6ai&~~nt~~I2ЍvLͽ@?w\X?wb9}@2i k/z1Āp,ޫ= 0 (x] 0pkG @BD322#.j( `^ئ߶P(… _PJŽV^1d2:~H$D"q@{Rwf>9`} 1ƭkNZ;+"T;\ IREwIENDB`babiloo-2.0.11/images/system-log-out.png0000644000017300007100000000465711443252104020032 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME*)M /IDATh]lWΝڻMIbvıI -_QTR )E"UBТ"!APC }h!iҗIčFiXݝ{yv^zٙ9s܄aБ W |,<B~[qs\(;!5:>pwFhH!pE.牮rYe]|^xkA@^3s?6ZJ_?!YjA133õk0  ({QaAJz;Kl*)$11h7 ?iօ1(ZN={nXa.|bH.Ke?oK2M[su]RH)RJZkTJqR(<|>25Fn%H)~YղJ>*(}Ί뺩",8ȺPߗN6@~qOa9`8NQ+R27%2xGKZкz}];RJgo& X !RY+.cfr%vcLzlB:/B @0&ىiV-x[L8ˈlyGeH}f*dK$YaFX+3^w:gZٵTf-W"Ԋ\~m̿zꩭo_KhH3v@n~#G䓛CCB/,``}V"qf뵺ڨMM1ʫyΝrq"FyFVRA0\-^Ŀx<¦Y=v a!‹Poۀ8 u뺔L:7T0A8dHD1qpHɅV[ٳьĊsc&R𳯿β"BإEz lB풨T*twwbnn]x6cRb|DĿL 055EPXmpͻwS=v SHH,˃mZ5& 1FH`=b.\RiwÖݻ?@Xagy~bhޕX+ccc\rK.ӓv:8azwAj(ּ`@HITca! dGXمFLOO399I\5I ѵuq0Zc tJ47I 4K$0˗/8\T˅L(COܑ#l%~jjME[ɍhN\;|?u p{zrXH6ڑ̧ 2۶q~|o۶zqZ&JDi+"2ҟ9cL9;GKZLi?nV#bS4EVfr ;xgϲ}h!z¾}QBvaH}y@v](~%G:M%5KryzO<ę3CxZ'i`D&ɊlBR.\uӒsb*2r9 & Tg-=ˉGC^s>wD&r=%S(b~~+W疞w$ґ8QJ.޼3Apٳ wHũt=?h$$ pM:j%S]Rש..R׈F:(G-r</FcDNΥ ZKf Ku4rF QCa\JGPh1hрQsr7~THl T3ה YK">h( P,軵=[QJ{VB;k׮k_ ,6^mje tttPոxa\>T*IoA砑" /PB!DpOj[Oj%Q( ىT tuu184@?|?[d(Ҷv{PZl>;;; Ð'N__wKoE7H`h=QD"RJ{=>p;ھ1K%"ؒMxXfT*yw|CFGGcI/hA:3IM@R'OpUFFwq/$wXidZjKRIN9Ў G 7 z1 s\޴!a~Ro@>oZRyt:g#֘ubIENDB`babiloo-2.0.11/images/go-home.svg0000644000017300007100000005156111443252104016464 0ustar kmoskmos00000000000000 image/svg+xmlGo HomeJakub Steinerhttp://jimmac.musichall.czhomereturngodefaultuserdirectoryTuomas Kuosmanen babiloo-2.0.11/images/list-remove.png0000644000017300007100000000104311443252104017352 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME, = IDATh핱SQE׹8,?,,mA{kJ1L&e1ͻN I$I$I$IOb_}p?pKrAo :tţ@?}0*9gebcidl5{MxvЇO6_.nM55|o%}c[_X=A2E@en)g3>RJP Μh=Pe ̫MT5r>lx:dzQ\Tzv_ib]|S7{mO)@wf{KhD{\/R W1j#k# /7kf cDL"FEcjDӵ7ݏ$I$I$I$b/7IENDB`babiloo-2.0.11/images/preferences-system.png0000644000017300007100000000726211443252104020740 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME+fķ22IDAThXkpՕnь4zؖHe$YS%CT ,VnlBl ݄hw1a`m~I~H4H==}{X?G?ܪS}g9;sϹ7͸lJ>^nq?!$)a/3PUQQU|mtT_xO .¿>x@`ԎnXn~jG7g11Voȥq4MD-4D N,[¾fZ(ٱcW_[6}ŋ:%m$mޜz<۶=;ܾ;o+aڴt( @eBA|!Nm&2$wR¢[$pޮ,s|=O=f nhgN(; \.Sdr9C:6=;cn@fN,M9 񓏹H$ aY4M"ٺ㵅"EE2a?[:yz"/1ie]56n|&GUMy1$$$VYYz#?̝6u Ѣ` 4`LCG(@g[{YכPUUؾ/ToY fA< ,!ɒL BԋQMN+cOsYcovVLwk U?g 6m( rc QMFH,:U]߭xkJ/Z'{Rc.vz:++sJNv6(8T^Y{ZD4-* A?48E]sz:2AWa,m2QQ'v;n7}G7n?G5\䓏S \;|q[CcrЀ%8>Q[[9n~PJYIMalj@JMkh|>. %t!eƚ#[U\nԴwK1 11pC2aʔdX€jji?rodc+Soi8ݍO5"FFF,fah8~k4Q۶l2p#2oj/[[S6ЛW nt0ah8a^T'£!9y $$eFX_ɖxђB# ØEu]ik@ ==˖/{޳OϞ10W!/ݍA?x *%O*߿\jz -}Z V/+/ooaoW,9M&rțBCy p *%!5 ˜uaஎ=ƭXSSc,^5#|4z yf2xykv]Yު|&_KqڻɄ';Qs>Brx 84u}EGOdɱ}Lxv`[ lM:8"@]}M8ޱeÓ@5ia=5޾2!3EBGMS8},) ƖeK:k*N^8s%ҧ++b c @uqm(UnO=[ $yE;̡NsQMM h:f7\.7Eé;<6Bʿ:ή]ED"UUׇD(n+[(KDkVa?)fJKr1+˅&L^~8zZkQ7Dx\26pOlbFUsɑ#_$AUՋ=i"++ mmmHNNE*T98Y٘9݅R_ۀׂ "JjwaDžšlk-&7o^ŗ. ,pp À䐣iy,Bjxo,۩a;b0FTSݘap q&c18p ۂI=044T8h8n?r醆=/?T1//8#z!K%f߸`k@ #~wiS>~nonn65C);sbff A8gaЮ]^dW?-r&>#8DQed# DLKMDKH%;HS"L a';ήsg@OwwUՎ7]ɄI8ŞBʜ-Mʚr٢3 iQwrǏoz @{l9!ĭ51Đqyr:/e.!yƓ'@` ܌昢1.aK6$ΥtBRtmSr+eNNhP(/^Vq@=bFk5|~w.aĉh$D+% ^!HQ)I(+ ~?E (: 9eKj-tj2S3 RQG$?5vX[[~/~B73HΠk*7nkp8t8T_^?"AaϞ·+tNyYி{WͮB 5o6b5͈&lH 02\0,_V3O}{x;ڑo>B'{y m"$(ㄐzw΃(, @J@Է ]Ac{Pm+w{;W:44$?4O/>pΑL&a&$HZ zS7¨݌)4r3!1LL!P cE! F!T!PUBPPU EQ( ,˂x~㉓p0*_.PR֦%<(u{5 H! PHjlz8&U7BEA<ǡؽW>|G{\膿 *?+I8vWBcxٗpYs,\h4S(;&w_9o`>N~['|4EH@@f9߭#H+n9 g.O,LO?+0%H$P"vȃu;"yŽF#"URU` e1}wGE7 K:D~-_๗mm"w:~vG m{<;`C0`Bw=MhkooG,ރGEY)nmkO2ā[GUpGETɼԇޡqI{Z?8PX 5~c'mNC!.PW]Rhjrz5$?i#JAjRuqؔa#)s!@Ml\¡4Ko:afO'!w|_c3J6`u01xe*, pJTTr! x ޛsp;P{a=ex-!(YXBVB#2:c)E,ò)IE0)EsPqƶ2:CJ9$mݡkKb=I=8^TK@,o ͐(V6c 3̦Pc b+xXVö)Nvs]s E!$!ĹMqY~}  $OAȋ$:lơMH )H6%.`f=;|lLBUi ))U1*萾 ޾*T}-PH'x$<2*2'my(rRio 4M{w%lNVnJpNn (T 6]h(1]ӽ9)B15{o(έ<5)`Ri nZK)n]]4dwKIHNAC?9S%鮚# N_~[ee2Ł K~tJv}8͝n;RKC76M#1ƛ@)b$L=f'=gƎ4xշ~'X6COXG5H Lfu2Ĺah"ى^녜$*ׅeYP$J?B}hWbj|P957-؟ J)p3I\x!D ׄN4koatم=X_ŷv>越b%cZQ  k I59U{fix`bP \`g ͝ b߂ 끕5c(- APt>A㋆(X$(֢&|GK/io`A0 l(e]Y \a9`cN%W&vܵN8WVBZ$A1f. R,F&U6:/Id 9L)GC9kkGAs~n<܎ xypM,?ޮAQQb3|^8u^Z1 tiې`LB B (mGA;<=}8Ki64΅;;ԽՅbFcxGf쁄8D#:4cq;MAϯWo};Gh4h契qfى4ݤg` !K`&gcwyZcevYuɾ $E!Dng๑\E"q[ӡf,E ca5˦! |' 0?(CɱPsSb7N7w44-.*Uq[wW}5*j+"0!l Rh@U3J8?ϑXanvGLv]\.@G~A~q a8:-m"M"ˎE#p|,0ddHl%#3̑L;^oESZpEu)cX,-#֖%L>C>rVSӒ%sjyV\"ɜ$[,[2ȭj'$ ؑ<ٲu*rd;tIX!IENDB`babiloo-2.0.11/images/arrow-right.png0000644000017300007100000002336011443252104017357 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME #:7 IDATx}yxǵTF2-h$X$1$N8/K{yljcc.Y;'Nɍol%1m0 $b Hh3ӳVOS=U;[s,eL2Y&d,eL2Y&g_Q Χ(@e0Үt@'@ ^ kyNiC8& CW^>[|<$DLHGzz:2顣qDWhkkCk[.Vu}#W;IR^^c$` YDxf͚FHH&@=yfEcc]d2i>XX,8`@IYY%'uӵs03;aFV#\k#ѳ| Nբ"瞥X}sI!N$H6=ļ97ouP2TۃC=ug`4lAPvm@EyxEDlΛN>]Mr5 _m8Y[12b8u _;} `ޢE1xb~I 旖B޸ڇO;3XV8y 'Oj_ۻ{??0Qŷ9D䄙5k&/[($ zZ' yhшBccㄍP%ۉ[5::+-CVfV*.aFllX1f/hT :!)J"O;0D+D=HD "%ܜ}j$ǁs<0qnþ{͆!456!##I~k{cG8?%&y996'& Y ϟV'Dssu\ XVY2006n?X6gZڊl߶hmKMMHHwRp%Dz]P9!|c ӧOGdD;:93Q>+/'mn-IK w\; )Sp痾i2 x C!F#=tuw`0C~~WU---hjjBZd*>*\Gr1tttvb8%!)K,ܞyr֎9' XU\:r088=w HKKt:T-[47dJ3p% 5ip!sttuwcddD6><''?7|ù} ,!T:"BFFp ѻp{=-ׇ=wchh999xa0d% ҥf455"%5A\ǡ514ӧCCC2 )*rg?{MO*/u"bjmVv6VV@`̅KYIy{##&+gy1־eUUE455RSRRRzUsW{2}.,1´i1q55)F*'/ʫ҉D=-iӰx"#CaId6wՊJl{)y$cXt).͗.!yTG{?1_A  +rٞ ՇG%byLҰd"\Wn9E*p?mXX^۷;Z:*X-Oq IIIP0 p:zU9[TTPzME9IW$%%r0r}],q@) uł& `+1,[ /_ŋ܌DDDF} !eAK]NIIA__0r*2PW!%VI_9[計H,NSQS_ pȌO/bʕ.5 ",D[{;_f DFFZFI[AWFPL]λIhfs @ kPUUƉ#"Rt:T.Yj@"%!ɸԄDFF7*+*ىsΡ%'$ 2*Jg@]aK3 HHǕv8R dRhyɜJf ¿(=| `~I LC͡έ:Zbbb܌'N>AEEzzzЀf#**Ju&Tw#%\ž\ qܬ#""]]].F!rgv0b"-oZFfetqU):Gtt4L&zQ[[;W >ŋׇg܌xGI5}\.s $,HVR\X3gzndeg 0\_=y#)) qd .=XAEa``uuhiXDGGk2[Fp]1#|qqnKY3+تDs%p%ƐKPWW1WDFN>˗hUz+g"#%ST<ЙJ3@Dҹ*seLӬ׽yԦgCgGի1`6p)"*:111.pn ^;z bqX607/'~;"g^HH=sܬa>>: FOO.^Z[`v;N/FEGklHD`@D:pdmu!fT8ʜ>qqkݍp1$4_F$%'#77o"(--?+mDlJ-*z{%=_`008 0do'n_1l@XXrss@DåBI Wst@ە6TWWnwo?KII Bt:TWW#66?.8w$HBE=9t_O81b%fef"*25@kL1LꀫM jo/pw:g"s"44GE{{;B0\ %NFj@\6MĀמ8 #+Wƃ_QTz̘1C˜¥>"%11&9ňtMsW@eDraJ C^t2-({fhB`Fnw)tRSŭ;UDZT6U1)|2N BGG!>!^@L-'A!Bpl̽r_<Pe~x _tϽ͒NY BwW7zQUUp3??I HH0Q-8\쓛cX-0F#J^=~@P `f^޿p4Ӈ}HX\yp'M.& Ό+J/!CZ[p20ajT|G!!!AO%4ڊDDcΜ9Al:n#))]=yI0 sh !MTW_ GD IΪ&RjnľZܓ.uZB1A@Tt]5\303{&?nX, S=O/yT45W^Aa`L0qX@n~z"ʔ:")gc߾}lFRR5'=(2ja=l{fD+w!,4UkqJ=ץ'<.bڊ3uu(,(iӂF(((@OO/L& І\T<3InXaB_8G{"D$"M&>T5 ­uϹ `^yK֌,0LrRQzCCCn9zwycXJzz:SHJNޥ]_:,Av董g#ٳ!j;fX6Dzk,LQwCnJy5bcc{W{{qVZ`4̛;}^c@-R;5>REQGF)RGᣟ$ ]Pp/ʔVG)fc4}HX(yXN1^ƝKU='چ&$&%bvAJJ JJJ !yj2T'ujYmLPwNr.˽'=uEE'~Qm!4b(J9ZT@Z΍ C~A'=f̝3/"#pJ;N?Q՝^\@j%a ;"SA DH`վ09y(ISD7{!{&#%5#F#6nA,EEExDLt4گxM v tE'łk`21XM03WPPTSlf1F5O4@F'\(å \]I>nǣWگsAbb".>^\TFfh4PXJ`'/$8FQJ PZ0lv;DKyM^8n%cB*N&c:/˗NT.%.on8!؜NLPD*HkFl1f{*\=>PK)ؔ Rm̬L6bxxxB 77 Սc5E.0F̻kd)<$DWQf6b(;\!E=ơ,&Yl3 thr;vD3gW al-EX0FƖ?!G=uZ ";f \bbN c:휩V'\ʭ͡IAV8Wۛc!21ZNll]vN}`m7Iru[FXm6bƉۥŋXs !!1Sb<\Pg`Nq7=GUy1JF==)ߏKM;I.+ 5GBB**Wl @d$?kwJNJc6n3@ 3+vug9}(7oB?{,~Ðh@1iw pjzWDfhqfigƝ(De01Xƹs1w&:@bR"9S׈#VUըYYouW=pAk:ގpܹ3h "R[[¢B"Oźu @}ܽXw09r ߡn6qyu#szf?y$w1<|?0fPPXp k'[{!}U9!r_QQQT?>1~0L@aQgW-<ߺƀ%NĪAmz[XC彽VpF̜1ѠA g>]G!Zڭip;}-z1ޞ^"$$;c Rٿ?=6Yӑ<>6T71::>mztM[!Ŋzp]NżZ hjlBzzv$[oa;9G^~>|7q n-ANކjz>\jjcvlx <bۂȜ\ksW'16n{ Dz_xĺjřgpw {3_=O}$,/}i]vV*0,?6d2k[0o®"3+ӧ>I]Lk~G^0 $][uM٬>v_@DDo+dT x/3|jO`ww"O ok|^GP{dB}Y>W3ys0m4/f~i2B5zOr^WM`6Ou9NמfŊ+|% _^c"==q3|Ύa?}Z[~ f) W^`m "~߂1y%󐚖qz @O!z}_vFQM#[E<) :,\@'6>yĺ-Ї@u@Dd׬* qIDAT%Q>nH>ue o~ē[@aHJNzggnj AB0Z7WV- 'BS6{p9/J^Qeˏgt:,^ȹ׿W7\>Km|9bjTƓ5e\>88Omlشi# %`0$P=Ö4 zЁ+* oQނĺF9_Py2[qET-Zؼy#^%r뾰y澛,]( @4"2z= ho@cc#NbyrՊ ЇQQo^z P!ح?ypyx?7^GFz{Յ}aѢňd£kcK+\6d%u糉z0o3_KV c0,DbXs}8vP]]pT.]h܂迺~݆''hiێ'~ !u8zW΍w^_Ϟoi-vl trqt[1o7:ڍh·m;|% n Rx`úM]G-;ٱ '"$M.+׈ߴ:{4pwqѿm\z c_|1h|nd;npٸ)[~h gQ) @ y4 o[F޽Z*,n6Mpq0W7= 717}vYD߷3Ƶo6݄?~gx?؆u޿ v󖧟ݾO(Eh֭[ś8o*5oZ3k 5tuoB ` 7s-M?~ [Ɏg*KUl|>hZELɽ@M"p7 F-h,/3oszh4t{:,|xG0YIKn,{J@ S 6o?oBD7`? @_l_~wkѷ7ɣyq!1* IENDB`babiloo-2.0.11/images/suggestion.png0000644000017300007100000000625211443252104017302 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME* ` *IDAThZkUufc`UNǵ'4UȍTVj?6]?bBÖI-Ml!!l/ s_X14Bmc`-}:[^}k}k}k;hڹs'N񗉂OtQ^pǻw ;wgk_w&Lp[fͥKV gLcGlR<^L7[W:zGlB X#tC&a'}9T5kͩ3'gzcq;_!xe4>SLY@ 1ZHcܒRM#朼 g=1;A_6~n{6B '*L`P 39@BH9pN`xM6δGzhT?t\؆?#W }Mܵ)$|f8[8b9"8"rI_{Jf* |;ǎs[7g._jAܳfW&@3qNt<0`ŀH0D``̤"sP=?nfSrϥ2bƯw-]󕾑ul ځDc"CG KD/28TB|% UARO-_v{ut3m6E3LkW\ADsf"͌944NJ8&i~G6=BOqt`\~!M߶mgYߘi_zW{/&zqBLV H,3 L")ߋO j3W\c[rQ3@^r{-zN"=N4 G3s̊b"4Eb#s+}3m7n!"*Ʉ@G$VvB4ibhh&j*戈bb&b0DLV 3^t vM` 2NL5 3̽nED@N,PDF+j;qV6-ˁ@a̚,1,1̅ DX3dE\E(ZBBVc@< pVd=Ԑ \gVL1kJYr)A(J(TD AD`BPeqQcd@ #C̚4CD+Oi&1 v䜳kl#@ ϙK (e| (dm9-3kb&X̤I2@PZS>;@)a'H&Vd@/zr.=;yӑvjmVJӥf)msͲՃ]ᄯ 1lC[LUB%–=mџ Q8NJ=O˻rm8{]nt՗ l:A|VNN6C[N~0ܗ-Gm,MG{?]'3RR*RGJqݙ7d틋~:vh;bܽ|Ũ4¸+[Qz&PS= t.gڶtr53xOC/) D@ u՞_O?ݧB #N}ddʥ=rYbULl#?ғR2Wm>|11i%tGO: HwwewE6U;۷ݲ;nZ9k"m Bٞ ()Ly #_Q+P)t6/ZlNe*Gr=fjj͢bqIz˵+ኆr_9015] k4t%ȏ[ցK)cRN,ɞtDr]Qrt ԣ=ufK0QaIɀ.L KkV/Ce1;SH󟛜'};<4{+Qw] D;}-ȦoT$zbIx7g@V^e,S+N:U?Ҷny`hSۗ PN! K hxC"B6C:Ӈt-?bhX]G&{]~h(omYg 6 -]l6 `FYxզp̛^~+-dյc߼g!?C! RB_a:&њ[W&^} xwj?wc۱n gPQ)Q*qz9R"_a?wr ; k4ЂùXQj1p/ #wh63:T* LOQ.W۝CV]DyÆ 5+crp"4(l}}+ı D>|X_s!>d^v߾S{\.\/KX 70W\6<ܹ-=y<`̜ŕ `(}OV@ `y ,$}12R(㥏o07ox?lW߉\nSSpjom #-K@ȑ#?VC0 E1Ɣ=ߢYBM6ogdNAasRGBbKGD pHYs B(xtIME4EIDATx}{p}  E" )1nq+G#vJy&M\V7nW&8x&ըv6q#;=c[7Ez8NzQ$%"&b_@qfvb;sTJTJTJT>'x @ْt Ve xz  JJX@@5@%亂M @nq) SMv?6^j|j5< j|a@0 @$ H-Y_~?%۶m[я~tqsssq; 'pl```̙3?O{>߬&`ll,mvڵkP”2u߿NP(sf|N$+p߿NE@Y 5,_~-lvO1\  J~֯_< !h`եK5)ҟJ2IE;I. `N!Hs8cloo7z\E0YjW)hܹsGydD"VWݳKdP< 4 ^'q$ .)D(T NUCCC>`٣b%(U:zA$IyOD8&0:0}"V2-)nǒ%Kq\_bſ.(@w٪_}5۵8GAd D5^vi1(_g(fr˗/oܹsg+Ub"f޽{D9L&M>?>9@9l5.XCPFoe.ؿk׮3l3 'sr^YrXXbE] ַP*.+χ9ei#\,怃#)8',7 YU_ommmR|֟ u ǰnh(@KC@ IRFZ[[ US,f?Q;W,T_(g| H^}>̦~ϧaK X$ID" F B7W dq՛HpD-ʀ\ iWP3X?H_3Ŵ `\J5RW-@,(_$ߛݻwg/˲Ť@/Ys?9b2‘bz/EBl3d/e2vJ>X*3nԊ'O 0*PCs~Og~)]@xS;nA4t `TkQl8X{8Xg1$)ڣٌ}-^˂D+\Ul*ϒـ1ٳ瓌jcMK}fN |Z޶ }{+*"3*@9f~J H8@Y?@ޛ qx3>|T# x/%]) TVVfTCHB21_(x_91㈊Y===oeTN#=l0(0~ sYS@.(@!6~NdI8ho$Q!I$)n+C!"d9FE (jq0VoY>fm۟6:}EG$p {-X㳵*El_+B 5rHYW/Ic>ѰU.PThT?|FW?V@i&jc~,݀(Ŝ$ 2nժU` ܹs5+Wlb?@ :m:hj0-ys3E4Ç~ePo;^dZ[m4r 0`˱ >*X <~ߛH$jwvvjooϰ_1x bTvm0%ۚ &r(|ϙv~w$w^|ՖV@{|?r1Ւl1nHag ]XT/ TS|Tj˖-ږr}wwe]>~1i9nFA _@ f 7}+_7 ~*EQWGʗ>B2!!~+@_hwgEiHkYx{cn7~KWX5ѣ],㿝>G #/He9+OZḯ B c%-={X/~=z HN/RH@G-`>c~7c}f;rA5(tvvfدLd! 7yst,Uf! o%仺g5~u4IRM6e|2Il! q3t%-իW/{Gf9ٳeD"Q-Ioǎ+HKARab|"fY=]NصSO)-g*߯UͰ?Yf7#7*pr%cR3;X,S6x7;Ks)loa?~jhh({2F{B A 4e X.x^Gzx>ŋen>. ?鍟Q]l,wV| Q'OV]~:Vݸqc2o4i) i@ h@ 0*+ hؒ":GGG݂ TEQ_4>裟PXyΊ~V+ Qe|_}`+Bƍ)_YŊKnSV.H:y{XU@19GFF*+ T($Hṫu7y'NpVyA{WZT 9@qIy"Nd`˲D"XfMsTZ^իe###@Dٜ/_p^+/ ܐ ];tWOOg||#3Lskkkzz9g?l8jwjGG g @pewH$Rcbة)Y?y`~|Cu:{Ɏ *2*2>ľ^4T^3Z5dlW'~J*A<6mjQfPدFָ' :SYK?8P4`ZdC#lB%O"DGGG?_ 0 Sϗ`0XD_2~VXj ӣ +@:t萫399rۗ)IzO[Y (@GGGxg7/^BձXOޮV%yVnEꫯ:/^/^Z 7U]HfQ|/iH X,7N1ĄMJZ @0U_| H/~q5kլ%[Tq=ЌU3]ϻpZ4B0>>nig?,Yײ |r^@<3V=?GFF<(V~衇Vvtt \}aO=Cz_o!NBH&Pj3!vd&agoܹsLA__ɤ*꺬?U,-kBni$[~ϟG>^2L#998U :THb 3c\}Bq@jdY[uyOߡullr1k;6_y@ +y-5n !6<o@ ~#p ?ߒx{@R )酝-RfQ.?uݭ4A>*WVVk+**jvoa$ K/%t.UcE㿁:e XL*s8.q\|Æ ӧ˦*O={dV%.MGw]; fJ  `޽U*(?&VhW_}X4Ϟ=f^ӏ86Oy ApI7c˖-/kfaHl8I~'P9 ᴮYR\ IMA pNV 8' P2z@em? S~5ǭwFazc.>k|5Xq.bM e,nݺ,5Z%%FY K_R3@U2-86lД%C: :iKAfua_˪r>-7nlRJmpp,[̛xr.H[KV+`W~D373>477װ3I8|>7%eee|Bsf1RbsNݦQ@-okeBr݆d~"nOWD,@Qk&PO9,p9&n7v{fѸh?EjlsCӕ* ?uf\-Wsf,)oeY&e0H @ڵkue`׋ }گʔ39=?kAVz`bbB@p "=h  q̙Q5Z/^l%P}syB\Fm5tSԶIJpMDD^~F:2q@MMM E ϻ覀P/h4)`K (B8W"˲ds 4[qzR@p8r,_@+'O Q&& J{BB;XyAt~2tAJ8Tٿ>,(PNqǷnJ[n7 "RT! qB\یZ'N\|'< ` e=( PgΜ?׬YT}A($I%1[n=4<<|Q )I_LK|ꓝN'3`V q9}6{:t01h6IW^yedKicx^eZT@PX2~gGz5ZOV@HG"饗^aÆڦ:N UUUhhhȬӫp@`9<=#ݒ$?|'즆F?IܴIڍ%瞻p,}n|饗.0+f T87ݻvZwSSS}"rE$WCǎa?}0Z΅z.u]wSO};쨨(/dnJ(gyΞ=|~~MCeZ4nWVVV|sknmmkjjx<2n+,"Ǔ D&zzz~_^yWI05|_oUpLc剓*Z+NH;SFЩUs:3اu/K=1اu|&2gĤr#J)j)&a>kj-C*T1E凰NRМ~ hDG06yOy/G c@ jI>*٩]VNe~hr1~s^k30gx2$("4(Q :F7$٨1veȱθ5,L-#@Az"&F-~NQ$5tyQ `fA뜙,D鰜ψI@ :ug̙z\wd-d%P HFFr\˸> Dϗ-Ii}|6@(` f`gq雏XͤܬX{4s`Yi9- UjiIENDB`babiloo-2.0.11/images/document-print.png0000644000017300007100000001435311443252104020064 0ustar kmoskmos00000000000000PNG  IHDR>asRGBbKGD pHYs B(xtIME 9+ kIDATx]]luݝR4%\+dU ᴁ8p/yK!@G=Ab܇I} 40~HP!C؀ɮ%ϒ>ܙ;3w~%ݽ`fG$swιwc~"dkHj Q)R4p8=ËgV'q Y<ɟh.`h Cp&=4 YW<~GYH~e 0 hD= |?H$T *&z2@nW A_H"($j!(G2P{|BU~0 .^{˲ߛ0"a %A/y4My)AUvtm,pL8/`Y.^u\/3qAo$08vH^Z尾_~:E WY6`މC\rf3H #q/ِr!5fT7+J)*:B@(%t:c\sB OfM ̽`ŶeZөp{$m_p}mo/_X80ϿtX\}~MnjƚV vrT ]]\}̙ߊ@RJjZuӁa{0 peϡj,fWa& B-hŋCt?F.Á.wM`vZe,TUPU_0 \zfsmɨT*xG.w^WLDSTE0 nwmvt:2&VAZ}pKq/ {$@QH1b}"Q-a* WPl[ITe_4!`o LHa1nrqȑRܸqoJ_h iB' y0L&'NW^۷q{;#)@ {W L"c{QVq́|&[f( SSSbmlll@FEUv=0===y4 o1,&ޜe ˵*333؍1(jh4.w)w`?} y_˯N:CZKmߞH  Aw:a&>~m,E, 1xm4M-PJ@Ƌ6 $\b @Qr1;*^ UUq)EY*6! $.jP;N~kz 2d< G;<8կ1??O?'Nq#<;++˸sFRu[Mat7؋kǣqq[jX]]'|GyY.l&v`>3|SMp'RU?\]WxL:M8,&N<;s/[px{BQ?oibkk KKK( R=#sҳif `vMvR{9܌nۏb_I;BO>$~ѣXZZJ%\~bǏy { @:i<@__(.ƾ=7xWqW_}7o`a4~=oZh;MBlԨB Ξ=F1&=Fg⥗^m([zSVϱ+E, @ӶN4M\z/_+˸r N:}2VVnd|Yak6h#>ܹ/"s8d<;ߛ|QC=>^oэZ^Z6t=OG F]^/eE~)<áKl5M!h1v[Ql<* HR.^賵 /&jٮ#Dy`,w  :1ٴ=c)<@mZM/U b~V*i%8*F0}ϿXѲ…v}%VRpN[[aϕv,z};:CQ~Wol]= wó/&JVO`hZ;B=_<,r9hx2'a&Ң;cyoCn߾MӠiZ%ܠ wZ׉,F)1 pKJ&GH7IѨQ AfgpEߧܩ7p7aS윻+ؿ9(lw`qb{rGx<ΌtE9c*@ה;677`Vs3!aTnT'=@SZDuQ6#677D(0MkG8F#58rI0.g)CjyHMЏxfak8w\??1}uu}AZvI: )?Ne]aϘCfzYAjY0-knh;w??U ϥ_GክՎX~t$KbÓRA6>zt7o@&A6KLG r94Mlmm^_dcNǧ Jˢ> u,/|j|k8bׁBc ǎz/B i&ms Xn3l˲pؽv* &&&011`WbR'qa4M0t0??UU/m!ӾiaRy[^[˲<,KvIa *)>S (j#u(J(˘FH^w=]\VQP.ݦɚVu<@TO#ǥ~mkI3F[j4 P(\.^͛!ytRud2t:lllR`r@(\L%߸(鈡h7`[T*r9 T*ylllu j<;F-躎j?v;,U"\?!ѣGjP(P*P*_,leLOOl6ZUD Ag4"H&|ss/@Pp NOO\.VzjZ&P~xqUz=~f0nݺjz]}'OF+o#XS |KQF&(T*8ydH^CSN!A4w5AE_G$AݗA4r9:uj0d/677?de=9WTx7crrJBa׿apLVto?,TUz>n`{۝ZmQOqSjs\vKL@)9_!rTr:YSA D (< ?8 JQڏ{zs7O| 91(>3VkWNTs? 11??_ͨ!ȤX+ſʏYhνwi9ٹFt8Ϟudr'A鲳ȗ#}lр9e8:;;;p]b:"\}y:TiXs, .!$P ?Igrݔc9M|RhL$ o3pj(;g9#(e O{/Iѽce@6;JZEn$`y;?cɤG*>IG/`ّG7A}}~⤃DoFH"@d$J4$(΄{W#2:)]8IENDB`babiloo-2.0.11/images/babiloo.xpm0000644000017300007100000001662711443252104016551 0ustar kmoskmos00000000000000/* XPM */ static char * babiloo_xpm[] = { "32 32 334 2", " c None", ". c #58595D", "+ c #72767F", "@ c #636770", "# c #5F616B", "$ c #61636E", "% c #4B4D55", "& c #5F6065", "* c #757985", "= c #7B7E88", "- c #6E727D", "; c #6A6D78", "> c #81848C", ", c #6F717C", "' c #696B75", ") c #62646E", "! c #575961", "~ c #595A63", "{ c #515259", "] c #6F7177", "^ c #717581", "/ c #6E717C", "( c #878992", "_ c #ACADB1", ": c #B9BABC", "< c #B8B9BB", "[ c #AAAAAE", "} c #64656F", "| c #63656E", "1 c #62646D", "2 c #5E5F67", "3 c #54545C", "4 c #4D4D55", "5 c #4F4F57", "6 c #70727A", "7 c #6F737E", "8 c #7E818A", "9 c #71747F", "0 c #7B7D87", "a c #747781", "b c #84868E", "c c #93949A", "d c #898B91", "e c #686A73", "f c #898A90", "g c #84858C", "h c #6A6B74", "i c #74757D", "j c #5D5E67", "k c #5C5D66", "l c #5C5C65", "m c #5C5B65", "n c #404047", "o c #696B72", "p c #6A6D75", "q c #6D717B", "r c #72757F", "s c #676A74", "t c #686B75", "u c #73757F", "v c #7A7C85", "w c #6B6C76", "x c #808189", "y c #5E606A", "z c #5B5C65", "A c #75767E", "B c #5B5B64", "C c #7A7A81", "D c #6C6C74", "E c #6D6B64", "F c #68696F", "G c #6E727C", "H c #666974", "I c #B4B4B7", "J c #96989D", "K c #767880", "L c #7E7F87", "M c #64656E", "N c #62636C", "O c #5D5E68", "P c #61626B", "Q c #7A7B83", "R c #5E5E67", "S c #707078", "T c #5F5F68", "U c #5A5A63", "V c #55555E", "W c #444345", "X c #ACA894", "Y c #757983", "Z c #6C6F79", "` c #666874", " . c #B2B3B6", ".. c #797B84", "+. c #666872", "@. c #63656F", "#. c #8D8F94", "$. c #8B8C92", "%. c #5F616A", "&. c #5E5F68", "*. c #5D5D67", "=. c #595962", "-. c #606068", ";. c #36363E", ">. c #999586", ",. c #AFAC9C", "'. c #67696F", "). c #70747F", "!. c #6D6F7A", "~. c #6B6E79", "{. c #676A75", "]. c #B4B4B8", "^. c #85868D", "/. c #87888F", "(. c #8F9196", "_. c #939399", ":. c #9E9EA3", "<. c #666770", "[. c #43434A", "}. c #828074", "|. c #AEAA9A", "1. c #BFBCAC", "2. c #343333", "3. c #787A81", "4. c #6C707B", "5. c #787A83", "6. c #85888F", "7. c #B2B2B5", "8. c #74767F", "9. c #656770", "0. c #83848A", "a. c #A6A6AA", "b. c #5A5B65", "c. c #585861", "d. c #505058", "e. c #535252", "f. c #B3B09F", "g. c #B9B6A6", "h. c #ADAAA1", "i. c #141519", "j. c #64676F", "k. c #72747C", "l. c #6B6D78", "m. c #696B76", "n. c #666973", "o. c #646570", "p. c #8C8D93", "q. c #7D7E86", "r. c #8D8E93", "s. c #B3B3B6", "t. c #7C7C83", "u. c #696971", "v. c #84848A", "w. c #818187", "x. c #5D5D66", "y. c #797980", "z. c #78787F", "A. c #57575F", "B. c #424246", "C. c #B9B6A4", "D. c #BBB8A8", "E. c #C3C0B3", "F. c #37373F", "G. c #6D6F77", "H. c #6B6E77", "I. c #6A6C76", "J. c #666771", "K. c #64666F", "L. c #63646E", "M. c #5F606A", "N. c #5A5C66", "O. c #5E5E68", "P. c #575861", "Q. c #97979C", "R. c #53535C", "S. c #5E5E66", "T. c #89898E", "U. c #89898F", "V. c #565660", "W. c #383840", "X. c #A09D91", "Y. c #BEBBAC", "Z. c #CDCABA", "`. c #666569", " + c #737377", ".+ c #5E6068", "++ c #696B74", "@+ c #656771", "#+ c #656772", "$+ c #656670", "%+ c #62626C", "&+ c #60616B", "*+ c #5E6069", "=+ c #62626B", "-+ c #7B7B82", ";+ c #9C9CA0", ">+ c #76767D", ",+ c #484850", "'+ c #7E7C76", ")+ c #C3C0B1", "!+ c #C9C7B8", "~+ c #9A9996", "{+ c #161618", "]+ c #A1A19C", "^+ c #E5E3D9", "/+ c #B4B3AB", "(+ c #818080", "_+ c #5C5C61", ":+ c #606169", "<+ c #5F5F69", "[+ c #5D5C65", "}+ c #575761", "|+ c #515159", "1+ c #525153", "2+ c #CDCBBC", "3+ c #CCC9BC", "4+ c #C1BFB5", "5+ c #303138", "6+ c #92918E", "7+ c #FFFDF3", "8+ c #FCFAF0", "9+ c #E9E7DE", "0+ c #BBB9B1", "a+ c #81807F", "b+ c #5B5B5E", "c+ c #57585F", "d+ c #575760", "e+ c #3C3C42", "f+ c #C9C6B8", "g+ c #CFCDC0", "h+ c #E1DFD0", "i+ c #56565C", "j+ c #959493", "k+ c #FEFCF2", "l+ c #FDFBF1", "m+ c #EBE9E0", "n+ c #C0BEB6", "o+ c #838281", "p+ c #5F5E60", "q+ c #53535A", "r+ c #44444B", "s+ c #ABA9A0", "t+ c #D2D0C3", "u+ c #E0DDD0", "v+ c #7E7D80", "w+ c #151517", "x+ c #4F4F55", "y+ c #FFFFFB", "z+ c #FAF8EE", "A+ c #F9F7ED", "B+ c #C1BFB6", "C+ c #868583", "D+ c #626163", "E+ c #4E4E56", "F+ c #53535B", "G+ c #4B4B53", "H+ c #6E6D6C", "I+ c #DDDACD", "J+ c #DCD9CE", "K+ c #C5C3BD", "L+ c #2F2F35", "M+ c #4B4C55", "N+ c #A3A29F", "O+ c #FFFFFE", "P+ c #F7F5EB", "Q+ c #FBF9F0", "R+ c #F9F6EC", "S+ c #FDFCF2", "T+ c #FBF9EF", "U+ c #E8E7DD", "V+ c #C1BFB8", "W+ c #898885", "X+ c #656566", "Y+ c #48484F", "Z+ c #555559", "`+ c #E3E1D4", " @ c #E3E0D5", ".@ c #E1DED4", "+@ c #3F3F48", "@@ c #6F6F74", "#@ c #323237", "$@ c #979697", "%@ c #A7A5A2", "&@ c #FFFFFC", "*@ c #F3F1E7", "=@ c #F3F1E8", "-@ c #FEFCF3", ";@ c #F4F1E8", ">@ c #E5E3DB", ",@ c #D0CDC5", "'@ c #C0BEB5", ")@ c #E7E4D9", "!@ c #F4F1E6", "~@ c #75747A", "{@ c #7B7B7F", "]@ c #38383E", "^@ c #999899", "/@ c #A6A5A1", "(@ c #FFFFF9", "_@ c #FAF8EF", ":@ c #F7F5EC", "<@ c #EFEDE4", "[@ c #FFFFF5", "}@ c #F6F4EA", "|@ c #F9F7EC", "1@ c #E5E3D8", "2@ c #F4F1E7", "3@ c #A6A5A5", "4@ c #2E2E33", "5@ c #7E7E83", "6@ c #424248", "7@ c #979797", "8@ c #A8A7A3", "9@ c #FFFFF6", "0@ c #FCFAF1", "a@ c #EBEAE0", "b@ c #F8F6EC", "c@ c #F3F2E8", "d@ c #DAD8D3", "e@ c #3B3B43", "f@ c #77777B", "g@ c #4B4B51", "h@ c #AFAEAA", "i@ c #FDFAF0", "j@ c #F1EFE6", "k@ c #FFFFF7", "l@ c #68686C", "m@ c #919191", "n@ c #B7B5B1", "o@ c #828286", "p@ c #29282C", "q@ c #5C5C60", "r@ c #66666D", "s@ c #414148", " ", " ", " ", " ", " ", " . + @ # $ % ", " & * = - ; > , ' ) ! ~ { ", " ] ^ / ( ; _ : < [ ) } | } 1 2 3 4 5 ", " 6 7 8 9 0 a b c d e f g h i j k l m n ", " o p 7 q r s t s u v w x y z A B C D B 4 E ", " F r G q H I J K L ) M N O P Q R S T U V W X ", " & Y / Z ` ...+.@.#.$.P %.&.*.l l =.B -.;.>.,. ", " '.).!.~.{.].^./.(._.:.<.&.*.l B l l B l [.}.|.1.2. ", " 3.4.Z 5.6.7.8.9.} 0.a.b.k c.B U B l l l d.e.f.g.h.i. ", " j.k.; l.m.n.o.p.q.r.$.s.t.u.v.w.x.y.z.B l A.B.C.D.E.F. ", " G.H.; I.t n.J.K.L.M.N.O.P.S Q.R.S.T.U.V.l B W.X.Y.Z.`. ", " / +.+++@+#+$+L.%+&+*+R l B =+v.-+;+>+U B l ,+'+)+!+~+{+ ", " ]+^+/+(+_+:+O <+&.[+z l l l l B }+U l l |+1+2+3+4+5+ ", " 6+7+7+8+9+0+a+b+c+d+B l l l l l l l l d+e+f+g+h+i+ ", " j+k+l+7+7+7+8+m+n+o+p+q+V U l l B B B r+s+t+u+v+w+ ", " x+y+z+8+k+l+7+k+7+A+m+B+C+D+E+F+=.l G+H+I+J+K+L+ ", " M+N+O+k+z+P+Q+k+R+S+T+7+P+U+V+W+X+Y+Z+`+ @.@+@ ", " @@#@$@%@&@T+P+*@z+T+=@-@A+7+;@>@,@'@)@!@~@ ", " {@]@^@/@(@_@:@<@A+:@=@[@}@|@1@2@3@4@ ", " 5@6@7@8@9@0@P+a@T+P+b@c@d@e@ ", " f@g@j+h@[@i@A+j@k@S. ", " l@q+m@n@k@o@p@ ", " q@r@s@ ", " ", " ", " ", " "}; babiloo-2.0.11/images/babiloo.ico0000644000017300007100000004107611443252104016513 0ustar kmoskmos00000000000000@@ (B(@ = 1aYY&upp󡜜gaaA;;\UUe\\ICCe  gcc로mhhB<>̙||HCCA;;d[[611@C311LFF@::i``^UU)5&$$PKK?99e\\MGGr*yttVPP?::e\\;66F   kff𐌌ZUU?99~yy`WW0x^ZZ琋^YY@::e\\QIIy"MJJۑc__@;;|e\\?::Ni`_e]]?99vvvkmmWSSYUU[VV`XX7ka`@:9ghiWRR^YYUOOTLLTMMGAANIIkccSLL~#h_^2..ddeWRR_ZZVPPVNN\TTaYYd[[cZZVOOG@@>;;e\\B==SaYW```YTTa[[XQQXPP^VVbZZd[[e\\e\\e\\e\\aYYPIIXRRpstbYY# >pgeQJI]\][VVb]]YRRZRR`WWcZZe\\e\\e\\e\\e\\e\\e\\e\\e\\^VVKDDVQQ{|UNN*rhfR=87[YY^YYc^^ZSS\TTaXXd[[e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\d[[ZRRHBB@;;e\\E??Wrhf732|YVV`\\d__[TT^VVbYYd[[e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\cZZTMMLFFLJKcZZ)&&C sig40/x|}YUUe``gaa^VV`XXcZZe\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\aXXNGGMHHYQQ1tjhJGFuxy[VUjedjdccZYe]\h^^h_^h^^g^]f]]e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\^UUICCA;;meeHAA\vljUSRstu^XWpjjohgh_^jb`lcblcblbakaaja`i`_h_^g^^f]]f]\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\f]]e\\e\\e\\e\\e\\e\\e\\d[[YQQGAA=78d[[/++IynkRMLsssb\Zwporkimdapfdqgeqgepfeoedndcmdblcbkbaka`j``i`_h_^g^^f]]e\\e\\e\\e\\e\\e\\e\\e\\e\\phhldde\\e\\e\\e\\e\\cZZSLLE>>_abZSS 8{pmrig|zxomsiftjhukiukitjhsigrhfqhfqgepfdoedndcmcblcbkbaja`j`_i__h_^g^]f]]e\\e\\e\\wooe\\e\\e\\e\\e\\e\\e\\`WWMFF@::}}JDD`%ja] sjh|wwzolyolxnkwmjvljvkiukhtjhsigrhfqgfpfeofdoecndcmcblbakbaja`i`_h__h^^g^]f]]e\\e\\e\\e\\e\\zss|uue\\e\\e\\e\\e\\e\\\TTHBB:55e\\400Nyokjfe~sqzolynlxnkwmjvljukitjhtjgsigrhfqgepfeoednecmdcmcblbaka`pggphgh_^g^^f]]neee\\e\\e\\e\\e\\wooe\\e\\e\\e\\e\\d[[WOOF@@CAB]UU> |qn\XW|zzpmyolynkxmkwmjvliukitjhsigrhgrhfqgepfdypoyqqg^^f]]zsse\\e\\e\\e\\kcctmme\\e\\e\\e\\bYYQJJC==pwyLFFd,}so[WV{pmzpmyolxnkwmkwljvliukhtjh{qp{zpfdoedndcmcblcb}}h^^g^]f]]qiie\\neeyyogge\\e\\e\\e\\e\\e\\_WWKEE<77ngg944R~splb][|qn{pmzolyolxnkwmjrhfqgfpfeofdnecndcmcbi`_h__g^^g]]f]\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\d[[[SSHAA944^VVE tp+ldb|rn{qnzpmzolynlxnkwmjvlisigrhfqgepfeoednec}utka`j``i`_h_^g^^f]]e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\cZZUNND>>PRSKEEf3tqukhpml~sp|qn{qmzpmyolynkxmkwljyvtjhrhgrhfqgelcbka`j``i__h_^g^]f]]e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\aYYOHH?::xilm/++S{pm\ZZvs}ro|qn{pmzpmyolxnkwmj|rprigpgepfdkbaja`i`_i__h^^g^]f]]e\\e\\e\\e\\e\\e\\e\\e\\e\\e\\^VVJCC833 P:+~soSRQ~{}so|rn|qn{pmzolyolxnkyol{qotjhsigrhfqgepfetkimcblbakaaja`i`_h_^g^^g]]f]\e\\e\\e\\e\\e\\e\\e\\e\\d[[YQQF@@=9:uqWTS~sp}ro|rn{qnzpmzolynlxmkwutjhsigsigrhfqhfndcmdblcblbaka`j``i`_h_^g^^f]]e\\e\\e\\e\\e\\e\\e\\ogglccSLLB<<\cevr>_ZYtp~so}ro|qn{qmzpmyolxnk~|ukitjh|sqqgepfdoedndcmcblcbkbaja`j``i__h_^g^]f]]f]]wwyqqe\\e\\e\\aXXMGG:55zvrleb{xvtq~tp}so}ro|qn{pmzomyolxvukhtjhsigrhfqgfpgeofdoedndcmcblbakbatkjriig^]f]]e\\e\\e\\e\\e\\e\\]TTIBB611vmjhffvrtq~sp}so|rn{qnzolynlxnkwmjvljukitjhtjgsigrhfqgepfemdclbakaaja`i`_h_^g^^f]]f]\skkumme\\d[[XPPE>>IJK|rnTSRxuuqtp~sp}ro|rn{qnzpmyolynkxmkwmjvlixnl|zrhfqgepfeoedndcmdblcbkbayqpmddlcbphhummnffe\\e\\bZZRKK>88vtpPNN|uruqtp~so}ro|qn{pm|zzpmwljvliukhtjhsigrhfqgfsjhzyndc}|kbai`_i__h_^g^]f]]e\\e\\e\\`WWLEE722uqUTQQ~vrur~}ro|qn{pmzolyolrhfoedndc{zlbakbaja`i`_h__h^^g]]f]\e\\e\\\TTKDD:44vr_ZY}vrvruqtp~sp}z~{{qn{pmsigrhfqgepfeoednecmdcmcblbaka`ja`i`_h_^g^^f]]d[[_WWTLLGAA:55nvrjcapmlvrvrvruq~sp}ro|qnurukitjhsigrhgrhfqgepfdoedndcmdbkbah_^bZYYQPNGGF@@A;;C==Gtlh^\\wsvrvruq~tp~so}ro|qnyolwmkwljvliukhtjhsigpfekb`bZXWPOLEDHBAD>=i4// {pmONNxtvrvrvruqtq~sp}so|ro|qn{pmzolxmksjglcabYWVNMNGFHB@KDD/~tpoNLL|yvrvrvrvrtp|qnvkhlb``WUTMKPIGKECW~so,RONzwukhh_\\URVNLOHFuKDC_VT [SQD??????babiloo-2.0.11/images/go-home.png0000644000017300007100000001073011443252104016442 0ustar kmoskmos00000000000000PNG  IHDR00%bKGD X pHYsHHFk> vpAg00WcIDATx\{pTUNN"C!GJ X Ԃr\-eJXfvfXY+.P#LQCWD#@I'Gtw8|tr; ~{9^;'pm˰b0P!X'O<9ܣ\. 8<}_~^!ƍ7O.MNʈkkn 7wܸq〦οf5(b銥(|>p:X.\|bbbFLz% VT*yy58b@UចpkQ޽{7eW昘\ l6n  _%M }Td@侱Q~r]w_5lܐ ncxP( 8>qqNrl@qgav[ל9dJRTH[z΄m,Nn 7w\;92===}f?ି~u񬎬 rr xhdn2TFpiT{ڤgQE A!'0=hk|BaXN:u 8/ @+f &H{LJaa9)$tm.1xt!|ښ;>w<>s̙_0տ͵@%K>e@Ryږ-݁k H W0T*il9ZOק]Lc&p>sѬE:KqqqOG=<\hvCu9s:^(4 X, x< ",}+%g,ܖʖJ 7i]VYP<ŏm[۶?4Y@XXXXXXw@D0E kZ[VM?>11!HM5<Ϟ$"{/%fVws@Ƃ{&.nzۯ]v dy?~a?`yaaD@`L<,bih\$`Ǐ8b""XҀ-Šn~0v,.j>!ǪGN60LjW2&dgdgG=!?dmIICC}=V/\Jdd|À͖|esb㡸"$J%{.sii)8qb6ʀ]Pmm/?McG>"#M& ^z0[n"(Njmn^yW˟z**D(s!7o[v- ,͜:566.P4cY 9DD~o=jB݄:꣫&<<< Y++3Gw6^<>oμ9ZjpZ BMMM MMMM~nbAـ1cvzm <<''''"-[lC>ɉZjhN'Mߕ#~9g-)3>ۿк D* ?3PHBXE|{UUU C=WW Zz_oV3Cq#"""Nf9$D;461"₳}'- tDffω>bԨQAM]YYY QY d&d'e' 6gmhXkF"W^~?{eM< ٳgqSVj5`0 Cd~vVXYَ9rݴiF`TlYZLB&Mc{wUփcc@A 0?lf J9vر "6`xL۳0a>`Lސ;=[i)V | xu{}p-,RRnݶ EM(zi٩v`zPY^HLLL,(,,,z*DЂ]l\ ݷ٘_̀ON^~z >~ʕ+@v\b9,\=vWWWWUU+VXbYJ ,ZOq|=mwttt &nu|!Nnhnnn 'Ij@{#cl=@76|p\s=\0pRC 8+&,[tEde>|0P[˞f1f3{OY{ZBT~Q)k 2tktOm_yyy9 =;;fQ|Â):mu:N P9H"Z1b`$#VWEc1G{P?/𷀖/^VMI MwOgϞG Vklll,0u*~j.N <=P4 TN~x}:rxo--es̙3gLJIR $_N'" t_-ANHJfƽ{*ܹsLhޤ䚌F*rHH9B@yz7`ϟDpzŋJ?k׮]1Ӗ4O=X;^co߾};O?P% dbVpp~L15p&ߺx"F5C5#|l=@>P^7x 9yݺu.K.LhP*妤/FmڴiSH""|…fnKKKK{![o)`9X~?| \>p &@~jȅPpkZsR|@Zڎ;v婖S)H/: K{xPċӄi4kwvp&=p5|фEg7/P=lwݷhoommnR1cbbc+ ymŢE5k m4Gx-cb BƫÔSR_R<0j@܂ ?LJ?JĶ'Q{ВjR1cƌ3#G"#zJe ͧĉqP{v0oqB-H沸,. 2fddd|pG0ϢS} (Ѱ<>, J%RPN3.[z'U R.V.V.=zс$:}i?55555U>}$Z<g/bx ~AEe/հE"6}ssn-DGL]jIn7mm l.tvDDn~\ף?q!t*P KꚚNfI Eհ)ļe,e 1m6J f ػϿ~e/t]܉ y\TD%}I }' &MJK[~)UUUT*Jf%ֶ6V#r)<tϞH'ئZwF5rb^p8?.w' F).\\P?)/aNN{@mfK,n7]Qs7]N拝NO1yj=;=;=;K/>`OHhBt@*r=iFVw?wC"o}#J -rI0_ïV,ݧu  da"չ: Tq׽f䲡"> )W+ x pYYY888N-1Ou=5PK–- VitW.Q(IvV\ѷǾ=1brrrMe2mm6?Q-1>>uL]/_0$ ICB<"K%;:A#21]abKGD pHYs B(xtIME  CIDATx]}p~w%c˲ r8Ƙ4@˄HIf92)Ifd^.pMʑP^M1 $@`oc˲$[_G+J2>3;˫ hРA 4hРA 4hРAm۶Eƾ7xá6 ֭[yBH! ;:B e˖ ^J,.tttތ~J7?l6f0^~=֯_b 5p8J<ϖM:U! BV+V+z=z=011e Ӽ}'5GfjbttQQQtl`Y^,F,?ڱcG& ^xL&cƍ˲8N->߹sgq,^td2:::044׋ TTT̙3q8Xjw/4A,_eY\ nT8o~}"q:^wii鑖fx122;|StttG?Bliٱc8w+vax嗱`A&DܹW?pfrrrj ==>;/Xbqq.]3 qeogCeYl6̛7OV!?6l~34x<}i`cɒ%˗~x000Ʉ͛7S"L0K@٬6:: ͆7"-- mmm`Yk{^t:ׇ<[/^fB|Bβ2͛Osfppڵp\ `{/XիW}"!!lp8UuNiN,, ǣ uwwׯǏ~#)9׻eٳO<&M,Xv2_drӃtlذ}Bb !***⊋9s0Cʪ^TTJiM N'o %%/_˲ RJ!Uҿ-//?zԩa`eY\.T-ICSS.]z cr?w4 0̬{m^^ .E(Aww7bccq]wNPJy0bIYYّSN4"dddT?2ܸqeeeEGGN0\,}UUɦ^ ȑa||===BUUV+bq^iii> @9x<˲;W@GTYYYZQQq١ -- JQXXN rJʖӀT HLL… o xLLLڵk0Lf!+++6mP__j#RRR| 11K, ) ,ˢ0Lv85!Ը\ UUUnll-7gp .]M“ Rpj @B+!@MMB^ދiU4ë:a] {PPزeK؄=Xh9+W~wu;3aS5,'/XRgpڜ>&8 bxxk֬ABB:;;mUrn͚5 'OjSz /Վ㋉!, UR[R344:$%%a֭V3!O?Y_#{wq/=Nl&4˲(..=߹<)@)ڵk1::Q)p_uuʵkU>ڵk9^iiiصk>cYկn/u èg=%҂`4zjtvvQ['{=1k4_qCA||<|)6>Jo:W_#ϮspDGG.\;x<ߚq܎j.33ĭqqq(++C{{b.篡96yϠǡ. հX,j5J;))fݺuG?>6NX5wJ$9gM.PSԉ.xww7=bJ5]ǵ޽{ [j:;;U^rjlR +3ꫯBtww&a`MMMbQQf]]]ժ}}|fVCBjjjn̈ ^ʟtL9 5 4Q둛|)8gϞGf$ zߏsɆcrYA5:+8o%AJJ >sqgW_[[kR ۭQ w$(}%T?'ʕ+hmmEii)nXg- y#eĪT_ /Ԑ}oߪ oll 'ODFFA ÜxwqGn ºupeE>X8̀UTˑ,XST%;v?&ts`<%t^d JMnA܅ׯ "=^G-tj{ xC”'!7Ph^c||Affk^os=Jff?=cŋcŊ (=@箖]YtXh0>>/HHLLibS҇}`ٲeW,tDGpJA9r ,Y^ݎ/"J_~e˗#))3J={~6 ;;7BJJ5L@IV^G)EZZL&N'FGGڊQY}fee!'' ڇQ]vC&ҥKWJO _OVk!0L?><oh/~ƢqqqR%!={|-[$^>E _?jC0ܟArr2t:<óޛ!^U-[E"6QJ?3AG*^;b5JKlqϟ? V)q8\`y!GH4H RJ EZZ/_D"$gH=E|!،ia sp%qXHR$}Jy0 +V ;;Yʓ'7!@ή ل qbs$Cr@崐\ZݟY VǣFcccu @i#<|c"a9RAmt K~=@@5? ௬\DzVL&|p86A)ݽo߾W|a! eHU(J=91A{$''cʕٳgd)۷e:ON"\@8@v?Pqb<,X/_r}O߿|CM!M)NJш",ӧOO) SJxw J0 gl=, :}ɝ#WDHkþ6:J`ٌWz~-pR:ENH$ iiiꫯ 0ؤ?l6#!!O>eRV έ$W Rȭ bbbzjU_rXj(X `N?~az/Hr OʙCO|.\.l˲>b'h4>h۟8 y@-ş:7^!Ʉ媍,?g0PZZ ݎcǎ駟:trUXd  ϕxBAAZ[[ N^gK0 J|%NߔR`޼yBXJ?y7ܳ"<Js(//G{{;.\ 70̣d6n_y`/x`Y1<<<ϡR#B a-0>x^0 ß礔>wf{y .^ \;^,69!u:݃l.4`DJg+q{^a|G|RNġCs2vӸ,?2={S180 ħ~ֈs^T$z>vM:9'/b@JB ,8N߿7nf=ҽk#BH~4#Vn(((@]]Cu:w鶋(@jHZRo*//u+ÇDB牨<0$Tjㅽ>::8y$Ν;7%yѣ#Qa(߻a2bۢ9r" tQ\Ozv\X~=, yX,!XN+X@P֏qdff"77 T q;vAD0"zݛp?ݎ* ⭷޺#߮C#@SN7nđ#G&\O8 &LnlFTTf=**cǎmwe,/zwhjj_B~t:с  t: 8paF)O8q=ܦa 'E||< &&k֬no^q@^/QyB]˗/l6#>>~!z}ER6mZЁd?Jr̄Na7444@CDc^n}}E{dz!y~}l?~MMܑ>{:X~v."l#?2 /_5G8sO*˲&{^M4hРA 4hРA 4hРA9!+(IENDB`babiloo-2.0.11/images/system-search.png0000644000017300007100000000766211443252104017710 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME*.2IDAThp\uǿ_ڷ?ծV?v%c˒@b;vAq LqiOO$cMc4ei&CiIcZA+YZ˒V߫?lS@3g;9{-q:13ڵRۉh^15|_ta Ν;Su]khmmeYuu]e;8qDUJ<Ƕm `xx8t: h4>RB4˲`6\@Z}JJ7=GBy+V@VC\c3 ]@h H,|7d̂ihooi8z(^y?o߾w#|޶nm|^?oϳ "i螦 yY,/%vNyMvT |>,׷mo'#_WL)%ote/sU}Ǘ-%4!@ A11YBtDZ슣FoNQHnDQ}vQsk7l؀Y8:_/9WXvK7Qn4 )fbbfV`z |8bO;4ѷV-lN:sv@\I}kƍV])ro5}XKqNAXIɀs| ԅC K=YhpuׁEعsgu3Nŧ҉(/KE%R Aʓ=)913yIgf]HM.qRd2t:, Rj5uz=ljT5Kb)ɬJ1@'%\R @.+xy<{(9 #~z@ud2sQL&q_+h MSV$Jb/Rn @Vp%Ab v X~|N NfL&"'?v E"AcUDr6 "AJ=*Kv$Vp+G1; 8R*NÓՉ4@b`ru~$R|L 4MDɁoM<0_VE״@ʀ $bX#%I%YHP, RVs品M"HĂaS{BaT*JV43avÓ}H(EIX ]@,HV&ξ;0f9kk hnq.$""j" ! "DC:j7}')3J@@K$LX]"6@ ,I#&@J_ @W`YV}EDB4$"&s~g_GM"*`&_D0#/y{6&뽹 0}iE ~@)5uE>:3t](jP/z}

OD|zɒ%B4z.uBH)<obrrrh<{v]sssm̌bZ4 b&w{۔Ri殮h,C(ap]R -jO<3{ 6P",,˂a( T*HR}B.{|hhhZ >`5ԘL<kWټy}X쇛6m2:lFXDXD<ix뭷pĉݑHpilLgg6uww}4 DQzׇӧ|ɓ@)ZkkvPʕ+[b155EMLL |>۶{zzzi* lۆmh6jd2HlO:U\8-7ۗ_OwqGȤX,lii9F>>SO}]K˕JnԓJu֡bpT z˖-Í7ވ|;?-pa߿L˵=Ý_X,vu4]F8\W[IJN4LӌF"{pp0.GGG SՂjVk3 P*:.DA`ҥ8|po"Q6-@\$t}^bE%$0HJ)7yf^jZ)ϗlyB﷨<66r8.ld2 ]בN;;k1LLLtPiddZ$u~  6lN$Oy睡5k Ͳ,l߾ݛȼ.eTRm|5x_nq7_[駟ƾ}v۷oN;}PokkuttܞNE6j'\Ha>җǤMAxƍ 0t]?w^z⏢G|%a04,7+o'IENDB`babiloo-2.0.11/images/arrow-down.png0000644000017300007100000002310711443252104017210 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME $ ^6[ IDATx}yxULs20@LHU~Q2O[^[Z>QT$sCFtN_{ 1KH{AX2¾2N&/\Nt1>?7 ஻W_FG=4i"n{J\P|DoW  hO?QZf=@I=;SLQPTME"ĉ(,.c[aӃ;wttɻu\\=*27-\ؘZa|l0b5Y_<`b&^=bcwr{{w:l F9s_aK_R݆[nFDxks}ǘ^Lj7KI3v\5+w;PTT5Ր3ڵkױAӦek Q;{ݔpה%Z{J \\bAPX\:/S/wiTFi^'%"Da񘓛}7ߨLlIeyxR|gzvLt5`ȑhii1 =g"8NbϠA 񌛸~ba4%øT܁QRD6(faߣc@zڝW͛grp\9&{`UC9 ^ q13et5U}5|1`<'YT@U o>Iѣ곃X G:@z7LCiyoVh&Ib"X_`-Jq zB@ 74jAx~|`7BZ4EevMNIVo)IA4BߙH6iiiÇ%PE+?="JsS@0:!cLj$X}}<1?tϘ wͽU];.n`~[s$?BU͆ήN I&YYYɮ h- 4[,zǏ3ͮ11a#{Rơ`aZ 1 {nLIo3wg%E 7zq%K)u&G@Ƽp휞t:NH@*)? ؚ7MHOuLP?Nf^W^Fʑ(`X(1c> e[?P``Lh%vIKbUo7?D. $%ʰN"\VµǻPAt<$evQ8C1=`!ŋc z3g8u2ueoͳmU!VUǃ"$?"(CEe=esqf wn "/]DzmT 7g^uWYʒU ļPw8QWW'fa"Z!n&nK$ p&}rS!n]JaV됰<Ƃ) $0#Ȱb1hhh˥m爖UnK"Ǝ.q11ǯ یѣBxx8SRɽU~xȾpme@[[UE{{;"""3ҊԂbje [o] *ѭ$ǣ!8vő#p@@s }-p.5Z*o3 2AUb[☇c8s4*T#m`(+TyRTd%j$pupK9rdDoIǾN?g dk0TVV%44#&6:yJ*aɈ r5$uYQTX=Ė?r |HgN˗b n!e%ouWNp{vݿ~Oy?w'qx1g̙3SLAaQP]uw{$G+I^BDjzתA|foߎgHLLĄ gϗhlh`@,g3',=D})Di--- LۉI 6 zAB&555xpM7;?8{,Ξ;Ztww#&6Gz}fC4\`5福$$p`y9V) 77;x'O|7GXX"#e=GhIp ҒAaIS Y8ða^0⼸Kp`9cX;o11(..Fss3jkk ԗ/+UOkFo~>D9b4'D܌S O}?BCC!*2 ^Q}Ou|CpTIqޠ0)S687AXH#",eep ݿ +WT221m4,?BmM /^٬IJϦxHZ)AzǏGlHJJŽ;;{b!996 qq |28جV8Ѫ"XKJ L:z#Bdd$hGiI N'N_N5fw~ 6DSSa| ԰^RK3wTDQa/^{gCll&333#MMͨDMu5T^[G#\\TJ p%yd`2$c ى `sρ8v6󘕝 0rH A' MaBqq :0rꗿq$ˍٳq)>} ;YeaYE)ɘ~IaIҽT̈́ U< mmA``sE 趸^twD|~ŋp(/-fc]uo xsgc Ն?[{{;._pш?=`2u"nZ.x"_#%9Gk F#nZcQXX <"P C̽ue$ E ŭ!o466-SO>|PJQQ6lÉ & &6C{ mAJ`iw(t_p8mAtWGTT6;Z{nΜdҤI[ph%.VUfW\)/cLuIcPqioR>ISt:\ӻ2͚}K"&'{,u#<" e8uTP$%MFWWq8A9 Opi 'OlӧOcŪhnjF9IS&B Ϫ<ǹ]~d;&'MF9XzR^&L}K"™3gPVR.ψ PR\3O@ޥxw1~=ٳg|r455!&6)3RX)H=5%qP+s2Tq<)IFcSΟ?A6 XxcĈhmkCqajk`EQA!Z0bXvm߷Q_8GsV8$0_PS8SMEtt4.5`}BdeevaEp88C\+kz!jè<ʵ_h>2,UUUX|93gI>iuU!gƀ3&1RF`-qx_&ٳ . 8&OXh1PTT֖#<<8x ._pl۶ y$8T@]]bb̘6L +w$Dn4ช}{;@#ֵuxZ,뭙A.wqvڅZ(/;Z,9s&>#qAomm-X uuu0͘A|1+Zݓ1XC6E_\O҃2ܫ0-y:"##Q]]uA'F¨?akS[E\CىI&o-CxpV\'NDDD822\ʕUWo}#JJL0iQ +x qv&^̕z3umF8`XQZZ KiiiL&U!bC=2 {VBCB$`*b( 淟/B ٬)Ą4L&ᡇb*_(/CɄY Նjf ˎSu9(yz Ǖ:DD Ezf:L!&GL`XPZZSBq3{l+43O-yYuW}+%%ڬ={6x퍠K͆>|LFv%羅y)$7A*l6=C]&~ͪ)+&,< 0 ߿kXۗ7?ncݺu(χh@vN65yGZdoavF{E|9X!W=jiOJY0aaʄhľ}~aݎM6`00+'8ٺC w|O/((ɞH _?:ϗ,ш8̙8s,,Xd//Ė-޽0\ď'm1(&jtum09`jړY0DȈHdfe@cϞ=زe- `[端70+'QQQfa]K"r3)EEurf#) >3zF9zZ Jn~}2&1!d9'D4|Y5=ìFhhHbbcP[[ǏR}=naf$`a'@!;'11/'^͙߿iW*++Yn^)"3 ٬d1AM;ƦFɛp/tqq16OR.G_~չ+}ٹ3hRгYȂq"lFm]VV ^/ v} GvN||ig=90?:"r;էRƉCVVxLJlw^{5|Cѯ7߲&롌v&HDVicq=!a$ڧ$Bd9rI[:mOz+ޜ T ʋRRk}\DK7^ O>|bSF -ܰa7(vg͟[K}fau6l ay暈<5wMt /nް),HAВޙ0vw}f޲_hkmJ(>FDV xp+[^x0llܸu -]nu{A5Dw@ڲn˱+}&~;v0vY_|\{mժUW}_~9L2<`LR=w﹐{['" g`YM;}~A|U ~'ϜĖu[*3 _Y0aGp7o |[^z[ kT7]= e_^zi{㱒 d? ^߼ns5NNyէcl=V:%a`>Zk~/$JD?X~'?ēUר}ry#ߜD9"3g7CrxO8.QAV :Rrԉ>{LdϹ@L8wh?:dʼnc7-*2z^8ybX$cB):ZYoYk,]5O|Ero}Mw]9Bs*  wPBdHH/~AoAAă)U i8AdQBƘSn5k!MخF|$^k"l c>/σt|vR0ҫ4NjT5D`2dAz?ɨ@xj>=4vvt?Jª󑘜W)|鯜A$+g pbp'+Ps 2d _Cb"_*A-IENDB`babiloo-2.0.11/images/clear-right.png0000644000017300007100000001205411443252104017311 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME # IDATxyp}ǿo7E@<%Ee[$DEG;8wi'm:dĶN.;]g<:cG1xI")<,H cH$$ ̎hX~vp8p8p8p8p8p8x3#o0 Û̻HWW3_7!I!#{(سgOM]B]iop֓Rc'>aR/Hhڽo_ ^L&CMuDQ@$fxPT7W^}Dٌ=囦D~R**҃?ݻ囹 }~2}x7hي ~cKMy|@|/7hm ?[SoCE員5 vՂ14<4.8Nh)-+R+;& AAT%Bnuv;gmJ9ZVQm57j5jkw2t\,,f3N'~!Y$J.c K.FGGQf4BT&<ر};fۛ_2TT LM2jHu] 6۔?K0:2Z~S,8 JemV,:1<ࡲʪ1t5/+ߞD__/d2x <ݵ /^fâs1+[[0:SOА?c(3P(^>l:7TVLMmyVT(׺1׿,Om0/ v N ކ1®]FFG`CiYYR!` D119$9i6Wnu5?'×Aŋp-.,3?e0C4}i!(/!Xgb3WIOyJ;vks7W A]m-.65anǢkeieyf!&Rȓ PL:(Eի0Lđ`l6A/\.OjJzU*X{XQ4'TcC~? đ;CSSfrAקuub6A:䇆0&ftzE-x!k/gKχk0a@V3$-?o~FwM2|{㌨b_۷Os`KMM2b6ann͗.h4IW:4651; KJb0eF#GP[[z뭷pgöm_DN: PJ}/c zo&''9B*0֜DQ33lhnnơ4@(**oȐϥ@_Vh4;z4-O< l+*~d&JNX!Qv[Ή PUUN1 CP_w1pYb0OMK~[XkJzVkV5fj|ܵ@ʊ Vz46ۍEEba٠hpر_x-8c͖  8"(Y$atxlohhX_j0B#W$ }p:cl`B$oۙё=sfCBЀcǏR (n܈Y&ݭJ;Rb<> ϒ ACCז$wo琉bhx f[`=v1P.QI8"HރmRLY\TWܹ̆ /jQXT|1/72[ԤQ !8?~Y~Q6oFäՊ![]-( TU!RLOYzPSSѣglx@"=i@јtSi/jjjs ϟǑ#~6AiMXW`5fNP J/EfjM98}4(_Wy|ֳWƛ%PJa!4 jd,-_jq~NJx ZԩS pL۱h=/|p\p\Z~ɴBP@RBT$acp9>}Ӻz{{q177\B!v{8U&!?jk9,/r( (u1>gNݻ31Ç133Q&zӦ$ƺ*hw[K9 LL251\^h4=9Ac߃f(Alx%Bz}h=loy%c'Q!"dB%0&ccx{(BTY  >k(0J8'ZB^HF!?sg&?b>2*#!^ FF +]mmOanD*(hpspNMỏ>B( 0 [N2g;z!˓}ݎG{ 7nĸ Tl$Gct]ns>ok_;Xc?3&:/"v޺` @mr tg{SdBOz xM)x R막Ԓ|=Bg#:cc{3<"JZ|JHF<9ݻ Z%Er畖g,Y$}!PT8sR%%١--iuϦ1J>{wuWP %+WIA~&B q1}"f_=C'o;¾_I\onh?-)sga(3&?!x@OOOdpd(- ʲOO;y$*?!_ d_(֟H'0K~:B*_"B J.C.d&tO%YOm5_~Y$' A' έ[ke}rV.tZ-^zEl۶-Ea-5xPVV \g{!g4`= U FZV ށѮGV7|3><`:(`a7o‚(qY7 QiD01m. [bȟ4QW{ %0^D2"Lpd"'r \ۅ9Q xE!ue pw{ ]0%dETH HoB@Ж"8'X"OTBivz>W" joOdZ\&[-D_2_{Z= LbTD6,$lVV-2 J~cvWG˫1 ,"Y-[ ²PAލz"+YX5|$7 N\<"]#In a҃skAD%Z.$,8}^UAXN#^'üc>ޭ.$Q> D.]E!\v.%? ]X!JXie|Eph(]ڿ!l8l7|w$|$A! ůBP!Côf!Uf#p+e[4a?( uj*^w\W8IU!Շl$Ɇ{zQ~oձb^7iF}W/w H<@?f%CLRJv+_VXƝ tϵ7L`;K`c/Am0W>~gxW"ygGuttp8p8p8p8p8p83< mDIENDB`babiloo-2.0.11/images/clock.svg0000644000017300007100000004224611443252104016224 0ustar kmoskmos00000000000000 image/svg+xml Jakub Steiner http://jimmac.musichall.cz New Appointment appointment new meeting rvsp babiloo-2.0.11/images/clock.png0000644000017300007100000001047211443252104016205 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME,/>#IDAThŚ{]U}?<=̝Wf2!%VU6h|J/jUW *jG-jզjHLޓIqs޻;ÝW~Ͻ^{ﳏnwr:KB ӈ~+<B ؅;ў̰%ʫ\,j8hgz^Z#$y'@Y/eNW-?r2>u}kÝnġV<@5bZJJ9unl+4cJy}_FmmR*se"DB_W]瑞ˑ(HF)֪BC4#OPU8=G䥛'DځH#tf0 dp7&"pwcOZyu錬ti"L4&Z'JyRGY;dvY{>:W5Q@*Be(8ȗD>`];Ύuph^*Zs1:Jk, 15hu ,@P{j5 Z 2;SRR$)1KvQz7@-uB`Xh4RRDz:C,R#dӾDhiVv׀Ah#OJ=o#"ʁk_g`h8|J)B!E2cUtww#&aP#޵ YL1F0N۝'H")'=`$!# !b6eJ9 IGqwUAr[6=HDҕ q 78 >OrMC%Z쀺o#uMb!0& a D)!> 3_JGBDc#&&֊미 /"' 7\mdN?䡿 5 вJ 'OQGہ8(Z DkX0T%Ϣ,BJS+eE@o4քW튝=3IRiz]v˲~Ȝk݁i:hUGK<GhEq[)ƐaQʥ92qA?Sļs2n%n %,[߿ry[G7!ǏsmFU)h塤hx !* D )T+6<_ӓ O AX2к9R:mm۲0F dOrdl[?Od0oJ_Fe:HA0 F05禒dߺ X3y?PO=Iz.(QTsŇwz7ݷd%<2*(\tJM|_ǗxFބ\wGnnve[o% YӻbS۶򶷽?zx7d}{,mZ 2< /Lk9=#{v޶e*⦎Nos::z>ѿbmz}3ѬH2( ~EEJQ"q~m_oz+_l~(uNTXetv5ԫ5pFs@k44~dh~K5/T*o&4B~>8p`[JZriK$^a$HӲѹCJk (LX| cs-\ sN>}zu¼T*5~R^0m(QR!2B@6^H t-˲]R2k׮ĉRMT"յ|k% Zk OFcp {mPJ-:F|AXxpk,-{k?ȉ'fϞDV༘%Ley>B7FE\\v@qP+ֲ:߲,ԧV<3;6ƞ=-oy OM7CX <8R.6XJ)r JDZ+%o>O033Î;xybP( ָ*e/QdTl6j/-Zk޽8wK/#i=쐍e[xuR~hq.WC6 S,V8z}^񼥿] ؾhIwOgJMw&BB6!֖@Jɹ RyUᆵ25uw][zV4ZkRkN'sv9?LC'I_07x#o|uם jPqOxJB(F"a误JF)TTK\IVku۸{^%! d9|{J?2Fϝ\R{O}5}EAp0ZܯJ"KQpm Kc;l#$]Ӵ(LN02HYumSUZ8q,ظ};'OJߺ^_"gƪkFٕbbD!_b`p^q]z\*"Fcu>7_FJu`ez\Ǝ\@pϞڴ]n1;!-289: ZIJH$05_x\ xGWo/Ü8z:=;LjR$Ow ތnȈg3̞O39>CXպ;,lom$iNeCc|3y]=nCb1<&ERv@y]~O$L^;:*J ESw$1Mr&66XmDF[7 x ׉/~|oR*ް?G_R2fĂsrl{4І"} q8kH&۰wiqBaDQ"n=8_&cn#ء|>s䇏T^4A[t}, ĚzAFv>hKt olK?ԚX5A[t RFZ/w]~ٵ{ܰ ͐f^I :i蠣B.*2O?S?Z&7;]-$*MnU[w^sȖa'2oOZd;x 0 < aa\b6G!+E.?3|q֔jS*-z/fjp mZd׉4eY´LCKT=_°RR9xfngygjԒ%$Z_S{ pK T- 0:͐ЁyR%?;9uj"--0W٩7$BMVM-ͺ=/DjMXBl0}"T;le`/_p?WNIENDB`babiloo-2.0.11/images/arrow-up.png0000644000017300007100000002273711443252104016675 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME #0{ IDATx}y|Twd YLքl$Aqik}}DZlmVP}hEDdIH l a dg{ds;K h~O̹9s\`@d@d@d@d@d@d@d@*B_vedX.d pm:D:@@N3_|`X4 =DGlve+@^a4FjqxÈtbxZ8ԛPwZצ ߊ"p1TWWCdLz8tǶm%_Iu)xoYXXr#7w<"""ӺCt_ǎUT-a z@֭[_ȟ4ic7y³P 'L@~n.t:|y3W*#GiQ AtmRWIfrwDgyy(χ^j۽jտ&/~vTTEѣmu`l[wi`1DQKdd.IN՚xԐ=wt Պ Om×l @i&ig؏Q Q(VZ'{1^p&PֻCƈ4KJ*Q;lz} %rKq8!"<4ƺȜ~|ǘnH\7S3za^ʳΥ06t(n@gg[# >1M5@/*Mbt:#Zk㪮zLj=x/9{P[[+[y?+iw3?%@'#IPi^]܃: /@M%DQ*@ь)cH!C0up>|\mog=p\Z Pq̜Νq.^āa`pEDEF"2*S9/su(խֻܜd8III0]LdBN8(3h 3za>m*t:gz9]z ti1z%oK[Z 1<"7'|S "#{uכr+ lRH8X*EDHHkp8<#Фc:u[3f02(]S :ӦLAhhP p(\zFVMM JKJ "ͅfѣGqtM7wI5|q< Z8;qq-U!G,H !..΍FtT{<0ZwWdn>{챞tq\t wE'dW` OڗIR!΃=BCCQWW"s` ,񪭷L͜MD%6AWP}T3Y!Rp^[?aa!QUU˗.aРAQ,ITaZhkkaq6UUUHKOKod2 /ǩqh\ `,@]]J 5ksU8qK |Y!tIfbcp:ApgYǥU;w'R'rsrq{]4e*%)%wC|'T]EEhǩSp%#44Lp摇Q=2=G 2R@fVcǪo 7"JAr:D]w˗{tYUk4ܸ=p|‚UwUɓ'z]N>˗d vp/F6 nQ@ 92GvIvS{:-\b}"BHHW2wo!mI7447h.s1;F)Sڵk8r2d |+q/3&3>tzzBE"(A+U;}S`xF?JѰC:&kfWaF3Jnǽ܃wUSҕ/pe$ NhxEe:$cq-- "*}m*%=uF#GfTKTfٜ6(-)n3y/]xz1.^gHHHhmky!@x ?Gef>K@Tӆ CxXs/Ǖ+5HLL`PLF)HA.5$K{aZ1iDXq]wSx 1)z}'mKgʱg#,}а0E@k/~!nJg (/+CgG'rssn*J?99ىҒR1MEQ`2"$$' =TpQ:Qxn~11ѽI^7/ͣ+ X,+/CGGg˫^vhot:̜9+V{ II/@ ,z~,VR >|#( `Z%t~S]KKE:%zN++GG{ƍWBXh(nbK/a1hhGYi),Nxr \0bIp_{hxx&]J狂g8n`0d ^|Wm:;-_^6= k֬陫W^~GB[[JKJi]6wV߁ Lp7Nr.Q^ops( Qbj21:%d vKtzAwmjކ#3 222چҽ]J^QG}* &}95?1 ^ 3J6L,tjhkmCƈ }u-_%22kVFFb_Y9,N {;`4zhXU5k8G- 7V vsv 8I%fChimEzz:֭[hwƚk0|p`_~جVG\2,.uM!$]l؟?̀'^J1MMMhjnf@垣ul8| ZZZ6l^[111]$&&k_]Æ`<kaVHpbăp ysyL%!!6vYM0mv4Ͱڬ ;Kh%z<%8Q8dzurTVTIذ~=իW׬ ׬~c\z5KHH됔&s8!@d %6449V]CA ({PC N4aZ=:oΑp8PYQ&3ƍHJJ :lތFEe F'`B>*+*0{l޼9MLLkk!!! 8{u}='͆fX,LivĹyUYcPfq\{: Gl6#!!ol|)))AK~6fCBBrrɄdttvl6㳝;Q}:b|3ܸqMf$&&v$Kz!NJ@ Ǿ}bhTTv-hkoCNDA@ձhl4cp`acʁض<1c"+;'_NCl7:'۶aCqKJJ ֭]874DkFN!8.@3EDd$M 錈3c8\Lʘǫ؀Ac͆+Wbٳڊh"etMBDd܂zlh :::iSO-HJL jjz,tgI(/+>@^r(\׫|!@E>u _Gzzz?w/O 1cF+.c$qhl4he%ك"1el߾ hinAl\,l6{Rf-߫MFNHx$] UU~"#"a1"(?|!>} &yy6'_N mx ` 5̙3.۲Kt]Z{rKU2I( ЏG#ganh@tT70j䨠th}}=Ν$degh2 u5 `0 dجVfD AaҤIv466 UQ̹O kYiY` :h]]=gЀH=jtP߹s'()-.$caQ.v}M1,:ycbk׮n:zNTT~ ̍fX, "N֕MGޒ*ѺP{>w7n@XX֯{ AzAw@D>YхY}*z99οfD ƍիګ8u,{fbn,qfaƩlgϡzLF֯_:JlذGcc#Ð5> qq|P^gttԌ:|8{=0Ɛzƌ|NO%/^g4k("f3؏FHRRrrr07a1x`}/3#>+S5  ]%՚ɈWWAaaa@o޲wpa ddcD<3HmTpY792yy0 8ٳg{QhAAV&/]Fjmܼ;9^yV´iV,Y}6 qBxxJgx/P$ߑNfl.\EOHIIAFF>x::ڑ6D.9ya4zĩ.陥WP0rԁzQQQwUU'`0i$ת{ l!-mF }^ݎֵY3^ٌ E^^W^y<&"::J.%8ڷ{瞿E 3@Ta4 8r0‘|~kjj2!{|6UG'<4plРACcC#jkk(=F z-U\ǩG4P0ߵs(@aA@GU<|g9,4F (+/Cjj*Fft;CC>5o&3?> PY5m& ))ٜ %8u$ jrO裏s"vJʚ6 ]>7GO'Gx;"<!!z444bΝ5jw#>ӧO#$$cƍŰaCŎkMI{ǯ4搓y$$& 2" 8>CaС~س-c cǍСC* g7,~^?$9mcb@ˋ zΠ|<.^h]ΦMc1OHZvorw :oN Ƚ*\/=zfzӧOǼy`X1#GgOOz{~%K҂fx䗏\_g@2kk6Z'h^ph^i]v}eӥXqZ1i"ޅpmvW;~h_mF>Һ2O to: ҫ5^n3Zf.)wCo4}Q? uD~JZWuobx )2_MA㪴?}{0 _W;j2~CgroȡƯՌϭbwv&z_.CZiK\Aʰdi7MD=NAܗ,-w]z¦M'=d̞Ua^fd1[N`IDAT!0OT#$b ^'[f=³F\0o] <_Ҭ'1<+_r._xwT9ei3!ki]sʴޗSr߫j. `ؗ=zi]vڗzKfՀ ~TiJfi~"[mO|KE J[6@>UGϟ?~d钻_4k{޼EyR>wgמ3*%Uݎyk7+<]0o>/7{מ3=/''.x$vAkvG!\ڬW-Wkj|uJ˕uwMTvu4r @s^RwSRZdȌr_6чEEo "NT-J42VQd gNmt{X :Qc7ՎS)||Q#y0Cr/N*Ntu֑Ar>֑̂@x cԫ}W@> ]Wj8C/}̹N{>~J+q !# 7N#bpaQ^{Vמv7ߊ+ѱG9:3]iN4i4(<^O[Y{uh-U ߖȷ< ?S33gO'AH!B9JJkjHCMgi~Uz~ki(G?y',z!a7,{ JGz'@oS=LLevaaxE^0#r}p0kc0 C~NΥ9ea )eEapH m$=@ :f}|av 䴺D){_~v5W^˟:ez::eH4!r/.Xksń$5Mud8 2b%LH)gg˸E)+ c  1*79Z2XkJD)4a6TCiyRx*$ĽWp2|"6 &x 8.tRAwP,$ZRIcu͉&8OpA {庝`,+G `W( Y}藿ins}}/7W.Y8؜کڴ?QVOF5>!LID%UHbm޷ܺr(v;n0:hv%3 ̗GO&úzB׵V ZI!/qZ n]pnvcQu3xmƍWFP¹Wlo  d!~uUa`W~h dTIENDB`babiloo-2.0.11/images/configure.png0000644000017300007100000002014411443252104017070 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME #ueIDATxy|T?gl-/@½j(jKKҨ(ѠnJ}lV}zQKIHEKmݰ^/hd ̙ٗ?9wf2Y! ^̜{w6|A(W$4M_HQ(EQvHE$yj~{O6 Sg˖-f_#bI( 4MaxYR}V{.!^I |Fqom4MiQ DP b 7www/KNi`6UСK?yHRO0fXwݘ;wpر/uSJ89:o7 馛 "?  " /kjj0gٳg;B*8'5BBÁK< $EeY> KN|EXj@*'pHr&uqF/_w*RNhA;`#)58mٲe ìw l2<3l/X4>PtF]]wݺr엒i < e-A$)9/5 rXo00m4P%W"~_~9)ޑ tEh4p@1ݵ`u7%T*ՏhCaq\brEQdqb2,+"qҥK(._Ft4M˭zzz@$4 j5XE&… ֭w2 a ,M/`Y( Q8@4Hq%K~Zӟt_(zaSO=5K(VWWG7VfGN<qZB筷ުfτa 8n"Qb|_.H_җf1q(˲2Nr˻[OsP<!n_͇?m4TVVB1f/"(B6{ ÿ~4qG#y@)GIiܹse$I ZEQ ,"g5Vv߹s'y"l`P[[+z$I)^/8,˂$ɫN>|555SR=" 84AB$IFccl6ihZ,+8UgΜ+FzPjLJ%÷X,( eYT*$?\,YTUU!H$Ii`ީӧO_cS.bx%`4M'teй\NNJ.K>͋8$ ʕ+oʂOCɰ95@Xp R.n<"|=R3S5|+=J޽gjϗR \j$VV˲իWdn^ʞb׮]S4 &͇; *za@>`ڴii^x!4 XEGG>ۺe˖zӹ2v==>$pXFQT:ddaHC@:_YYsy$ ͛7Od;7mT_UU2J,A@FS8"PŽF@{~ Br9x^fq4777oٲeR`fye6% a 4m|Ϗ,˾`STmfrP2񊀦ix<t:̙3q|;_y ֭7 +Y%dpAV BWjQEQB%RtrZdF`D"AٳO=ԱիW/k֬YV]qֆT*%?R@`X@ŷʠQW^fIٳqeyٳGWPTPT{U;tM(d2hiimېJR@4FcB׿Cz߮=~SZR!!Lע@Ţ p /Ш>xYR8r̙`2DƓJJ3r\V7|3>#9rD,2f2hIR7UQH*h1㼋@+(B_Owqtr]vfhK(p\0@OOOAasIG T*px<O:a9kZ8o&hzw_ wɣ! (jdrn(/Bb  (jFAgg'bv;, 2 2 8I2C. ^(By]&Z(G{O+.7 8Nz twwy}@:rrVe$I$)p΃nח DQGۉ\)Z'rS0luuu7NMUW]V ߏ /GZՂyyz8H3f@MM BRIAFt:Hqq'\:I"`9+k*RPo~?u @ @:ø$F͆l:(>d(ӽ{0_|;o=S+՛@E @uu5~?4 b, R)8jXւz"ݟUV=2l[A^󯮮~=h%^El6#LeYh4hZh4$ 7-$v؁\. _ݽ{wP9 ߿-K4ӧOG<GEEt:Z-t:F#z=f3)A*_Rի7oE_}1f|'Auu5,Z,Ʉh4 N^͆cǎҚ 7@2,#/=pz뭗 7_0~?v;x/$IرcgǃX,&G0"hooǶmېN<+2]i,X~ρ@4|J^Nx< Nd<߻n4h4*)A.EuF@ V 0$iNd2Z6E__2 ,<'E񤈠6ly!QYjѱ:G`PtH$ DdߏhZX,TUUn| g2"H&x7uV$RWO_P ;@>9DQD4E:.X ---Jbb%HG6HD8Ν;f_!~yqOK@@ 555lt\ $IyR)wEWWװ˻_;s23 a HP:aPTNZF&A*B?bذߗ/x$^zd8t뭷~3UA.C$A0D$J] f:.:AlEV:x"}s n}7 ~(BGG BB H/7(fyEq-/6448C~@ P3zFsNjxƍVXAL-y~ [hjjәwgšuuu&2O3L>O555?C8grg0|˧ ~^(˲I7455}pG32̟?_7tg9\gCDg̘5\QQ$-ϸPWW| $I~eÆ ?N3zKuue𕦦g)q?AfӦMq}&1c&w9C pM,54O6|>|>nCM8e$O0ze$IسgT᪦8ˍN'@ss3[u:݄=?<_?瘝6){zxp8F   4~e4}չ>xvt:駟j_Ֆӂ/5^_2rc;yMMMVVh4 eT۷ogeep:OvpȞ҂Ç<%cK|h\TWI?6t8Z hnn.oTB!~4E,<)J-TQ˖-[lZW:a9"?$x?Q<-JwfhiV/1 cp8.b1b1D"b1r *H$|pjmlfCUU@[[ZZZdœ5 DBx<Zz 2 `WVV6UUUUXVȝhoo/W*U| H$dDիW?`+/^eպbhV]]](U*.=?ىd2X,&ef͚dew=h4n6uV&I9_D/{x\8gk֬Xdj[-b{{{/y~~/ 9?Ȳk׮}BAUF,ZmV = r &yV× >%IG׮];d2l6ϪD"Enq/R;v옜ПJenݺ((osFh6a2މj??CGGRH$B.ޫ>hb4MfFQN4/O&q^}SДQuuu4[&b6A4ߏX,QaXp8G >2^ttt LH$q_%Kp7_hޭF \.Wjfjak"PqWpf^ގT*qoذAARF̟?Va0 F{ޟ7mt{(z& zzzdy p *8NyaEQ; f555?]t/Z_d2Aр(W <H w566(ΝK;=:B"Θ1=Яǻ?՞vfytvvbpp0>6mjT0Y .|złl6綾^5;}. yL`D$C¦?*\,\IĝFGg͚dVd6< T*,A:.?888_}7j~`0hEQ _ɬK/ݢRd2Ad2yv/5Ͳl4Zp\'z`&kR2qGZ.-GYM)pXp=ܳsH_VTg2D6G :1ڤ$G;2x\c9y'E8`B}N%UZIx0s޽E'*xh;Q6etqX(t:9x%6 hii/zѢE+JJ [nfEC@UP XP덓s +VЩT**4L&8gΜ_WWD|HԂ n8'L"ƻ^QDRPO߆Rd[&.^|ş~G?x< V̙3ܻ|)ছnl6s(N ab]]]cJDRyaDQ޾} q|a image/svg+xml System - Installer jakub Steiner http://jimmac.musichall.cz babiloo-2.0.11/images/bug.png0000644000017300007100000000121411443252104015661 0ustar kmoskmos00000000000000PNG  IHDRH-bKGDtIME ##.IDAT(]Ouw7jk8HeʢA %:DAt01RNA΅PDuҹP:xI6(iצqUwv%|yO ?& 2Uc1V*޽F!8] ÓJy!!B! /N9옹؉A?>{t1z|ݒ_~ݣC?A^yұ _7R˒$QVi~*3.s-z-L=47 !>p_"K 6?;[=i'm'b#|Df2;jf<=P=zt.qd^ߙMeV!0 i#ֵoǺYSe_|w8di image/svg+xml Jakub Steiner http://jimmac.musichall.cz System Log Out log out logout exit babiloo-2.0.11/images/speaker.png0000644000017300007100000003407711443252104016553 0ustar kmoskmos00000000000000PNG  IHDR>asRGBbKGD pHYs B(xtIME6W IDATxw$]~*t r%KfW1p>0N`3|`#cl$YV$[9Kjsɩ{z:V=sTuuUwj%KlѫTU53<|߂ձ:VXcuձ:VXcub?/͒O'(x]m!6 -G5b=|<tQ(SZ0BYiprӣV{@[ w˔}1Ѻlgq_zp-zVk}XQ SNq*op'V# zP 7}`d89a׵fkVUڧ5/ ]^u$xwiut3: f{ @v E#51(1S.mf*䯁Zb8S_к_7E#[ȗtZ]֣ MxB Z_Q薙D}BI󒥂CRs Xic1l dL:ݚ.Nj[JtFk{\:/V8oq~2.Zv(SE1-'k ˙J~-uַ>wU)ʼn6݉iubY00̤a#]E]AEZBٖaia{:6ٴD6];$-Aֲv@p?ѻe;hpo>|*~nN/9xJJǎ%X!h|3 LDax"B]BEE(wN"kh]k%;Fdzm$)_V(\^@[owCgbi:鬿kE޴{I&9;19iyviXc21?@J+T+'Ty[刧Hg3:٧U[n0DSQZɻ ~'0}Kg| u^kJUcىCWOiژ,mtdf`9ވndA۞')GS)Suchg/7!Pߓ_˖3d2*>o[w!bg ;Y_Dgs[nf̑#Ǚuݓ!" „0=5`0,S J{i`O.,̏19v7sQY3cq6PQBx{VUg/kB~O[fgOx_߼0#i e ;\ /a`RIJ<20b/qéLFm[rY$Ր("dNZX=pnWO} ͭ\Gq7a..<{E^~=_aИ$I:!|cд<ѨW'7 !#Jjd)_ؑG8q_( 廙`xL.Bϒ/Z:ei!?p~oE nH> |I)-$}hm\oS3ku {u|TiR(<_kiy Zg\BIX,m{)JrL栔¶,6l:77~[qHw] hfvswOdYi@uO^~K|Pt4 k#?Ήh4J+V 5%OR>|rH; A﨔B,"O`&R*(W*]\ _!,r O_XOψItdE*{SOo?[ 9TՀ}/\R:di!%_L@.:,$O`&N͡X,Q֐RaY&mwgx;AF7^⶯u1n!iX'ǞH{wJ!=U~t&f`EfaϝݧiBoף3[>}{d?6 ZbHREJa6o;_LmއP-DȤvnr'M !:;],5C,.,Ef0+6R~%Y/0PJg)}@z2c8E bû7\rdwts_Z3 EX ˤw n&_{4ywH4B`7h`UJ(H_FD@`@ (UW*P|`3ytjDJ}xR`1l[( Tig\qjؤRF$B]= cRN#B3w,_ j}>%T6* "IkXX:4Xp&O,="lZ!pZ1?@WwgfIuR)' n}m,< l:u!en'A]WbDR2㠵ft&Oo\; "@a'b G@:<G̣tueJy{iDtkuR)mn$SaTP8 AȰk&RaտNw~NJoI$mёD.\rRXwr{Oqc+LAPiǭz 9v7Wkީu=}IҙX* q]raY7>^]R^4/ˊ:}:і"(d kֺi*n Ce,/VrN& S,R:{-pDò:sOw?<}GvCg[AJHƧl&R)6lXK/BOϯZhZ'G4쎶gz4R@%dn6jB%a7yG򋌏O31-BI$|._hzS_}u%}痗k4~]4m\Wއzq{͓O<*u jW&Q\` <\٤J:FG!›-a\)c[6RqFc)aE2!˴LRYn՟Hj_}pݸﻆ5ZMٶkqblڴƎ? zy0N.h% ,ϊdow :T0FZQ,F^A<\Lgoo3ڸR~^ڧ꧷aʦDqt/$v|_@֤4LXn ~;*CszӁ'[b[cJ^C+[]/+n ĺ.6{q[a.xZtL&"[D)@nv6|7=ȣG<!``29pif p,\Uٸ%g߷.bdwgn'1~b|_T)VqݚH^DՇjn*Vm~lT[ AդTdIۓmc1f)J$ L$Hgϡ\Z|qٶ԰{#A O︟g}-Oe\?o* k+z~xp?Q.V$G[Q 0 tD4D47AGu~ G"UA-M9:"h1AGGRykYTw1?scr~t^w/?wD;I`fnhDB_W ۷֣&l޲/m@1vTH@*:L K]ThX9mHT[PZEVJRi S1,FA:=˹TK/[Üuy HWej%|wWkglҁ](2 mEvA星_hD?k`h:? ˇ%BZ֑o6I x*! ǰ-HБDQ-Cu4'Yd:It9y?S-nC;}U<DL``^q(vX;4mwi~ϮvQ9!uiSEѷJFnbȕ?*J-LC֑ܨ3%^_e=fp~9HD4j5gYXRy +J K 5mMgdtuf1aT'a6!wv%)^*$R=)Ukr1:P㰴T8yŧWU^1yd:kx> GozKE͚9sxʕW}I|Hԇ o0$hZkOqBA,`AZ%119JX+wk P{A5TǪi\*/*eXMh"M:aϞ$b Z{aaamZ>ı#ގۀ0 ?_30Ow~'ߵ#Uk X2ZJV?B}.|+~,--Fd%wRuPGcn~=1,+(7a()s;1X܋ʅwm|~> ߴY/s9Rn Yj/MC*myQIhU'FgҝNsb|aI:"?s?eg[7Ue[bin/#q~ߓKW)Ǯ6T*v,txKu{%&'8HXdfvE!"h?ٳs߃tuu3t9z9K:-/+ё`iʩMyk+?_xt4.92,,`dr!T4o(-@Ϛ#3>>lL"1;N,fƠVQ&_ \r1"C"nZ@Tb5$WR)~q c۱ i&6R-QK/ Gsgow pmvk;n |Vb"Y__$i|y[;v $kSuhV#q4mXſ~QOz.s3LL`tdaE-P ZdG-|C Ut+.={rX~c(-X! 9bbMPr/?> {9{n 9!gY\PI4%]B*1*Ӌ~u?>FZmu 4><; fǰcu`-L9h%Dgocڍٶ idp5 eAF#ZϞwLvtlaF#IVxSSX~Ns36tÝP2?Hov!4kf)Ȇ&ϳMuc*=; $覲vJ\`|87n zt#Ҵ))tݒ @/6n $cteR-Dqk_u+fKڧQ*ǏM2f-30E(G^ P}ك$It}Lg?^ KHv|U xm켈c=w-EntLE)KKyS\6G1&A;CGcZ] 5+_3v(W^."Rmf/O}>~Gx_u7ُQ݇R.G#!4oOywT^-0=IDAT3MZ iG ۶H>QHZA875#JJܠ drjRԩJXW&?͛-%e ]] ,. a_}rwD{} wuܫG5PmZ]h"$Bךf=0zt1$s-ͯjFGGʫT%@C4 |]*T7(#ŠAtK~)Mr%OEt@Owx" Ak %? =Uȗ}K}HpԵ;~->e3yrG] þ!PSwJɐN3}Uu?g a@6%DIOA*zCтPəg72p<o!HT*O %z{ J#lcO.]{ջA7U|5{j{d4ٞf<#!e=ر,sssA _gмa:m Ѫ 0T 5Aup0"-L `XIUhPz!5!MLH$Hu"A)X;4řUpق<j'@tfj\K,NnhJNƗY ,|3xt4WI{A+E6ŕqp\S88ㆎ{ԉFHsɅrjK ko-3_`ׁ HHD:s<6C4 KFE\뿀x4"}!]=V#rx#]7B$"yXJ@C&9ͺ{Hپ+JXMVc8^S | cO:8pZ@ire;HēPB>X>^]= 9~8]]$6o]85ˁϋ7$zӻqF1@7 :B&S.ܣ1R7\[AV'Z;u 3 JTn@k8LLqp% Cͭqj։o=}\tޥ;ҍƘm憔Qe+ZbaDJ16v޾~b>9v\:@o%BQ,Nx ~ čTƫ^FBEWazr:2kw?η!'pm{7}u]wJ8{/!P(n.vLN/RVpܚg〆x̦-224iY!t[дj "^GSƚD$@SðP,.399ѵ^FHk-лa:wXo jP6eddHᦈ R(rpߋ^OfGHd/ƩCVJ1uGWjŤkVPGtsJL\Z-:^vm$q24Ll'T Sp§o;NLYDB*I_OD-(%9}W_>rJ"o8>O%#Hw~ҩT# GX6Dt3vsj5^{NzGosIt^[ǩGtlѮo1};æX*VJiNhiTݴE{˖ao퀪"SplCbH+)%#CP^O0 v;|@kVkxӲB9Jiy`i,S*y9 wt ;2ʟJz 4sH֪T|\n{i Pe SS(/dE>|K#$ӉOګZ߈X!Hx9]$fHgA@`ei-#wr;7z]kCh$iy@ӓ:Ⱦ@W6XZJͩF+ۥ|_A7n[Gԃ\$@8C ,Zb5~gM7RX-){ko8ƺ1VT顳C_bnn%z(T bk<"ITu CnqO}. @ڏ AIˌt=˦oI䈧6ݻXq7O}(7|+^ٳn4tju&X#fHto#XRI M^(m<dD5D=PlxX tY..ӕuOM&O碳Bn_#Rr>D,To4On*q(c͖[@k|){1/5MRl۶6%j]('q͜tVNy&oǩXlSN??cSv7P yק\zO|[6*z^7`&J;+cc~#I>Mdڵlܸ;fLg U܅*Fu.Jm;ޅV-P=K9=h$mk5isdj ɗP} :1֪~di"%exDJS):GYf<5Λ'qWo0X2q;ۿo 3M!-/(͇ïu֭ r|nn7Q֯_G<oRHt U= k gn]bY1=Ԋ{qв_l&Bb YY 4brՠVӸTvkXfے.=Uz:+(y]&ӿ@k̉ *>9C?ҫj[Hf;ّddt#o"j35\^ H5I&PPُv#edXvj(UíNV"I+ F{Ij tj?׎jIsb=߆o>>_s瘥]ݛ5ǁO6+Zk:RZuԊ={7^5%@C[j!L,Q9VňTX;l`ud2Chu6rgPr=epsOF Nޫ풚?Z7[b5vkxz[)rSO<鷠1+Z!lmT.cqpg"Dep,fKHb6J|QEeLa8ضIJt}̜`|qx%ǛN~_v[B008@"ܟŅE~>i$ #Լ 20O2іn *g)p1d.y424bMliJ lS#Hr0^mb%,a*LC` 0 7(lZSӒqؽ$VU䏾{N ~w~JsRZyf3d;;RLNLC333 @Kl6==$6j=) A8G+Hүt @WVM$&En,ZDrZDޫO$0 3J*JͲ0;KKK_tqxôynM0xz%Q*1,vmRN?s?QStIsV!c1]4 rIm얊TJ%2JW״,lƴ-Lg}!~r:-R7jNJfAYOhe{]k4J]VoSJd&ڵe}J[S3<|_=0 y!vJ-Za>%ULkZ;ZeuA+95') 充^zcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXcuձ:VXo&IENDB`babiloo-2.0.11/images/list-remove.svg0000644000017300007100000003264311443252104017377 0ustar kmoskmos00000000000000 image/svg+xml Remove 2006-01-04 Andreas Nilsson http://tango-project.org remove delete babiloo-2.0.11/images/go-previous.png0000644000017300007100000001432511443252104017372 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME )Ke {bIDATx]yp՝^ϩ4-a[ fl .HVlX.CZr8&$@lXB q(W\@B ^–id3w5{fdW55==} 0` 0` 0`1Af<PAoݺ wqU6X3I޾} m<7Ԅpĉ`u lǎg& q=3?d}---hnnFKK ΝZvWQJ;d_?pw~G^L)ZX,X, үM{6b*د(7`! l6jj"  !R00qw/RT!˱rJl6CEvAAPJa`d7JRjR ׯGMM  J)***dڵ ^${DQ|RzZR,Y{/qQjjjpС),t뮻n$%Ji,|J)8Ã> tX, i L1۔R"I"3f`ݺuEǎK+Xx$I  /uI=J)nxp\x,J)BW(E)-dAnEEEx衇PSS> x\v;BД&ڵkK#K(QJ!cX`V^!=zTLd<G"SJ/U5& wy'/^N D8=B)D)[}]]|AB'd93LDĚ5kaLT+VUݍc' W%IQ s:H$DQq [fc3ƈ޷oG}+~Co W c mmmX`N87)߈ =п1~+c{IP__of@,x,ټx<>eIG5ks3w'n[|9-[ۍ'OjV<"IEu-$iclh7|3jkk >/sU?ڵkR#6V\ؿ?Aq'<֮];㸗c7[bU҂N\mz604Q-c^7|3v;߯sW׬cvk8cSÊ+xpA0!/Dsa`~@5Bȕk6qua8z(Μ9lK5L c+W 7t!ؽ{RWRghoo/ B[cNϛb tww+T~*G/b&Gpl=Qt]òRgBȣ{x)~,]zuj[nuwO2"ޮr | yg]-"p E;wT /l5VHR!Z*dv:y9@b ;=X%ح .e әQh(@$ZW JM;0VM(_E)}1֨a+؈" EZ^HmNL>1x67 hkk3͚5qJYPP+W"usԾsiJ3+`HvLI}aÆ1Ɩ[=c +g)}OFZ[~*MlF 6|12m^z)vu΅~dj]!gҵ zA5 ֮]k+--}1V.Ւ/fkݻ5 !S"H'$mِ &d O/I6m4,^Vb\e0mXZTyZwlܸ^JO'NΙ3ؽ{7DQ̹6\I CRQ1lƢE088eX Z!'(!&eeehii#G2T0TΠu~*!V_w<}npsTVVO?UUw0_B!rBA-^_ {ǔ/-}}}>&PQQB.rԩSTkꇞk2OKOP "՞4sJ؅7o!2ȱgWW'0L?>Ν (jՙȐIէ*|ᢋ.œ9sPTTAt:D ,U+SI:xZ%[OQjH$s݉8$tvgdc CXVV磮6 ###x< -3945)j5MU6mڴ(lc'8$! B =طo"455fl6addDOA 4$[ LO?RWjR^:u*/eEW!Y]]aZyF [dgjᙴ!Dy68+0ƶ0j)G&+KF& f$./5sGZUzLQ9Rziy<ݱr.jTo8>$np(Z8E[$͆ S-#z @Z $L-S-b1\Qk (`2@Qd&'8S?$S~r@o$1C&o`?tԷEQ7,d+7nxR~|&KǷT0'])1lĎ0SiISo4vpi?mǡVX >oT5rxVc8jq~'OD0p@ %^(m"TM& `<|>ߨk&!~g>y2/Ȣ(bL&1o<̘1#x9"T )p/L.2=\5IGR+Ujm 3tEk}XZק;-ZT>oBJJJ`Z<^o~4>웄݂  fR;Z YOjlZ%~KkI!=\_IIu$IFyeeehjj̙3a2O3td6$'Q%;!f<#p8k/[[y>LgPK' PG ́dBqq1v;"oe˖vJX,ߏh4 ͆ ̚5 555R{"|VO=Yɩ I5kޓ$駡P8%%%0L(,,ę3gt's1zLXf2ho1U /q"'rT  3gDYYٸz|-^f4^mI#uǜgIpRz!d SޯWYYz(\Z5z&Skj69 {W^aG,Cii)`Za144cdc I79tلy}/  )b1v555GYYyf-@KkUT*_d~ X<#G:uѢEAIDhUzLH.L2GíV+$3( n,[++Fx<(--nϊZ0s9է*7x_L b``ǡc:ތ^6QAS ^466:}(wq_$Iz! Vb1TTT v@`_ȘNz\Ðkߌ3PXXߏA[n}C^y*ǃh4*L>6ެln&+ӾD(,,<($@}k4,We y#"Ymjoo_.###fQUUZl6 +cRhXMWWWQZ#tC L㨫 e#Soc B<ϣ((( R*eOUȩ>2߁Qr:q},CUUDQDqq1dܝtرc^JBvq *ͦOX,=\=E-EZi֬o!]?{z|p8p|Rov-|Kh4iӦvF3jd3֩X^'C.,r B~UTT}MvA^.kkkk|icTWz5, QPPh4m۶!*tN7Gpb?w8_8g$Qy^1}t+TH3}~'{yċ/([kM&x \.<ԄBχoESֹjo㸅b1Ӡ*h4zΘx=3 Rhz-o$ItMMM*/rJg j_=01c~Y|%h4 ͆f $(t}gACl6_ByUE&CЀB!eFRS&~h!4A ;C/ԩSp(//ǜ9s`61<'N@?jkk҂h4sh!13hDvs'f BHo,Cww7`61w\Y4 _zbT7nbΝ{ xRAttt MMMR;CgH0 Ȟ={n2L!0t:QZZV@oo&@MCL0ڵz! ~F3gۋ@ pNuN!]A Kf/(===p87onwiXLj& y؞={X,Ӊp N5` t>DߴX, !dȑ#x}:̙35XLGeelypt] Z$ɤχiۼYuj .wo9¦?kowZe0lΥHh 6lP]nÛC-#,lvVWio{SkYJ0>b>JzxS8>0A2Mݹnbw)<zVχfOj送Ex-9LuoU|Qw1"CnW>9M|YS/:Pqn@/{.DL8l)_:b1==/m-]r,xXXsݚO ߐqͽڥqV9(DJU UVXtr׺uڀ˵5s'dG6kv)uӡF1w/P+W܉fntar'zw`S Uuu/j4J}?~{*$JAJ"˗|L8~bq!nksڝcpOfuӦH].ܿCȲX^"!axeD[nY]ɓ8+*s1u R<>i=y[e%.X"C|Ȳ,HX_"fl,Qte##v&ӹ}++կ継ܬ$D]STTWZc 3oS.T'3KAT.qmm9'2eϓ$lX!_vG f [_όɇ{ ˀI2x%cl"f2>S()5_w"A$KN1"& y9;ALdRW!a>6L[$,a{\Qø2a]LjF1 ]G:"B1 ]/ihXmczH&Yc%Cg!_@2I4D ̠$#D"7e6V !e.J:$PSCtV;w̾cǨaL72 b@'kiD۷{챜@5|Yo~?Q>\n0Ƃ8-$Ѐضأ-}$I*"O=ǝח\* } "؈xb P,`?z%#De%'Yں`@3EsjĖ-yׇx~#P((/'N|˖/Pn ZEU16n$9;HoAɓy<4Bl`N's?2 N.̥d\'^6l v-] p7a.U_={,пeݞSRGe,F*RE Nbn5knѕߏAnқo˄s>~i,X_fbavb8xIPloQ[6nT-ѩe!MMiH$Ih.!:EO~B8 $00(T%MMUE61YzU+ \耾۽ezbxr1'CSU*c1hCC(''KD+ȪJ,\ezٳ>`˲̊Fb)+h}0oo F];67kr<{$>6Fbj }vx},N'!]JsXP>_"I.='NP"!N !;=%eVln1[4-ݺKVρ;Z[ 33<\(jj"gI!Zmp< V<=61dje! )B?T(dHŢkΖd}՝---еk pvX01 ?eZ[iߒL^ղff t\i4673Up&?p.ܛLZz<[ ͸D~|dC0l#㣣47k, jeUs3׮ _g~ $C@i9 1TKSꨬ$Xfc]wD{j/.Lf h5K,0ZgMkW'15vK?^FJ~`KY}E1U}eNgNmd"<7 Si~p0u-pnKXS$1n|NׁfK뱰z) R)Ѳj-T I)1\",Rʿ()Vhx9O$i_)@@2E@O< qSIENDB`babiloo-2.0.11/images/preferences-system.svg0000644000017300007100000004530311443252104020751 0ustar kmoskmos00000000000000 image/svg+xml Jakub Steiner http://jimmac.musichall.cz Preferences System preferences settings control panel tweaks system babiloo-2.0.11/images/help-browser.svg0000644000017300007100000003171311443252104017537 0ustar kmoskmos00000000000000 image/svg+xml Help Browser 2005-11-06 Tuomas Kuosmanen help browser documentation docs man info Jakub Steiner, Andreas Nilsson http://tigert.com babiloo-2.0.11/images/help-browser.png0000644000017300007100000000704311443252104017523 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME+^, IDAThZytT}}o }a %6-l&ؐ:q4kqqZ$>IiӺ'mS7>)v` 0 #$:f4Ѭyos~f=X}橈uFypBp9& mp;bMKؾ!XXQWוꪋHyNm&haJ ?wfF ={ۿ)?Ƿ9w!ssf8i<Ǯ2'{{Jx>E4?];wmYdx&o0) 8lfα[Fbx~*āW·C<b8߯f dCm3[ov۵v ;>\B% $%YX6WPJڇ,FMEp7;ȃԻC j Tf KnaLN%$ JOb &vABSA)8;=fY7]d$DQ'(EJ%VK_FKWpXDp2H#r]:sp*D8fB]u%1*+@l[\If6 \?u9$m9@RZKbP~PVgjl'JDA- I}ej́@ŕއ js*C9㠄`l" ό YOgj̠Va JYb E,)ATsn}B@E,ө¹03]ssBiXT%Y \ A0p8h\J2;.ݏb$j~OHK + @cLsǁ/!M|Nm'\A  +Pզi/}AJg8m"$IR5`B("TzA8Y6H  nޭR_D*'8"\bIIv2]F2 `nKˌλ1{JM+*n, G#N[ǿ,$ M"L1LED;4%.حfs\dKgg$@=~JS{ K qifT  |nKf>26VNw8[}''ft!="떕Wq .?%"abaHT0\Uy@`׻RyF--_Nus5eXPI3:Z syR/Ιak$݋jo6s~vIw8#_=~93(gLdjѴ9$I%接3j αkBy.m rs9Ks P #LК00 HQI$H&1"6C]wmݠYIENDB`babiloo-2.0.11/images/babiloo64.png0000644000017300007100000001124611443252104016673 0ustar kmoskmos00000000000000PNG  IHDR@@iqsRGBbKGD pHYs^tIME. W9&IDATxyT?o*qce1" p7Q!nF#Y&:j29gLIfrrM&1q4n`(kK764@[Z6Tu5@0f2s~{g嬜rVY9+OE8&嶻K^4si2iIR QOf=R{`ڌY$&4urܻ\m{ذG?9O9'u=\!ˑIimco6{>Ӡ|dM/><<<ãsyxXYL4tL[=#o^{b- kثǻG+>ey>r4y3iims={\7\-24i0 ǮmD/]E@/+K}ŝe[V^Cͻ1{E(6Ys]ry`ٌnY֯EQ| pNF2yd[EHt<nz;´&AvaYtDڲmX K`-m[a]?Зؑ5g>ϣ,LID"E"¢nj%jni4̡CnhbB8JJ]ySAGG0J3 L&M<#%v^^g yΞ|wP784 6A[ohkH!J--m47g \#G c޽ڲ,dT*Y$ ?K:Zޘ>cqJ_u5xk[<ٳ.s*ٲ-tv `?PhzzzkmT*N*`| H3<ǿ|+/X,9&}/@{^Ǫ'ZUj;˜Llۡx<ƴYb|~?U>=kMh,1 U7]yomxh*8ynk* 7^hinګRw x^>= ̛; qyso Se ~d}7QUEUQp $Ly.ǵtȢ$&y|>_0k߇븘fnjjj#0&86Xd2΍]ĉv^ETTU?lmٺ}O]]Lnf$1eJuz繸rV\7}uq U纼rtxg>;އJhqc˘4\TU6tڢPZWW3'ctN2hsJϚ9 \+8N^~E /`}J{yWzG6!JarχZ0{UQQTy{%p8ҩ?ڴnƌ sCooN|tBkϡ4\!O]i\p@ n7PYîӶ-(bF IrUC4&hWgQ̠wupcl}c;(sŒ4wu]|sH>]l1`C]] v9ssnb wHd2b#G#I + RGؽ{F0u2ƎTWvW&mD_9?[;/Ζ%* @:)bRt_ #Gs%sd2lݺmX7<)2\x> I2(*(ٹ =!w޻40(Ųr frLf˗/u]lؘ1̝; B;T~0tt CŢ+ $@dmqaW" 7D9NeNIgєbq6mz]7ND 4Ys*ƌ@@@iySU{zo`/>M&c,Y4ĨUAβd-$QB[2N &߃]iٵk/SNС#'Lĉ#I" 8xzG@=p2x82?\ $R8D< #((imd2xU.B;˶mURPT!H FYY);ٳgFi褹clD5$I0LDQ*P;L{s%XRAD8i8˦vPWѲW jyVEQre@PC$4M#QYYӉtvt±cm@Q`B>HIh#*( + YyJ[[w{vScQ$IFm<뫣4BǍ㢋.$HrnZZ[9~͹0 @@QT$\ C~ASU$YFd~ߑLƩ6p~{/쉞.,]RN۶!"wP(ѣ? &S0a ~L"lTU!6r1@bcL&L8+-B$TUC%4UW^ƞ=;b'B uowٗj6-+A1*YRI$xvZ[;@$ai\b'R*'?(-ߏ*WUuWlɵrH#+_Ƈ@I˲PU|Ydl6㸔)wnۋiDpl}k+}E,_6MM߸xT ϟs<.cTU[n_?w{fn~UUmye# bfYrY`q2 fD#lBFWT.b ֮{H_׀_%%d8wĈ; /~whmmcժ/S.@ )]GS5r2bĈy@(40p]#8gyd2 @ @e\ MMTU{m!-1r{M&p'!O?lu]% dQU@5M#8~l6 )) i"ZpW^}CVCCV#$ 0wҤ)pܨi\]]M4?=wF&AQTJJDc1Ht\!p]#˱,t:M(D"$IE4Fzz:y~yb{#Νw-MM-t][܌%HL*d*? I$L7(Xz<MϿH:_-(W-^n}~gg';v 5ws-7bp˲dC!t]u]B YW~-9x̾}\ Q(+|S+666k.aSt:C8"N8NA T _͛`3JBQϮ\y+:۷QذeXňAL-1~ɤy^6M N^}ך.[4j֡(2^˲+a;_StvPSۨݿs_2xR8\w̙3oÇ3~|%槣 HW,20r¯O? ;4M-Pa$3,dg嬜rVY9s\ #ŀIENDB`babiloo-2.0.11/images/suggestion.svg0000644000017300007100000013101111443252104017305 0ustar kmoskmos00000000000000 image/svg+xml Info Jakub Steiner dialog info http://jimmac.musichall.cz Garrett LeSage babiloo-2.0.11/images/view-refresh.png0000644000017300007100000000145411443252104017520 0ustar kmoskmos00000000000000PNG  IHDRasBIT|dtEXtSoftwarewww.inkscape.org<IDAT8OmS]HSaHȫnթEDtEDunPRe$QiԜee3g$Xl5|ǝ1F|y}DQ elB"9[=r')VO"j ` >CyA͟aS O/Rq7PyR$>m ӟhItߙ;:WM`1oy Z$turV@G 8Η1M;x-E΋|?k\?®6$vvGfyp`TK-|[t˞S[7{uH()dʊnuRQtİ'5#bZ"g6A[7ɓ& {1ኊ*C6AvlF4$;lLBA ]w bs%]F)>%SrjǮ+dr7\RfH/I F!@c2^*¾ZBhP  image/svg+xml Edit Find edit find locate search Steven Garrity Jakub Steiner babiloo-2.0.11/images/drive-harddisk.svg0000644000017300007100000005647511443252104020042 0ustar kmoskmos00000000000000 image/svg+xml Drive - Hard Disk Jakub Steiner hdd hard drive fixed media solid http://jimmac.musichall.cz babiloo-2.0.11/images/list-add.svg0000644000017300007100000003463611443252104016636 0ustar kmoskmos00000000000000 image/svg+xml Add 2006-01-04 Andreas Nilsson http://tango-project.org add plus babiloo-2.0.11/images/splash.png0000644000017300007100000055727511443252104016425 0ustar kmoskmos00000000000000PNG  IHDR ea{DsRGBbKGD pHYs.#.#x?vtIMEF<tEXtCommentCreated with GIMPW IDATx{ly̅ g3sI.WhWdP;)AIjNPb@s1ڸuqqqn&A 5  EPkYҮ]-{ep.$9y,Ao?]g=<>ob8u:yN^''Kp:yN^'HpLg_Y}gܚo9yN^'۷ou{Ţ~~/DBmO~RW\ ? .hnnNE}'4>>I-o$}ӟ _{O>OI~~UgUR?No{ܟ =yN^'$m=ѿWJ>~Yt5MMM_^:eY=j6z5??ng}V~_/^TRy ov%I=z$IYu]|YTJ?t{x/kiiI ~K/i{{[O<}k^ݻT*z'411!I׿~q˚C=D"!IzWtm-..ŋv횦/*W*R7 Iң>bmccC~_}N??1Z-}k_Ԕۿ]DB׿n{LwY?I{nܸR׼50{=萤O|߶/k~~^/^yիW411^7o:u}/}IPTJ\N?$ʕ+*:wΜ9VVVy=#җ _}}Ǯ=t||:yN^;M oУ>*Iz'Iz߯n޼D"իzާ#yz߯^xAGGGzW$Iۿumo`0$}3+nٟեK/|A:rq_ZZZgO?y|IݸqCo-}O?wws?s7G?Q| @>~\7oOOK_~^CݼySÒџʕ+_W]R`l6u>|pޟo|C}{K/۷w[/>zO>dw륗^g?l6/~'䟨lwSׯ_W2[>֭[}$=S?7o}뻾KguM}YݺuKZ__?v/5򗿬~Z__?|:yN^;^px'>az<{nc=6p8>6z7~c=\\\ O|bx>y8?c?6jk׮ ſ/^{뵯}R ڵkß'畕p8? ~׆/_O>9vp8;;oۇ}ޙ3g'2<<<.\04LR7MS;~=p8/pgggd??a7H % hgp8;|O}C{ljsw< _W:'?9rMo{^u hٜN^'+-Ij6GGGZ^^? J&{K.@ׯ_9^OomU*fU,ԗe顇b۷o2rYIٳgUVG烃l- ߬XyZjmmM477rkff{|@K-ɟɑω GGG#4p Baz%g099r_Z^v; 3NJ&__kMz)1i8H(>όַ+JWWG"k?n_m _o;EoN"uQn8uꔞy]|Y^>Q}O?}'?zJe ÑZ2U]~]?S?~;SO=~i}w~տW?}HEsIOOo|TWqF$y/g>}c#?;_?S CT,G~ŋG?*Io֟ɟ͛}>_%IAv\<~5J&zp_++%|;zO|"A{Q~qkpe}}z)]~]?>9':Hrԧ>w]*OVS>++I?=#zGw kbbBdR|^gϞUk_ZI~'~B>fggG2vIZYY>9}|tIү^P6ؘw\A ~dp^\$L&f/c}{'7Ǿ777G1MNNF5QP>9}Ɔz;wwkzzZ{`85>>*# /ٿ x|ӟEr9ON>=<|KR?o[9O|@666NNu:y/|%:0Ϊ=#H$n#8w8D!H9JL&2I3-Ji0(NPd2|'w\}D25\R鴆a(nj]t4$/Pևg#I~?/e q wg(H@tzd-yd}w^_~^|{$JF~>ϋgsk|:ϋ+]yp=W/JTjdy#{,2vhllly^GD(q><< 6sgu}MLLsǭq ޿Zض˴0;/_k|?_?E-vՐW?=<uRnc~G}?u{8[tܙ9s988g$կ~UdRFC:<tZTJ~_lVa jooOsss:r܈NR0q54`1<89ϗ:88@V(4fnSfjZ97Lֿ{p-㣣#u`8:yޓa}uݑ;+Lj0. sguv] e2`Zfggd$}?sxx)e2?l64??D"z~>w8j_tZT*j4 Z*LjyyYU*u:áj577H*ŢupprW4>>^#MNNjssS[[[zT(TV/K&*˅upGk {& z=` PlZjZGvppN^b֦lz=% MNNgjdJ411~NwllL|>2`#ߜe4ψ3ݮݮnrԔáfgg[111\.1uݰ\.<+~}Y៱ 6PW^ʊfffF4c1K6/ u:oD", ?116|>,ƒ90c.]Bsi_nR*RSRѭ[t=y+_ns355N=ԩSr9}MNN5d2|/qk"H!A;tw }466֚ތQS ƃƃT*,p ig`d^֍cqn؛ccc!#< @ kxttv#J`lx~_X8LNNH$fC9!r! 띟vI'9w:UՂ!u@QlZ ئ Cr kZދ/jiiInWVK333* ::: BYƾ9Yfp~=1}'L֭n+ٳ*J!%pgmRR|;?Â<88СK|+s#:Ja<أH~F(sxu qXY~Ve2Rٳ*&&&uf .h~~^@F#l9mmookzzZ~_<2fffCqcPux4`0NGpl6>ZGZ1j5}mI y0 Ind~_~?8I7cq|]=M k H$n!rcC7,ȺDփU 8$ꎈ$ KR!3=L&oA q1zw91B35333"zِd4;;pNCHU*RRQ&䤦FlΚ#zjZ#bH{1vddh9]&q-;όו+Wnn)z`c@ Vj4v9bmU*eY5yΜ9d@AHA!Ax|~'p|V%^a\XwlE82jd3'l}ӱaDmEy=' MOO륗^jfvc؄n7d㚚l6#s(Z__?YV۷f5;;ۚSTRbJɤFxׯ_:qXh4F!h(l,/%+eh4fCv#6Y<+nbb"dG\3q\Cy χl(a{^t7%54ɄsK-d b^7pPwsYqNGBAbQnWj5Zֻnd,8O`STNdzdq:::Ԉyb]cdh j2ü܋_& gT*{A$_Bkb/Y*|G+G9Z CU*~lnn^[,tB HɠnkffF{Ƴ֒pz Bxގz1Ljoo/ f3-ϑQc ͱ1|z/@" >ݐq]ͳ^\ !@q `L9T1wfwHH|ppjjzLd0hccCDBsssvzQP Fo6j:|69tZ[[[V*T*QibbBoX,*(˅ NizpAprp#<{`1BRi$;#h$c_s|>JGpL9C@8N'd掎prTAv@dMv\wt\.kq-MP C-NYH$T(BܸqCr98D$g-kzúcOpz8L{UNGccc#Mt={ùTF Q@[ZVXL&9qm1g}RP m>{}Og{{[;;;ἴmh4jWVupVA;>>l'X_m?#)\gV (ԔÚV|> JR( xhhnnN333F;s3ժvvvB"JY`Ѓ=Ύ:ΘkE†a=P$q{IJ+w냒h4!Vt.nh\ YFŐU9s& gmu8yu`U*FۙϫP(hzzZSSSiuuU* nݻZ]]rVS. YA-߉B T^۷5???Bw~9{N@=  YF3OOO `9@EL| nt:Hmf38|mh{H#.c3y Xʺ:ź8t8M9?Rj5oJ_t)dԃ@/bf;wjcc#`llL<^z%9sFSSS#vf2 AVwHC? kuuU|^HJH5RT  ?@Zuw& 荣8R$mIgu=ZIjr|/ @=<::RV nU+J0X#<| dDbQz]ZMkkkj6#&曘hu?@fzG&P6 X,jeeEt:npii)VYP(Pl0tDzw F 'τP4x~لM͍WÒ^S eZM@ ܈3=C[ { !1f{3H(yݗqNk B2Ukj#$cxWLFB!pQ Rp 㘜Ts7(G|/9R3&sllES 37S׫^yZ^^g!=7k{FfMOO 52X'u9*[+$˂Q;D ׇr'&&477 D]ݑg6U"B͍?ӮƿyTXZ*NP( Y"_L!;Gٹ|(o8Wƍlz"$&8?{jz^0NDl{{SThm6#<L'5R#I.s1e,nG b=;vz)gztt]]tIt:L̆-CY/(nu4[:ossQn u5M0`͛#%pZV(AHm4 ^t =BA{{{a?eu:9 $Z6R^^uAܙ9{3s)F; BݻwC 3Cd0˅26'&^r8]G=c!֗`L@=Y1rY{{{JӚ p?ƦjW^Q. u0Ə!!kv:}rp*NzqRmgDlg-.nss3B9Dr%݉P;l4bhh]{"%&x-sf܈p,{|5#@v噁o_q}gGdž\m3{r\0f9t@7jpdId@iK4͆ @0951Nr~bbBf3;Zy8d@wnghzL&u@%q C2(\;߅;A;| ō:N sHK8̵b+HBZ򲖗dTBؘzfSZ]]UPB o8pq1e5͐ax6?552ԃmx!Uڅ9$ VK[[[yOOOkvv6gvT*BD W=>;usI#۲٫$f^὎;QU2 J&Vn`z=K:aTAd!q =Ν;fpߴ0Ԕbv:HUNL$^8ODRv;߁P8ڝmXCY!^rfSVKkkk!v\,A/HkZ1N'ڷ Q$=GfSi 7 owW^խ[CΎ>:: 9665yp8; N &>iu:N&ŽnϚ$9epgqyh7g{#N,&:vصC^+f ]hɳtlnn'tBvMВJ4;;J^[[[Z^^V|i'ORZ\\T.d( ([TD"@l6tt8B"rvu]hffF+++:{ofww7pv;h8rF<;/9Ggw oW%fqN8A['Z1d24(n7DLFf3Ϫ^qcpxv)׃sVA y' qZy4`;!{s)d&4l.w%R>WT j~~~D &{-Qg{ֳD"dd<'ؤgءVbxn>rtjܾP1|ގ ~-P$ϒ3G]}w-2|/--{m zG(n߾.~ᇕL&3hjjJ|>pj8_Q㭘`< j:}a_Đ)v:=Ú Y.=[*FNG0^7[T 2]qn{[r@,Y$w$q $XZw?l@[pb&-|x!5q+Ŀp. ԩSACOj†%/)G$ ɒ\ԉ@N-ݻwO~Q`pbw,.jwoo/=l2 {`%'slJW'̱ĥ;x#uhxw J4=33 ޹!3FU:2iJB?O }X @<uG1NnC2 T0$`@yl\ @<_2X~ A9 J@ц-W$hc?FqmWZyp]NGW^ՙ3gt9R)]v-h ,..*NZj.e(ׁY&!'^cTqN>8pex(d>0&L&q /]TͼޝE~))aw)d?ωsbnH7?'Z{ ȿ( zDgC7GTr@@zO=w{I8=vۓtj)Ÿ3k ɏZD⛜y}7n7SN'H$X76(J` :58UWsUx͇W%G^1;;6kĢ4a;F>rL;0,A3ƽJ<1O$t&8kNg(c32 )}@|Dq,NF*Jc>^vl6 .ٳt:jZ{fffjƂ-JAA5} d@|[t&'SSS* >==_ӭ[TT׿><YNq$ṳ7S)aHzs-;Ca]7ɨI0z{tv[^OjudsB`3Zմ CRܹ18=S(}zz=ﰶ "%_w.5ONY.\w֭[sN@ s;vqI ^yIџqx?પp<'ɧyL|;?*d>fv:8 کv]y@҂lvN6tD PH[>\ vlB~ϿSu6<+=? x̌Μ9ĘP*t̙j0???bD=v- QCi4~^x;wNtZ/^Y%I]vM_W~ӧOk||\W\z@ʮ\˗/kssSDBJ% }Y]vMgϞؘ\4|i.Lpz )y%O)9(ryD)DL#H<^p!LҤ .Hp\A+^],S|cB޽{al7dKJ>3;I< ]fSz]b1$$A_yoo/q:Dk=~nO-.*pw98z<CIkH˳=7#s\) 866༘h0Z1,r~iyN֭[^: 477'I._??knnndZ 3ɇ.C-.vRNl;rFKҩStL *Ag|7ݿu/@#VUwdl0ίb8"$ [E0v> OɫT*SP$ul[P0J* \6c8O ɻtx/Ľr=rҾh9mPvzGh)s(49h3^':ujd8:|$bߚE@k o,;>޸VKxO<6EܿC\ w^.!gQp-:h"R~1ɰλ NIDH d@ih 4X Z]#gUx٪]Y%]E \GqC]vMv[?xPPL&ZXX?F_Ο?B];wNkkk wPoͿp|+SZCM%-}'*1ڑzޗFjh3 u]$ܫ\G:! $ƳPJӚ Z꥗^ёVVVFڀ]GkGr!erA|=.x¸zttzv {yRޞwƏ%s-8g¯3r?&:Mjwc#Ɇ`z6 M㜝cCGc`~jZ Dz82\+Aиjɹ8J2fv! >ڧm:̗\ ”4:#M 0b{$LΝ !!;w݈d2RIqׅZY2%'ܹݻwנjP('Ѓ>K.8= 9X, kkkKׯ__zMOOkwwWrYTJ7tPj WxLq i8uAah>iPf ?=MYҥcAX6h=Iqgs@| =8O:tlr|e}}=p+X j$fS APV^H C籐1O'^+02HiSNi~~>|@]S'~<7spGΩ)zW8 Z\\TT. Pe).% k,Qk0`)?$Nʝ"d+~ק89\z8[__AM KЙ x)+'B2D̙XKܲ yV6p@xVl Οqjû:c=5b̓*L 3I(棏>: 0\ O|Ľ"s|ON}3qttgޞGGGѩSB TZ \jdL㠑CԩSa:q#q5&bX'pd6"` N5}8㚁D)=!amobS׻7<p8)q.0Wt#s <,"8C2wqNe.!<CNJ{{1._t"|N\DK#G5@+NeDcLR_# .^ c`0x>}:L^aΎfgguymllRP(MozS_]] 牉 o岶h4FpFM~*nE|3s6m%'&??vB*1A3brvB;4st mllݻwvu@h'nUzrwvvb9f%ݼyS^/v& ݻw/mzxȳ ;Abq'3㶖R-z ɈNG-Ie3yEsu)J)E9܄QC(_ n00̏DIf@{\Ѓ8)ۥ4l ^z:H_2;,갮G}MMlI '.Ag8Ɲ IDATa&+0.g`̌pe< z#bW,/n ?4^ E.nXϕ=уn̈DZ`x}8 3io ]L$sΟ? Bw̠.Gf{w 5\'9j*7+vwwjݻZ;J]x&^י!Ab̙3l=HY$P(Iـ!C5 j5 a0AZh`d'qQWB;٠2{3͆Rٜw>@VPNd^z g$JvY`J+4$^)!Y%鰈&mmmyx&y1˅$jff&L%yqUBgO9CPt2)Ap=th~ eBJBAZm H?ilD^Љpї!su:`qJT@>>ى!Nr灱QDS>#fgqp0D nx8Dh(N9N!zȜBȃ ^<|g7S7LNtDEwJ{Pd@r5C,B-g<g%8!u:ykڵkp'~]bj L'd lYӅBaue=.X/O {fL3 |,Yg=YK¤dz,x)G\Ѓxң8\Ϲ +вҼ婽*˺tR 1|PuB$׹gj0-sd1pd+iE{RsF۟]^ϮZjcc#56hjjjDbF:|9h$۝JC d)ljDBt2H"x7ļ(?}qc@@.+wHr|ryHL'y}!f<B %ѡvVMƝ!vwwUz+76+yGpQvvvtّ~{/WЭKjGʋ9@.ء<_oGd|DD>чܜȴJ/z~߫}pHٟpY2PIp~ԃAJd1Uq lh4B@.Jp@dz]r9;&OJ3Zg,kZg[ {ww7$^;;;}9w'/hd0Z"W#BrCl$q 5T*#y1!h7|i]eGɳ_J .6Q,- AĝC{^l>éW$BvhZb1L &ҵAD@ 迃\wx{A+Whee%\sX)fRX<NK~d^csXK;q/HI[f\ޥcN찪kw8q\pc8:1> s9F<)z-kNS\jҀBFvۿAAϳ%qEÛ7ojeeedIP ur>pD|ܹȻ|9_{)ˢ.w-0Lĝdųe7o ?>$X̊idtבp:YZV^{9'P.FFhZazxiZA{NHu`m( PbDrĔrTl >}9===S)qe3&''\<"GZ|DtH+ki!\=+da|4Y*yd5otVTU prfȎMYg87 ;A>ZYŠg]TTҹs¦\yz}.]|[=g3ȫ{^m#iQuB"<蔟!wGCW~Qm6x;W}sp`˅ȼQ  7ʆfSrYKKK֥,iOy-J_@VCv0 % 8ER ?!J818ԹB^ {sD+^a *ej6vҞQ}4Kgʢi*Ɍt@Ġjj/Μ9ӒNMM`g\X5dž&»NyL ׬Cމק]\yC. :#/l6̾u2g9""L@Ʊ;ÓG/C3ovR4A#-1ZŽ~n;wkmm-[[[\W(Tà=ֽ{nLs>p8TX URQZ^ zZyPe_,,,h~~^ a+st@Hw^ #b3)8w'B0MgkrGzueɲ~8l} x;_YX\d;PbgD4'$b;[?n ʵy 8rCpTL{ɢa" b ʾb@̋b? /ɹ1d{%ˍȡ屘A:P2>h\Qut$=}0c .rrpdx+I00 U9.;b/L|g\,\jK[w+r:=ዻ|?;u-gd^9 6~{`IoZ!٪Z]]lZ^^V\fOT*!%JEv[n ?^#w':Pq, w#C_ G[^%wYQxg<;#6  a: 4GGG![k6|5u&h#wJvE<'8ޖG ";8; x hün|lT,s}>b8$y6=3M/oysTi>P((ϫV)Q$Ji% GE# ΁e}VVQ蟖8׵YΆy'NQNĉ ӊ q۱#aob BXm^"r\ ]NnS8wty b}T["{(fދ*-nD"ӧOg8iffFsss1YZZ Ip^Ɛ9=[T*ݻwCveeeaq/55ܐ:jnĜgxvw#~(pJ .пK:QxE]ϳ`7̮GA!xZ(?)3looQ+2(A=CZYY 2YC4o_%@G:/[zׇ 9"IKm 9-J}gp2s@VGK%<qՓov>xKy\s#bi{Hi1"$7DlH Yw"n>$pA>ZZZHׁϯap~fffTVC:{sJzjyigjzL $i q:b} +,!ыpY[\ hq+1a؈P7^pm?lD >T A0fƠyi%n!d ،ywMlzzzD,h'"†X.޵;2yuXq)(.%-|)aoE.vΆςpg\z]P(F};;;A[t:Z&䡤a`vvvBי3g22 (9:{`S<}ˢURrx絺:2h\cKn܁t6m]^;ށ2؄s9r5A7-Q? >} bΏyY".Q:ܽ{7C=P3f៨;"' tB:!|`091JViss34;q":GP[?7Nk~~>p.mWLP&x.qwec/`Mo􉉱ב=B39.񈛿c\B89׻zrl6ќ#8NE;=g]VR 2v- Z\\ %9L1Dmkׯ߇txqL5S$p pvv6NA\ϔO1LjE)Ʉrjf3|&{a9SKkٗ333+ɓ +.8+Hc@^|NDwO"/Oӱ25EԛF/axːOɌstd!=k7$g 8Nܙ屓w;n,|v\3NqjR)Q/xv&D l8j<.+ׅ qux"g0^g,n#%hx߃O#qԞŃ8 YvPښ$iggGN'w@sB~OA]S H0H> NɿLpNu2'>Anwdn= eH,nZysN'磁qNR?иfuN@j4a)89VRZUVSR DBTX__ܜŢuƍJtՀj%@4n6TB+Y;<+`P ,A$Axqed26gC몞>lć99ȣ Wi}:4-3я{i] i\%P8pI!ʣ\p'ш~\w;zz)]x1m.lQwwwH$4??"TH|93om:Nzױp 䈡i:܃: X(^gGļn y<ۯ~jpвZGCZ-ՠJT*lQݸ dYXR 2NGF#Ͱ~2֟Y .rB1.`<3 Xc>Y3P8z,9 eڴG%(A%+Cmܕc4.4p\#q^: /KKKA xjjjD^B]|ҝ;wh[nD"e-..r2t~~^*# ,{ץ[V1g?j<̡/1;; zL["UcCS 1#ЂGDYpii>4"e]4 %TJ< _JC6,9zNZIh^ou8wX9N1ypB (q^^R L-ʉj $X޻툋2G8\׃5w&q/uv׾AW{B!ZZZN7-ot.];X\?Nx+G$XHAR|̲=,NAC>I/v5Im yx0t:ZXXC=Q-sʊb0m8 HͅB1,=9IqR ,nb+zlVHΏ Ρ!c%ۧ4M:?OD»|BݻwJ0և뜝 ֘txxƑcfAczz:<DTF)a'wL&ujLCY>`$#!ִW{ڜSc4&''Gd>:uiotC7c=#?qY =H̓'p3к:׍ڧ䈆pQT*#ce=+,V:$Z:8gE<3O*FCj1|Y?PZ%$uhȨp}孅I|ͦzvR`;/ZS׃u%Y!`{Yd0헜sv;(J!Ib"C 'rNM3gΌkIЗ`}ؕ#>^^FuʕЎdB%ϋkv/7ë!HJPv`5LVdΆa8 cOKZp\~PP36u&yΛs^P IDATL g,-?0gH1֣iϚC=;D0>5GTx+kyүVDDN*tȳ\.G K5Riq蜌N^!(JzWT.CU01~zC1pS$&qƃU:p|8(Do{{{Q90 <8{ȳ+=pH2I# dUYU*UɒـƆ^؆^Ї230lح(9A&dŲN@IF{==7F*J4h9K J5bĀ*9[c{bYU 8X6Luͤ?=h* Oj~:jZ,..FߏV- V$/ "Zm"8;;gVK^ݎxXr-kztx)W@j$fzrxƥ͵?X*Xe(=uuuφJ1crp 3ƈ$>> <\ sڅ$xSSS96$EJJ%z^ΦJo~4l"+!&8h ;8f3%*NvJ2yZ@ʶ A=b`VIFڍ8Z2*Z}vId=E=@HsDzppٮX__|/!"d8's=T9><X*E{tvelr[Mr־{vUO,0ѹ~ 󱹹96Llee%!hy=zlZtbp Fx"#$qttDZ|$k='Nf߇aDՊj-1TbFpwDi$rL,,,QFGsp>(PR$,t=eeM`O崁D#FPof4ɖzf' )[{"* ֔b)|}c8lf룝n*'HZyJ޿+I,;*] 0 ǒy =`ܭ,jgLgkOs3b|lmmw/@CnlV!?w 611~eZY_&@ܡX76{5ڰ/?OEIj)mK.<4iwϣnm|ᇱ56V#_k*N`ĭ:Ti7B<ђ]ǂr9>?2I%eNxIbeyRefZVw{rr2`pf0p8ps2I趶R]wff&dn}r;;;vOOOzecss3rϙV.NGGGI0~kR-dN|VI5155\1obgg'+h4Fg =wEՊxI&0J TVEP5ޮ}./"4f{䪃͖̪wsd3 E?Ͻ4$[vFw^j-VɸMEn|C@Yp`[eCW@|ek F[}vBܒqs$!,jś7obvv6~ǃJ6ćJӉF1F#PHލ> O iss3צ$k$2b}lnnquX#I ^| @,6Tɓ'ə` 0OfOr8RN\>aЁ r7a NE(D +iX/񭭭1d0D̸4?9&qssljxhm .knn.~e Uψxyy'3%O_rɬ O)!]3,Y&7L2JKx dnLh)LbX KZ\ҟ4< <2_~$̻B<3N'ߓ!zyj5^$wI'z!,~/k3t2V2[% HB2DtQ4a2f}6>}t89D3 q4[5f{ꕕ 8FjZ& ɉ\$#zp Xd̖n/Ẻ3떀5P3&?h VLߛI )oFzZ-\aWgj'$3z=3 @v>>907:NC^Z#0n[ ]*J,--ueCbkvonnjL?>, X^^΂abb"n<a/ݏ"bpc=ns6HplP c&pdC#!?Eŕ%$@ۯaHAΆ,l_" &yN,q2,pW,vfFpJ"Oxn,F2𳳳$q@z-xj5-[ZYaoPWDKc0˾X7lzk5aƳy`^Tbuuu]DbZDn ( ϛCZq 1$rJ.p-*}{ZTL, m=зsPcx'6KbPW*1V$F֬cif*I0i>,r>BF܅%5uErMr惑!5$L DzeFUJeDr3`#1G|MP=@pv5:eKv˙sl sx7T+ດC,7)ulV*z1 c(n7.//coo/!%#3@?˘LOf5qvvf3ZDJcs ^ A,qJOKT5Bbjiiil'Ubee%?~pj#ٴ5,pbʺa=2/&exWyN$OJ0677?$Bys>3r0 $#JKfo }[5@5IpbćU3y>z)*9N^pL:2]6]`2"pDfQ(m9?zoczz:F9~/-R?ˋ@ ADD5;n'*ʩy~f4 -4[$W*1"U~|q~~=doiaQ=bmQU^qˆ頥'e>J8*754QD\͠%i֭U%&5Uhɲ(_ջc2(t@0$͋u$ ?DU<(N$$5N2zeFp9E;|"Lq@sfݿ?jZ9s# nllmq`@T2^1y Yj68kB:zsbx*XԿW7888?? /jIߐʖ>U9ڐ-[0 eI1΂=c2Kk9H붒6 gKKK9|h] )XnZ6a6n昴ZusJ٢-d{~㏣h$T{vv >4t:ɰOTǮxU[dFGR'OVʖ YV8jO߃=?EIP;v!}DghA)'r{{srreo|qhZl96 KlDe9k2D|,--ڊX\\L%v$>]\\D̽1 ґ*QJ(s3К'&Eg6Aj) c$VVVAD̀pyyv;>xM]ZXXX`'''VPg_(8Pn@G`RO %K$ccs8ߙQ߃/c}}=PWf/gAWU/lbd+8a-6%2lwC1 Bڬh],;H C%$(hЏG_NjJD 3"rkX}t@IKp6;5 8'1ݻwI$m69&VJGDdB΅\6S"8p7,ѳMo\`GGGYPMQЇ7 UVd s_5{]:h3a>&4 ~6p#҆~؟nj X=ǃ‧@yLl=oafQXznuhܿ?L]z%4*?~: :z3ظBv ujhnn.z•TpWn'd.Z Qg?1ʷozΌ#陸`ٌ?Yf|I֢r"6ě~L0#4I?g& A&k49F̽"mVAxee%}I WFHܳSsWWWt'މ2Hoy䶠dSSS928"ލo`dD}w궊F:q0C$YLT?V`{7mn+IrY봊nz^YYjc 蜌y=:DL[.cE} *dn-g'Қ`XF݋gϞŋ/&%wĿh9%'pFxZ&H q5Gv1-SbL_o999y`@TTl:C`Edzvg`cd0(N=^S,M#ȱ!>pv;um}KnCؽnvNK !ITy9.'a<}*<1nyy-8Pǽ@#wRQr,qt[e<%ۈtNnBg!:26$GQ 'nn3Өq䍵&%.A꼦Au h4 t^OPCtc8|ϲyDCMxm Bݣ<|),ᢑªcK78BataVg+ Anjw3X 69e@0͂"&N?1z.{o.jfZ-ŋS2LD>{{{vsnll$'9xI5 dzbf36aH$PVEшdDCWJ377>XZZ^__lbb"hvUn՘ j/WKd\a~:F?NB9(,pT*y˹wX?x&$=+L@$XB5J9}@(I|cZЛWS( 8KP5L0DBtXg FB\HH/WhQ*d6X뱹=܋뱰a9WFF,sy>&πޭ\((@vc0dl # xGc d뱲+++I6Hs)ArD[6у7`w7Gi;욠=ݿ F*FAllWj\Q0α{9!]1g#屑<ԉJԐ.p=ݔa) 24vիX]]ۿ\݋ۿnq޽xy<ܧ6RdW"(-N\9@VQ{LJ20y~%V~6͌9%$-F߾}V+`0v:e8l\o~!3Abff&nzt:_LX*Z-ֹ IDATˆS yhhmu"EC$i^Yv Ea-ACAkhvv6~h{Qԉ( f6 P]%<`Cw8x<2Z ={~i4X]]͌Uݎ܌nq{{~,}>  I4b=l1Y*oH9 Nv.. y;}&6P3- l;64GdWFظ8>>z$sEHW cA9, $QͤN{5z͛8::z|IT*ocjj*>}777&`333k܌f~m|gFW_: nZׯ_gq~~Ì:N#T3~` s~~Y(Krss>,X7(Lcn%5/>q~?Z0G!;;;S?Q1LE8lOpqM);"B6)YGLwJk4cfFϟ? C%mHl=4X]Vcvv6>|>3hZYRPڌ"{& 9@bӄ}fYWm FZuؽ3 K G{Bsא0E}>|H٤%u|͛jRnJcy;v-j21p5}[>gwv9B/u12W!F敘smz#i/[6N=[waun.D8< %/kӉxaP8GRF~?kNb%Jΐpf3s΂XXXNcF2uZz5-x'P[iA@:t) =z>f{^p}Y1!kAt:#G2`h,Xv $cSWk&sr`U[oll$׼ ;,}6e;^& ɆbJj2VWWú裏Eb|N ~<~8FV+ZVзI/R{ϥ[ZZJ=$':ý7Y?eC²$\ _R]N'Ɇr8׸ QCd漑'Fy{Z'm/8~yX^3Hb |v-[Vm efPq=>gɴQIV61TF4CBrmO;Z_>ʼnFG%3}F>(0oz=gC;gz=͎޿[[[qxx`F6Y 'Z0[ҥ$ 9FSsh|IlE/eI 72Ljc-ʹFg -FƸ~v5D–9̘0JZ>\T> 9^xff&&pe+0l O` pOҙ ~Kیe|i\\^^/ˬRQ&a޿??y0,9muu5<ШyˢʛNɦm`0-kЄ5l2pii)FQJɐI\Yl_|68Ȗ2xQWꃿ 61$4 2)=r>A#cu e66ȕ { ȝQ궳'r:  AԊ_^^&˜25[Og$tÇ?2ƗͅqIRxeȍL%P30 @Zxŀ쀤#ˉ87^\\˗/P̡3n~~>>1gN<$buu5.//DOǏ'h4F|g1??~?$@N  itvv6 e3\Tv&^kOep@0U2 ZkߐM$:;;X^^DYV C͛ QV'(Cl!ykee%I^D4n.d&Yhf">`=h_0 euuud 0eeel d?ϳLkɒD ^ci_vt;gpIΞYd{f_΂%q*mxM/yp. 9Tݎ~kkkqtt4Q\ڰ.mM|177~a%2{ZZZh6?jqM>kt: `|GQ:HaJp%c ]q𰷑JS3 =v~b*8P`^W r|>hRVYQx"cff&z^8A-=4vm΃VWWdIw2;;p*a xcý E2ȻϢI"$V rtM 9w|mBl6O>CJS!m-%Hs_vos^Ӊ<Ѐ777DР5@Yɸp8&+@%^6&8;X w!$g h8yڰk0 *C-9L2p9 ,Z9,ސ@-}Rypv/-&דDiDI.b8FZz~߿O<6r<;;qrr}Q<<у~~yoϞ=wp8F1ׯ//"=Y?Lxls߾}o޼?1jϟ^|ӱhHGҰ2 lγ5AۋhuRr9677nj*#*~հG'@gd,^L4ZN8|QyA>4*wx&rLUOe_M~퍹 Gfg}JݎX[[ }0GmI{jr›+ O3)Fd\5NbB9oo8~ >0pmӘd󜓓x]lll$Fp(vi㻀9BKaO1ddR0*&pn]q{{;+@5Λ_|?v'''zt.iCaœ'Oƒq0Ϟ=Gb<{,cyy95}Sy1Ȃg BY7Evyyylϟ1nh4J# [-177D9%q$ nI4zٓDa+J7$,O ț޼e%F1[Vl۱_x6Gr<+gXBkb{pS|IyEȓVl۴3҂R*thgI‚|UᏌdh-Fƀl)837϶ɒݺʑΘaȺJɖ۶,W^eR'f:ssޙHp*a6p8LkzlRB&esg!9DO("k=pP8-Ɂ\Q*8iou&93`Hձ*Cs& I< s]qtt$矧>O?4߿p-FUgggW~$0$kf}@L`д&}QmnQ+^nV+>}ٳ_qVl6rj&94義 !㹑rFr鑿Nnoockk+9@L0FtRwgqrPuZ:f1ˎ.NqFh^@6@<]yM7 m (.p]ͥI6( j.2I(FU7gQ^+HH \ 2m$Y-GxGğd*dRsssqrr|A'[Ϣhλ`<uysM| &xgChhY c)#3cJXgȍWjE$Ȭ=M,-l{ q< ȗÃ5`;_8 Tf[PrOPɚ@v8B%8Y(Er6/_KݍxUX[[UV}]T*2 ׯSUݎ/^n$I'''lh 5Zg@lKdRJYFiZa<}tl"Y<(AJ74xZYYksbkf#tPpmirxW ۜ@npP^I-uep; ߻w/bLM.b X8uN9ȉ-mC$$S(hCr 51i];9" F c 2MH'w4 N[ߠ1d&A^J%nooӔ=dF<'" ߿;,yOdUim) ҆3H_tW(ooos!HŦ#tNJ2d+'ћ0ֲQfv#ѣJã Uu@ϹWKL+Yd&!6@9 QɞpP%'4̓@ze}O qtt}} |#ڑR 0iSĔFbii3ᄇ`իOfkcbb"A|o~~$N `oo/{j5 m0lVQ#2_FٌGZa+~QFL,H,~!%svc @CUMūWb4|0fYLRɑV Q&5Cڥ3ZXXȃ7|zsbRwjj*d9'Ez4n7W⻻0tsq`5}Vؐȟ{9 Y^y"!"(+S#y>8s] AVfY`#pdÞHlgGX@@ ʁz o$kXW$EѰ9{=ǺI'nIj׿`=___4uXT~֦z޽{by,1/},O+f@9h!.--A2 3; rWnx(J9p4^p8LCѮ!@v6a 7A~Y<[&'l 1aێO>__TRc弎xYdѓa`0ݨj_:Se3k͜xjݼ:]a!k!Uխ Eۍv+++}x]a!n{ >L,x֯#YВhǎ_kNqGlMlfY:(f@HrЮ OMPġXa$Ex\Mg&>Rx/yߜ{8΁-'1?:In???k݄=' iyGgAX4LgY**$%&f7{{v;- ʂrNz(3uy' M`Xg&&s9^s=!ϟ733~?^~o}mx'}&=E`\F 'k&/7m%j~MzB5DA(#OYaOuŋqzz3nJ%p^xnH,~ r^k b>@98|8\wM4_C~ny DY% $jl ۦp{]aY5|'vW倇ȵ111=Bw0 $:s%ޑ'L:0񎤌jm]^^&c5snXk.^݂Kᑽy&vvvCN7zr#$% ([xƘ{b#+Use+vd' y`>NNN«T*ɚeqmEqX+O@w\[ZS LOؘ#wݔl+*8WVVCBHe@ IDATb >'MSZ)sh|229ۋXXXLtjѣGc~_N6#Ňfy>KTV+ߕ+x'aVBظΜ>̝|1믿Z&X6ժZ>lj׋ЩLk6lƫW DX[[K j*p}3A:ICgx|S@yf^LVVV_@ ϭ`wh$Ċc4%Zx, =@}vo޼#%ѣGQVs]QU*X[[Z !$P2&z1MF;@j٪sH$Kʙ S,FSt<Fe96Ls;nbgK3)wb7΃@^/޼y~~m fF<Fqzzqzz 0'17Ēt^Ce2Y>F %BG?M)7I͝z')p;ՁսRWnyj.n_uhZ@🜜X\\Z6@^oj5Hx9'?rPǒay)t ųᙂ\\\$iee%Q1vrYhKkҊd͈o?΍8)矔2\+ZV?(\b5%nim4nGDfLa!hZ<3ɀh8>g 1 ΆA>tJF)Y(=2X[[1N J7G]i9N>LwXryy/^H:F^;?>fy&PӞvcZ6it n*H\DZ NMrav[5W+l&W}FDx"99#tnǷ~{{{v:66wԼ|2b{{;PN@P̥?L3iee9JTm> `*U>۪U$!Fa6:(ZK۪N@2,TL͸fvcgg'VQVg?Yܿ?ZV\]]㏉xJW 6Jc_sFF z ( K~>$><0}d^I~SSSY8SlCa"sl zqq-űv'κ"`/`wOƕMt333cv<(.-:AM&|.^dE/VD!QưKIE,U"j6ɛսRs { )a42!݋i9sq޽899\u}}qvvcȋgqG Dg4$47+^eP՜B KN֓Ix̥/")Z=dB,^~vURؠ?^]]Qʈi=q4mDf{j:O|kwh"L@V|Qĵ`CB# )In=>2Ɉ!^#JXQc ,7hGcbb"6776777qppWWW#y.1(=5s<70WN9YVF0"Mwy>WWWi{f}b=:>ޣ/")#|IXe/ Ty$~^c&ǔQ*^籿?j5aU$#$8J2)8 !0͛7q~~V+^zo޼Ir+}Jʶ]??x8>>LׁؗH5eY>3bo),uߖĕܚt͇(hrQ)҆BP2N"xHFs\ } cCE6lqLfDG33nť;+:2W& .'_\\˗/c4 zhZ 'T%qྀ,[V۰ cz *7q?]vvvE<|e8{!Pa>! ѭgLeD1! | \ c%:bK/p?hˆ =GÏSzF6T dָkF$xU,//'} v=+U|PONN`0tclv%7b" Oh(;nO)X]Aseuj y0ph1urrϚ5uWzx6NOO4^[NSmCI ^iTUO&N^I>tIlVeb?elP}{JbiCD̜|+8#qvK4û-aKٴ \xHF^طS7.K KO+֫ @Fݒ#?:d ^/z^DD41]_\///rF}LNc<~8n. %YKKb[P,ȁ7/샕SX`0E"nz^z| 3dCoxxȿ\< l9aZ턕{OnS||b.lZRfkv\=;~® H| W_}IׯǮ[cсrwʄ:?ѣX__8>q]8C>P@.-wB28zP=*>hgCi'𦈁\%`#*p-O1އh4`0HR.6wɕ9xh~ru=5ϜEɚ%jP)5QFPqȡI=k9'OYqwq*4CA`(I;N\]]%ׅwGrb9 n} 8a?sؼ Oң=ˁ6!#@ j5v.X\9Y̬tAnj㓝Ld( Yʝ3$F#MւlYXoPTb  KKKIJ3zLѺeSRɾyF899 )=;;˖-~o& t֕;*",:|o w%ٿ^JOR ezicF"( ¬8;;>(* }< uSSS8JKw<(۬OMM%6塌$`_삄9+11A+ɑ=ݻw9Nq ;,NF=WC^c|/$j3bnbh9D2| P;Y@Zy/ s!wb$. 7 k9G@L9È;i?x^69}1-&f:ˆr~~~xsMf$Pp¶ݲ B ʄAAQU,yԲuA b#kpBgc8W +#=S̀?9mb1Wx|Ne!a s~~>p2QHNTբlF^O'H~WZf@ ҀI))mZchIi $%KRJ ܶ2LxWWW\$WVV9i#x2fC٣tzz:~_ͧp{Q1=8$Unr~l;wpwxv;W360ytg,>6 0NGGGY3į_Nŏ?861zR& aI kΦLqxxqzzggge~X^SwYm;;VɂfFhcN{ k:aU2ʏN32q*L<DŽ$d CǾb'H7H6ʵyMd]m$ݳK< 1ŭ1OiVVVVEZ͹;Lx$LTw^<+4~r 5ѓ $=n)!+@MFE [rmD{%w$\޽1 ZI޽ɗFQ5ZlweZ=CHZpP]F@;3a[Rgҥ+`q67[ ;$ٿHf+ɓ WyVJpWWWQZOLvfT?榕 {_RԖ{:Wa$\\_(hi8"-jǧO`BQ<GROG&:ΟʿBTTƤeԊ p^(fW?C 7aH׽u3ۭ ~r0k8e^j8[Si hɔf"MOm}}}l,%|'ERdOG;.hlDn1cww7޿JXYYIf uW D^)ߧɺ(CN]MI~/ F*RSB~rB|}}^//^A6 U&^aACŮNKMl1n8%y:|p$V\VTH]$zޏj)3? n=ʙt2!@̻:-yzW1f)Ϙu̔c$ޭ۵Bt:h4ҲXAضix1U333iME)"|KI^}`I}L/7,={Ɇ/{//R6vҢB&MdWv`xսW#PY"*+]cJߍUfTq1ы@&#;<3*66b 6iVT@ZkûZ&xqlnn&rav&6*בtnmmBmQ]ꫯ⫯` /'r˻؟9pX-,?p 2!d.дw-5:ꖉ96≙Ai>ׁױ 'z6)<ȳ.hZ8<<Ô%R ,ɒrJ;q^7FfH |]nKP@Mj}Ѽ6 IDATM^vQQNڀۍ\Hy&= ӈ pBatӱǃ.K҉LQ&r.=Dx]^^$zrfy1<ړLo^o֤9$F;I*IOcmm-A>+-~{X:Rh7-C8 `x T5܁g1Fv ( bdi&gͨ] lKdUq5iAqSX} =y$AZ-?~UyB$ N"yP" v_},]]=6 {gi6ޛdc~NlZB,6~gT8ϣR$zz/EUJl60),٧÷x!`A=55F#JGQJ/߾}'''XONNɖYٵ 6)N6&?6, $/Zb:$[С ʰٕ# 3[6lٛ͂[%nckk+_)k,*&@R>s$ r 9$W'1p#?n7to2<J2 qϬ|xч7|3Xץh>~e`䣔6w Jbi~W BL-!r ]3#_puŚ"mGxg?*c a 6\:VQ}WR$/<8*J/n_=&ﺽX]]Nj/ F QRa9r>`R5azrKugNt"uvqqqj5'X{HHdjhă͛71991;;111ŋ8??vER....njZ]x=.-+'Fh#qT .Bw"@t<|(m{-xXx"ZVF=Fx~?;!r wۋ{›Ǩ-Kٲy3o%nE'5 G( FCwh|XbCF󳶷㣏>sًedJ-c!q>>$ClY`Cde&hr>&xz]Rf(Xy3WU-_&1K[T? H eUlVKݣJۆXaldZ&dW,19<C/YɈݨLrlvey*F- jD_ ZA‚[̡GBcV6deq:y~eBTC?>wA r!<_s>jR_XJԠ|wW_V:Bu_Jd)wɨ?vn7={?Cm c11('V!E-.܇! n͐JFKE!?ά7[$ř58Hn8vM.r&v<ۖݚ(CHqp.:SoNiуȪ{=NTmoݚk '$=; AhkQ3K~?LeQqbC-h_"i38,x;wYZZpc{{;zi t:M"3d RźiZ,_ ܗDK#|%j>)iIN'~v9FaxW!h2tȞ""gffRa4cii)oEt8???0!nDX-e<gRԔݖLb{Q&(O <~2);,Ls Ŝ+I)=yR%6ϥU3RVBgn{ti*J)CIaҾQ,Sg&jonn2pv/ba>x...gr.9#ΰK¤ߛX4#a[tg2mp~nĝ]U*h49cff&~ c{{;?ns$h |rh%!;ln7?~Sq:@Kk=o9Kv WjFvrtF]\jera ;&UcC"\lKb,jE@;2:p5X~ gO=-U#a]4IJeH O1wQ>>ہ"GxNʁ$ O fٽA9O nL&1 !9X["@$[]]JkB09D̝F+++t˗_ Zd?BlD}tt12p 8cg8\yHN5S_Y;Hwxtz*ZfBۡ p1Pa}cHGrJ 7ޔf+Ȑ ZF>=FB(/灈\XXq0aMkkkS:p<$u/K*%=$u l߶EEa !Q3:۷nǃ9^gl*(]2Sa΀Q|mX]]nC a`~N8RiճZ@vڸ'H{k J48,D~& A6L,?7FX*qPd~3mM FIle$\. =B&oJ=$VYp0h4*X-ʬec-9A[m`A~@,!n>uxx4s}8kwM.Wш888( -ojWZ-2ntF* G(!t/&|)YOM޳,nsFK^[X򸺺Fp cf߅сHU =E0< h[.[4 o(m% #l㵵j}1s@ 0b8 7ϧ!Oⷿm8hJB֏(%jmIe`/4?S,曛ٙ2f&#l񫫫888hZY 5Img(X|EЌEVE3hLحPbTC5hnn.xtldH^Al :6"~a|S<c3pF8hTs|+;E}l-3+tKo7zD֭[h4fpf}#p]1 SF5HAkIjTN0=pnnnN%i/˿ȊX8C(\Z<{0dxvv[[[ 㹸3Y 5<|dra <Ƨ,.JCYe׭#L IFG`ei(QR؛gF`;׶ʥbUi#DR&~B׋h_V-x>Pp8LexȵjRC$A777R+iYG.777Y6_EvHqh(r}}5nZ...je}Zg%wj\7o˗/H2@gKKK|~[a36G݌~!(X72F##}><-$_\\|-T|͛h6aj5z\ESʃfߛ:nKen9?O Z'Ժx^777UqOVDO ԍq #y^/I"Lskk+#hDJgC12xxD&lllL^`=} Ⅵ~}}S<'ܺu+⋨V}/fvSsYW^EZ6r?haCǽ>%HU3^ >}ISVbh_,: 2̖8ݻEFWxm"٨>[ưA#-ݻz(9T*N.pA+dy6O+=??Oā5ۀg-g(; P2ِ$ + o%aZ_ZZ6zgggfgg㣏>JfFY\\\zpl y- =`P1dnajT:: "rLRxz}JR5>g333Y.z1Q[UըT*y0Ϟ=?06772n'D 򥥥">IߜQv)jCL1msvd8BCVO%pr} qlmmMM"^s\R9<&^^^fk^t 3jtd~~>ףVe&;RSYg2~9e)#wP<f3%dn^0I \]262Zc })ܹ[v9;LR/E|޼ybcˎ'2'ڱH3*#͜-:>Y9\HeѠ988s'g@yj8Fϥmb" 1?6,YDߏ˯'^Vs-[L0ҿC""93q Q~g%į%7YP|G@qT5~rE9ӣaK}m9>8df[ϡ6ˁf%lGԔg30&6:Dd\b`T3jdh/^xwsNNNECmGe^YY3ZBKyf|uD*P.q-J.ssW<$s~~]tI87XruU$. 9>>p|IT*Q!'# IDATz /j-;3+R3:h-K: &X$t&϶j?Z%h@mN8 /ݪ ;A\#V{#ΦQ-츬RvD#N@@7O ~?XXX24Lt?z8;;Ku2%wkkkLDkjoyހ)x?, B"0qtt4E: ]^^N嵈b/333S)u<+@De%&1XݒRg޾}րNx#tyzZFhL `TJ|$Ō8P+F:.楴z5NHߏn_~e-<`QvSCHRI a5kMtyhYZ?u0j< Aqv0d@Ȋ̉pwN5dmqvv~ANOaU=KwO>;S޽{v;Dao,yN RaR^z2QJ?J%낳Bϟ?O=^ZBHO@vsd̶?.Gz挕wӶ ș!)d|Ov"a&c{~OP@p )|>8vn/..;@{,wZ⳿QV4FQw M˩6vAo߾M2p~䁇F`6Nh(62 GS2p??RԳir`-wnw*Gr/..իWl6cvv6FQ DylFHl:@ϳ "ct .p]dĐF1$8w+ȕS0@h{Jck$XcJOzyh6gz1L뿒M`0/"XJQףV^YZF1;;g`6S#Όw߃R}%I2c:$0zScVI2bs",@(ǡlw!$QmD NdQV>]9$ygYF2QǙ$90+4 p&3!˜s3J^),e>wvd#7ʤ}@oAKSevdj>Knu' s..jyo֓`l7Ĝܽ{7n߾ggg>|3331/@}|# Z7 E>[ q *eR9DQN)ç&FLYje g)3<"!o$Lbrm+b$Q9LC bXG!Q!YXv Ӏsl-nAC0B$ RnIs@L)_Zާə*Ux=ϹniM7 qw4t:;;;Iru-Kw@x~=}{XIjvVCp8L 5[݅q @JL4i[[[SKDnIkdZ ~:99XYYItYK>{8 rfGwcs2TP4 P[t{6A hKFnV1iKn\*y8333qvvefJ@C>!@H8["2̻Rbb8s۷oGZfV+fggx6Vm$5LkF`<,Մ }]|]S/\Kprr}QFqppl{d(kTvSG Gur&-7[mή$se@pD݋xi6R s fKa˟NrGY:GW 7Z/etXuܪAKY r⭐sQY2vSFͥ˴ %)$κc{f Dr`y9֍vS.iqhg ~n]]]]LsͣJY׼ O!eO1 di Vn9掀P;,ӥX__[newx:> ޾}?'OL9~[&J,;Hx<`m89 #-mc9l zM(ZFQ}vqI+/ْu2L7È8@`<=̄ ^eBzt ێΞ5ɻGu"cc,.d4Ԏam~ϓ_=* ˖cֹ ~f|T ;ć8E $El]N 'nСں 쳇VYeGh4JK7z=*D^~oRFIbX~6דѢ Cwpn%r}ِ!Rr 9j.k&@4m3 3<]6CIJY\3|ِd$Ÿ75q-$qMxҭ0s}5"w.//`0O9Qק 5֗ n2˗/cqq1U6yq<<1p8<%g9p9n€QL P(H?hcѽ8(O\ň!JH]"Fd(dH]`JɌ<woaa!>|8diWH|嚨,V l_pW-KЯp;]gDKȗ%{2&cB GIΊNGi0Nӥy M#7V,%˿YB$ P%0 T=w4e"v7fJO yG'="Ns#0ρX?(|FDzKKKSnWWWRn__DOT/]оC&b8D,5z,yhw 7 swMp "3V_4bgɜr*CÏdS&p᭕@j ;4k\94*J$Rѐ1ӴrLqݎvYׯ?ie0(WԔd[r,F C»j4F8M`?zρS=A)a<3se p0!83)\y IL ;,rB9,н!S&X8({R !۲2!u^ڜ~ Di!mtqqqθtJp. |dv栄ϱyɱP*'g%dns0S:;6)("-ery qeya@&z9mN8K 7 IV78uff&Sj177X$,29/SfjAfݙ? 0!Hx,t)>hS2k$W0bJzFC_48mC떍u5۷o!ǡ5%ցp8/23`Ɠ'O6JʌRtݠS%mSF=6ϮKðF†[O&=1VʣvIn^fsad0@|/.kT<ݑdNڞy?& }b3 riPc\&a͹8 OOeo///356z39Pޞdzg=֢ZF^pw-eg'3Z bZ@݈apF\p@YQw*[ֆ@V)`yÎS$D?Pʤr xwس6 /Rf@>J%5o@f8onZ^")_vk,+@*KI#0`}CO&sact~r1,sss1 $! p :SAe9L#pqq{{{GeN(Ќgb傍)x8#ΪS0߽{]Tbcc##czDl6^OXF,1S|Zco-p y @L|Y$2uv7|7F<'2i+(I@օ?#!0qrr2<SfXS6xS'L0]F? \Yd&o߾͘3|)682'jDvPXp %oH 'A#&$,6ۆÊ_&LͅǠ}p$8.G'?IM˹nր[>e=? >mj񗗗/wEl<~_Gߏ0<}t#a]X< +e YNGD=ls  NqL8GcJgSBH!b˔_puu5obnRvl;z4tU3{^ g\&Ãd;@d6D 1Τ7λ5'%uz888H]F84s(083ά\w ǀ}uIt#3҆ p*eK|&b@ZA~sAՂFjwp=N(4&2gЦLXP1pɑ sh3ۓ'Ob{{;Aj!,--TץȄ,a1vāYYYndt PÓHxӔ@G.we&&J!*XM[^ldjYonozs odAp:k<ڣ~}ZfwI2LEt:v;Kc777qvvy0d h[0ZJjHEB'梓ŭ'ڰݛ*=Q:Rp;W&QCpѭN *@nf;0@j }۬iR~YnYgܗ zK.v#Y봆)y0eG%0fgFAƌ= ^YYZߵd?<d(hN SrєGWWWJ1QҠ5 .Q; ̣qX\$;|2s >~< "[I{!kp@e+1`,Mvmm-yXFo^z߳1+Kr/~ GPRX[[N5o6fqsq:>8*ƈ^m6۷dzWpP܀x!F8??vZznn.NNNɓ q [!?85J$"Ve6ϙT7Feaa!f0kA6K 30=Fڼ H1 gc)d+|NߏdTssөDw ݀}YZZJhZ-=Nx* oȹK{Nʽ!cOg?͛7i[>}nygggqzzjRFqq1vy&9==wqyy^Ν0Yѭ n5O@Ib/gd2fNA@<2H`  :wQ8,VebaY߅DA w Jd#O~#>Fh4zm4rQףh䦳@vԲ`23W~y`LqLb" 0`0^S$sxq\lQcwVag{Zkx"/q>Ff633SRbpL >l.d2jǴ>o˿MI8~_JI&49沰^ 1dU|[[[nN'?dRX]]Qx '`0h>?8?O>γVr'0S/ˣ$xFhs1szSgA\beUSʪN &'HKQ9,8u籖KN F,DB9p(Ljwu, =J9 0&\xhZ<y}}=q,6#L"d3E4T &s厊E ˗bss3Ԑ ֭[qΝ3 ښ0O \R-V%&)Ԃ9d|p8Lx3VmSݎ'X,fJQ Cz4ĭ[O?C~ UcZ{6֜BcRppa,IMYcE>m 5#޼y[[[S0: 4A@Bp8It+xI!Ac\ N 'q3oii) ggPƏ(q=Ve@gaNNN^IG"av ҩ9޽{ nYqqq/^J$6J,;;;S %9.ѹ-h4bmm-t.ocBkVqQ6];r>B; An_#]@9 Ϝ~Gg$j/<kի#B:svv Hu&12CPRKII-iIFLȃhh_Fqr8,>uNIʨ 6 A#%j< >ͩlroYq||[[[cg^~os`$d>;2AfBu4)Z{B X7.777goۍ)d>4qvv6۰ί^Q܇:<սh&Wylyy9ٳgQQxYH 3;;,]z=}4F˗/c{{; ո~<]rnn.uFnꋋxyl8==2ſX'ƝN9c7&%,e11DcO8{遳4g"M!  N.e/!%XVE"K@P9c4b~-k1Hgncail!d\M`اDl Z#Y%b-ӳg$vvvb{{->@ۙy( A$+ݕR2p ɄIM,'O@EDKKƭUn{:??`~?aN"z3<(T<=27oǏ|Ġt:qzzKKKgT+?#cuu5wx$91d(r%ɋkjc ﶔ@c58??ϲ{D4z<# f&d0SfOׯ_GӉJf3NNNV]mg'l6uʊm\Z\\4F-S 07θ]'p޼yz=fo8>>> VF"kKL%۱f;;;QVxωvulǽd8Q. yց L`T'RY1}sA95`+gP"Xݗ/_^|ߎ&ׇӬEAr'푴\<怑n ja4)$r ְ6G)lggg㫯ϟGۍ4"DBtBpn/b a2$LB駟fDM<_3Mcsd2ɳ)b\ӐYgfyr$TʚU*M¤y* $w^j\__A: A+mtƸsͲ^.9y%"+zD6Ez???HXlWZ7_Ȓ0C'Y$%ȯ.kxI!WqppgV9hRb@ >PNDErٌHjj2am5"F523rg<'sDYͺx`j[̧Ž{qF[XdU`g!n;]NvBX<، J{{{TG(߹s' tWWWپw356GΝ;ÆR>! vz=GhY~܊2w7mn'P$.]8>'TUBYʭ㰯Ssy"i~׈v`wxa:)Jr=GB4C+LlnnfwK0v$Su` kldā6/S <=QV>>G SňX2 fo`m_]]qDK ) ONNb0L (rcf\o޼?86)- 1PڊlA w4M!OLnf>vxK0A=mu@Nu[l$וDHvխV-':qM̴/ &;J]ge@F9 w '`ܥ`z }1˂Jܚ h5Ah$,gpQf񮴁)!4ͯ.kE^L EYX"Z-%dfupa `-YtΐƄk0,HB/?K '''S5KlN=P'ch߿[[[,A N .l^z~?c<GZR~mӧO$ݻ|Allls-O(zmn݊)=i4}s3`ncPLe""i u?hSR{=ig 8uwVP,=,kf\bd:.9؝e JJ8lUzq~~):Fc0]DYeٳg1 52)w,y&޽ qtt~?zߌt:$89'''_"іM۷0vvvy>z( t:GD"p^/A9%byV4gwmhR6e+++QVZ䱽 xer7Y؊`wލ/_FVB̰~S))ZL/A|F8po<*Fи Y7x8s7ͯ8z28}^ȵ[m<na` q-k{Ot r4F t:tn3%Y2߽  N9nkh`~J [{T}GMqf3SZE^: wٜ%͡z"Nƿw X{H&>"9"MjB򦝇`٫,EL+yd6/C D<0*nG %Vp.5= j8\UX__O簴V+ lx"s129]YYnU= -D;)4a- os||O< <{ss3IB(q&F{zzrV+: ]#/̵s >('L n򐭺FNpj-}- "etإjMB7Z_ĹsH/dN^Gb"G– 8`]&r [yjY5H.27obψ#jn` uښv ;,[OD\ ^DvqV$COzmncff&˗Ϣ >λ%0*w2gEpGRF9pn){@"a$ 8Ν;S -grMB+CVfѝyTPG'[p^ʹy}}=s^-93tktRVu2IA|F@>䓸)Au899,(1r21e_kԸ[ƂovK# AH~ߧ#>B`F3aVw KG@롅i"`+pkI QB q8~cNElhQvAj#Hs`0# 0gff(F8dtϭht1^$n!uieRoaa! ΈG s9ljU๳ q)} b_8 ‍ aIN9l w}}=y*泬=a1N{^qRՊ;w$Cvz\sY:3:,(aCa )&y}]q$Rv ЃЭs< zE){ 8z Z!$Idm㩏|{QudD|@p8LA-u|zJ]OCⱀ;EiLݻw{=W3s8Ya7ɮ=II YP9 V+>$cgg'M>} *+숻~8sN(љC@WsBRwrjS*&2Jn7H9Bp 2}B`h%my~sݡ<ށD@X)N gffRw~ee%| ]͑=g#ʶ 1&m9scA,`C nmB8Es=zϟ??<9O3Ka=̥7V:A.@rΕbR q~de 8a.\s0bPFPr$Ac}vv{{{l6?̶Fj%0PxUoZS{2q0*ő, FlصINmsE^EL'ȨEi}s՜}݋{MSx !5#jw[$/gTB %Cz])X:p&y<,meŠ`aEp֛f,//GCǚ1ԓy4-p H όC y\+lR=>ԉ$ZIa m=}!`c ~Xj@|ܽ{wvs%{X3Zkn䔠?SɓKI&e2&NxExTZF8==J9hLeRkP)[w;#c9[lw18a?MƃȺ: an3 RCdH2J9,(töC NA X9?sIM'$!7j`2&p&9~ZFq">;eǶj5>h4S,o&qdn1' aPx{ɓΡQZ kegQw)7 0ۃcss3aYLV>}(M&Ag̰{MzD\{ sMy~)E|ͨ&[X۝2ܜ Z>NxJߟ^<< #0 ±SD( t g~~>ZVy^ZV+SYF#L&ٳN'jb2DI Yjr*;V=ÉZkx6 ^cFsƙ ǃ{m IDAT6eZFggg83<fdJ%*i{l5DBl"Z1ɗj0 69,KLF3R/YVrvr!YX߽+Xk1*ҿzL7I8gݻ9`777&k:j*Ռtsm^uw|5 >jrpAp.A6ĉY\rM=h3E'|K_A#N>&hqr+   ̍g'rL5GF>?z(=Kj裏r)jƣ=2E8SdA(#ݢg1'1.)`笧wqV-h- eJַ۞2tH"9$oZ͠ż T/xuu5mA6u@78fHxe\^^ccc#I6ఞ|q9޽KP#G]__ETt:asMфMus%Y`cT~ JMpn_䌺lBּX[[ꌲ_95b^A )~`uu5eVO@_0xO }h0ϝ!Q@f8Yuǁ2kn;5[0B L4;;5qOoh#Sg B&S:$Ⳟ6z8k -v<+a?֢nOdJuwbejbCt<("EF 65ל7b,[9rg3a36>F;nzkkkiO?2ӣGra4`Ըgggjs3ZL9/85>_18jumuc`@z N ځ,P @$gjtBjxAͳ)If1ǃ{E6upp$I[85YgDCWAÁ˂>ċ/h4b?K~?q)qPZR .8vEDmzKCxgSz9&kCVtI8'<2 lԪXr<8hbw J^HŔ9xndXZbiU4 x6z}6[ 8@G,ф6`d.zl)fhŶ8t8l SE2.GM/ #/JpC51Fd2v egoxO5}L q}}cy?w{!8zd1K#GH u5?5Ʋټ?ΐ M,*暰Vgt?h&n"l ^8kY;~&ura Ƒ3krҝ?g-žwf8t [ sJ@b)3-&Z޾};vwwc?h`2̴9) qizPh Iӹ eNLlƙ3o`-~$V gy 9 I6V97ۭSs+<:=33/?Ns7A=2sX3'(Nk3%O11A.%˨T*SO~x$$<]p."%; ;nRcG+S,jHG4<}Nc:j¡/,,dFH ̝dI:hY" 2 &Se9Hٍ8J;P_ ! ,4ɁІcLJaM\#dHkqgWչz^ܿ?E70YdB96^lmmewQΝ;8??'Od8^ hARKKK9`dQ)ƛ쎌bB\҅ S9%o=,l5Ts{ʳdePBZ_ 2(Vr ec0 <}'+U"d} @cdlPb85&Bt:S߭F2j 0~>33 ;:!`s\t kVWa`W#"z ٢B?⬑%s2&1$7 \8|k6b' /̝?nW$%x߰%x=C' >7zj1C6_4(\ ٿJ {ݘKfIS;TgIF!U }9 tP0dEC<?~8ZԆb\5@ wx`b%laipp>V,3o>MPcTnK./ sƎ˽2H~')Y=L2Lpa ǮT*< aym9Umdx6;o.$b*r\sFُsyMN}?4*xw@NH'd~?%%J25Bwyy9VWWje-8:o4F詒U9t0ܹ [衿RQ? J!0X+ץSaF0e'gLssw;l LA#z/gsYb2$NFn=v|ݡe½y.bγIyk#NL*&cwj2ImlQ) YߙYiCc;;κdObf>HCM=u-o޼p?NRb<ظȶV)@m ZKleK" L9evv65@p ;4YS# 'ދ>E›g J0 ;P[\ T=kT*YMscg/..f:.υN30sss`a\ i='yzz$r߸_niYr}}=666r햗yq-lA%찡ŸW"Ɔ,eU3K&U'Y' ۓyG%]=. c]"u A٠nt;8/XDӥlm9۷o'$h2ZD׹ [f.N,-눊`Jv3gnJ JZA ꐆY|`b{{;׺?OÇSBo߾?q~~qr68&pc9)[L}ss~\?e"Nd jr tܺHN Έᥞ><2->KLV" 7Ԃ'Izz CiiI=eqgA29B'hA2~i"btuݻw/S"'lM Tqs]IqEgm 1ʝ aXU;%Z-:&n26|2LsFVlTt bϾ@E-;iCnpzo͗xô(:77s"7YSr- }k^ ap[CIj1],5cq1n݊gϞb|i ={V+R~x<|;Qv:ꫯ[V\]]Z<{,^zi訅SrXZZDj!)U˜{!...&ƊZk`Q3kGo6s cT (2’{Y;їz}*`2C j0_k8|i.N<Q6ҾS fw>Y*j4]% lG`Ⱦ2ypggg*|%HsPFNg)D۷v!ʈgggY!SFDwNdTFG8j.IgwJSHfyvk.|'.;wjbFj/F5UFͻǀ2}qKvd'''ppp͛7SCܶ}zS-ֺV?`]pJ +++ߘq# @lv#2NLlqVrZ cm~F#,p85ݯ|ƭrcGyrmM4G#ӂĎUY ]gFskJ'(taa!?mVn-웛h4&t:^dT>M}aL{;S' G.4`:V0BT p;9̡yC#Irz{{r&? \i &VL#@T%"p0/zd!qsw zԯ Gp[[JcD[N4͸lDR2s#?l*FFe:*JwFhdyj۹h6`]AC8,eeX罀I> XOhQzlx!rke5f5 S{grf{®P:IJ&;O66620A07 rԸ,,n$/u)5P= 3R?t71I RTb2tEpՖ!>.f}}=&Ir,/iXEʭKc>H'0*/RٲnmF a"Y aaw&,pG dyӭaC MXUa4Gpr΂xǜf0U7oc`W8??ODfYWD61m3‚@8/^D͙+],RF"=x rP.aޟ:z&ϟM1›L4O"+JA`$Qε~ߨ'6-of0Sc^[E܁剢KfRrˣd]W2'AXy^ꓓ͗ q.oX,}4'"Jv; P仺V(m5Q3-st:w0c( ri㝨3 -g\zO3A\7IamȎ,E{GZMr@:6A-@iяF1zJxF dmgYhdHt 4 ޽{1S LYVQ u'Y 4CQ`qgǭg8`L㼺էi $qaFQ4<;F$2*F@r8l_ee ̍ vp8̶NXˏFt|s9jIj@ A)8A΋xAzy9C$抑`'] n$3ja³w]f3S; #2Cġs.//s oV!*sVS(Ikkk:J=6?4YV[Yͭ``C{^g<ШYx%U IDATwٳg@4Z]]x^/nooSDVt'sDk&uiAx>/GYc/ meq(9R!77t@GVOL7mYYܾHFPY|`0h4ɨw4 x0BrV%d*O}{@ل{K[lL?m<}4 5ΖV`ic7۷Lth4>$w<0,J7E|1 ͛7niD*s})gvwCn]precI慸u\s~|:<<;³r DVO4De2֑8Í+b!$~/'F%qc"9H[\\^^% ;kkq h5z:d6c .K+5.v!U-E(6'X:c0=\ô!C0*@8% :`g˰2du aGg D'I7G9?5M5qKS 4Q9أhl6,(S.%@[`wwwZVMxQloom tBFvqf$y|>u024Y#<{< ~N 0m-soN\3RBJ8`B͙bo ELg^^^  ή W48I"}f|XR-Lh|/_x?OS??\ECdrkAYhϙa:8Ct7`S,[SҰ[W]iohct@Ăߙ?Pzt v0 J RL*ksN=fYmik k‘\Aipl@<]GMxpXc$ܲk;鬊e`4f 9<f@B e8Z'mW#d((.I YEك.ѣ{BγɩOgggI>99)L.[MN<1p;kBIL,P&)hY+9 ;m4uK[ Ys aƳzqQ7H.6D.ໍ._:vWܒXPg\'(qvv0d d-hO; pt'ILӬn8ʓlX]]q7oylnn3 xʟ٬uf1'I@ Y=(Ɋ"kk+xModo'! ԡ2P н1ckk+ [!btrr$91d-@4i2owxkn5{Sm]#t >|(L[__Q"O엇Xsdxyp^@dFN1t,$Aloo'N ,LLhfLc#n&kM&t4C pj}W*8FWWWI*`$'M"{Ç:,$,_&"C25,l6aC)†4aFd2ɬHZ ʬJ^8Legd!V?2/n5V+dC,imiNx]Z#eBsOV#d=)Js~"+ryIÇy }< }pp1tN|߿r3&ex w92TM@ # C;+} J14)w李vd84dk ٬0ǢS 2[t&,!Myvz888HĪn j .qGE?ϣl8??~|xe w>' quuF#rZ իƹN,383)A`3Y|/`|>?eqBC"j ?˙Zh4Yæ˥fZ- @Gp+++y0&BfBtݸt_`[P+J'9C`ƻC8ZJ (baӧO Y붜yZ4v\v:#)LPv?>> cFa"e.VfVa,..AKVWWS܌Rݻw/vvv üJ@FљAg?Fۍf .س/)kYKgύKz&L9Pp_ a|vZMJW?9L:` ` %n'?)Ox}^:'(4WѣG2 5S& [ /V@ajZ˥۱bCUp Hp^tAA[rN.<׉'kk,|Ke c.5eU9J lfwEHЬR0eK$xLxtSF<&R+RfKV4^nqT h;E^Uh\xw jmmm0jfԊNV0e%ByTgcl~J}<4q<*`Im ԕ[ na` a[H=.:c1“Grqnt׃6vVπf=9z8X-+qAxMlaFhB,?/zb'fv=<1d|1!u 5 j Pkz}}lh 1ǙM`Rրvt\*nd6D. &;!YJn  SVLsHzT1볹}ee%666ŋf3vww3sthg2(kц7 CZg?Y,,,DߏT: DǙզ;;zv;QLx]pm헣,! t">~# N'pR^42㵵hZwEG?J[ uI,ޘeUP`p}'l[xp@5 B766nb|w_+wǏ&ED 5繽y7{Z v(d{\n V|oJ˿/0p&bpIA3l䬢ᰖMA6KFv ϳ˅Y]]]dIFM t$$ub3Lf^U,)AX\w?/jjz^A a7Ps1f3vk;3N3!©B܌"dBG 霶ÇY"[awvvb{{;www =XЏY&}YF꒾@PnǣG t4xQީFV+@7J,b,-n?awŖ +?YܮC7q8$.9,E4GV,`,7JNl@57șuSR_M` 4ƨ# 2&YG0NOOt@^0Ĭd>L"SEQ$ IgTD. PZԩQa$Ți@ :CrI9iC }'"yR^]]d#"lvLevvvfn ] BlAan4`8ɔ'pADž^C}c6~ !TV3ᮖ8,D!]^^Z'iqVAv%cDB'RCa(RDQt:888Bgdqzz^/q&J%<'LֽLFQ虷2:T~?v:,ljs,;H@ʉY3;.h@ΐ;I%8CsκlwFgJqވq-"eE]GZm[M'8 p5"0j|Z\R @`# kX ##JF#{W߿qtdJb\] upt <wK^lY`0HNH`ti<~80P)\b&#phZͨǏqxxLk pyO2xCXdbtcxT4cIچ A{`Cp4BJ9 ׎9CJmAKHc7ol6KZFŹHa<#cdd7$*#sIp(qH'(0c+Zs`C<<&bd`E+6 .`0(L"Asii)677 kXSr$!9#rAT*)Kvksp>hɑ UFoc΄nA T¬k05Hm_\j41?N$1x 9T\ 'Ps+qνnnnhd}S籿Z!;@,bDL=HSJ%?~;Y&I,`,q` j&y F:9{2m }rV+5v'lS"t9,!P'rYYYɉj|>Ѡ7dz d[Svvv2`ƹxn7<<Ü 2VTÁ4?g=TyŕR ֮ (,..ƫWJR8pX@aral`[Cw8On%ARqI B{|L@:xx&aЉcJ1|yzz㖁, ]ZLXa>ӥ:8kwljp~8kϟ?Ϡ TBAbLNs?ٰtyO7f !:XN>꫸w^tݸ籽mxlww7zZ$BFF_}U~,m,8sJpvX$Eٜ no%0,Leun9677޽{jj2zQ> :3 }AeiokjO;88Qz.Q<3>޽{d}tJ X# \΃ z|=:^Zi&43L9eKgx.u+<q?2pC:o`2$Ýjqtt@q:PL{. wܵw&@DzY`qSƞFBh4x1O>VtO>M[iۉlXOw8`临T$F r`Gj:5Y[-w@󔄹 V3glH* [G0$\K@yfQDjU ~c˳p~hRyO2;X Lj wH0~C]V3$X#Ii(83jn,>yK=ԼrƼGZ! -d8 $nkk+HHl ,΄+Y ґIe4Nx b8??ϑ Xxa ܛ=<|.DW8 qF?~Zkkkqvv-zNjfs#bC`w:̬-[́$9^mfO1$0w3b9lV5,c 0RHs:!WHW?qfM r`PxWZ"=maa!R?CP@[|l@&kw{;LseP/J2P3'9dհL+²Dyַ餑j$,S" dRp8s;ϳ52*ܚyO-Z3w8%qz$i$Y.!G<™1Q1vq@pe%+cpq{LQ7)쑑"=8v꣬ 7Zj;<1foo/9Hzj3cԀHCiE\cqoZN<g0yyyBRxۼ˳#bYWeFcY<̃[&P3qM83:|6Njs8d\4. kEe`M,Ly5u0,D0atGt AU8k9A#ȹ}fr>0d &Ly:%vi1rxGDxvv 3{1Y#]`BJTG )rviqO7Lbyy9:Nѣ€)H^Ԧ JȀp<*tY0 ZO8`+t2bbq"h(TgDzZN!Xb|pQeic .v}*M8 ~Ɍv mt8#bN1ՠynazu76Hp 2*3YwIvEy"tLC+OƩCZ&Dfp+;s7ɓ,ϡAwaaQ(),a؇eC}l. ë\\CāГ0< ~KCE'۳/V.uc!=l<,>=@"Xƿ!h4n8-طrv,ne.9b0 l$8@@ `>8Pcl-rFS~| <ءXؙ&eiJCfmcf> =|0k>|Pʑxx_&ۜqTf6)zn2yjȳo)k6C\dSAk<ËnO#<DiNxh|Vh1,jrph-| {qqHAry~~\ .)kpXԇ`0HDϜ@2,;ؚ.Ӊ|2@#=yu=x7؆ύI5#b ip݁-vt#&a{LSFyM志9+tr!PcW('y}bopX%}kOi4BA瀄D( ZV!/#4/ &PV09{>uiVƣ:\2׾̂h@009 hPn; DdԭRA fY *jʕJ%ߗt:j Q>^x+9% ?zE i}곳Tʐ0\0KG@#hRբ$6|2fd2I7cʹHa(ދ6{Ig\>dFq< S@&P)'KWT@1<:F%_&9wiHwVeUwyxQ[faX$n.Ay,FcΥH IA $L6F0ardm8[`W;dd)aJ5zY1e+YJBfNqn{T*a,RF1f<%?':]wKC|e<6JA&&Hpg3;|)dHC{^G׋xIJΨuq\[/nu _5Np= ҡ,FQ!xv6Vgdmm->8??/_X|(kv?Hi= =(_~gI&JKȚWaFs ]z87La< .0x׷'nH JIqKjpa [u06Xy2 x?8ݶGY$&IaFG#sќ(Yz=:N|a|2*֒l63X; {=qIhQ6ଛCҼ@]0f: xv똔"6EPjr2w2-Aeiwމ>:@#uc4eOâUk23IL{>ķvŪ}Y 耉f#ȄA+efP:w#ܑc"1դF)t\Q7r;br<˗ސ9# 8~tt8jZNucjI&Y|б`o߾@S1я~n,)눼Lݓ*vH:NQDEy@E&_i }-ld2hnsc-% eL1er+ -C`pO`*;ڇ(D8a>d,J 3-KKK򿺺~*ggODO~Jj8sBs,Y?s^`VIt---E)~AAd`~`v^ZvQ Xwx8;;zj5:N"$nj5waIln7 :m[&DhL&Z3 04 Άqvz9hnh4ʻS堤f-pDn7''')b8WWWIȼNZ- v;KIpX|& F-2^'.wgݻwQvt`_0*`Y.7|*@0:N B,ۿ/ʵA2aњv27 N*g[pʳ>i zUfr c}}}=wfA!z%p9`}jV&, Pű5u i68{h4b}}=={3# |Yꫯbkk+eש'Q,15ˌl4 )kD%h ؙ;O>urri=@`0gF^A#"i26&Σ6&rqu{eЄl=.<Zl6 kbI(<\8L 8Hdj©NOOc6EɌ޽{ٍC SC LlѥsWVVbss Rg/MZsdvvȊs'h ΙE\BYͻ31 I ۚ *k#FM`y Q.;v5_X[͒3EY >{LQJ% <уb2o~~W8jnp>Vt|̊x4gzuu1%V {b# dvnze)sxȲ3b/kU,m D+ `o6[i$};4\/1cI,(@wwwdv? CE#hU sYxg#v [hݻlLSXqyXOsx)Zd8"2 7R5HfjG@+V%10 o,ZCDzvvmYfid@n#alxpOICNMiD sc\ ӣ&L=(, ?ź"l zwPɠ qT8 goG /6RphiG랜Q:QD<> Xbϸe3|4{z8;<}4~uē'OR'RףD׳-@ϣ&wmh9AB;c3ɞc㝙iaξg9,{ hb U Ô'w4b]hY{Р9Ws><>{Zľyڱ6`r |SN8arYGLiؗ,?/^#ix--fSpYSp~޾}x0>YEKZfܿ?EH#Rdoy+V+w# %.bchXht#̀ %FY\3~'9 jƃ}á0}p|^/kѰuT5֕Xu0>,ϸ7qϳҹ$̾V<_xd7uL˼ ӝ>aOw @댌ݧMLN$d2.x?3/w>{ Ci Uidm6ɢDž3 :Rt ollxc 9s9 ጠ+A)ǜ(:LkuK"X__i8N [dD#Y+|hOY"{L0Y#Q)&),uNy3@Y7od;*=ѣ,:Xr E{xr7F|ϋ^LGd`š@  Zsde,:= fcJ 2d]-d/#/3NR)j4@>PWղ @yqq1F Nd& ;p>7< kBPCP&O |ӧ)6*5eBk,xy$~qI2n, D< 6\6A@2'/bL\Yۅ3C@W6޿BH 2x66쿵6@_2he29i~ćuwH| 8)e*V-An.yO 2={Z""\;.|x;bPfFcf6:ԓ'OE-`% p8Lǡ@ρRz F%$]f|fFR !^f`ia #L]ZqK (`0 dot"Ky~?*Jºba~HiL;"('n qaOt2~llldjQ78ӭ2LW@0G+E,<׆y^{c{]WVIKVsGC5t`&P;i9s/T qTZڑQni6JȚ@-sI ;d[881Z=H wyvٗI_|Eƛ7o AgS;"><,b^5@6RkJњ;\0s$,͐!.Ζ# 7b3Vc"?2Onmm%0NwNOOSXÅ!>==j}]^e  Lz<IA3 7Ͼ=ACcǏBx"j4YҭV+jC~~֗9$Sx'J?\ 'DލĠTI[/08 _d Jdh\+J |^OCm]E '.xML^]b]p@/ЯQvZDa1`z,nG%ɮ1(WVVnGVy' 1➐ "gĶ]t zhy<CSdYLP6D:g@׳Dbs,2m l{냭 #p}8{L$L r.$r|wMٰC*v$ym` F,w0mqXLt6"A8?d$>>SрAcZ ZlVNC-ǺCëjq||kC V۷o 3O8Qy'رH'rt=}4~ӟFͳ '?? www899O\.:s$Z8Z~(YZ+qD} {9*P!U6ł+'''#"'OF=QxT̎/:jDPp#:߿zna#e $]38 <h!{]]]E^O= 8do1-JօK`' "5@j5PBQbJk.q@_8\p.)ZZ pT>&Az ; gۜ sm=3HҞJX+:aP,.3̻?y$b<ur&XF G`bDɊBr'z^rt(Vkcgg'zA)Nvحa}HxL$8rوHd2) AQY l&8IN;|˼-><#~|39#-_YYI,Sc^~|M׿.Md]I߿O>GEN6nGsh-JNZ8XҾe)Ȍb>9ex.A*Cu% X[u\b-C jY7rfUmGGL- o5P+ K9>^__ {"[lDd2ٛӼ, (1Y,yhG׋/^V2`a*3A5kH<<1pee%<,Xwo "d3bC?O O@&X0< ݣ͋~@`7NKd5ν8nG@WlC;#ӱI$3 }sF_ə 6;qtFppR A3q&:A.,* 5wʕB|0xKCLu h4Rンk!b}Dl $Z<.W; rAYXuʟ wNibO=fsonnヒ7oF~(=}4?~>.짧_:?2ӇrabՒ[t5d[l8$Ouɹrmr-!jlUA bW^ejK &Zy7OClBj%"`|&jaWۢԸ /#5^]f` a,F4Q{yT˒90!2dh4na,y.% 4fgN: @p_ȳ8bQ"`?ʓh|7&?Z|>䋱vfTC:O0yYΙ'.aZ􉶻l3A{^A0szzD[PfYN %<`Bx ހ˜m>.?CBJ7v䍽Cb!#<Ѻ hqq13H%5 ^Gw{f;Q8K+mgfx~ g 1Q఺DI Rē'Oچ.'h2`6& rլEq0?l{+,D(jZptOn^{1;g%-fAFpP&3Ѳf!Ls6nf a'''1*28 i0Aݸc}RX[[n:llg%J'Ti6J+olk E@C&eFp6q@[C ͳ\<<;;gXX7Ǥf)^]]o<5 $gNXqZÇ :0ع1 !gN]y&:ahlr[V0}֮Qq{8Ԡ<3sՁTzd) 90$ʄ&D1$s@ sX"rkZQcB/~cc#~!*Fأ&3B=kӻJHcS_n6.)&y(W픋$8D0L.ipD8q0d$A|1ֺyg& u. x׋Hpg?}99^㊹UZjKgN3r t2)KaX=,zIx#lqЙ@ A0j.(\{˴Os|MF7.JZ5 hqtnPT*v mn6<1"c1>TgYvjoI: 13P3%2$aϾNwkM8c'k\ea?O[y-ܡǏG5!DrImq4Ps {dY,zHnĆ`^gŊVDS:DGc<Nj/ ghB|9y(b}^K9 JP xMlmmexQ|1T;::AnZ1͛71ŋdYb025T3S^ qLr۝E9ܻ1L׀!K2lN}򲆧-ai8J=0=u;"bfud2::@3 PY>~o<12ܭde( NS!nl630|anAMGDYͣi쬡!Z=~{wav_zsC&Ipv`|!` >f~?2\nGٛFz]Wۻ͡IkbqjjuK$[ 8b#Ac 1b$k!86lKX94n=k}~ Kd=kE͢X%Te5f ֞A;}N&9)Ly`5 Z&kCi{ *]Nw^w;UP#n[ŵ '84LF&zNNL69@džg&Yfڞ'H@J=X9/h!hBOؓ(1W^( \< l EFidc+ԦӧJqqTv$Oh4* v(xi"*cb i8IGGGJ[[𙙙sssT]* ͎ṛN&@:YnJ&@,D^V@V ^oZIq̰NS1F^/׿ut:,>¤G+iWl2φڢ8%4Iz>}1*P>?9@RMb I8$JOm$d '8౾y >td}fy;a.29$+݋}Ug%-f: .?'5CQ Q_,V 2$ibs)JD:<P§q}}IQ =4ㄝT ԅI־eonn3ns>lpO$Sxn~V"jW3͆hhq37ވ?8rTwmm-oē'O*^/Ǣ`[bii)mUMr &w,Y3Vlt޽Tl6t2VVVbcc#fggS)4ckk+~ߦsKQeįC^z$F2`#6@ G|=J&`$v5Up:z5TA J 08 ߬mn{H[$SSSl]sgggϰ'w9fY+As^ϠE!zgn5O Yj)!`l3[O5tdv)f %C6**:'Gަ {  elw h4JrÇS/a$@ao'6%U=bhm]$83 o>uu~~w fDr7bE]nMr7ϼ9Ciq@Nx7Zbt֪#KFs?N2R,!!!bwIdBm `}fئsU+=U>hݽs=ʃAj%BU)lNJ/RPTn—j½KO/_}U ~6lTErDc΀s]@FX-#a)3lЖ>8>5,_j&UaZHIYh悸{UۭR0u:8::=ng梸Ϲp=A/޹'gnoonUz5lllT*/ ,x4"+%S{XfoȆ!7P\]>6v&~hMӶ`̓FVvky]v)Jr1;;b}} `m2je4|NR`0tj9i1q%R)nA)`4r/d^֙#gP/{IE\|h`0|pz9^Y9AgMfAFAP 3pFC" Q7u`Xa?w3=ev&G^^c.缎=O:,,,dG_E'l<@vl/ml2"}_Gۘ􇴮͝,?^lV;9NNN0tG˳,lVyY%1ДTK4gppHJ!(g,//8]$,/^H1?6'=d .Ijb"дR!ry>xff&Aܤk*-SG q vV9 Z~_Y@zĺ '?֍myW)uB8::ϟVE@%jJ;TtDQ BmhVg iNңaȥX^^#Q,XÇ}5~u~?dDibZL}(Q+E <*<MZbHۆ< T$83xoh46;1<&P$ gh[8.Ҭ{88>>hoF&@&1/xsww8-fLNs. .W lm#KghGK̆@̣"10d"6hAcn[ȄQΈMڟ=q+UY(Yo=;:88H8̶^qW'2ز`ώYsb-@Gxp`"J#UCJ, $LH͹g|Iʌ>b2ŇYfCVfi6Xs_x9(XLx΂Nu?Ň&/J#$/C{U!xp%. #`Kv]9 >Lni̠uUnz,^WZ^^P@lBAW~"4z闗 )sB"Ҿ t@x= zw^ YKжZKgHs/Z ex"zp{9V99"\Nz=I>EHrRXljjwoeW(XC֨$Yf|RFHA]#.XhCYEd*&`N(tFc8fanlI⬼O>$ɔ_~ Bk`,..^w9H;CEM%})KYfnv}'gyВ M:cQX`^=&$A$Xy3rK6=.a 8b-"K$uhQ)bߨL9Ȩl`b曝͊m<'Q5X+^ CBe kl*'cpYc- )c֓',5I38??IR|6aJ"#V᝛71Lɓ'fLMM~O3Ə@k2 $3W{~~>vvvb2D^[VA ۋw}7f6Fh69J39dߡHUe&--Y#)oD +4ooo_*c ^J1&#$Ԭ+bS,um!z%U˶ށp9YLF^Ystt%(I6 ZAt h֎G~lz6cv%*%߹;JnE3kP`Ϟs*0Xw>gKͥbn:~eN曱U/VyyK IDAT3tLP}5_YY~yq 3z&ع`hd>ͮKt_YYN`ڽ.p|'NnNnæ.M0ZZZJOz $Tn3YV'-% &y0Gq32Y k$y]Ԕ3-|//d-rY7դ10UYݎ~f^/cqq1c)12Tc׫SzM׼*yA!Aݳ94`8s@ܻw/mW\Mr  ^.*,񮄿A3ax;I{[RmAֆax~>&I|_"׌r[pk%Ѣ*hZO/..bcc#9IVt:9624xAΑڋ̗ruu"=~PYu}`\\ܣ[y^ު]?q 舍ب`qg\fle vX8*dIFfBYכX^^Ne &AJ3o.WJnijE"o# ˧f|Btqrr{œ'O*dP>c} 4~Nf^4i5LgggS)ukӉIHs8`M=׿DqjOr4>$' XZf#i~1q,mڨ!crTX'z cHg(}ڷrt>h0K655nW!nS @5l6+?6~"oZŕ={b=Lhuhݚ'=>ILС׭:,--}͏sDl MtaLh(^a|%{Dʳ/.xFn% y~~>?~>!IMFpe 2H?Tfг@T| tBGʵb́fV.FJ?oM!ɋG5'''ybJfR I]*pzeE83vkZ&IZ[ĆM3 b}}=~~웛[oHx/%h3VUR4X[ $N5v:e'2TT;&qpKϕB9Ud%p/xIs~mWFHZNqٛw6"~~Oavww޽{kkk)넳nGݎG;;;;.1ɋ/wvLZp x6ȃ+ ,&fft@%Ts F9pBE(m'pdcv[ogA" išH3 `Μ`OA;)DG48b1?e`a;"dȗ/_ZZu;vKSx #$@Īn[In)I333q dJ?,>p4_f )e)Y;,]ik=jRբm>ylp6re7ل Um /N&E|6j"pE@"1:r]V1o/T^zU1aVvEd:$/c8z9I"NSi s֑=ꋵ^dsĆGƸ s 2ɡqiV' shN98==v;;;6X2{Ɂi?btU+]٤uV侉3`ͭ"t@b@L5K(U.pôFQ D;ǣuAJ7ԯ)Eni<;(qƒĔg)aDD٬ "$p?́rFy&5:)ttxּhZ>c(*nnnb8VdloM$ͨLZ7 p5-%IG'P{EW=z;d"/G  K9Q4ܜo~!/۽'a}׸?qKd~QʲLЯ6 ]l. z8V- RCG ZM1 .z.wvvc8}\9gggѣGK6.!5Wav5\hÇ,*$BViOjd flyNMS:,..VXȦ;`&0[tl-VVG5cn _IYgKsyQd 蛛8::xqeNފ{$WZ< 0ƈ"&F# TZ~gqq1[j=3mc'8(0H=)uڳϗk&ٱN$RX8$(uwVWWhTڢӪ3EQ#Җ6žf+}yyoStFkMS#$cp.>g Sy&&gro8*b%Ŕ8 b_8\ bv[ƭE&-Gf[U;z3rpqj R͐ Y{Q2H = 6 Sbcq!9??$^Jƻ a;A!O{cL="|W؈a\73V8wK`ݎF/Fg0T]>@=>@dg|tD^OhdcR6r@v`~ 1jXBUO!TvN {ֱ~je*J li׫a:E"DeJ9:h nA$<}?bw7.j-D$qξs߃'EFLFdլz#̐Lhxף&+Zb@ ,g>9rbR{e鶎MzʉQ:{XI7ȴbDbe=5i _+'3gjEΤŸ >X9Y`y^T"!9P4Xn-'HQJt뇤cws3o*G4>jWȲ0]k #NF08P!lynsⳎRj:P8I4GQ5'χ+A(__V#H3nQ7OLMM>I؝Ld 8][. .Ҭh?t΢򼮃\B!F?}h{%0A#dN;:*DtNNN‡< bZt{{ϔ{Q3F1${e.8??Z{{{)Ljk Z+j€8Ij6ȁXw-EŽ(׎[N:-=B̅oT{24lz _H/-[°??aɟI4 +5|%ⰲI~?[ x- L!ߏ^mdMJCikOPA@%(^3dd؟o#0#$Z :-G s)c/ "佻v&>::$jT4mK~A Pp޽w?яnW9*˂ İ?%ddV&B12DáVsK@pdm m z&>nudeX}Xg꥟mzzxyloog ه̂\XXH_8 1ḁ2N>/ʔ?-ϻ=1AEʨ4a@OJ|V,B[YY U Oƻ+ wWC}`4I 1(ҵl}/xA;vQb}}=z4D̒/-B/G 4n_y.~7{H#]LYGaRD+.RԢ5$=}9hU$] HNndJdm53-:*xĐ,}Ps]cs83(X%ռ1k?hUM %$"1R,̡ ,..fBEc9e=gmsY5Ȩ@*?۫W@fX]9}?Y}g1T\I@pEȘO@2y*clY@Ey~~^q2Z@of͢uRb73FY$fqjX$~? {YH災n^K?LYe@=xfh"I%1k2,..zVR{.5y/mūlpS+NOOGJ~OOOP 34m/EW;Nh6l63B>T'3JOGOK{xcAhdB<+7zit` 3Zppu:?"k6#- 22L"$Z-l5;k$­1` 6Y-No.ޭqxaC ύـ`r IDAT]&~I,+WQ,du P{۹dW^̶L9,W]^/<2eo<ﵹu,,Q37=~ h4̸qSZLj;ؐe;k2{f9$WWW3 ҽ0] dơ"3\p8Hf4wŷFb# e,T\{O3%F,L& cRYiZv;&IF_ Ipe?euCC{$!a몃ޟ}BnGbyqXs| s`بɨSgzţ$Nq ,//mt:JdX#b 'DXI?bb|0&m5?Oso6g/]^^&[hA(>4z^(D8 ʾnn9e*@3VX('BwmqP߿oF$8d?NmeL^KS0BTd\L[ XyШ[ &4(ƨ#YXT$z<ȀnQx=3ˆ W#P⳩f,i"MIt$OC^It:YYFwGoAI8T xO"ĿCVZYY$5B{ԙ=g[8y06662!7OV!km z"F$:(6)́2m19!,GAKKzb$3YJ^_^^Ɨ_~SSS^? z/3~0.//??YҾ|aa!qj-e$˗~ x~Q@/'\[Ⱥ=R'Li]"ٺIYc;6VK%Y6K{O?MMd7!"bee%>ÊoC)&]LGd=/^Hݐ?jyT3r C3K\G6KTsKh4Z۽W_MpN)B򌼅:JLXT~?qtYaᝀ+m$EAQ*>iYW8'9"GQ]రǻi 6\%ٴD"Hp:aɈvirE:{@nccc#$$@v j}wTJC^MNN*LPΨʷ򫃟y.X3VF訧'n}~~~>{e|'V\\\h4w}7~`0HݵtD9uvv6><tH @} i_# bqztEYB? Gč47CDeZ[#pfz1UixYzlƷL Ȓ$ 9wM."777Gx@ {'h pخيZܠ%_4|MY"9&]ݖ&u'+> 挒qF6Q9ϱ~gs znK'ONNr(׶^cM$dNvp9Yn#૎Xٌ `F- Z91uk S$Gl_nj L&iUv+o\ d.mAVNS `x n$9Z!{l")2Z <#Fdy02P$f3 jIqw=ǃon\ysWWW vww>mcBj2=YW_*ںu Dž j+<*977 #Ra/ZwZw'p0(gff Ffz 2i6x`§byy97!'O2Q(8/,籲pmk4Wuͥ5.D z*y M,u˩ɞm.6U/`ēU{کFW āUt:8998==hU+ DZ`%`> ՔY Ě3T<,isXYz={vcY6yN  xFMcss3ߍ{V0x o' Ggzz:~󟧰=|ę+Iq\^^ӧO[XX򒀀Nqt&I!iUcKsD8!ZKB5}uk5 ZprADl̴s 4'I!׆ V:4@p8L%E z&F ZV#YL(4dwUh4^ƚ^@6$,2ج3lf,d4 pp> ` fA"kZn8lb>%|I LԼR$A۷zTȖЬCr]pww)KZXX1'*mCg_ bޗ3Ṕc-..VFԓ$qoT}X28*KbeF_(^܎^]]5M|ZۣԃrjEL^pzXclfE. )h4^gG \GI81g{^dl߁ǛI -{ x"ρC<8>>Zge\tvi =[̇p{Yʜ4z$F_ݻ>pɈS3)?L潽XԀ$.Yt ] {lX#inZq{{!~}nnnijMlguQ{ Gy~ff&vJVsp؜v Hl7|3vwwg)ːn">??qN@r0痽AyUI)Nw5{h/А,Lw4_!*D}iBR:;;hZ$2 &npPR=v7UJ^6LPVyٻQ[ ^LmAuhb>.晗mRkSjNq: Z Rٳg)kO&J.&ՒYˮNz3#<+ < $c}$>p)I E[uv]^^s!0Nj='nGr`K}[qLْiijXoazz:GWBv5Qr+!ۇs@`O004,* C'oW:#"`ڀ5={J,--嬼85{n2a' m@⼾̨<]`&5*\KV@9@>|5:@ -K[V$¨jYHX pX& gAtNNN1Q}0AqffJ\D!BϝYd^d'C5QZL z="s%SZ$8kq!DRΗ3&b nR /#FRk<w^Ukp8L${}̩wr?1{jڢ1p 1gA<nGSnRǤ59=ɾMmzNv8;;H߅xqyygggٳmds.`07{]!m^~6'~!kXçx YA}mB uh|nXuu! )Y''V)cAO׆SL1y͖f3F~7#mj= Bd#4 !)p |WIT\__~;+R/dW֘(-Rݳvuu6Mv`l=m@9qI|/<ȟ;?2a|WF<>{*0yHCٖpKRaL! $:&W<ޣ-|}@\Z[[܉ɢ /Cz4Ƴ0* @$$~?n[jX߾ݬK47͓.4݅e]lxץ͹%zY$F_[XCL1b;Aks([xȆJ"1m㟥-I3[JPV[ySi$|9Ab'}1=Do@ޥUlAR3c7 J& &KyeylTN_ q?{'[2*:Ád#\ 8пA<}4=! lYiDbwTɻp RTA ȼz*ZV\w|'*f%vISi><> ŋDÀYaXlh[bV8QA+*b 劎H [TLL&IZtEH 8-)bVmLXv6hsK$ZY=32" PDpC~lWZ70cg7 bђE5` LLbA!Q,Fa{]EtƛiCt::<_EsM,PƮb{{;?~3Ƈ,<̳,%K8oo/VWWXjœ] [o9br(svqqikFy\__~h4OL:#i彠K2??cM>Kģn@-D3= 60GJIjP8={9LRɨ yKKK[Dr`Λ㸽VUAc<p81anGGG95<`]hxi|߬A̧p Z\<3 80JCV<"5ɉJ6 NFos<4---%H$R,=44`%8FP7G?.P *o.0ikk+] fS*ҷTj1 n3Bsbț5I5<==ͩyZvG/rfr$PJ i7$Xú0K0ꫯeBGq2٢jOcmm+b!zN<;`0n :No9P,U R꜀BJ@@)3Nbyg9p.Jj/=֞ƻַk˨ z$M8"PtνzL2jZ$;xa' nxz\ԭ>q2brEh3c׌EP"vے"arNQh|GKivv66U=T" fuHN v"Emû33\b<s˕qai...4L2f3677˗/"={q<}4IV.ԋ4О-//'uc="H1n1K*7gQlu? -#%gvgEerfj;\*y Fk>f /^d 6155h44 j [VAKow0Jc;&*#X=c0Tr<|h^DhZCW%xVDP2᫫4ب@CK:ZVfTnAr Qm8p9͔[-N6eoK:0.--%RAI2GXx?fZ>h;mq}}RTFi@>f9BVJsSaN1ҷޮ^ݠ犑ɺt)[\q(m<'ty)oYwmI&{݄W*%vWN0;,X.gժYZ-qT%{|jj*v>? \8c406n4 iqq1(z^ĕ\!-[6!A+>njٵIHiO`7~vN&LpnX[[iU yZ\gM j1+EkX0OO4'ðl"YU DYc8L^p8lpT€Q9jQې$^8ՏKW,333+++9G_I〡Ql ,('.,ݍVU Qµ U. p/0 a4ާIWi#Sb> $4<Dݦ1# 9R)mt3 w2CWuQ3vCЪTֿ70JOj>t}}88>>FY꧘0lIO{'=Ec| y>>xBDXF9֝{$8d...WUVHٮ\Q%`}1qwϞ=z0v& @:}/7n)zqJ4ΔN'L^QY;K-3c.-- rHՊDdK`][^!qhϿƓ'O* k♼G?Vhd:ʭOiLBd<:R61](*dleԵv`p8LdjQbuu53U]I%^<F\jqrX\\̾G7ި|)8I<9f*[ !0 w[݆nZ$g-ٽ~W<-6#KKKb!sȃyMlZ Au㶏\y2:g p88>>rޫ՜|ܿLy:7ȱ=209CFGMZMO$k{<sJ/ s *d27|@値 c?Aĺd 2E4fNY]m~Fb D"$ A^Z)6m-0\Ƴqrr0'H^_|V+V5-o~39XJv}qa;)U|LU8ЙVIŪ_.#̄‘42 I|*,- ] ᄒэ )*z;;;)Lߣ&PjȵyгZ&'v;ؘs%a{,D-=$՚W1?9T}~&yzF[f=0ߣiۣQ*V嬬ib\;x!h`Pi0hr]__g",IZ-fC_98zj-J|Xv'1S$I$åݼ2kq\5ROŅDެ~K3~;A8Hz|ݳ"wrroagN˛kVluu5;p(Dn[Lr~lq(†w"D`˓`XBrR-caB9oGO&'7=Vg \6t,EjH6{DX Y8HLoIRM|U䀼2Hߟg W Ofar29X\\̊7ވ=o)``W1ôB>M8ގ`tR7/_x%U-Hi23\MrBj*",*A&L=QŔrϤ+*&5f? *Oa,kb獢yzM$&Iwja`S?x׮]YX;b~?rAbxfZ$v*#q49x7Md02dȭ c>1}:??k։oh6j*{kggg|=MMMh4sRpgdILhXa VK΃^B"u T4cvv6FQz>\2翱&v8...&l;-hBP&0򮉭vf=g!G/ llFs{7sQ:yQ;׬p4{Y`Jj6-Sjaۻf;*p4 tlmmN:9 &jڦRhG冷@Yl*վU1) Y|pؤRPyy}wIbV<{ 8,lxk6e3Ue\8%vʵN9:xPL&&k\__>I0:e-k =M-)3`kz*h9tƝ8cරeL4HJ魬vPh*{cv3 ù~F9,Jϗ>U\BּIvsV1Y뻻RT :*eK?CD. xמ`XnZYNy5W=kS.4J+U0B=|dHE &eF/'8b-????H#Mx'Mb-#)Ql л2AVt3e];VpiD"+`](j}@'3|.Ɏ߳Qg57?!SQuL B!ã=[GQmJs?m^&j92 &-V3D j!;z}K@:/`dKU,--ţGbss3I7qBJ3+/Ss5ŤKfyʄ5&;8{?ףf{VT*@D\8zL$UMDYs>Y#<+$MuI@ ~x"QhZyJ3P&səuB([> z ϰL[xN lqlQ'J=v47¾2 .I9ȡT1:i5biQǁĽ /]C?6id:\Zc>j jIp{@c|ȃ`?nxvbgZ$kg3qppPc͕>&&Xr^s.hߛ (Rz6ꄊ6ؕA)¢c1@aRXf)'}462ZsȄpX$ `0F12k"#kpݎ'ON 3NlninC*U;)=Xс֋wB` xY,[c*V:F8HC1b%ߥ5B2ȵ{, gYJj;b-kSߛ\y0H8yʏ+9-F'sn5X{a+xMbn ku~vW3sATbTjY8NF!w{8@*Uq wl6+yzz: ]6*Kb^u\~nn.Iv\'; ݁*{*rW{ZHqI @Y(&&Išȹ VV+c8&rk\AHƖ#'ʔLJãlqvHAr1\N "/0lɶ]==͟/ :=ccc#gȔV0ڶٲ-ma% 04eܮ~$eY'It\XdΥۼ|7 '$ ]eYGZ [[[$,i҄ð+R [‡M)߳MUL3ʽK'8??Ͼ.dۻH^i٫rwummc  sN?q0g $c@{Ukʬ\׻*G||CI-2#g{]AhSF>ێN$Jd8ϔ ֞Ppa]8ï*G2A6WȆ*m:;/v=Y ɢUrJڄGPm3JiQؙ!CnӰheŕ;Hœ_6kp8⩧b0nQ&_7ULX__/ɼQ-#nbqA%f0Ka{ۭ0Ɋ8XGX{WPLxFѳyRejz^W2u|8T]ao tfSPۋ;wNVb%>|f@vVj"MKrog>rހ|exm<W63>8H^zULt_>MLFmUrɆ$;c^D,(鐴 {y<-Oh~_2zTщ^GGG:߇]qS<+ޏ!^-W]8Y 5@~mqNBrUʍ7⫯w&Έqp_*z^f裏͛sM 9̳P] ּqѨ"=}5Cׯ?V$mwk+'-kpk0,Ny{<]c:Lv_+\' "='_81"|sF`C'ݼxg\pb;$=\]ٛ1zjY۵4Ms5ۯ2ô؂ɜ0Ϩ{-8<19~++r~6mG^(-Z͉*^>?jL蟑<&"cjkX$Ve15 ^BZfb`8V[eӧŽj6o'm*9mO s=>Kr}P1ixڵ*:p8,Y+L ` e()~Xo4jaD.F¢*ˢEg3hy 8;B3朸W~TN;-E&K:vU`<˟seQn\!⪐@F~@52葥l]}~~0֭[nu/0#aXg?2DKhu3&Yˉ6IO}AKL}`jR5#>}p?3z s\Z)-@dōxP0y0U$%<]K+r2\0u~_a)߼yS~|l6+JA+MZzqq1F^`z+֠9[<;g&\pQezee%AyN'nW^<{Pܠ`NuQX[gss{"y~!_frev&1IJhh{~Lk#\i;vq||\L~4=pRV2.Dޥ7Uo~Z,$k IW +,^m{NB'76,^'Sw³2Z\Ђ1"ʜz=b4Do?3 [E%@ou5t ̘c82 ocNB+cҘ)o-;;Ϊuylzs:-fJajšג!p'OD-.6ba8^& f(ٙ|gxWUsuyףL`@ׄ\O#IFe.L&ׅJg*Բhc[TϣYݗxV˳tvyyxpfBĥalVfQ;W[[[%L27ydgVX__/$9x!hx0~uͳ=єfs!wYu !,Keba7oޔ{W@dCyVlZR}t7L&n+}XYF9 ɕjyy߇IMFL;$o_.A`kGAl^g p݇G]9!7̞=zUkpmFT|7 >82mxɹo[G۰,fOIl i4qqq$&TZՔED9OC$ Bڎcn8ȶ8Vx<13qlsQnQT$V4(ϊ~?{|)g ߿,ZV)VK "Ne&ok׮OYf->FQI  (LY5P%rq4 "q#vÂؑUq,--C'²jһy+P͢S{T0!yrYtr5aձ {'ذ(i$C2a8~w'%sss1 lVHhf;ʘ6h~0I6 6y@}3xk &Iad0+? tib]r0 ׏Cfl;O) xgp4Fj|x/8L:k&x$nL&땞[U3Ě/N)ȢRYkm[ ZVAmhy~_v&I:>ƒkvRfEHryŅ-NJc?{zo:vz^/f,I)Nj|3f>.qݮ}`jmY{d0 {?x+ȻDVߛ~W^RSmpgN$X&M p1 jUD#e |rrR Iz@TTov^/&Ie "Ym!d$&t^NY<|;p-`q:(%Dۍ`PflmmUw3N0N6\Mrs!-8[%S*@ʕ? o46yɗ%v 7OX<: Rr|.{CĕϺJZF |rmrͳS*qɽY8F {{{KRwUu^{&jfs?`,"y3Z-Iх_XV :ٳ8>>&h!ߎò*-Bwá@S,v Kbkk+jZ@5N͛ 㸸hZZbAa#gV$&=x fOtgų=%s]0jh#I1 b<g=GU7NK"Ɇv[ʊtU)'Nṡh:V?e;Œ<1@@5nI oXQׄ%usl ֠̈ލFl1>\![Q}Q@kYECI(yVfn߾z`;Xd2,HrVHh8q?˺hV]89Xg avi݃QANj36 2?q=Z͖hq~z2a=Kx,'6s5jz" 5MFP.իSp0ʓw.>rÊ!냋ٟmu><Q*e׭27L$̻tP^$i&qИ'tUY_pl6+ %쫑ljy\YUy7Rg}} L&W_fk==5A Jbn%![hHF{1 }ٌ" B3Exvvnҫxa[6+=2 4NNN4VWWˆ5ɅafkۆH]i#z=KVFVN/99k5 ~гQ 2*'GY-&.@J1쟁 ݇YIqH^2^h@DwO5yQu8[5l(1O>k&hXZ;'1VeĴFhQZ5[YY\/ z!b6 MWX.ql6Ka #$F^~n7b8Ɠ'ObeebvJ͵,Aڱv`{j맪'.;9uEu#xFY$qRX.]Vpa׍L$q$QuH $S~ߎ)1l:2Y>7.q]\\wۓɤW6ܬ'b,ꕫ,+Amg!('Uc47 A8JqߧqqqF#vEĈCwnn.~){ bg-\W@dDsHG[W􁀘dH3w\(QtjvFz7lj'hnyzD0^|Yބ?*m+{3qܮ7?Glr(]z*NOO 4ZHh xZ8AF q8=\rL/UqL9LC+++l6 (Pg t#;NŃ@I`gHoXâyb(0՝ek-<^20kZ!86,ţr}TF+er_B}D\{\1̯+lDEw b*b@rsIN@ 96eǏGө4^n9Xt 7o{WiaUAI^h?0O g{{\X[[+'''Ec}}-0TZ" 9<CڵkE ØCh4ݻmG7`P2VUt:xmQ2 :FFE hA/X ~?nܸQpT>Qj=f 8t4x4w+ ׄ@ >9I6 ^G)Q<2A3!߯h rl6M2f#2X.؛L&E`:jQ]JwRE| OPmNȈgggŋ﫫eb"$L'&en|d ޕ9MhPHyZzh4~_HYEyTnWIδ. iUngĒ܋FgRr>R]%D6*ra͕/ w]ˣݞBINOOa877Wfy(x j6Elf; ;$!+ =nC^~v"sCFq||\22{jZI4$=42s KLL&ſ\M/e3NjO~N'ΊV+ݍVFUYl ',tD%($ZVMDþ yzzZlWIX Li2;@뤂ՓyM8͊X8͙Du b{룍cICv?öp&Rq`B$)x W[0-BGڲ^etݘfٳ e؛=+++3=+{7]}ىg,yt2qC^>3Iu1Zeê2u5"#Oj .3  ommUU\ٌ~АwL2 W= Ήl|n {oȣs0_hىbH e6 Lv}rr1NK;^(h4pXp64ȇq2l6vw)Ff瑣쉞t/8nyvŦٓp=[Kg3!6z׋GGGe&yKO&flnnƃ͛ Z > A8p3/> {N|ee%NNNb:jduF=r1 gYV)Dxm+GZBb"ϥ;I"fs6 `Yٳg5˄Ó7771{qx 'Gw*fqJbPz9>ٶw4w}ƍhqvv񸒬:a5]@I*] p~~^1? 0z‹3=?Ls m-+Ql+vLievX궂׬Q.gggZ3 fwoj4e,ƛqk _ lJdU ݜQL&"}9??]&vϒmmmU&P'}ŭ`%f͊&P1ӜŨ׽oHOqiT ׽z=677c8⢌ի駟h4&_qn7o|GAœB{Fz_ͺ@ٴݻWҩv4Zp?8qxfAgoTD-5^pa_W\TQMf3q<6K2ZCl廲ձ>#L\^^F׋t:Lfc\\|<# }wo{d2FQmF9yy]=zw /H';q6ͲxQER'+uYj 'fH[h5ɳBB4X^/,.ncaa!:Ne ~~;ܲ?<ϣn3Fq:H pֱA|(~:XLF#VVVٳgd2)f1irFCB$ٳg1J࿶V*\-"&3t 6 n݊۷o͛71+ n݊ ē ,<\&YِgwM!h"eK܋˽BCfByQa|K@V~ m4+++j ~KiF q2m -#> V lV$hΆcLofJ< 7DͲɬ vmXp?6{Ix*MۼZF%܋wFFi~MW`d9d=jW折 oR" I1\aV0Vᎃķ~_fGQdsˁf9b9Y T%hbm)8$}|t=EbQJ 8jwtbl)Bbt CH|=*p8,:v,F_*;ѣ"et:XZZݭ {@q~_o^^^dR`)Й!Xp PH@~|$r㔌 ŷ;;;E"j[wAve *9L8pO #C_uܹs@Zl"P^ILpr|Zy/~%3F#fh:5H2/_V 0_|E]&?c0YFQ#'''R/3!j1PC¶U c虀G -l9h yг&@$bZSj͛71+lh֮Jˉ',k֝ f-jK n'gQ<Ù9Nuoׯ_o~>w{[\\/">쳸w^AL`0L )T3?q^<::h@V,(K&@Pa'!VU^*v$))3QmIUVrOi~Nh FGgbFgg駟Ç!I ݻw[nwL@^__/AӉկ~Ut/׮]O>dx)f|ԙҍI`=zi[>D\ML7cDwz9+=gmؖlkN*8bDbLܵ5. ‹/JEaz֧Ia*=o06II6|-,,D^/p8,=a,?T6Q~e 5d2<^z{=q^7Μ(a Ƴo6ea[lA'5~b-!ZwŴ1wvHu!lZFZ+،#$ypwfOժ3pFAd}ϟBg2ݜ|;섉 $xf3ѣGp8p8۷oWƒ9C ӺOcgg'o[,3ӞeSp#Td^(cuu5qyiv 44ٸ pWVV\Ukb?Z;2da٦lfO>͊5d Sޕ'&I?qrrRuIfኬFݎwZElD fkk+>}e~Wغ_dOِz=z^n#eBݾHP2+9\+ 8{4xV-5npsY_$Nϕ2aS-3.X $um / 18vvv{' iydݽv'4&i:X-W G~\hNF]{BZH"Ǐ?.fI\~nØpH?>>.uzʲ@ Q9IVS8jrbZMktGRh4*&r&KRfi8>>.IQҺeL,>yfE@<0p ŋ%c2t\n3{ޯjZh48<<{nٌ|@HkFBHr |wqqQn}$%Ң@q0vg+Yu˗q͒8@g<Y@'''8I@*~ ?,BR>mmji xEɂY/n,Kz~~^a:p8؁LdTZYЂ$a3Y0aNhWssʆHMnǜ;) (4ʲQ6؛=AejS9|oE+f9aw\kY\\NQ3>{sOŋvqzzO>-chSs?::/2z^Ƿ~Y<ׯ_Y<*;7r~b="#HA06ʁȾ999 boqpq/--ΙQ#:??/V8yep|$15$gϞD&m}{q||$^A/qޡZ/^p'(Iv}b8/~(ˊMae0d2)Pu"=$`}}Rؿ"U"!f>N};v@TjtZxe1aa,̥\ ( ̣GOOJ6 o;wE˗ַexeeׯGٌ 4\ aH3|?x^W@LklV64=~6/*I.lu|UkHin\zVZ&Sf8P# hS 6<14"#z a(fِ2܆6IIx"vww+ʟAl6N~h|US|bXɓO^|{a0Tt1!3n 7y\giUpQXɪh[ҟg~rr^T$2Yag;n3=D$?WbQi{]7ގ߈gj OϤwh;Zv$TnsssnϱwY_[nsVpZwoܸwލ_9|x)??=%lVLܣ#hZ\EblOxX&ўe>Um\qMv >nˣ(nܻw2,_y6Q-..cz[^gggG۷5b칁 fh'BY{*;\2E9b%؈hN/&Ԇa!PqHfDTMd}^=!ENBuKJb2)۟&E*=*&)YvV2Z#{ p`ғ){w^Ó"Fܹs'vADX@6fYyWxVd=y,'tl94YN{$R{p"ڝN̕vX:lab#+l>,es]\?a"], P[nV;wķ46j}3D|GGGƇu#B~}& 7=]Cy e;˽Oeo$b AYiv~ if)'SFSPDʄIL#0{j%2X7DZzq,//BY z]rrrGGGqxx1 [[[%(˾}6~򓟔裏Jɓ't =z^766*3M6u2igWPP]~=^xQA ߐAQ!"ȇIe45k ޝ??J10}BF.P'VgggqppPfYzlmmUl[[[ d1HZ*<#eD/`=U Jdx<.--O,S}gU<9@0f-X}c4g key1ZRφMľ$(|j'⾨IfU0eWvFؽg= SVSSlٝ($IFIX$0L`Fį] AZ  c]|h4Nׯ_;w( r )_ zpP͕Rfv^nIhȔ2T -_%Lo&h۷o?d珏ˁD@fEʙMb pwϞ=?MZ/Il8 Jw<K%@AOIEf:̆yPyB`g$T9f^5X$\4Sl7I84₀qS0/_,4qWoܸB dLd%"?ٳ ųhxzpyMJGsU`0tV,ZZZ*7oެHwB~ϏEČrQL F8:88n P`0(ϑd,D Pxm Ku0M  BerGM SЫ4C$Y< KbF IDAT@m`_;Y gFfs.2t-y C }=0aTe3bcÁjN8[4-[vz:99?;nn@6gMիWͣ$,ϟW*@mӧ ދ[nÞd2)A5Ũ뱲R1Rxܾ}2mZ^$嗖*+xgh4,?wn׉l؃ڸ6"1e8V~.(v s8sNA|58dj Cߏv]'lOPy !A̜D#9m2>N j [",YgĊz/T$Tͷ-3 dYe9y}>8ieYIUN>;;a,(+ۇjyUh"{̐'+15b3ZF+ YsALZccj^`<xbEȑŠ$gևeG<}*Qx_&c; nfɘfZ[f6L,0p'2HWezƓ/1_Z=IG<͛/..~EL\=>S{ٳq}6\Fn˘-LbXm0mڌ<(enLL"hjܺu hnQ0IlZYY)H%{(kweւ}V/n7O?؈`Pg#h<g{P"Z)ψcZ`,|H!M:)"~ALcilmmUz.,DvAˈ(R# lυXYY)7z~~%cAZ6%Gȥh4 "bb'3xpC'㄰ϛih /v&]XXǏW_lt1_بd,qL;y@9]e\1""f%c4){dA&A޽[֎ah &g2gsj7Yb>\?׎ԫM#!i0ÖT鞚NRuvM&bAo uP;s Ve:߱F@[G2ߘa'q+DJː|W#&$ f^I{nܾ}̸&d%jgi'Ȩ?.1?1G:1@Jd]8SZ I'LҚ}XH-,Dhbhb?^znApl/2fh `7i$y= 3$ *f3E:-r۫>dA#mx!rP]5ZȇKq'm*[5MEs{E͡IP>᰺" {-p7|781?TJb-g-z̖V}Z;zf ýT58talXffHTD]9yY@u<W Ç㣏>* OwqM@n79 @9o&~7 /(6F˾(\(O-@H l=`հ XR58y>g{~E12땇= ^肯VJO{4},_lB"y-SgmWSf?x oV,+|ȓ{,fu2`l5[~lv'%:99)HE6c]sWh 0ycQKL;!wzcMQ,zC0HaZc$N22h^dW4m-NSZ|^7yz"mEA>'i$< ׯa9+FyGGG]sX'6^a8*XCZ-q Ť :Hbx.L].V [:d8q?:Z,Z$pu2nGZʺ-9+m<{YROӒPǜŌ.//ckkbB Af&yp8=/k#Sa"qd'=K0g=?<xUɲ=  fMr'#cFBn_BDkT?{FhSK0VA'6(o߾x]8޽{7߿_/H@.NPaC6"奄}f^Wz>8<-4ͨZJ`<1lžwDx]۬,' &V}3Lʲ4 2v;&9ydIk#.^v4'IV3l6K/ccu:h~֍`4κ@;͊rRܼy3_+!AU} ydk2nlxX|w;F#hG$eѨxowZȣmn]wnZ& ;^@ 89<<,-Έ=Fl~[$r|#ɪ55XA'v g,NY6߫Woo" o^6JXlH3::"b7d ȶ5g =ЭLP!ct:1i^ kзI 1 $Fg;Ϟ=+Y9;wTކJ E#TnRdAVѻ/_֛{۱7n ZK'O7ͺtA>kaa!{ޮ7֥'Ltl3n%]V?3a­`}Cz&b@D'L,ŋX\\,b\4rdzy:]RW`)<3/pcn`*Pvcf R#"n޼}Qz,Al(r51{696|:t:ZVlN /|ގ" )?gggO?ߋߪ0݆}$\Y`e~?eϑ[ur)%C$e 7O{ y{O.8XwnT>tRB6N+SNɈmR[j6%QN,O4:1]Qzb}}=cccz=ut2*l<[=Ӡ݆b$0vwwKwǾ0NÈ & mG[#[$RLf5nb:Ftxw:6qsAe? 6d/0]>}ZXna䈌C  Qii^t$RVWWc{{HrhC'k6168J&Zh$`3̀59ǛXeIƠpzMXc77ncmm-666!V/ϿW*VVV77+I+C䬃,d Z&ϑC/e}G>sʼ=ʞ9:w^aHPM24y(qGeP"V.WNGv"gFj&p6i&(޺u+bьF=W˳i^!,..qenޒLBxޟlG  C.taZ"H`װ`PIJ<˻'?ܹSl 0$ yJc/5Ixm/O>)HCjF#oI͕t@VQ3I]uxD[lzt̰U&QH6,lcs0ֿmn,m)h KPYɉI^&;rФczz6b_ϗ:$xTxq#iTfYlmm" ބ+Zz⋓@QFyfinnnt4U\Y^judң+ms}DrRh$u@Bʭ1ﳇEM==` ɂ59LHJ|x蚧8[50jA@7r>ImEM~<-J'D:(THzUe*-<;_)^{{{廚fAXiSژu{h1N߬A'rhSد(\-e usbbY&pT6)@nY>F=HV؝ $&/ gA on%UMyA=hPZn9zh ηFQb'@8dAV&p;c'ZVL/ nQxZl-*FT۟e:z&a8(d?jT>$őX2timsrP%(E(F3Lyb'0Z˳7yAjv`bϑ\ { { ̩ 6^4މxNاORp|#D8gBIqkN_Vxj vb.ö>ixAtH2mXuBeroo/Is+΅dۍ'O/~O _TBOɦGkC5 i<Zs<\S^H9=$T'VcdgɥX£&4RqNl@@8**20'3sκ]{| #~3Fx sssEsYR6CF .+e!37|d% kZi7t'L# IDATe!2`VM `P_=b0T.%}L&?O?n߾?ϣ/ѣGν<<Ϳ7f5]FDlllc0ݿOVGp0oZ'r0g=ZNrB/y~;}~wp5#R?/X'N>N6m?.D=F{MC6v&mnnd2n[ЬG\!NPGA>k8zE[Y\\nb[1i;WȞt.0%NNZ=sV[Sc4,HL& ܞ3 qbG=jne׭Nd]!cfe/6)ìmV9ݧ(>h z[[[lmmlbeq&dkvٳrLjVg~, Ix񢐁a^ZId=tȟׯ_/*e<JodHCHL dN+MxgMVw[?7F,,,OFw(t:^yY?t:ϟǗ_~3EՊYܼyB4j~_(A|eo?3j*2[_?'$nݺUQDuZ<{9Z0;{Nb;'APJ@TBҪТJ-*UUURU)!)M =v<#EIvgg{}8yd_e{u7;$.2<@f[Gy$)m<_a Bud===ɎxQٱcG|{+prnY;%lꄠezzz:'n# [?VJ 5g?K;j\vQl;`FdXJ9/Э쎎j쩸 ϟ xRW9(pKPs\N*z9 J}p!>\. #p=}PFg` :xX 8 \ZZJpff&o%Ml)LJ޺uk\}ՅYzGMk@9#X$z{{<3d)_ ]%8 n-/"я]2@Q__??KY lii)>{ ?8,ʾgbSDj繰,Ne`www*aXcOr]NV35p_100pjZ,..&>KNWR/cd. -'?18zO5_ѕ022 ރD7Wd:^r,FlzlpBr6P`y$ϬDj&38l4uLԖx`5i&-lSC hݳ$b޽&;HPF/vD[VcΝXX|?Z. Y%!!k&. Խ |8(J}a@rsovuww`A=\opW?Qʜys>8sLuM7www st<.@??|3?} _Jm>5H'KKKM8p?%΍:#5'\`ÂM&{b-sfPɁ"} ̷OlHG䲮F]¶h僐L^-n( jclMrۊd6{]XXM6F>$nMB i_[PƐ0 em.Em d{ؽ{w[^!!@ `sj0A0ekkk,--X@b1??" Of5W-yZZZK˹JR oz8 w.8#@0|^^ɟ>M/y|ӟޛm/fgg/=ۗ??7sşƻB/3 f^/@jxw@q8sL!u  .X@TiUG.–iqυ bvv6Z[[chh(fff J1>> {@ 3#qWUeؑ%(j>owuWbhX#3Pʽ{YY>2V̯O|q>5ȫ*{_W^˽S޾k}}=DlllW=vjj*c۶mCfc_ I<%3a;KR*J Xj5uHX?QVرc;300\sM\qĉ766>SO=SSS-ڬ!$ .q=aߣ+;R# ::z9-R;GXDgD2#FsyOJNyfr4Z Gmxx8) ζp˦R7R%E9 yD2 Zgc3{aa!+yN< ?QgPSbMpR{ٹsb~~pO--- #}TJRڵ+XIj<#~Pb#V4Nj౎M?kM{L&+#Çl`^ooJ>}ۼ~6pSnpG뫗$|w;z>49y&v?SKo;HغukݻwӾkmm~M x~ ljj@l|154jZd흽l$]Qsc:::СCH !|nށ]]]Msė :swmۖعsgp s؈'O&m֭qr%sмN0h4177 }wU@$hDO >5 jÑjf?xPm ZXXH4m9ߜp^p̆qpj,D.S8<~ϞrG3~P7ϣ:#fc1{mm-M3TRcmZbG944;vHLl'ACJRf6D"վ4vyy9qi@1'''믏nzEVc!- )ʻ[,g߿?|4裏^v|СE\;:V{x.7xc߿?FGG5zsG>xJ{*@^﷥.bZL_  jpop񑑑[bff&e|I=%M5َ$3=T NJʮ]ԩSQVcחZ[[BA_w.\Ϭj8w.=Nk'ph&cЄ5ʷ~8ȃ|C< L/d-XxKwG{lRִ6i<\Ml);gKP"t T*QTҽHGn /P L04Ԃ844u.6رcGLLLZ\\Dj쌁@cTGGG }qƍ7X|vZKJA\>pBu{QR7SQ5c0_Hi^3,fq}5.40 ccc715\oy[MozS.4ur۷oOY]kv=O}*~[F=R/R|cU:I"{*xNr;vwJ%֒ #=AaMZƋeL}bIWeff&N>ǎGӧcnn..A{Icrn+tG! <]2 K˹)<?sJ 59ɐhc].l -n$h󌌜1==mP " LOTrҽ^K:88XxEӓ6AZ-y@ts== cttM6 ]fֻg5t*طe˖R@"w2daaZݻcjj0%D.34cCj藠1!6&Dԟۛxbxx89lcHDLR,`O}w1G1::{: 9믿>#<GtQQ 8{%/yI< Z$6/%Y4=?OJ6_-{Hs7ki3s@tq_2*Z06y}}=j: xdd`m`g៸̙3qܹdGFlV6\ gqxRmbVVLsۏ]r`c޽/J088Xh4Q2&򫣣#GT;3>O7-xNo.Ժ/ֳ?77O
4dʾ| _%w׮]镞E0::ZK_СCM-[^ܳg%UzU [oo}[M:#c=ϹtCy===q5פH8X]]9*,I_^- ;?rH'Bwx^g5_ QzҨŠ\te~pC\/o0G'= ߼ ˛X?%="(" ߈S6h-### gÆaqОg0iØLDwN$nl*}[!w 9z|4C?11j5jo7A)N KKK!Dsuu5FGG㕯|e޽;<"k,4en_C%]~1yKozPzk^s6뮻.y㡇(w`#u݋eԕݯz%y˖-3 DP)dt ]0VH8I.^m߿9#v Y"e] Et<(f 83|H$Nc`` STJ[Oڿ} W̊!#^ ϥB:> )!cm .r$“:檧+mBlOOO*;x...ٔ"X BQh:M^JbxB./i59KDZ )Hvg;~p,8|K{Zɉh{MTu ''6rjĝ)z# S 8+adhJ ֟:ڔZkU`推#-wuW|z/}Kcaa!o7}]V|3ַ_̩ϧ,by 2 3x 4~w\)kp6ę4rXwkPՕ: &?iff{1=d;h@ zK^1CaNt@_TzKR޽;jZiE@/Eb!,ӽA7Su:~+m4>~gNsr!%pOWņ`V\)zP5>?J 6(54 "#^#?ۑ/:adkkK>) IVsa@HT2ē=*Dy@DL.XuBa2Q|шŤaӓ34 a$Zkrk,s=Mz+"L#ڒϴ'ۗAۀxBp I@6@lĞ"}GFFb׮]qKff_K^_Ԯ7M Ο?Pfs=|;3l~xǢ&K-]ӓ͸E ^s \WWW%]ft7am5yEC8z__؈AB.Su€1_v[d$-Fܱx0g~Ϟ=ͼh$"%@ wt-X;Kl՘Vi/ u]Q åh_sc*dĬ--/l0o=H'B95 j4W5*L^>rϜǕ>|G^Zh IDATZj:Ԃ>kL6Κ3JKHm؜Ds{<,q O"kudTIDvg̍g[I\p 4eЇ㩝AnpdE#ەao48CBRd4&kwF!ѫ2׼-oyKEgڽ؋wJ<H'CxŮy^T #5DΟ?cccMxk_>lV__??D<#1,'m9"  -`LNN65KA Ϡ;vW_]jjkk;w^TqM7呹n$Zdr5Ax^tVhN6m۶'|2FjcH< .‡8"_.zLqo0o^Oz}] A=8x1u8 | g#4pʦp8* D> 2SjBR{_VD&5KՇeSdng4RRi#"Xw+Hʧ}rp.Z-Gl0p/{ˢacqqqdfN;N"/Tm/oKKKqĉ gϞB@Lr]R'|r !˵^}C)ˌiԧNIo[lih͝3y}D*|K}Õ?M~6xXN<ǎ7 qrKSy3<[t98 9Knv-=wttΝ;ShNM@lB \5 Q 4Sm8-#vn;(q( VD$9PeCE"t100>5r\hxfs)rDGN-..H0T!س S[(T,.._X1̆p.-;;&G< d㑥2-M$g̚ dÞ6 I$9틖GGw"V6cKKKjXYYIrT%s \9M9Φ {RhmmݻwǡCZ^O>˽\qѽÞV# //ovڕC#<4@ #L];\СCQc@0b``p_Dh,..2 eggglKk rAHa>ɢ ϟO т0L( +74>c $n^ @9`颱KU=Pg᧜$5X^^Z#J fG!EC@Íukc,Mth"Qz4ȟYQ!阌&H@hCu[ 3s?`@և ÿu4Up{$'N$860 {'umh%hD6$q̣`ݐbݻwo|d<8|p|K_#G\T@HL`Z}}}5J%F,,,$FݻwSpgTShrz?ؔcbb"~w~'Kayy9VWW5js1x Nctt@ڳgO<#g$n-I1ٓI׷ַuΌᄏr 2̽fV)=0SOrȴ)ҵfⱣ)Xa@ɉjJp0cϰ.5o<뚘1)!A Hiq@d=6Y> +<)z=JR7:Iu||YP׫`8z DghuC] zg[ #i C`,kpٳg5˹:;;nKQ x5c||<;idֵR}dXݻɓi,{Ïc$•_R)oıcǒt&˝ٙGT*񶷽->]{)-Zw-z߶x{ߛ%:#Azzz %Yk:|lXLNNƣ>gΜIt:+VtP&⬓@l񺅅P^ۣ< ZaxNbJs8׏&92{ QՕx]mJ'&cr?EøV122SSSnD5ӱ(Mw.&(#mfnEǐ$$F cMϵ>Evܙq(kcdžIv||n^O9 Ep`,iC2E@ޅbt'$63 M7~7ic hyA*¯' ȵ 2wc?c111QСC Ú, gxRp…8u%=88ܵs…LbW ǂ/=Dy)&SM. C>,Ad6.C%ET'(J122\PY&h޸CpʼGޞ뮋׽u bsI`"=?([-!JDH q۶mm۶t͜s&Nv^ I8x`!8w\NrA-oTvp9VȁΧ[" '8- O.έh5>A (IabN 4j _KKKu z+1lBY\s!$i'ۣm||<,_*byy9 ]zκ,a}m߸IXPx+J vI&, 1_XXH#CQ6>j  x6st]?XrsO傌,0dVK SghODD~뜘w…xk_WuXo[Mlvܹ3ݳ;wZBnԭ)󅂄Ľsss166FgΜ @ Fp˖-1??baBׁqwp4??T_M7_W;NjϾxELLLD?O5 .3<_駟N›o9nJ6F/Oq,ڶb;#ݻ9@/gGD{(]!ñ5ȢM9W*z7"sۀ/T*@siXڙIk1yسtL@e$\+H18OIbR)̵o8Wi?~ =|p?~<+8\sMA4O17Y&#Y[HmBD>,YV{ZLԳ7=2 Ʊcbvv6qQ`M7Ik p&k4 !tmd07Vl"o#w_m"?>b~~~n߾=Y駟DtDܹsqȑBPtZAϞcf\9K ϝ;}}};hmmMvOFA)?LR.y9|78r,jҁQDd۷/FxskNR dN! KKKArqq3Wi$6 m㰜ưX()>XLmllDш8Z-fggg;w.Et^;n2-C~`So V)`X1/ד'*Vq 77DqV̇x%7]¬c( 7;z_2 \Po..eHZ` 'bX1y!˧?~<~XZZKv&o=,ב9s/`… 1::iʩR]4stsi)4#X <<(%PJlyl]3΂!& {&ݓO>of b8~xBh!tl4> osK.yL&s`݁/6ÃLR (`gܲeK NJwIfggٜ2 +ρd'enw9/..B,..&A,= _X7Ys 0Z.lh7"@5@s122Z cjj*QDIP+7]?|`2=ls6pB?`̗RgRrfξعsg۷/t(8lz 1`ډt@D=}©Wo.>b %ow5s:0l<[pKo™l`Ȏٯ݇d¼vyy9n}}}3Z7ugy&lْcrr2HrV4ї=Llch% sq{U;] 1C˥ٟdZPlvT8g#DQ!RG .|T ${ooo4Yzl3x>(p.Y4?8'N$b91('ÑLss#n24IGGG4Dv[ٻ^'d_4ɴ "}!=CAiojj*zzzt 1F#CTJR:Н< e>LaՅ Ȉfff  "z+p#=oXnD9yu􋘈/-o dΡ&+++iϮ]qu}yy9=gGJ166TgoIv "@ڻK1.kx"$H|_;MQA &َ&tϱ(>kn\F:Ǯ`!0 SݝDwrңLooooBHl>lwV t7`igలvB<#Md3ݔȖ/>H60#K$`vF$. & b Ǝl-a/Q&yK {31H2n*+.iVpB2~y'x؇<[:\KCq===q7Tĺ\@dii)AFҸ֖333RT bu 8}CCCۛ,%]d?ل DWˆn:F8WA #iLZlK@UhL;qh*JYuwwGRIscDl9 L3|}}}%芌QuO,OӓԿ*JDtBWؿl߾=*J l%f].p:yp͚C|gϤk&W3jr tKBrg@gf\/Ä1 yGGӨw0OdXקnV $ nD2,1ܹؾ}{Aܹsqצ.UsVF"Y4';#S'WN89svysXа/dե ɬd`- ҉N|!Ą?s s=3gIɓ~fr <P&~Clz2{F #ΨT*ERI8Ν;cǎ100iL{z[ v,.UXCgϞؽ{wvܹ½B2DaGs![GL n\yhY{ߪWlbߓKkFlf뚧{R^8uT|򓟌}s|'zjQ7z!w6pDq{5i8\tsDŽc`AK_oEn51eA'>kii)1qFliSGGG #"$k5e͙ qJj?z;?,As'gܐ3Z ~95p & MU*4 4J>e~?˄Zei<o}UCr:ΝӧOwIPcV6NLi Ql@[eՑ.g!hܽ{wl߾soIn3Z G(l8Od嚸z[ g=s xQV }`-TpP@HLz-~N-?3\L}1L.!NvZLJt3Y>MMM'>jZ,--Eooo13339"87gAC O93IsfRmY{3WA Y[em{V}nN3~ꩧbǎ!Pw$gΜDIt:.>ʬ)lwAIƥʉ Nw=m}xylQΜ'aҲu?h/ω܃z&omaii0Ssgt W*x_l͖4\jЧ!>65甫L3 y yVJʃi)u۷h4DVG^KyTMBϧFG>9!sh|!!^Ha:QK>_^GIɭB]![P=C @N׾|r;WYф5zfDUKe7M#BΛz *dRFcIŜMI11 F#Sv] R,l.^ÃEz 8-[bpp0j h 8<<"Z`V@@-K28fȃ&ZCYLXc# Gii)aS,l8vrd}r8 6XѴfA&5ڍ@`І];FE+y6\,A w|X3ex}}=⡇H.c___ J8q"fgg#FFF Dgv |N{a}w`)ʃ8+yj9kؚXtɤ5=W 904$)y3-iE~Vq`!yzļy 1isErŁ\^5qȂI|Bm6egd e]`ZލXq|8ah h_D /҄9A~=&g.>e|EڐS5esmG;b`` 6663g=ݖc̖bii)fgg9uvvChQpWEO8iyԱ9 & 9b{V+!AĐp1vgG8\HLsz+JZ΀JR2| 1uJ|fj RHL3.5:k&1`ųLךnZ Π-Hp4p O ;dOΊSSO=ԧɓ&kjj*ᩩW_}u:o8Lv˝\Ra}̙q,}cG}~wKKKZ!-?X2=G^ jEB9{Q,M;1g{|x˹le})rF)U َ{a*샶$`g+bll,j=$ mJ:SN eJp< L~SwFm8RZ$ Řxx2rBlٲ%i&%6,N܎# 'OI1ޤ$655GM]"'Z-9&Qla^{[98ᩉYƊ&nGGGSh4baaaS{b[[[")98ݼ=wFSjm۶B[U==s6hgmN1k"ZYYI2|@ܟ1+ŊYܹ əAm۶dq.ǎ/裏QȰlTnO'x"cFKKKI͐5XXX(i|(ydQ. řJƊ#uׯ{f1YJa?1Wa>ݣúoy;M!%ߩRS%qxcccihKV%wɾϭ><%8΍-AȞh&Ǐ'ȑ#2K>VE&2촺6Y烁`VEDͺ[:3K L- PdQ1Sx@<z!uy5p̌ͧhxŀ@3z{{#zLOO'c k[[[%b1\T@ ZIng93ɸ_ߜONٳgfii/FþbnH0f80#pa dUsp9p/x-Fa&\Ϟ=SsQ撁gXe=!{^e~.ylFV4Oe޽gϞ;v,oĉ'6!I&qQN.[:u*=&&& 4O(bGgӗ~jAۅArʪko5C@rj2} l8qDBnݚ1!'ce$ Vx uNPS3f&Cř3g F eސh<CZ bAM2m开8sLD^OJ^ٱcG$pq1a}Jo?gGcaa@&&)bF*q+l u`ج8}xX6P #"FE}Q"{{{{Ӄ‘OܤRz=fffҼrFIOn F&o2&*v[YYDxU l7'Fr܋n™IN<z= SB!DrT<28(dn#9!mn3 l'k2P C.!X\\,մ gNg󹽽itlHԩK;FN{{{ 3=Gl;zǏOwp@y?[kJdM{ff&^shdoLq=ZQ=~x,//a K`PC'OLޞLx8+f8h#8uTDD,//'}s$rN:sOpK  /P*:&BOOO# e~9L$iy=hX`58sLBX?<@S>rmm-!Rg3\i7==8֏3jyY bnn.AfvGtD+<0C.j56`E1Ӝgr9e6lh3q̙8uT T*QV w*ez1ܐ1F[l$lMVVC{u6RDy矏zZ-D^رcG<1::={ĉ%@08 7yc%h(pەE<ݪmm5ғû+#&---eETm[yx8ydj$666HY c 1c;oP$8q8sL2 q̙j< `.nq3Bs!KŲ8jF<~O5|3s&k0xf.R3)1G'ͽcs 5<h&gRTȢ\5gDymϵ[3??_;@qd$f֡!g]S  $y.p3߃A,x`&OMM%Ds2.gy J\Za(1oq \/ʒu<w4lj A>]ү?ܻ[,&_{ɯȺYن`4#&6u׾ٺrW@~MC@n4N6f=͞y>6͞OK9k\fiUJfϱٴDsq.2۟LvLm|4n>|_lih7e>σMz>ۈf6LkO }3i/f7.wmŞK=ollDƥ,ؕur]\W^[,ur]\W+A•ur]\W+A•ur]\W+A•ur]\WdR IENDB`babiloo-2.0.11/images/images.qrc0000644000017300007100000000257611443252104016366 0ustar kmoskmos00000000000000 love.png babiloo64.png bug.png go-home.png help-browser.png system-log-out.png internet-web-browser.png preferences-desktop-locale.png suggestion.png preferences-system.png dictionary-new.png system-installer.png drive-harddisk.png clock.png list-add.png edit-find.png drive-harddisk.png process-stop.png preferences-system.png media-record.png list-remove.png system-search.png arrow-down.png arrow-left.png arrow-right.png arrow-up.png clear-right.png configure.png dialog-information.png dialog-warning.png document-print.png document-save-as.png download.png go-next.png go-previous.png list-add.png list-remove.png search-filter.png speaker.png view-refresh.png babiloo-2.0.11/images/document-save-as.png0000644000017300007100000002261011443252104020262 0ustar kmoskmos00000000000000PNG  IHDR>abKGD pHYs B(xtIME "lT IDATx]wNپqT"EA JD h#(puكNygwr|9_/ u|edWXhƷ}uȑu(|sul-KzkoBX$\QQq̙3.**]]](ua%B S%;fl?_5k1<{n>U~kYrp23!(}MX 0dȐaey,G***O>y߇~[};sW ֭[_vm2 ,ˠi,˂(4W$HYAQT$Ijsy\3ȲlAϣ56mZqm-R;"If%5?EQc41u/8򢳠3Yu5mAyY9'яxUU7Ϧe٧EQYDmm ,>&bky&q<2-"PAQ) ʀ(Ϡ @6milG"aÆ$IZFQTLHYƜs3/w8.+j(~ʲ&?`MZey)9/qLMfe ]0LɞC6\<I jDJaz\ G5 Ef&9 ' d>χX \Y,@׮]QWWG @4`nZEX/jT@=ZܣMn+ܮE{ʲ ErOiKQ#oii4M ='68߻K_aS8`h`_aժUSY=Xv$+zT-IOJe$ ,˶Z 﫴V=&e^zn <&QDurMJ ̐!7|CQQ*[ؘϊ֛PXXMu%Rq$9z|aڭVǁ6(R46fǵ?62#EQ IB3#-oB_;8"0(;G,ˈb>}sG쉇-BH..z87eNH,IL&S}O}r[l6u H&I# "Y_|J[K%RHzV 倫< s;f t^{-XŻ)*|o>kw-¸ی WѮ6PS>)ܡ^IiFԓĥ~EM&gp?i?d:F4%aj1 g((7q%W% ql3g.8AjeX-h^:'-ȊuOjԠ0LֲINWTIUz~fr[?ۥL#IۄEQ۴ MObѢEE6-! 1k0%a%E5J-˞HWPUD֪u$AjWI_!qo3`q( Z>oc=Ef,8r'/WmT&;ФV,ZKD˲l;UBtPD5y/~H}<Ϸtqru?r"(B쨳9=kOf ޛl3JEA ײ+Uލ R$d1S0 8$Im\Z=cԷwtU9 Voy5b\ٟgTšclӌIn#;Q!jܗeYL&؆p0IWo'h@:5gmG~h"-?`߶~^3Ղ`m@] o=;C Wi$*ed+)DiOdD:fT׉S`-o;x0 R+^TO/{f Mֿ:@!8NETt;:N#V+ c)gZ2n4Ҙqÿ/X,1Ћ`{fx-k9Wۀ j8D]+@zC '%5|~9V!Adđ(0&i#ςt,>x1MMU# z"`81^0g).%4J=diauHP[4ɠL%:@ PţvFV~HZ`-[5sغ'^d'5hX3nOu\NU1JE"IH cJP]$E1!qR ba ) _F\Ao6kw .D(Ů" ^| xYnCl"d`Gt1Tf8.AL !(A}pͥard15w%vm͘HaΤBA/5~{}C"Zyo#K$WS"2V$hJdP˰TqQ|" 2yE烒k`{gDp9{cj5 Kǯ||S|]StG˜\k4PH|jYm#Adh%+ǘU @s5NvW_! I%2 O B⽈Ev6=U@:JV-$kW˝Kⅺ$+!a3Pg I;A6ǡC6`(qL׽ mOS3[QL[%)/BA.߿Y Qņs% %JNM0jhnƎbA%]dlr,Q\p"o#윁s. srڀgn׈8C)Mџ4:Wga$sZ@&EꈠREQXvmZQ*Cwj̅Ci|1LD3k5oQYA(=ZDy&T{֑@=7TrQJ$CINd<@0d\^җW|OP"Ua)>acw >r5>e^C>l ~6T{bLNp60]<]SWQPO**)PDa<qG .LG4M!dpz?"a~ ZRzƝVDCD YG}8PUUNԧ6Եj4(wINWR Y B?އt(puos & "aOQ ^[Nɵt' 4H֛QqFN =zlU @|jyԇڳP_ڗ*&|g#XIWʩ(E_l?P nذt'`ذa5jTRi6ȁTt$IbNzH gVT]dϣ>jЇT5aْچ@: k6yc,G$ǁaU%hi`H:<҂kfL,ٶdYFVl 4L6m@8Jc#y@P9 *&\ C#D"5Ts2Ɵ3D1P0߿V/whQ4m G$jmavT) g {^Ǵ= 5׮Ee8E-xi}/6㆚qㅍx Tޗz$X.9Ct >7zr\m c7thlgެ jGLhe,_՚R&]İC_ DG4M+Q2I|ՑvΒN08}v(Ns"2oj؋ν^ΐGrӧOI'Q;C *Ve>`^|tvW Kഹ`637?KsΝ7pî=? Ѱ{ N FʚD7I|zGZ?>7q?jNxV f&xolZCij;ڐ5 G;z!y8A؝E[a5CfXq3ҾUG#qCe ̫lT!Lؿq*q5 dp#o9w?hxĄ2~c^. N"Ds˰iؿ$ j @+|Q'N:YEu=Xڄ®avX[#F>O^]c؞P"~GA "a?W-Y;w< NFZP~ pN61x􂝗)bfgEpݓIC3cugwhh,G5lix$0zbޚPƯU #oϻI.h%g< ebOCv\l#jfdfƘ1秭< W1$Q@߂eo?ksrh] d<\Ut:cebrQ~{8]qu~|a=…6|N]@("bì|tp&.ќ<|\B0 qXƥ=d?~t`?ۏ/n_6 ~cժ70=#PcWvf wy1u-U뇯q#8k p(1W˨ ./ %tGsݰs:!͂?|>&Di{guX$<}]5]<#$C( 2ߑ^S'!mA~ ?<12 f'@/W=P>yP0[D')톩Ti\÷7oތ c mmfRx󅦀[/ h9堹#Q0ၠLș(l,\|YbN+{_FgeEɰoGPFra>U_OKߖDރ S{n VtUdrBnQx vU @C0Y 88DV8}礜WHXF!կVwg ̟qz|C\}O+=Wɤܨ@^ y!gqA_B}m8y!}$&&K'̅Kv< lkٯ6/'ϛ={6k,3Qņ3Bh2^re֜!I~v 9ǼȒ +RQm=PG"v+ 9yFw| sĹp 2z&f3oF{F{yÒ|:eQa(D&;XΉ61p8s‹LUJ^'oXi\2uPB׋ Dė{A5WxFILkO7sǎ9axxh$AXڍ}#z_ ~^z|+2X0!d)  ?5X ~hZYr|d6*ソÁz7ݐ8 cϚAu.˲yhC2FD/huH0~J±y߲kn FO>^ju/?l6mw*aʔs:,w4g6<ν0;nsM׉`ʗPXXxԀё| '0ۼ@2CkٲxPb+ͷ |# 7r5 *?֢:mǃW? 4'a՟UF6L{ IDATQ:;m&afN}=نr.MCħۯr!"8y*P~Nb/ Zmj1ep<'SُH:8$!"yqުshpIMUF)4 `ܹSj-.HzȔ02QXK$-$d8L&8΄3g#ɖTDz._SLixFx0nܸc\UT>^z5v;L_5$ ~@߹ss%0:ڐի=VXsdx`Dh 5𸋗sq NƑty5\/sfK,Xq6[D/c(h9 q8Y?ˤ5y{s|"R0s-))kZ7/vY- z1$U]A<`(,{͛RvAby1l @zO3y(Lv0_E%;wܑ |VkZDl[yLS_m mhlk2ƶX%zKntl3T* eWhNj"HO6X!"]PiF8Y l$L?В AZP*q҈vJg[ـ$@# Á3jt7XPIENDB`babiloo-2.0.11/images/internet-web-browser.svg0000644000017300007100000014246511443252104021221 0ustar kmoskmos00000000000000 image/svg+xml Globe Jakub Steiner Tuomas Kuosmanen http://jimmac.musichall.cz globe international web www internet network babiloo-2.0.11/images/process-stop.svg0000644000017300007100000002740711443252104017574 0ustar kmoskmos00000000000000 image/svg+xml Stop 2005-10-16 Andreas Nilsson stop halt error Jakub Steiner babiloo-2.0.11/images/list-add.png0000644000017300007100000000143211443252104016607 0ustar kmoskmos00000000000000PNG  IHDR00WsRGBbKGD pHYs B(xtIME+)TIDAThX@}IBe5(P0Q}e56Ƀ8]@Y{!Я&Pg>|OҔbt I "L#G;]vb׽tubIȒuF -izT 氽XfM^)M!|{Az,Y Iñ\(A A 0&Rq@il{u^s|M8ud Uq,"­BglꉏVًww"3,S\اYӊ^=}S˛'?P8N& v)3Ž9 ]d7ݻNFFFFF/ jÌIENDB`babiloo-2.0.11/locale/babiloo.pot0000644000017300007100000003067211445154500016540 0ustar kmoskmos00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "" #: ../qt/about_ui.py:142 msgid "&About" msgstr "" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "" #: ../qt/main.py:254 msgid "&Save to file" msgstr "" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "" #: ../qt/main.py:264 msgid "Speak &word" msgstr "" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr "" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "" #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "" #: ../qt/main_ui.py:259 msgid "History" msgstr "" #: ../qt/main_ui.py:263 msgid "Search" msgstr "" #: ../qt/main_ui.py:269 msgid "&File" msgstr "" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "" #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/my/LC_MESSAGES/babiloo.mo0000644000017300007100000000073511446175614020572 0ustar kmoskmos00000000000000$,89Project-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-01-17 16:39+0000 Last-Translator: Ivan Garcia Language-Team: Burmese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) babiloo-2.0.11/locale/my/LC_MESSAGES/babiloo.po0000644000017300007100000003107211446175614020573 0ustar kmoskmos00000000000000# Burmese translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-01-17 16:39+0000\n" "Last-Translator: Ivan Garcia \n" "Language-Team: Burmese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "" #: ../qt/about_ui.py:142 msgid "&About" msgstr "" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "" #: ../qt/main.py:254 msgid "&Save to file" msgstr "" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "" #: ../qt/main.py:264 msgid "Speak &word" msgstr "" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr "" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "" #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "" #: ../qt/main_ui.py:259 msgid "History" msgstr "" #: ../qt/main_ui.py:263 msgid "Search" msgstr "" #: ../qt/main_ui.py:269 msgid "&File" msgstr "" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "" #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/zh_CN/LC_MESSAGES/babiloo.mo0000644000017300007100000001411611446175614021144 0ustar kmoskmos00000000000000l|0 1 : B D K Z a t z            ) 4 = B Z i o         $ , E2 x          ! & ; R f m {       # ' 8 G N ] i z   !    @) j$l@H #05 7ADSW! #. AL _ ju     #*1GW^n~      OHOVls z -=DKg n{       7DWj'be^7   &- /9 =Jf:L _ *8%FIh@decCB')3?JgM(#Ub&4^>$62NV-ZW95iP\ kOR]"TEH+D.=7`/Y![ lG A1S <KQj,X0a; seconds#000000%&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&Settings...A&uthorsAbbreviationAbout BabilooAltAppearanceApperanceArticlesAutoCompleteBBabilooBabiloo SettingsBackgroundBehaviorBoldBuilding main dialog...Case sensitiveClearClear the search boxClick to select colorConfigureConfigure pluginControlCtrl+QDefault heightDefault widthDictionariesDictionary nameDon't hideDownDownload DictionariesElementErrorError trying to load the dictionary. File corrupted or not supported.ExampleExplanationExport dictionary as...FontForegroundGlobal settingsGo to &next articleGo to &previous articleHistoryIImportImport one or many dictionariesInfoInstall from file...Installed DictionariesInterface Language:ItalicLoading %s...Manage Dictionaries...Move downMove upPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemScan selectionSearchSelect elementSelect fontSelect font sizeShiftShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow information about pluginShow only if modifier pressedSizeSpeak &wordThe new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranslate This Application...TransparencyTypeUUnderlineUpVisit HomePageWinProject-Id-Version: Babiloo Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-03-24 17:17+0800 Last-Translator: Grissiom Language-Team: Grissiom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Launchpad-Export-Date: 2009-02-08 12:44+0000 X-Generator: Launchpad (build Unknown) 秒#000000%关于(&A)关于 Babiloo(&A)关闭(&C)设置 Babiloo(&C)文件(&F)帮助(&H)授权协议(&L)离开(&Q)保存到文件(&S)取词(&S)&设置...作者(&u)缩写关于 BabilooAlt外观外观条目自动补全BBabilooBabiloo 设置背景行为黑体构建主对话框...区分大小写清除清除搜索框点击以选择设定设定插件ControlCtrl+Q默认高度默认宽度字典字典名称不隐藏下下载字典元素错误载入字典时发生错误。 文件已损坏或者属于不支持的类型。例子解释将字典导出为...字体前景全局设置下一个条目(&n)上一个条目(&p)历史I导入载入一个或多个字典信息从文件安装...已安装的字典界面语言:斜体载入中 %s...管理字典...下移上移请先载入一个字典。插件弹出窗口预览打印条目(&t)单词发音使用如下命令发音报告错误选择区取词搜索选择元素选择字体选择字体大小Shift用法简介:当未找到词时显示显示信息显示字典信息显示插件信息显示,仅当按下大小读出单词 (&w)新语言将在下次启动时显示。找不到单词 %s鼠标悬停隐藏超时标题想从互联网上安装一个新字典,请在字典菜单里选择下载字典。想从文件中安装一个字典,请选择在字典菜单里选择从文件安装...想启用字典,请在字典菜单里选择。条目总数翻译这个软件透明度类型U下划线上访问主页Winbabiloo-2.0.11/locale/zh_CN/LC_MESSAGES/babiloo.po0000644000017300007100000003146411443252104021137 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: Babiloo\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-03-24 17:17+0800\n" "Last-Translator: Grissiom \n" "Language-Team: Grissiom \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" "X-Launchpad-Export-Date: 2009-02-08 12:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "Babiloo" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "清除搜索框" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "清除" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "条目" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "历史" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "搜索" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "文件(&F)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "帮助(&H)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "&设置" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "字典" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "离开(&Q)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "Ctrl+Q" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "关于 Babiloo(&A)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "设置 Babiloo(&C)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "取词(&S)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "从文件安装..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "导入" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "管理字典..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "访问主页" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "报告错误" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "翻译这个软件" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "关于 Babiloo" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "关于(&A)" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "作者(&u)" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "授权协议(&L)" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "关闭(&C)" # not seen in UI. #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "新语言将在下次启动时显示。" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "类型" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "字典名称" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "条目总数" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "将字典导出为..." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "用法简介:" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "想启用字典,请在字典菜单里选择。" # FIXME: bug in English msg #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "" "To install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab." msgstr "想从互联网上安装一个新字典,请在字典菜单里选择下载字典。" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "想从文件中安装一个字典,请选择在字典菜单里选择从文件安装..." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "找不到单词 %s" #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "载入中 %s..." #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "构建主对话框..." #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "上一个条目(&p)" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "下一个条目(&n)" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "保存到文件(&S)" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "打印条目(&t)" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "读出单词 (&w)" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "错误" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "请先载入一个字典。" #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "载入一个或多个字典" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "载入字典时发生错误。\n" "文件已损坏或者属于不支持的类型。" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "Babiloo 设置" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "界面语言:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "区分大小写" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "自动补全" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "使用如下命令发音" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "全局设置" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "上移" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "上" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "下移" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "下" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "显示字典信息" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "显示信息" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "已安装的字典" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "下载字典" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "插件" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "显示插件信息" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "信息" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "设定插件" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "设定" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "行为" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "单词发音" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "鼠标悬停隐藏超时" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "不隐藏" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr " 秒" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "显示,仅当按下" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "Alt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "Control" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "Shift" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "Win" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "选择区取词" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "当未找到词时显示" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "外观" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "透明度" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "%" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "默认宽度" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "默认高度" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "弹出窗口" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "预览" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "元素" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "选择元素" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "标题" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "解释" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "缩写" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "例子" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 #, fuzzy msgid "Transcription" msgstr "音标" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "选择字体" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "前景" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "背景" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "点击以选择" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "#000000" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "选择字体大小" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "黑体" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "B" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "斜体" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "I" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "下划线" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "U" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "大小" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "字体" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "外观" babiloo-2.0.11/locale/vi/LC_MESSAGES/babiloo.mo0000644000017300007100000001761611446175614020571 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw OV r~   -   $6;Ui o { - &!; Wd*v    /:@]y )   $ >Ka hs+<\*l  *'C Vbz"*)*: e p%|O!3 HTY  9FMix}g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-06-08 13:44+0000 Last-Translator: huanctv Language-Team: Vietnamese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) giây%s chưa được nạp: %s&Hủy bỏ&Về chương trình&Thông tin về BabilooĐóng&Thiết lập Babiloo&Tập tin&Trợ giúp&Thoả thuận&ThoátLưu vào tập tin&Quét&Cài đặtMột phiên bản mới của Babiloo đã được phát hành. Phiên bản mới: %s Phiên bản cũ: %s Bạn có muốn tải phiên bản mới bây giờ không?Các tác giảViết tắtVề BabilooCảnh báoSự hiển thịSự hiển thịBàiTư động hoàn chỉnhCài đặt BabilooNềnChế độChữ đậmDuyệt...Đang xây dựng đối thoại chính...Hủy bỏĐể ý chữ hoa và chữ thườngXóaXóa khung tìm kiếmBấm chọn màuChiều cao mặc địnhChiều rông mặc địnhTừ điểnTên từ điểnTừ điển không thể cài đặt: %sThư mục lưu từ điểnKhông ẩnXuốngTải vềTải từ điển vềTải từ điểnĐang tảiĐang tải dữ liệu...Yếu tốLỗiLỗi khi tải từ điểnCó lỗi khi nạp từ %sVí dụGiải thíchXuất từ điển dưới dạng...Kiểu chữMàu sắcTừ liên kết:Từ danh sách:Cài đặt toàn cầuVào mục kế tiếpTrở về mục trướcLịch sửTừ chối âm dấuNhậpThông tinCài đặt từ tập tinTừ điển đã tảiNgôn ngữ chungChữ nghiêngTrường địa chỉ rỗngĐang tải %s...Quản lý từ điểnDi chuyển xuốngDi chuyển lênPhát hiện Phiên bản MớiMở Thư mụcVui lòng tải từ điển về trướcPhần mềm nhúngCửa sổ hội thoạiXem trướcIn bài luậnĐọc từĐọc từ sử dụng mệnh lệnh nàyBáo cáo lỗiQuét lại từ điển...Quét lựa chọnTìm kiếmLựa chọn yếu tốChọn kiểu chữChọn kích thước kiểu chữHướng dẫn sơ lượcHiển thị nếu từ không tìm thấyHiển thi thông tinHiển thị thông tin về từ điểnChỉ hiện nếu nhấn phím bổ trợKích cỡĐọc từBắt đầu tải về (%s byte) ...Ngôn ngữ mới sẽ hiện lên sau khi khởi động lại chương trìnhTừ %s không tìm thấyThời gian chờ để ẩn khi có chuột di quaTiêu đềĐể cài đặt một từ điển mới từ mạng, chọn Quản lý từ điển... và chọn một trong thanh Tải từ điểnĐể cài đặt một từ điển mới từ tập tin, chọn Tải từ tập tin... từ mục lục Từ điểnĐể bắt đầu sử dụng từ điển, chọn từ mục lục Từ điểnTất cả bài luậnPhiên âmDịch Chương Trình NàyDịch ứng dụng này...Trong suốtDạngKhông thể tải tệp %sGạch dướiLênThăm trang nhàbabiloo-2.0.11/locale/vi/LC_MESSAGES/babiloo.po0000644000017300007100000003646011446175614020572 0ustar kmoskmos00000000000000# Vietnamese translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-06-08 13:44+0000\n" "Last-Translator: huanctv \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Về Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Về chương trình" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "Các tác giả" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Thoả thuận" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "Đóng" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Đang xây dựng đối thoại chính..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Trở về mục trước" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Vào mục kế tiếp" #: ../qt/main.py:254 msgid "&Save to file" msgstr "Lưu vào tập tin" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "In bài luận" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Đọc từ" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Phát hiện Phiên bản Mới" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Một phiên bản mới của Babiloo đã được phát hành.\n" "\n" "Phiên bản mới: %s\n" "Phiên bản cũ: %s\n" "\n" "Bạn có muốn tải phiên bản mới bây giờ không?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Lỗi" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Vui lòng tải từ điển về trước" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Có lỗi khi nạp từ %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "Lỗi khi tải từ điển" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s chưa được nạp: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Thông tin" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Hướng dẫn sơ lược" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "Để bắt đầu sử dụng từ điển, chọn từ mục lục Từ điển" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Để cài đặt một từ điển mới từ mạng, chọn Quản lý từ " "điển... và chọn một trong thanh Tải từ điển" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Để cài đặt một từ điển mới từ tập tin, chọn Tải từ tập tin... từ " "mục lục Từ điển" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Từ %s không tìm thấy" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Cài đặt Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Ngôn ngữ chung" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Dịch ứng dụng này..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Để ý chữ hoa và chữ thường" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Tư động hoàn chỉnh" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Từ chối âm dấu" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Đọc từ sử dụng mệnh lệnh này" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Cài đặt toàn cầu" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Di chuyển lên" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Lên" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Di chuyển xuống" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Xuống" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Hiển thị thông tin về từ điển" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Hiển thi thông tin" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Thư mục lưu từ điển" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Duyệt..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Từ điển đã tải" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Từ liên kết:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Tải từ điển" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Từ danh sách:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Tải về" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Tải từ điển về" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Từ điển" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Phần mềm nhúng" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Chế độ" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Đọc từ" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Thời gian chờ để ẩn khi có chuột di qua" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Không ẩn" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " giây" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Chỉ hiện nếu nhấn phím bổ trợ" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Quét lựa chọn" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Hiển thị nếu từ không tìm thấy" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Sự hiển thị" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Trong suốt" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Chiều rông mặc định" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Chiều cao mặc định" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Cửa sổ hội thoại" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Xem trước" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Yếu tố" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Lựa chọn yếu tố" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Tiêu đề" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Giải thích" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Viết tắt" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Ví dụ" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Phiên âm" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Chọn kiểu chữ" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Màu sắc" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Nền" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Bấm chọn màu" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Chọn kích thước kiểu chữ" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Chữ đậm" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Chữ nghiêng" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Gạch dưới" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Kích cỡ" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Kiểu chữ" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Sự hiển thị" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Hủy bỏ" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Đang tải %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Xóa khung tìm kiếm" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Xóa" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Bài" #: ../qt/main_ui.py:259 msgid "History" msgstr "Lịch sử" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Tìm kiếm" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Tập tin" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Trợ giúp" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Cài đặt" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Thoát" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Thông tin về Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Thiết lập Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Quét" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Cài đặt từ tập tin" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Nhập" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Quản lý từ điển" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Thăm trang nhà" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Báo cáo lỗi" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Dịch Chương Trình Này" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Đang tải dữ liệu..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Hủy bỏ" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Đang tải" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Bắt đầu tải về (%s byte) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Không thể tải tệp %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Trường địa chỉ rỗng" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Từ điển không thể cài đặt:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Quét lại từ điển..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Cảnh báo" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Ngôn ngữ mới sẽ hiện lên sau khi khởi động lại chương trình" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Mở Thư mục" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Dạng" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Tên từ điển" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Tất cả bài luận" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Xuất từ điển dưới dạng..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/sv/LC_MESSAGES/babiloo.mo0000644000017300007100000001660111446175614020574 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  KUmu y | h u  28L i w &    "6 >>L    /NW i s   (!7Y bp "  .Lfw! 'C2Qlrr!K 0<@ `mqg'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-09-24 20:08+0000 Last-Translator: Erik Simmesgård Language-Team: Swedish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) sekunder%s blev inte laddad: %s&Avbryt&Om&Om Babiloo&Stäng&Konfigurera Babiloo&Fil&Hjälp&Licensavtal&Avsluta&Spara till fil&Sök&InställningarEn ny version av Babiloo finns tillgänglig. Ny version: %s Nuvarande version: %s Vill du ladda ned den nya versionen nu?&FörfattareFörkortningOm BabilooVarningUtseendeUtseendeArtiklarKomplettera automatisktBabilooinställningarBakgrundBeteendeFetBläddra...Bygger huvuddialog...AvbrytSkiftlägeskänsligaRensaRensa sökfältetetKlicka för att välja färgStandardhöjdStandardviddOrdböckerNamnOrdbok som inte kunde installeras: %sKatalog som lagrar ordböckerna:Göm inteNedLadda nedLadda ned ordböckerLadda ned ordbokHämtarLaddar ned filer...ElementFelmeddelandeFel vid inläsning utav ordbok. Fil korrupt eller inte stödd.Fel vid inläsning av ordet %sExempelFörklaringExportera ordbok som...FontFörgrundFrån länk:Från lista:Globala inställningarGå till &nästa artikelGå till &föregående artikelHistorikIgnorera accenterImporteraInformation&Installera från fil...Installerade ordböckerProgramspråk:KursivLänkadress är tomLaddar %s...Hantera ordböcker...Flytta nedFlytta uppNy version upptäcktÖppna katalogVänligen ladda en ordbok först.PluginerPopupfönsterFörhandsgranskaSkriv u&t artikelUttala ordetUttala ord med det här kommandot:Rapportera problemUppdaterar ordböcker...Sök markeringSökVälj elementVälj fontVälj fontstorlekKort användningsinformation:Visa om ord inte hittadesVisa informationVisa information om ordbokVisa endast om modifierare trycksStorlekSäg &ordPåbörjar nedladdningen (%s bytes) ...Det nya språket kommer användas efter programmet har startats om.Ordet %s hittades inte.Tid innan text försvinnerTitelFör att installera en ny ordbok från Internet, välj Hantera ordböcker... under Ordböcker menyn och välj sedan en från Ladda ned ordböcker fliken.För att installera en ny ordbok från en fil, välj Installera från fil... från Ordböcker menyn.För att börja använda en ordbok, välj en från Ordböcker menyn.Antal artiklarTranskriberingÖversätt Babiloo...Översätt detta program...TransparensTypOfömögen att ladda ned fil %sUnderstrukenUppBesök hemsidanbabiloo-2.0.11/locale/sv/LC_MESSAGES/babiloo.po0000644000017300007100000003545111446175614020603 0ustar kmoskmos00000000000000# Swedish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-09-24 20:08+0000\n" "Last-Translator: Erik Simmesgård \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Om Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Om" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "&Författare" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Licensavtal" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Stäng" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Bygger huvuddialog..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Gå till &föregående artikel" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Gå till &nästa artikel" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Spara till fil" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Skriv u&t artikel" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Säg &ord" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Ny version upptäckt" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "En ny version av Babiloo finns tillgänglig.\n" " Ny version: %s\n" " Nuvarande version: %s\n" "\n" "Vill du ladda ned den nya versionen nu?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Felmeddelande" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Vänligen ladda en ordbok först." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Fel vid inläsning av ordet %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Fel vid inläsning utav ordbok.\n" "Fil korrupt eller inte stödd." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s blev inte laddad: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Information" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Kort användningsinformation:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "För att börja använda en ordbok, välj en från Ordböcker menyn." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "För att installera en ny ordbok från Internet, välj Hantera " "ordböcker... under Ordböcker menyn och välj sedan en från " "Ladda ned ordböcker fliken." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "För att installera en ny ordbok från en fil, välj Installera från " "fil... från Ordböcker menyn." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Ordet %s hittades inte." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babilooinställningar" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Programspråk:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Översätt detta program..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Skiftlägeskänsliga" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Komplettera automatiskt" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorera accenter" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Uttala ord med det här kommandot:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Globala inställningar" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Flytta upp" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Upp" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Flytta ned" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Ned" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Visa information om ordbok" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Visa information" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Katalog som lagrar ordböckerna:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Bläddra..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Installerade ordböcker" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Från länk:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Ladda ned ordbok" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Från lista:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Ladda ned" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Ladda ned ordböcker" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Ordböcker" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Pluginer" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Beteende" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Uttala ordet" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Tid innan text försvinner" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Göm inte" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " sekunder" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Visa endast om modifierare trycks" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Sök markering" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Visa om ord inte hittades" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Utseende" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparens" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Standardvidd" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Standardhöjd" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Popupfönster" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Förhandsgranska" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Element" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Välj element" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Titel" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Förklaring" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Förkortning" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Exempel" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transkribering" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Välj font" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Förgrund" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Bakgrund" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Klicka för att välja färg" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Välj fontstorlek" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Fet" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Kursiv" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Understruken" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Storlek" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Font" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Utseende" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Avbryt" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Laddar %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Rensa sökfältetet" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Rensa" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artiklar" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historik" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Sök" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Fil" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Hjälp" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Inställningar" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Avsluta" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Om Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Konfigurera Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Sök" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "&Installera från fil..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importera" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Hantera ordböcker..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Besök hemsidan" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Rapportera problem" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Översätt Babiloo..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Laddar ned filer..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Avbryt" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Hämtar" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Påbörjar nedladdningen (%s bytes) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Ofömögen att ladda ned fil %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Länkadress är tom" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Ordbok som inte kunde installeras:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Uppdaterar ordböcker..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Varning" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Det nya språket kommer användas efter programmet har startats om." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Öppna katalog" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Typ" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Namn" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Antal artiklar" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Exportera ordbok som..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/qu/LC_MESSAGES/babiloo.mo0000644000017300007100000001764011446175614020575 0ustar kmoskmos00000000000000sL          # 6 < J P Z c p ~          , B Q _ l *| #       / 7 E=        1 9 H O T i         , 4AIX#k  -!7Yw |$@ $4:lH1z        %, 5BK^ p ~     ' =HQi z +F ft x J'8 ` l y   '?Scy  !,5bt )3<Naz%.".jQ#.9![F- C%Ntf&EJe]/TSCG>HBO7FIlgn@Y XL(+Qrj4;=miK)-q" 61b[3 'h5s, Ro`!U%9cM$< 8. :aWNZ^Vk*2DP_d0p\A?# seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-06-07 13:36+0000 Last-Translator: amosbatto Language-Team: Quechua MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) Sigundukuna%s no fue cargado: %s&Saqichiy&Kaymanta&Babiloomanta...&Wisqay&Babiloota kamachiy...&Khipu&Yanapay&Kamachikuna&Lloqsiy&Khiputa jallch'ay&Waqmanta rikusqa&Aqllasqakuna&RuraqekunaChikanyayninBabiloomantaPaqtataq!&Qhawarichikusqanmanta&Qhawarichikusqanmanta&Willaykuna&Pachanmanta junt'achiyBabilooqpa aqllasqakunanQhipa llinphiImaynata kamachikunqaYanachasqa&Mask'ayWayranata ruwakushan...&Mana munaspañaSullka &kuraq siq'ikunata qhawayPichayMask'asqata pichayLlinphita aqllanapaq q'apiyPachanmanta sayasqaPachanmanta kinrasqa&SimitaqikunaSimitaqiqpa sutinMana churakuyta atinchu kay simitaqita: %sMaypi simitaqikuna jallch'asqa:Ama pakaychuUraUrayachiySimitaqikunata &urayachiy...Simitaqita urayachiyUrayamushanKhipukunata urayamushan...ImaymanaPantasqaSimitaqi apachimuqtin pantarun. Khipu waqllisqa utaq manan ñawichakunchu.Error mientras cargando la palabra "%s"QhawarichiyMast'ariyninSimitaqita apachiy kay jinata...Ima siq'iÑawpaq llinphiWaskhamanta:Qutumanta:&Lliwmanta aqllasqakuna&Jamuq willayman riyÑ&awpaq willayman riy&Ñawpaq mask'asqakunaK&allpachaqkunata saqiyJawamanta apachimuyImamanta willay&Khipumanta churay...Simitaqikuna &churasqaProgramapaq simi:T'iksusqaDirección de enlace es vaciaApamushan %s…Si&mitaqikunata kamachiy...UrachiyWichachiyNueva versión detectadaDirectoriota kichayAma jina kaychu juk simitaqitaraq apachimuy.Lla&nk'apakuqkuna&Jatariq wayranaÑawpaq qhawariy&Willayta ñit'iySimita rimariyKay qilqawan simikunata rimariy:&Pantayta willayWatiqmanta simitaqikunata ñawichashan...Watiqmanta aqllaqtin qawarichiy&Mask'ayImaymanata aqllayIma siq'ita aqllayAqllay siq'iq sayaynintaPisi pachallata qhawanapaqSimi mana tarichichusqata qhawarichiyIma kayninta qhawarichiySimitaqemanta willayKay q'apina aqllasqallas kashaqtin qhawarichiySayaySimita &rimariy(%s bytes) uramuyta qallarishan...Musuq simiqa qhawarichikunqa watiqmanta qallariqtin. La nueva lengua será mostrada después de reiniciar.%s simiqa mana tarikusqachu.Jaykata suyanqa juk'uchaq t'uqsiynin pakanapaqPata sutinchayninInternetmanta simitaqita churanapaq, aqllay Simitaqikunata kamachiy... nisqata, jinallataq Simitaqikunata urayachiy nisqatawan. Para instalar un diccionario nuevo desde el internet, seleccione Simitaqikunata kamachiy... y escoja un diccionario de la pestaña Simitaqikunata urayachiy.Khipumanta simitaqita churanapaq aqllay Simitaqikuna, jinallataq Qhipumanta churay... nisqata. Para instalar un diccionario nuevo desde un archivo, seleccione Qhipumanta churay... en el menú Simitaqikuna.Simitaqipi qallarinapaq, Simitaqikunamanta jukta aqllay. Para empezar con un diccionario, seleccione uno del menú de Simitaqikuna.Llipin willaykunaQilqa kikinchasqaKay programata &t'ikrayKay programata &t'ikrayQhispichiskusqanmantaIma kayninMana "%s" khiputa urayachiyta atinchuUranpi siq'isqaPata&Wasiy raphita watukuybabiloo-2.0.11/locale/qu/LC_MESSAGES/babiloo.po0000644000017300007100000003675311446175614020606 0ustar kmoskmos00000000000000# Quechua translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-06-07 13:36+0000\n" "Last-Translator: amosbatto \n" "Language-Team: Quechua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Babiloomanta" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Kaymanta" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "&Ruraqekuna" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Kamachikuna" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Wisqay" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Wayranata ruwakushan..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Ñ&awpaq willayman riy" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "&Jamuq willayman riy" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Khiputa jallch'ay" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "&Willayta ñit'iy" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Simita &rimariy" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Nueva versión detectada" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Pantasqa" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Ama jina kaychu juk simitaqitaraq apachimuy." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Error mientras cargando la palabra \"%s\"" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Simitaqi apachimuqtin pantarun.\n" "Khipu waqllisqa utaq manan ñawichakunchu." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s no fue cargado: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Imamanta willay" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Pisi pachallata qhawanapaq" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Simitaqipi qallarinapaq, Simitaqikunamanta jukta aqllay. \n" "Para empezar con un diccionario, seleccione uno del menú de " "Simitaqikuna." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Internetmanta simitaqita churanapaq, aqllay Simitaqikunata " "kamachiy... nisqata, jinallataq Simitaqikunata urayachiy " "nisqatawan. \n" "Para instalar un diccionario nuevo desde el internet, seleccione " "Simitaqikunata kamachiy... y escoja un diccionario de la pestaña " "Simitaqikunata urayachiy." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Khipumanta simitaqita churanapaq aqllay Simitaqikuna, jinallataq " "Qhipumanta churay... nisqata. \n" "Para instalar un diccionario nuevo desde un archivo, seleccione " "Qhipumanta churay... en el menú Simitaqikuna." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "%s simiqa mana tarikusqachu." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babilooqpa aqllasqakunan" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Programapaq simi:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Kay programata &t'ikray" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Sullka &kuraq siq'ikunata qhaway" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "&Pachanmanta junt'achiy" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "K&allpachaqkunata saqiy" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Kay qilqawan simikunata rimariy:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "&Lliwmanta aqllasqakuna" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Wichachiy" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Pata" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Urachiy" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Ura" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Simitaqemanta willay" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Ima kayninta qhawarichiy" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Maypi simitaqikuna jallch'asqa:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "&Mask'ay" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Simitaqikuna &churasqa" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Waskhamanta:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Simitaqita urayachiy" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Qutumanta:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Urayachiy" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Simitaqikunata &urayachiy..." #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "&Simitaqikuna" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Lla&nk'apakuqkuna" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Imaynata kamachikunqa" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Simita rimariy" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Jaykata suyanqa juk'uchaq t'uqsiynin pakanapaq" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Ama pakaychu" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " Sigundukuna" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Kay q'apina aqllasqallas kashaqtin qhawarichiy" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Watiqmanta aqllaqtin qawarichiy" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Simi mana tarichichusqata qhawarichiy" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "&Qhawarichikusqanmanta" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Qhispichiskusqanmanta" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Pachanmanta kinrasqa" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Pachanmanta sayasqa" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "&Jatariq wayrana" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Ñawpaq qhawariy" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Imaymana" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Imaymanata aqllay" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Pata sutinchaynin" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Mast'ariynin" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Chikanyaynin" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Qhawarichiy" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Qilqa kikinchasqa" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Ima siq'ita aqllay" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Ñawpaq llinphi" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Qhipa llinphi" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Llinphita aqllanapaq q'apiy" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Aqllay siq'iq sayayninta" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Yanachasqa" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "T'iksusqa" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Uranpi siq'isqa" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Sayay" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Ima siq'i" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "&Qhawarichikusqanmanta" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "&Mana munaspaña" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Apamushan %s…" #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Mask'asqata pichay" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Pichay" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "&Willaykuna" #: ../qt/main_ui.py:259 msgid "History" msgstr "&Ñawpaq mask'asqakuna" #: ../qt/main_ui.py:263 msgid "Search" msgstr "&Mask'ay" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Khipu" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Yanapay" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Aqllasqakuna" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Lloqsiy" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Babiloomanta..." #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Babiloota kamachiy..." #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Waqmanta rikusqa" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "&Khipumanta churay..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Jawamanta apachimuy" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Si&mitaqikunata kamachiy..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "&Wasiy raphita watukuy" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "&Pantayta willay" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Kay programata &t'ikray" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Khipukunata urayamushan..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Saqichiy" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Urayamushan" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "(%s bytes) uramuyta qallarishan..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Mana \"%s\" khiputa urayachiyta atinchu" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Dirección de enlace es vacia" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Mana churakuyta atinchu kay simitaqita:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Watiqmanta simitaqikunata ñawichashan..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Paqtataq!" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" "Musuq simiqa qhawarichikunqa watiqmanta qallariqtin.\n" "La nueva lengua será mostrada después de reiniciar." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Directoriota kichay" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Ima kaynin" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Simitaqiqpa sutin" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Llipin willaykuna" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Simitaqita apachiy kay jinata..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/de/LC_MESSAGES/babiloo.mo0000644000017300007100000000710411446175614020532 0ustar kmoskmos00000000000000D<a\   "/ 3= ?JSX^s       $/?AF MW_ gt|#  !>\z  $               " ' 0 D \ j            - / 4 ; F P X f o ,       " ) &@ !g   ( .  ", .<@@2'5)# C!3,<;A=46$*8B&: 0>"%? /7  .-(1D9+#000000%&About&File&Help&Quit&Save to file&Scan&SettingsAbbreviationAltApperanceBBackgroundBehaviorBoldClearClear the search boxClick to select colorConfigureConfigure pluginControlCtrl+QDefault heightDefault widthDictionariesDictionary nameDon't hideDownElementErrorExampleExplanationFontForegroundGlobal settingsIInfoItalicMove downMove upPluginsPopup windowPreviewPronounce the wordPronounce words using this command:Scan selectionSearchSelect elementSelect fontSelect font sizeShiftShow if word not foundShow infoShow information about dictionaryShow information about pluginShow only if modifier pressedSizeSpeak &wordThe word %s is not found.Timeout before hide after mouse overTitleTranscriptionUUnderlineUpWinProject-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-01-09 18:00+0000 Last-Translator: Ivan Garcia Language-Team: LANGUAGE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-02-08 12:44+0000 X-Generator: Launchpad (build Unknown) #000000%Über Q&StarDict&Datei&Hilfe&BeendenIn &Datei speichern&Scannen&EinstellungenAbkürzungAltErscheinungsbildBHintergrundVerhaltenFettLöschenDas Suchfeld leerenKlicken zur FarbauswahlKonfigurierenPlugin konfigurierenStrgStrg+QStandardhöheStandardbreiteWörterbücherWörterbuchnameNicht versteckenAbElementFehlerBeispielErläuterungSchriftartVordergrundGlobale EinstellungenIInfoKursivNach untenNach obenPluginsPopup-FensterVorschauSpreche das WortFolgendes Kommando zur Aussprache verwenden:Auswahl scannenSucheElement wählenSchriftart wählenSchriftgröße wählenUmschaltAnzeigen falls Wort nicht gefundenInformationen anzeigenInformationen zum Wörterbuch anzeigenInformationen zum Plugin anzeigenNur zeigen falls Taste gedrücktGröße&Wort aussprechenDas Wort %s wurde nicht gefunden.Zeitdauer bis zum Verschwinden nach Mouse OverTitelAbschriftUUnterstrichenAufWinbabiloo-2.0.11/locale/de/LC_MESSAGES/babiloo.po0000644000017300007100000003611311443252104020522 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-01-09 18:00+0000\n" "Last-Translator: Ivan Garcia \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-02-08 12:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "Das Suchfeld leeren" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "Löschen" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "Suche" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "&Datei" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "&Hilfe" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "&Einstellungen" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "Wörterbücher" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "&Beenden" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "Strg+Q" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "&Scannen" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "Über Q&StarDict" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "Wörterbuchname" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "Das Wort %s wurde nicht gefunden." #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "In &Datei speichern" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "&Wort aussprechen" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "Fehler" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "Folgendes Kommando zur Aussprache verwenden:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "Globale Einstellungen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "Nach oben" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "Auf" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "Nach unten" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "Ab" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "Informationen zum Wörterbuch anzeigen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "Informationen anzeigen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "Plugins" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "Informationen zum Plugin anzeigen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "Info" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "Plugin konfigurieren" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "Konfigurieren" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "Verhalten" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "Spreche das Wort" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "Zeitdauer bis zum Verschwinden nach Mouse Over" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "Nicht verstecken" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "Nur zeigen falls Taste gedrückt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "Alt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "Strg" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "Umschalt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "Win" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "Auswahl scannen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "Anzeigen falls Wort nicht gefunden" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "Erscheinungsbild" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "%" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "Standardbreite" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "Standardhöhe" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "Popup-Fenster" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "Vorschau" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "Element" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "Element wählen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "Titel" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "Erläuterung" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "Abkürzung" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "Beispiel" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 msgid "Transcription" msgstr "Abschrift" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "Schriftart wählen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "Vordergrund" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "Hintergrund" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "Klicken zur Farbauswahl" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "#000000" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "Schriftgröße wählen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "Fett" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "B" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "Kursiv" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "I" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "Unterstrichen" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "U" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "Größe" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "Schriftart" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "" #~ msgid "Fuzzy query" #~ msgstr "Ungenaue Suche" #, python-format #~ msgid "" #~ "Enter cmd for the speaching program.
If cmd contains \"%s\" it will be " #~ "replaced to word, else word will be writen to stdin of speech process." #~ msgstr "" #~ "Geben Sie das Kommando für das Ausspracheprogramm ein.
Falls das Kommando " #~ "\"%s\" enthält, wird dies durch das Wort ersetzt, andernfalls wird das Wort " #~ "auf die stdin des Sprachprozesses geschrieben." #~ msgid " sec" #~ msgstr " Sek." #~ msgid "Opacity" #~ msgstr "Opazität" #~ msgid "pt" #~ msgstr "pt" #~ msgid "Save translation" #~ msgstr "Übersetzung speichern" #~ msgid "HTML files (*.html, *.htm)" #~ msgstr "HTML-Dateien (*.html, *.htm)" #~ msgid "Text files (*.txt)" #~ msgstr "Textdateien (*.txt)" #~ msgid "Cannot save translation as %s" #~ msgstr "Kann Übersetzung nicht als %s speichern" #~ msgid "Go to &previous translation" #~ msgstr "Gehe zur &nächsten Übersetzung" #~ msgid "Go to &next translation" #~ msgstr "Gehe zur &vorherigen Übersetzung" #~ msgid "Prin&t translation" #~ msgstr "Übersetzung &drucken" #~ msgid "About QStarDict" #~ msgstr "Über QStarDict" #~ msgid "QStarDict %s - Qt version of StarDict
" #~ msgstr "QStarDict %s - Qt-Version von StarDict
" #~ msgid "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgstr "" #~ "Copyright (C) 2007Alexander Rodin http://qstardict.ylsoftware.com" #~ msgid "QStarDict" #~ msgstr "QStarDict" #~ msgid "%s - QStarDict" #~ msgstr "%s - QStarDict" #~ msgid "Words list" #~ msgstr "Wörterliste" #~ msgid "About &Qt" #~ msgstr "Über &Qt" #~ msgid "&Configure QStarDict" #~ msgstr "QStarDict &konfigurieren" #~ msgid "Enabled" #~ msgstr "Aktiviert" #~ msgid "Name" #~ msgstr "Name" #~ msgid "Plugin" #~ msgstr "Plugin" #~ msgid "Information about dictionary \"%s\"" #~ msgstr "Informationen zum Wörterbuch \"%s\"" #~ msgid "Name: %s
" #~ msgstr "Name: %s
" #~ msgid "Plugin: %s
" #~ msgstr "Plugin: %s
" #~ msgid "unknown" #~ msgstr "unbekannt" #~ msgid "Description: %s" #~ msgstr "Beschreibung: %s" #~ msgid "Information about %s plugin" #~ msgstr "Informationen zum Plugin \"%s\"" #~ msgid "Version: %s
" #~ msgstr "Version: %s
" #~ msgid "Authors: %s
" #~ msgstr "Autoren: %s
" #~ msgid "
" #~ msgstr "
" #~ msgid "Can search similar words: %s
" #~ msgstr "Kann ähnliche Wörter suchen: %s
" #~ msgid "yes" #~ msgstr "ja" #~ msgid "no" #~ msgstr "nein" #~ msgid "QStarDict Settings" #~ msgstr "QStarDicts Einstellungen" #~ msgid "Instant search" #~ msgstr "Sofortsuche" #~ msgid "Author: %s
" #~ msgstr "Autor: %s
" #~ msgid "Words count: %s
" #~ msgstr "Enthaltene Wörter: %s
" #~ msgid "All translation" #~ msgstr "Alle Übersetzungen" babiloo-2.0.11/locale/ar/LC_MESSAGES/babiloo.mo0000644000017300007100000002072611446175614020551 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  cm    .6J( < G Tap ,"4;X#u46 JX al% e(Z !* *Kv! ARm1-  <I^@r..@3Y1+< BM'^R+6<Kc}   ! !".!Q! b!/o! !!"!g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-10-19 09:09+0000 Last-Translator: عاصم شلي (Assem Chelli) Language-Team: Arabic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) ثوان%s لم يتم تحميله: %sإ&جهاض&حول&حول بابيلوأ&غلقاع&داد بابيلو&ملف&مساعدةا&تفاقية الترخيصإ&نهاء&حفظ في ملف&فحصالإ&عداداتتم اصدار نسخة جديدة من بابيلو. الاصدار الجديد : %s الاثدار القديم : %s هل تريد تنزيل الاصدار الجديد الآن؟ال&مؤلفينالاختصارحول بابيلوتنبيهالمظهرالمظهرالكلماتاكمال تلقائيإعدادات بابيلوالخلفيّةالسلوكعريضاستعرض...بناء النافذة الرئيسية ...ألغِمراعاة حالة الأحرفمسحامسح مربع البحثانقر لتحديد لونالارتفاع الافتراضيالعرض الافتراضيالقواميساسم القاموسالقاموس الذي تعذّر تثبيته: %sالمجلّد يقوم بتخزين القواميس:لا تخفيأسفلتنزيلتنزيل القواميستنزيل القاموسجاري التنزيلجاري تنزيل الملفات...العنصرخطأخطأ اثناء محاولة تحميل القاموس. الملف تالف أو غير معتمد.خطأ عند تحميل الكلمة %sمثالالشرحتصدير القاموس كـ...الخطالواجهة الأماميةمن الرابط:من قائمة:إعدادات شاملةاذهب الى المقال ال&لاحقاذهب الى المقال ال&سابقالمحفوظاتتجاهل اللهجاتاستيرادالمعلوماتتثبيت من ملف...القواميس المثبّتةلغة الواجهةمائلعنوان الرابط فارغتحميل %s...أدر القواميس...حرّك لأسفلحرّك لأعلىتمّ اكتشاف وجود نسخة جديدةافتح مجلداًالرجاء تحميل قاموس أوّلاالملحقاتالنافذة المنبثقةمعاينة&طباعة مقالنطق الكلمةقم بنطق الكلمات باستعمال هذا الأمر:أبلغ عن مشكلةجاري اعادة فحص القواميس...فحص التحديدبحثإختيار عنصرإختيار خطحدّد حجم الخطمعلومات الاستعمال الاساسية:اظهر في حالة عدم ايجاد كلمةعرض المعلوماتعرض المعلومات حول قاموساظهر فقط اذا تم الضغط على المغيّرالحجمنطق &كلمةبدء التنزيل (%s بايت) ...اللغة الجديدة ستعرض بعد اعادة تشغيل البرنامجالكلمة %s غير موجودة.مهلة الاخفاء بعد مرور بالفأرةالعنوانلتثبيت قاموس جديد من الانترنت، اختر أدر القواميس... و اختر واحدا من لسان تنزيل القواميس.لتثبيت قاموس جديد من ملف ، اختر ثبّت من ملفّ ... من قائمة القواميس.للبدء باستعمال قاموس،اختر واحدا من قائمة القواميسمجموع المقالاتالكتابةترجم هذا التطبيق...ترجم هذا البرنامج..الشفافيةالنّوعغير قادر على تنزيل الملف %sتسطيرأعلىزر الصفحة الرئيسيةbabiloo-2.0.11/locale/ar/LC_MESSAGES/babiloo.po0000644000017300007100000003757311446175613020563 0ustar kmoskmos00000000000000# Arabic translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-10-19 09:09+0000\n" "Last-Translator: عاصم شلي (Assem Chelli) \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "حول بابيلو" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&حول" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "ال&مؤلفين" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "ا&تفاقية الترخيص" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "أ&غلق" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "بناء النافذة الرئيسية ..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "اذهب الى المقال ال&سابق" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "اذهب الى المقال ال&لاحق" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&حفظ في ملف" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "&طباعة مقال" #: ../qt/main.py:264 msgid "Speak &word" msgstr "نطق &كلمة" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "تمّ اكتشاف وجود نسخة جديدة" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "تم اصدار نسخة جديدة من بابيلو.\n" "\n" "الاصدار الجديد : %s\n" "الاثدار القديم : %s\n" "\n" "هل تريد تنزيل الاصدار الجديد الآن؟" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "خطأ" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "الرجاء تحميل قاموس أوّلا" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "خطأ عند تحميل الكلمة %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "خطأ اثناء محاولة تحميل القاموس.\n" "الملف تالف أو غير معتمد." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s لم يتم تحميله: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "المعلومات" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "معلومات الاستعمال الاساسية:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "للبدء باستعمال قاموس،اختر واحدا من قائمة القواميس" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "لتثبيت قاموس جديد من الانترنت، اختر أدر القواميس... و اختر واحدا من " "لسان تنزيل القواميس." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "لتثبيت قاموس جديد من ملف ، اختر ثبّت من ملفّ ... من قائمة " "القواميس." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "الكلمة %s غير موجودة." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "إعدادات بابيلو" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "لغة الواجهة" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "ترجم هذا البرنامج.." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "مراعاة حالة الأحرف" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "اكمال تلقائي" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "تجاهل اللهجات" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "قم بنطق الكلمات باستعمال هذا الأمر:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "إعدادات شاملة" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "حرّك لأعلى" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "أعلى" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "حرّك لأسفل" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "أسفل" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "عرض المعلومات حول قاموس" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "عرض المعلومات" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "المجلّد يقوم بتخزين القواميس:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "استعرض..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "القواميس المثبّتة" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "من الرابط:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "تنزيل القاموس" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "من قائمة:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "تنزيل" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "تنزيل القواميس" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "القواميس" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "الملحقات" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "السلوك" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "نطق الكلمة" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "مهلة الاخفاء بعد مرور بالفأرة" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "لا تخفي" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " ثوان" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "اظهر فقط اذا تم الضغط على المغيّر" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "فحص التحديد" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "اظهر في حالة عدم ايجاد كلمة" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "المظهر" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "الشفافية" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "العرض الافتراضي" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "الارتفاع الافتراضي" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "النافذة المنبثقة" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "معاينة" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "العنصر" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "إختيار عنصر" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "العنوان" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "الشرح" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "الاختصار" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "مثال" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "الكتابة" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "إختيار خط" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "الواجهة الأمامية" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "الخلفيّة" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "انقر لتحديد لون" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "حدّد حجم الخط" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "عريض" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "مائل" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "تسطير" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "الحجم" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "الخط" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "المظهر" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "ألغِ" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "تحميل %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "امسح مربع البحث" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "مسح" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "الكلمات" #: ../qt/main_ui.py:259 msgid "History" msgstr "المحفوظات" #: ../qt/main_ui.py:263 msgid "Search" msgstr "بحث" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&ملف" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&مساعدة" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "الإ&عدادات" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "إ&نهاء" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&حول بابيلو" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "اع&داد بابيلو" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&فحص" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "تثبيت من ملف..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "استيراد" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "أدر القواميس..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "زر الصفحة الرئيسية" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "أبلغ عن مشكلة" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "ترجم هذا التطبيق..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "جاري تنزيل الملفات..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "إ&جهاض" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "جاري التنزيل" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "بدء التنزيل (%s بايت) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "غير قادر على تنزيل الملف %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "عنوان الرابط فارغ" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "القاموس الذي تعذّر تثبيته:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "جاري اعادة فحص القواميس..." #: ../qt/settings.py:82 msgid "Alert" msgstr "تنبيه" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "اللغة الجديدة ستعرض بعد اعادة تشغيل البرنامج" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "افتح مجلداً" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "النّوع" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "اسم القاموس" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "مجموع المقالات" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "تصدير القاموس كـ..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/it/LC_MESSAGES/babiloo.mo0000644000017300007100000000713111446175614020556 0ustar kmoskmos00000000000000D<a\   "/ 3= ?JSX^s       $/?AF MW_ gt|#  !>\z  $               3 S ] r z           ) + 8 @ O \ g y  *       %$ J "^ #   ) +/ 6C ERU@2'5)# C!3,<;A=46$*8B&: 0>"%? /7  .-(1D9+#000000%&About&File&Help&Quit&Save to file&Scan&SettingsAbbreviationAltApperanceBBackgroundBehaviorBoldClearClear the search boxClick to select colorConfigureConfigure pluginControlCtrl+QDefault heightDefault widthDictionariesDictionary nameDon't hideDownElementErrorExampleExplanationFontForegroundGlobal settingsIInfoItalicMove downMove upPluginsPopup windowPreviewPronounce the wordPronounce words using this command:Scan selectionSearchSelect elementSelect fontSelect font sizeShiftShow if word not foundShow infoShow information about dictionaryShow information about pluginShow only if modifier pressedSizeSpeak &wordThe word %s is not found.Timeout before hide after mouse overTitleTranscriptionUUnderlineUpWinProject-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-01-09 18:00+0000 Last-Translator: Ivan Garcia Language-Team: LANGUAGE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-02-08 12:44+0000 X-Generator: Launchpad (build Unknown) #000000%I&nformazioni su&File&Aiuto&Esci&Salva come&Cerca&ImpostazioniAbbreviazioneAltAspettoBSfondoComportamentoGrassettoCancellaCancella la ricercaClick per selezionare il coloreConfiguraConfigura estensioneControlCtrl+QAltezza di defaultAmpiezza di defaultDizionariNome del dizionarioNon nascondereGiùElementoErroreEsempioSpiegazioneCaratterePrimo pianoImpostazioni globaliIInformazioniCorsivoSposta in giùSposta in suEstensioniFinestra di popupAnteprimaPronuncia la parolaPronuncia le parole usando questo comando:Cerca selezioneCercaSeleziona elementiSeleziona carattereSeleziona dimensione carattereShiftMostra se la parola non viene trovataMostra informazioniMostra informazioni sul dizionarioMostra informazioni sull'estensioneMostra solo se si premeDimensionePronuncia f&raseLa parola %s non è stata trovata.Tempo di scomparsa dopo aver mosso il mouseTitoloTrascrizioneUSottolineatoSuWinbabiloo-2.0.11/locale/it/LC_MESSAGES/babiloo.po0000644000017300007100000003612511443252104020551 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-01-09 18:00+0000\n" "Last-Translator: Ivan Garcia \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-02-08 12:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "Cancella la ricerca" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "Cancella" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "Cerca" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "&File" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "&Aiuto" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "&Impostazioni" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "Dizionari" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "&Esci" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "Ctrl+Q" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "&Cerca" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "I&nformazioni su" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "Nome del dizionario" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "La parola %s non è stata trovata." #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "&Salva come" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "Pronuncia f&rase" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "Errore" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "Pronuncia le parole usando questo comando:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "Impostazioni globali" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "Sposta in su" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "Su" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "Sposta in giù" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "Giù" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "Mostra informazioni sul dizionario" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "Mostra informazioni" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "Estensioni" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "Mostra informazioni sull'estensione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "Informazioni" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "Configura estensione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "Configura" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "Comportamento" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "Pronuncia la parola" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "Tempo di scomparsa dopo aver mosso il mouse" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "Non nascondere" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "Mostra solo se si preme" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "Alt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "Control" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "Shift" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "Win" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "Cerca selezione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "Mostra se la parola non viene trovata" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "Aspetto" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "%" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "Ampiezza di default" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "Altezza di default" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "Finestra di popup" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "Anteprima" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "Elemento" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "Seleziona elementi" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "Titolo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "Spiegazione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "Abbreviazione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "Esempio" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 msgid "Transcription" msgstr "Trascrizione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "Seleziona carattere" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "Primo piano" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "Sfondo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "Click per selezionare il colore" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "#000000" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "Seleziona dimensione carattere" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "Grassetto" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "B" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "Corsivo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "I" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "Sottolineato" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "U" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "Dimensione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "Carattere" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "" #~ msgid "Fuzzy query" #~ msgstr "Fuzzy query" #, python-format #~ msgid "" #~ "Enter cmd for the speaching program.
If cmd contains \"%s\" it will be " #~ "replaced to word, else word will be writen to stdin of speech process." #~ msgstr "" #~ "Inserisci il comando per il programma di pronuncia.
Se il comando " #~ "contiene \"%s\" la parola verrà sostituita, altrimenti la parola sarà " #~ "scritta nello stdin del processo di pronuncia." #~ msgid " sec" #~ msgstr " sec" #~ msgid "Opacity" #~ msgstr "Opacità" #~ msgid "pt" #~ msgstr "pt" #~ msgid "Save translation" #~ msgstr "Salva la traduzione" #~ msgid "HTML files (*.html, *.htm)" #~ msgstr "File HTML (*.html, *.htm)" #~ msgid "Text files (*.txt)" #~ msgstr "File di testo (*.txt)" #~ msgid "Cannot save translation as %s" #~ msgstr "Non posso salvare la traduzione come %s" #~ msgid "Go to &previous translation" #~ msgstr "Vai alla traduzione &precedente" #~ msgid "Go to &next translation" #~ msgstr "Vai alla traduzione s&uccessiva" #~ msgid "Prin&t translation" #~ msgstr "S&tampa traduzione" #~ msgid "About QStarDict" #~ msgstr "Informazioni su QStarDict" #~ msgid "QStarDict %s - Qt version of StarDict
" #~ msgstr "QStarDict %s - Versione Qt di StarDict
" #~ msgid "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgstr "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgid "QStarDict" #~ msgstr "QStarDict" #~ msgid "%s - QStarDict" #~ msgstr "%s - QStarDict" #~ msgid "Words list" #~ msgstr "Lista delle Frasi" #~ msgid "About &Qt" #~ msgstr "Informazioni su &Qt" #~ msgid "&Configure QStarDict" #~ msgstr "C&onfigura QStarDict" #~ msgid "Enabled" #~ msgstr "Attivato" #~ msgid "Name" #~ msgstr "Nome" #~ msgid "Plugin" #~ msgstr "Estensione" #~ msgid "Information about dictionary \"%s\"" #~ msgstr "Informazione sul dizionario \"%s\"" #~ msgid "Name: %s
" #~ msgstr "Nome: %s
" #~ msgid "Plugin: %s
" #~ msgstr "Estensione: %s
" #~ msgid "unknown" #~ msgstr "ignoto" #~ msgid "Description: %s" #~ msgstr "Descrizione: %s" #~ msgid "Information about %s plugin" #~ msgstr "Informazione sull'estensione %s" #~ msgid "Version: %s
" #~ msgstr "Versione: %s
" #~ msgid "Authors: %s
" #~ msgstr "Autori: %s
" #~ msgid "
" #~ msgstr "
" #~ msgid "Can search similar words: %s
" #~ msgstr "Puoi cercare parole simili: %s
" #~ msgid "yes" #~ msgstr "si" #~ msgid "no" #~ msgstr "no" #~ msgid "QStarDict Settings" #~ msgstr "Impostazioni QStarDict" #~ msgid "Instant search" #~ msgstr "Ricerca istantanea" #~ msgid "Author: %s
" #~ msgstr "Autore: %s
" #~ msgid "Words count: %s
" #~ msgstr "Conto parole: %s
" #~ msgid "All translation" #~ msgstr "Tutta la traduzione" babiloo-2.0.11/locale/eu/LC_MESSAGES/babiloo.mo0000644000017300007100000000413111446175614020550 0ustar kmoskmos00000000000000 + $. 7EKTZ o|@Q`~ 8DW ] j v    0 9C^#s ;.%3      &About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Scan&SettingsA&uthorsAbout BabilooAlertArticlesClearClear the search boxDictionariesDictionary nameExport dictionary as...HistoryImportInstall from file...Manage Dictionaries...Report A ProblemSearchShort Usage Information:The new language will be displayed after restarting the program.Total articlesTranslate This Application...TypeVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-03-30 22:07+0000 Last-Translator: Jon Legarrea Language-Team: Basque MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) &Honi buruz&Babillo(r)i buruz&Itxi&Konfiguratu&Fitxategia&Laguntza&Lizentzia-kontratua&Irten&Eskaneatu&EzarpenakE&gileakBabiloo(r)i buruzAlertaArtikuluakGarbituGarbitu bilaketa kutxaHiztegiakHiztegiaren izenaHiztegia esportatu...HistoriaInportatuInstalatu fitxategitik ...Kudeatu Hiztegiak...Bidali mezua arazoaren berri emanezBilatuErabileraren informazio laburra:Programa berrabiarazi ondoren ezarriko da hizkuntza berria.Artikuluak guztiraAplikazioa itzultzen lagundu...MotaBisitatu Babiloo programaren webguneababiloo-2.0.11/locale/eu/LC_MESSAGES/babiloo.po0000644000017300007100000003207511446175613020562 0ustar kmoskmos00000000000000# Basque translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-03-30 22:07+0000\n" "Last-Translator: Jon Legarrea \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Babiloo(r)i buruz" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Honi buruz" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "E&gileak" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Lizentzia-kontratua" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Itxi" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "" #: ../qt/main.py:254 msgid "&Save to file" msgstr "" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "" #: ../qt/main.py:264 msgid "Speak &word" msgstr "" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Erabileraren informazio laburra:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Hiztegiak" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr "" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "" #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Garbitu bilaketa kutxa" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Garbitu" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artikuluak" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historia" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Bilatu" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Fitxategia" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Laguntza" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Ezarpenak" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Irten" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Babillo(r)i buruz" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Konfiguratu" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Eskaneatu" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Instalatu fitxategitik ..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Inportatu" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Kudeatu Hiztegiak..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Bisitatu Babiloo programaren webgunea" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Bidali mezua arazoaren berri emanez" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Aplikazioa itzultzen lagundu..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "Alerta" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Programa berrabiarazi ondoren ezarriko da hizkuntza berria." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Mota" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Hiztegiaren izena" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Artikuluak guztira" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Hiztegia esportatu..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/nb/LC_MESSAGES/babiloo.mo0000644000017300007100000001506511446175614020546 0ustar kmoskmos00000000000000l|0 1 : A H W ^ q w }        % . 3 = U \ k q    *     0 < Q Y E_        % 4 ; @ U l         - 5 D #W {        !#Ec h$t@ $ &lHf u        !,2;DM] s ~'   '1&A hsw  F  !< ALbz & 9 CM am   ) ' , 9CWk"  GL htg@m  "O8L E_$D9AIP=d\ciK?)^#1<e+JhM"F!Ub62;40N@(VYW73jQ[ ,S] CH%lB*f5 &`-ZgG >/T :kR'X.a seconds&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDon't hideDownDownloadDownload DictionariesDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.ExampleExplanationExport dictionary as...FontForegroundGlobal settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-07-18 14:28+0000 Last-Translator: Westgaard Language-Team: Norwegian Bokmal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) sekunder&Avbryt&Om&Om Babiloo&Lukk&Konfigurer Babiloo&Fil&Hjelp&Lisensavtale&Lukk&Lagre på fil&Scan&InnstillingerF%orfattereForkortelseOm BabilooAlertUtseendeUtseendeArtiklerAutofullføringBabiloo InnstillingerBakgrunnenOppførselFetBla gjennom...Bygger hoveddialog...AvbrytSkiller mellom store og små bokstaver.TømTøm søkKlikk for å velge fargeDefault høydeDefault breddeOrdbøkerNavn på ordbokOrdbok som ikke kunne installeres: %sIkke skjulNedLast nedLast ned OrdbøkerLaster nedLaster ned filer...ElementFeilmeldingFeil ved lastingen av ordboken. Filen er ødelagt eller ikke støttet.EksempelForklaringEksportér ordboken som...FontForgrunnenGlobale innstillingerGå til %neste artikkelGå til &forrige artikkelHistorieIgnorer aksenterImporterInfoInstaller fra fil...Installerte OrdbøkerGrensesnitt språk:KursivLink-referansen er tomLaster %s...Ordne Ordbøker...Flytt nedFlytt oppNy versjon oppdagetÅpne mappeLast ned en ordbok først.PluginsPopup vinduSe førstPrin&t artikkelUttal ordetUttal ord ved å benytte denne kommandoenFortell oss om et ProblemOmsøk av ordbøker...Søk valgSøkVelg elementVelg fontVelg fontstørrelseKort BruksanvisningVis om ord ikke finnesVis informasjonVis informasjon om ordbok.Vis bare om modifiserer er trykketStørrelseSi &ordStarter nedlasting (%s bytes)...Det nye språket vil bli vist etter at programmet et startet opp igjen.Ordet %sfinnes ikke.Pause før skjul etter mouseoverTittelFor å installere en ny ordbok fra internett, velg: Ordne Ordbøker... og velg fra Last ned Ordbøker .For å installere en ny ordbok fra en fil, velginstaller fra fil... fra Ordbøker -menyenFor å begynne å bruke ordboken, velg fra Ordbøkermeny.Totalt artiklerTranskripsjonOversett denne ApplikasjonenÅpenhetTastKunne ikke laste ned fil %sUnderstrekOppBesøk Hjemmesidenbabiloo-2.0.11/locale/nb/LC_MESSAGES/babiloo.po0000644000017300007100000003463411446175614020554 0ustar kmoskmos00000000000000# Norwegian Bokmal translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-07-18 14:28+0000\n" "Last-Translator: Westgaard \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Om Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Om" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "F%orfattere" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Lisensavtale" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Lukk" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Bygger hoveddialog..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Gå til &forrige artikkel" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Gå til %neste artikkel" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Lagre på fil" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Prin&t artikkel" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Si &ord" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Ny versjon oppdaget" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Feilmelding" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Last ned en ordbok først." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Feil ved lastingen av ordboken.\n" "Filen er ødelagt eller ikke støttet." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Info" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Kort Bruksanvisning" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "For å begynne å bruke ordboken, velg fra Ordbøkermeny." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "For å installere en ny ordbok fra internett, velg: Ordne Ordbøker... " "og velg fra Last ned Ordbøker ." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "For å installere en ny ordbok fra en fil, velginstaller fra fil... " "fra Ordbøker -menyen" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Ordet %sfinnes ikke." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloo Innstillinger" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Grensesnitt språk:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Skiller mellom store og små bokstaver." #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Autofullføring" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorer aksenter" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Uttal ord ved å benytte denne kommandoen" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Globale innstillinger" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Flytt opp" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Opp" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Flytt ned" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Ned" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Vis informasjon om ordbok." #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Vis informasjon" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Bla gjennom..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Installerte Ordbøker" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Last ned" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Last ned Ordbøker" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Ordbøker" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Plugins" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Oppførsel" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Uttal ordet" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Pause før skjul etter mouseover" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Ikke skjul" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " sekunder" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Vis bare om modifiserer er trykket" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Søk valg" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Vis om ord ikke finnes" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Utseende" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Åpenhet" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Default bredde" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Default høyde" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Popup vindu" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Se først" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Element" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Velg element" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Tittel" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Forklaring" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Forkortelse" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Eksempel" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transkripsjon" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Velg font" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Forgrunnen" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Bakgrunnen" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Klikk for å velge farge" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Velg fontstørrelse" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Fet" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Kursiv" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Understrek" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Størrelse" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Font" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Utseende" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Avbryt" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Laster %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Tøm søk" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Tøm" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artikler" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historie" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Søk" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Fil" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Hjelp" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Innstillinger" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Lukk" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Om Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Konfigurer Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Scan" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Installer fra fil..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importer" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Ordne Ordbøker..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Besøk Hjemmesiden" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Fortell oss om et Problem" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Oversett denne Applikasjonen" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Laster ned filer..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Avbryt" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Laster ned" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Starter nedlasting (%s bytes)..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Kunne ikke laste ned fil %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Link-referansen er tom" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Ordbok som ikke kunne installeres:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Omsøk av ordbøker..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Alert" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" "Det nye språket vil bli vist etter at programmet et startet opp igjen." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Åpne mappe" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tast" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Navn på ordbok" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Totalt artikler" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Eksportér ordboken som..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/hi/LC_MESSAGES/babiloo.mo0000644000017300007100000002143511446175614020545 0ustar kmoskmos00000000000000h\   ( . < B L U b p v          & *6 #a       E 7 ? K c h s ~           ( / E S j t |    #   # 2 9 H T e ~ !   $ @ V$wH,u   %#2Vf(y %%4Zp  "<&cU}(+(&>aeU 4A+W+2 TGZ s+*-:- hu#*',8T G!4V"s[(8T nx"60C (d\X CP:j?9fy !!!'"5,"b" "R"" "#NZ-G+cSK)3B*T4 M2 /A:!'9"@(_JR\& 6X<P^7aEIH?;F Y 0`,U%egdb5OW= h#$][.D1LCV>fQ8 seconds&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...ClearClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementError trying to load the dictionary. File corrupted or not supported.ExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upPlease load a dictionary first.Popup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-05-05 15:17+0000 Last-Translator: Varun Language-Team: Hindi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) सेकंड&अंत करनाबारे मेंBabiloo के बारे मेंबंद करनाकॉन्फ़िगर Babilooफ़ाइलसहायतालाइसेंस अनुबंधबंद करनाफ़ाइल में Saveस्कैनसेटिंग्सलेखकसंक्षिप्त नामBabiloo के बारे मेंचेतावनीप्रकटनप्रकटनलेखBabiloo सेटिंग्सपृष्ठभूमिव्यवहारबोल्डब्राउज़ करेंबिल्डिंग मुख्य संवाद ...साफ़ करनारंग का चयन करने के लिए क्लिक करेंडिफ़ॉल्ट ऊंचाईडिफ़ॉल्ट चौड़ाईशब्दकोशशब्दकोश का नामशब्दकोश कि स्थापित नहीं किया जा सका: %sनिर्देशिका भंडारण के शब्दकोशों:मत छिपाओनीचेडाउनलोडडाउनलोड शब्दकोशशब्दकोश डाउनलोडडाउनलोडफ़ाइलों को डाउनलोडतत्वत्रुटि के शब्दकोश लोड करने की कोशिश कर रहा. या भ्रष्ट संचिका समर्थित नहीं.उदाहरणव्याख्यानिर्यात की डिक्शनरी के रूप में ...फ़ॉन्टअग्रभूमिLink से:सूची से:ग्लोबल सेटिंग्सअगले लेख पर जाएँपिछले लेख पर जाएँइतिहासउच्चारण पर ध्यान न देंआयातजानकारीInstall फ़ाइल सेInstalled शब्दकोशअंतरपटल भाषा:इटैलिकलिंक पता खाली है%s लोड हो रहा है ..प्रबंधित शब्दकोशों ...नीचे ले जाएँऊपर ले जाएँकृपया एक डिक्शनरी पहले लोड.पॉपअप विंडोपूर्वावलोकनप्रिंट लेखउच्चारण शब्दउच्चारण शब्द इस आदेश का उपयोग करके:रिपोर्ट समस्यास्कैनिंग शब्दकोशों ...स्कैन चयनखोजचुनें तत्वफ़ॉन्ट चुनेंचुनें फ़ॉन्ट का आकारलघु उपयोग जानकारी:दिखाएँ यदि शब्द नहीं मिलाजानकारी दिखाएँशब्दकोश के बारे में जानकारी दिखाएँदिखाएँ सिर्फ अगर आपरिवर्तक दबायाआकारबोलो शब्दडाउनलोड शुरू (%s बाइट्स)इस नई भाषा के कार्यक्रम restarting के बाद प्रदर्शित किया जाएगा.यह वचन % s नहीं मिला है.Timeout से पहले माउस खत्म होने के बाद छिपानाशीर्षकप्रबंधित शब्दकोश इंटरनेट, चयन से एक नया शब्दकोश स्थापित करने के लिए ... और एक के डाउनलोड शब्दकोश टैब से चुनें.कॉपी पाठ इस शब्दकोशों में मेनू से डिक्शनरी, चयन एक का उपयोग आरंभ करने के लिए.कुल लेखप्रतिलेखनअनुवाद यह Application..अनुवाद इस अनुप्रयोगपारदर्शिताटाइपफ़ाइल %s डाउनलोड करने में असमर्थरेखांकितऊपरमुखपृष्ठbabiloo-2.0.11/locale/hi/LC_MESSAGES/babiloo.po0000644000017300007100000004151511446175614020551 0ustar kmoskmos00000000000000# Hindi translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-05-05 15:17+0000\n" "Last-Translator: Varun \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Babiloo के बारे में" #: ../qt/about_ui.py:142 msgid "&About" msgstr "बारे में" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "लेखक" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "लाइसेंस अनुबंध" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "बंद करना" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "बिल्डिंग मुख्य संवाद ..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "पिछले लेख पर जाएँ" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "अगले लेख पर जाएँ" #: ../qt/main.py:254 msgid "&Save to file" msgstr "फ़ाइल में Save" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "प्रिंट लेख" #: ../qt/main.py:264 msgid "Speak &word" msgstr "बोलो शब्द" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "कृपया एक डिक्शनरी पहले लोड." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "त्रुटि के शब्दकोश लोड करने की कोशिश कर रहा.\n" "या भ्रष्ट संचिका समर्थित नहीं." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "जानकारी" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "लघु उपयोग जानकारी:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "कॉपी पाठ इस शब्दकोशों में मेनू से डिक्शनरी, चयन एक का उपयोग आरंभ करने के " "लिए." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "प्रबंधित शब्दकोश इंटरनेट, चयन से एक नया शब्दकोश स्थापित करने के लिए ... और " "एक के डाउनलोड शब्दकोश टैब से चुनें." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "यह वचन % s नहीं मिला है." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloo सेटिंग्स" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "अंतरपटल भाषा:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "अनुवाद इस अनुप्रयोग" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "उच्चारण पर ध्यान न दें" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "उच्चारण शब्द इस आदेश का उपयोग करके:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "ग्लोबल सेटिंग्स" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "ऊपर ले जाएँ" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "ऊपर" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "नीचे ले जाएँ" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "नीचे" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "शब्दकोश के बारे में जानकारी दिखाएँ" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "जानकारी दिखाएँ" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "निर्देशिका भंडारण के शब्दकोशों:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "ब्राउज़ करें" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Installed शब्दकोश" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Link से:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "शब्दकोश डाउनलोड" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "सूची से:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "डाउनलोड" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "डाउनलोड शब्दकोश" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "शब्दकोश" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "व्यवहार" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "उच्चारण शब्द" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Timeout से पहले माउस खत्म होने के बाद छिपाना" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "मत छिपाओ" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " सेकंड" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "दिखाएँ सिर्फ अगर आपरिवर्तक दबाया" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "स्कैन चयन" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "दिखाएँ यदि शब्द नहीं मिला" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "प्रकटन" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "पारदर्शिता" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "डिफ़ॉल्ट चौड़ाई" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "डिफ़ॉल्ट ऊंचाई" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "पॉपअप विंडो" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "पूर्वावलोकन" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "तत्व" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "चुनें तत्व" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "शीर्षक" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "व्याख्या" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "संक्षिप्त नाम" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "उदाहरण" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "प्रतिलेखन" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "फ़ॉन्ट चुनें" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "अग्रभूमि" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "पृष्ठभूमि" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "रंग का चयन करने के लिए क्लिक करें" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "चुनें फ़ॉन्ट का आकार" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "बोल्ड" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "इटैलिक" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "रेखांकित" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "आकार" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "फ़ॉन्ट" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "प्रकटन" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "%s लोड हो रहा है .." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "साफ़ करना" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "लेख" #: ../qt/main_ui.py:259 msgid "History" msgstr "इतिहास" #: ../qt/main_ui.py:263 msgid "Search" msgstr "खोज" #: ../qt/main_ui.py:269 msgid "&File" msgstr "फ़ाइल" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "सहायता" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "सेटिंग्स" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "बंद करना" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "Babiloo के बारे में" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "कॉन्फ़िगर Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "स्कैन" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Install फ़ाइल से" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "आयात" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "प्रबंधित शब्दकोशों ..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "मुखपृष्ठ" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "रिपोर्ट समस्या" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "अनुवाद यह Application.." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "फ़ाइलों को डाउनलोड" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&अंत करना" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "डाउनलोड" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "डाउनलोड शुरू (%s बाइट्स)" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "फ़ाइल %s डाउनलोड करने में असमर्थ" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "लिंक पता खाली है" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "शब्दकोश कि स्थापित नहीं किया जा सका:\n" "%s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "स्कैनिंग शब्दकोशों ..." #: ../qt/settings.py:82 msgid "Alert" msgstr "चेतावनी" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "इस नई भाषा के कार्यक्रम restarting के बाद प्रदर्शित किया जाएगा." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "टाइप" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "शब्दकोश का नाम" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "कुल लेख" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "निर्यात की डिक्शनरी के रूप में ..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/gl/LC_MESSAGES/babiloo.mo0000644000017300007100000001743311446175614020552 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  Wa v       # )$4Y&b ) 7 Q^ eo d/2b jw . 7Dby$')+U]n}( 5Gf (% #(ML!*OX hv $  g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-03-06 06:27+0000 Last-Translator: Marcos Lans Language-Team: Galician MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) segundos%s non se cargou: %s&Cancelar&Acerca de&Sobre Babiloo&Pechar&Configurar Babiloo&Ficheiro&Axuda&Acordo de licenza&Saír&Gardar no ficheiro&Procurar&ConfiguraciónUn nova versión de Babiloo foi liberada. Nova versión: %s Versión actual: %s Quere descargar a nova versión neste momento?A&utoresAbreviaciónAcerca de BabilooAlertaAparenciaAparenciaArtigosCompletar automaticamenteConfiguración de BabilooFondoComportamentoNegraNavegar...A construír o diálogo principal...CancelarDiferenciar maiúsculas de minúsculasLimparLimpar a caixa de procurasClic para seleccionar a corAltura predefinidaLargura predefinidaDicionariosNome do dicionarioNon foi posible instalar o dicionario: %sCartafol dos dicionarios:Non esconderAbaixoDescargarDescargar dicionariosDescargar dicionarioA descargarA descargar ficheiros...ElementoErroProduciuse un erro durante a carga do dicionario. O ficheiro está derramado ou non está soportado.Produciuse un erro mentres cargaba a palabra %sExemploExplicaciónExportar o dicionario como...FontePrimeiro planoDesde unha ligazón:Desde a listaxe:Configuración globalIr ao artigo segui&nteIr ao a&rtigo anteriorHistorialIgnorar acentosImportarInformaciónInstalar desde un ficheiro...Dicionarios instaladosIdioma da interfazCursivaO enderezo da ligazón está baleiroA cargar %s...Xestionar os dicionarios...BaixarSubirEncontrouse unha versión máis recenteAbrir un cartafolPor favor, primeiro cargue un dicionario.PluginsVentá emerxentePre-visualizarImprimir o ar&tigoPronunciar a palabraPronunciar palabras usando este comando:Comunicar un problemaA re-escanear dicionarios...Escanear a selecciónProcurarSeleccionar elementoSeleccionar fonteSeleccionar o tamaño da fonteInformación rápida de uso:Amosar se non se atopa a palabraAmosar a informaciónAmosar a información sobre o dicionarioAmosar se o modificador está premidoTamañoReproducir a &palabraA iniciar a descarga (%s bytes) ...É necesario reiniciar o programa para que o novo idioma poida ser utilizado.Non se atopou a palabra %sTempo antes de esconder o punteiro do ratoTítuloPara instalar un novo dicionario desde Internet, seleccione Xestionar os dicionarios... e escolla un desde a pestana Descargar dicionariosPara instalar un novo dicionario desde un ficheiro, seleccione Instalar desde un ficheiro... no menú DicionariosPara comezar a utilizar un dicionario, seleccióneo no menú DicionariosEntradas totaisTranscriciónTraducir esta aplicación...Traducir esta aplicación...TransparenciaTipoNon se puido descargar o ficheiro %sSubliñadoArribaVisitar a páxina da aplicaciónbabiloo-2.0.11/locale/gl/LC_MESSAGES/babiloo.po0000644000017300007100000003631011446175614020550 0ustar kmoskmos00000000000000# Galician translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-03-06 06:27+0000\n" "Last-Translator: Marcos Lans \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Acerca de Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Acerca de" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "A&utores" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Acordo de licenza" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Pechar" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "A construír o diálogo principal..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Ir ao a&rtigo anterior" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Ir ao artigo segui&nte" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Gardar no ficheiro" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Imprimir o ar&tigo" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Reproducir a &palabra" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Encontrouse unha versión máis recente" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Un nova versión de Babiloo foi liberada.\n" "\n" "Nova versión: %s\n" "Versión actual: %s\n" "\n" "Quere descargar a nova versión neste momento?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Erro" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Por favor, primeiro cargue un dicionario." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Produciuse un erro mentres cargaba a palabra %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Produciuse un erro durante a carga do dicionario.\n" "O ficheiro está derramado ou non está soportado." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s non se cargou: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Información" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Información rápida de uso:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Para comezar a utilizar un dicionario, seleccióneo no menú Dicionarios" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Para instalar un novo dicionario desde Internet, seleccione Xestionar os " "dicionarios... e escolla un desde a pestana Descargar dicionarios" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Para instalar un novo dicionario desde un ficheiro, seleccione Instalar " "desde un ficheiro... no menú Dicionarios" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Non se atopou a palabra %s" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Configuración de Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Idioma da interfaz" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Traducir esta aplicación..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Diferenciar maiúsculas de minúsculas" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Completar automaticamente" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorar acentos" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Pronunciar palabras usando este comando:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Configuración global" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Subir" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Arriba" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Baixar" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Abaixo" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Amosar a información sobre o dicionario" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Amosar a información" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Cartafol dos dicionarios:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Navegar..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Dicionarios instalados" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Desde unha ligazón:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Descargar dicionario" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Desde a listaxe:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Descargar" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Descargar dicionarios" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Dicionarios" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Plugins" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Comportamento" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Pronunciar a palabra" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Tempo antes de esconder o punteiro do rato" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Non esconder" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " segundos" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Amosar se o modificador está premido" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Escanear a selección" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Amosar se non se atopa a palabra" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Aparencia" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparencia" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Largura predefinida" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Altura predefinida" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Ventá emerxente" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Pre-visualizar" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Elemento" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Seleccionar elemento" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Título" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Explicación" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Abreviación" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Exemplo" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transcrición" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Seleccionar fonte" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Primeiro plano" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Fondo" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Clic para seleccionar a cor" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Seleccionar o tamaño da fonte" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Negra" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Cursiva" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Subliñado" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Tamaño" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Fonte" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Aparencia" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Cancelar" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "A cargar %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Limpar a caixa de procuras" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Limpar" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artigos" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historial" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Procurar" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Ficheiro" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Axuda" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Configuración" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Saír" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Sobre Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Configurar Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Procurar" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Instalar desde un ficheiro..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importar" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Xestionar os dicionarios..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Visitar a páxina da aplicación" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Comunicar un problema" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Traducir esta aplicación..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "A descargar ficheiros..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Cancelar" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "A descargar" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "A iniciar a descarga (%s bytes) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Non se puido descargar o ficheiro %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "O enderezo da ligazón está baleiro" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Non foi posible instalar o dicionario:\n" "%s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "A re-escanear dicionarios..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Alerta" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" "É necesario reiniciar o programa para que o novo idioma poida ser utilizado." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Abrir un cartafol" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tipo" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Nome do dicionario" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Entradas totais" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Exportar o dicionario como..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/ru/LC_MESSAGES/babiloo.mo0000644000017300007100000001063511446175614020573 0ustar kmoskmos00000000000000D<a\   "/ 3= ?JSX^s       $/?AF MW_ gt|#  !>\z  $        ) B F \ _ q  * 7   8 @ $G $l      0 , ? J ` ~   !   /!DIf) *!L<R)77])  )fFYru @2'5)# C!3,<;A=46$*8B&: 0>"%? /7  .-(1D9+#000000%&About&File&Help&Quit&Save to file&Scan&SettingsAbbreviationAltApperanceBBackgroundBehaviorBoldClearClear the search boxClick to select colorConfigureConfigure pluginControlCtrl+QDefault heightDefault widthDictionariesDictionary nameDon't hideDownElementErrorExampleExplanationFontForegroundGlobal settingsIInfoItalicMove downMove upPluginsPopup windowPreviewPronounce the wordPronounce words using this command:Scan selectionSearchSelect elementSelect fontSelect font sizeShiftShow if word not foundShow infoShow information about dictionaryShow information about pluginShow only if modifier pressedSizeSpeak &wordThe word %s is not found.Timeout before hide after mouse overTitleTranscriptionUUnderlineUpWinProject-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-01-09 18:00+0000 Last-Translator: Ivan Garcia Language-Team: LANGUAGE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-02-08 12:44+0000 X-Generator: Launchpad (build Unknown) #000000%&О программе QStarDict&Файл&Справка&Выход&Сохранить в файл&Сканировать&НастройкиАббревиатураAltВнешний видЖЦвет фонаПоведениеЖирныйОчиститьОчистить строку поискаНажмите чтобы выбрать элементНастроитьНастроить плагинControlCtrl+QВысота по умолчаниюШирина по умолчаниюСловариНазвание словаряНе скрыватьВнизЭлементОшибкаПример употребления словаПояснениеШрифтЦвет шрифтаОбщие настройкиКИнформацияКурсивПереместить внизПереместить вверхПлагиныВсплывающее окноПредварительный просмотрПроизносить словоПроизносить слова, используя программу:Сканировать выделениеПоискВыберите элементВыберите шрифтВыберите размер шрифтаShiftПоказывать если слово не найденоПоказывать информациюПоказать информацию о словареПоказать информацию о плагинеПоказывать только если нажата клавиша-модификаторРазмерП&роизнести словоСлово %s не найдено.Задержка перед скрытием после отведения указателя мышиЗаголовокТранскрипцияППодчеркнутыйВверхWinbabiloo-2.0.11/locale/ru/LC_MESSAGES/babiloo.po0000644000017300007100000004064611443252104020566 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-01-09 18:00+0000\n" "Last-Translator: Ivan Garcia \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-02-08 12:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "Очистить строку поиска" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "Очистить" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "Поиск" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "&Файл" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "&Справка" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "&Настройки" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "Словари" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "&Выход" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "Ctrl+Q" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "&Сканировать" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "&О программе QStarDict" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "Название словаря" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "Слово %s не найдено." #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "&Сохранить в файл" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "П&роизнести слово" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "Ошибка" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "Произносить слова, используя программу:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "Общие настройки" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "Переместить вверх" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "Вверх" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "Переместить вниз" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "Вниз" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "Показать информацию о словаре" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "Показывать информацию" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "Плагины" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "Показать информацию о плагине" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "Информация" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "Настроить плагин" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "Настроить" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "Поведение" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "Произносить слово" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "Задержка перед скрытием после отведения указателя мыши" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "Не скрывать" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "Показывать только если нажата клавиша-модификатор" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "Alt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "Control" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "Shift" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "Win" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "Сканировать выделение" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "Показывать если слово не найдено" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "Внешний вид" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "%" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "Ширина по умолчанию" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "Высота по умолчанию" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "Всплывающее окно" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "Предварительный просмотр" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "Элемент" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "Выберите элемент" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "Заголовок" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "Пояснение" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "Аббревиатура" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "Пример употребления слова" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 msgid "Transcription" msgstr "Транскрипция" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "Выберите шрифт" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "Цвет шрифта" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "Цвет фона" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "Нажмите чтобы выбрать элемент" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "#000000" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "Выберите размер шрифта" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "Жирный" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "Ж" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "Курсив" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "К" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "Подчеркнутый" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "П" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "Размер" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "Шрифт" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "" #~ msgid "Fuzzy query" #~ msgstr "Неточный запрос" #, python-format #~ msgid "" #~ "Enter cmd for the speaching program.
If cmd contains \"%s\" it will be " #~ "replaced to word, else word will be writen to stdin of speech process." #~ msgstr "" #~ "Введите команду для запуска программы.
Если команда содержит выражение " #~ "\"%s\", оно будет заменено на слово; иначе слово будет записано в " #~ "стандартный поток ввода процесса." #~ msgid " sec" #~ msgstr " сек" #~ msgid "Opacity" #~ msgstr "Непрозрачность" #~ msgid "pt" #~ msgstr "пт" #~ msgid "Save translation" #~ msgstr "Сохранить перевод" #~ msgid "HTML files (*.html, *.htm)" #~ msgstr "HTML-файлы (*.html, *.htm)" #~ msgid "Text files (*.txt)" #~ msgstr "Текстовые файлы (*.txt)" #~ msgid "Cannot save translation as %s" #~ msgstr "Невозможно сохранить перевод как %s" #~ msgid "Go to &previous translation" #~ msgstr "Перейти к &предыдущему переводу" #~ msgid "Go to &next translation" #~ msgstr "Перейти к &следующему переводу" #~ msgid "Prin&t translation" #~ msgstr "Напечата&ть перевод" #~ msgid "About QStarDict" #~ msgstr "О программе QStarDict" #~ msgid "QStarDict %s - Qt version of StarDict
" #~ msgstr "QStarDict %s - Qt-версия программы StarDict
" #~ msgid "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgstr "" #~ "Copyright (C) 2007 Александр Родин http://qstardict.ylsoftware.com" #~ msgid "QStarDict" #~ msgstr "QStarDict" #~ msgid "%s - QStarDict" #~ msgstr "%s - QStarDict" #~ msgid "Words list" #~ msgstr "Список слов" #~ msgid "About &Qt" #~ msgstr "О &библиотеке Qt" #~ msgid "&Configure QStarDict" #~ msgstr "&Конфигурация" #~ msgid "Enabled" #~ msgstr "Включен" #~ msgid "Name" #~ msgstr "Название" #~ msgid "Plugin" #~ msgstr "Плагин" #~ msgid "Information about dictionary \"%s\"" #~ msgstr "Информация о словаре \"%s\"" #~ msgid "Name: %s
" #~ msgstr "Название: %s
" #~ msgid "Plugin: %s
" #~ msgstr "Плагин: %s
" #~ msgid "unknown" #~ msgstr "неизвестно" #~ msgid "Description: %s" #~ msgstr "Описание: %s" #~ msgid "Information about %s plugin" #~ msgstr "Информация о плагине %s" #~ msgid "Version: %s
" #~ msgstr "Версия: %s
" #~ msgid "Authors: %s
" #~ msgstr "Авторы: %s
" #~ msgid "
" #~ msgstr "
" #~ msgid "Can search similar words: %s
" #~ msgstr "Возможность искать похожие слова: %s
" #~ msgid "yes" #~ msgstr "есть" #~ msgid "no" #~ msgstr "нет" #~ msgid "QStarDict Settings" #~ msgstr "Настройки QStarDict" #~ msgid "Instant search" #~ msgstr "Поиск при наборе" #~ msgid "Author: %s
" #~ msgstr "Автор: %s
" #~ msgid "Words count: %s
" #~ msgstr "Количество слов: %s
" #~ msgid "All translation" #~ msgstr "Весь перевод" babiloo-2.0.11/locale/en_GB/LC_MESSAGES/babiloo.mo0000644000017300007100000001651311446175614021120 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw hq          (/>DYp  *#  ( <H]eEk    #3G_gv}  +:Z cpx# ,E \!f $@ $>cilH`   /9<g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-07-18 15:36+0000 Last-Translator: Hubert Röbke-Stadtsholte Language-Team: English (United Kingdom) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&Licence Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceAppearanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviourBoldBrowse...Building main dialogue...CancelCase sensitiveClearClear the search boxClick to select colourDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.Plug-insPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePagebabiloo-2.0.11/locale/en_GB/LC_MESSAGES/babiloo.po0000644000017300007100000003540511446175613021123 0ustar kmoskmos00000000000000# English (United Kingdom) translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-07-18 15:36+0000\n" "Last-Translator: Hubert Röbke-Stadtsholte \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "About Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&About" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "A&uthors" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Licence Agreement" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Close" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Building main dialogue..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Go to &previous article" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Go to &next article" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Save to file" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Prin&t article" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Speak &word" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "New Version Detected" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Error" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Please load a dictionary first." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Error while loading the word %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Error trying to load the dictionary.\n" "File corrupted or not supported." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s was not loaded: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Info" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Short Usage Information:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "To start using dictionary, select one from the Dictionaries menu." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "The word %s is not found." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloo Settings" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Interface Language:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Translate this Application..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Case sensitive" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "AutoComplete" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignore accents" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Pronounce words using this command:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Global settings" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Move up" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Up" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Move down" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Down" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Show information about dictionary" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Show info" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Directory storing the dictionaries:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Browse..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Installed Dictionaries" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "From link:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Download dictionary" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "From list:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Download" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Download Dictionaries" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Dictionaries" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Plug-ins" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Behaviour" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Pronounce the word" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Timeout before hide after mouse over" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Don't hide" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " seconds" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Show only if modifier pressed" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Scan selection" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Show if word not found" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Appearance" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparency" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Default width" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Default height" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Popup window" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Preview" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Element" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Select element" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Title" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Explanation" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Abbreviation" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Example" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transcription" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Select font" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Foreground" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Background" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Click to select colour" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Select font size" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Bold" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Italic" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Underline" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Size" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Font" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Appearance" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Cancel" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Loading %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Clear the search box" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Clear" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Articles" #: ../qt/main_ui.py:259 msgid "History" msgstr "History" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Search" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&File" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Help" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Settings" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Quit" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&About Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Configure Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Scan" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Install from file..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Import" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Manage Dictionaries..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Visit HomePage" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Report A Problem" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Translate This Application..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Downloading files..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Abort" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Downloading" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Starting the download (%s bytes) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Unable to download file %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Link address is empty" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Dictionary that couldn't be installed:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Rescanning dictionaries..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Alert" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "The new language will be displayed after restarting the program." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Open Directory" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Type" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Dictionary name" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Total articles" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Export dictionary as..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/fr/LC_MESSAGES/babiloo.mo0000644000017300007100000002006611446175614020553 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  IS p |     6 DQ V)a !3*U   )P0&   )=Y y # ';Wm/(+Tj &";-U*(E!6/Xpg u  )   g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-05-19 17:57+0000 Last-Translator: Mathieu Pasquet Language-Team: French MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) secondes%s n'a pu être chargé : %s&AbandonnerÀ &proposÀ &propos de Babiloo&Fermer&Configurer Babiloo&Fichier&AideAccord de &licence&Quitter&Sauver dans un fichier&Scanner&ParamètresUne nouvelle version de Babiloo est disponible. Nouvelle version : %s Version actuelle : %s Voulez-vous télécharger la nouvelle version dès maintenant ?A&uteursAbréviationÀ &propos de BabilooAvertissementAspectApparenceArticlesCompléter automatiquementParamètres de BabilooArrière-planComportementGrasParcourir:Construction de la fenêtre principale…AnnulerRespecter la casseViderVider la zone de rechercheCliquer pour choisir une couleurHauteur par défautLargeur par défaut&DictionnairesNom du dictionnaireDictionnaire non installable: %sRépertoire de stockage des dictionnaires:Ne pas disparaîtreBasTéléchargerTélécharger des dictionnairesTélécharger le dictionnaireTéléchargement en coursTéléchargement des fichiers…ÉlémentErreurErreur pendant le chargement du dictionnaire. Fichier corrompu ou non supporté.Erreur pendant le chargement du mot %sExempleExplicationExporter le dictionnaire sous...Police de caractèreAvant-planÀ partir du lien :À partir de la liste :Paramètres globauxAller à l'article &suivantAller à l'article &précédentHistoriqueIgnorer les accentsImporterInformationsInstaller à partir d'un fichier...Dictionnaires installésLangue de l'interface :ItaliqueL'adresse du lien est videChargement de %s...Gérer les dictionnaires...Déplacer vers le basDéplacer vers le hautNouvelle version détectéeOuvrir un RépertoireVeuillez commencer par charger un dictionnaire.GreffonsFenêtre popupAperçuIm&primer l'articlePrononcer le motPrononcer les mots avec cette commande :Signaler un problèmeReparcours des dictionnaires...Scan de la sélectionRechercheChoisir un élémentChoisir une policeChoisir la taille de la policeInformations succintes d'utilisation :Afficher si le mot est introuvableAfficher les informationsAfficher des informations sur le dictionnaireAfficher uniquement sur appui d'une toucheTaillePrononcer le &motDébut du téléchargement (%s bytes)...Le programme s'affichera dans la nouvelle langue après redémarrage.Le mot %s est introuvable.Délai avant disparition de la fenêtre de scanTitrePour installer un nouveau dictionnaire à partir d'Internet, sélectionnez Gérer les dictionnaires... à partir du menu Dictionnaires, puis choisissez en un dans l'onglet Télécharger des dictionnaires.Pour installer un nouveau dictionnaire à partir d'un fichier, sélectionnez Installer à partir d'un fichier... depuis le menu Dictionnaires.Pour commencer à utiliser un dictionnaire, sélectionnez en un à partir du menu Dictionnaires.Nombre d'articlesTranscriptionTraduire cette application…Traduire cette Application...TransparenceTypeImpossible de télécharger le fichier %sSoulignéHautVisiter la page d'accueilbabiloo-2.0.11/locale/fr/LC_MESSAGES/babiloo.po0000644000017300007100000003674711446175614020573 0ustar kmoskmos00000000000000# French translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-05-19 17:57+0000\n" "Last-Translator: Mathieu Pasquet \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "À &propos de Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "À &propos" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "A&uteurs" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "Accord de &licence" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Fermer" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Construction de la fenêtre principale…" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Aller à l'article &précédent" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Aller à l'article &suivant" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Sauver dans un fichier" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Im&primer l'article" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Prononcer le &mot" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Nouvelle version détectée" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Une nouvelle version de Babiloo est disponible.\n" "\n" "Nouvelle version : %s\n" "Version actuelle : %s\n" "\n" "Voulez-vous télécharger la nouvelle version dès maintenant ?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Erreur" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Veuillez commencer par charger un dictionnaire." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Erreur pendant le chargement du mot %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Erreur pendant le chargement du dictionnaire.\n" "Fichier corrompu ou non supporté." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s n'a pu être chargé : %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Informations" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Informations succintes d'utilisation :" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Pour commencer à utiliser un dictionnaire, sélectionnez en un à partir du " "menu Dictionnaires." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Pour installer un nouveau dictionnaire à partir d'Internet, sélectionnez " "Gérer les dictionnaires... à partir du menu Dictionnaires, " "puis choisissez en un dans l'onglet Télécharger des dictionnaires." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Pour installer un nouveau dictionnaire à partir d'un fichier, sélectionnez " "Installer à partir d'un fichier... depuis le menu " "Dictionnaires." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Le mot %s est introuvable." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Paramètres de Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Langue de l'interface :" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Traduire cette Application..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Respecter la casse" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Compléter automatiquement" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorer les accents" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Prononcer les mots avec cette commande :" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Paramètres globaux" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Déplacer vers le haut" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Haut" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Déplacer vers le bas" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Bas" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Afficher des informations sur le dictionnaire" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Afficher les informations" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Répertoire de stockage des dictionnaires:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Parcourir:" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Dictionnaires installés" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "À partir du lien :" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Télécharger le dictionnaire" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "À partir de la liste :" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Télécharger" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Télécharger des dictionnaires" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "&Dictionnaires" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Greffons" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Comportement" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Prononcer le mot" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Délai avant disparition de la fenêtre de scan" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Ne pas disparaître" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " secondes" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Afficher uniquement sur appui d'une touche" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Scan de la sélection" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Afficher si le mot est introuvable" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Apparence" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparence" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Largeur par défaut" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Hauteur par défaut" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Fenêtre popup" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Aperçu" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Élément" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Choisir un élément" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Titre" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Explication" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Abréviation" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Exemple" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transcription" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Choisir une police" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Avant-plan" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Arrière-plan" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Cliquer pour choisir une couleur" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Choisir la taille de la police" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Gras" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Italique" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Souligné" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Taille" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Police de caractère" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Aspect" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Annuler" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Chargement de %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Vider la zone de recherche" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Vider" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Articles" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historique" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Recherche" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Fichier" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Aide" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Paramètres" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Quitter" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "À &propos de Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Configurer Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Scanner" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Installer à partir d'un fichier..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importer" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Gérer les dictionnaires..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Visiter la page d'accueil" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Signaler un problème" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Traduire cette application…" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Téléchargement des fichiers…" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Abandonner" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Téléchargement en cours" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Début du téléchargement (%s bytes)..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Impossible de télécharger le fichier %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "L'adresse du lien est vide" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Dictionnaire non installable:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Reparcours des dictionnaires..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Avertissement" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Le programme s'affichera dans la nouvelle langue après redémarrage." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Ouvrir un Répertoire" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Type" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Nom du dictionnaire" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Nombre d'articles" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Exporter le dictionnaire sous..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/es_ES/LC_MESSAGES/babiloo.mo0000644000017300007100000001725611446175614021151 0ustar kmoskmos00000000000000o ` a j           |        " ( = S b p } &      E O o w          ; @ U l         &5#Hl}  !6T Y$e$@ $6<lH3|      -4 HRb   & 1 <Jdjy""!i '   *6NWF]'   *:To "&%L[w}(  'BXu& )%/O$)<+'8S~1T' DR#W {!Q:N Hb$G;D6K@g^flMBa#1?h*Lk`O"&!/eC82>40P5W(X[Y93]mS +RU_ FJ%oE)=7c,\ jI A.V <nT'Z-id seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBuilding main dialog...Case sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary successfully installed: %sDon't hideDownDownload DictionariesDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportImport one or many dictionariesInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The dictionary is already installed.The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2009-04-08 15:28+0100 PO-Revision-Date: 2009-04-08 14:05+0000 Last-Translator: Ivan Garcia Language-Team: Spanish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-04-25 11:28+0000 X-Generator: Launchpad (build Unknown) segundos%s no fue cargado: %sC&ancelar&Acerca de&Acerca de Babiloo&Cerrar&Configurar Babiloo&Archivo&Ayuda&Acuerdo de licencia&Salir&Guardar al archivo&Explorar&ConfiguraciónUna nueva versión de Babiloo ha salido a la luz. Versión nueva: %s Versión actual: %s Le gustaría descargar la nueva versión ahora?A&utoresAbreviaciónAcerca de BabilooAvisoAparienciaAparienciaArtículosAutoCompletarConfiguración de BabilooFondoComportamientoNegritaConstruyendo diálogo principal...Distinguir mayusculas y minusculasBorrarThis requirement definition document defines the requirements from product development area specified by General Insurance product management in Partenon.Hacer clic para seleccionar colorAltura predeterminadaAncho predeterminadoDiccionariosNombre del diccionarioDiccionario exitosamente instalado: %sNo ocultarAbajoDescargar diccionariosDescargandoDescargando ficheros...ElementoErrorError intentando cargar el diccionario. Archivo corrupto o no válido.Error mientras se cargaba la palabra %sEjemploExplicaciónExportar diccionario como...Tipo de letraPrimer planoDesde un enlace:Desde la lista:Configuraciones GeneralesIr al artículo &siguienteIr al artículo &anteriorHistorialIgnorar acentosImportarImportar uno o varios diccionariosInfoInstalar desde archivo...Diccionarios instaladosIdioma de la interfaz:CursivaLa dirección del enlace está vacía.Cargando %s...Administrar diccionarios...BajarSubirNueva Versión DetectadaPor favor primero cargue un diccionario.ExtensionesVentana emergenteVista previa&Imprimir artículoPronunciar la palabraPronunciar palabras usando este comandoComunicar un problemaReescaneando diccionarios...Escanear la selecciónBuscarSeleccionar elementoSeleccionar fuenteSeleccione el tamaño de fuenteInstrucciones de uso:Mostrar si la palabra no es encontradaMostrar infoMostrar información sobre el diccionarioMostrar solo si el modificador está presionadoTamañoPronunciar &palabraEmpezando la descarga (%s bytes) ...El diccionario ya aparece como instalado.El nuevo idioma estará disponible al reiniciar el programa.La palabra %s no ha sido encontrada.Tiempo de espera antes de esconder el puntero del ratónTítuloPara instalar un diccionario nuevo desde el internet, seleccione Organizar Diccionarios... y escoja uno de la pestaña Descargar Diccionarios.Para instalar un diccionario nuevo desde un archivo, seleccione Instalar de archivo... en el menú Diccionarios.Para empezar usando un diccionario, seleccione uno del menú de Diccionarios.Artículos totalesTranscripciónTraducir Esta Aplicación...TransparenciaTipoNo se puede descargar el fichero %sSubrayadoArribaVisitar la página web de Babiloobabiloo-2.0.11/locale/es_ES/LC_MESSAGES/babiloo.po0000644000017300007100000003764311443252104021141 0ustar kmoskmos00000000000000# Spanish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-04-08 15:28+0100\n" "PO-Revision-Date: 2009-04-08 14:05+0000\n" "Last-Translator: Ivan Garcia \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-04-25 11:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:222 msgid "Downloading files..." msgstr "Descargando ficheros..." #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:222 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:342 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:77 msgid "&Abort" msgstr "C&ancelar" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:223 msgid "Downloading" msgstr "Descargando" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:236 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Empezando la descarga (%s bytes) ..." #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:267 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:282 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:293 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:300 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:316 #: /home/igarcia/workspace/babiloo/qt/main.py:430 #: /home/igarcia/workspace/babiloo/qt/main.py:439 #: /home/igarcia/workspace/babiloo/qt/main.py:514 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:91 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:131 msgid "Error" msgstr "Error" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:267 #, python-format msgid "Unable to download file %s" msgstr "No se puede descargar el fichero %s" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:282 #: /home/igarcia/workspace/babiloo/qt/main.py:514 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Error intentando cargar el diccionario.\n" "Archivo corrupto o no válido." #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:284 #: /home/igarcia/workspace/babiloo/qt/settings.py:70 #: /home/igarcia/workspace/babiloo/qt/main.py:541 msgid "Alert" msgstr "Aviso" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:284 msgid "The dictionary is already installed." msgstr "El diccionario ya aparece como instalado." #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:291 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:334 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:343 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:78 msgid "Info" msgstr "Info" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:291 #: /home/igarcia/workspace/babiloo/qt/main.py:538 #, python-format msgid "" "Dictionary successfully installed:\n" " %s" msgstr "" "Diccionario exitosamente instalado:\n" " %s" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:293 #: /home/igarcia/workspace/babiloo/qt/main.py:540 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:300 msgid "Link address is empty" msgstr "La dirección del enlace está vacía." #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:342 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:77 msgid "Rescanning dictionaries..." msgstr "Reescaneando diccionarios..." #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:492 msgid "Babiloo Settings" msgstr "Configuración de Babiloo" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:493 msgid "Interface Language:" msgstr "Idioma de la interfaz:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:494 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:280 msgid "Translate This Application..." msgstr "Traducir Esta Aplicación..." #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:495 msgid "Case sensitive" msgstr "Distinguir mayusculas y minusculas" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:496 msgid "AutoComplete" msgstr "AutoCompletar" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:497 msgid "Ignore accents" msgstr "Ignorar acentos" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:498 msgid "Pronounce words using this command:" msgstr "Pronunciar palabras usando este comando" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:499 msgid "Global settings" msgstr "Configuraciones Generales" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:502 msgid "Move up" msgstr "Subir" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:503 msgid "Up" msgstr "Arriba" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:504 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:514 msgid "Move down" msgstr "Bajar" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:505 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:515 msgid "Down" msgstr "Abajo" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:506 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:516 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:523 msgid "Show information about dictionary" msgstr "Mostrar información sobre el diccionario" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:507 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:517 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:524 msgid "Show info" msgstr "Mostrar info" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:510 msgid "Installed Dictionaries" msgstr "Diccionarios instalados" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:511 msgid "From link:" msgstr "Desde un enlace:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:513 msgid "From list:" msgstr "Desde la lista:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:519 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:281 msgid "Download Dictionaries" msgstr "Descargar diccionarios" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:520 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:269 msgid "Dictionaries" msgstr "Diccionarios" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:526 msgid "Plugins" msgstr "Extensiones" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:527 msgid "Behavior" msgstr "Comportamiento" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:528 msgid "Pronounce the word" msgstr "Pronunciar la palabra" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:529 msgid "Timeout before hide after mouse over" msgstr "Tiempo de espera antes de esconder el puntero del ratón" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:530 msgid "Don't hide" msgstr "No ocultar" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:531 msgid " seconds" msgstr " segundos" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:532 msgid "Show only if modifier pressed" msgstr "Mostrar solo si el modificador está presionado" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:537 msgid "Scan selection" msgstr "Escanear la selección" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:538 msgid "Show if word not found" msgstr "Mostrar si la palabra no es encontrada" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:539 msgid "Apperance" msgstr "Apariencia" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:540 msgid "Transparency" msgstr "Transparencia" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:542 msgid "Default width" msgstr "Ancho predeterminado" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:543 msgid "Default height" msgstr "Altura predeterminada" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:544 msgid "Popup window" msgstr "Ventana emergente" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:545 msgid "Preview" msgstr "Vista previa" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:546 msgid "Element" msgstr "Elemento" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:547 msgid "Select element" msgstr "Seleccionar elemento" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:548 msgid "Title" msgstr "Título" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:549 msgid "Explanation" msgstr "Explicación" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:550 msgid "Abbreviation" msgstr "Abreviación" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:551 msgid "Example" msgstr "Ejemplo" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:552 msgid "Transcription" msgstr "Transcripción" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:553 msgid "Select font" msgstr "Seleccionar fuente" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:554 msgid "Foreground" msgstr "Primer plano" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:555 msgid "Background" msgstr "Fondo" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:556 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:558 msgid "Click to select color" msgstr "Hacer clic para seleccionar color" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:560 msgid "Select font size" msgstr "Seleccione el tamaño de fuente" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:561 msgid "Bold" msgstr "Negrita" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:563 msgid "Italic" msgstr "Cursiva" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:565 msgid "Underline" msgstr "Subrayado" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:567 msgid "Size" msgstr "Tamaño" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:568 msgid "Font" msgstr "Tipo de letra" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:569 msgid "Appearance" msgstr "Apariencia" #: /home/igarcia/workspace/babiloo/qt/settings.py:70 msgid "The new language will be displayed after restarting the program." msgstr "El nuevo idioma estará disponible al reiniciar el programa." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:253 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:257 msgid "Clear the search box" msgstr "" "This requirement definition document defines the requirements from product " "development area specified by General Insurance product management in " "Partenon." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:254 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:258 msgid "Clear" msgstr "Borrar" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:255 msgid "Articles" msgstr "Artículos" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:256 msgid "History" msgstr "Historial" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:260 msgid "Search" msgstr "Buscar" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:266 msgid "&File" msgstr "&Archivo" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:267 msgid "&Help" msgstr "&Ayuda" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:268 msgid "&Settings" msgstr "&Configuración" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:270 msgid "&Quit" msgstr "&Salir" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:271 msgid "&About Babiloo" msgstr "&Acerca de Babiloo" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:272 msgid "&Configure Babiloo" msgstr "&Configurar Babiloo" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:273 msgid "&Scan" msgstr "&Explorar" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:274 msgid "Install from file..." msgstr "Instalar desde archivo..." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:275 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:276 msgid "Import" msgstr "Importar" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:277 msgid "Manage Dictionaries..." msgstr "Administrar diccionarios..." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:278 msgid "Visit HomePage" msgstr "Visitar la página web de Babiloo" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:279 msgid "Report A Problem" msgstr "Comunicar un problema" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:119 msgid "About Babiloo" msgstr "Acerca de Babiloo" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:142 msgid "&About" msgstr "&Acerca de" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "A&utores" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Acuerdo de licencia" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "&Cerrar" #: /home/igarcia/workspace/babiloo/qt/main.py:163 msgid "Building main dialog..." msgstr "Construyendo diálogo principal..." #: /home/igarcia/workspace/babiloo/qt/main.py:231 msgid "Go to &previous article" msgstr "Ir al artículo &anterior" #: /home/igarcia/workspace/babiloo/qt/main.py:236 msgid "Go to &next article" msgstr "Ir al artículo &siguiente" #: /home/igarcia/workspace/babiloo/qt/main.py:241 msgid "&Save to file" msgstr "&Guardar al archivo" #: /home/igarcia/workspace/babiloo/qt/main.py:246 msgid "Prin&t article" msgstr "&Imprimir artículo" #: /home/igarcia/workspace/babiloo/qt/main.py:251 msgid "Speak &word" msgstr "Pronunciar &palabra" #: /home/igarcia/workspace/babiloo/qt/main.py:329 msgid "New Version Detected" msgstr "Nueva Versión Detectada" #: /home/igarcia/workspace/babiloo/qt/main.py:330 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Una nueva versión de Babiloo ha salido a la luz.\n" "\n" "Versión nueva: %s\n" "Versión actual: %s\n" "\n" "Le gustaría descargar la nueva versión ahora?" #: /home/igarcia/workspace/babiloo/qt/main.py:430 msgid "Please load a dictionary first." msgstr "Por favor primero cargue un diccionario." #: /home/igarcia/workspace/babiloo/qt/main.py:439 #, python-format msgid "Error while loading the word %s" msgstr "Error mientras se cargaba la palabra %s" #: /home/igarcia/workspace/babiloo/qt/main.py:508 msgid "Import one or many dictionaries" msgstr "Importar uno o varios diccionarios" #: /home/igarcia/workspace/babiloo/qt/main.py:526 #, python-format msgid "%s was not loaded: %s" msgstr "%s no fue cargado: %s" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:23 msgid "Type" msgstr "Tipo" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:23 msgid "Dictionary name" msgstr "Nombre del diccionario" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:23 msgid "Total articles" msgstr "Artículos totales" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:128 msgid "Export dictionary as..." msgstr "Exportar diccionario como..." #: /home/igarcia/workspace/babiloo/qt/definitionView.py:17 msgid "Short Usage Information:" msgstr "Instrucciones de uso:" #: /home/igarcia/workspace/babiloo/qt/definitionView.py:18 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Para empezar usando un diccionario, seleccione uno del menú de " "Diccionarios." #: /home/igarcia/workspace/babiloo/qt/definitionView.py:19 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Para instalar un diccionario nuevo desde el internet, seleccione " "Organizar Diccionarios... y escoja uno de la pestaña Descargar " "Diccionarios." #: /home/igarcia/workspace/babiloo/qt/definitionView.py:20 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Para instalar un diccionario nuevo desde un archivo, seleccione Instalar " "de archivo... en el menú Diccionarios." #: /home/igarcia/workspace/babiloo/qt/definitionView.py:28 #, python-format msgid "The word %s is not found." msgstr "La palabra %s no ha sido encontrada." #: /home/igarcia/workspace/babiloo/qt/dictfilemanager.py:58 #, python-format msgid "Loading %s..." msgstr "Cargando %s..." babiloo-2.0.11/locale/te/LC_MESSAGES/babiloo.mo0000644000017300007100000000072411446175614020553 0ustar kmoskmos00000000000000$,89Project-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-01-24 16:48+0000 Last-Translator: FULL NAME Language-Team: Telugu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) babiloo-2.0.11/locale/te/LC_MESSAGES/babiloo.po0000644000017300007100000003106011446175614020553 0ustar kmoskmos00000000000000# Telugu translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-01-24 16:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "" #: ../qt/about_ui.py:142 msgid "&About" msgstr "" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "" #: ../qt/main.py:254 msgid "&Save to file" msgstr "" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "" #: ../qt/main.py:264 msgid "Speak &word" msgstr "" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr "" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "" #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "" #: ../qt/main_ui.py:259 msgid "History" msgstr "" #: ../qt/main_ui.py:263 msgid "Search" msgstr "" #: ../qt/main_ui.py:269 msgid "&File" msgstr "" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "" #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/he/LC_MESSAGES/babiloo.mo0000644000017300007100000002034011446175614020533 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  Q] r ~      $     #?T[ j u2    ?^m06  %;Un wp* )!2T]fv7 %09Rp   )-= kx4&B Zey!() -3aj+@)B Ydl / 6 R p } +   g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-10-29 21:24+0000 Last-Translator: Yinon Ehrlich Language-Team: Hebrew MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) שניות%s לא נטען: %s&ביטול&אודות&אודות Babiloo&סגירהה&גדרת Babiloo&קובץע&זרה&הסכם רישויי&ציאה&שמירה לקובץ&סריקהה&גדרותאותרה גירסה חדשה של Babiloo. גירסה חדשה: %s גירסה נוכחית: %s האם ברצונך להוריד את הגירסה החדשה כעת?יו&צריםקיצוראודות Babilooהתרעהחזותחזותמאמריםהשלמה אוטומטיתהגדרות Babilooרקעהתנהגותמודגשעיון...בניית תיבת הדו־שיח הראשית...ביטולתלוי רישיותריקוןריקון תיבת החיפושלחיצה לבחירת צבעגובה ברירת המחדלרוחב ברירת המחדלמילוניםשם המילוןמילון שאינו ניתן להתקנה: %sהתיקייה בה מאוחסנים המילונים:ללא הסתרהמטההורדההורדת מילוניםהורדת מילוןבתהליכי הורדהמוריד קבצים...רכיבשגיאהארעה שגיאה בעת הנסיון לטעינת המילון. הקובץ פגום או שאינו נתמך.שגיאה בעת טעינת המילה %sדוגמההסברייצוא המילון בשם...גופןחזיתמהקישור:מהרשימה:הגדרות כלליותמעבר למאמר ה&באמעבר למאמר ה&קודםהיסטוריההתעלמות מסימנים מערב אירופאיםייבואמידעהתקנה מקובץ...מילונים מותקניםשפת המנשק:נטויכתובת הקישור ריקה%s בתהליכי טעינה...ניהול המילונים...הזז מטההזז מעלהאותרה גירסה חדשהמדריך פתוחנא לטעון את המילון תחילה.תוספיםחלון מוקפץתצוגה מקדימהה&דפסת מאמרהגיית המילההגיית המילים באמצעות הפקודה:דווח על תקלההמילונים נסרקים מחדשסריקת הבחירהחיפושבחירת רכיבבחירת גופןבחירת גודל הגופןנתוני שימוש קצרים:יוצג אם המילה לא נמצאההצגת מידעהצגת מידע אודות המילוןהצגה רק אם נלחץ מקש החלפהגודלאמירת &מילהההורדה מתחילה (%s בתים) ...השפה החדשה תוצג לאחר איתחול התוכנה.המילה %s אינה נמצאת.משך הזמן בטרם ההסתרה לאחר מעבר העכברכותרתכדי להתקין מילון חדש מהאינטרנט, יש לבחור ב־ניהול מילונים... ולבחור באחד מהלשונית הורדת מילוניםכדי להתקין מילון חדש מקובץ, יש לבחור ב־התקנה מקובץ... מהתפריט מילוניםכדי להתחיל להשתמש במילון, יש לבחור באחד מהתפריט מילוניםסך כל המאמריםכתבתרגם יישום זה...תרגום יישום זה...שקיפותסוגלא ניתן לטעון את הקובץ %sקו תחתימעלהבקר באתר הביתbabiloo-2.0.11/locale/he/LC_MESSAGES/babiloo.po0000644000017300007100000003720511446175614020546 0ustar kmoskmos00000000000000# Hebrew translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-10-29 21:24+0000\n" "Last-Translator: Yinon Ehrlich \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "אודות Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&אודות" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "יו&צרים" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&הסכם רישוי" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&סגירה" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "בניית תיבת הדו־שיח הראשית..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "מעבר למאמר ה&קודם" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "מעבר למאמר ה&בא" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&שמירה לקובץ" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "ה&דפסת מאמר" #: ../qt/main.py:264 msgid "Speak &word" msgstr "אמירת &מילה" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "אותרה גירסה חדשה" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "אותרה גירסה חדשה של Babiloo.\n" "\n" "גירסה חדשה: %s\n" "גירסה נוכחית: %s\n" "\n" "האם ברצונך להוריד את הגירסה החדשה כעת?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "שגיאה" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "נא לטעון את המילון תחילה." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "שגיאה בעת טעינת המילה %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "ארעה שגיאה בעת הנסיון לטעינת המילון.\n" "הקובץ פגום או שאינו נתמך." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s לא נטען: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "מידע" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "נתוני שימוש קצרים:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "כדי להתחיל להשתמש במילון, יש לבחור באחד מהתפריט מילונים" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "כדי להתקין מילון חדש מהאינטרנט, יש לבחור ב־ניהול מילונים... ולבחור " "באחד מהלשונית הורדת מילונים" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "כדי להתקין מילון חדש מקובץ, יש לבחור ב־התקנה מקובץ... מהתפריט " "מילונים" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "המילה %s אינה נמצאת." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "הגדרות Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "שפת המנשק:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "תרגום יישום זה..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "תלוי רישיות" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "השלמה אוטומטית" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "התעלמות מסימנים מערב אירופאים" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "הגיית המילים באמצעות הפקודה:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "הגדרות כלליות" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "הזז מעלה" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "מעלה" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "הזז מטה" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "מטה" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "הצגת מידע אודות המילון" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "הצגת מידע" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "התיקייה בה מאוחסנים המילונים:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "עיון..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "מילונים מותקנים" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "מהקישור:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "הורדת מילון" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "מהרשימה:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "הורדה" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "הורדת מילונים" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "מילונים" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "תוספים" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "התנהגות" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "הגיית המילה" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "משך הזמן בטרם ההסתרה לאחר מעבר העכבר" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "ללא הסתרה" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " שניות" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "הצגה רק אם נלחץ מקש החלפה" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "סריקת הבחירה" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "יוצג אם המילה לא נמצאה" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "חזות" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "שקיפות" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "רוחב ברירת המחדל" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "גובה ברירת המחדל" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "חלון מוקפץ" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "תצוגה מקדימה" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "רכיב" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "בחירת רכיב" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "כותרת" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "הסבר" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "קיצור" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "דוגמה" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "כתב" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "בחירת גופן" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "חזית" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "רקע" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "לחיצה לבחירת צבע" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "בחירת גודל הגופן" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "מודגש" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "נטוי" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "קו תחתי" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "גודל" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "גופן" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "חזות" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "ביטול" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "%s בתהליכי טעינה..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "ריקון תיבת החיפוש" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "ריקון" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "מאמרים" #: ../qt/main_ui.py:259 msgid "History" msgstr "היסטוריה" #: ../qt/main_ui.py:263 msgid "Search" msgstr "חיפוש" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&קובץ" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "ע&זרה" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "ה&גדרות" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "י&ציאה" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&אודות Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "ה&גדרת Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&סריקה" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "התקנה מקובץ..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "ייבוא" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "ניהול המילונים..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "בקר באתר הבית" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "דווח על תקלה" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "תרגם יישום זה..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "מוריד קבצים..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&ביטול" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "בתהליכי הורדה" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "ההורדה מתחילה (%s בתים) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "לא ניתן לטעון את הקובץ %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "כתובת הקישור ריקה" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "מילון שאינו ניתן להתקנה:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "המילונים נסרקים מחדש" #: ../qt/settings.py:82 msgid "Alert" msgstr "התרעה" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "השפה החדשה תוצג לאחר איתחול התוכנה." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "מדריך פתוח" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "סוג" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "שם המילון" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "סך כל המאמרים" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "ייצוא המילון בשם..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/uz/LC_MESSAGES/babiloo.mo0000644000017300007100000000514711446175614020605 0ustar kmoskmos00000000000000 +   $28PV kx @ BHc      "71P.= # . ;\(w/ l$H m / % 8.       &About&About Babiloo&Close&Configure Babiloo&File&Help&Quit&Scan&SettingsA&uthorsAbout BabilooAlertBuilding main dialog...ClearClear the search boxDictionariesDictionary nameExport dictionary as...HistoryImportInstall from file...Loading %s...Manage Dictionaries...Report A ProblemSearchThe new language will be displayed after restarting the program.The word %s is not found.To start using dictionary, select one from the Dictionaries menu.Translate This Application...TypeVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-03-26 09:33+0000 Last-Translator: Akmal Xushvaqov Language-Team: Uzbek MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) &ҲақидаBabiloo &ҳақида&ЁпишBabiloo'ни &мослаш&Файл&Ёрдам&Чиқиш&Scan&МосламаларМ&уаллифларBabiloo ҳақидаОгоҳлантиришАсосий диалог тузилмоқда...ТозалашҚидирув қутисини тозалашЛуғатларЛуғат номи... сифатида луғатни экспорт қилишТарихИмпорт...файлдан ўрнатиш%s юкланмоқда......луғатларни бошқаришМуаммо ҳақида хабар беришИзлашДастур қайтадан ишга туширилгандан сўнг янги тил кўринади.%sсўзи топилмадиЛуғатдан фойдаланишни бошлаш учун Луғатлар менюсидан бирини танланг..... дастурни таржима қилишТуриАсоси й саҳифага ташриф буюришbabiloo-2.0.11/locale/uz/LC_MESSAGES/babiloo.po0000644000017300007100000003300111446175614020576 0ustar kmoskmos00000000000000# Uzbek translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-03-26 09:33+0000\n" "Last-Translator: Akmal Xushvaqov \n" "Language-Team: Uzbek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Babiloo ҳақида" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Ҳақида" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "М&уаллифлар" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Ёпиш" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Асосий диалог тузилмоқда..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "" #: ../qt/main.py:254 msgid "&Save to file" msgstr "" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "" #: ../qt/main.py:264 msgid "Speak &word" msgstr "" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Луғатдан фойдаланишни бошлаш учун Луғатлар менюсидан бирини танланг." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "%sсўзи топилмади" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Луғатлар" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr "" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "%s юкланмоқда..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Қидирув қутисини тозалаш" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Тозалаш" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "" #: ../qt/main_ui.py:259 msgid "History" msgstr "Тарих" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Излаш" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Файл" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Ёрдам" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Мосламалар" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Чиқиш" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "Babiloo &ҳақида" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "Babiloo'ни &мослаш" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Scan" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "...файлдан ўрнатиш" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Импорт" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "...луғатларни бошқариш" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Асоси й саҳифага ташриф буюриш" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Муаммо ҳақида хабар бериш" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr ".... дастурни таржима қилиш" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "Огоҳлантириш" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Дастур қайтадан ишга туширилгандан сўнг янги тил кўринади." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Тури" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Луғат номи" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "... сифатида луғатни экспорт қилиш" #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/pl/LC_MESSAGES/babiloo.mo0000644000017300007100000001503611446175614020560 0ustar kmoskmos00000000000000nP Q Z b d k z             ' 4 6 > O Z c h w }         2 : E@            > C X o         # D U d k z     !  5 :@F $l]H "0 N[` blo~  &1:OU \fo     !  BLk    #H* s} "#/'6^cy% '2; N(\,  9Ec5:)/1ahcJM  h:M ` *8%GJ<jAefdDC')3@KiN(#Vc&4_?$62OW-[X95kQ] mPS^"UFI+E.>7a/Z!\ nH B1T =LRl,Y0gb; seconds#000000%&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&Settings...A&uthorsAbbreviationAbout BabilooAlertAltAppearanceApperanceArticlesAutoCompleteBBabilooBabiloo SettingsBackgroundBehaviorBoldCase sensitiveClearClear the search boxClick to select colorConfigureConfigure pluginControlCtrl+QDefault heightDefault widthDictionariesDictionary nameDon't hideDownDownload DictionariesElementErrorError trying to load the dictionary. File corrupted or not supported.ExampleExplanationExport dictionary as...FontForegroundGlobal settingsGo to &next articleGo to &previous articleHistoryIIgnore accentsImportImport one or many dictionariesInfoInstall from file...Installed DictionariesInterface Language:ItalicLoading %s...Manage Dictionaries...Move downMove upPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemScan selectionSearchSelect elementSelect fontSelect font sizeShiftShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow information about pluginShow only if modifier pressedSizeSpeak &wordThe new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...TransparencyTypeUUnderlineUpVisit HomePageWinProject-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-02-07 16:51+0000 Last-Translator: jeremiPL Language-Team: LANGUAGE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-02-08 12:44+0000 X-Generator: Launchpad (build Unknown) sekund#000000%&O QStarDict&O Babiloo&Zamknij&Skonfiguruj Babiloo&Plik&Pomoc&Licencja&Zamknij&Zapisz do pliku&Skanuj&Ustawienia...A&utorzySkrótO BabilooAlarmAltWyglądWyglądArtykułyAutouzupełnianieBBabilooUstawienia BabilooTłoZachowaniePogrubionaRozróżniaj małe i duże literyWyczyśćWyczyść okienko wyszukiwaniaKliknij by wybrać kolorKonfigurujKonfiguruj wtyczkęControlCtrl+QDomyślna wysokośćDomyślna szerokośćSłownikiNazwa słownikaNie ukrywajDółPobierz słownikiElementBłądBłąd podczas ładowania słownika. Plik zepsuty, lub nie obsługiwany.PrzykładWytłumaczenieEksportuj słownik jako...CzcionkaPierwszy planGlobalne opcjePrzejdź do &następnego artykułuPrzejdź do &poprzedniego artykułuHistoriaIIgnoruj akcentyImportZaimportuj jeden, lub wiele słownikówInfoZainstaluj z pliku...Zainstalowane słownikiJęzyk interfejsu:PochyłaWczytywanie %s...Zarządzaj SłownikamiPrzesuń w dółPrzesuń w góręProszę najpierw załadować katalog.WtyczkiOkno popupPodglądWydruku&j artykułWymów słowoWymów słowo używając tego polecenia:Zgłoś problemSkanuj zaznaczenieSzukajWybierz elementWybierz czcionkęWybierz rozmiar czionkiShiftKrótka instrukcja obsługi:Pokaż jeśli słowo nie zostało znalezionePokaż infoPokaż informacje o słownikuPokaż informacje o wtyczcePokaż tylko jeśli modyfikator zostanie naciśniętyRozmiarWymów sło&woNowy język pojawi się po ponownym uruchomieniu programu.Słowo %s nie zostało znalezione.Opóźnienie zanim ukryje po najechaniu myszkąTytułŻeby zainstalować nowy słownik z internetu, zaznacz "Zarządzaj słownikami...
i wybierz jeden z Pobierz słownikiBy zainstalować nowy słownik z pliku, zaznacz Instaluj z pliku... z menu Słowniki.Żeby zacząć używać słownik, wybierz jakiś, z menu Słowniki.Wszystkie artykułyTranskrypcjaPrzetłumacz ten program...PrzeźroczystośćTypUPodkreślonaGóraOdwiedź stronę domowąWinbabiloo-2.0.11/locale/pl/LC_MESSAGES/babiloo.po0000644000017300007100000003726411443252104020555 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-02-07 16:51+0000\n" "Last-Translator: jeremiPL \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-02-08 12:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "Babiloo" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "Wyczyść okienko wyszukiwania" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "Wyczyść" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "Artykuły" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "Historia" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "Szukaj" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "&Plik" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "&Pomoc" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "&Ustawienia" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "Słowniki" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "&Zamknij" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "Ctrl+Q" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "&O Babiloo" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "&Skonfiguruj Babiloo" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "&Skanuj" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "Zainstaluj z pliku..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "Import" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "Zarządzaj Słownikami" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "Odwiedź stronę domową" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "Zgłoś problem" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "Przetłumacz ten program..." #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "O Babiloo" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "&O QStarDict" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "A&utorzy" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Licencja" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "&Zamknij" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "Alarm" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "Nowy język pojawi się po ponownym uruchomieniu programu." #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "Typ" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "Nazwa słownika" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "Wszystkie artykuły" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "Eksportuj słownik jako..." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "Krótka instrukcja obsługi:" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "Żeby zacząć używać słownik, wybierz jakiś, z menu Słowniki." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Żeby zainstalować nowy słownik z internetu, zaznacz \"Zarządzaj " "słownikami...
i wybierz jeden z Pobierz słowniki" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "By zainstalować nowy słownik z pliku, zaznacz Instaluj z pliku... z " "menu Słowniki." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "Słowo %s nie zostało znalezione." #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "Wczytywanie %s..." #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "Przejdź do &poprzedniego artykułu" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "Przejdź do &następnego artykułu" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "&Zapisz do pliku" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "Wydruku&j artykuł" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "Wymów sło&wo" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "Błąd" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "Proszę najpierw załadować katalog." #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "Zaimportuj jeden, lub wiele słowników" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Błąd podczas ładowania słownika.\n" "Plik zepsuty, lub nie obsługiwany." #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "Ustawienia Babiloo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "Język interfejsu:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "Rozróżniaj małe i duże litery" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "Autouzupełnianie" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "Ignoruj akcenty" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "Wymów słowo używając tego polecenia:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "Globalne opcje" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "Przesuń w górę" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "Góra" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "Przesuń w dół" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "Dół" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "Pokaż informacje o słowniku" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "Pokaż info" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "Zainstalowane słowniki" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "Pobierz słowniki" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "Wtyczki" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "Pokaż informacje o wtyczce" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "Info" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "Konfiguruj wtyczkę" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "Konfiguruj" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "Zachowanie" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "Wymów słowo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "Opóźnienie zanim ukryje po najechaniu myszką" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "Nie ukrywaj" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr " sekund" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "Pokaż tylko jeśli modyfikator zostanie naciśnięty" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "Alt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "Control" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "Shift" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "Win" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "Skanuj zaznaczenie" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "Pokaż jeśli słowo nie zostało znalezione" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "Wygląd" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "Przeźroczystość" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "%" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "Domyślna szerokość" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "Domyślna wysokość" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "Okno popup" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "Podgląd" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "Element" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "Wybierz element" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "Tytuł" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "Wytłumaczenie" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "Skrót" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "Przykład" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 msgid "Transcription" msgstr "Transkrypcja" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "Wybierz czcionkę" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "Pierwszy plan" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "Tło" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "Kliknij by wybrać kolor" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "#000000" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "Wybierz rozmiar czionki" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "Pogrubiona" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "B" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "Pochyła" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "I" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "Podkreślona" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "U" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "Rozmiar" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "Czcionka" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "Wygląd" #~ msgid "Fuzzy query" #~ msgstr "Mętne zapytanie" #~ msgid " sec" #~ msgstr " sec" #~ msgid "Opacity" #~ msgstr "Nieprzezroczystość" #~ msgid "Save translation" #~ msgstr "Zapisz tłumaczenie" #~ msgid "HTML files (*.html, *.htm)" #~ msgstr "Pliki HTML (*.html, *.htm)" #~ msgid "Text files (*.txt)" #~ msgstr "Pliki tekstowe (*.txt)" #~ msgid "Cannot save translation as %s" #~ msgstr "Nie mogę zapisać tłumaczenia jako %s" #~ msgid "Go to &previous translation" #~ msgstr "Idź do &poprzedniego tłumaczenia" #~ msgid "Go to &next translation" #~ msgstr "Idź do &następnego tłumaczenia" #~ msgid "Prin&t translation" #~ msgstr "Drukuj &tłumaczenie" #~ msgid "About QStarDict" #~ msgstr "O QStarDict" #~ msgid "QStarDict %s - Qt version of StarDict
" #~ msgstr "QStarDict %s - StarDict wersja QT
" #~ msgid "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgstr "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgid "QStarDict" #~ msgstr "QStarDict" #~ msgid "%s - QStarDict" #~ msgstr "%s - QStarDict" #~ msgid "Words list" #~ msgstr "Lista słów" #~ msgid "About &Qt" #~ msgstr "O &Qt" #~ msgid "&Configure QStarDict" #~ msgstr "&Konfiguruj QStarDict" #~ msgid "Enabled" #~ msgstr "Włączone" #~ msgid "Name" #~ msgstr "Imię" #~ msgid "Plugin" #~ msgstr "Wtyczka" #~ msgid "Information about dictionary \"%s\"" #~ msgstr "Informacja o słowniku \"%s\"" #~ msgid "Name: %s
" #~ msgstr "Imię: %s
" #~ msgid "Plugin: %s
" #~ msgstr "Wtyczka: %s
" #~ msgid "unknown" #~ msgstr "nieznany" #~ msgid "Description: %s" #~ msgstr "Opis: %s" #~ msgid "Information about %s plugin" #~ msgstr "Informację o wtyczce %s" #~ msgid "Version: %s
" #~ msgstr "Wersja: %s
" #~ msgid "Authors: %s
" #~ msgstr "Autorzy: %s
" #~ msgid "
" #~ msgstr "
" #~ msgid "Can search similar words: %s
" #~ msgstr "Może wyszukać podobne słowa: %s
" #~ msgid "yes" #~ msgstr "tak" #~ msgid "no" #~ msgstr "nie" #~ msgid "QStarDict Settings" #~ msgstr "Ustawienia QStarDict" #~ msgid "Instant search" #~ msgstr "Błyskawiczne szukanie" #~ msgid "Author: %s
" #~ msgstr "Autor: %s
" #~ msgid "Words count: %s
" #~ msgstr "Ilość słów: %s
" #~ msgid "All translation" #~ msgstr "Wszystkie tłumaczenia" babiloo-2.0.11/locale/ps/LC_MESSAGES/babiloo.mo0000644000017300007100000001754211446175614020573 0ustar kmoskmos00000000000000id    ' . = D W ] c v |   % 2 @ F Q [ d q        & )< f q v         " - = Q i q x         ) 1 F f n {   #      &7P g!q $$@ /PVlHM  q ~     ! =I c m{*<L hu  & 94n<: L ZeD  %% K Xc r,&  04E a"#$FH  >',Cp*A@9Z/<^-t wK& 1ELN8K %Ec6"D\A4H=bZafJ?]!/<)IeL $-`@0;2.M3T'UV71YgP *OR[CG#iB(:5^+X dF >S 9hQ&W,_ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBoldBuilding main dialog...ClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary successfully installed: %sDictionary that coudn't be installed: %sDon't hideDownDownload DictionariesDownloadingDownloading files...ElementErrorError while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryImportImport one or many dictionariesInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionarySizeSpeak &wordStarting the download (%s bytes) ...The dictionary is already installed.The new language will be displayed after restarting the program.The word %s is not found.TitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranslate This Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: Babiloo Report-Msgid-Bugs-To: POT-Creation-Date: 2009-04-08 15:28+0100 PO-Revision-Date: 2009-04-09 18:31+0500 Last-Translator: Zabeeh Khan Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Basepath: . X-Poedit-SearchPath-0: /home/igarcia/workspace/babiloo/qt سېکنډونه%s ونه لېښل شوه: %sبندول&په اړه&د بېبيلو په اړه&بندول&بېبيلو سازول&دوتنه&مرسته&د منښتليک توکي&بندول&دوتنې کې ساتل&ځېرل&امستنې&د بېبيلو يوه نوې نسخه خوشې کړی شوې ده. %s نوې نسخه: %s اوسنۍ نسخه: غواړﺉ چې اوس يې نوې نسخه رولېښﺉ؟ليکوالان&لنډه بڼهد بېبيلو په اړهخبرتياښکارېدنهښکارېدنهليکنېخپله بشپړولد بېبيلو امستنېشاليدډبلاره کړکۍ جوړول کيږي...پاکوللټون بکس پاکولد رنګ د ټاکلو دپاره دلته کېکاږﺉتلواله اوږدوالیتلواله پلنوالیويېپانګېد ويېپانګې نومويېپانګه په بريا سره ولګول شوه: %sهغه ويېپانګه چې ونه لګولی شوه: %sنه پټوللاندېويېپانګې رالېښللېښل کيږيدوتنې لېښل کيږيتوکیتېروتنهويې په لېښلو کې ستونزه رامنځته شوه %s دبېلګهسپړنهويېپانګه بهرول لکه...ليکبڼهمخليدله تړنې:له لړه:ټولګړې امستنې&راتلونکې ليکنې ته ورتلل&مخکنۍ ليکنې ته ورتللمخينهراوړليوه يا ډېرې ويېپانګې راوړلخبرتياوېله دوتنې لګول...لګول شوې ويېپانګېد برسېر ژبه:کوږد تړنې پته تشه ده...لېښل کيږي ‎%sويېپانګه سمبالول...لاندې خوځولپاس خوځولنوې نسخه وموندل شوهلورينه وکړﺉ لومړی يوه ويېپانګه ولېښﺉ.لګونونهبړبوکيزه کړکۍمخکوتليکنه چاپول&ويې وېلد دې بولۍ په کارولو سره ويېونه وېل:ستونزه راپورولويېپانګې بيا ځېرل کيږي...ټاکنه لټوللټولتوکی ټاکلليکبڼه ټاکلد ليکبڼې کچ ټاکلد کارونې لنډې خبرتياوې:که چېرې ويې ونه موندل شوه، وويې ښييهخبرتياوې ښودلد ويېپانګې په اړه خبرتياوې ښودلکچويې &وېل باېټه)... %sرالېښنه پېليږي (دا ويېپانګه د مخکې نه لګول شوې ده.نوې ژبه به د کاريال د بيا پېلولو څخه وروسته وښودل شي..ويې ونه موندل شوه ‎%sسرليک.ټوپ څخه يوه وټاکﺉ ‎ويېپانګې رالېښل‎ وټاکﺉ او بيا د‎ ويېپانګې سمبالول...‎ له انټرنېټ څخه د نوې ويېپانګې د رالېښلو لپاره.وټاکﺉ ‎له دوتنې لګول‎ غورنۍ څخه ‎ويېپانګې‎ له دوتنې څخه د نوې ويېپانګې د لګولو لپاره، د.غورنۍ څخه يوه وټاکﺉ‎ ويېپانګې‎ د ويېپانګې د کارولو لپاره، دټولې ليکنېدا کاريال ژباړلروڼوالیډولدوتنه نه شي رالېښلی %sلاندې کرښهپاسکورپاڼه کتلbabiloo-2.0.11/locale/ps/LC_MESSAGES/babiloo.po0000644000017300007100000004011711443252104020553 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: Babiloo\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-04-08 15:28+0100\n" "PO-Revision-Date: 2009-04-09 18:31+0500\n" "Last-Translator: Zabeeh Khan \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Basepath: .\n" "X-Poedit-SearchPath-0: /home/igarcia/workspace/babiloo/qt\n" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:222 msgid "Downloading files..." msgstr "دوتنې لېښل کيږي" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:222 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:342 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:77 msgid "&Abort" msgstr "بندول&" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:223 msgid "Downloading" msgstr "لېښل کيږي" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:236 #, python-format msgid "Starting the download (%s bytes) ..." msgstr " باېټه)... %sرالېښنه پېليږي (" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:267 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:282 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:293 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:300 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:316 #: /home/igarcia/workspace/babiloo/qt/main.py:430 #: /home/igarcia/workspace/babiloo/qt/main.py:439 #: /home/igarcia/workspace/babiloo/qt/main.py:514 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:91 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:131 msgid "Error" msgstr "تېروتنه" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:267 #, python-format msgid "Unable to download file %s" msgstr "دوتنه نه شي رالېښلی %s" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:282 #: /home/igarcia/workspace/babiloo/qt/main.py:514 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:284 #: /home/igarcia/workspace/babiloo/qt/settings.py:70 #: /home/igarcia/workspace/babiloo/qt/main.py:541 msgid "Alert" msgstr "خبرتيا" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:284 msgid "The dictionary is already installed." msgstr "دا ويېپانګه د مخکې نه لګول شوې ده." #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:291 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:334 #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:343 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:78 msgid "Info" msgstr "خبرتياوې" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:291 #: /home/igarcia/workspace/babiloo/qt/main.py:538 #, python-format msgid "" "Dictionary successfully installed:\n" " %s" msgstr "" "ويېپانګه په بريا سره ولګول شوه:\n" " %s" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:293 #: /home/igarcia/workspace/babiloo/qt/main.py:540 #, python-format msgid "" "Dictionary that coudn't be installed:\n" " %s" msgstr "" "هغه ويېپانګه چې ونه لګولی شوه:\n" " %s" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:300 msgid "Link address is empty" msgstr "د تړنې پته تشه ده" #: /home/igarcia/workspace/babiloo/qt/onlineDictionariesView.py:342 #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:77 msgid "Rescanning dictionaries..." msgstr "ويېپانګې بيا ځېرل کيږي..." #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:492 msgid "Babiloo Settings" msgstr "د بېبيلو امستنې" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:493 msgid "Interface Language:" msgstr "د برسېر ژبه:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:494 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:280 msgid "Translate This Application..." msgstr "دا کاريال ژباړل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:495 msgid "Case sensitive" msgstr "" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:496 msgid "AutoComplete" msgstr "خپله بشپړول" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:497 msgid "Ignore accents" msgstr "" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:498 msgid "Pronounce words using this command:" msgstr "د دې بولۍ په کارولو سره ويېونه وېل:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:499 msgid "Global settings" msgstr "ټولګړې امستنې" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:502 msgid "Move up" msgstr "پاس خوځول" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:503 msgid "Up" msgstr "پاس" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:504 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:514 msgid "Move down" msgstr "لاندې خوځول" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:505 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:515 msgid "Down" msgstr "لاندې" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:506 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:516 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:523 msgid "Show information about dictionary" msgstr "د ويېپانګې په اړه خبرتياوې ښودل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:507 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:517 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:524 msgid "Show info" msgstr "خبرتياوې ښودل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:510 msgid "Installed Dictionaries" msgstr "لګول شوې ويېپانګې" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:511 msgid "From link:" msgstr "له تړنې:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:513 msgid "From list:" msgstr "له لړه:" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:519 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:281 msgid "Download Dictionaries" msgstr "ويېپانګې رالېښل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:520 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:269 msgid "Dictionaries" msgstr "ويېپانګې" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:526 msgid "Plugins" msgstr "لګونونه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:527 msgid "Behavior" msgstr "" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:528 msgid "Pronounce the word" msgstr "ويې وېل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:529 msgid "Timeout before hide after mouse over" msgstr "" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:530 msgid "Don't hide" msgstr "نه پټول" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:531 msgid " seconds" msgstr " سېکنډونه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:532 msgid "Show only if modifier pressed" msgstr "" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:537 msgid "Scan selection" msgstr "ټاکنه لټول" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:538 msgid "Show if word not found" msgstr "که چېرې ويې ونه موندل شوه، وويې ښييه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:539 msgid "Apperance" msgstr "ښکارېدنه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:540 msgid "Transparency" msgstr "روڼوالی" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:542 msgid "Default width" msgstr "تلواله پلنوالی" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:543 msgid "Default height" msgstr "تلواله اوږدوالی" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:544 msgid "Popup window" msgstr "بړبوکيزه کړکۍ" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:545 msgid "Preview" msgstr "مخکوت" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:546 msgid "Element" msgstr "توکی" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:547 msgid "Select element" msgstr "توکی ټاکل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:548 msgid "Title" msgstr "سرليک" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:549 msgid "Explanation" msgstr "سپړنه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:550 msgid "Abbreviation" msgstr "لنډه بڼه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:551 msgid "Example" msgstr "بېلګه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:552 msgid "Transcription" msgstr "" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:553 msgid "Select font" msgstr "ليکبڼه ټاکل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:554 msgid "Foreground" msgstr "مخليد" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:555 msgid "Background" msgstr "شاليد" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:556 #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:558 msgid "Click to select color" msgstr "د رنګ د ټاکلو دپاره دلته کېکاږﺉ" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:560 msgid "Select font size" msgstr "د ليکبڼې کچ ټاکل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:561 msgid "Bold" msgstr "ډبل" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:563 msgid "Italic" msgstr "کوږ" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:565 msgid "Underline" msgstr "لاندې کرښه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:567 msgid "Size" msgstr "کچ" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:568 msgid "Font" msgstr "ليکبڼه" #: /home/igarcia/workspace/babiloo/qt/settings_ui.py:569 msgid "Appearance" msgstr "ښکارېدنه" #: /home/igarcia/workspace/babiloo/qt/settings.py:70 msgid "The new language will be displayed after restarting the program." msgstr "نوې ژبه به د کاريال د بيا پېلولو څخه وروسته وښودل شي." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:253 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:257 msgid "Clear the search box" msgstr "لټون بکس پاکول" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:254 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:258 msgid "Clear" msgstr "پاکول" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:255 msgid "Articles" msgstr "ليکنې" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:256 msgid "History" msgstr "مخينه" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:260 msgid "Search" msgstr "لټول" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:266 msgid "&File" msgstr "دوتنه&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:267 msgid "&Help" msgstr "مرسته&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:268 msgid "&Settings" msgstr "امستنې&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:270 msgid "&Quit" msgstr "بندول&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:271 msgid "&About Babiloo" msgstr "د بېبيلو په اړه&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:272 msgid "&Configure Babiloo" msgstr "بېبيلو سازول&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:273 msgid "&Scan" msgstr "ځېرل&" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:274 msgid "Install from file..." msgstr "له دوتنې لګول..." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:275 #: /home/igarcia/workspace/babiloo/qt/main_ui.py:276 msgid "Import" msgstr "راوړل" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:277 msgid "Manage Dictionaries..." msgstr "ويېپانګه سمبالول..." #: /home/igarcia/workspace/babiloo/qt/main_ui.py:278 msgid "Visit HomePage" msgstr "کورپاڼه کتل" #: /home/igarcia/workspace/babiloo/qt/main_ui.py:279 msgid "Report A Problem" msgstr "ستونزه راپورول" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:119 msgid "About Babiloo" msgstr "د بېبيلو په اړه" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:142 msgid "&About" msgstr "په اړه&" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "ليکوالان&" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "د منښتليک توکي&" #: /home/igarcia/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "بندول&" #: /home/igarcia/workspace/babiloo/qt/main.py:163 msgid "Building main dialog..." msgstr "اره کړکۍ جوړول کيږي..." #: /home/igarcia/workspace/babiloo/qt/main.py:231 msgid "Go to &previous article" msgstr "&مخکنۍ ليکنې ته ورتلل" #: /home/igarcia/workspace/babiloo/qt/main.py:236 msgid "Go to &next article" msgstr "&راتلونکې ليکنې ته ورتلل" #: /home/igarcia/workspace/babiloo/qt/main.py:241 msgid "&Save to file" msgstr "دوتنې کې ساتل&" #: /home/igarcia/workspace/babiloo/qt/main.py:246 msgid "Prin&t article" msgstr "ليکنه چاپول&" #: /home/igarcia/workspace/babiloo/qt/main.py:251 msgid "Speak &word" msgstr "ويې &وېل" #: /home/igarcia/workspace/babiloo/qt/main.py:329 msgid "New Version Detected" msgstr "نوې نسخه وموندل شوه" #: /home/igarcia/workspace/babiloo/qt/main.py:330 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "د بېبيلو يوه نوې نسخه خوشې کړی شوې ده.\n" "\n" "%s نوې نسخه:\n" "%s اوسنۍ نسخه:\n" "\n" "غواړﺉ چې اوس يې نوې نسخه رولېښﺉ؟" #: /home/igarcia/workspace/babiloo/qt/main.py:430 msgid "Please load a dictionary first." msgstr "لورينه وکړﺉ لومړی يوه ويېپانګه ولېښﺉ." #: /home/igarcia/workspace/babiloo/qt/main.py:439 #, python-format msgid "Error while loading the word %s" msgstr "ويې په لېښلو کې ستونزه رامنځته شوه %s د" #: /home/igarcia/workspace/babiloo/qt/main.py:508 msgid "Import one or many dictionaries" msgstr "يوه يا ډېرې ويېپانګې راوړل" #: /home/igarcia/workspace/babiloo/qt/main.py:526 #, python-format msgid "%s was not loaded: %s" msgstr "%s ونه لېښل شوه: %s" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:23 msgid "Type" msgstr "ډول" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:23 msgid "Dictionary name" msgstr "د ويېپانګې نوم" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:23 msgid "Total articles" msgstr "ټولې ليکنې" #: /home/igarcia/workspace/babiloo/qt/dictionariesview.py:128 msgid "Export dictionary as..." msgstr "ويېپانګه بهرول لکه..." #: /home/igarcia/workspace/babiloo/qt/definitionView.py:17 msgid "Short Usage Information:" msgstr "د کارونې لنډې خبرتياوې:" #: /home/igarcia/workspace/babiloo/qt/definitionView.py:18 msgid "To start using dictionary, select one from the Dictionaries menu." msgstr ".غورنۍ څخه يوه وټاکﺉ‎ ويېپانګې‎ د ويېپانګې د کارولو لپاره، د" #: /home/igarcia/workspace/babiloo/qt/definitionView.py:19 msgid "To install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab." msgstr ".ټوپ څخه يوه وټاکﺉ ‎ويېپانګې رالېښل‎ وټاکﺉ او بيا د‎ ويېپانګې سمبالول...‎ له انټرنېټ څخه د نوې ويېپانګې د رالېښلو لپاره" #: /home/igarcia/workspace/babiloo/qt/definitionView.py:20 msgid "To install a new dictionary from file, select Install from file... from the Dictionaries menu." msgstr ".وټاکﺉ ‎له دوتنې لګول‎ غورنۍ څخه ‎ويېپانګې‎ له دوتنې څخه د نوې ويېپانګې د لګولو لپاره، د" #: /home/igarcia/workspace/babiloo/qt/definitionView.py:28 #, python-format msgid "The word %s is not found." msgstr ".ويې ونه موندل شوه ‎%s" #: /home/igarcia/workspace/babiloo/qt/dictfilemanager.py:58 #, python-format msgid "Loading %s..." msgstr "...لېښل کيږي ‎%s" babiloo-2.0.11/locale/ay/LC_MESSAGES/babiloo.mo0000644000017300007100000002103411446175614020551 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  ny     - >K! 2@T]fn  ' CNf 0 - 4>X ju  Q r z 3G`ox (<NN    *K ^i}26.e k#xcD2E xB c! |!"!!!!!!!!g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: Amos Batto POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-06-06 05:09+0000 Last-Translator: amosbatto Language-Team: Runasimipi.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) k'atanaka%s janiw q'ipxarutakiti: %sJan &munaña&Aka tuqita&Babiloon yatiyawipa...&Jist'antaña&Babiloo qutu ajllita...&Kipu&Yanapa&Iyawsat kamich Babiloota&Mistuña&Kipur imaña&Thaqhat ullañaAjllita&nakaMä machaq amuy babiloox qhanaruw mistu. Machaq amuyu: %s Jichha amuyu: %s jichhax machaq amuy apaqañ munasmati? Una nueva versión de Babiloo ha salido a la luz. Le gustaría descargar la nueva versión ahora?&P'iqinchirinakaJisk'aptayawiBabiloon yatiyawipaYatiyawi&UyñaqaUyñaqa&Jach'a amuyunaka&Sapak phuqhachasiriBabiloon ajllt'atanakapaSami qhipaxaSarawinak uñacht'ayiriCh'iyara&Yant'aw uñjaña...Nayrir sarantayañ wintana...Janiw saña&Jisk'a jach'a qillqanak sum uñakipawiPhiskhuñaAru thaqhañ phiskhuñaKliktayaña sami ajlliñatakiNayraqat ajllit ukch'a alayaNayraqat ajllit anchu&ArupirwanakaArupirwan sutipaAka arupirwanakax janiraw achuntayañjakiti: %sArupirwanak imañ tuqi:Jan imantañaManqhaWaraqañaArupirwanak &waraqaña...Arupirw waraqañaApaqaskiwaKipunak q'ipnuqaña...Mä t'aqaPhantjataPantjawi arupirwa q'ipiqañ yant'askasa. Jan aski kipu. Error intentando cargar el diccionario. Archivo corrupto o no válido."%s" aru apaqañkamax pantjasiwiw utjawayi. Error mientras se cargaba la palabra.SañaniYatxatayäwiArupirw apsuña kunjama...Kastkast qilqanakaSami uñtaChinthapit tuqita:Tantachat tuqita:&Taqi kun ajlliri&Qhipir jach'a amuyur saraña&Nayrir jach'a amuyur sarañaI&mat aru thaqhañaJan yaqkay qilqa &chimpuJayar apayañaYatiyawi&Kiputpach achuntayaña...A&rupirwanak achuntataBabiloon aru uñchawi:K'umjataChinthapita utjawix ch'usakiwa%s apkataskiwa...Arupirwanak &apnaqaña...MaqañaMaqhatañaMachaq amuy katjataWayaq jist'arañaAmpsum nayraqat mä arupirw q'ipiqam. Por favor primero cargue un diccionario.&Yapt'awinaka&Wintanat yaqha wintan misturiNayra uñjawiJach'a amuy &liq'iñaA&ru arsuñaAru sall amuy apnaqawi:Jan &walt'aw yatiyañaWiltat arupirwanak ullakipawi...Ajllit u&llakipiri&ThaqhañaMä t'aqat ajlliñaKast kast qilqanaka ajlliñaAjllt'am jisk' jach'a qilqanakaYatiyaw apnaqaña:&Janitix qillt'atax katuyaski ukax uñacht'ayipanaYatiyaw uñachayiriArupirw tuqit uñachayiri&Kunapachatix limt'añ limtáskix ukhakiw uñacht'äyiTansa&Aru arsuña(%s bytes) apaqawix qalltaskiwa ...Machaq arux wasitat uǹacht'ayataniwa. El nuevo idioma estará disponible al reiniciar el programa.%s arux janiw jikxataskiti. La palabra no ha sido encontrada.Pacha suyt'a, janir achakun uñachawip imantkasinaP'iqiñchawiMachaq arupiw achuntayañatakix intirnitatpach, Arupirwanak apnaqaña... ajllim. Ukat Arupirwanak waraqaña laphimanqhat mä arupirw ajllima. Para instalar un diccionario nuevo desde el internet, seleccione Arupirwanak apnaqaña... y escoja un diccionario de la pestaña Arupirwanak waraqaña.Kiputpach machaq arupiw achuntayañatakixa, Arupirwanaka siski ukar saräma, ukatx Kiputpach achuntayaña... ajllima. Para instalar un diccionario nuevo desde un archivo, seleccione Kiputpach achuntayaña... en el menú Arupirwanaka.Aru pirw apnaqañatakix maynir Arupirwanaka chhijllt'am. Para empezar usando un diccionario, seleccione uno del menú de Arupirwanaka.Taqpach jach'a amuyunakaQilqt'awiBabiloo yaqha &arur jaqukiptayaña&Babiloon aru jaqukipawipa...QhanaKastaJaniw %s kipux apaqañjakitiSiqirataPata&Laphi web Babiloor sart'añababiloo-2.0.11/locale/ay/LC_MESSAGES/babiloo.po0000644000017300007100000004002611446175613020555 0ustar kmoskmos00000000000000# Spanish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: Amos Batto \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-06-06 05:09+0000\n" "Last-Translator: amosbatto \n" "Language-Team: Runasimipi.org \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Babiloon yatiyawipa" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Aka tuqita" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "&P'iqinchirinaka" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Iyawsat kamich Babiloota" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Jist'antaña" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Nayrir sarantayañ wintana..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "&Nayrir jach'a amuyur saraña" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "&Qhipir jach'a amuyur saraña" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Kipur imaña" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Jach'a amuy &liq'iña" #: ../qt/main.py:264 msgid "Speak &word" msgstr "&Aru arsuña" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Machaq amuy katjata" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Mä machaq amuy babiloox qhanaruw mistu.\n" "Machaq amuyu: %s\n" "Jichha amuyu: %s\n" "\n" "jichhax machaq amuy apaqañ munasmati?\n" "\n" "Una nueva versión de Babiloo ha salido a la luz.\n" "Le gustaría descargar la nueva versión ahora?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Phantjata" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" "Ampsum nayraqat mä arupirw q'ipiqam.\n" "Por favor primero cargue un diccionario." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" "\"%s\" aru apaqañkamax pantjasiwiw utjawayi.\n" "Error mientras se cargaba la palabra." #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Pantjawi arupirwa q'ipiqañ yant'askasa.\n" "Jan aski kipu.\n" "\n" "Error intentando cargar el diccionario.\n" "Archivo corrupto o no válido." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s janiw q'ipxarutakiti: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Yatiyawi" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Yatiyaw apnaqaña:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Aru pirw apnaqañatakix maynir Arupirwanaka chhijllt'am.\n" "Para empezar usando un diccionario, seleccione uno del menú de " "Arupirwanaka." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Machaq arupiw achuntayañatakix intirnitatpach, Arupirwanak " "apnaqaña... ajllim. Ukat Arupirwanak waraqaña laphimanqhat mä " "arupirw ajllima.\n" "\n" "Para instalar un diccionario nuevo desde el internet, seleccione " "Arupirwanak apnaqaña... y escoja un diccionario de la pestaña " "Arupirwanak waraqaña." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Kiputpach machaq arupiw achuntayañatakixa, Arupirwanaka siski ukar " "saräma, ukatx Kiputpach achuntayaña... ajllima.\n" "Para instalar un diccionario nuevo desde un archivo, seleccione Kiputpach " "achuntayaña... en el menú Arupirwanaka." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "" "%s arux janiw jikxataskiti.\n" "La palabra no ha sido encontrada." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloon ajllt'atanakapa" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Babiloon aru uñchawi:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "&Babiloon aru jaqukipawipa..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "&Jisk'a jach'a qillqanak sum uñakipawi" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "&Sapak phuqhachasiri" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Jan yaqkay qilqa &chimpu" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Aru sall amuy apnaqawi:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "&Taqi kun ajlliri" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Maqhataña" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Pata" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Maqaña" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Manqha" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Arupirw tuqit uñachayiri" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Yatiyaw uñachayiri" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Arupirwanak imañ tuqi:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "&Yant'aw uñjaña..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "A&rupirwanak achuntata" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Chinthapit tuqita:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Arupirw waraqaña" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Tantachat tuqita:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Waraqaña" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Arupirwanak &waraqaña..." #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "&Arupirwanaka" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "&Yapt'awinaka" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Sarawinak uñacht'ayiri" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "A&ru arsuña" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Pacha suyt'a, janir achakun uñachawip imantkasina" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Jan imantaña" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " k'atanaka" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "&Kunapachatix limt'añ limtáskix ukhakiw uñacht'äyi" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Ajllit u&llakipiri" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "&Janitix qillt'atax katuyaski ukax uñacht'ayipana" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Uyñaqa" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Qhana" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Nayraqat ajllit anchu" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Nayraqat ajllit ukch'a alaya" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "&Wintanat yaqha wintan misturi" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Nayra uñjawi" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Mä t'aqa" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Mä t'aqat ajlliña" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "P'iqiñchawi" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Yatxatayäwi" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Jisk'aptayawi" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Sañani" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Qilqt'awi" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Kast kast qilqanaka ajlliña" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Sami uñta" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Sami qhipaxa" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Kliktayaña sami ajlliñataki" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Ajllt'am jisk' jach'a qilqanaka" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Ch'iyara" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "K'umjata" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Siqirata" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Tansa" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Kastkast qilqanaka" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "&Uyñaqa" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Janiw saña" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "%s apkataskiwa..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Aru thaqhañ phiskhuña" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Phiskhuña" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "&Jach'a amuyunaka" #: ../qt/main_ui.py:259 msgid "History" msgstr "I&mat aru thaqhaña" #: ../qt/main_ui.py:263 msgid "Search" msgstr "&Thaqhaña" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Kipu" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Yanapa" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "Ajllita&naka" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Mistuña" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Babiloon yatiyawipa..." #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Babiloo qutu ajllita..." #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Thaqhat ullaña" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "&Kiputpach achuntayaña..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Jayar apayaña" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Arupirwanak &apnaqaña..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "&Laphi web Babiloor sart'aña" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Jan &walt'aw yatiyaña" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Babiloo yaqha &arur jaqukiptayaña" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Kipunak q'ipnuqaña..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "Jan &munaña" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Apaqaskiwa" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "(%s bytes) apaqawix qalltaskiwa ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Janiw %s kipux apaqañjakiti" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Chinthapita utjawix ch'usakiwa" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Aka arupirwanakax janiraw achuntayañjakiti:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Wiltat arupirwanak ullakipawi..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Yatiyawi" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" "Machaq arux wasitat uǹacht'ayataniwa.\n" "El nuevo idioma estará disponible al reiniciar el programa." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Wayaq jist'araña" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Kasta" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Arupirwan sutipa" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Taqpach jach'a amuyunaka" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Arupirw apsuña kunjama..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/es/LC_MESSAGES/babiloo.mo0000644000017300007100000001764111446175614020560 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  FP f p{        #"/R"[~! BX mz0-   " 8D`iFo'   +<Lf  &;Jflr(  'BXu& )%/O$<+8)bj~T 7E#J nx!g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-07-18 20:41+0000 Last-Translator: lordcaos777 Language-Team: Spanish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) segundos%s no fue cargado: %sC&ancelar&Acerca de&Acerca de Babiloo&Cerrar&Configurar Babiloo&ArchivoAy&uda&Acuerdo de licencia&Salir&Guardar al archivo&Explorar&ConfiguraciónUna nueva versión de Babiloo ha salido a la luz. Versión nueva: %s Versión actual: %s Le gustaría descargar la nueva versión ahora?A&utoresAbreviaciónAcerca de BabilooAvisoAparienciaAparienciaArtículosAutoCompletarConfiguración de BabilooFondoComportamientoNegritaExaminar...Construyendo diálogo principal...CancelarDistinguir mayusculas y minusculasBorrarThis requirement definition document defines the requirements from product development area specified by General Insurance product management in Partenon.Hacer clic para seleccionar colorAltura predeterminadaAncho predeterminadoDiccionariosNombre del diccionarioDiccionarios que no pudieron ser instalados: %sDirectorio donde se guardan los diccionarios:No ocultarAbajoDescargarDescargar diccionariosDescargar diccionarioDescargandoDescargando los archivos...ElementoErrorError intentando cargar el diccionario. Archivo corrupto o no válido.Error mientras se cargaba la palabra %sEjemploExplicaciónExportar diccionario como...Tipo de letraPrimer planoDesde un enlace:Desde la lista:Configuraciones GeneralesIr al artículo &siguienteIr al artículo &anteriorHistorialIgnorar acentosImportarInfoInstalar desde archivo...Diccionarios instaladosIdioma de la interfaz:CursivaLa dirección del enlace está vacía.Cargando %s...Administrar diccionarios...BajarSubirNueva Versión DetectadaAbrir DirectorioPor favor primero cargue un diccionario.ExtensionesVentana emergenteVista previa&Imprimir artículoPronunciar la palabraPronunciar palabras usando este comandoComunicar un problemaReescaneando diccionarios...Escanear la selecciónBuscarSeleccionar elementoSeleccionar fuenteSeleccione el tamaño de fuenteInstrucciones de uso:Mostrar si la palabra no es encontradaMostrar infoMostrar información sobre el diccionarioMostrar solo si el modificador está presionadoTamañoPronunciar &palabraEmpezando la descarga (%s bytes) ...El nuevo idioma estará disponible al reiniciar el programa.La palabra %s no ha sido encontrada.Tiempo de espera antes de esconder el puntero del ratónTítuloPara instalar un diccionario nuevo desde el internet, seleccione Organizar Diccionarios... y escoja uno de la pestaña Descargar Diccionarios.Para instalar un diccionario nuevo desde un archivo, seleccione Instalar de archivo... en el menú Diccionarios.Para empezar usando un diccionario, seleccione uno del menú de Diccionarios.Artículos totalesTranscripciónTraducir Esta Aplicación...Traducir esta aplicación...TransparenciaTipoNo se puede descargar el fichero %sSubrayadoArribaVisitar la página web de Babiloobabiloo-2.0.11/locale/es/LC_MESSAGES/babiloo.po0000644000017300007100000003653111446175613020561 0ustar kmoskmos00000000000000# Spanish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-07-18 20:41+0000\n" "Last-Translator: lordcaos777 \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Acerca de Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Acerca de" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "A&utores" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Acuerdo de licencia" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Cerrar" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Construyendo diálogo principal..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Ir al artículo &anterior" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Ir al artículo &siguiente" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Guardar al archivo" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "&Imprimir artículo" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Pronunciar &palabra" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Nueva Versión Detectada" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Una nueva versión de Babiloo ha salido a la luz.\n" "\n" "Versión nueva: %s\n" "Versión actual: %s\n" "\n" "Le gustaría descargar la nueva versión ahora?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Error" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Por favor primero cargue un diccionario." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Error mientras se cargaba la palabra %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Error intentando cargar el diccionario.\n" "Archivo corrupto o no válido." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s no fue cargado: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Info" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Instrucciones de uso:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Para empezar usando un diccionario, seleccione uno del menú de " "Diccionarios." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Para instalar un diccionario nuevo desde el internet, seleccione " "Organizar Diccionarios... y escoja uno de la pestaña Descargar " "Diccionarios." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Para instalar un diccionario nuevo desde un archivo, seleccione Instalar " "de archivo... en el menú Diccionarios." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "La palabra %s no ha sido encontrada." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Configuración de Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Idioma de la interfaz:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Traducir esta aplicación..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Distinguir mayusculas y minusculas" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "AutoCompletar" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorar acentos" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Pronunciar palabras usando este comando" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Configuraciones Generales" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Subir" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Arriba" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Bajar" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Abajo" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Mostrar información sobre el diccionario" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Mostrar info" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Directorio donde se guardan los diccionarios:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Examinar..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Diccionarios instalados" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Desde un enlace:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Descargar diccionario" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Desde la lista:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Descargar" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Descargar diccionarios" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Diccionarios" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Extensiones" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Comportamiento" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Pronunciar la palabra" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Tiempo de espera antes de esconder el puntero del ratón" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "No ocultar" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " segundos" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Mostrar solo si el modificador está presionado" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Escanear la selección" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Mostrar si la palabra no es encontrada" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Apariencia" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparencia" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Ancho predeterminado" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Altura predeterminada" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Ventana emergente" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Vista previa" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Elemento" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Seleccionar elemento" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Título" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Explicación" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Abreviación" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Ejemplo" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transcripción" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Seleccionar fuente" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Primer plano" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Fondo" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Hacer clic para seleccionar color" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Seleccione el tamaño de fuente" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Negrita" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Cursiva" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Subrayado" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Tamaño" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Tipo de letra" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Apariencia" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Cancelar" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Cargando %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "" "This requirement definition document defines the requirements from product " "development area specified by General Insurance product management in " "Partenon." #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Borrar" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artículos" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historial" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Buscar" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Archivo" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "Ay&uda" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Configuración" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Salir" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Acerca de Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Configurar Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Explorar" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Instalar desde archivo..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importar" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Administrar diccionarios..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Visitar la página web de Babiloo" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Comunicar un problema" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Traducir Esta Aplicación..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Descargando los archivos..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "C&ancelar" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Descargando" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Empezando la descarga (%s bytes) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "No se puede descargar el fichero %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "La dirección del enlace está vacía." #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Diccionarios que no pudieron ser instalados:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Reescaneando diccionarios..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Aviso" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "El nuevo idioma estará disponible al reiniciar el programa." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Abrir Directorio" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tipo" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Nombre del diccionario" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Artículos totales" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Exportar diccionario como..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/en/LC_MESSAGES/babiloo.mo0000644000017300007100000000065411446175614020547 0ustar kmoskmos00000000000000$,8r9Project-Id-Version: Babiloo Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-01-22 14:30+0100 Last-Translator: Ivan Garcia Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Basepath: . X-Poedit-SearchPath-0: /home/capiscuas/workspace/babiloo/qt babiloo-2.0.11/locale/en/LC_MESSAGES/babiloo.po0000644000017300007100000002630211443252104020533 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: Babiloo\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-01-22 14:30+0100\n" "Last-Translator: Ivan Garcia \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Basepath: .\n" "X-Poedit-SearchPath-0: /home/capiscuas/workspace/babiloo/qt\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "To install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "To install a new dictionary from file, select Install from file... from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 msgid "Transcription" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "" babiloo-2.0.11/locale/zh_TW/LC_MESSAGES/babiloo.mo0000644000017300007100000000635411446175614021203 0ustar kmoskmos00000000000000B,Y<      3 ISdls       (0#Cgv}  !. 3 ?$` 2 : < G R ] h |                  & 3 = A H O V ] d q s z          9 F Y r          .3@4- B (5! /1#A9 <8'2$& >,;?%+0*6)": 7=#000000%&About&File&Help&Quit&Save to file&Scan&SettingsAbbreviationAltApperanceBBackgroundBehaviorBoldClearClear the search boxClick to select colorConfigureConfigure pluginControlCtrl+QDefault heightDefault widthDictionariesDictionary nameDon't hideDownElementErrorExampleFontForegroundGlobal settingsIInfoItalicMove downMove upPluginsPopup windowPreviewPronounce the wordPronounce words using this command:Scan selectionSearchSelect elementSelect fontSelect font sizeShiftShow if word not foundShow infoShow information about dictionaryShow information about pluginShow only if modifier pressedSizeSpeak &wordThe word %s is not found.Timeout before hide after mouse overTitleUUnderlineUpWinProject-Id-Version: PACKAGE VERSION Report-Msgid-Bugs-To: POT-Creation-Date: 2009-01-22 14:30+0100 PO-Revision-Date: 2009-01-09 18:00+0000 Last-Translator: Ivan Garcia Language-Team: LANGUAGE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-02-08 12:44+0000 X-Generator: Launchpad (build Unknown) #000000%關於(&A)檔案(&F)說明(&H)離開(&Q)儲存到檔案(&S)取詞(&S)&設定縮寫Alt外觀B背景行為粗體清除清除搜尋框點選色彩設定設定外掛程式ControlCtrl+Q預設高度預設寬度字典字典名稱不隱藏下元素錯誤範例字型前景全域設定I資訊斜體下移上移外掛程式快顯視窗預覽單字發音使用如下指令發音選取區取詞搜尋選取元素選取字型選取字型大小Shift當未找到字時顯示顯示資訊顯示字典資訊顯示外掛程式資訊顯示,僅當按下大小讀出單字 (&w)找不到單字 %s滑鼠懸停隱藏逾時標題U底線上Winbabiloo-2.0.11/locale/zh_TW/LC_MESSAGES/babiloo.po0000644000017300007100000003426511443252104021173 0ustar kmoskmos00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-01-22 14:30+0100\n" "PO-Revision-Date: 2009-01-09 18:00+0000\n" "Last-Translator: Ivan Garcia \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-02-08 12:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:246 msgid "Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:247 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:251 msgid "Clear the search box" msgstr "清除搜尋框" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:248 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:252 msgid "Clear" msgstr "清除" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:249 msgid "Articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:250 msgid "History" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:436 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:437 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:444 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:445 msgid "..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 msgid "Search" msgstr "搜尋" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "&File" msgstr "檔案(&F)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:261 msgid "&Help" msgstr "說明(&H)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:262 msgid "&Settings" msgstr "&設定" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:263 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:453 msgid "Dictionaries" msgstr "字典" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:264 msgid "&Quit" msgstr "離開(&Q)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:265 msgid "Ctrl+Q" msgstr "Ctrl+Q" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Configure Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Scan" msgstr "取詞(&S)" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 msgid "Install from file..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "Import" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "Manage Dictionaries..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "Visit HomePage" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Report A Problem" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:430 msgid "Translate This Application..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:120 msgid "About Babiloo" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:143 msgid "&About" msgstr "關於(&A)" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "Alert" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings.py:56 msgid "The new language will be displayed after restarting the program." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Type" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Dictionary name" msgstr "字典名稱" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:22 msgid "Total articles" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:117 msgid "Export dictionary as..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:13 msgid "Short Usage Information:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:14 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:15 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:16 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:21 #, python-format msgid "The word %s is not found." msgstr "找不到單字 %s" #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:44 #, python-format msgid "Loading %s..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:165 msgid "Building main dialog..." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:229 msgid "Go to &previous article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:234 msgid "Go to &next article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:239 msgid "&Save to file" msgstr "儲存到檔案(&S)" #: /home/capiscuas/workspace/babiloo/qt/main.py:244 msgid "Prin&t article" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:249 msgid "Speak &word" msgstr "讀出單字 (&w)" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "Error" msgstr "錯誤" #: /home/capiscuas/workspace/babiloo/qt/main.py:388 msgid "Please load a dictionary first." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:451 msgid "Import one or many dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/main.py:457 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:428 msgid "Babiloo Settings" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:429 msgid "Interface Language:" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:431 msgid "Case sensitive" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:432 msgid "AutoComplete" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:433 msgid "Ignore accents" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:434 msgid "Pronounce words using this command:" msgstr "使用如下指令發音" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:435 msgid "Global settings" msgstr "全域設定" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:438 msgid "Move up" msgstr "上移" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:439 msgid "Up" msgstr "上" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:440 msgid "Move down" msgstr "下移" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:441 msgid "Down" msgstr "下" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:442 msgid "Show information about dictionary" msgstr "顯示字典資訊" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:443 msgid "Show info" msgstr "顯示資訊" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:446 msgid "Installed Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:447 msgid "Download Dictionaries" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:448 msgid "Plugins" msgstr "外掛程式" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:449 msgid "Show information about plugin" msgstr "顯示外掛程式資訊" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:450 msgid "Info" msgstr "資訊" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:451 msgid "Configure plugin" msgstr "設定外掛程式" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:452 msgid "Configure" msgstr "設定" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:454 msgid "Behavior" msgstr "行為" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:455 msgid "Pronounce the word" msgstr "單字發音" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:456 msgid "Timeout before hide after mouse over" msgstr "滑鼠懸停隱藏逾時" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:457 msgid "Don't hide" msgstr "不隱藏" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:458 msgid " seconds" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:459 msgid "Show only if modifier pressed" msgstr "顯示,僅當按下" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:460 msgid "Alt" msgstr "Alt" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:461 msgid "Control" msgstr "Control" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:462 msgid "Shift" msgstr "Shift" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:463 msgid "Win" msgstr "Win" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:464 msgid "Scan selection" msgstr "選取區取詞" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:465 msgid "Show if word not found" msgstr "當未找到字時顯示" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:466 msgid "Apperance" msgstr "外觀" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:467 msgid "Transparency" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:468 msgid "%" msgstr "%" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:469 msgid "Default width" msgstr "預設寬度" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:470 msgid "Default height" msgstr "預設高度" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:471 msgid "Popup window" msgstr "快顯視窗" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:472 msgid "Preview" msgstr "預覽" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:473 msgid "Element" msgstr "元素" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:474 msgid "Select element" msgstr "選取元素" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:475 msgid "Title" msgstr "標題" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:476 msgid "Explanation" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:477 msgid "Abbreviation" msgstr "縮寫" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:478 msgid "Example" msgstr "範例" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:479 msgid "Transcription" msgstr "" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:480 msgid "Select font" msgstr "選取字型" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:481 msgid "Foreground" msgstr "前景" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:482 msgid "Background" msgstr "背景" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:483 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:485 msgid "Click to select color" msgstr "點選色彩" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:484 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:486 msgid "#000000" msgstr "#000000" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:487 msgid "Select font size" msgstr "選取字型大小" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:488 msgid "Bold" msgstr "粗體" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:489 msgid "B" msgstr "B" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:490 msgid "Italic" msgstr "斜體" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:491 msgid "I" msgstr "I" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:492 msgid "Underline" msgstr "底線" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:493 msgid "U" msgstr "U" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:494 msgid "Size" msgstr "大小" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:495 msgid "Font" msgstr "字型" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:496 msgid "Appearance" msgstr "" #~ msgid "Fuzzy query" #~ msgstr "模糊查詢" #~ msgid " sec" #~ msgstr " 秒" #~ msgid "Opacity" #~ msgstr "不透明度" #~ msgid "pt" #~ msgstr "pt" #~ msgid "Save translation" #~ msgstr "儲存翻譯" #~ msgid "HTML files (*.html, *.htm)" #~ msgstr "HTML檔案(*.html, *.htm)" #~ msgid "Text files (*.txt)" #~ msgstr "文字檔" #~ msgid "Cannot save translation as %s" #~ msgstr "無法將翻譯儲存為 %s" #~ msgid "Go to &previous translation" #~ msgstr "前一個翻譯 (&p)" #~ msgid "Go to &next translation" #~ msgstr "後一個翻譯 (&n)" #~ msgid "Prin&t translation" #~ msgstr "列印翻譯(&t)" #~ msgid "About QStarDict" #~ msgstr "關於 QStarDict" #~ msgid "" #~ "Copyright (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgstr "" #~ "版權 (C) 2007 Alexander Rodin http://qstardict.ylsoftware.com" #~ msgid "QStarDict" #~ msgstr "QStarDict" #~ msgid "%s - QStarDict" #~ msgstr "%s - QStarDict" #~ msgid "Words list" #~ msgstr "字彙清單" #~ msgid "About &Qt" #~ msgstr "關於 Qt" #~ msgid "&Configure QStarDict" #~ msgstr "設定 QStarDict(&C)" #~ msgid "Enabled" #~ msgstr "啟用" #~ msgid "Name" #~ msgstr "名稱" #~ msgid "Plugin" #~ msgstr "外掛程式" #~ msgid "Information about dictionary \"%s\"" #~ msgstr "字典\"%s\" 的資訊" #~ msgid "Name: %s
" #~ msgstr "字典名稱: %s
" #~ msgid "Plugin: %s
" #~ msgstr "外掛程式: %s
" #~ msgid "unknown" #~ msgstr "未知" #~ msgid "Description: %s" #~ msgstr "說明: %s" #~ msgid "Information about %s plugin" #~ msgstr "關於外掛程式 %s 的資訊" #~ msgid "Version: %s
" #~ msgstr "版本: %s
" #~ msgid "Authors: %s
" #~ msgstr "作者: %s
" #~ msgid "Can search similar words: %s
" #~ msgstr "可以搜尋相似單字: %s
" #~ msgid "yes" #~ msgstr "是" #~ msgid "no" #~ msgstr "否" #~ msgid "QStarDict Settings" #~ msgstr "QStarDict 設定" #~ msgid "Instant search" #~ msgstr "即時搜尋" #~ msgid "Author: %s
" #~ msgstr "作者: %s
" #~ msgid "Words count: %s
" #~ msgstr "單字數: %s
" #~ msgid "All translation" #~ msgstr "所有的翻譯" babiloo-2.0.11/locale/tr/LC_MESSAGES/babiloo.mo0000644000017300007100000001706011446175614020571 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw T\o x v {       # .5T\s  #!*1A P]u{v% $/ MW_ n x   7I`p $  ,B Qr   #BH!YC{)0#X8  g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-05-20 16:27+0000 Last-Translator: Angel Spy Language-Team: Turkish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) saniye%s yüklenmedi: %s&Vazgeç&Hakkında&Babiloo Hakkında&KapatBabiloo'yu &Yapılandır&Dosya&Yardım&Lisans Anlaşması&ÇıkışDosyaya &kaydet&Tara&AyarlarBabiloo'nun yeni sürümü tespit edildi. Yeni Sürüm: %s Mevcut Sürüm: %s Yeni sürümü indirmek ister misiniz?Y&azarlarKısaltmaBabiloo HakkındaUyarıGörünümGörünümMakalelerOtoTamamlaBabiloo AyarlarıArkaplanDavranışKalınGözat...Ana diyalog yapılandırılıyor...İptalBüyük küçük harf duyarlıTemizleArama kutusunu temizleRenk seçmek için tıklayınVarsayılan yükseklikVarsayılan genişlikSözlüklerSözlük adıİndirilemeyen sözlük: %sSözlüklerin depolandığı dizin:GizlemeAşağıİndirSözlük İndirSözlük indirİndiriliyorDosyalar indiriliyor...ÖğeHataSözlük yüklemesi sırasında hata oluştu. Dosya zarar görmüş ya da program tarafından desteklenmiyor olabilir.%s kelimesi yüklenirken hata oluştuÖrnekAçıklamaSözlüğü farklı kaydet...YazıtipiÖnplanBağlantıdan:Listeden:Genel ayarlar&Sonraki makaleye git&Önceki makaleye gitGeçmişAksanları yoksayİçe aktarBilgiDosyadan yükle...Yüklenmiş SözlüklerArayüz Dili:İtalikBağlantı adresi boş%s yükleniyor...Sözlükleri Yönet...Aşağı taşıYukarı taşıYeni Sürüm AlgılandıDizin AçLütfen önce sözlüğü yükleyin.EklentilerAçılır pencereÖnizlemeMakaleyi yazdı&rKelimeyi telaffuz etKelimeleri bu komutu kullanarak telaffuz et:Problem BildirSözlükler tekrar taranıyor...Tarama seçimiAraÖğe seçYazıtipi seçYazıtipi boyutunu seçinKullanım bilgisi özetiEğer kelime bulunamazsa gösterBilgi gösterSözlük bilgilerini gösterHatırlatıcı basıldıysa gösterBoyut&Kelimeyi söyleİndirme başlıyor (%s bayt) ...Yeni dil program yeniden başlatıldığında görüntülenecektir.%s şeklindeki kelime bulunamadı.Mouse hareketsizliğinden dolayı zaman aşımıBaşlıkİnternetten yeni bir sözlük yüklemek için Sözlükleri Yönet... bölümüne girip, Sözlük İndir alanından seçim yapınız.Dosyadan yeni bir sözlük yüklemek için Sözlükler menüsündeki Dosyadan yükle... seçeneğini kullanınız.Sözlüğü kullanmaya başlamak için Sözlükler menüsünden seçim yapınız.Tüm makalelerUyarlamaBu Uygulamayı ÇevirBu Uygulamayı Çevir...ŞeffaflıkTür%s dosyası indirilemiyorAltı ÇiziliYukarıAnaSayfayı Ziyaret Etbabiloo-2.0.11/locale/tr/LC_MESSAGES/babiloo.po0000644000017300007100000003573111446175614020601 0ustar kmoskmos00000000000000# Turkish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-05-20 16:27+0000\n" "Last-Translator: Angel Spy \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Babiloo Hakkında" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Hakkında" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "Y&azarlar" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Lisans Anlaşması" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Kapat" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Ana diyalog yapılandırılıyor..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "&Önceki makaleye git" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "&Sonraki makaleye git" #: ../qt/main.py:254 msgid "&Save to file" msgstr "Dosyaya &kaydet" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Makaleyi yazdı&r" #: ../qt/main.py:264 msgid "Speak &word" msgstr "&Kelimeyi söyle" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Yeni Sürüm Algılandı" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Babiloo'nun yeni sürümü tespit edildi.\n" "\n" "Yeni Sürüm: %s\n" "Mevcut Sürüm: %s\n" "\n" "Yeni sürümü indirmek ister misiniz?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Hata" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Lütfen önce sözlüğü yükleyin." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "%s kelimesi yüklenirken hata oluştu" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Sözlük yüklemesi sırasında hata oluştu.\n" "Dosya zarar görmüş ya da program tarafından desteklenmiyor olabilir." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s yüklenmedi: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Bilgi" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Kullanım bilgisi özeti" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Sözlüğü kullanmaya başlamak için Sözlükler menüsünden seçim yapınız." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "İnternetten yeni bir sözlük yüklemek için Sözlükleri Yönet... " "bölümüne girip, Sözlük İndir alanından seçim yapınız." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Dosyadan yeni bir sözlük yüklemek için Sözlükler menüsündeki " "Dosyadan yükle... seçeneğini kullanınız." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "%s şeklindeki kelime bulunamadı." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloo Ayarları" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Arayüz Dili:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Bu Uygulamayı Çevir..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Büyük küçük harf duyarlı" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "OtoTamamla" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Aksanları yoksay" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Kelimeleri bu komutu kullanarak telaffuz et:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Genel ayarlar" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Yukarı taşı" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Yukarı" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Aşağı taşı" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Aşağı" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Sözlük bilgilerini göster" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Bilgi göster" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Sözlüklerin depolandığı dizin:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Gözat..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Yüklenmiş Sözlükler" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Bağlantıdan:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Sözlük indir" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Listeden:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "İndir" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Sözlük İndir" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Sözlükler" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Eklentiler" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Davranış" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Kelimeyi telaffuz et" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Mouse hareketsizliğinden dolayı zaman aşımı" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Gizleme" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " saniye" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Hatırlatıcı basıldıysa göster" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Tarama seçimi" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Eğer kelime bulunamazsa göster" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Görünüm" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Şeffaflık" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Varsayılan genişlik" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Varsayılan yükseklik" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Açılır pencere" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Önizleme" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Öğe" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Öğe seç" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Başlık" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Açıklama" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Kısaltma" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Örnek" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Uyarlama" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Yazıtipi seç" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Önplan" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Arkaplan" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Renk seçmek için tıklayın" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Yazıtipi boyutunu seçin" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Kalın" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "İtalik" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Altı Çizili" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Boyut" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Yazıtipi" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Görünüm" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "İptal" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "%s yükleniyor..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Arama kutusunu temizle" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Temizle" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Makaleler" #: ../qt/main_ui.py:259 msgid "History" msgstr "Geçmiş" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Ara" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Dosya" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Yardım" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Ayarlar" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Çıkış" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Babiloo Hakkında" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "Babiloo'yu &Yapılandır" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Tara" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Dosyadan yükle..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "İçe aktar" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Sözlükleri Yönet..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "AnaSayfayı Ziyaret Et" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Problem Bildir" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Bu Uygulamayı Çevir" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Dosyalar indiriliyor..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Vazgeç" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "İndiriliyor" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "İndirme başlıyor (%s bayt) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "%s dosyası indirilemiyor" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Bağlantı adresi boş" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "İndirilemeyen sözlük:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Sözlükler tekrar taranıyor..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Uyarı" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Yeni dil program yeniden başlatıldığında görüntülenecektir." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Dizin Aç" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tür" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Sözlük adı" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Tüm makaleler" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Sözlüğü farklı kaydet..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/ca/LC_MESSAGES/babiloo.mo0000644000017300007100000000217511446175614020530 0ustar kmoskmos00000000000000 hipv |  $   )A GQ$X   &Abort&File&Help&SettingsArticlesClearClear the search boxDictionariesDownloadingDownloading files...ErrorHistorySearchStarting the download (%s bytes) ...Project-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-10-25 12:26+0000 Last-Translator: David Guerrero Language-Team: Catalan MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) &Cancel·la&Archiu&Ajuda&OpcionsArticlesNetejarNetejar la caixa de búsquedaDiccionarisDescarregantDescarregant fitxers...ErrorHistorialTrobarComençant la descàrrega (%s bytes)babiloo-2.0.11/locale/ca/LC_MESSAGES/babiloo.po0000644000017300007100000003136311446175613020533 0ustar kmoskmos00000000000000# Catalan translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-10-25 12:26+0000\n" "Last-Translator: David Guerrero \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "" #: ../qt/about_ui.py:142 msgid "&About" msgstr "" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "" #: ../qt/main.py:254 msgid "&Save to file" msgstr "" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "" #: ../qt/main.py:264 msgid "Speak &word" msgstr "" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Error" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Diccionaris" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr "" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "" #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Netejar la caixa de búsqueda" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Netejar" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Articles" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historial" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Trobar" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Archiu" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Ajuda" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Opcions" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Descarregant fitxers..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Cancel·la" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Descarregant" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Començant la descàrrega (%s bytes)" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "" #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/pt/LC_MESSAGES/babiloo.mo0000644000017300007100000002152411446175614020567 0ustar kmoskmos00000000000000t         % + > D R X b     # , 9 J U ^ c m }        * "K*n#   !)1E7}    2JPhp   . <G ^hp   # /@[cry  !$ ,$8]@e $l|H2 AOm   s}   !}1    ( 7E MX q} (50I#z/'  )@SgpxM}   % 0>MVm   9Fc{   - DO R*^   .'DJ _i~%%) )5 _ g p   J ( 0!O!W!t!HZ"" """"#% # 3#>#C#t9M Wm?wya=kvbpF_-o#01^C*jTQN@B+d,h !E "RDcY%K.HL;\O/8 VGJ|:>Pq7`(5) ]64'lsA}~{ fSUigeXxurn[32Iz<&Z$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrazilianBritish EnglishBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary selected couldn't be installed.Dictionary successfully installed.Dictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementEnglishErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sEstonianExampleExplanationExport dictionary as...FinnishFontForegroundFrenchFrom link:From list:GermanGlobal settingsGo to &next articleGo to &previous articleGreekHelp us with a donationHistoryIgnore accentsImportImport one or more dictionariesInfoInstall from file...Installed DictionariesInterface Language:ItalianItalicJapaneseKoreanLink address is emptyLoading %s...LuxembourgishMacedonianManage Dictionaries...Move downMove upNew Version DetectedNorwegianOkOpen DirectoryPlease load a dictionary first.PluginsPopup windowPortuguesePreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...RussianScan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpanishSpeak &wordStarting the download (%s bytes) ...SwedishThe new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-09-21 18:25+0000 Last-Translator: Marco Rodrigues Language-Team: Portuguese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) segundos%s não foi carregado: %s&Interromper&SobreSobre BabilooFe&char&Configurar Babiloo&Arquivo&AjudaAcordo de &Licença&Sair&Guardar para ficheiroPe&squisarConfiguraçõesUma nova versão do Babiloo foi lançada. Nova versão: %s Versão actual: %s Gostaria de transferir agora a nova versão ?A&utoresAbreviaturaSobre BabilooAvisoAparênciaAparênciaArtigosCompletar AutomaticamenteDefinições do BabilooPlano de fundoComportamentoNegritoBrasileiroInglês da Grã-BretanhaProcurar...A construir janela principal...CancelarSensível à capitalizaçãoLimparLimpar caixa de pesquisaClique para seleccionar a corAltura predefinidaLargura predefinidaDicionáriosNome do dicionárioO Dicionário escolhido não pode ser instalado.Dicionários instalado com sucesso.Não foi possível instalar o dicionário:: %sPasta de armazenamento de dicionários:Não esconderBaixoTransferirBaixar DicionáriosTransferir dicionárioFazendo o DownloadTransferir arquivosElementoInglêsErroErro ao tentar carregar o dicionário. Ficheiro corrompido ou não suportado.Erro ao carregar a palavra %sEstonianoExemploExplicaçãoExportar dicionário como...FinlandêsTipo de LetraPrimeiro planoFrancêsA partir do endereço:A partir da lista:AlemãoConfigurações globaisIr para o p&róximo artigoIr para artigo &anteriorGregoAjude-nos com um donativoHistóricoIgnorar acentosImportarImportar um ou mais dicionáriosInformaçãoInstalar a partir do arquivoDicionários InstaladosIdioma da Interface:ItalianoItálicoJaponêsCoreanoO endereço está vazioA carregar %s...LuxemburguêsMacedónioGerenciar dicionáriosMover para baixoMover para cimaNova versão detectadaNorueguêsOkAbrir PastaPor favor carregue o dicionário primeiro.ExtensõesJanela popupPortuguêsPré-visualizarIm&primir artigoPronunciar a palavraPronuncie estas palavras utilizando o comando:Comunicar um problemaReexaminando os dicionáriosRussoPesquisar selecçãoPesquisarSeleccionar elementoSeleccionar fonteSeleccionar Tipo de LetraInformação rápida de utilização:Mostrar se nenhuma palavra encontradaMostrar informaçãoMostrar informações sobre o dicionárioApenas mostrar se notificador pressionadoTamanhoEspanholReproduzir &palavraIniciando o download (%s bytes)SuecoÉ necessário reiniciar o programa para que o novo idioma seja utilizado.A palavra %s não foi encontrada.Tempo até esconder ponteiro se estiver por cimaTítuloPara instalar um dicionário pela internet, seleccione Gerir Dicionários... e escolha um do separador Transferir Dicionários.Para instalar um dicionário de um ficheiro, seleccione Instalar ficheiro de ... do menu Dicionários.Para utilizar um dicionário, seleccione um no menu Dicionários.Total de artigosTranscriçãoTraduzir esta aplicação...Traduzir esta AplicaçãoTransparênciaTipoNão foi possível baixar o aquivo %sSublinhadoCimaVisitar HomePagebabiloo-2.0.11/locale/pt/LC_MESSAGES/babiloo.po0000644000017300007100000003670611446175614020602 0ustar kmoskmos00000000000000# Portuguese translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-09-21 18:25+0000\n" "Last-Translator: Marco Rodrigues \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Sobre Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Sobre" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "A&utores" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "Acordo de &Licença" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "Fe&char" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "A construir janela principal..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "Ajude-nos com um donativo" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Ir para artigo &anterior" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Ir para o p&róximo artigo" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Guardar para ficheiro" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Im&primir artigo" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Reproduzir &palavra" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Nova versão detectada" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Uma nova versão do Babiloo foi lançada.\n" "\n" "Nova versão: %s\n" "Versão actual: %s\n" "\n" "Gostaria de transferir agora a nova versão ?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Erro" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Por favor carregue o dicionário primeiro." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Erro ao carregar a palavra %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "Importar um ou mais dicionários" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Erro ao tentar carregar o dicionário.\n" "Ficheiro corrompido ou não suportado." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s não foi carregado: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "Dicionários instalado com sucesso." #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "O Dicionário escolhido não pode ser instalado." #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Informação" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Informação rápida de utilização:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Para utilizar um dicionário, seleccione um no menu Dicionários." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Para instalar um dicionário pela internet, seleccione Gerir " "Dicionários... e escolha um do separador Transferir Dicionários." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Para instalar um dicionário de um ficheiro, seleccione Instalar ficheiro " "de ... do menu Dicionários." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "A palavra %s não foi encontrada." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Definições do Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Idioma da Interface:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Traduzir esta Aplicação" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Sensível à capitalização" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Completar Automaticamente" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorar acentos" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Pronuncie estas palavras utilizando o comando:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Configurações globais" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Mover para cima" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Cima" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Mover para baixo" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Baixo" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Mostrar informações sobre o dicionário" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Mostrar informação" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Pasta de armazenamento de dicionários:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Procurar..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Dicionários Instalados" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "A partir do endereço:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Transferir dicionário" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "A partir da lista:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Transferir" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Baixar Dicionários" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Dicionários" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Extensões" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Comportamento" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Pronunciar a palavra" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Tempo até esconder ponteiro se estiver por cima" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Não esconder" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " segundos" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Apenas mostrar se notificador pressionado" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Pesquisar selecção" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Mostrar se nenhuma palavra encontrada" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Aparência" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparência" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Largura predefinida" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Altura predefinida" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Janela popup" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Pré-visualizar" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Elemento" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Seleccionar elemento" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Título" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Explicação" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Abreviatura" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Exemplo" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transcrição" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Seleccionar fonte" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Primeiro plano" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Plano de fundo" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Clique para seleccionar a cor" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Seleccionar Tipo de Letra" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Negrito" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Itálico" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Sublinhado" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Tamanho" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Tipo de Letra" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Aparência" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "Ok" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Cancelar" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "A carregar %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Limpar caixa de pesquisa" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Limpar" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artigos" #: ../qt/main_ui.py:259 msgid "History" msgstr "Histórico" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Pesquisar" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Arquivo" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Ajuda" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "Configurações" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Sair" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "Sobre Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Configurar Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "Pe&squisar" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Instalar a partir do arquivo" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importar" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Gerenciar dicionários" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Visitar HomePage" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Comunicar um problema" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Traduzir esta aplicação..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Transferir arquivos" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Interromper" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Fazendo o Download" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Iniciando o download (%s bytes)" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Não foi possível baixar o aquivo %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "O endereço está vazio" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Não foi possível instalar o dicionário::\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Reexaminando os dicionários" #: ../qt/settings.py:82 msgid "Alert" msgstr "Aviso" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" "É necessário reiniciar o programa para que o novo idioma seja utilizado." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Abrir Pasta" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tipo" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Nome do dicionário" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Total de artigos" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Exportar dicionário como..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "Brasileiro" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "Inglês" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "Inglês da Grã-Bretanha" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "Estoniano" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "Finlandês" #: ../core/languages/Languages.py:47 msgid "French" msgstr "Francês" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "Alemão" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "Grego" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "Italiano" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "Japonês" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "Coreano" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "Luxemburguês" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "Macedónio" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "Norueguês" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "Português" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "Russo" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "Espanhol" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "Sueco" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/nl/LC_MESSAGES/babiloo.mo0000644000017300007100000001715611446175614020563 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  @J b l x  zz           /9MTc 3!(1H_)t #   * 4 >I^w  ,<Ufw $)(Aj{ 0*[c)uP''@F}[d  #) HU\g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-01-13 05:39+0000 Last-Translator: Heureka Language-Team: Dutch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) seconden%s was niet geladen: %s&Afbreken&Informatie&Over Babiloo&SluitenBabiloo &instellen&Bestand&Help&Licentieovereenkomst&AfsluitenNaar &bestand opslaan&Scannen&InstellingenEen nieuwe versie van Babiloo is uitgegeven. Nieuwe versie: %s Huidige versie: %s Wilt u de nieuwe versie nu downloaden?Aut&eursAfkortingOver BabilooWaarschuwingUiterlijkUiterlijkArtikelenAutoAanvullenInstellingen van BabilooAchtergondGedragVetBladeren...Opbouwen van het hoofdvenster...AnnulerenHoofdlettergevoeligWissenZoekvak wissenKlik om kleur te selecterenStandaardhoogteStandaardbreedteWoordenboekenWoordenboeknaamWoordenboek dat niet geïnstalleerd kon worden: %sMap die de woordenboeken bevat:Niet verbergenOmlaagDownloadDownload woordenboekenWoordenboek downloadenBezig met downloadenBezig met het downloaden van bestanden...ElementFoutFout tijdens openen woordenboek.Fout bij het laden van het woord %sVoorbeeldUitlegWoordenboek exporteren als...LettertypeVoorgrondVan link:Van lijst:Globale instellingenGa naar v&olgend artikelGa naar &vorig artikelZoekgeschiedenisAccenten negerenImporterenInformatieInstalleer van bestand...Geïnstalleerde woordenboekenTaal van programma:CursiefLinkadres is leegLaden van %s...Woordenboeken beheren...Verplaats omlaagVerplaats omhoogNieuwe versie gevondenOpen mapOpen eerst een woordenboek.Plug-insPop-upvensterVoorbeeldweergaveArtikel &afdrukkenHet woord uitsprekenSpreek woorden uit met dit commando:Rapporteer een probleemWoordenboeken opnieuw aan het scannen...Selectie scannenZoekenSelecteer elementSelecteer lettertypeKies lettertype-grootteKorte gebruikersinformatie:Tonen indien woord niet gevondenToon informatieToon woordenboek-informatieAlleen tonen indien modificeringstoets ingedruktGrootteWoord &uitsprekenStarten van het downloaden (%s bytes) ...De nieuwe taal zal zichtbaar zijn nadat u het programma opnieuw opgestart heeft.Het woord %s werd niet gevonden.Timeout voor het verbergen na muis-overTitelOm een woordenboek van het internet te installeren, selecteer Woordenboeken beheren... en kies er één uit het Woordenboeken downloaden-tabblad.Om een nieuw woordenboek van bestand te installeren, kies Installeer van bestand... uit het Woordenboeken-menu.Om een woordenboek te gaan gebruiken, selecteer er één uit het Woordenboeken-menu.Aantal artikelenTranscriptieDeze toepassing vertalen...Vertaal deze Toepassing...TransparantieSoortKan bestand %s niet downloadenOnderstrepenOmhoogHomepage bezoekenbabiloo-2.0.11/locale/nl/LC_MESSAGES/babiloo.po0000644000017300007100000003603211446175614020560 0ustar kmoskmos00000000000000# Dutch translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-01-13 05:39+0000\n" "Last-Translator: Heureka \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Over Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Informatie" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "Aut&eurs" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Licentieovereenkomst" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Sluiten" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Opbouwen van het hoofdvenster..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Ga naar &vorig artikel" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Ga naar v&olgend artikel" #: ../qt/main.py:254 msgid "&Save to file" msgstr "Naar &bestand opslaan" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Artikel &afdrukken" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Woord &uitspreken" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Nieuwe versie gevonden" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Een nieuwe versie van Babiloo is uitgegeven.\n" "\n" "Nieuwe versie: %s\n" "Huidige versie: %s\n" "\n" "Wilt u de nieuwe versie nu downloaden?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Fout" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Open eerst een woordenboek." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Fout bij het laden van het woord %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "Fout tijdens openen woordenboek." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s was niet geladen: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Informatie" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Korte gebruikersinformatie:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Om een woordenboek te gaan gebruiken, selecteer er één uit het " "Woordenboeken-menu." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Om een woordenboek van het internet te installeren, selecteer " "Woordenboeken beheren... en kies er één uit het Woordenboeken " "downloaden-tabblad." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Om een nieuw woordenboek van bestand te installeren, kies Installeer van " "bestand... uit het Woordenboeken-menu." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Het woord %s werd niet gevonden." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Instellingen van Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Taal van programma:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Vertaal deze Toepassing..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Hoofdlettergevoelig" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "AutoAanvullen" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Accenten negeren" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Spreek woorden uit met dit commando:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Globale instellingen" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Verplaats omhoog" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Omhoog" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Verplaats omlaag" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Omlaag" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Toon woordenboek-informatie" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Toon informatie" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Map die de woordenboeken bevat:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Bladeren..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Geïnstalleerde woordenboeken" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Van link:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Woordenboek downloaden" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Van lijst:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Download" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Download woordenboeken" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Woordenboeken" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Plug-ins" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Gedrag" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Het woord uitspreken" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Timeout voor het verbergen na muis-over" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Niet verbergen" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " seconden" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Alleen tonen indien modificeringstoets ingedrukt" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Selectie scannen" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Tonen indien woord niet gevonden" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Uiterlijk" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Transparantie" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Standaardbreedte" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Standaardhoogte" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Pop-upvenster" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Voorbeeldweergave" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Element" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Selecteer element" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Titel" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Uitleg" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Afkorting" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Voorbeeld" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transcriptie" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Selecteer lettertype" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Voorgrond" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Achtergond" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Klik om kleur te selecteren" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Kies lettertype-grootte" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Vet" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Cursief" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Onderstrepen" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Grootte" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Lettertype" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Uiterlijk" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Annuleren" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Laden van %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Zoekvak wissen" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Wissen" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artikelen" #: ../qt/main_ui.py:259 msgid "History" msgstr "Zoekgeschiedenis" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Zoeken" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Bestand" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Help" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Instellingen" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Afsluiten" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Over Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "Babiloo &instellen" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Scannen" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Installeer van bestand..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importeren" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Woordenboeken beheren..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Homepage bezoeken" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Rapporteer een probleem" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Deze toepassing vertalen..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Bezig met het downloaden van bestanden..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Afbreken" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Bezig met downloaden" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Starten van het downloaden (%s bytes) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Kan bestand %s niet downloaden" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Linkadres is leeg" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Woordenboek dat niet geïnstalleerd kon worden:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Woordenboeken opnieuw aan het scannen..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Waarschuwing" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "" "De nieuwe taal zal zichtbaar zijn nadat u het programma opnieuw opgestart " "heeft." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Open map" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Soort" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Woordenboeknaam" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Aantal artikelen" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Woordenboek exporteren als..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/km/LC_MESSAGES/babiloo.mo0000644000017300007100000002555211446175614020560 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw A@U " 4(I8(  !'"Cf|6.* @ MWUg47(V($-oG..@o1 :;'!C"e$."C3w)F4C@S'=7.2 1a  R 3!:!V!+i!!\!+ "C7""{""""1"= #AG#F#%#O#qF$ $$G$&%;%&&O&'())U)U=***:*9* 1++>+g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-12-26 14:53+0000 Last-Translator: chhorran Language-Team: Khmer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) វិនាទី%s គ្មានត្រូវបានផ្ទុក ៖ %sបោះចោលអំពីអំពី បេប៊ីលូបិទកំណត់ទំរង់ បេប៊ីលូឯកសារជំនួយកិច្ចព្រមព្រៀង អាជ្ញាបណ្ណឃ្លាតរក្សាទុក ឯកសារចាប់ការ​កំណត់បានដាក់អោយប្រើប្រាស់ មួយកំណែថ្មី នៃបេប៊ីលូ។ កំណែថ្មី ៖ %s កំណែ បច្ចុប្បន្ន ៖ %s អ្នកចង់ទាញយកឥឡូវ កំណែថ្មី ?អ្នក​និពន្ធពាក្យខ្លីអំពី បេប៊ីលូដាស់តឿនរាងរៅរាងរៅអត្ថបទបំពេញស្វ័យប្រវត្តិការកំណត់ បេប៊ីលូផ្ទៃ​ខា​ងក្រោយឫកពាដិតរាវរកកំពុងបង្កើត ផ្ទាំងសន្ទនាចំបង...បោះបង់ប្រកាន់ អក្សរតូចធំលុបសំអាតសំអាត ប្រអប់ស្វែងរកចុចជ្រើសយក ពណ៌កំពស់ លំនាំដើមទទឹងលំនាំដើមវចនានុក្រមឈ្មោះវចនានុក្រមវចនានុក្រម ដែលគ្មានអាច ត្រូវបានទាញយក ៖ %sថតឯកសារ ផ្ទុកវចនានុក្រម ៖កុំបិទបាំងក្រោមទាញយកទាញយក វចនានុក្រមទាញយក វចនានុក្រមការទាញយកកំពុងទាញយក ឯកសារ...ធាតុកំហុសកំហុសព្យាយាម ផ្ទុកវចនានុក្រម ឯកសារខូច ឬ គ្មានត្រូវបានគាំទ្រ។កំហុស ពេលផ្ទុកពាក្យ %sឧទាហរការពន្យល់នាំចេញ វចនានុក្រម ជា...ក្រមអក្សរផ្ទៃ​ខាងមុខពី តំណភ្ជាប់ពី បញ្ជី ៖ការកំណត់ទូទៅទៅ អត្ថបទបន្ទាប់ទៅ អត្ថបទមុនប្រវត្តិមិនខ្វល់ ការសង្កត់សំលេងនាំចូលពត៌មានតំលើង ពី ឯកសារ...វចនានុក្រម ត្រូវបានតំលើងភាសា ផ្ទាំងប្រទាក់ទ្រេតអាសយដ្ឋានតំណភ្ជាប់ ទទេកំពុងផ្ទុក​ %s...គ្រប់គ្រង វចនានុក្រម...ប្តូរទីតាំង ទៅក្រោមប្តូរទីតាំង ទៅលើបានប្រទះ កំណែថ្មីបើក ថតឯកសារសូមផ្ទុកដំបូង មួយវចនានុក្រម។កូនកម្មវិធីភ្ជាប់បង្អួចផុសមើលមុនបោះពុម្ភ អត្ថបទអានពាក្យអានពាក្យ ដោយប្រើប្រាស់ បញ្ជានេះ៖រាយការ មួយបញ្ហាកំពុងបបោសរក វចនានុក្រម...ចាប់ ជំរើសយកស្វែងរកជ្រើសយក ធាតុជ្រើសយក ក្រមអក្សរជ្រើសយក ទំហំក្រមអក្សរពត៌មានប្រើប្រាស់ ខ្លី ៖បង្ហាញ បើគ្មានរកឃើញពាក្យបង្ហាញ ពត៌មានបង្ហាញពត៌មាន អំពីវចនានុក្រមបង្ហាញ ត្រឹមបើ អ្នកផ្លាស់ប្តូរបានសង្កត់ទំហំអានពាក្យកំពុងផ្តើម ការទាញយក (%s បៃ) ...ភាសាថ្មី នឹងត្រូវបានបង្ហាញចេញ បន្ទាប់ពីផ្តើមឡើងវិញ កម្មវិធី។គ្មានរកឃើញ ពាក្យ %s។ផុតពេលកំណត់ មុនបិទបាំង បន្ទាប់ពីដាក់កណ្តុរលើចំណងជើងដើម្បីតំលើង មួយវចនានុក្រមថ្មី ពីអិនរើណែត, ជ្រើសយក គ្រប់គ្រង វចនានុក្រម... និង ជ្រើសរើសមួយ ពី ផ្ទាំង ទាញយក វចនានុក្រម។ដើម្បីតំលើង មួយវចនានុក្រមថ្មី ពីឯកសារ, ជ្រើសយក តំលើង ពីឯកសារ... ពី មែនញាវ វចនានុក្រម។ដើម្បី ផ្តើមប្រើប្រាស់ វចនានុក្រម, ជ្រើសយក មួយ ពីមែនញាវ វចនានុក្រម។អត្ថបទ សរុបរបៀបអានប្រែសំរួល កម្មវិធីអនុវត្តនេះ...ប្រែសំរួល កម្មវិធីអនុវត្តនេះ...ភាពថ្លាប្រភេទគ្មានអាចទាញយក ឯកសារ %sគូស​បន្ទាត់​​​ក្រោមទៅលើចូលមើល ទំព័រដើមbabiloo-2.0.11/locale/km/LC_MESSAGES/babiloo.po0000644000017300007100000004441511446175614020562 0ustar kmoskmos00000000000000# Khmer translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-12-26 14:53+0000\n" "Last-Translator: chhorran \n" "Language-Team: Khmer \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "អំពី បេប៊ីលូ" #: ../qt/about_ui.py:142 msgid "&About" msgstr "អំពី" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "អ្នក​និពន្ធ" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "កិច្ចព្រមព្រៀង អាជ្ញាបណ្ណ" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "បិទ" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "កំពុងបង្កើត ផ្ទាំងសន្ទនាចំបង..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "ទៅ អត្ថបទមុន" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "ទៅ អត្ថបទបន្ទាប់" #: ../qt/main.py:254 msgid "&Save to file" msgstr "រក្សាទុក ឯកសារ" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "បោះពុម្ភ អត្ថបទ" #: ../qt/main.py:264 msgid "Speak &word" msgstr "អានពាក្យ" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "បានប្រទះ កំណែថ្មី" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "បានដាក់អោយប្រើប្រាស់ មួយកំណែថ្មី នៃបេប៊ីលូ។\n" "កំណែថ្មី ៖ %s\n" "កំណែ បច្ចុប្បន្ន ៖ %s\n" "\n" "អ្នកចង់ទាញយកឥឡូវ កំណែថ្មី ?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "កំហុស" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "សូមផ្ទុកដំបូង មួយវចនានុក្រម។" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "កំហុស ពេលផ្ទុកពាក្យ %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "កំហុសព្យាយាម ផ្ទុកវចនានុក្រម\n" "ឯកសារខូច ឬ គ្មានត្រូវបានគាំទ្រ។" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s គ្មានត្រូវបានផ្ទុក ៖ %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "ពត៌មាន" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "ពត៌មានប្រើប្រាស់ ខ្លី ៖" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "ដើម្បី ផ្តើមប្រើប្រាស់ វចនានុក្រម, ជ្រើសយក មួយ ពីមែនញាវ វចនានុក្រម។" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "ដើម្បីតំលើង មួយវចនានុក្រមថ្មី ពីអិនរើណែត, ជ្រើសយក គ្រប់គ្រង " "វចនានុក្រម... និង ជ្រើសរើសមួយ ពី ផ្ទាំង ទាញយក វចនានុក្រម។" #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "ដើម្បីតំលើង មួយវចនានុក្រមថ្មី ពីឯកសារ, ជ្រើសយក តំលើង ពីឯកសារ... ពី " "មែនញាវ វចនានុក្រម។" #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "គ្មានរកឃើញ ពាក្យ %s។" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "ការកំណត់ បេប៊ីលូ" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "ភាសា ផ្ទាំងប្រទាក់" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "ប្រែសំរួល កម្មវិធីអនុវត្តនេះ..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "ប្រកាន់ អក្សរតូចធំ" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "បំពេញស្វ័យប្រវត្តិ" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "មិនខ្វល់ ការសង្កត់សំលេង" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "អានពាក្យ ដោយប្រើប្រាស់ បញ្ជានេះ៖" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "ការកំណត់ទូទៅ" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "ប្តូរទីតាំង ទៅលើ" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "ទៅលើ" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "ប្តូរទីតាំង ទៅក្រោម" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "ក្រោម" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "បង្ហាញពត៌មាន អំពីវចនានុក្រម" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "បង្ហាញ ពត៌មាន" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "ថតឯកសារ ផ្ទុកវចនានុក្រម ៖" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "រាវរក" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "វចនានុក្រម ត្រូវបានតំលើង" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "ពី តំណភ្ជាប់" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "ទាញយក វចនានុក្រម" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "ពី បញ្ជី ៖" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "ទាញយក" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "ទាញយក វចនានុក្រម" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "វចនានុក្រម" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "កូនកម្មវិធីភ្ជាប់" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "ឫកពា" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "អានពាក្យ" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "ផុតពេលកំណត់ មុនបិទបាំង បន្ទាប់ពីដាក់កណ្តុរលើ" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "កុំបិទបាំង" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " វិនាទី" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "បង្ហាញ ត្រឹមបើ អ្នកផ្លាស់ប្តូរបានសង្កត់" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "ចាប់ ជំរើសយក" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "បង្ហាញ បើគ្មានរកឃើញពាក្យ" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "រាងរៅ" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "ភាពថ្លា" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "ទទឹងលំនាំដើម" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "កំពស់ លំនាំដើម" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "បង្អួចផុស" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "មើលមុន" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "ធាតុ" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "ជ្រើសយក ធាតុ" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "ចំណងជើង" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "ការពន្យល់" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "ពាក្យខ្លី" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "ឧទាហរ" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "របៀបអាន" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "ជ្រើសយក ក្រមអក្សរ" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "ផ្ទៃ​ខាងមុខ" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "ផ្ទៃ​ខា​ងក្រោយ" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "ចុចជ្រើសយក ពណ៌" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "ជ្រើសយក ទំហំក្រមអក្សរ" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "ដិត" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "ទ្រេត" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "គូស​បន្ទាត់​​​ក្រោម" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "ទំហំ" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "ក្រមអក្សរ" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "រាងរៅ" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "បោះបង់" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "កំពុងផ្ទុក​ %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "សំអាត ប្រអប់ស្វែងរក" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "លុបសំអាត" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "អត្ថបទ" #: ../qt/main_ui.py:259 msgid "History" msgstr "ប្រវត្តិ" #: ../qt/main_ui.py:263 msgid "Search" msgstr "ស្វែងរក" #: ../qt/main_ui.py:269 msgid "&File" msgstr "ឯកសារ" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "ជំនួយ" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "ការ​កំណត់" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "ឃ្លាត" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "អំពី បេប៊ីលូ" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "កំណត់ទំរង់ បេប៊ីលូ" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "ចាប់" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "តំលើង ពី ឯកសារ..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "នាំចូល" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "គ្រប់គ្រង វចនានុក្រម..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "ចូលមើល ទំព័រដើម" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "រាយការ មួយបញ្ហា" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "ប្រែសំរួល កម្មវិធីអនុវត្តនេះ..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "កំពុងទាញយក ឯកសារ..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "បោះចោល" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "ការទាញយក" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "កំពុងផ្តើម ការទាញយក (%s បៃ) ..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "គ្មានអាចទាញយក ឯកសារ %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "អាសយដ្ឋានតំណភ្ជាប់ ទទេ" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "វចនានុក្រម ដែលគ្មានអាច ត្រូវបានទាញយក ៖\n" "%s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "កំពុងបបោសរក វចនានុក្រម..." #: ../qt/settings.py:82 msgid "Alert" msgstr "ដាស់តឿន" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "ភាសាថ្មី នឹងត្រូវបានបង្ហាញចេញ បន្ទាប់ពីផ្តើមឡើងវិញ កម្មវិធី។" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "បើក ថតឯកសារ" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "ប្រភេទ" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "ឈ្មោះវចនានុក្រម" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "អត្ថបទ សរុប" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "នាំចេញ វចនានុក្រម ជា..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/eo/LC_MESSAGES/babiloo.mo0000644000017300007100000001650511446175614020552 0ustar kmoskmos00000000000000t\        ' - 3 F L Z ` j     ! + 4 A R ] f k u        * #9 ] h m v     E  5 = I a f q |          &- CQ hrz #!2M\c r~ !  $@? $lVH  )G erw  Wa{  G ? I T`go w .=N W)b!  D!!f  !7?G]q   1? N\n$ !6Sd'9 '=elg?Z   ,3g'FK f^0UTDH?ICP8GJmhoAZ YM),Rsk5<>njL*.r# 72c\4!(i6t- Spa"V&:dN%= 9/ ;bXO[_Wl+3EQ`e1q]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-11-03 09:03+0000 Last-Translator: Michael MORONI Language-Team: Esperanto MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) sekundoj%s ne estis ŝarĝata: %sĈesigi&Pri&Pri Babiloo&Fermi&Agordi Babiloo-n&Dosiero&Helpo&Permesilo&Forlasi&Konservi al dosiero&Skani&AgordojNova versio de Babiloo estas eldonita. Nova versio: %s Nuna versio: %s&AŭtorojMallongigoPri BabilooAvertoAspektoAspektoArtikolojAŭtomate kompletigiAgordoj de BabilooFonoKondutoGrasaFoliumi...Kostruas ĉefdialogujon...RezigniUsklecodistingaViŝiViŝi la serĉujonAlklaku por elekti koloronDefaŭlta altoDefaŭlta larĝoVortarojVortarnomoVortaro, kiu ne povis esti instalita: %sDosierujo enhavanta la vortarojn:Ne kaŝiMalsuprenElŝutiElŝuti vortarojnElŝutanta vortaronElŝutantaElŝutanta dosierojn...ElementoEraroEraro dum malfermo de la vortaro. Dosiero difektita aŭ nesubtenata.Eraro dum ŝargado de la vorto %sEkzemploKlarigoEksporti vortaron kiel...TiparoMalfonoEl ligilo:El listo:Mallokaj agordojIri al &sekva artikoloIri al &antaŭa artikoloHistorioMalatenti kromsignojnImportiInformoInstali el dosiero...Instalitaj vortarojInterfaca lingvo:KursivaLigila adreso estas malplenaŜargas %s...Administri vortarojn...Movi malsuprenMovi suprenNova versio trovitaMalfermi dosierujonBonvolu unue malfermu vortaron.KromprogramojŜprucfenestroAntaŭrigardo&Printi artikolonPrononci la vortonPrononci vortojn uzante la komandon:Raporti problemonReekzamenanta vortarojn...Skani elektaĵonSerĉiElekti elementonElekti tiparonElekti tipargrandeconKoncizaj uzinformoj:Montri se vorto ne troviĝisMontri informojnMontri informojn pri vortaroMontru nur se modifilo premitaGrandoElparoli la vortonKomencanta la elŝutadon (%s bajtoj)...La nova lingvo montriĝos post restartigo de la programo.La vorto %s ne troviĝis.Tempolimo antaŭ ol kaŝi post mustuŝoTitoloPor instali novan vortaron el interreto, elektu Administri vortarojn... kaj elektu unu el la Elŝuti vortarojn-langeto.Por instali novan vortaron el dosiero, elektu instali el dosiero... el la Vortaroj-menuo.Por starti uzi vortaron, elektu unu el la Vortaro-menuo.Nombro da artikolojTransskriptoTraduki la aplikaĵonTraduki ĉi tiun programaron...TravidebloTipoNeeblas elŝuti la dosieron %sSubstrekitaSuprenViziti hejmpaĝonbabiloo-2.0.11/locale/eo/LC_MESSAGES/babiloo.po0000644000017300007100000003534511446175613020557 0ustar kmoskmos00000000000000# Esperanto translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-11-03 09:03+0000\n" "Last-Translator: Michael MORONI \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Pri Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Pri" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "&Aŭtoroj" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Permesilo" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Fermi" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Kostruas ĉefdialogujon..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Iri al &antaŭa artikolo" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Iri al &sekva artikolo" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Konservi al dosiero" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "&Printi artikolon" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Elparoli la vorton" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Nova versio trovita" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Nova versio de Babiloo estas eldonita.\n" "\n" "Nova versio: %s\n" "Nuna versio: %s" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Eraro" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Bonvolu unue malfermu vortaron." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Eraro dum ŝargado de la vorto %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Eraro dum malfermo de la vortaro.\n" "Dosiero difektita aŭ nesubtenata." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s ne estis ŝarĝata: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Informo" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Koncizaj uzinformoj:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "Por starti uzi vortaron, elektu unu el la Vortaro-menuo." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Por instali novan vortaron el interreto, elektu Administri " "vortarojn... kaj elektu unu el la Elŝuti vortarojn-langeto." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Por instali novan vortaron el dosiero, elektu instali el dosiero... " "el la Vortaroj-menuo." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "La vorto %s ne troviĝis." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Agordoj de Babiloo" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Interfaca lingvo:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Traduki ĉi tiun programaron..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Usklecodistinga" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Aŭtomate kompletigi" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Malatenti kromsignojn" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Prononci vortojn uzante la komandon:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Mallokaj agordoj" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Movi supren" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Supren" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Movi malsupren" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Malsupren" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Montri informojn pri vortaro" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Montri informojn" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Dosierujo enhavanta la vortarojn:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Foliumi..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Instalitaj vortaroj" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "El ligilo:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Elŝutanta vortaron" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "El listo:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Elŝuti" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Elŝuti vortarojn" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Vortaroj" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Kromprogramoj" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Konduto" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Prononci la vorton" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Tempolimo antaŭ ol kaŝi post mustuŝo" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Ne kaŝi" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " sekundoj" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Montru nur se modifilo premita" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Skani elektaĵon" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Montri se vorto ne troviĝis" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Aspekto" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Travideblo" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Defaŭlta larĝo" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Defaŭlta alto" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Ŝprucfenestro" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Antaŭrigardo" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Elemento" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Elekti elementon" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Titolo" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Klarigo" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Mallongigo" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Ekzemplo" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transskripto" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Elekti tiparon" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Malfono" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Fono" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Alklaku por elekti koloron" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Elekti tipargrandecon" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Grasa" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Kursiva" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Substrekita" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Grando" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Tiparo" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Aspekto" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Rezigni" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Ŝargas %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Viŝi la serĉujon" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Viŝi" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artikoloj" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historio" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Serĉi" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Dosiero" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Helpo" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Agordoj" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Forlasi" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Pri Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Agordi Babiloo-n" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Skani" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Instali el dosiero..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Importi" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Administri vortarojn..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Viziti hejmpaĝon" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Raporti problemon" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Traduki la aplikaĵon" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Elŝutanta dosierojn..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "Ĉesigi" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Elŝutanta" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Komencanta la elŝutadon (%s bajtoj)..." #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Neeblas elŝuti la dosieron %s" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Ligila adreso estas malplena" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Vortaro, kiu ne povis esti instalita:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Reekzamenanta vortarojn..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Averto" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "La nova lingvo montriĝos post restartigo de la programo." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Malfermi dosierujon" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tipo" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Vortarnomo" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Nombro da artikoloj" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Eksporti vortaron kiel..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/da/LC_MESSAGES/babiloo.mo0000644000017300007100000001205511446175614020527 0ustar kmoskmos00000000000000Nk      - >IRWo~  E; COg lw     9 A N V e #x        !" D b g @s $  l H @ O ] {    4>BG V c n z '4D S `koN  2Jbqv   %9M _m~" 7% ](~}`+D   *AF9&"%=$-;*G48:,7C0/'K3> (BM12 .J?)I!L#+<E 6 5N@ HD seconds&About&Close&License Agreement&Save to fileA&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBuilding main dialog...Case sensitiveClick to select colorDefault heightDefault widthDictionary nameDon't hideDownDownload DictionariesElementErrorError trying to load the dictionary. File corrupted or not supported.ExampleExplanationExport dictionary as...FontForegroundGlobal settingsGo to &next articleGo to &previous articleIgnore accentsInfoInstalled DictionariesInterface Language:ItalicLoading %s...Move downMove upPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemScan selectionSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordThe new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...TransparencyTypeUnderlineUpProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-02-05 14:24+0000 Last-Translator: AJenbo Language-Team: Danish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) sekunder&om&luk&licens aftale&gem til filForfattereforkortelseom BabiloobeskedudseendeudseendeAutoUdførelseBabiloo indstillingerbaggrundopførselfedbygger hoved dialogen...Følsom overfor store og små bogstaverklik for at vælge farvestandart højdestandart bredeOrdbogs navngemte ikkeneddownload ordbøgerelementFejlFejl ved ordbogs overførelse filen er enten korupteret eller ikke supportereteksempelforklaringexporter orbog som...skrifttypeforgrundGlobale indstillingergå til &næste artikelGå til &forige artikelIgnorer accentinfoinstaller odbøgerInterface sprogKursivloader %s...ryk nedryk opload veligst en ordbog førstpluginspopup vinduesmug kigPrin&t artikeludtal ordetUdtal ord ved hjælp af denne komandoRaporter et problemscan udvælgelsenvælg elementvælg skrifttypeVælg skriftstørelsekort bruger informationvis hvis ordet ikke blev fundetvis infovis information om ordbogvis kun hvis modifikatoren trykkesstørelsesig &ordDet nye sprog vil blive vist når programmet genstartesordet %s blev ikke fundettimeout før gem efter musen føres overTitelFor at installere en ny ordbog fre internettet, vælg orden ordbøger... og vælg en fra download ordbøgertab.for at installere en ny orbog fra en fil, vælg installer fil... fraordbogsmenuen.For at begynde brugen af ordbogen, vælg en af ordbøger menuAlle artiklertranskriptionoversæt denne applikationgennemsigtighedtastunderstregetopbabiloo-2.0.11/locale/da/LC_MESSAGES/babiloo.po0000644000017300007100000003375611446175613020544 0ustar kmoskmos00000000000000# Danish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-02-05 14:24+0000\n" "Last-Translator: AJenbo \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "om Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&om" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "Forfattere" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&licens aftale" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&luk" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "bygger hoved dialogen..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Gå til &forige artikel" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "gå til &næste artikel" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&gem til fil" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Prin&t artikel" #: ../qt/main.py:264 msgid "Speak &word" msgstr "sig &ord" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Fejl" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "load veligst en ordbog først" #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Fejl ved ordbogs overførelse\n" "filen er enten korupteret eller ikke supporteret" #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "info" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "kort bruger information" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "For at begynde brugen af ordbogen, vælg en af ordbøger menu" #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "For at installere en ny ordbog fre internettet, vælg orden " "ordbøger... og vælg en fra download ordbøgertab." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "for at installere en ny orbog fra en fil, vælg installer fil... " "fraordbogsmenuen." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "ordet %s blev ikke fundet" #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloo indstillinger" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Interface sprog" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Følsom overfor store og små bogstaver" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "AutoUdførelse" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ignorer accent" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Udtal ord ved hjælp af denne komando" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Globale indstillinger" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "ryk op" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "op" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "ryk ned" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "ned" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "vis information om ordbog" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "vis info" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "installer odbøger" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "download ordbøger" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "plugins" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "opførsel" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "udtal ordet" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "timeout før gem efter musen føres over" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "gemte ikke" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " sekunder" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "vis kun hvis modifikatoren trykkes" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "scan udvælgelsen" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "vis hvis ordet ikke blev fundet" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "udseende" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "gennemsigtighed" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "standart brede" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "standart højde" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "popup vindue" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "smug kig" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "element" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "vælg element" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Titel" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "forklaring" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "forkortelse" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "eksempel" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "transkription" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "vælg skrifttype" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "forgrund" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "baggrund" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "klik for at vælge farve" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Vælg skriftstørelse" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "fed" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Kursiv" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "understreget" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "størelse" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "skrifttype" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "udseende" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "loader %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "" #: ../qt/main_ui.py:259 msgid "History" msgstr "" #: ../qt/main_ui.py:263 msgid "Search" msgstr "" #: ../qt/main_ui.py:269 msgid "&File" msgstr "" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "" #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Raporter et problem" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "oversæt denne applikation" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "besked" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Det nye sprog vil blive vist når programmet genstartes" #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "tast" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Ordbogs navn" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Alle artikler" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "exporter orbog som..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/pt_PT/LC_MESSAGES/babiloo.mo0000644000017300007100000001775711446175614021207 0ustar kmoskmos00000000000000v|      - 4 G M S f l z   " 0 6 A K T a r }         &' )N *x #      + 3 E9      -5DKkp  (H P]et# 2 I!Su $@ $+PVlHM   &)8  ' ;EL`g ~ } ); A LW_y  =P dq,//' :H NYq M ) 1> [ix    3!@bz * F Q^n. +=%W%})) (JD(0tH= N\y$ i&HMh`'WVFJ@CKER9I1LojqB\ [O*-Tum6=?plN+/>" 83e^5 )k7t. Urc!X%;fP$( :0 <dZQ]aYn,4GSbg2s_DA#v seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...Case sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary successfully installed: %sDictionary that coudn't be installed: %sDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportImport one or many dictionariesInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2009-04-27 03:46+0700 PO-Revision-Date: 2009-04-27 18:51+0000 Last-Translator: Marco Rodrigues Language-Team: Portuguese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2009-04-27 18:56+0000 X-Generator: Launchpad (build Unknown) segundos%s não foi carregado: %s&Abortar&Acerca&Acerca do BabilooFe&char&Configurar Babiloo&Ficheiro&AjudaAcordo de &Licença&Saír&Guardar para ficheiro&Examinar&DefiniçõesUma nova versão do Babiloo foi lançada. Nova versão: %s Versão actual: %s Gostaria de transferir agora a nova versão ?A&utoresAbreviaturaAcerca do BabilooAvisoAparênciaAparênciaArtigosCompletar AutomaticamenteDefinições do BabilooPlano de fundoComportamentoNegritoProcurar...A construir janela principal...Sensível à capitalizaçãoLimparLimpar caixa de pesquisaClique para seleccionar a corAltura predefinidaLargura predefinidaDicionáriosNome do dicionárioO dicionário foi instalado com sucesso: %sNão foi possível instalar o dicionário:: %sNão foi possível instalar o dicionário:: %sPasta de armazenamento de dicionários:Não esconderBaixoTransferirTransferir DicionáriosTransferir dicionárioA transferirA transferir ficheiros...ElementoErroErro ao tentar carregar o dicionário. Ficheiro corrompido ou não suportado.Erro ao carregar a palavra %sExemploExplicaçãoExportar dicionário como...Tipo de LetraPrimeiro planoA partir do endereço:A partir da lista:Configurações globaisIr para o p&róximo artigoIr para artigo &anteriorHistóricoIgnorar acentosImportarImportar um ou mais dicionáriosInformaçãoInstalar ficheiro a partir de ...Dicionários InstaladosIdioma da Interface:ItálicoO endereço está vazioA carregar %s...Gerir Dicionários...Mover para baixoMover para cimaNova versão detectadaAbrir PastaPor favor carregue o dicionário primeiro.ExtensõesJanela popupPré-visualizarIm&primir artigoPronunciar a palavraPronuncie estas palavras utilizando o comando:Comunicar um problemaA examinar os dicionários...Pesquisar selecçãoPesquisarSeleccionar elementoSeleccionar fonteSeleccionar Tipo de LetraInformação rápida de utilização:Mostrar se nenhuma palavra encontradaMostrar informaçãoMostrar informações sobre o dicionárioApenas mostrar se notificador pressionadoTamanhoReproduzir &palavraA transferir (%s bytes) ...É necessário reiniciar o programa para que o novo idioma seja utilizado.A palavra %s não foi encontrada.Tempo até esconder ponteiro se estiver por cimaTítuloPara instalar um dicionário pela internet, seleccione Gerir Dicionários... e escolha um do separador Transferir Dicionários.Para instalar um dicionário de um ficheiro, seleccione Instalar ficheiro de ... do menu Dicionários.Para utilizar um dicionário, seleccione um no menu Dicionários.Total de artigosTranscriçãoTraduzir esta aplicação...Traduzir esta AplicaçãoTransparênciaTipoImpossível transferir o ficheiro %sSublinhadoCimaVisitar Sítio Webbabiloo-2.0.11/locale/pt_PT/LC_MESSAGES/babiloo.po0000644000017300007100000004073511443252104021165 0ustar kmoskmos00000000000000# Portuguese translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-04-27 03:46+0700\n" "PO-Revision-Date: 2009-04-27 18:51+0000\n" "Last-Translator: Marco Rodrigues \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2009-04-27 18:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:253 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:257 msgid "Clear the search box" msgstr "Limpar caixa de pesquisa" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:254 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:258 msgid "Clear" msgstr "Limpar" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:255 msgid "Articles" msgstr "Artigos" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:256 msgid "History" msgstr "Histórico" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:260 msgid "Search" msgstr "Pesquisar" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:266 msgid "&File" msgstr "&Ficheiro" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:267 msgid "&Help" msgstr "&Ajuda" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:268 msgid "&Settings" msgstr "&Definições" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:269 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:537 msgid "Dictionaries" msgstr "Dicionários" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:270 msgid "&Quit" msgstr "&Saír" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:271 msgid "&About Babiloo" msgstr "&Acerca do Babiloo" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:272 msgid "&Configure Babiloo" msgstr "&Configurar Babiloo" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:273 msgid "&Scan" msgstr "&Examinar" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:274 msgid "Install from file..." msgstr "Instalar ficheiro a partir de ..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:275 #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:276 msgid "Import" msgstr "Importar" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:277 msgid "Manage Dictionaries..." msgstr "Gerir Dicionários..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:278 msgid "Visit HomePage" msgstr "Visitar Sítio Web" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:279 msgid "Report A Problem" msgstr "Comunicar um problema" #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:280 msgid "Translate This Application..." msgstr "Traduzir esta aplicação..." #: /home/capiscuas/workspace/babiloo/qt/main_ui.py:281 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:536 msgid "Download Dictionaries" msgstr "Transferir Dicionários" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:119 msgid "About Babiloo" msgstr "Acerca do Babiloo" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:142 msgid "&About" msgstr "&Acerca" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:150 msgid "A&uthors" msgstr "A&utores" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:172 msgid "&License Agreement" msgstr "Acordo de &Licença" #: /home/capiscuas/workspace/babiloo/qt/about_ui.py:173 msgid "&Close" msgstr "Fe&char" #: /home/capiscuas/workspace/babiloo/qt/settings.py:66 #: /home/capiscuas/workspace/babiloo/qt/main.py:543 msgid "Alert" msgstr "Aviso" #: /home/capiscuas/workspace/babiloo/qt/settings.py:66 msgid "The new language will be displayed after restarting the program." msgstr "" "É necessário reiniciar o programa para que o novo idioma seja utilizado." #: /home/capiscuas/workspace/babiloo/qt/settings.py:116 msgid "Open Directory" msgstr "Abrir Pasta" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:222 msgid "Downloading files..." msgstr "A transferir ficheiros..." #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:222 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:354 #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:70 msgid "&Abort" msgstr "&Abortar" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:223 msgid "Downloading" msgstr "A transferir" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:236 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "A transferir (%s bytes) ..." #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:267 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:304 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:312 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:322 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:342 #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:84 #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:130 #: /home/capiscuas/workspace/babiloo/qt/main.py:434 #: /home/capiscuas/workspace/babiloo/qt/main.py:443 #: /home/capiscuas/workspace/babiloo/qt/main.py:516 msgid "Error" msgstr "Erro" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:267 #, python-format msgid "Unable to download file %s" msgstr "Impossível transferir o ficheiro %s" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:304 msgid "Link address is empty" msgstr "O endereço está vazio" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:312 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:342 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Não foi possível instalar o dicionário::\n" " %s" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:346 #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:355 #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:71 msgid "Info" msgstr "Informação" #: /home/capiscuas/workspace/babiloo/qt/onlineDictionariesView.py:354 #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:70 msgid "Rescanning dictionaries..." msgstr "A examinar os dicionários..." #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:16 msgid "Type" msgstr "Tipo" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:16 msgid "Dictionary name" msgstr "Nome do dicionário" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:16 msgid "Total articles" msgstr "Total de artigos" #: /home/capiscuas/workspace/babiloo/qt/dictionariesview.py:127 msgid "Export dictionary as..." msgstr "Exportar dicionário como..." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:17 msgid "Short Usage Information:" msgstr "Informação rápida de utilização:" #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:18 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Para utilizar um dicionário, seleccione um no menu Dicionários." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:19 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Para instalar um dicionário pela internet, seleccione Gerir " "Dicionários... e escolha um do separador Transferir Dicionários." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:20 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Para instalar um dicionário de um ficheiro, seleccione Instalar ficheiro " "de ... do menu Dicionários." #: /home/capiscuas/workspace/babiloo/qt/definitionView.py:28 #, python-format msgid "The word %s is not found." msgstr "A palavra %s não foi encontrada." #: /home/capiscuas/workspace/babiloo/qt/dictfilemanager.py:70 #, python-format msgid "Loading %s..." msgstr "A carregar %s..." #: /home/capiscuas/workspace/babiloo/qt/main.py:160 msgid "Building main dialog..." msgstr "A construir janela principal..." #: /home/capiscuas/workspace/babiloo/qt/main.py:228 msgid "Go to &previous article" msgstr "Ir para artigo &anterior" #: /home/capiscuas/workspace/babiloo/qt/main.py:233 msgid "Go to &next article" msgstr "Ir para o p&róximo artigo" #: /home/capiscuas/workspace/babiloo/qt/main.py:238 msgid "&Save to file" msgstr "&Guardar para ficheiro" #: /home/capiscuas/workspace/babiloo/qt/main.py:243 msgid "Prin&t article" msgstr "Im&primir artigo" #: /home/capiscuas/workspace/babiloo/qt/main.py:248 msgid "Speak &word" msgstr "Reproduzir &palavra" #: /home/capiscuas/workspace/babiloo/qt/main.py:329 msgid "New Version Detected" msgstr "Nova versão detectada" #: /home/capiscuas/workspace/babiloo/qt/main.py:330 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Uma nova versão do Babiloo foi lançada.\n" "\n" "Nova versão: %s\n" "Versão actual: %s\n" "\n" "Gostaria de transferir agora a nova versão ?" #: /home/capiscuas/workspace/babiloo/qt/main.py:434 msgid "Please load a dictionary first." msgstr "Por favor carregue o dicionário primeiro." #: /home/capiscuas/workspace/babiloo/qt/main.py:443 #, python-format msgid "Error while loading the word %s" msgstr "Erro ao carregar a palavra %s" #: /home/capiscuas/workspace/babiloo/qt/main.py:510 msgid "Import one or many dictionaries" msgstr "Importar um ou mais dicionários" #: /home/capiscuas/workspace/babiloo/qt/main.py:516 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Erro ao tentar carregar o dicionário.\n" "Ficheiro corrompido ou não suportado." #: /home/capiscuas/workspace/babiloo/qt/main.py:528 #, python-format msgid "%s was not loaded: %s" msgstr "%s não foi carregado: %s" #: /home/capiscuas/workspace/babiloo/qt/main.py:540 #, python-format msgid "" "Dictionary successfully installed:\n" " %s" msgstr "" "O dicionário foi instalado com sucesso:\n" " %s" #: /home/capiscuas/workspace/babiloo/qt/main.py:542 #, python-format msgid "" "Dictionary that coudn't be installed:\n" " %s" msgstr "" "Não foi possível instalar o dicionário::\n" " %s" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:506 msgid "Babiloo Settings" msgstr "Definições do Babiloo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:507 msgid "Interface Language:" msgstr "Idioma da Interface:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:508 msgid "Translate this Application..." msgstr "Traduzir esta Aplicação" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:509 msgid "Case sensitive" msgstr "Sensível à capitalização" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:510 msgid "AutoComplete" msgstr "Completar Automaticamente" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:511 msgid "Ignore accents" msgstr "Ignorar acentos" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:512 msgid "Pronounce words using this command:" msgstr "Pronuncie estas palavras utilizando o comando:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:513 msgid "Global settings" msgstr "Configurações globais" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:516 msgid "Move up" msgstr "Mover para cima" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:517 msgid "Up" msgstr "Cima" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:518 msgid "Move down" msgstr "Mover para baixo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:519 msgid "Down" msgstr "Baixo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:520 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:533 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:540 msgid "Show information about dictionary" msgstr "Mostrar informações sobre o dicionário" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:521 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:534 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:541 msgid "Show info" msgstr "Mostrar informação" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:524 msgid "Directory storing the dictionaries:" msgstr "Pasta de armazenamento de dicionários:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:525 msgid "Browse..." msgstr "Procurar..." #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:526 msgid "Installed Dictionaries" msgstr "Dicionários Instalados" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:527 msgid "From link:" msgstr "A partir do endereço:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:528 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:529 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:531 msgid "Download dictionary" msgstr "Transferir dicionário" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:530 msgid "From list:" msgstr "A partir da lista:" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:532 msgid "Download" msgstr "Transferir" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:543 msgid "Plugins" msgstr "Extensões" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:544 msgid "Behavior" msgstr "Comportamento" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:545 msgid "Pronounce the word" msgstr "Pronunciar a palavra" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:546 msgid "Timeout before hide after mouse over" msgstr "Tempo até esconder ponteiro se estiver por cima" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:547 msgid "Don't hide" msgstr "Não esconder" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:548 msgid " seconds" msgstr " segundos" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:549 msgid "Show only if modifier pressed" msgstr "Apenas mostrar se notificador pressionado" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:554 msgid "Scan selection" msgstr "Pesquisar selecção" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:555 msgid "Show if word not found" msgstr "Mostrar se nenhuma palavra encontrada" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:556 msgid "Apperance" msgstr "Aparência" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:557 msgid "Transparency" msgstr "Transparência" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:559 msgid "Default width" msgstr "Largura predefinida" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:560 msgid "Default height" msgstr "Altura predefinida" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:561 msgid "Popup window" msgstr "Janela popup" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:562 msgid "Preview" msgstr "Pré-visualizar" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:563 msgid "Element" msgstr "Elemento" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:564 msgid "Select element" msgstr "Seleccionar elemento" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:565 msgid "Title" msgstr "Título" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:566 msgid "Explanation" msgstr "Explicação" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:567 msgid "Abbreviation" msgstr "Abreviatura" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:568 msgid "Example" msgstr "Exemplo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:569 msgid "Transcription" msgstr "Transcrição" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:570 msgid "Select font" msgstr "Seleccionar fonte" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:571 msgid "Foreground" msgstr "Primeiro plano" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:572 msgid "Background" msgstr "Plano de fundo" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:573 #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:575 msgid "Click to select color" msgstr "Clique para seleccionar a cor" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:577 msgid "Select font size" msgstr "Seleccionar Tipo de Letra" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:578 msgid "Bold" msgstr "Negrito" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:580 msgid "Italic" msgstr "Itálico" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:582 msgid "Underline" msgstr "Sublinhado" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:584 msgid "Size" msgstr "Tamanho" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:585 msgid "Font" msgstr "Tipo de Letra" #: /home/capiscuas/workspace/babiloo/qt/settings_ui.py:586 msgid "Appearance" msgstr "Aparência" babiloo-2.0.11/locale/sl/LC_MESSAGES/babiloo.mo0000644000017300007100000001355511446175614020567 0ustar kmoskmos00000000000000_  (/BHNa gu {        + 1 F \ k y      E   $ < A L \ p           ! ) I Q ^ f u #        / !9 [ y ~ @ $   l HW ft  dl oz      "*?RYah( #'6>GE - 3?Vk}      %-Scry )IR)c!&jd<  5@ GRVAY*0Q/I3=X,MB%5) +T:^S8 \62_K?9'U F["-N #&W>PE.$V G!HR]1C4@L;<ZJ(OD 7 seconds&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBuilding main dialog...Case sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDon't hideDownDownload DictionariesElementErrorError trying to load the dictionary. File corrupted or not supported.ExampleExplanationExport dictionary as...FontForegroundGlobal settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLoading %s...Manage Dictionaries...Move downMove upPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemScan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionaryShow only if modifier pressedSizeSpeak &wordThe new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...TransparencyTypeUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2009-03-25 17:34+0000 Last-Translator: SkyKnight Language-Team: Slovenian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) sekund%O&O Babiloo&Zapri&Konfiguriraj Babiloo&Datoteka&Pomoč&Licenčna pogodba&Izhod&Shrani v datoteko&Skeniraj&NastavitveA&vtorjiOkrajšavaO BabilooOpozoriloIzgledIzgledČlankiDokončaj avtomatskoBabiloo nastavitveOzadjeVedenjeKrepkoGradim glavni dialog...Občutljivo na velike in male začetnicePočistiPočisti polje za iskanjeS klikom izberi barvoPrivzeta višinaPrivzeta širinaSlovarjiIme slovarjaNe skrijDolSnemi slovarjeElementNapakaNapaka pri nalaganju slovarja. Datoteka poškodovana ali pa ni podprta.PrimerRazlagaIzvozi slovar kot...PisavaOspredjeSplošne nastavitvePojdi na &naslednji članekPojdi na &prejšnji članekZgodovinaPrezri naglasna mestaUvoziInformacijeNamesti iz datoteke...Nameščeni SlovarjiVmesniški jezik:LežečeNalagam %s...Upravljaj s Slovarji...Premakni dolPremakni gorProsim najprej naloži slovar.PriključkiNezahtevano oknoPredogledNatisni &članekIzgovori besedoIzgovori besede z uporabo tega ukaza:Prijavi ProblemSkeniraj izborIščiIzberi elementIzberi pisavoIzberi velikost pisaveInformacije za trenutno rabo:Prikaži če beseda ni najdenaPrikaži informacijoPrikaži informacijo o slovarjuPrikaži le če je modifikator pritisnjenVelikostIzgovori &besedoNov jezik bo prikazan po ponovnem zagonu.Beseda %s ni bila najdena.Čas pred skritjem po preletu z miškoNaslovZa namestitev novega slovarja z interneta, izberi Upravljaj s slovarji... in si poišči enega iz Snemi Slovarje tabele.Za namestitev novega slovarja iz datoteke, izberi Namesti iz datoteke... iz Slovarji menuja.Za uporabo slovarja, izberi enega iz Slovarji menija.Vsi člankiPrepisPrevedi to aplikacijoProzornostTipkajPodčrtanoGorObišči Domačo stranbabiloo-2.0.11/locale/sl/LC_MESSAGES/babiloo.po0000644000017300007100000003437211446175614020572 0ustar kmoskmos00000000000000# Slovenian translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2009-03-25 17:34+0000\n" "Last-Translator: SkyKnight \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "O Babiloo" #: ../qt/about_ui.py:142 msgid "&About" msgstr "%O" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "A&vtorji" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Licenčna pogodba" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Zapri" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Gradim glavni dialog..." #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Pojdi na &prejšnji članek" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Pojdi na &naslednji članek" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Shrani v datoteko" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "Natisni &članek" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Izgovori &besedo" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Napaka" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Prosim najprej naloži slovar." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Napaka pri nalaganju slovarja.\n" "Datoteka poškodovana ali pa ni podprta." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Informacije" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Informacije za trenutno rabo:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "Za uporabo slovarja, izberi enega iz Slovarji menija." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Za namestitev novega slovarja z interneta, izberi Upravljaj s " "slovarji... in si poišči enega iz Snemi Slovarje tabele." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Za namestitev novega slovarja iz datoteke, izberi Namesti iz " "datoteke... iz Slovarji menuja." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Beseda %s ni bila najdena." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloo nastavitve" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Vmesniški jezik:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "" #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Občutljivo na velike in male začetnice" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Dokončaj avtomatsko" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Prezri naglasna mesta" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Izgovori besede z uporabo tega ukaza:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Splošne nastavitve" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Premakni gor" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Gor" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Premakni dol" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "Dol" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Prikaži informacijo o slovarju" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "Prikaži informacijo" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "" #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Nameščeni Slovarji" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Snemi slovarje" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Slovarji" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Priključki" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Vedenje" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Izgovori besedo" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Čas pred skritjem po preletu z miško" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Ne skrij" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " sekund" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "Prikaži le če je modifikator pritisnjen" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Skeniraj izbor" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Prikaži če beseda ni najdena" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Izgled" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Prozornost" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Privzeta širina" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Privzeta višina" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Nezahtevano okno" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Predogled" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Element" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Izberi element" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Naslov" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Razlaga" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Okrajšava" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Primer" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Prepis" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Izberi pisavo" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Ospredje" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Ozadje" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "S klikom izberi barvo" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Izberi velikost pisave" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Krepko" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Ležeče" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Podčrtano" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Velikost" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Pisava" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Izgled" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Nalagam %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Počisti polje za iskanje" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Počisti" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Članki" #: ../qt/main_ui.py:259 msgid "History" msgstr "Zgodovina" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Išči" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Datoteka" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Pomoč" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Nastavitve" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Izhod" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&O Babiloo" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Konfiguriraj Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Skeniraj" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Namesti iz datoteke..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Uvozi" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Upravljaj s Slovarji..." #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Obišči Domačo stran" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Prijavi Problem" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Prevedi to aplikacijo" #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "" #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "" #: ../qt/settings.py:82 msgid "Alert" msgstr "Opozorilo" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Nov jezik bo prikazan po ponovnem zagonu." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tipkaj" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Ime slovarja" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Vsi članki" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Izvozi slovar kot..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr "" babiloo-2.0.11/locale/fi/LC_MESSAGES/babiloo.mo0000644000017300007100000001652111446175614020543 0ustar kmoskmos00000000000000sL          # 6 < J P Z      $ 1 B M V [ e }       * #) M X ] f |    E  % - 9 Q V a l w          3A Xbj #"=LS bn ! $@ R$sl(H  7DI dnq % ;FOcj ~ m <FNa ju }  0 J X ep   $J*u   <E[_f|    !#-Q ` mx ##7K hu#G,CKlOJ   )5<f'FK e^0UTDH?ICP8GJlgnAZ YM),Rrj5<>miL*.q# 72b\4!(h6s- So`"V&:cN%= 9/ ;aXO[_Wk+3EQd1p]B@$ seconds%s was not loaded: %s&Abort&About&About Babiloo&Close&Configure Babiloo&File&Help&License Agreement&Quit&Save to file&Scan&SettingsA new version of Babiloo has been released. New Version: %s Current Version: %s Would you like to download the new version now?A&uthorsAbbreviationAbout BabilooAlertAppearanceApperanceArticlesAutoCompleteBabiloo SettingsBackgroundBehaviorBoldBrowse...Building main dialog...CancelCase sensitiveClearClear the search boxClick to select colorDefault heightDefault widthDictionariesDictionary nameDictionary that couldn't be installed: %sDirectory storing the dictionaries:Don't hideDownDownloadDownload DictionariesDownload dictionaryDownloadingDownloading files...ElementErrorError trying to load the dictionary. File corrupted or not supported.Error while loading the word %sExampleExplanationExport dictionary as...FontForegroundFrom link:From list:Global settingsGo to &next articleGo to &previous articleHistoryIgnore accentsImportInfoInstall from file...Installed DictionariesInterface Language:ItalicLink address is emptyLoading %s...Manage Dictionaries...Move downMove upNew Version DetectedOpen DirectoryPlease load a dictionary first.PluginsPopup windowPreviewPrin&t articlePronounce the wordPronounce words using this command:Report A ProblemRescanning dictionaries...Scan selectionSearchSelect elementSelect fontSelect font sizeShort Usage Information:Show if word not foundShow infoShow information about dictionarySizeSpeak &wordStarting the download (%s bytes) ...The new language will be displayed after restarting the program.The word %s is not found.Timeout before hide after mouse overTitleTo install a new dictionary from Internet, select Manage Dictionaries... and choose one from the Download Dictionaries tab.To install a new dictionary from file, select Install from file... from the Dictionaries menu.To start using dictionary, select one from the Dictionaries menu.Total articlesTranscriptionTranslate This Application...Translate this Application...TransparencyTypeUnable to download file %sUnderlineUpVisit HomePageProject-Id-Version: babiloo Report-Msgid-Bugs-To: FULL NAME POT-Creation-Date: 2010-09-18 16:22+0100 PO-Revision-Date: 2010-06-27 09:28+0000 Last-Translator: Jiri Grönroos Language-Team: Finnish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-09-21 18:28+0000 X-Generator: Launchpad (build Unknown) sekuntia%s :aa ei ladattu: %s&Keskeytä&Tietoja&Tietoja Babiloosta&Sulje&Konfiguroi Babiloo&Tiedosto&Ohje&Lisenssisopimus&Lopeta&Tallenna nimellä&Skannaa&AsetuksetUusi versio Babiloosta on julkaistu. Uusi versio: %s Nykyinen versio; %s Haluatko ladata uuden version nyt?&TekijätLyhenneTietoja BabiloostaHälytysUlkonäköUlkoasuArtikkelitAutomaattinen täyttöBabiloon asetuksetTaustaKäyttäytyminenLihavoituSelaa...Rakennetaan päädialogiaPeruHuomioi kirjainkokoTyhjennäTyhjennä hakukenttäKlikkaa valitaksesi väriOletuskorkeusOletusleveysSanakirjatSanakirjan nimiSanakirjaa ei voitu asentaa: %sSanakirjojen luettelointi:Älä piilotaloppuunLataaLataa sanakirjojaLataa sanakirjaLadataanLadataan tiedostoja...ElementtiVirheVirhe ladatessa sanakirjaa. Tiedosto on korruptoitunut tai sitä ei tueta.Virhe ladattaessa sanaa %sEsimerkkiSelitysVie sanakirja tiedostoon...FonttiEtualaLinkistä:Listasta:Sivuston laajuiset asetuksetSiirry &seuraavaan artikkeliinSiirry &edelliseen artikkeliinHistoriaOhita aksenttivirheetTuoTietoaAsenna tiedostosta...Asennetut sanakirjatKäyttöliittymän kieli:KursiiviOsoite on tyhjäLadataan tiedostoa %s...Hallitse sanakirjojaSiirry alasSiirry ylösUusi versio havaittuAvaa kansioOle hyvä ja lataa sanakirja ensin.LiitännäisetPopup-ikkunaEsikatselu&Tulosta artikkeliLausu sanaLausu sanat tällä komennolla:Raportoi ongelmastaUudelleen etsitään sanakirjoja...SkannausvalintaHaeValitse elementtiValitse fonttiValitse fontin kokoLyhyt käyttöohje:Näytä, jos sanaa ei löydynäytä infoNäytä tietoa sanakirjastaKokoÄännä &sanaAloitetaan lataaminen (%s tavua...)Uutta kieltä käytetään ohjelman uudelleenkäynnistämisen jälkeen.Sanaa %s ei löydy.Piilota hiiren osoitinOtsikkoAsentaaksesi uuden sanakirjan internetistä, valitse Hallitse sanakirjoja... ja valitse sanakirja Lataa sanakirjoja välilehdestä.Asentaaksesi uuden sanakirjan tiedostosta, valitse Asenna tiedostosta... Sanakirjat-valikosta.Aloittaaksesi sanakirjan käyttämisen, valitse se Sanakirjat-valikosta.Artikkeleita yhteensäTranskriptioKäännä tämä ohjelma...Käännä tämä ohjelma...LäpinäkyvyysTyyppiTiedostoa %s ei voida ladataAlleviivausAlkuunVieraile kotisivullababiloo-2.0.11/locale/fi/LC_MESSAGES/babiloo.po0000644000017300007100000003545411446175614020554 0ustar kmoskmos00000000000000# Finnish translation for babiloo # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the babiloo package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: babiloo\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-09-18 16:22+0100\n" "PO-Revision-Date: 2010-06-27 09:28+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-09-21 18:28+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../qt/about_ui.py:119 msgid "About Babiloo" msgstr "Tietoja Babiloosta" #: ../qt/about_ui.py:142 msgid "&About" msgstr "&Tietoja" #: ../qt/about_ui.py:150 msgid "A&uthors" msgstr "&Tekijät" #: ../qt/about_ui.py:172 msgid "&License Agreement" msgstr "&Lisenssisopimus" #: ../qt/about_ui.py:173 msgid "&Close" msgstr "&Sulje" #: ../qt/main.py:144 msgid "Building main dialog..." msgstr "Rakennetaan päädialogia" #: ../qt/main.py:228 msgid "Help us with a donation" msgstr "" #: ../qt/main.py:244 msgid "Go to &previous article" msgstr "Siirry &edelliseen artikkeliin" #: ../qt/main.py:249 msgid "Go to &next article" msgstr "Siirry &seuraavaan artikkeliin" #: ../qt/main.py:254 msgid "&Save to file" msgstr "&Tallenna nimellä" #: ../qt/main.py:259 msgid "Prin&t article" msgstr "&Tulosta artikkeli" #: ../qt/main.py:264 msgid "Speak &word" msgstr "Äännä &sana" #: ../qt/main.py:368 msgid "New Version Detected" msgstr "Uusi versio havaittu" #: ../qt/main.py:369 #, python-format msgid "" "A new version of Babiloo has been released.\n" "\n" "New Version: %s\n" "Current Version: %s\n" "\n" "Would you like to download the new version now?" msgstr "" "Uusi versio Babiloosta on julkaistu.\n" "\n" "Uusi versio: %s\n" "Nykyinen versio; %s\n" "\n" "Haluatko ladata uuden version nyt?" #: ../qt/main.py:480 ../qt/main.py:489 ../qt/main.py:563 #: ../qt/onlineDictionariesView.py:280 ../qt/onlineDictionariesView.py:317 #: ../qt/onlineDictionariesView.py:323 ../qt/onlineDictionariesView.py:333 #: ../qt/onlineDictionariesView.py:350 ../qt/dictionariesview.py:100 #: ../qt/dictionariesview.py:146 msgid "Error" msgstr "Virhe" #: ../qt/main.py:480 msgid "Please load a dictionary first." msgstr "Ole hyvä ja lataa sanakirja ensin." #: ../qt/main.py:489 #, python-format msgid "Error while loading the word %s" msgstr "Virhe ladattaessa sanaa %s" #: ../qt/main.py:557 msgid "Import one or more dictionaries" msgstr "" #: ../qt/main.py:563 msgid "" "Error trying to load the dictionary.\n" "File corrupted or not supported." msgstr "" "Virhe ladatessa sanakirjaa.\n" "Tiedosto on korruptoitunut tai sitä ei tueta." #: ../qt/main.py:575 #, python-format msgid "%s was not loaded: %s" msgstr "%s :aa ei ladattu: %s" #: ../qt/main.py:587 msgid "Dictionary successfully installed." msgstr "" #: ../qt/main.py:589 ../qt/onlineDictionariesView.py:323 msgid "Dictionary selected couldn't be installed." msgstr "" #: ../qt/main.py:590 ../qt/onlineDictionariesView.py:354 #: ../qt/onlineDictionariesView.py:363 ../qt/dictionariesview.py:87 msgid "Info" msgstr "Tietoa" #: ../qt/definitionView.py:44 msgid "Short Usage Information:" msgstr "Lyhyt käyttöohje:" #: ../qt/definitionView.py:45 msgid "" "To start using dictionary, select one from the Dictionaries menu." msgstr "" "Aloittaaksesi sanakirjan käyttämisen, valitse se Sanakirjat-valikosta." #: ../qt/definitionView.py:46 msgid "" "To install a new dictionary from Internet, select Manage " "Dictionaries... and choose one from the Download Dictionaries tab." msgstr "" "Asentaaksesi uuden sanakirjan internetistä, valitse Hallitse " "sanakirjoja... ja valitse sanakirja Lataa sanakirjoja " "välilehdestä." #: ../qt/definitionView.py:47 msgid "" "To install a new dictionary from file, select Install from file... " "from the Dictionaries menu." msgstr "" "Asentaaksesi uuden sanakirjan tiedostosta, valitse Asenna " "tiedostosta... Sanakirjat-valikosta." #: ../qt/definitionView.py:55 #, python-format msgid "The word %s is not found." msgstr "Sanaa %s ei löydy." #: ../qt/settings_ui.py:511 msgid "Babiloo Settings" msgstr "Babiloon asetukset" #: ../qt/settings_ui.py:512 msgid "Interface Language:" msgstr "Käyttöliittymän kieli:" #: ../qt/settings_ui.py:513 msgid "Translate this Application..." msgstr "Käännä tämä ohjelma..." #: ../qt/settings_ui.py:514 msgid "Case sensitive" msgstr "Huomioi kirjainkoko" #: ../qt/settings_ui.py:515 msgid "AutoComplete" msgstr "Automaattinen täyttö" #: ../qt/settings_ui.py:516 msgid "Ignore accents" msgstr "Ohita aksenttivirheet" #: ../qt/settings_ui.py:517 msgid "Pronounce words using this command:" msgstr "Lausu sanat tällä komennolla:" #: ../qt/settings_ui.py:518 msgid "Global settings" msgstr "Sivuston laajuiset asetukset" #: ../qt/settings_ui.py:521 msgid "Move up" msgstr "Siirry ylös" #: ../qt/settings_ui.py:522 msgid "Up" msgstr "Alkuun" #: ../qt/settings_ui.py:523 msgid "Move down" msgstr "Siirry alas" #: ../qt/settings_ui.py:524 msgid "Down" msgstr "loppuun" #: ../qt/settings_ui.py:525 ../qt/settings_ui.py:538 ../qt/settings_ui.py:545 msgid "Show information about dictionary" msgstr "Näytä tietoa sanakirjasta" #: ../qt/settings_ui.py:526 ../qt/settings_ui.py:539 ../qt/settings_ui.py:546 msgid "Show info" msgstr "näytä info" #: ../qt/settings_ui.py:529 msgid "Directory storing the dictionaries:" msgstr "Sanakirjojen luettelointi:" #: ../qt/settings_ui.py:530 msgid "Browse..." msgstr "Selaa..." #: ../qt/settings_ui.py:531 msgid "Installed Dictionaries" msgstr "Asennetut sanakirjat" #: ../qt/settings_ui.py:532 msgid "From link:" msgstr "Linkistä:" #: ../qt/settings_ui.py:533 ../qt/settings_ui.py:534 ../qt/settings_ui.py:536 msgid "Download dictionary" msgstr "Lataa sanakirja" #: ../qt/settings_ui.py:535 msgid "From list:" msgstr "Listasta:" #: ../qt/settings_ui.py:537 msgid "Download" msgstr "Lataa" #: ../qt/settings_ui.py:541 ../qt/main_ui.py:284 msgid "Download Dictionaries" msgstr "Lataa sanakirjoja" #: ../qt/settings_ui.py:542 ../qt/main_ui.py:272 msgid "Dictionaries" msgstr "Sanakirjat" #: ../qt/settings_ui.py:548 msgid "Plugins" msgstr "Liitännäiset" #: ../qt/settings_ui.py:549 msgid "Behavior" msgstr "Käyttäytyminen" #: ../qt/settings_ui.py:550 msgid "Pronounce the word" msgstr "Lausu sana" #: ../qt/settings_ui.py:551 msgid "Timeout before hide after mouse over" msgstr "Piilota hiiren osoitin" #: ../qt/settings_ui.py:552 msgid "Don't hide" msgstr "Älä piilota" #: ../qt/settings_ui.py:553 msgid " seconds" msgstr " sekuntia" #: ../qt/settings_ui.py:554 msgid "Show only if modifier pressed" msgstr "" #: ../qt/settings_ui.py:559 msgid "Scan selection" msgstr "Skannausvalinta" #: ../qt/settings_ui.py:560 msgid "Show if word not found" msgstr "Näytä, jos sanaa ei löydy" #: ../qt/settings_ui.py:561 msgid "Apperance" msgstr "Ulkoasu" #: ../qt/settings_ui.py:562 msgid "Transparency" msgstr "Läpinäkyvyys" #: ../qt/settings_ui.py:564 msgid "Default width" msgstr "Oletusleveys" #: ../qt/settings_ui.py:565 msgid "Default height" msgstr "Oletuskorkeus" #: ../qt/settings_ui.py:566 msgid "Popup window" msgstr "Popup-ikkuna" #: ../qt/settings_ui.py:567 msgid "Preview" msgstr "Esikatselu" #: ../qt/settings_ui.py:568 msgid "Element" msgstr "Elementti" #: ../qt/settings_ui.py:569 msgid "Select element" msgstr "Valitse elementti" #: ../qt/settings_ui.py:570 msgid "Title" msgstr "Otsikko" #: ../qt/settings_ui.py:571 msgid "Explanation" msgstr "Selitys" #: ../qt/settings_ui.py:572 msgid "Abbreviation" msgstr "Lyhenne" #: ../qt/settings_ui.py:573 msgid "Example" msgstr "Esimerkki" #: ../qt/settings_ui.py:574 msgid "Transcription" msgstr "Transkriptio" #: ../qt/settings_ui.py:575 msgid "Select font" msgstr "Valitse fontti" #: ../qt/settings_ui.py:576 msgid "Foreground" msgstr "Etuala" #: ../qt/settings_ui.py:577 msgid "Background" msgstr "Tausta" #: ../qt/settings_ui.py:578 ../qt/settings_ui.py:580 msgid "Click to select color" msgstr "Klikkaa valitaksesi väri" #: ../qt/settings_ui.py:582 msgid "Select font size" msgstr "Valitse fontin koko" #: ../qt/settings_ui.py:583 msgid "Bold" msgstr "Lihavoitu" #: ../qt/settings_ui.py:585 msgid "Italic" msgstr "Kursiivi" #: ../qt/settings_ui.py:587 msgid "Underline" msgstr "Alleviivaus" #: ../qt/settings_ui.py:589 msgid "Size" msgstr "Koko" #: ../qt/settings_ui.py:590 msgid "Font" msgstr "Fontti" #: ../qt/settings_ui.py:591 msgid "Appearance" msgstr "Ulkonäkö" #: ../qt/settings_ui.py:592 msgid "Ok" msgstr "" #: ../qt/settings_ui.py:593 msgid "Cancel" msgstr "Peru" #: ../qt/dictfilemanager.py:82 #, python-format msgid "Loading %s..." msgstr "Ladataan tiedostoa %s..." #: ../qt/main_ui.py:256 ../qt/main_ui.py:260 msgid "Clear the search box" msgstr "Tyhjennä hakukenttä" #: ../qt/main_ui.py:257 ../qt/main_ui.py:261 msgid "Clear" msgstr "Tyhjennä" #: ../qt/main_ui.py:258 msgid "Articles" msgstr "Artikkelit" #: ../qt/main_ui.py:259 msgid "History" msgstr "Historia" #: ../qt/main_ui.py:263 msgid "Search" msgstr "Hae" #: ../qt/main_ui.py:269 msgid "&File" msgstr "&Tiedosto" #: ../qt/main_ui.py:270 msgid "&Help" msgstr "&Ohje" #: ../qt/main_ui.py:271 msgid "&Settings" msgstr "&Asetukset" #: ../qt/main_ui.py:273 msgid "&Quit" msgstr "&Lopeta" #: ../qt/main_ui.py:274 msgid "&About Babiloo" msgstr "&Tietoja Babiloosta" #: ../qt/main_ui.py:275 msgid "&Configure Babiloo" msgstr "&Konfiguroi Babiloo" #: ../qt/main_ui.py:276 msgid "&Scan" msgstr "&Skannaa" #: ../qt/main_ui.py:277 msgid "Install from file..." msgstr "Asenna tiedostosta..." #: ../qt/main_ui.py:278 ../qt/main_ui.py:279 msgid "Import" msgstr "Tuo" #: ../qt/main_ui.py:280 msgid "Manage Dictionaries..." msgstr "Hallitse sanakirjoja" #: ../qt/main_ui.py:281 msgid "Visit HomePage" msgstr "Vieraile kotisivulla" #: ../qt/main_ui.py:282 msgid "Report A Problem" msgstr "Raportoi ongelmasta" #: ../qt/main_ui.py:283 msgid "Translate This Application..." msgstr "Käännä tämä ohjelma..." #: ../qt/onlineDictionariesView.py:235 msgid "Downloading files..." msgstr "Ladataan tiedostoja..." #: ../qt/onlineDictionariesView.py:235 ../qt/onlineDictionariesView.py:362 #: ../qt/dictionariesview.py:86 msgid "&Abort" msgstr "&Keskeytä" #: ../qt/onlineDictionariesView.py:236 msgid "Downloading" msgstr "Ladataan" #: ../qt/onlineDictionariesView.py:249 #, python-format msgid "Starting the download (%s bytes) ..." msgstr "Aloitetaan lataaminen (%s tavua...)" #: ../qt/onlineDictionariesView.py:280 #, python-format msgid "Unable to download file %s" msgstr "Tiedostoa %s ei voida ladata" #: ../qt/onlineDictionariesView.py:317 msgid "Link address is empty" msgstr "Osoite on tyhjä" #: ../qt/onlineDictionariesView.py:350 #, python-format msgid "" "Dictionary that couldn't be installed:\n" " %s" msgstr "" "Sanakirjaa ei voitu asentaa:\n" " %s" #: ../qt/onlineDictionariesView.py:362 ../qt/dictionariesview.py:86 msgid "Rescanning dictionaries..." msgstr "Uudelleen etsitään sanakirjoja..." #: ../qt/settings.py:82 msgid "Alert" msgstr "Hälytys" #: ../qt/settings.py:82 msgid "The new language will be displayed after restarting the program." msgstr "Uutta kieltä käytetään ohjelman uudelleenkäynnistämisen jälkeen." #: ../qt/settings.py:138 msgid "Open Directory" msgstr "Avaa kansio" #: ../qt/dictionariesview.py:31 msgid "Type" msgstr "Tyyppi" #: ../qt/dictionariesview.py:31 msgid "Dictionary name" msgstr "Sanakirjan nimi" #: ../qt/dictionariesview.py:31 msgid "Total articles" msgstr "Artikkeleita yhteensä" #: ../qt/dictionariesview.py:143 msgid "Export dictionary as..." msgstr "Vie sanakirja tiedostoon..." #: ../core/languages/Languages.py:28 msgid "Albanian" msgstr "" #: ../core/languages/Languages.py:29 msgid "Arabic" msgstr "" #: ../core/languages/Languages.py:30 msgid "Armenian" msgstr "" #: ../core/languages/Languages.py:31 msgid "Malay" msgstr "" #: ../core/languages/Languages.py:32 msgid "Bosnian" msgstr "" #: ../core/languages/Languages.py:33 msgid "Brazilian" msgstr "" #: ../core/languages/Languages.py:34 msgid "Bulgarian" msgstr "" #: ../core/languages/Languages.py:35 msgid "Catalan" msgstr "" #: ../core/languages/Languages.py:36 msgid "Basque" msgstr "" #: ../core/languages/Languages.py:37 msgid "Chinese" msgstr "" #: ../core/languages/Languages.py:38 msgid "Croatian" msgstr "" #: ../core/languages/Languages.py:39 msgid "Czech" msgstr "" #: ../core/languages/Languages.py:40 msgid "Danish" msgstr "" #: ../core/languages/Languages.py:41 msgid "Dutch" msgstr "" #: ../core/languages/Languages.py:42 msgid "English" msgstr "" #: ../core/languages/Languages.py:43 msgid "British English" msgstr "" #: ../core/languages/Languages.py:44 msgid "Esperanto" msgstr "" #: ../core/languages/Languages.py:45 msgid "Estonian" msgstr "" #: ../core/languages/Languages.py:46 msgid "Finnish" msgstr "" #: ../core/languages/Languages.py:47 msgid "French" msgstr "" #: ../core/languages/Languages.py:48 msgid "Galician" msgstr "" #: ../core/languages/Languages.py:49 msgid "Georgian" msgstr "" #: ../core/languages/Languages.py:50 msgid "German" msgstr "" #: ../core/languages/Languages.py:51 msgid "Greek" msgstr "" #: ../core/languages/Languages.py:52 msgid "Hebrew" msgstr "" #: ../core/languages/Languages.py:53 msgid "Hungarian" msgstr "" #: ../core/languages/Languages.py:54 msgid "Indonesian" msgstr "" #: ../core/languages/Languages.py:55 msgid "Italian" msgstr "" #: ../core/languages/Languages.py:56 msgid "Japanese" msgstr "" #: ../core/languages/Languages.py:57 msgid "Kazakh" msgstr "" #: ../core/languages/Languages.py:58 msgid "Korean" msgstr "" #: ../core/languages/Languages.py:59 msgid "Latvian" msgstr "" #: ../core/languages/Languages.py:60 msgid "Lithuanian" msgstr "" #: ../core/languages/Languages.py:61 msgid "Luxembourgish" msgstr "" #: ../core/languages/Languages.py:62 msgid "Macedonian" msgstr "" #: ../core/languages/Languages.py:63 msgid "Norwegian" msgstr "" #: ../core/languages/Languages.py:64 msgid "Persian" msgstr "" #: ../core/languages/Languages.py:65 msgid "Polish" msgstr "" #: ../core/languages/Languages.py:66 msgid "Portuguese" msgstr "" #: ../core/languages/Languages.py:67 msgid "Romanian" msgstr "" #: ../core/languages/Languages.py:68 msgid "Russian" msgstr "" #: ../core/languages/Languages.py:69 msgid "Serbian" msgstr "" #: ../core/languages/Languages.py:70 msgid "Slovak" msgstr "" #: ../core/languages/Languages.py:71 msgid "Slovenian" msgstr "" #: ../core/languages/Languages.py:72 msgid "Spanish" msgstr "" #: ../core/languages/Languages.py:73 msgid "Swedish" msgstr "" #: ../core/languages/Languages.py:74 msgid "Thai" msgstr "" #: ../core/languages/Languages.py:75 msgid "Turkish" msgstr "" #: ../core/languages/Languages.py:76 msgid "Ukrainian" msgstr "" #: ../core/languages/Languages.py:77 msgid "Vietnamese" msgstr ""