diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f78fdd0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Compiled Python +*.pyc + +# SCons +.sconf_temp +.sconsign.dblite + +# Build byproducts +build +config.log +package.txt + +# Temporary files +*~ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..899d090 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "version"] + path = version + url = git@github.com:FoldingAtHome/client-version.git + branch = master diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7425b03 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,155 @@ +## v7.4.1 + - Removed trigger-save command, no longer necessary. + +## v7.3.12 + - Reordered toolbar. + - Move Viewer button to right of power bar. #304 + - Changed FAHControl title bar to say Advanced Control. #982 + - Right clicking on slot brings up correct slot menu. Mentioned in #1060 + - Removed Configure->Advanced->Optimizations. #1069 + +## v7.3.11 + - Split power slider to power + fold/pause/finish. + - Added "on idle" & "always on" to slot menu. + - Removed Percent CPU usage, not currently support by any cores. #1056 + +## v7.3.7 + - Restored ctrl-a and ctrl-c functionality in log view. #1002 + +## v7.3.6 + - UI layout adjustments. + +## v7.3.5 + - Put Viewer button back on toolbar. + - Added additional tooltips. + +## v7.3.4 + - Trigger save on folding power change. + - Fix folding power reset problem on options save. + +## v7.3.3 + - Fixed OK/Cancel buttons off bottom of screen at some resolutions. #904 + - Don't show selected client status in add client dialog. + - Added folding power slider. + - Removed client Fold/Pause/Finish/View buttons, use slot popup menu. + - The links for project, WS & CS can extend to the edge of the window. #977 + - Changed Quit to Exit. + - Added --exit command line option. + +## v7.3.2 + - Center About box text. + +## v7.3.0 + - Updated copyright dates. + - Restored 'Work Unit' pane to 'Status' tab. + - Fixed Missing, hidden, and vanishing text in Ubuntu 12.04. #898 + - Remote system remains "Updating". #906 + +## v7.2.14 + - Removed local client startup functionality. + - Flipped 'Folding Slots' / 'Queue' orientation. #951 + - Always list local client first. #655 + +## v7.2.13 + - Merged SMP and Uni slot types to CPU. + - Removed novice/advanced/expert modes. #852 + - Removed project descriptions. + - Enforce min GPU and CPU usage of 10%. + - Removed all systray functionality. #217, #565, #487, #321 + - Disable search on tree views. #953 + - OSX: Don't quit app when window is closed. #606 + +## v7.2.12 + - Autostart client by default, if it's not already running. + +## v7.2.11 + - Hide 'Folding Slot Status' column in expert/advanced. + - Show status colors even when row is selected. + +## v7.2.10 + - Fixed OSX: Copy/Paste not working. #588 + - Fixed OSX: Copy the log clears the log window. #601 + - Removed show project pane in advanced preference. + - Moved WU info to a separate popup dialog. + - Display Work Queue to right of Folding Slots in advanced/expert. + - Changed 'Stats' and 'PPD' to 'Points Per Day'. + - Hide PCRG Work Queue column in novice mode. + - Don't show RCG in 'About Project' line. + - Display slot status with reason in Work Queue. #743 + - Check if client is configured and popup dialog if not. + +## v7.2.9 + - Fixed OSX: gtk 2 is broken on 10.7. #793 + +## v7.2.8 + - Pass remote passwords to viewer. + +## v7.2.7 + - Updated view modes. + +## v7.2.0 + - Fix " escaping for options sent to client. + - Only allow alpha numeric and puntuation in user name. + - Updates for OSX 10.7 (calxalot) + +## v7.1.52 + - Select 'Identity' tab by default. #851 + +## v7.1.50 + - Z in the Zulu time display was still partially cut off. #839 + +## v7.1.49 + - Z in the Zulu time display was partially cut off. #839 + - Build Linux version on Debian testing for python 2.7 support. #763 + +## v7.1.48 + - Added some tooltips. + - Fixed windows default theme. + +## v7.1.47 + - Added UTC time to status bar. #647 + - Fixed missing system info. #834 + - Fixed false 'Inactive' systray message. #526 + - Display total PPD for all clients and all slots. #408 + - Removed Unit ID from Work Unit status. + +## v7.1.46 + - Default local client autostart to false. + - Integrated caxalot's OSX install script changes. + - Fixed themes for Linux. #819 + - Hide theme prefernece in OSX, causes crashes in current gtk. + - Really fix, Increment number of CPUs by 1 instead of 2. #804 + +## v7.1.45 + - Fixed OSX icons file. (calxalot) + - Increment number of CPUs by 1 instead of 2. #804 + +## v7.1.44 + - Fixed floating buttons on log tab. #789 + - Changed 'Queue ID' -> 'Work Queue ID'. #790 + - Changed '1' -> '01' in folding slot id. #790 + +## v7.1.43 + - Don't flash 'Offline' status while trying to connect. + - Cleaned up some Windows related connection issues. + - Don't timeout connection because FAHControl is busy. + - Updated copyright dates. + - Restore 'Follow' log check box. #758 + - Don't refilter log unless filters have actually changed. + +## v7.1.41 + - Changed copyright line in about box. #771 + - Added disconnect error messages. + - Improved loading of large log files. + - Swapped 'Severity' combo for 'Errors & Warnings' check box. + +## v7.1.40 + - Fixed missing system info. #759 + - Fixed debian package problem. + +## v7.1.39 + - Fixed deb install location problems. #718 + - Fixed shebang line. #719 + - Fixed client status message updating when paused/unpaused. #526 + - Fixed 'fah' module location problems. #669 + - Reduced tool bar font size so it fits the default window size. diff --git a/FAHControl b/FAHControl new file mode 100755 index 0000000..a58a344 --- /dev/null +++ b/FAHControl @@ -0,0 +1,82 @@ +#!/usr/bin/env python +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2013 Stanford University + + 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 . +''' + +import os +import sys +import inspect +import socket +from optparse import OptionParser +from fah import FAHControl, load_fahcontrol_db +from fah.util import * +from fah.db import * + + +def set_proc_name(name): + from ctypes import cdll, byref, create_string_buffer + + libc = cdll.LoadLibrary('libc.so.6') + buff = create_string_buffer(len(name)+1) + buff.value = name + libc.prctl(15, byref(buff), 0, 0, 0) + + +if __name__ == '__main__': + if sys.platform.startswith('linux'): set_proc_name('FAHControl') + + # If present, remove the Launch Services -psn_xxx_xxx argument + if len(sys.argv) > 1 and sys.argv[1][:4] == '-psn': + del sys.argv[1] + + parser = OptionParser(usage = 'Usage: %prog [options]') + + parser.add_option('--exit', help = 'Tell the running application to exit', + action = 'store_true', dest = 'exit') + options, args = parser.parse_args() + + # Tell app to exit + if options.exit: + try: + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.connect(single_app_addr) + sock.send('EXIT') + if sock.recv(1024).strip() == 'OK': print 'Ok' + except Exception, e: pass + + sys.exit(0) + + # Add executable path to PATH + if getattr(sys, 'frozen', False): path = os.path.dirname(sys.executable) + else: path = os.path.dirname(__file__) + path = os.path.realpath(path) + os.environ['PATH'] = path + os.pathsep + os.environ['PATH'] + + # Load Glade + dir = os.path.dirname(inspect.getfile(inspect.currentframe())) + if not dir: dir = '.' + glade = dir + '/fah/FAHControl.glade' + + if os.path.exists(glade): app = FAHControl(glade) + else: + from fah.FAHControl_glade import glade_data + app = FAHControl(glade_data) + + try: + app.run() + except Exception, e: + print e diff --git a/FAHControl.desktop b/FAHControl.desktop new file mode 100644 index 0000000..8c0dffb --- /dev/null +++ b/FAHControl.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=FAHControl +Exec=/usr/bin/FAHControl +TryExec=FAHControl +StartupNotify=false +Terminal=false +Type=Application +Categories=Science;Biology;Education;; +Comment=Folding@home Client Control +Icon=FAHControl.png diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..818433e --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,674 @@ + 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 +. diff --git a/README.md b/README.md index 41e4241..a715b8b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ -fah-control -========== +Folding@home Client Advanced Control +==================================== -Folding@home Client Advanced Control GUI +FAHControl can monitor and control one or more FAHClients. + +To run: + + python FAHControl + +See: https://folding.stanford.edu diff --git a/SConstruct b/SConstruct new file mode 100644 index 0000000..fa63032 --- /dev/null +++ b/SConstruct @@ -0,0 +1,104 @@ +# Setup +import os +env = Environment() +try: + env.Tool('config', toolpath = [os.environ.get('CBANG_HOME')]) +except Exception, e: + raise Exception, 'CBANG_HOME not set?\n' + str(e) + +# Override mostly_static to default True +env.CBAddVariables( + BoolVariable('mostly_static', 'Link most libraries statically', 1)) + +env.CBLoadTools('packager run_distutils osx') +conf = env.CBConfigure() + +# Version +version = open('version/version.txt', 'r').read().strip() +major, minor, revision = version.split('.') + +# Config vars +env.Replace(PACKAGE_VERSION = version) + +if env['PLATFORM'] != 'darwin': env['package_arch'] = 'noarch' + +# Build +target_dir = None +if env['PLATFORM'] == 'darwin': + env['RUN_DISTUTILSOPTS'] = 'py2app' + target_dir = 'dist/FAHControl.app' + +elif env['PLATFORM'] == 'win32': + env['RUN_DISTUTILSOPTS'] = 'build' + target_dir = 'gui' + target_pat = '' + +elif env.GetPackageType() == 'deb': + env['RUN_DISTUTILSOPTS'] = ['--command-packages=stdeb.command', 'bdist_deb'] + target_dir = 'deb_dist' + target_pat = 'deb_dist/fahcontrol_%s-*.deb' % version + +# Run distutils +gui = None +if env.GetPackageType() != 'rpm': + # Cleanup old GUI build + # Note: py2app does not work correctly if the old .app is still around + import shutil + shutil.rmtree(target_dir, True) + + gui = env.RunDistUtils(Dir(target_dir), 'setup.py') + Default(gui) + AlwaysBuild(gui) + + +# Package +if env['PLATFORM'] == 'darwin' or env.GetPackageType() == 'rpm': + pkg = env.Packager( + 'FAHControl', + + version = version, + maintainer = 'Joseph Coffland ', + vendor = 'Folding@home', + url = 'http://folding.stanford.edu/', + license = 'LICENSE.txt', + bug_url = 'https://fah-web.stanford.edu/projects/FAHClient/', + summary = 'Folding@home Control', + description = \ + 'Control and monitor local and remote Folding@home clients', + prefix = '/usr', + + documents = ['README.txt', 'LICENSE.txt'], + desktop_menu = ['FAHControl.desktop'], + icons = ['images/FAHControl.png'], + + rpm_license = 'GPL v3+', + rpm_group = 'Applications/Internet', + rpm_requires = 'python, pygtk2', + rpm_build = 'rpm/build', + rpm_filelist = 'filelist.txt', + + pkg_id = 'edu.stanford.folding.fahcontrol.pkg', + pkg_resources = [['osx/Resources', '.']], + pkg_apps = [['dist/FAHControl.app', 'Folding@home/FAHControl.app']], + pkg_scripts = 'osx/scripts', + pkg_target = '10.4', + ) + + AlwaysBuild(pkg) + env.Alias('package', pkg) + if gui is not None: Depends(pkg, gui) + +else: + # Write package.txt + def write_filename(target, source, env): + import glob + filename = str(Glob(target_pat)[0]) + open(str(target[0]), 'w').write(filename) + + bld = Builder(action = write_filename) + env.Append(BUILDERS = {'WriteFilename' : bld}) + cmd = env.WriteFilename('package.txt', []) + AlwaysBuild(cmd) + if gui is not None: Depends(cmd, gui) + + env.Alias('package', [cmd]) diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..faf3f62 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: fahcontrol +Source: https://fah-web.stanford.edu/svn/pub/trunk/ + +Files: * +Copyright: 2010-2014 Stanford University +License: GPL-3.0+ + +License: GPL-3.0+ + 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 package 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 . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/ez_setup.py b/ez_setup.py new file mode 100644 index 0000000..1ff1d3e --- /dev/null +++ b/ez_setup.py @@ -0,0 +1,284 @@ +#!python +"""Bootstrap setuptools installation + +If you want to use setuptools in your package's setup.py, just include this +file in the same directory with it, and add this to the top of your setup.py:: + + from ez_setup import use_setuptools + use_setuptools() + +If you want to require a specific version of setuptools, set a download +mirror, or use an alternate download directory, you can do so by supplying +the appropriate options to ``use_setuptools()``. + +This file can also be run as a script to install or upgrade setuptools. +""" +import sys +DEFAULT_VERSION = "0.6c11" +DEFAULT_URL = "http://pypi.python.org/packages/%s/s/setuptools/" % sys.version[:3] + +md5_data = { + 'setuptools-0.6b1-py2.3.egg': '8822caf901250d848b996b7f25c6e6ca', + 'setuptools-0.6b1-py2.4.egg': 'b79a8a403e4502fbb85ee3f1941735cb', + 'setuptools-0.6b2-py2.3.egg': '5657759d8a6d8fc44070a9d07272d99b', + 'setuptools-0.6b2-py2.4.egg': '4996a8d169d2be661fa32a6e52e4f82a', + 'setuptools-0.6b3-py2.3.egg': 'bb31c0fc7399a63579975cad9f5a0618', + 'setuptools-0.6b3-py2.4.egg': '38a8c6b3d6ecd22247f179f7da669fac', + 'setuptools-0.6b4-py2.3.egg': '62045a24ed4e1ebc77fe039aa4e6f7e5', + 'setuptools-0.6b4-py2.4.egg': '4cb2a185d228dacffb2d17f103b3b1c4', + 'setuptools-0.6c1-py2.3.egg': 'b3f2b5539d65cb7f74ad79127f1a908c', + 'setuptools-0.6c1-py2.4.egg': 'b45adeda0667d2d2ffe14009364f2a4b', + 'setuptools-0.6c10-py2.3.egg': 'ce1e2ab5d3a0256456d9fc13800a7090', + 'setuptools-0.6c10-py2.4.egg': '57d6d9d6e9b80772c59a53a8433a5dd4', + 'setuptools-0.6c10-py2.5.egg': 'de46ac8b1c97c895572e5e8596aeb8c7', + 'setuptools-0.6c10-py2.6.egg': '58ea40aef06da02ce641495523a0b7f5', + 'setuptools-0.6c11-py2.3.egg': '2baeac6e13d414a9d28e7ba5b5a596de', + 'setuptools-0.6c11-py2.4.egg': 'bd639f9b0eac4c42497034dec2ec0c2b', + 'setuptools-0.6c11-py2.5.egg': '64c94f3bf7a72a13ec83e0b24f2749b2', + 'setuptools-0.6c11-py2.6.egg': 'bfa92100bd772d5a213eedd356d64086', + 'setuptools-0.6c2-py2.3.egg': 'f0064bf6aa2b7d0f3ba0b43f20817c27', + 'setuptools-0.6c2-py2.4.egg': '616192eec35f47e8ea16cd6a122b7277', + 'setuptools-0.6c3-py2.3.egg': 'f181fa125dfe85a259c9cd6f1d7b78fa', + 'setuptools-0.6c3-py2.4.egg': 'e0ed74682c998bfb73bf803a50e7b71e', + 'setuptools-0.6c3-py2.5.egg': 'abef16fdd61955514841c7c6bd98965e', + 'setuptools-0.6c4-py2.3.egg': 'b0b9131acab32022bfac7f44c5d7971f', + 'setuptools-0.6c4-py2.4.egg': '2a1f9656d4fbf3c97bf946c0a124e6e2', + 'setuptools-0.6c4-py2.5.egg': '8f5a052e32cdb9c72bcf4b5526f28afc', + 'setuptools-0.6c5-py2.3.egg': 'ee9fd80965da04f2f3e6b3576e9d8167', + 'setuptools-0.6c5-py2.4.egg': 'afe2adf1c01701ee841761f5bcd8aa64', + 'setuptools-0.6c5-py2.5.egg': 'a8d3f61494ccaa8714dfed37bccd3d5d', + 'setuptools-0.6c6-py2.3.egg': '35686b78116a668847237b69d549ec20', + 'setuptools-0.6c6-py2.4.egg': '3c56af57be3225019260a644430065ab', + 'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53', + 'setuptools-0.6c7-py2.3.egg': '209fdf9adc3a615e5115b725658e13e2', + 'setuptools-0.6c7-py2.4.egg': '5a8f954807d46a0fb67cf1f26c55a82e', + 'setuptools-0.6c7-py2.5.egg': '45d2ad28f9750e7434111fde831e8372', + 'setuptools-0.6c8-py2.3.egg': '50759d29b349db8cfd807ba8303f1902', + 'setuptools-0.6c8-py2.4.egg': 'cba38d74f7d483c06e9daa6070cce6de', + 'setuptools-0.6c8-py2.5.egg': '1721747ee329dc150590a58b3e1ac95b', + 'setuptools-0.6c9-py2.3.egg': 'a83c4020414807b496e4cfbe08507c03', + 'setuptools-0.6c9-py2.4.egg': '260a2be2e5388d66bdaee06abec6342a', + 'setuptools-0.6c9-py2.5.egg': 'fe67c3e5a17b12c0e7c541b7ea43a8e6', + 'setuptools-0.6c9-py2.6.egg': 'ca37b1ff16fa2ede6e19383e7b59245a', +} + +import sys, os +try: from hashlib import md5 +except ImportError: from md5 import md5 + +def _validate_md5(egg_name, data): + if egg_name in md5_data: + digest = md5(data).hexdigest() + if digest != md5_data[egg_name]: + print >>sys.stderr, ( + "md5 validation of %s failed! (Possible download problem?)" + % egg_name + ) + sys.exit(2) + return data + +def use_setuptools( + version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, + download_delay=15 +): + """Automatically find/download setuptools and make it available on sys.path + + `version` should be a valid setuptools version number that is available + as an egg for download under the `download_base` URL (which should end with + a '/'). `to_dir` is the directory where setuptools will be downloaded, if + it is not already available. If `download_delay` is specified, it should + be the number of seconds that will be paused before initiating a download, + should one be required. If an older version of setuptools is installed, + this routine will print a message to ``sys.stderr`` and raise SystemExit in + an attempt to abort the calling script. + """ + was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules + def do_download(): + egg = download_setuptools(version, download_base, to_dir, download_delay) + sys.path.insert(0, egg) + import setuptools; setuptools.bootstrap_install_from = egg + try: + import pkg_resources + except ImportError: + return do_download() + try: + pkg_resources.require("setuptools>="+version); return + except pkg_resources.VersionConflict, e: + if was_imported: + print >>sys.stderr, ( + "The required version of setuptools (>=%s) is not available, and\n" + "can't be installed while this script is running. Please install\n" + " a more recent version first, using 'easy_install -U setuptools'." + "\n\n(Currently using %r)" + ) % (version, e.args[0]) + sys.exit(2) + else: + del pkg_resources, sys.modules['pkg_resources'] # reload ok + return do_download() + except pkg_resources.DistributionNotFound: + return do_download() + +def download_setuptools( + version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, + delay = 15 +): + """Download setuptools from a specified location and return its filename + + `version` should be a valid setuptools version number that is available + as an egg for download under the `download_base` URL (which should end + with a '/'). `to_dir` is the directory where the egg will be downloaded. + `delay` is the number of seconds to pause before an actual download attempt. + """ + import urllib2, shutil + egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) + url = download_base + egg_name + saveto = os.path.join(to_dir, egg_name) + src = dst = None + if not os.path.exists(saveto): # Avoid repeated downloads + try: + from distutils import log + if delay: + log.warn(""" +--------------------------------------------------------------------------- +This script requires setuptools version %s to run (even to display +help). I will attempt to download it for you (from +%s), but +you may need to enable firewall access for this script first. +I will start the download in %d seconds. + +(Note: if this machine does not have network access, please obtain the file + + %s + +and place it in this directory before rerunning this script.) +---------------------------------------------------------------------------""", + version, download_base, delay, url + ); from time import sleep; sleep(delay) + log.warn("Downloading %s", url) + src = urllib2.urlopen(url) + # Read/write all in one block, so we don't create a corrupt file + # if the download is interrupted. + data = _validate_md5(egg_name, src.read()) + dst = open(saveto,"wb"); dst.write(data) + finally: + if src: src.close() + if dst: dst.close() + return os.path.realpath(saveto) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +def main(argv, version=DEFAULT_VERSION): + """Install or upgrade setuptools and EasyInstall""" + try: + import setuptools + except ImportError: + egg = None + try: + egg = download_setuptools(version, delay=0) + sys.path.insert(0,egg) + from setuptools.command.easy_install import main + return main(list(argv)+[egg]) # we're done here + finally: + if egg and os.path.exists(egg): + os.unlink(egg) + else: + if setuptools.__version__ == '0.0.1': + print >>sys.stderr, ( + "You have an obsolete version of setuptools installed. Please\n" + "remove it from your system entirely before rerunning this script." + ) + sys.exit(2) + + req = "setuptools>="+version + import pkg_resources + try: + pkg_resources.require(req) + except pkg_resources.VersionConflict: + try: + from setuptools.command.easy_install import main + except ImportError: + from easy_install import main + main(list(argv)+[download_setuptools(delay=0)]) + sys.exit(0) # try to force an exit + else: + if argv: + from setuptools.command.easy_install import main + main(argv) + else: + print "Setuptools version",version,"or greater has been installed." + print '(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)' + +def update_md5(filenames): + """Update our built-in md5 registry""" + + import re + + for name in filenames: + base = os.path.basename(name) + f = open(name,'rb') + md5_data[base] = md5(f.read()).hexdigest() + f.close() + + data = [" %r: %r,\n" % it for it in md5_data.items()] + data.sort() + repl = "".join(data) + + import inspect + srcfile = inspect.getsourcefile(sys.modules[__name__]) + f = open(srcfile, 'rb'); src = f.read(); f.close() + + match = re.search("\nmd5_data = {\n([^}]+)}", src) + if not match: + print >>sys.stderr, "Internal error!" + sys.exit(2) + + src = src[:match.start(1)] + repl + src[match.end(1):] + f = open(srcfile,'w') + f.write(src) + f.close() + + +if __name__=='__main__': + if len(sys.argv)>2 and sys.argv[1]=='--md5update': + update_md5(sys.argv[2:]) + else: + main(sys.argv[1:]) + + + + + + diff --git a/fah/Client.py b/fah/Client.py new file mode 100644 index 0000000..76b4540 --- /dev/null +++ b/fah/Client.py @@ -0,0 +1,405 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import traceback +import time +import re +import copy +import collections +import gtk +import subprocess +import time +import sys +import signal +import os +import shlex + +if sys.platform == 'win32': + import win32api + import win32con + +from fah import * +from fah.util import status_to_color, make_row, get_home_dir + +debug = False + + +class Client: + def __init__(self, app, name, address, port, password): + self.name = name + self.address = address + self.port = port + self.password = password + + self.set_updated(False) + self.selected = False + self.ppd = 0 + self.power = '' + + self.error_messages = set() + + if not name: self.name = self.get_address() + + # Option names + names = app.client_option_widgets.keys() + self.option_names = map(lambda name: name.replace('_', '-'), names) + self.option_names.append('power') # Folding power + + # Init commands + self.inactive_cmds = [ + 'updates clear', + 'updates add 0 4 $heartbeat', + 'updates add 1 5 $ppd', + ] + + self.active_cmds = self.inactive_cmds + [ + 'updates add 2 1 $(options %s *)' % ' '.join(self.option_names), + 'updates add 3 4 $queue-info', + 'updates add 4 1 $slot-info', + 'info', + 'log-updates start', + 'configured', + ] + + # Objects + self.config = ClientConfig() + self.conn = Connection(self.address, self.port, self.password) + self.conn.set_init_commands(self.inactive_cmds) + + + # Class special functions + def __str__(self): return self.name + def __cmp__(self, other): return str.__cmp__(self.name, other.name) + def __hash__(self): return self.name.__hash__() + + + # Getters + @staticmethod + def make_address(address, port): return '%s:%d' % (address, port) + def get_address(self): return Client.make_address(self.address, self.port) + def get_password(self): return self.conn.password + + + def get_status(self): + status = self.conn.get_status() + if status == 'Online' and not self.is_updated() and self.selected: + return 'Updating' + return status + + + def get_selected_slot(self, app): return self.config.get_selected_slot(app) + + + # Setters + def set_address(self, address, port): + self.conn.address = self.address = address + self.conn.port = self.port = port + + def set_password(self, password): + self.conn.password = self.password = password + + + # State functions + def is_local(self): + return self.address == '127.0.0.1' and self.name == 'local' + def is_online(self): return self.conn.get_status() == 'Online' + + def set_selected(self, selected): + if self.selected != selected: + if selected: + self.set_updated(False) + self.conn.set_init_commands(self.active_cmds) + else: self.conn.set_init_commands(self.inactive_cmds) + + self.selected = selected + + + def set_updated(self, updated): + self.options_updated = updated + self.info_updated = updated + self.slots_updated = updated + self.units_updated = updated + + + def is_updated(self): + return self.options_updated and self.info_updated and \ + self.slots_updated and self.units_updated + + + # Log functions + def refresh_log(self): + self.conn.queue_command('log-updates restart') + + + # GUI functions + def load_dialog(self, app): + app.client_entries['name'].set_text(self.name) + app.client_entries['name'].set_sensitive(self.name != 'local') + app.client_entries['address'].set_text(self.address) + app.client_entries['address'].set_sensitive(self.name != 'local') + app.client_entries['port'].set_value(self.port) + app.client_entries['password'].set_text(self.password) + if self.is_updated(): + self.config.update_options(app) + self.config.update_slots_ui(app) + + def get_row(self, app): + status = self.get_status() + keys = {'name': self.name, 'status': status, + 'status_color': status_to_color(status), + 'address': self.get_address()} + return list(make_row(app.client_cols, keys)) + + + def update_status_ui(self, app): + self.config.update_status_ui(app) + + + def reset_status_ui(self, app): + self.config.reset_status_ui(app) + + + # Slot control + def unpause(self, slot = ''): + self.conn.queue_command('unpause %s' % str(slot)) + + + def pause(self, slot = ''): + self.conn.queue_command('pause %s' % str(slot)) + + + def finish(self, slot = ''): + self.conn.queue_command('finish %s' % str(slot)) + + + def on_idle(self, slot = ''): + self.conn.queue_command('on_idle %s' % str(slot)) + + + def always_on(self, slot = ''): + self.conn.queue_command('always_on %s' % str(slot)) + + + # Save functions + def save(self, db): + db.insert('clients', name = self.name, address = self.address, + port = self.port, password = self.password) + + + def save_options(self, options): + if not options: return + + cmd = 'options' + + for name, value in options.items(): + cmd += ' ' + name + if name[-1] != '!': + cmd += "='%s'" % value.encode('string_escape') + + cmd += ' %s *' % ' '.join(self.option_names) + + self.conn.queue_command(cmd) + self.options_updated = False # Reload + + + def save_slots(self, slots): + if not slots or slots == ([], [], []): return + + deleted, added, modified = slots + + # Deleted + for id in deleted: + self.conn.queue_command('slot-delete %d' % id) + + # Modified + for id, type, options in modified: + cmd = 'slot-modify %d %s' % (id, type) + for name, value in options.items(): + if name[-1] == '!': cmd += ' ' + name + else: cmd += ' %s="%s"' % (name, value) + self.conn.queue_command(cmd) + + # Added + for type, options in added: + cmd = 'slot-add %s' % type + for name, value in options.items(): + cmd += ' %s="%s"' % (name, value) + self.conn.queue_command(cmd) + + self.slots_updated = False # Reload + + + def save_config(self, options, slots): + if not options and slots == ([], [], []): return + + self.save_options(options) + self.save_slots(slots) + + self.conn.queue_command('save') + self.conn.queue_command('updates reset') + + + def set_power(self, power): + power = power.lower().replace(' ', '_') + if power != self.power: + self.power = power + self.conn.queue_command('option power ' + power) + + + # Message processing + def process_options(self, app, data): + self.options_updated = True + self.config.options = data + if self.selected: + self.config.update_options(app) + self.config.update_user_info(app) + self.config.update_ppd(app, self.ppd) + + + def process_info(self, app, data): + self.info_updated = True + self.config.info = data + if self.selected: self.config.update_info(app) + + + def process_slots(self, app, data): + self.slots_updated = True + slots = [] + for slot in data: slots.append(SlotConfig(**slot)) + self.config.slots = slots + if self.selected: self.config.update_status_ui(app) + + + def process_units(self, app, data): + self.units_updated = True + self.config.update_queue(data) + if self.selected: self.config.update_status_ui(app) + + + def process_log_update(self, app, data): + # Remove color codes + data = re.sub(r'\033\[\d\d?m', '', data) + + self.config.log_add(app, data) + + + def process_log_restart(self, app, data): + self.config.log_clear(app) + self.process_log_update(app, data) + + + def process_ppd(self, app, ppd): + self.ppd = ppd + if self.selected: self.config.update_ppd(app, ppd) + + + def process_error(self, app, data): + msg = 'On client "%s" %s:%d: %s' % ( + self.name, self.address, self.port, data) + + # Only popup dialog once for each error + if not msg in self.error_messages: + self.error_messages.add(msg) + app.error(msg) + + else: print 'ERROR:', msg + + app.set_status(msg) + + def process_configured(self, app, configured): + if configured: return + app.configure_dialog.show() + + + def process_message(self, app, type, data): + if debug: print 'message:', type, data + + if type == 'heartbeat': return + if type == 'ppd': self.process_ppd(app, data) + + if not self.selected: return + + if type == 'options': self.process_options(app, data) + elif type == 'info': self.process_info(app, data) + elif type == 'slots': self.process_slots(app, data) + elif type == 'units': self.process_units(app, data) + elif type == 'log-restart': self.process_log_restart(app, data) + elif type == 'log-update': self.process_log_update(app, data) + elif type == 'error': self.process_error(app, data) + elif type == 'configured': self.process_configured(app, data) + # Ignore other message types + + + def update(self, app): + prevStatus = self.get_status() + + try: + self.conn.update() + + for version, type, data in self.conn.messages: + try: + self.process_message(app, type, data) + except Exception, e: + traceback.print_exc() + + self.conn.messages = [] + + except Exception, e: + print e + + # If client status has changed update UI + newStatus = self.get_status() + if prevStatus != newStatus: + list = app.client_list + iter = list.get_iter_first() + while iter is not None: + name, status = app.client_list.get(iter, 0, 1) + + if name == self.name: + # Update client status and colors + color = status_to_color(newStatus) + path = list.get_path(iter) + list.set(iter, 1, newStatus) + list.set(iter, 2, color) + list.row_changed(path, iter) + break + + iter = list.iter_next(iter) + + if not self.is_online(): self.set_updated(False) + + # Update client status label + if self.selected: app.update_client_status() + + + def reconnect(self): + self.conn.close() + + + def close(self): + # Avoid broken pipe on OSX + if sys.platform == 'darwin': + try: + if self.conn.is_connected(): + self.conn.queue_command('quit') + self.conn.write_some() + + except Exception, e: + print e + + self.conn.close() diff --git a/fah/ClientConfig.py b/fah/ClientConfig.py new file mode 100644 index 0000000..dfaaaff --- /dev/null +++ b/fah/ClientConfig.py @@ -0,0 +1,673 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import sys +import gtk +import traceback +import re + +from fah.util import parse_bool +from fah.util import status_to_color +from fah.util import get_span_markup +from fah.util import get_widget_str_value +from fah.util import set_widget_str_value +from fah import SlotConfig + + +def get_option_mods(old_options, new_options): + changes = {} + + # Deleted + for name in old_options: + if name not in new_options: + changes[name + '!'] = None + + # Added and modified + for name, value in new_options.items(): + if name not in old_options or value != old_options[name]: + changes[name] = value + + return changes + +def get_buffer_text(buffer): + return buffer.get_text(buffer.get_start_iter(), buffer.get_end_iter()) + + +def get_model_column(model, iter, column): + if iter is not None: return model.get_value(iter, column) + + +def get_selected_tree_column(tree, column): + selection = tree.get_selection() + model = tree.get_model() + if selection is not None: + return get_model_column(model, selection.get_selected()[1], column) + + +def get_active_combo_column(combo, column): + return get_model_column(combo.get_model(), combo.get_active_iter(), column) + + +class ClientConfig: + queue_cols = ('id state statecolor percentdone percent').split() + + def __init__(self): + self.last_updated = 0 + self.queue = [] + self.queue_map = {} + self.slots = [] + self.options = {} + self.core_options = {} + self.info = [] + self.log = [] + self.log_append_count = 0 + self.tooltip = '' + self.last_log_filter = '' + self.log_filter_re = None + self.updating = False + + + def get(self, name): + if name in self.options: return self.options[name] + def set(self, name, value): self.options[name] = value + def have(self, name): + return name in self.options and self.options[name] is not None + + + def get_prcg(self, row): + return '%s (%s, %s, %s)' % ( + row['project'], row['run'], row['clone'], row['gen']) + + + def update_power(self, app): + power = self.get('power').lower() + for i in range(len(app.folding_power_levels)): + if power == app.folding_power_levels[i].lower(): + app.folding_power.set_value(i) + + + def update_ppd(self, app, ppd): + if ppd: s = '%d' % int(ppd) + else: s = 'Unknown' + app.client_ppd.set_text(s) + + + def update_queue(self, queue): + self.queue = queue + self.queue_map = {} + for values in self.queue: + self.queue_map[values['id']] = values + + + def update_user_info(self, app): + # User + user = self.options['user'] + app.donor_info.set_label(user) + + # Team + team = self.options['team'] + app.team_info.set_label(team) + + + def reset_user_info(self, app): + app.donor_info.set_label('') + app.team_info.set_label('') + + + def get_selected_queue_entry(self, app): + return get_selected_tree_column(app.queue_tree, 1) + + + def get_selected_slot(self, app): + id = get_selected_tree_column(app.slot_status_tree, 0) + if id is not None: + id = int(id) + for slot in self.slots: + if slot.id == id: return slot + + def update_queue_ui(self, app): + if not self.queue: + app.queue_list.clear() + return + + # Save selections + selected = self.get_selected_queue_entry(app) + selected_row = None + log_filter_selected = get_active_combo_column(app.log_unit, 1) + log_filter_row = None + + # Clear queue wo/ updating log filter + self.updating = True + try: + app.queue_list.clear() + finally: + self.updating = False + + # Reload queue list + for values in sorted(self.queue, lambda x, y: cmp(x['id'], y['id'])): + unit_id = values['unit'] + queue_id = values['id'] + status = values['state'].title() + color = status_to_color(status) + status = get_span_markup(status, color) + progress = values['percentdone'] + percent = float(progress[:-1]) + eta = values['eta'] + if eta == '0.00 secs': eta = 'Unknown' + credit = values['creditestimate'] + if float(credit) == 0: credit = 'Unknown' + + prcg = self.get_prcg(values) + iter = app.queue_list.append([unit_id, queue_id, status, color, + progress, percent, eta, credit, prcg]) + + if queue_id == selected: selected_row = iter + if queue_id == log_filter_selected: log_filter_row = iter + + # Select the first item if nothing is selected + if selected_row is None: selected_row = app.queue_list.get_iter_first() + if log_filter_row is None: + log_filter_row = app.queue_list.get_iter_first() + + # Restore selections + app.queue_tree.get_selection().select_iter(selected_row) + app.log_unit.set_active_iter(log_filter_row) + + + def update_work_unit_info(self, app): + if not self.queue: + self.reset_work_unit_info(app) + return + + # Get selected queue entry + selected = self.get_selected_queue_entry(app) + if selected is None: return + entry = self.queue_map[selected] + + # Load info + for name, value in entry.items(): + if name in app.queue_widgets: + if (name in ['basecredit', 'creditestimate', 'ppd'] and \ + float(value) == 0) or value == '' or \ + value == '0.00 secs': value = 'Unknown' + + widget = app.queue_widgets[name] + set_widget_str_value(widget, value) + + # Status + status = entry['state'].title() + color = status_to_color(status) + status = get_span_markup(status, color) + widget = app.queue_widgets['state'] + widget.set_markup(status) + + # PRCG + prcg = '%s (%s, %s, %s)' % ( + entry['project'], entry['run'], entry['clone'], entry['gen']) + set_widget_str_value(app.queue_widgets['prcg'], prcg) + + # Links + for name in ['cs', 'ws', 'project']: + widget = app.queue_widgets[name] + value = str(entry[name]) + + if name in ['cs', 'ws']: + uri = 'http://fah-web.stanford.edu/logs/%s.log.html' % value + else: + uri = 'http://fah-web.stanford.edu/cgi-bin/fahproject.' \ + 'overusingIPswillbebanned?p=' + value + + widget.set_uri(uri) + + + def select_slot(self, app): + # Get selected slot + slot = self.get_selected_slot(app) + if slot is None: return + + # Get associated queue ID + first_id = None + first_running_id = None + for entry in self.queue: + if int(entry['slot']) == slot.id: + if first_id is None: first_id = entry['unit'] + if entry['state'].upper() in ['RUNNING', 'FINISHING'] and \ + first_running_id is None: + first_running_id = entry['unit'] + + if first_running_id is not None: unit_id = first_running_id + else: unit_id = first_id + + if unit_id is not None: + # Find unit_id in the queue list entry and select row + list = app.queue_list + iter = list.get_iter_first() + while iter is not None: + if list.get_value(iter, 0) == unit_id: + app.queue_tree.get_selection().select_iter(iter) + break + iter = list.iter_next(iter) + + # Update the UI + self.update_work_unit_info(app) + + + def select_queue_slot(self, app): + # Get unit ID of selected queue entry + selected = self.get_selected_queue_entry(app) + if selected is None: return + + # Get associated slot ID + entry = self.queue_map[selected] + slot = int(entry['slot']) + + # Find and select the slot + list = app.slot_status_list + iter = list.get_iter_first() + while iter is not None: + if int(list.get_value(iter, 0)) == slot: + app.slot_status_tree.get_selection().select_iter(iter) + break + iter = list.iter_next(iter) + + # Update the UI + self.update_work_unit_info(app) + + + def reset_work_unit_info(self, app): + for widget in app.queue_widgets.values(): + set_widget_str_value(widget, None) + + + def update_info(self, app): + port = app.info + + # Clear + for child in port.get_children(): port.remove(child) + + # Alignment + align = gtk.Alignment(0, 0, 1, 1) + align.set_padding(4, 4, 4, 4) + port.add(align) + + # Vertical box + vbox = gtk.VBox() + align.add(vbox) + + for category in self.info: + name = category[0] + category = category[1:] + + # Frame + frame = gtk.Frame('%s' % name) + frame.set_shadow_type(gtk.SHADOW_ETCHED_IN) + frame.get_label_widget().set_use_markup(True) + vbox.pack_start(frame, False) + + # Alignment + align = gtk.Alignment(0, 0, 1, 1) + align.set_padding(0, 0, 12, 0) + frame.add(align) + + # Table + table = gtk.Table(len(category), 2) + table.set_col_spacing(0, 5) + align.add(table) + + row = 0 + for name, value in category: + # Name + label = gtk.Label('%s' % name) + label.set_use_markup(True) + label.set_alignment(1, 0.5) + table.attach(label, 0, 1, row, row + 1, gtk.FILL, gtk.FILL) + + # Value + if value.startswith('http://'): + label = gtk.LinkButton(value, value) + label.set_relief(gtk.RELIEF_NONE) + label.set_property('can-focus', False) + + else: label = gtk.Label(value) + + label.set_alignment(0, 0.5) + label.modify_font(app.mono_font) + table.attach(label, 1, 2, row, row + 1, yoptions = gtk.FILL) + + row += 1 + + port.realize() + port.show_all() + + + def update_options(self, app): + used = set() + + for name, widget in app.client_option_widgets.items(): + name = name.replace('_', '-') + used.add(name) + + try: + set_widget_str_value(widget, self.options[name]) + + except: # Don't let one bad widget kill everything + print 'WARNING: failed to set widget "%s"' % name + + # Setup passkey and password entries + app.passkey_validator.set_good() + app.password_validator.set_good() + app.proxy_pass_validator.set_good() + + # Set folding power + if 'power' in self.options: + used.add('power') + self.update_power(app) + + # Set proxy options + if 'proxy-enable' in self.options: + proxy_enable = parse_bool(self.get('proxy-enable')) + app.proxy_frame.set_sensitive(proxy_enable) + app.proxy_auth_frame.set_sensitive(proxy_enable) + + if self.have('proxy'): + proxy = self.get('proxy') + if ':' in proxy: proxy_addr, proxy_port = proxy.split(':', 1) + else: proxy_addr, proxy_port = proxy, '8080' + set_widget_str_value(app.client_option_widgets['proxy'], proxy_addr) + set_widget_str_value(app.proxy_port, proxy_port) + + # Set core priority radio button + core_idle = not self.have('core-priority') or \ + self.get('core-priority') == 'idle' + app.client_option_widgets['core_priority'].set_active(core_idle) + app.core_priority_low.set_active(not core_idle) + + # Extra core options + app.core_option_list.clear() + if self.have('extra-core-args'): + used.add('extra-core-args') + + args = self.get('extra-core-args').split() + for arg in args: app.core_option_list.append([arg]) + + # Remaining options + app.option_list.clear() + for name, value in self.options.items(): + if name not in used: + app.option_list.append([name, value]) + + + def update_status_slots(self, app): + # Save selection + selected = get_selected_tree_column(app.slot_status_tree, 0) + if selected is not None: selected = selected + selected_row = None + log_filter_selected = get_active_combo_column(app.log_slot, 0) + log_filter_row = None + + # Clear list wo/ updating log filter + self.updating = True + try: + app.slot_status_list.clear() + finally: + self.updating = False + + # Reload list + for slot in self.slots: + id = '%02d' % slot.id + status = slot.status.title() + color = status_to_color(status) + if status == 'Paused' and slot.reason: + status += ':' + slot.reason + status = get_span_markup(status, color) + description = slot.description.replace('"', '') + iter = app.slot_status_list.append((id, status, color, description)) + + if id == selected: selected_row = iter + if id == log_filter_selected: log_filter_row = iter + + # Selected the first item if nothing is selected + if selected_row is None: + selected_row = app.slot_status_list.get_iter_first() + if log_filter_row is None: + log_filter_row = app.slot_status_list.get_iter_first() + + # Restore selections + if selected_row is not None: + app.slot_status_tree.get_selection().select_iter(selected_row) + if log_filter_row is not None: + app.log_slot.set_active_iter(log_filter_row) + + + def update_slots_ui(self, app): + app.slot_list.clear() + for slot in self.slots: + slot.add_to_ui(app) + + + def scroll_log_to_end(self, app): + if not app.log_follow.get_active(): return + mark = app.log.get_mark('end') + app.log.move_mark(mark, app.log.get_end_iter()) + app.log_view.scroll_mark_onscreen(mark) + + + def log_clear(self, app): + app.log.set_text('') + self.log = [] + + + def log_filter_str(self, app): + f = [] + + # Severity + if app.log_severity.get_active(): + f.append(r'((WARNING)|(W )|(ERROR)|(E ))') + + # Unit + if app.log_unit_enable.get_active(): + id = get_active_combo_column(app.log_unit, 1) + f.append(r'WU%s' % id) + + # Slot + if app.log_slot_enable.get_active(): + id = get_active_combo_column(app.log_slot, 0) + f.append(r'FS%s' % id) + + if len(f): + f = map(lambda x: '.*(^|:)%s' % x, f) + return '(^\*)|(%s):' % ''.join(f) + + return None + + + def log_filter(self, line): + return self.log_filter_re is None or \ + self.log_filter_re.match(line) is not None + + + def log_add_lines(self, app, lines): + filtered = filter(self.log_filter, lines) + + if len(filtered): + text = '\n'.join(filtered) + app.log.insert(app.log.get_end_iter(), text + '\n') + self.scroll_log_to_end(app) + + + def log_add(self, app, text): + # TODO deal with split lines + lines = [] + for line in text.split('\n'): + if not line: continue + lines.append(line) + self.log.append(line) + + self.log_add_lines(app, lines) + + + def update_log(self, app): + if self.updating: return # Don't refilter during updates + + # Check if filter has changed + log_filter = self.log_filter_str(app) + if log_filter == self.last_log_filter: return + + # Update filter + self.last_log_filter = log_filter + if log_filter is not None: self.log_filter_re = re.compile(log_filter) + else: self.log_filter_re = None + + # Reload log + app.log.set_text('') + self.log_add_lines(app, self.log) + + + def update_status_ui(self, app): + self.update_queue_ui(app) + self.update_status_slots(app) + self.update_work_unit_info(app) + app.update_client_status() # TODO this should probably be moved here + + + def reset_status_ui(self, app): + self.reset_work_unit_info(app) + app.queue_list.clear() + app.slot_status_list.clear() + app.log.set_text('') + + + def get_running(self): + for unit in self.queue: + if unit['state'].upper() == 'RUNNING': return True + return False + + + def get_option_changes(self, app): + used = set() + options = {} + + used.add('power') # Don't set power here + + # Proxy options + used.add('proxy') + proxy_addr = get_widget_str_value(app.client_option_widgets['proxy']) + proxy_port = get_widget_str_value(app.proxy_port) + proxy = '%s:%s' % (proxy_addr, proxy_port) + if self.get('proxy') != proxy: options['proxy'] = proxy + + # Core priority radio button + used.add('core-priority') + if app.client_option_widgets['core_priority'].get_active(): + if self.have('core-priority') and \ + self.get('core-priority') != 'idle': + options['core-priority'] = 'idle' + elif self.get('core-priority') != 'low': + options['core-priority'] = 'low' + + # Extra core options + used.add('extra-core-args') + if self.have('extra-core-args'): + old_args = self.get('extra-core-args').split() + else: old_args = [] + + new_args = [] + def add_arg(model, path, iter, data): + new_args.append(model.get(iter, 0)[0]) + app.core_option_list.foreach(add_arg, None) + + if old_args != new_args: + if new_args: options['extra-core-args'] = ' '.join(new_args) + else: options['extra-core-args!'] = None + + # Extra options + def check_option(model, path, iter, data): + name, value = model.get(iter, 0, 1) + used.add(name) + if self.get(name) != value: options[name] = value + + app.option_list.foreach(check_option, None) + + # Main options + for name, widget in app.client_option_widgets.items(): + name = name.replace('_', '-') + if name in used: continue + value = self.get(name) + used.add(name) + + try: + value = get_widget_str_value(widget) + old_value = self.get(name) + if value == '' and old_value is None: value = None + if value != old_value: + if value is None: options[name + '!'] = None + else: options[name] = value + + except Exception, e: # Don't let one bad widget kill everything + print 'WARNING: failed to save widget "%s": %s' % (name, e) + + # Removed options + for name in self.options: + if not name in used: + options[name + '!'] = None + + return options + + + def get_slot_changes(self, app): + # Get new slots + new_slots = [] + def add_slot(model, path, iter, data = None): + new_slots.append(model.get(iter, 2)[0].slot) + app.slot_list.foreach(add_slot) + + # Get old slot IDs + old_slot_map = {} + for slot in self.slots: old_slot_map[slot.id] = slot + + # Get new slot IDs + new_slot_ids = set() + for slot in new_slots: new_slot_ids.add(slot.id) + + # Find deleted slot IDs + deleted = [] + for id in old_slot_map: + if id not in new_slot_ids: deleted.append(id) + + # Find added and modified slots + added = [] + modified = [] + for slot in new_slots: + # Added + if slot.id == -1: added.append((slot.type, slot.options)) + else: + old_slot = old_slot_map[slot.id] + options = get_option_mods(old_slot.options, slot.options) + if options or old_slot.type != slot.type: + modified.append((slot.id, slot.type, options)) + + return (deleted, added, modified) + + + def get_changes(self, app): + return self.get_option_changes(app), self.get_slot_changes(app) + + + def has_changes(self, app): + options, slots = self.get_changes(app) + return options or slots != ([], [], []) diff --git a/fah/Connection.py b/fah/Connection.py new file mode 100755 index 0000000..0600419 --- /dev/null +++ b/fah/Connection.py @@ -0,0 +1,280 @@ +#!/usr/bin/env python +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import socket +import select +import errno +import time +import sys +import traceback + +from fah.util import OrderedDict + +if sys.platform == 'win32': + from ctypes import windll + WSAGetLastError = windll.ws2_32.WSAGetLastError + +debug = False + + +class Connection: + def __init__(self, address = 'localhost', port = 36330, password = None, + retry_rate = 5): + self.address = address + self.port = int(port) + self.password = password + self.init_commands = [] + self.retry_rate = retry_rate + + self.socket = None + self.reset() + + + def set_init_commands(self, commands): + self.init_commands = commands + + if self.is_connected(): + map(self.queue_command, self.init_commands) + + + def get_status(self): + if self.connected: return 'Online' + #if self.socket is None: return 'Offline' + return 'Connecting' + + + def is_connected(self): + if self.socket is None: return False + if self.connected: return True + + rlist, wlist, xlist = select.select([], [self.socket], [self.socket], 0) + + if len(wlist) != 0: self.connected = True + elif len(xlist) != 0: + self.fail_reason = 'refused' + self.close() + + return self.connected + + + def can_write(self): + rlist, wlist, xlist = select.select([], [self.socket], [], 0) + return len(wlist) != 0 + + + def can_read(self): + rlist, wlist, xlist = select.select([self.socket], [], [], 0) + return len(rlist) != 0 + + + def reset(self): + self.close() + self.messages = [] + self.readBuf = '' + self.writeBuf = '' + self.fail_reason = None + self.last_message = 0 + self.last_connect = 0 + + + def open(self): + self.reset() + self.last_connect = time.time() + + self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + self.socket.setblocking(0) + err = self.socket.connect_ex((self.address, self.port)) + + if err != 0 and not err in [errno.EINPROGRESS, errno.EWOULDBLOCK]: + self.fail_reason = 'connect' + raise Exception, 'Connection failed: ' + errno.errorcode[err] + + if self.password: self.queue_command('auth "%s"' % self.password) + map(self.queue_command, self.init_commands) + + + def close(self): + if self.socket is not None: + try: + self.socket.shutdown(socket.SHUT_RDWR) + except: pass + try: + self.socket.close() + except: pass + self.socket = None + + self.connected = False + + + def connection_lost(self): + print 'Connection lost' + self.close() + self.fail_reason = 'closed' + raise Exception, 'Lost connection' + + + def connection_error(self, err, msg): + print 'Connection Error: %d: %s' % (err, msg) + self.close() + if err == errno.ECONNREFUSED: self.fail_reason = 'refused' + elif err in [errno.ETIMEDOUT, errno.ENETDOWN, errno.ENETUNREACH]: + self.fail_reason = 'connect' + else: self.fail_reason = 'error' + + + def read_some(self): + bytesRead = 0 + try: + while True: + buffer = self.socket.recv(10 * 1024 * 1024) + if len(buffer): + self.readBuf += buffer + bytesRead += len(buffer) + else: + if bytesRead: return bytesRead + self.connection_lost() + return 0 + + except socket.error, (err, msg): + # Error codes for nothing to read + if err not in [errno.EAGAIN, errno.EWOULDBLOCK]: + if bytesRead: return bytesRead + self.connection_error(err, msg) + raise + + return bytesRead + + + def write_some(self): + if len(self.writeBuf) == 0: return 0 + + bytesWritten = 0 + try: + while True: + count = self.socket.send(self.writeBuf) + if count: + self.writeBuf = self.writeBuf[count:] + bytesWritten += count + else: + if bytesWritten: return bytesWritten + self.connection_lost() + return 0 + + except socket.error, (err, msg): + # Error codes for write buffer full + if err not in [errno.EAGAIN, errno.EWOULDBLOCK]: + if bytesWritten: return bytesWritten + self.connection_error(err, msg) + raise + + return bytesWritten + + + def queue_command(self, command): + if debug: print 'command: ' + command + self.writeBuf += command + '\n' + + + def parse_message(self, version, type, data): + try: + msg = eval(data, {}, {}) + self.messages.append((version, type, msg)) + self.last_message = time.time() + except Exception, e: + print 'ERROR parsing PyON message: %s: %s' % ( + str(e), data.encode('string_escape')) + + + def parse(self): + start = self.readBuf.find('\nPyON ') + if start != -1: + eol = self.readBuf.find('\n', start + 1) + if eol != -1: + line = self.readBuf[start + 1: eol] + tokens = line.split(None, 2) + + if len(tokens) < 3: + self.readBuf = self.readBuf[eol:] + raise Exception, 'Invalid PyON line: ' + \ + line.encode('string_escape') + + version = int(tokens[1]) + type = tokens[2] + + end = self.readBuf.find('\n---\n', start) + if end != -1: + data = self.readBuf[eol + 1: end] + self.parse_message(version, type, data) + self.readBuf = self.readBuf[end + 4:] + return True + + return False + + + def update(self): + try: + try: + if not self.is_connected(): + if self.socket is None: + if self.last_connect + self.retry_rate < time.time(): + self.open() + + elif self.last_connect + 60 < time.time(): + self.close() # Retry connect + + if not self.is_connected(): return + + self.write_some() + if self.read_some(): + while self.parse(): continue + + # Handle special case for OSX disconnect + except socket.error, e: + if sys.platform == 'darwin' and e.errno == errno.EPIPE: + self.fail_reason = 'refused' + self.close() + + else: raise + + except Exception, e: + print 'ERROR on connection to %s:%d: %s' % ( + self.address, self.port, e) + + # Timeout connection + if self.connected and self.last_message and \ + self.last_message + 10 < time.time(): + print 'Connection timed out' + self.close() + + + +if __name__ == '__main__': + init = ['updates add 0 1 $options', + 'updates add 1 1 $queue-info', + 'updates add 2 1 $slot-info'] + conn = Connection(init_commands = init) + + while True: + conn.update() + + for version, type, data in conn.messages: + print 'PyON %d %s:\n' % (version, type), data + conn.messages = [] + + time.sleep(0.1) diff --git a/fah/FAHControl.glade b/fah/FAHControl.glade new file mode 100644 index 0000000..5850c60 --- /dev/null +++ b/fah/FAHControl.glade @@ -0,0 +1,7934 @@ + + + + + + 400 + 500 + False + 5 + About + True + normal + True + True + window + + + + True + False + 4 + + + True + False + end + + + + + + gtk-close + False + True + True + True + True + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + <span weight="bold" size="x-large">Folding@home Client Control</span> + True + + + False + True + 1 + + + + + True + False + True + + + False + True + 2 + + + + + True + False + gtk-missing-image + 6 + + + False + True + 3 + + + + + 1 + True + False + 0 + This application allows you to monitor and control one or more Folding@home version 7 or newer console clients. + center + + + False + True + 4 + + + + + True + False + Copyright © 2010-2014 Stanford University + + + False + True + 5 + + + + + http://folding.stanford.edu/ + False + True + False + True + none + http://folding.stanford.edu/ + + + False + True + 6 + + + + + True + False + For help see: + + + False + True + 7 + + + + + http://foldingforum.org/ + False + True + False + True + none + http://foldingforum.org/ + + + False + True + 8 + + + + + License: GPL v3.0 + False + True + False + False + none + http://www.gnu.org/licenses/gpl-3.0-standalone.html + + + False + True + 9 + + + + + True + False + 0 + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 8 + + + True + False + <b>Project Leader</b> +Dr. Vijay Pande +Stanford University + True + center + + + False + True + 0 + + + + + True + False + <b>Developer</b> +Joseph Coffland +Cauldron Development LLC + True + center + + + False + True + 1 + + + + + True + False + <b>Testers</b> +Bruce Borden, bborden +Ivo Sarak, Ivoshiee +Thomas Fourcade, toTOW +Tim Braun, 7im +Carl Moudy, ChelseaOilman +Jean Hunter, susato +David Richard, RipD +Charles Richards, ChasR +Mark Turner, P5-133XL +Tim Thomas, hrsetrdr +Andy Van de Walle, Rum@NoV +Erwin Gies, SandStar +Anand Bhat, AnandBhat +Kevin Bernhagen, calxalot +Charles Oliver, 7up1n +Syed Mohammad Hussain Abdul Aziz, PantherX +John Wilkinson, pythagoras +Jesse Victors, Jesse_V +Juha Liinamaa, Napoleon +Michael Kellogg, bollix47 +Joe Heimann, jheimann + True + center + + + False + True + 2 + + + + + + + + + + + + + True + False + <b>Credits</b> + True + + + + + True + True + 10 + + + + + + button1 + + + + + + + + + + + + ANY + Any + + + ALZHEIMERS + Alzheimer's + + + CANCER + Cancer + + + HUNTINGTONS + Huntington's + + + PARKINSONS + Parkinson's + + + + + 3 + 30 + 15 + 3 + 9 + + + 65535 + 36330 + 1 + 100 + + + 400 + False + 5 + False + True + dialog + window + + + + True + False + 2 + + + True + False + end + + + Fold Anonymously + False + True + True + True + image23 + + + + False + False + 0 + + + + + Configure Identity + False + True + True + True + image22 + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + This client has not been assigned an identity. + +No configuration is required, you may contribute +to Folding@home anonymously but in order for the +points you earn to be credited to you, you must +select at least a user name. + +Would you like to configure your identity now? + center + + + True + True + 1 + + + + + + + + + button4 + button3 + + + + + + + + + + False + 5 + Edit Core Option + True + center-on-parent + normal + True + True + window + + + + True + False + 2 + + + True + False + end + + + gtk-ok + False + True + True + True + True + + + + False + False + 0 + + + + + gtk-cancel + False + True + True + True + True + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + True + â— + False + False + True + True + + + + + + + True + False + <b>Edit core option</b> + True + + + + + False + True + 1 + + + + + + core_options_ok_button + core_options_cancel_button + + + + 10 + 100 + 100 + 1 + 10 + + + 700 + 556 + False + 5 + Configure + True + True + normal + True + True + window + + + + True + False + 2 + + + True + False + end + + + gtk-save + False + True + True + True + True + + + + False + False + 0 + + + + + gtk-cancel + False + True + True + True + True + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + 0 + + + True + False + 4 + 4 + 4 + 4 + + + True + False + + + True + True + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 12 + + + True + False + + + 10 + True + False + 0 + 0 + Configure FAHControl's connection to an actual Folding@home client. The client can either be local or on a remote machine. + 100 + + + False + True + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + + + 1 + True + False + 0 + 0 + Give the client a display name. "local" client name cannot be changed. + + + False + True + 0 + + + + + True + True + â— + False + False + True + True + + + True + True + 1 + + + + + + + + + True + False + <b>Name</b> + True + + + + + False + True + 1 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + + + 1 + True + False + 0 + Specify the network address either as an IP of the form ###.###.###.### or a hostname. "local" client address cannot be changed. + + + False + True + 0 + + + + + True + False + + + True + False + 1 + 4 + Hostname or IP: + + + False + True + 0 + + + + + True + True + â— + localhost + False + False + True + True + + + True + True + 1 + + + + + True + True + 1 + + + + + 1 + True + False + 0 + The port must match the configuration in the client. The default port is 36330. + + + False + True + 2 + + + + + True + False + + + 80 + True + False + 1 + 4 + Port: + + + False + True + 0 + + + + + True + True + â— + False + False + True + True + port_adjustment + True + + + False + True + 1 + + + + + True + True + 3 + + + + + + + + + True + False + <b>Address</b> + True + + + + + False + True + 2 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + + + 1 + True + False + 0 + Specify a password for secure access to the client. This keeps others from being able to control your client remotely, if it is not already protected by a firewall. + + + False + True + 0 + + + + + True + True + False + â— + True + False + False + True + True + + + True + True + 1 + + + + + + + + + True + False + <b>Password</b> + True + + + + + False + True + 3 + + + + + + + + + + + + + True + False + <b>Client connection</b> + True + + + + + + + + + True + False + Connection + + + False + + + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + False + automatic + automatic + + + True + False + queue + none + + + True + False + 12 + + + True + False + 4 + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + 1 + True + False + 0 + 0 + The name, or alias, you enter here will be displayed in the statistics page on our web site. If you choose not to enter a name, your computer's time will be donated anonymously. These settings may be changed at any time. + + + False + True + 0 + + + + + True + False + + + True + True + â— + anonymous + False + False + True + True + + + True + True + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Name</b> + True + + + + + False + True + 2 + 0 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + 1 + True + False + 0 + 0 + You may also join a team. If you want your work to count for a team, enter the team number here. See the Folding@home Web site to find out how to start a team. + + + False + True + 0 + + + + + True + False + + + True + True + â— + False + False + True + True + team_adjustment + True + if-valid + + + False + True + 0 + + + + + True + True + 4 + 1 + + + + + + + + + True + False + <b>Team number</b> + True + + + + + False + True + 2 + 1 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + True + False + + + Click here to open the Folding@home passkey request Web page + False + True + False + True + none + http://fah-web.stanford.edu/cgi-bin/getpasskey.py + + + False + True + 0 + + + + + True + False + + + True + True + 1 + + + + + True + True + 0 + + + + + 1 + True + False + 0 + 0 + For added security, you can request a passkey and enter it here. This helps to prevent others from pretending to be you. You are responsible for keeping your passkey a secret. A passkey is also required to earn bonus points. + + + False + True + 1 + + + + + True + False + + + True + False + 3 + 2 + 4 + + + True + True + False + â— + False + False + True + True + + + 1 + 2 + GTK_FILL + + + + + True + True + False + â— + False + False + True + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + False + 1 + <b>Passkey</b> + True + + + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Reenter</b> + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Valid</b> + True + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + True + False + 4 + + + True + False + 0 + gtk-dialog-error + + + False + True + 0 + + + + + True + False + 0 + + + False + True + 1 + + + + + 1 + 2 + 2 + 3 + + + + + True + True + 0 + + + + + True + True + 4 + 2 + + + + + + + + + True + False + <b>Passkey</b> + True + + + + + False + True + 2 + 2 + + + + + + + + + + + + + True + False + <b>How would you like to be credited?</b> + True + + + + + + + 1 + + + + + True + False + Identity + + + 1 + False + + + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 12 + + + True + False + + + 1 + True + False + 0 + 0 + If you do not define any folding slots the client will try to choose a good configuration for you automatically. So you can safely ignore this section. + +Folding slots can be one of two types, CPU or GPU. Representing the different types of Folding@home cores. Expert users can configure many details of each slot but that is usually not necessary. + + + False + True + 0 + + + + + True + False + 0 + + + True + False + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + + + True + True + slot_list + False + True + False + + + + ID + + + + 0 + + + + + + + Type + + + + 1 + + + + + + + + + + + True + True + 0 + + + + + True + False + + + True + False + + + True + True + 0 + + + + + True + False + + + gtk-add + False + True + True + True + True + + + + False + True + 0 + + + + + gtk-remove + False + True + True + True + True + + + + False + True + 1 + + + + + gtk-edit + False + True + True + True + True + + + + True + True + 2 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Folding slots</b> + True + + + + + True + True + 1 + + + + + + + + + + + + + True + False + <b>Configure client folding slots</b> + True + + + + + + + 2 + + + + + True + False + Slots + + + 2 + False + + + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 12 + + + True + False + 2 + + + 1 + True + False + 0 + 0 + The options in this section can be used to configure remote access to Folding@home clients. This is mainly only useful to expert users running multiple clients which they would like to monitor and control from another computer. These options may be safely ignored as the defaults are safe and will not allow any remote access. + +In addition to the settings here, you may also have to open access to the configured port in your firewall configuration for the machine or machines which will be allowed to remotely access this client. + +Warning, the password set here is transmitted in clear text and is not meant to be a complete security solution. If you intend to enable access to your Folding@home clients over the Internet then you should use additional security such as secure VPN, SSH tunneling or at a minimum IP based access restriction. + +Warning, changes you make here may render your client inaccessible even from the local machine. If this happens you will have to manually add your IP to 'command-allow' option in the client's 'config.xml' file and restart it. + + + False + True + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 8 + + + 1 + True + False + 0 + 0 + If you set a password here clients will be required to enter this password to gain access to the console client. Otherwise, only clients which are listed in the Passwordless IP Addresses section will be allowed to access this client. + + + False + True + 0 + + + + + True + False + 3 + 2 + 4 + + + True + True + False + â— + False + False + True + True + + + 1 + 2 + GTK_FILL + + + + + True + True + False + â— + False + False + True + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + False + 1 + <b>Password</b> + True + + + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Reenter</b> + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Valid</b> + True + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + True + False + 4 + + + True + False + 0 + gtk-dialog-error + + + False + True + 0 + + + + + True + False + 0 + + + False + True + 1 + + + + + 1 + 2 + 2 + 3 + + + + + True + True + 1 + + + + + + + + + True + False + <b>Password</b> + True + + + + + False + True + 1 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 8 + + + 1 + True + False + 0 + 0 + The network port used to access this client. This must match the port in the configuration used to access this client. + + + False + True + 0 + + + + + True + False + + + True + True + â— + False + False + True + True + command_port_adjustment + + + False + True + 0 + + + + + True + False + + + False + True + 1 + + + + + True + True + 1 + + + + + + + + + True + False + <b>Port</b> + True + + + + + False + True + 2 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 8 + + + 1 + True + False + 0 + 0 + These fields restrict remote access to the client by allowing and denying IP address ranges. The client first checks if the IP address matches one of the allowed IP ranges if true access is allowed. Otherwise, if the IP address is in one of the deny ranges access is denied. If the IP address is in neither list access is allowed. + +The fields below should contain space separated lists of IP addresses or IP address address ranges which may be specified in one of the two following formats: + + xxx.xxx.xxx.xxx-xxx.xxx.xxx.xxx +or + xxx.xxx.xxx.xxx/bits + +There can be no spaces between the - or / in the above formats. The first format simply allows all IP addresses counting from the first to the second inclusive. The second format is shorter and is commonly used in networking software. The bits field in this format specifies how many bits are significant in the range starting from the left. An IP address has a total of 32 bits. So the following ranges are equivalent. + + 192.168.0.0-192.168.0.255 +or + 192.168.0.0/24 + +The following range specification matches all IP address: + + 0.0.0.0/0 + + + False + True + 0 + + + + + True + False + 2 + 2 + 4 + + + True + True + â— + False + False + True + True + + + 1 + 2 + GTK_FILL + + + + + True + True + â— + False + False + True + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + False + 1 + <b>Allow</b> + True + + + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Deny</b> + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + 1 + + + + + + + + + True + False + <b>IP Address Restriction</b> + True + + + + + False + True + 3 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 8 + + + 1 + True + False + 0 + 0 + These fields accept the same format as above however, the IP address filter created by these fields will allowed to access the client with out a password. + +Great care should be taken when modifying these fields. Normally, only the local IP address 127.0.0.1 should be allowed unless your network is protected by other means and you would like more convenient access to this client. + +Addresses listed here also need to be listed above to allow access. + + + False + True + 0 + + + + + True + False + 2 + 2 + 4 + + + True + True + â— + False + False + True + True + + + 1 + 2 + GTK_FILL + + + + + True + True + â— + False + False + True + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + False + 1 + <b>Allow</b> + True + + + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Deny</b> + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + 1 + + + + + + + + + True + False + <b>Passwordless IP Address Restriction</b> + True + + + + + False + True + 4 + + + + + + + + + + + + + True + False + <b>Console client remote access</b> + True + + + + + + + 3 + + + + + True + False + Remote Access + + + 3 + False + + + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 12 + + + True + True + automatic + automatic + + + True + False + + + True + False + 4 + + + Enable proxy configuration + False + True + True + False + 0.4699999988079071 + True + + + + False + True + 0 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + 1 + True + False + 0 + 0 + The hostname or IP address and port of the HTTP proxy. + + + False + True + 0 + + + + + True + False + + + True + False + + + True + False + 1 + 5 + <b>Hostname or IP</b> + True + + + False + True + 0 + + + + + True + True + • + True + False + False + True + True + + + True + True + 1 + + + + + True + False + 1 + 5 + <b>Port</b> + True + + + False + True + 2 + + + + + True + True + • + True + False + False + True + True + proxy_port_adjustment + True + + + False + True + 3 + + + + + True + True + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Proxy</b> + True + + + + + False + True + 2 + 1 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + 1 + True + False + 0 + 0 + The proxy user name and password if necessary. The Folding@home client currently only supports basic and digest authentication. Specifically NTLM, SOCKS and SSL/TLS proxies are not supported. + + + False + True + 0 + + + + + True + False + + + True + False + 4 + 2 + 4 + + + True + True + False + • + True + False + False + True + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + True + False + • + True + False + False + True + True + + + 1 + 2 + 2 + 3 + GTK_FILL + + + + + True + False + 1 + <b>Password</b> + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Reenter</b> + True + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Valid</b> + True + + + 3 + 4 + GTK_FILL + GTK_FILL + + + + + True + False + 4 + + + True + False + 0 + gtk-dialog-error + + + False + True + 0 + + + + + True + False + 0 + + + False + True + 1 + + + + + 1 + 2 + 3 + 4 + + + + + True + False + 1 + <b>Name</b> + True + + + GTK_FILL + GTK_FILL + + + + + True + True + • + True + False + False + True + True + + + 1 + 2 + + + + + True + True + 0 + + + + + True + True + 4 + 1 + + + + + + + + + True + False + <b>Proxy Authentication</b> + True + + + + + False + True + 2 + 2 + + + + + + + + + + + + + + + + + True + False + <b>Configure Proxy Options</b> + True + + + + + + + 4 + + + + + True + False + Proxy + + + 6 + False + + + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + False + 12 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 4 + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + 4 + + + True + False + + + True + False + cause_pref_list + 0 + + + + 1 + + + + + False + False + 0 + + + + + True + False + + + True + True + 1 + + + + + False + True + 0 + + + + + 1 + True + False + 0 + 0 + If you prefer to support a particular cause you may specify this preference here. This does not guarantee that all of your computing resources will go towards the specified cause. + + + True + True + 1 + + + + + + + + + True + False + <b>Cause Preference</b> + True + + + + + False + True + 2 + 0 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + 2 + 2 + + + False + True + True + False + True + True + + + GTK_FILL + GTK_FILL + + + + + False + True + True + False + True + core_priority_option + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + 1 + True + False + 0 + 0 + Lowest possible (recommended) + + + 1 + 2 + + + + + 1 + True + False + 0 + 0 + Slightly higher. Use this if other distributed computing applications are stopping Folding@home from running. + + + 1 + 2 + 1 + 2 + + + + + + + + + True + False + <b>Folding Core Priority</b> + True + + + + + False + True + 2 + 1 + + + + + 580 + False + 0 + + + True + False + 12 + 4 + + + True + False + + + True + True + cpu_usage_adjustment + 0 + left + + + + True + True + 0 + + + + + 1 + True + False + 0 + 0 + Instruct Folding@home cores to only use this percentage of the available CPU. (100% is recommended) + + + False + True + 1 + + + + + + + + + True + False + <b>Percent CPU usage</b> + True + + + + + False + True + 2 + 2 + + + + + 580 + False + 0 + + + True + False + 12 + 4 + + + True + False + + + True + True + gpu_usage_adjustment + 0 + 0 + left + + + + True + True + 0 + + + + + 1 + True + False + 0 + 0 + Instruct Folding@home GPU cores to use at most this percentage of the GPU's available processing power. (80% is recommended) + + + False + True + 1 + + + + + + + + + True + False + <b>Percent GPU usage</b> + True + + + + + False + True + 2 + 3 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + True + True + checkpoint_adjustment + 0 + left + + + + True + True + 0 + + + + + 1 + True + False + 0 + 0 + Some cores maintain a maximum checkpoint internal. A checkpoint saves the core's work so it can restart from the same point later in case the program ends unexpectedly. This slider lets you control how often these checkpoints occur. More frequent checkpointing reduces the amount of work that could be lost but decreases performance. + + + False + True + 1 + + + + + + + + + True + False + <b>Checkpointing frequency</b> + True + + + + + False + True + 2 + 4 + + + + + 580 + False + 0 + + + True + False + 12 + 4 + + + True + False + 2 + 2 + + + False + True + True + False + True + + + GTK_FILL + + + + + False + True + True + False + True + + + 1 + 2 + GTK_FILL + + + + + 100 + True + False + 0 + 0 + Disable highly optimized assembly code. Useful if core fails to run because of unsupported instructions. + + + 1 + 2 + + + + + 100 + True + False + 0 + 0 + Try to lock cores to a specific CPU. Also known as CPU affinity locking. + + + 1 + 2 + 1 + 2 + + + + + + + + + True + False + <b>Optimizations</b> + True + + + + + False + True + 2 + 5 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + False + True + True + False + True + + + False + True + 0 + + + + + 100 + True + False + 0 + 0 + Pause work while on battery power. This is useful for laptops. + + + True + True + 1 + + + + + + + + + True + False + <b>Power</b> + True + + + + + False + True + 2 + 6 + + + + + 580 + True + False + 0 + + + True + False + 12 + 4 + + + True + False + + + True + True + â— + False + False + True + True + verbosity_adjustment + True + + + False + True + 0 + + + + + 100 + True + False + 0 + Set log verbosity level. Level 0 turns off all but errors and warnings. Levels 1 to 5 add increasingly more detail to the log. Level 3 is recommended. + + + True + True + 1 + + + + + + + + + True + False + <b>Verbosity</b> + True + + + + + False + True + 2 + 7 + + + + + + + + + + + + + True + False + <b>Client configuration items for advanced users</b> + True + + + + + + + 5 + + + + + True + False + Advanced + + + 5 + False + + + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 0 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 12 + + + True + False + + + 100 + True + False + 0 + 0 + Changing configuration options in this section may break your client, cost you points, or damage your or your team's standing with the Folding@home project. Only make changes here if you know what you are doing or have been so instructed by a member of the Folding@home team. + +Some of these options may require manually restarting the client to take effect. + + + False + True + 0 + + + + + True + False + + + True + False + 0 + + + True + False + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + + + True + False + option_list + False + True + False + + + Name + + + True + + + 0 + + + + + + + Value + + + True + + + 1 + + + + + + + + + + + True + True + 0 + + + + + True + False + + + True + False + + + True + True + 0 + + + + + True + False + + + gtk-add + False + True + True + True + True + + + + False + True + 0 + + + + + gtk-remove + False + True + True + True + True + + + + False + True + 1 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Extra client options</b> + True + + + + + True + True + 0 + + + + + True + False + 0 + + + True + False + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + + + True + False + core_option_list + False + True + 0 + + + Option + + + True + + + + 0 + + + + + + + + + + + True + True + 0 + + + + + True + False + + + True + False + + + True + True + 0 + + + + + True + False + + + gtk-add + False + True + True + True + True + + + + False + True + 0 + + + + + gtk-remove + False + True + True + True + True + + + + False + True + 1 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Extra core options</b> + True + + + + + True + True + 1 + + + + + True + True + 1 + + + + + + + + + + + + + True + False + <b>Client configuration options for experts only</b> + True + + + + + + + 6 + + + + + True + False + Expert + + + 6 + False + + + + + True + True + 2 + + + + + + + + + True + False + <b>Client: inactive</b> + True + + + + + True + True + 1 + + + + + + client_ok_button + client_cancel_button + + + + + + + + + + + + + + + + -1 + 1000000 + -1 + 1 + 1 + + + -1 + 1000000 + -1 + 1 + 1 + + + + + + + + + + + 2 + 1 + 1 + + + -1 + 1000000 + -1 + 1 + 1 + + + 10 + 100 + 100 + 1 + 10 + + + True + False + gtk-execute + + + True + False + gtk-no + + + True + False + gtk-media-next + + + True + False + gtk-media-next + + + True + False + gtk-media-next + + + True + False + gtk-missing-image + + + True + False + gtk-missing-image + + + True + False + gtk-media-play + + + True + False + gtk-media-pause + + + True + False + gtk-missing-image + + + True + False + gtk-missing-image + + + True + False + gtk-media-play + + + True + False + gtk-missing-image + + + + + + + + + + + Any + + + Warning + + + Error + + + + + + + + + + + Novice + + + Advanced + + + Expert + + + + + -1 + 1000000 + -1 + 1 + 1 + + + + + + + + + + + False + 5 + Edit Options + True + center-on-parent + normal + True + True + window + + + + True + False + 2 + + + True + False + end + + + gtk-ok + False + True + True + True + True + + + + False + False + 0 + + + + + gtk-cancel + False + True + True + True + True + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 2 + 2 + + + True + False + 1 + 4 + Name: + + + GTK_FILL + GTK_FILL + + + + + True + False + 1 + 4 + Value: + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + â— + False + False + True + True + + + 1 + 2 + + + + + True + True + â— + False + False + True + True + + + 1 + 2 + 1 + 2 + + + + + + + + + True + False + <b>Edit option</b> + True + + + + + False + True + 1 + + + + + + options_ok_button + options_cancel_button + + + + True + False + + + About FAHControl + False + True + False + image15 + False + + + + + + Preferences... + False + True + False + image10 + False + + + + + + + Viewer... + False + True + False + image14 + False + + + + + + 65535 + 36330 + 1 + 100 + + + False + 5 + Preferences + True + center + True + normal + True + True + window + + + + True + False + 2 + + + True + False + end + + + gtk-save + False + True + True + True + True + + + + False + False + 0 + + + + + gtk-cancel + False + True + True + True + True + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 5 + 2 + 5 + + + True + False + 1 + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + Screen Width + True + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + Fullscreen + False + True + True + False + bottom + True + + + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL + + + + + 100 + True + False + 1 + Command + True + + + GTK_FILL + GTK_FILL + + + + + True + True + • + FAHViewer + True + False + False + True + True + + + 1 + 2 + + + + + True + False + 5 + + + True + True + • + True + False + False + True + True + viz_width_adjustment + + + False + True + 0 + + + + + True + False + 1 + Height + True + + + False + True + 1 + + + + + True + True + • + True + False + False + True + True + viz_height_adjustment + + + False + True + 2 + + + + + 1 + 2 + 2 + 3 + + + + + True + False + 1 + Render Mode + True + + + 3 + 4 + GTK_FILL + GTK_FILL + + + + + True + False + + + True + False + viz_render_mode_liststore + + + + 0 + + + + + False + False + 0 + + + + + + + + 1 + 2 + 3 + 4 + + + + + True + False + 1 + True + + + 4 + 5 + GTK_FILL + GTK_FILL + + + + + Cycle Snapshots + False + True + True + False + True + + + 1 + 2 + 4 + 5 + GTK_FILL + GTK_FILL + + + + + + + + + True + False + <b>Visualization</b> + True + + + + + False + True + 1 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 2 + 3 + 5 + + + 100 + True + False + 1 + Donor Stats + True + + + GTK_FILL + + + + + True + False + 1 + Team Stats + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + • + True + False + False + True + True + + + 1 + 2 + + + + + True + True + • + True + False + False + True + True + + + 1 + 2 + 1 + 2 + + + + + True + False + team_stats_links_list + 0 + + + + + 0 + + + + + 2 + 3 + 1 + 2 + GTK_FILL + + + + + True + False + donor_stats_links_list + 0 + + + + + 0 + + + + + 2 + 3 + GTK_FILL + + + + + + + + + True + False + <b>Stats Links</b> + True + + + + + False + True + 2 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + 2 + 5 + + + True + False + 1 + 3 + Theme + True + + + GTK_FILL + GTK_FILL + + + + + True + False + theme_list + 0 + + + + + 0 + + + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + + + + + True + False + <b>User Interface</b> + True + + + + + False + True + 3 + + + + + + preferences_ok_button + preferences_cancel_button + + + + + 65535 + 8080 + 1 + 100 + + + + + + + + + + + + + + + + + + + + + + + + + 600 + 556 + False + 5 + Folding Slot + True + center-on-parent + normal + True + True + client_dialog + + + + True + False + 2 + + + True + False + end + + + gtk-ok + False + True + True + True + True + + + + False + False + 0 + + + + + gtk-cancel + False + True + True + True + True + + + + False + False + 1 + + + + + False + True + end + 0 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + True + never + automatic + + + True + False + + + True + False + 2 + + + True + False + 0 + in + + + True + False + 12 + + + True + False + + + False + True + True + False + True + slot_type_gpu + + + False + True + 0 + + + + + True + False + + + 1 + True + False + 0 + A CPU slot uses 1 or more CPUs. More CPUs on one slot can complete simulation trajectories faster than many single CPU slots. + + + True + True + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + + + 1 + True + False + 0 + The number of CPU threads this slot should use. -1 lets the client choose. + + + True + True + 0 + + + + + True + False + + + True + True + â— + True + False + False + True + True + cpus_adjustment + True + + + False + True + 0 + + + + + True + False + + + True + True + 1 + + + + + True + True + 1 + + + + + + + + + True + False + <b>CPUs</b> + True + + + + + False + True + 1 + + + + + True + True + 1 + + + + + + + + + True + False + <b>CPU</b> + True + + + + + False + True + 0 + + + + + True + False + 0 + in + + + True + False + 12 + + + True + False + + + False + True + True + False + True + True + + + False + True + 0 + + + + + True + False + + + 1 + True + False + 0 + A GPU slot uses the same Graphics Processing Unit that powers 3D applications. Simulations are usually faster but you must have a supported GPU and the correct drivers installed. + + + True + True + 0 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + + + 1 + True + False + 0 + Defines which GPU to use. The first GPU in the system starts at 0. Leave this as -1 to allow the client to choose a supported GPU. + + + True + True + 0 + + + + + True + False + 3 + 5 + + + True + True + â— + True + False + False + True + True + gpu_index_adjustment + True + + + 1 + 2 + GTK_FILL + + + + + True + False + <b>gpu-index</b> + True + + + GTK_FILL + + + + + True + False + + + 2 + 3 + + + + + True + True + 1 + + + + + + + + + True + False + <b>GPU Index</b> + True + + + + + False + True + 1 + + + + + True + False + 0 + + + True + False + 12 + + + True + False + + + 10 + True + False + 0 + Normally it is best to leave these values to their default, -1. However, in some cases, with system containing multiple GPUs of varying type, the index the client uses to identify the GPU can differ from the index used by the GPU core. Furthermore, there are two types of GPU core which can used different indices for the same GPU. + +If you encounter such a conflict you can try adjusting these values, restarting your GPU slot and then checking, with an appropriate tool, the GPUs activity level. + +WARNING, changing these values can make your GPU folding slot fail. + + + True + True + 0 + + + + + True + False + 2 + 3 + 5 + + + True + True + â— + True + False + False + True + True + opencl_index_adjustment + True + + + 1 + 2 + GTK_FILL + + + + + True + False + <b>opencl-index</b> + True + + + GTK_FILL + + + + + True + False + + + 2 + 3 + + + + + True + False + + + 2 + 3 + 1 + 2 + + + + + True + True + â— + True + False + False + True + True + cuda_index_adjustment + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + False + <b>cuda-index</b> + True + + + 1 + 2 + GTK_FILL + + + + + True + True + 1 + + + + + + + + + True + False + <b>GPU Core Indices (Expert Only)</b> + True + + + + + False + True + 2 + + + + + True + True + 1 + + + + + + + + + True + False + <b>GPU</b> + True + + + + + False + True + 1 + + + + + 150 + True + False + 0 + + + True + False + 12 + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + + + True + True + slot_option_list + False + True + False + + + Name + + + True + + + 0 + + + + + + + Value + + + True + + + 1 + + + + + + + + + + + True + True + 0 + + + + + True + False + + + True + False + + + True + True + 0 + + + + + True + False + + + gtk-add + False + True + True + True + True + + + + False + True + 0 + + + + + gtk-remove + False + True + True + True + True + + + + False + True + 1 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Extra slot options (expert only)</b> + True + + + + + True + True + 2 + + + + + + + + + + + + + True + False + <b>Configure folding slot</b> + True + + + + + True + True + 1 + + + + + + slot_ok_button + slot_cancel_button + + + + + + + + + + + + + + True + False + + + Fold + False + True + False + image2 + False + True + + + + + + gtk-media-pause + False + True + False + True + True + True + + + + + + Finish + False + True + False + image1 + False + True + + + + + + False + True + False + On Idle + True + + + + + + View + False + True + False + View the protein running on this slot. + image7 + False + True + + + + + + + + + + + + + + + + + + + + + + + + + + 100 + 1 + 10 + + + 4294967295 + 1 + 1000 + + + + + + + + + + + The name, or alias, you enter here will be displayed in the statistics page on our web site. If you choose not to enter a name, your computer's time will be donated anonymously. These settings may be changed at any time. + + + Some cores maintain a maximum checkpoint internal. A checkpoint saves the core's work so it can restart from the same point later in case the program ends unexpectedly. This slider lets you control how often these checkpoints occur. More frequent checkpointing reduces the amount of work that could be lost but decreases performance. + + + Disable highly optimized assembly code. Useful if core fails to run because of unsupported instructions. + + + Try to lock cores to a specific CPU. Also known as CPU affinity locking. + + + Pause work while on battery power. This is useful for laptops. + + + Set log verbosity level. Level 0 turns off all but errors and warnings. Levels 1 to 5 add increasingly more detail to the log. Level 3 is recommended. + + + Configure FAHControl's connection to an actual Folding@home client. The client can either be local or on a remote machine. + + + Give the client a display name. "local" client name cannot be changed. + + + Specify the network address either as an IP of the form ###.###.###.### or a hostname. "local" client address cannot be changed. + + + Specify a password for secure access to the client. This keeps others from being able to control your client remotely, if it is not already protected by a firewall. + + + The port must match the configuration in the client. The default port is 36330. + + + Please check that the name consits of only alphanumeric characters and standard punctuation. + + + A uniprocessor slot uses one CPU. + + + An SMP slot uses 2 or more CPUs and completes simulation trajectories faster than an equivalent number of uniprocessor slots. + + + A GPU slot uses the same Graphics Processing Unit that powers 3D applications. Simulations are usually faster but you must have a supported GPU and the correct drivers installed. + + + The number of CPU threads this slot should use. This value should be a multiple of 2. Leave it as -1 to let the client choose an appropriate default. + + + Defines which GPU to use. The first GPU in the system starts at 0. Leave this as -1 to allow the client to choose a supported GPU. + + + These options only have an effect if folding slots are not manually configured below. They tell the client which slots types it may try to automatically configure. If enabled the client will first try to configure a GPU slot then an SMP slot and finally a Uniprocessor slot of all else fails. + + + This application allows you to monitor and control one or more Folding@home version 7 or newer console clients. + + + If you set a password here clients will be required to enter this password to gain access to the console client. Otherwise, only clients which are listed in the Passwordless IP Addresses section will be allowed to access this client. + + + The options in this section can be used to configure remote access to Folding@home clients. This is mainly only useful to expert users running multiple clients which they would like to monitor and control from another computer. These options may be safely ignored as the defaults are safe and will not allow any remote access. + +In addition to the settings here, you may also have to open access to the configured port in your firewall configuration for the machine or machines which will be allowed to remotely access this client. + +Warning, the password set here is transmitted in clear text and is not meant to be a complete security solution. If you intend to enable access to your Folding@home clients over the Internet then you should use additional security such as secure VPN, SSH tunneling or at a minimum IP based access restriction. + +Warning, changes you make here may render your client inaccessible even from the local machine. If this happens you will have to manually add your IP to 'command-allow' option in the client's 'config.xml' file and restart it. + + + These fields restrict remote access to the client by allowing and denying IP address ranges. The client first checks if the IP address matches one of the allowed IP ranges if true access is allowed. Otherwise, if the IP address is in one of the deny ranges access is denied. If the IP address is in neither list access is allowed. + +The fields below should contain space separated lists of IP addresses or IP address address ranges which may be specified in one of the two following formats: + + xxx.xxx.xxx.xxx-xxx.xxx.xxx.xxx +or + xxx.xxx.xxx.xxx/bits + +There can be no spaces between the - or / in the above formats. The first format simply allows all IP addresses counting from the first to the second inclusive. The second format is shorter and is commonly used in networking software. The bits field in this format specifies how many bits are signifigant in the range starting from the left. An IP address has a total of 32 bits. So the following ranges are equivalent. + + 192.168.0.0-192.168.0.255 +or + 192.168.0.0/24 + +The following range specification matches all IP address: + + 0.0.0.0/0 + + + You may also join a team. If you want your work to count for a team, enter the team number here. See the Folding@home Web site to find out how to start a team. + + + These fields accept the same format as above however, the IP address filter created by these fields will allowed to access the client with out a password. + +Great care should be taken when modifying these fields. Normally, only the local IP address 127.0.0.1 should be allowed unless your network is protected by other means and you would like more convenient access to this client. + +Addresses listed here also need to be listed above to allow access. + + + The network port used to access this client. This must match the port in the configuration used to access this client. + + + <b>Project Lead</b>: + Vijay Pande + +Development: + Joseph Coffland <joseph@cauldrondevelopment.com> + + + + + This is the configuration for the local client which can be manually started and stopped from here. A new local client will not be started if one is already running on this address and port. + + + The hostname or IP address and port of the HTTP proxy. + + + The proxy user name and password if necessary. The Folding@home client currently only supports basic and digest authentication. Specifically NTLM, SOCKS and SSL/TLS proxies are not supported. + + + Normally it is best to leave these values to their default, -1. However, in some cases, with system containing multiple GPUs of varying type, the index the client uses to identify the GPU can differ from the index used by the GPU core. Furthermore, there are two types of GPU core which can used different indices for the same GPU. + +If you encounter such a conflict you can try adjusting these values, restarting your GPU slot and then checking, with an appropriate tool, the GPUs activity level. + +WARNING, changing these values can make your GPU folding slot fail. + + + Instruct Folding@home GPU cores to use at most this percentage of the GPU's available processing power. (80% is recommended) + + + For added security, you can request a passkey and enter it here. This helps to prevent others from pretending to be you. You are responsible for keeping your passkey a secret. + + + Changing configuration options in this section may break your client, cost you points, or damage your or your team's standing with the Folding@home project. Only make changes here if you know what you are doing or have been so instructed by a member of the Folding@home team. + +Some of these options may require manually restarting the client to take effect. + + + If you do not define any folding slots the client will try to choose a good configuration for you automatically. So you can safely ignore this section. + +Folding slots can be one of three types, Uniprocessor, SMP or GPU. Representing the different types of Folding@home cores. Expert users can configure many details of each slot but that is usually not necessary. + + + Lowest possible (recommended) + + + Slightly higher. Use this if other distributed computing applications are stopping Folding@home from running. + + + Instruct Folding@home cores to only use this percentage of the available CPU. (100% is recommended) + + + + + + + + + + + 5 + 2 + 1 + + + 100 + 10000 + 600 + 1 + 10 + + + + + + + + + Space Filling + + + Ball And Stick + + + Stick + + + Advanced Space Filling + + + Advanced Ball And Stick + + + Advanced Stick + + + Cartoon Space Filling + + + Cartoon Ball And Stick + + + + + 100 + 10000 + 800 + 1 + 10 + + + 800 + 520 + False + FAHControl - Folding@home Client Advanced Control + center + + + + + True + False + + + True + False + both + 1 + True + + + False + True + False + Edit currently selected client's configuration. + Configure + True + gtk-execute + + + + False + True + + + + + True + False + + + False + + + + + False + True + False + Edit FAHControl preferences. + Preferences + True + gtk-preferences + + + + False + True + + + + + False + True + False + True + Quit FAHControl. No clients will be stopped. + True + Exit + True + gtk-quit + + + + False + True + + + + + False + True + False + False + + + True + + + + + False + True + False + Open the About box. + About + True + gtk-about + + + + False + True + + + + + False + True + 0 + + + + + True + False + 4 + 4 + + + 600 + True + True + 176 + True + + + True + False + + + True + False + 0 + + + True + False + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + True + client_list + False + True + False + 0 + + + + Name + + + + 0 + + + + + + + Status + + + + 2 + 1 + + + + + + + Address + + + 0 + + + 3 + + + + + + + + + + + True + True + 0 + + + + + True + False + + + True + False + + + True + True + 0 + + + + + True + False + + + gtk-add + False + True + True + True + True + + + + False + True + 0 + + + + + gtk-remove + False + True + True + True + True + + + + False + True + 1 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Clients</b> + True + + + + + + + False + True + + + + + True + False + 0 + none + + + True + False + + + True + False + True + + + True + False + 4 + 4 + 4 + 4 + + + True + False + + + True + False + 4 + + + True + False + 4 + True + + + Fold + False + True + True + True + Unpause all folding slots on this client. + image12 + top + + + + True + True + 0 + + + + + Pause + False + True + True + True + Pause all folding slots on this client. + image13 + top + + + + True + True + 1 + + + + + Finish + False + True + True + True + Finish all of this client's currently active work units then pause. + image24 + top + + + + True + True + 2 + + + + + False + True + 0 + + + + + True + False + 0 + + + True + False + 3 + 3 + 3 + 3 + + + True + True + GDK_EXPOSURE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON1_MOTION_MASK | GDK_BUTTON2_MOTION_MASK | GDK_BUTTON3_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_FOCUS_CHANGE_MASK | GDK_STRUCTURE_MASK | GDK_PROPERTY_CHANGE_MASK | GDK_VISIBILITY_NOTIFY_MASK | GDK_PROXIMITY_IN_MASK | GDK_PROXIMITY_OUT_MASK | GDK_SUBSTRUCTURE_MASK | GDK_SCROLL_MASK + discontinuous + folding_power_adjustment + 5 + 0 + False + + + + + + + + + + + True + False + <b>Folding Power</b> + True + + + + + True + True + 1 + + + + + Viewer + False + True + True + True + Open 3D Viewer for currently selected slot. + image3 + top + + + + False + True + 2 + + + + + False + True + 0 + + + + + True + False + 5 + + + True + False + 5 + + + True + False + 0 + + + True + False + 12 + + + True + False + + + True + False + 1 + 3 + <b>Name</b> + True + + + False + True + 0 + + + + + Anonymous + False + True + True + True + True + none + 0 + + + True + True + 1 + + + + + True + False + 1 + 3 + <b>Team</b> + True + + + False + True + 2 + + + + + 0 + False + True + True + True + True + none + 0 + + + False + True + 3 + + + + + + + + + True + False + <b>Identity</b> + True + + + + + False + True + 0 + + + + + True + False + + + True + True + 1 + + + + + 160 + True + False + 0 + + + True + False + 12 + + + True + False + 0 + Unknown + + + + + + + True + False + <b>Points Per Day</b> + True + + + + + False + True + 2 + + + + + + + False + True + 1 + + + + + True + False + 5 + + + True + True + 218 + True + + + True + True + 100 + True + + + True + False + 0 + + + True + False + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + True + slot_status_list + False + False + 0 + + + + + ID + + + 1 + + + 0 + + + + + + + autosize + Status + + + + 2 + 2 + 1 + + + + + + + Description + + + + 3 + + + + + + + + + + + + + + + True + False + <b>Folding Slots</b> + True + + + + + False + True + + + + + True + False + 0 + + + True + False + + + 200 + True + True + automatic + automatic + + + True + True + queue_list + False + False + 0 + + + + ID + + + + 1 + + + + + + + Status + + + + 3 + 2 + + + + + + + Progress + + + 100 + + + 4 + 5 + + + + + + + ETA + + + + 6 + + + + + + + Credit + + + + 7 + + + + + + + PRCG + + + + 8 + + + + + + + + + + + + + True + False + <b>Work Queue</b> + True + + + + + True + True + + + + + False + True + + + + + True + False + 0 + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + 4 + 4 + 4 + 4 + + + True + False + 20 + 2 + 4 + + + True + False + 0 + True + True + + + 1 + 2 + 11 + 12 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 15 + 16 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 17 + 18 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 2 + 3 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 3 + 4 + GTK_FILL + GTK_FILL + + + + + 22 + True + False + + + 1 + 2 + 4 + 5 + GTK_FILL + + + + + True + False + 1 + <b>FahCore</b> + True + + + 11 + 12 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Assigned</b> + True + + + 15 + 16 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Expiration</b> + True + + + 17 + 18 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Work Queue ID</b> + True + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Status</b> + True + + + 3 + 4 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Progress</b> + True + + + 4 + 5 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Work Server</b> + True + + + 18 + 19 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Collection Server</b> + True + + + 19 + 20 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Project</b> + True + + + 10 + 11 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Waiting On</b> + True + + + 12 + 13 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 12 + 13 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Attempts</b> + True + + + 13 + 14 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 13 + 14 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Next Attempt</b> + True + + + 14 + 15 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 14 + 15 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>ETA</b> + True + + + 5 + 6 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Base Credit</b> + True + + + 6 + 7 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Estimated PPD</b> + True + + + 8 + 9 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 8 + 9 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 6 + 7 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 5 + 6 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Timeout</b> + True + + + 16 + 17 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 16 + 17 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>PRCG</b> + True + + + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Folding Slot ID</b> + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Estimated TPF</b> + True + + + 9 + 10 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 9 + 10 + GTK_FILL + GTK_FILL + + + + + True + False + 1 + <b>Estimated Credit</b> + True + + + 7 + 8 + GTK_FILL + GTK_FILL + + + + + True + False + 0 + True + True + + + 1 + 2 + 7 + 8 + GTK_FILL + GTK_FILL + + + + + True + False + + + False + True + True + True + none + False + 0 + + + False + True + 0 + + + + + + + + 1 + 2 + 10 + 11 + GTK_FILL + + + + + True + False + + + False + True + True + True + none + False + 0 + + + False + False + 0 + + + + + + + + 1 + 2 + 19 + 20 + GTK_FILL + + + + + True + False + + + False + True + True + True + none + False + 0 + + + False + False + 0 + + + + + + + + 1 + 2 + 18 + 19 + GTK_FILL + + + + + + + + + + + + + True + False + <b>Selected Work Unit</b> + True + + + + + True + True + + + + + + + True + True + 2 + + + + + + + + + True + False + Status + + + False + + + + + True + True + automatic + automatic + + + True + False + queue + none + + + True + False + + + + + + + + + + 1 + + + + + True + False + System Info + + + 1 + False + + + + + True + False + + + True + False + + + True + False + 0 + + + True + False + 12 + + + True + False + 10 + + + True + False + 5 + + + Slot: + False + True + False + False + True + + + + False + True + 0 + + + + + True + False + slot_status_list + 0 + on + + + + + 0 + + + + + False + True + 1 + + + + + False + True + 0 + + + + + True + False + 5 + + + Unit: + False + True + False + False + True + + + + False + True + 0 + + + + + True + False + queue_list + 0 + on + + + + + 1 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + Warnings & Errors + False + True + False + False + True + + + + False + True + 2 + + + + + + + + + True + False + <b>Filters</b> + True + + + + + False + True + 0 + + + + + True + True + never + automatic + etched-in + + + True + True + False + word + 10 + False + log_buffer + + + + + True + True + 1 + + + + + True + False + 2 + + + Follow + False + True + False + False + True + True + + + False + True + end + 0 + + + + + gtk-copy + False + True + False + True + True + + + + False + False + end + 1 + + + + + gtk-clear + False + True + False + True + True + + + + False + False + end + 2 + + + + + gtk-refresh + False + True + False + True + True + + + + False + False + end + 3 + + + + + False + False + 2 + + + + + + + 2 + + + + + True + False + Log + + + 2 + False + + + + + + + + + True + False + <b>Selected Client: </b> + True + + + + + True + True + + + + + + + True + True + 1 + + + + + True + False + 2 + + + True + False + PPD is a smoothed estimate of total Points Per Day for all connected clients and slots. It may slightly overestimate your points because it does not account for pauses between work units. + 0 + 5 + + + True + True + 0 + + + + + True + False + Current UTC time. + 1 + 50 + + + True + True + end + 1 + + + + + False + True + end + 2 + + + + + + diff --git a/fah/FAHControl.py b/fah/FAHControl.py new file mode 100644 index 0000000..48d7b56 --- /dev/null +++ b/fah/FAHControl.py @@ -0,0 +1,1828 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 PARTIULAR 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 . +''' + +import sys +import os +import re +import traceback +import platform +import urllib + +import gtk +import glib +import pygtk +pygtk.require("2.0") +import pango +import webbrowser +import shlex +import subprocess +from wraplabel import WrapLabel + +# OSX integration +if sys.platform == 'darwin': + try: + from gtk_osxapplication import * + except: + import gtkosx_application + from gtkosx_application import Application as OSXApplication + from gtkosx_application import gtkosx_application_get_resource_path \ + as quartz_application_get_resource_path + +from fah import * +from fah.db import * +from fah.util import * + + +def set_tree_view_font(widget, font): + for widget in iterate_container(widget): + if isinstance(widget, gtk.TreeView): + widget.modify_font(font) + + +def append_tree_entry(model, path, iter, selection): + selection.append((path, iter)) + + +def get_tree_selection(tree_view): + selection = [] + tree_view.get_selection().selected_foreach(append_tree_entry, selection) + return selection + + +def remove_tree_selection(tree_view, callback = None): + for path, iter in get_tree_selection(tree_view): + if callback is not None: callback(path, iter) + tree_view.get_model().remove(iter) + + +def osx_version(): + """ returns osx version as tuple of integers """ + if sys.platform != 'darwin': return None + try: + ver = tuple([int(x) for x in platform.mac_ver()[0].split('.')]) + except Exception, e: + print e + darwin_ver = platform.release().split('.') + ver = (10, int(darwin_ver[0]) - 4, int(darwin_ver[1])) + return ver + + +def osx_add_GtkApplicationDelegate_methods(): + # GtkApplicationDelegate Category via PyObjC + def applicationShouldHandleReopen_hasVisibleWindows_(self, app, flag): + # reopen event or dock icon clicked + # restore windows if hidden + controller = FAHControl.instance + if controller is not None: controller.restore() + return True + try: + import objc + cls = objc.lookUpClass('GtkApplicationDelegate') + sig1 = '%s%s%s%s%s' % (objc._C_NSBOOL, objc._C_ID, objc._C_SEL, + objc._C_ID, objc._C_NSBOOL) + objc.classAddMethods(cls, [ + objc.selector( + applicationShouldHandleReopen_hasVisibleWindows_, + signature = sig1) + ]) + except Exception, e: print e + + +def osx_accel_window_close(accel_group, acceleratable, keyval, modifier): + acceleratable.hide() + return True + + +def osx_accel_window_minimize(accel_group, acceleratable, keyval, modifier): + acceleratable.iconify() + return True + + +def load_fahcontrol_db(): + db = Database(os.path.join(get_home_dir(), 'FAHControl.db')) + db.validate() + + return db + + +class FAHControl(SingleAppServer): + client_cols = 'name status status_color address'.split() + + # NOTE: These URLs are here rather than in the Glade file because the + # Glade editor strips the '&'s on save. Even if you use '&' the + # ampersands get striped when resaved. + team_stats_links = [ + ['Folding@home', 'http://fah-web.stanford.edu/cgi-bin/main.py' + '?qtype=teampage&teamnum=%(team)s'], + ['Extreme Overclocking', 'http://folding.extremeoverclocking.com/' + 'team_summary.php?t=%(team)s'], + ['Kakao Stats', 'http://kakaostats.com/tsum.php?t=%(team)s'], + ['[H]ard Folding', 'http://www.hardfolding.com/fh_stats/index.php' + '?pz=101&tnum=%(team)s'], + ['Custom', ''], + ] + donor_stats_links = [ + ['Folding@home', 'http://fah-web.stanford.edu/cgi-bin/main.py' + '?qtype=userpage&username=%(donor)s'], + ['Custom', ''], + ] + + folding_power_levels = ['Light', 'Medium', 'Full'] + + instance = None + + def __init__(self, glade = 'FAHControl.glade'): + SingleAppServer.__init__(self) + + self.__class__.instance = self + + # Windows needs this but OSX accelerators crash with this + if sys.platform != 'darwin': gtk.gdk.threads_init() + + # Vars + self.clients = {} + self.clientsByAddress = {} + self.active_client = None + self.client_is_online = False + self.selected_clients = set() + self.status_clear_time = None + self.window_visible = False + self.viewer = None + self.last_db_flush = 0 + self.last_clients_update = 0 + self.error_dialog = None + self.restore_dialogs = [] + self.last_clock = None + self.timer_id = None + self.folding_power_changing = False + + # Open database + try: + self.db = load_fahcontrol_db() + + except Exception, e: + print e + sys.exit(1) + + # OSX integration + if sys.platform == 'darwin': + self.osx_app = OSXApplication() + self.osx_app.set_use_quartz_accelerators(True) + self.osx_version = osx_version() + self.is_old_gtk = gtk.gtk_version < (2,24) + osx_add_GtkApplicationDelegate_methods() + + # URI hook + gtk.link_button_set_uri_hook(self.on_uri_hook, None) + + # Style + settings = gtk.settings_get_default() + self.system_theme = settings.get_property('gtk-theme-name') + if sys.platform == 'darwin': + # Load standard key bindings for Mac and disable mnemonics + resources = quartz_application_get_resource_path() + rcfile = os.path.join(resources, 'themes/Mac/gtk-2.0-key/gtkrc') + if os.path.exists(rcfile): gtk.rc_parse(rcfile) + rcfile = os.path.join(os.path.expanduser("~"), '.FAHClient/gtkrc') + if os.path.exists(rcfile): gtk.rc_parse(rcfile) + self.mono_font = pango.FontDescription('Monospace') + small_font = pango.FontDescription('Sans 8') + + # Default icon + gtk.window_set_default_icon(get_icon('small')) + + # Filter glade + if len(glade) < 1024: glade = open(glade, 'r').read() + glade = re.subn('class="GtkLabel" id="wlabel', + 'class="WrapLabel" id="wlabel', glade)[0] + if sys.platform == 'darwin': + # glade editor strips accel modifiers. add if missing + glade = re.subn('accelerator *key="comma" *signal', + 'accelerator key="comma" modifiers="GDK_META_MASK" signal', + glade)[0] + + # Build GUI + self.builder = builder = gtk.Builder() + try: + builder.add_from_string(glade) + except: + self.error('Failed to load UI file: %s' % glade) + sys.exit(1) + + # Main window + self.window = builder.get_object('window') + self.window.set_geometry_hints(None, 440, 256, -1, -1, 800, 512) + set_tree_view_font(self.window, self.mono_font) + self.status_bar = builder.get_object('status_bar') + self.ppd_label = builder.get_object('ppd_label') + self.time_label = builder.get_object('time_label') + + # Panes + self.panes = WidgetMap(self.window, 'paned') + for name, pane in self.panes.items(): + prop = name + '_position' + + # Load current value + if self.db.has(prop): + value = int(self.db.get(prop)) + if value and value < 100: value = 100 # mimimum if not hidden + pane.set_position(value) + + pane.connect('notify::position', self.store_property, prop) + + # Dialogs + self.preferences_dialog = builder.get_object('preferences_dialog') + self.client_dialog = builder.get_object('client_dialog') + self.options_dialog = builder.get_object('options_dialog') + self.core_options_dialog = builder.get_object('core_options_dialog') + self.slot_dialog = builder.get_object('slot_dialog') + self.about_dialog = builder.get_object('about_dialog') + self.configure_dialog = builder.get_object('configure_dialog') + # Note: The order of these dialogs is important since they are restored + # in this order. Child dialogs cannot be restored before their + # parents so they must be last. See restore() below. + self.dialogs = [ + self.about_dialog, self.preferences_dialog, self.client_dialog, + self.slot_dialog, self.options_dialog, self.core_options_dialog, + self.configure_dialog] + + # Dialog & window sizes + self.windows = { + 'preferences': self.preferences_dialog, + 'client': self.client_dialog, + 'options': self.options_dialog, + 'core_options': self.core_options_dialog, + 'slot': self.slot_dialog, + 'about': self.about_dialog, + 'main': self.window, + } + for name, win in self.windows.items(): + if self.db.has(name + '_width'): + width = int(self.db.get(name + '_width')) + else: width = -1 + + if self.db.has(name + '_height'): + height = int(self.db.get(name + '_height')) + else: height = -1 + + if name == 'main': + if 0 < width and width < 600: width = 600 + if 0 < height and height < 400: height = 400 + + if 100 <= width and 100 <= height: win.resize(width, height) + + win.connect('configure_event', self.store_dimensions, name) + + # Tool bar + builder.get_object('toolbar1').modify_font(small_font) + button = builder.get_object('viewer_button') + button.get_image().set_from_pixbuf(get_viewer_icon('small')) + + # About Dialog + icon = builder.get_object('about_icon') + icon.set_from_pixbuf(get_icon('medium')) + about_version = builder.get_object('about_version') + about_version.set_markup('Version: %s' % version) + + # Preferences + self.theme_list = self.load_themes() + widget = builder.get_object('theme_list') + for theme in self.theme_list: widget.append(theme) + + # Client list + self.client_hpane = builder.get_object('client_hpane') + self.client_notebook = builder.get_object('client_notebook') + self.client_config_notebook = \ + builder.get_object('client_config_notebook') + self.client_config_notebook.set_current_page(1) + self.client_tree = builder.get_object('client_tree_view') + self.client_list = builder.get_object('client_list') + self.client_label = builder.get_object('client_label') + self.client_config_label = builder.get_object('client_config_label') + self.client_tree.grab_focus() + selection = self.client_tree.get_selection() + selection.connect('changed', self.on_client_selection_changed) + + # Option lists + self.option_tree, self.option_list = self.connect_option_view('') + self.slot_option_tree, self.slot_option_list =\ + self.connect_option_view('slot_') + self.core_option_tree = builder.get_object('core_option_tree_view') + self.core_option_list = builder.get_object('core_option_list') + self.option_tree.get_selection().set_mode(gtk.SELECTION_MULTIPLE) + self.slot_option_tree.get_selection().set_mode(gtk.SELECTION_MULTIPLE) + self.core_option_tree.get_selection().set_mode(gtk.SELECTION_MULTIPLE) + + # Option dialog + self.option_name_entry = builder.get_object('option_name_entry') + self.option_value_entry = builder.get_object('option_value_entry') + + # Core option dialog + self.core_option_entry = builder.get_object('core_option_entry') + + # Folding power + self.folding_power_label = builder.get_object('folding_power_label') + self.folding_power = builder.get_object('folding_power_hscale') + for i in range(len(self.folding_power_levels)): + level = self.folding_power_levels[i] + markup = '%s' % level + self.folding_power.add_mark(i, gtk.POS_BOTTOM, markup) + + # User info + self.donor_info = builder.get_object('donor_info') + self.team_info = builder.get_object('team_info') + + # Client stats + self.client_ppd = builder.get_object('client_ppd') + + # Client config + self.core_priority_low = builder.get_object('core_priority_low') + + # Proxy + self.proxy_frame = builder.get_object('proxy_frame') + self.proxy_auth_frame = builder.get_object('proxy_auth_frame') + self.proxy_port = builder.get_object('proxy_port_entry') + + # Project + self.project_frame = builder.get_object('project_frame') + self.project_text = builder.get_object('project_text') + self.project_label = builder.get_object('project_label') + + # Slot lists + self.slot_status_tree = builder.get_object('slot_status_tree_view') + self.slot_status_tree.get_selection().set_mode(gtk.SELECTION_SINGLE) + self.slot_status_list = builder.get_object('slot_status_list') + self.slot_tree = builder.get_object('slot_tree_view') + self.slot_list = builder.get_object('slot_list') + self.slot_menu = builder.get_object('slot_menu') + self.idle_slot_item = builder.get_object('idle_slot_item') + view_slot_item = builder.get_object('view_slot_item') + view_slot_item.get_image().set_from_pixbuf(get_viewer_icon('tiny')) + + # Slot dialog + self.slot_type_cpu = builder.get_object('slot_type_cpu') + self.slot_type_gpu = builder.get_object('slot_type_gpu') + + # Queue list + self.queue_tree = builder.get_object('queue_tree') + self.queue_list = builder.get_object('queue_list') + + # Info + self.info = builder.get_object('info_alignment') + + # Log + self.log_view = builder.get_object('log_text_view') + self.log_view.modify_font(self.mono_font) + self.log = builder.get_object('log_buffer') + self.log.create_mark('end', self.log.get_end_iter()) + self.log_severity = builder.get_object('log_severity') + self.log_slot_enable = builder.get_object('log_slot_enable') + self.log_slot = builder.get_object('log_slot') + self.log_unit_enable = builder.get_object('log_unit_enable') + self.log_unit = builder.get_object('log_unit') + self.log_follow = builder.get_object('log_follow') + + # Widget maps + self.client_entries = WidgetMap(self.client_dialog, '_entry') + self.client_option_widgets = \ + WidgetMap(self.client_config_notebook, '_option') + self.client_config_tabs = WidgetMap(self.client_config_notebook, '_tab') + self.slot_option_widgets = WidgetMap(self.slot_dialog, '_option') + roots = [self.window, self.client_dialog] + self.preference_widgets = WidgetMap(self.preferences_dialog, '_pref') + widget = builder.get_object('advanced_unit_frame') + self.queue_widgets = WidgetMap(widget, None, 'queue_') + + # Stats prefs + self.donor_stats_pref = self.preference_widgets['donor_stats'] + self.team_stats_pref = self.preference_widgets['team_stats'] + self.donor_stats_list = builder.get_object('donor_stats_links_list') + map(self.donor_stats_list.append, self.donor_stats_links) + self.team_stats_list = builder.get_object('team_stats_links_list') + map(self.team_stats_list.append, self.team_stats_links) + + # OSX integration + if sys.platform == 'darwin': + # Setup dock menu + self.osx_menu = builder.get_object('osx_tray_menu') + if self.is_old_gtk: + self.osx_app.set_dock_menu(self.osx_menu) + else: + self.osx_create_dock_menu(self.osx_menu) + + # Create application menu + self.osx_menubar = gtk.MenuBar() + self.osx_menubar.show_all() + self.osx_app.set_menu_bar(self.osx_menubar) + if self.is_old_gtk: + self.osx_group = self.osx_app.add_app_menu_group() + self.osx_menu.foreach(self.osx_add_to_menu) + else: + self.osx_create_app_menu(self.osx_menu) + + # Hide some widgets in OSX + for name in ['ui_pref_frame', 'theme_pref', 'theme_label']: + widget = builder.get_object(name) + widget.set_property('visible', False) + + if self.osx_version >= (10,7): + # remove broken window resize grip + self.status_bar.set_property('has-resize-grip', False) + self.time_label.set_property('xpad', 6) + else: + self.time_label.set_property('xpad', 2) + + # Validators + EntryValidator(self, self.client_option_widgets['user'], r'^[!-~]+$', + 'User name must be a non-empty string containing only ' + 'alphanumeric characters, standard punctuation and ' + 'no white-space.') + + self.passkey_validator = \ + PasswordValidator(self, builder.get_object('passkey_option'), + builder.get_object('passkey_reenter'), + builder.get_object('passkey_valid_image'), + builder.get_object('passkey_valid_text'), + r'^[0-9a-fA-F]{0,32}$', 'The passkey must be a ' + '32 character hexadecimal string.') + + self.password_validator = \ + PasswordValidator(self, builder.get_object('password_option'), + builder.get_object('password_reenter'), + builder.get_object('password_valid_image'), + builder.get_object('password_valid_text')) + + self.proxy_pass_validator = \ + PasswordValidator(self, builder.get_object('proxy_pass_option'), + builder.get_object('proxy_pass_reenter'), + builder.get_object('proxy_pass_valid_image'), + builder.get_object('proxy_pass_valid_text')) + + # Fix client port default + port = builder.get_object('port_adjustment') + port.set_value(36330) + + # Connect signals + builder.connect_signals(self) + self.builder = builder = None # Discard builder + + self.client_dialog.client = None + + # Load + self.preferences_load() + self.load_clients() + + # If we don't have any clients add the default client + if not len(self.clients): + client = Client(self, 'local', '127.0.0.1', 36330, '') + self.add_client(client) + self.save_clients() + + # Select first client + self.select_first_client() + + # Start client notebook deactivated + self.deactivate_client() + + self.window.connect('notify::is-active', self.on_window_is_active) + + + # Main loop + def run(self): + self.quitting = False + + if sys.platform != 'darwin': + self.check_clients() # Slightly faster load? + + self.restore() + + self.set_update_timer_interval(100) + + if sys.platform == 'darwin': + # reduce updates to 2Hz after 30 seconds + gobject.timeout_add(30000, self.set_update_timer_interval, 500) + + # OSX signals + self.osx_app.connect('NSApplicationDidBecomeActive', + self.app_did_become_active) + self.osx_app.connect('NSApplicationWillTerminate', + self.app_will_terminate) + self.osx_app.connect('NSApplicationBlockTermination', + self.app_should_block_terminate) + + self.osx_app.ready() + + if self.osx_version >= (10,7) and self.osx_version < (10,9): + self.osx_window_focus_workaround() + + try: + # add cmd-w and cmd-m to window + # cmd-w would need to be same as cancel for dialogs + ag = gtk.AccelGroup() + self.window_accel_group = ag + key, mod = gtk.accelerator_parse("w") + ag.connect_group(key, mod, gtk.ACCEL_VISIBLE, + osx_accel_window_close) + key, mod = gtk.accelerator_parse("m") + ag.connect_group(key, mod, gtk.ACCEL_VISIBLE, + osx_accel_window_minimize) + self.window.add_accel_group(ag) + except Exception, e: print e + + # Windows needs this but OSX accelerators crash with this + if sys.platform != 'darwin': gtk.gdk.threads_enter() + gtk.main() + if sys.platform != 'darwin': gtk.gdk.threads_leave() + + + # Util + def osx_add_to_menu(self, widget): + if isinstance(widget, gtk.SeparatorMenuItem): + self.osx_group = self.osx_app.add_app_menu_group() + + elif isinstance(widget, gtk.MenuItem): + name = widget.child.get_text() + + def activate_item(widget, target): + target.emit('activate') + + item = gtk.MenuItem(name) + item.show() + item.connect('activate', activate_item, widget) + self.osx_app.add_app_menu_item(self.osx_group, item) + + + def osx_create_app_menu(self, widgets): + i = 0 + for widget in widgets: + if not isinstance(widget, gtk.SeparatorMenuItem): + def activate_item(widget, target): + target.emit('activate') + label = widget.get_label() + item = gtk.MenuItem(label) + item.show() + item.connect('activate', activate_item, widget) + self.osx_app.insert_app_menu_item(widget, i) + i += 1 + + + def osx_create_dock_menu(self, widgets): + menu = gtk.Menu() + for widget in widgets: + if isinstance(widget, gtk.SeparatorMenuItem): + item = gtk.SeparatorMenuItem() + else: + def activate_item(widget, target): + target.emit('activate') + label = widget.get_label() + item = gtk.MenuItem(label) + item.connect('activate', activate_item, widget) + menu.append(item) + menu.show_all() + self.osx_app.set_dock_menu(menu) + # retain menu, or it won't work + self.osx_dock_menu = menu + + + def osx_window_focus_workaround(self): + # osx 10.7+, part of Trac #793, not resolved by gtk 2.24.10 + # only thing that works is clicking FAHControl icon in Dock + # this is the equivalent + # must be backgrounded so app can process reopen event + # and not deadlock waiting for osascript + cmd = ['/usr/bin/osascript', '-e', 'tell app "FAHControl" to reopen'] + try: + subprocess.Popen(cmd) + except Exception, e: + print e, ':', ' '.join(cmd) + + + def connect_option_cell(self, name, model, col): + cell = self.builder.get_object(name) + cell.connect('edited', self.on_option_edit, model, col) + + + def connect_option_view(self, prefix): + tree = self.builder.get_object(prefix + 'option_tree_view') + model = self.builder.get_object(prefix + 'option_list') + + self.connect_option_cell(prefix + 'option_name_cell', model, 0) + self.connect_option_cell(prefix + 'option_value_cell', model, 1) + + return tree, model + + # Timer functions + def set_update_timer_interval(self, interval = None): + if self.timer_id is not None: + glib.source_remove(self.timer_id) + self.timer_id = None + if interval and int(interval) > 0: + self.timer_id = gobject.timeout_add(interval, self.on_timer) + return False # stop if timer callback + + + def check_clients(self): + # Make sure there is a selected client + if not len(self.selected_clients): self.select_first_client() + + # Update clients + for client in self.clients.values(): client.update(self) + + # (De)activate client + if self.active_client: + if not self.active_client.is_updated(): + self.deactivate_client() + + else: self.activate_client() # Try to activate + + # Check if active and online + if self.active_client and self.active_client.is_online(): + self.client_notebook.set_sensitive(True) + else: self.client_notebook.set_sensitive(False) + + # Update status bar + if self.status_clear_time and self.status_clear_time < time.time(): + self.status_bar.pop(0) + self.status_clear_time = None + + + def on_timer(self): + try: + # Update clock + now = time.time() + if self.last_clock and self.last_clock != now: + s = time.strftime('UTC: %Y-%m-%dT%H:%M:%SZ', time.gmtime()) + self.time_label.set_text(s) + + # Update ppd + ppd = 0 + for client in self.clients.values(): ppd += client.ppd + label = 'Total Estimated Points Per Day: ' + if int(ppd): label += '%d' % int(ppd) + else: label += 'Unknown' + self.ppd_label.set_text(label) + + self.last_clock = now + + self.check_clients() + self.viewer_check() + + if self.exit_requested.isSet(): + self.quit() + + if self.ping.isSet(): + self.ping.clear() + self.restore() + + if 2.5 < now - self.last_db_flush: + self.last_db_flush = time.time() + self.db.flush_queued() + + except: + traceback.print_exc() + + return True # Keep running + + + # Actions + def quit(self): + if self.quitting: return + self.quitting = True + + gtk.main_quit() + + self.viewer_close() + + self.set_update_timer_interval(0) + + for client in self.clients.values(): client.close() + + try: + self.db.flush_queued() + except Exception, e: print e + + self.shutdown() # Shutdown SingleAppServer + + + def set_status(self, text): + self.status_bar.pop(0) + self.status_bar.push(0, text) + self.status_clear_time = time.time() + 10 + + + # OSX signals + def app_did_become_active(self, app): + self.restore() + + + def app_will_terminate(self, app): + # Calxalot: Probably don't need both this and should_block, but I can + # imagine the app quitting without asking. Note that if we reach this, + # we exit after quit() and never return to run() + self.quit() + + + def app_should_block_terminate(self, app): + self.quit() + return False + + + # Preference methods + def load_theme(self, theme): + for name, rc in self.theme_list: + if theme == name: + print 'Loading theme', theme + + settings = gtk.settings_get_default() + + if rc is None: + settings.set_property('gtk-theme-name', self.system_theme) + gtk.rc_set_default_files([]) + else: + settings.set_property('gtk-theme-name', theme) + gtk.rc_set_default_files([rc]) + + gtk.rc_reparse_all_for_settings(settings, True) + gtk.rc_reset_styles(settings) + + break + + + def load_themes(self): + paths = get_theme_dirs() + unique = set() + list = [] + default_rc = None + + for path in paths: + if not os.path.exists(path): continue + for name in os.listdir(path): + if name in unique: continue + rc = path + '/' + name + '/gtk-2.0/gtkrc' + if os.path.exists(rc): + unique.add(name) + if sys.platform == 'win32' and \ + name == 'Windows-Default' and default_rc is None: + default_rc = rc + else: list.append([name, rc]) + + list.sort(key = lambda x: x[0]) + + return [['Default', default_rc]] + list + + + def get_pref(self, name): + widget = self.preference_widgets[name] + return get_widget_str_value(widget) + + + def get_viz_render_mode(self): + value = self.get_pref('viz_render_mode') + + if value == 'Space Filling': return 1 + if value == 'Ball And Stick': return 2 + if value == 'Stick': return 3 + if value == 'Advanced Space Filling': return 4 + if value == 'Advanced Ball And Stick': return 5 + if value == 'Advanced Stick': return 6 + if value == 'Cartoon Space Filling': return 7 + if value == 'Cartoon Ball And Stick': return 8 + + return 1 + + + def preferences_set(self): + # URLs + for pref in ['donor', 'team']: + entry = self.preference_widgets[pref + '_stats'] + combo = self.preference_widgets[pref + '_stats_link'] + button = getattr(self, pref + '_info') + + link = self.get_pref(pref + '_stats_link') + custom_uri = self.get_pref(pref + '_stats') + entry.set_text(custom_uri) + + if link == 'Custom': button.set_uri(custom_uri) + else: + model = combo.get_model() + iter = model.get_iter_first() + while iter is not None: + if model.get_value(iter, 0) == link: + combo.set_active_iter(iter) + button.set_uri(model.get_value(iter, 1)) + break + iter = model.iter_next(iter) + + + def preferences_load(self): + # Preferences dialog + for name, widget in self.preference_widgets.items(): + value = None + + if self.db.has(name): + value = self.db.get(name) + if name == 'theme': self.load_theme(value) + + elif name == 'theme': value = 'Default' + elif name == 'viz_command': value = 'FAHViewer' + elif name == 'viz_fullscreen': value = 'False' + elif name == 'viz_width': value = '800' + elif name == 'viz_height': value = '600' + elif name == 'viz_render_mode': value = 'Advanced Space Filling' + elif name == 'viz_cycle_snapshots': value = 'True' + elif name == 'donor_stats': value = '' + elif name == 'team_stats': value = '' + elif name == 'donor_stats_link': value = 'Folding@home' + elif name == 'team_stats_link': value = 'Folding@home' + else: raise Exception, 'Unknown preference widget "%s"' % name + + if value is not None: set_widget_str_value(widget, value) + + # Update + self.preferences_set() + + + def preferences_dialog_init(self): + for name, widget in self.preference_widgets.items(): + if self.db.has(name): + value = self.db.get(name) + set_widget_str_value(widget, value) + + for pref in ['donor', 'team']: + entry = self.preference_widgets[pref + '_stats'] + combo = self.preference_widgets[pref + '_stats_link'] + entry.set_sensitive(combo.get_active_text() == 'Custom') + + + def preferences_save(self): + for name, widget in self.preference_widgets.items(): + value = get_widget_str_value(widget) + if value is None: self.db.clear(name, False) + else: self.db.set(name, value, False) + + self.db.commit() + + + # Client methods + def select_first_client(self): + iter = self.client_list.get_iter_first() + if iter: self.client_tree.get_selection().select_iter(iter) + + + def activate_client(self): + if self.active_client: return + if not len(self.selected_clients): return + + # Check that all selected clients are active + for client in self.selected_clients: + if not client.is_updated(): return + + # Activate client(s) + for client in self.selected_clients: + self.active_client = client + self.active_client.update_status_ui(self) + break # TODO only supporting one active client right now + + self.last_clients_update = 0 + self.update_client_status() + + + def deactivate_client(self): + if self.active_client: + self.active_client.reset_status_ui(self) + self.active_client = None + + self.client_label.set_markup('Client: inactive') + self.update_client_status() + + + def update_client_status(self): + if len(self.selected_clients): + client = list(self.selected_clients)[0] + + text = 'Client: %s' % client.name + status = client.get_status() + color = status_to_color(status) + text += ' %s' % (color, status) + + if self.active_client and self.active_client.config.get_running(): + text += ' Running' + else: text += ' Inactive' + + else: text = 'Client: no client selected' + + self.client_label.set_markup(text) + if self.client_dialog.client is not None: + self.client_config_label.set_markup(text) + + + def save_clients(self): + self.db.delete('clients') + + for client in self.clients.values(): + client.save(self.db) + + self.db.commit() + + + def update_client_list(self): + # update all rows, whether selected/active or not + try: + iter = self.client_list.get_iter_first() + while iter is not None: + name = self.client_list.get_value(iter, 0) + client = self.clients.get(name) + if client is not None: + path = self.client_list.get_path(iter) + row = client.get_row(self) + for i in range(len(row)): + self.client_list.set(iter, i, row[i]) + self.client_list.row_changed(path, iter) + iter = self.client_list.iter_next(iter) + except Exception, e: print e + return False # no timer repeat + + + def resort_client_list(self): + ibyname_old = {} + iter = self.client_list.get_iter_first() + i = 0 + while iter is not None: + name = self.client_list.get_value(iter, 0) + ibyname_old[name] = i + iter = self.client_list.iter_next(iter) + i += 1 + new_order = [] + for client in self.sorted_clients(): + name = client.name + i = ibyname_old.get(name) + if i is None: + print 'unable to resort client list: unknown name %s' % name + return + new_order.append(i) + self.client_list.reorder(new_order) + return False # don't repeat if timer callback + + + def sorted_clients(self, unsorted_clients = None): + if unsorted_clients is None: + unsorted_clients = self.clients.values() + + # pre-sort by client.name + clients = sorted(unsorted_clients, key=lambda c: c.name) + + # sort local clients first + group0 = [] # client "local" (should only be one, currently) + group1 = [] # other is_local clients (should not be any, currently) + group2 = [] # localhost clients starting with "local" + group3 = [] # other localhost clients + group4 = [] # remote clients (and any local referenced by host name) + + for client in clients: + is_local = client.is_local() + is_local_addr = client.address in ['localhost','127.0.0.1'] + + if is_local and client.name == 'local': + group0.append(client) + elif is_local: + group1.append(client) + elif is_local_addr and client.name.startswith('local'): + group2.append(client) + elif is_local_addr: + group3.append(client) + else: + group4.append(client) + + return group0 + group1 + group2 + group3 + group4 + + + def load_clients(self): + clients = [] + for row in self.db.select('clients', orderby = 'name'): + client = Client(self, + row['name'], row['address'], int(row['port']), row['password']) + clients.append(client) + + for client in self.sorted_clients(clients): + self.add_client(client) + + + def clear_clients(self): + for client in self.clients: client.close() + self.clients.clear() + self.clientsByName.clear() + self.client_list.clear() + + + def save_client_config(self, client): + try: + options, slots = client.config.get_changes(self) + if not (options or slots != ([], [], [])): return True + + # Validate passkey + if not self.passkey_validator.is_good(): + raise Exception, 'Passkey is invalid' + + # Validate password + if not self.password_validator.is_good(): + raise Exception, 'Client password is invalid' + + # Validate proxy password + if not self.proxy_pass_validator.is_good(): + raise Exception, 'Proxy password is invalid' + + self.deactivate_client() + + self.set_status('Saving...') + + for client in self.selected_clients: + # TODO check returned error count + client.save_config(options, slots) + client.update(self) # Slightly faster save + + # Update password if changed on client + if 'password' in options: + client.set_password(options['password']) + if 'password!' in options: client.set_password('') + + return True + + except Exception, msg: + self.set_status('Save Failed') + self.error(msg) + return False + + + def check_duplicate_client_name(self, name): + if name in self.clients: + self.error('Client with name "%s" is already in client list' % name) + return True + return False + + + def check_duplicate_client_address(self, address): + if address in self.clientsByAddress: + self.error('Client with address "%s" is already in client list' % + address) + return True + return False + + + def update_client(self, client, name, address, port, password): + reload = False + old_name = client.name + + # Check for duplicates + if client.name != name: + if self.check_duplicate_client_name(name): return False + + new_address = Client.make_address(address, port) + if client.get_address() != new_address: + if self.check_duplicate_client_address(new_address): return False + + # Update + if client.name != name: + del self.clients[client.name] + client.name = name + self.clients[name] = client + + if client.get_address() != new_address: + del self.clientsByAddress[client.get_address()] + client.set_address(address, port) + self.clientsByAddress[new_address] = client + reload = True + + if client.get_password() != password: + client.set_password(password) + reload = True + + # Update client row + row = client.get_row(self) + + # Find client in client_list + iter = self.client_list.get_iter_first() + while iter is not None: + if old_name == self.client_list.get_value(iter, 0): + path = self.client_list.get_path(iter) + + for i in range(len(row)): + self.client_list.set(iter, i, row[i]) + self.client_list.row_changed(path, iter) + + break + + iter = self.client_list.iter_next(iter) + + # Reload + if reload: + client.reconnect() + self.deactivate_client() + + return True + + + def add_client(self, client): + name = client.name + address = client.get_address() + + # Check for duplicates + if self.check_duplicate_client_name(name): return False + if self.check_duplicate_client_address(address): return False + + # Add it + self.clients[name] = client + self.clientsByAddress[address] = client + self.client_list.append(client.get_row(self)) + + return True + + + def remove_client(self, client): + client.close() + del self.clients[client.name] + del self.clientsByAddress[client.get_address()] + if client is self.active_client: self.active_client = None + + + def remove_client_path(self, path, iter): + name = self.client_list.get(iter, 0)[0] + self.remove_client(self.clients[name]) + + + def get_selected_clients(self): + selection = get_tree_selection(self.client_tree) + names = map(lambda item: self.client_list.get(item[1], 0)[0], selection) + return set(map(self.clients.get, names)) + + + def edit_client(self, client): + self.client_dialog.client = client + self.update_client_status() + client.load_dialog(self) + + if self.active_client and self.active_client.is_online(): + for name, widget in self.client_config_tabs.items(): widget.show() + self.client_dialog.config_hidden = False + + else: + for name, widget in self.client_config_tabs.items(): + if name != 'connection': widget.hide() + self.client_dialog.config_hidden = True + + self.open_dialog(self.client_dialog) + + + def open_dialog(self, dialog): + # Hack to make WrapLabel work + dims = dialog.get_size() + dialog.resize(dims[0] + 1, dims[1] + 1) + dialog.present() + dialog.resize(*dims) + + + # Slot methods + def get_selected_slot_ids(self): + selection = get_tree_selection(self.slot_status_tree) + ids = map(lambda x: int(self.slot_status_list.get(x[1], 0)[0]), + selection) + return ids + + + # Window methods + def get_visible_dialogs(self): + dialogs = [] + for dialog in self.dialogs: + if dialog.flags() & gtk.MAPPED: + dialogs.append(dialog) + + return dialogs + + + def hide_all_windows(self): + self.restore_dialogs = self.get_visible_dialogs() + for dialog in self.restore_dialogs: dialog.hide() + self.window.hide() + self.window_visible = False + + + def restore(self): + self.window.present() + self.window.deiconify() + self.window_visible = True + + if sys.platform == 'darwin': + # restore osx minimized dialogs + for dialog in self.get_visible_dialogs(): + dialog.present() + + # Restore dialogs + for dialog in self.restore_dialogs: dialog.present() + self.restore_dialogs = [] + + + # Messages + def close_error_dialog(self, dialog, id = None, data = None): + dialog.destroy() + self.error_dialog = None + + + def error(self, message, buttons = gtk.BUTTONS_OK, on_response = None, + on_response_data = None): + message = str(message) + + # log to terminal window + if sys.exc_info()[2]: traceback.print_exc() + print 'ERROR:', message + + # Don't open more than one + if self.error_dialog is not None: return False + + if sys.exc_info()[1]: message += '\n%s' % sys.exc_info()[1] + + # create an error message dialog and display modally to the user + dialog = \ + gtk.MessageDialog(None, + gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, + gtk.MESSAGE_ERROR, buttons, message) + + dialog.connect('close', self.close_error_dialog) + if on_response is not None: + dialog.connect('response', on_response, on_response_data) + dialog.connect('response', self.close_error_dialog) + dialog.set_transient_for(self.window) + + self.error_dialog = dialog + dialog.show() + + return True + + + # Property signals + def store_property(self, widget, property, name): + self.db.set(name, widget.get_property(property.name), queue = True) + + + def store_dimensions(self, widget, event, name): + x, y, width, height = widget.get_allocation() + if 0 <= width and 0 <= height: + self.db.set(name + '_width', width, queue = True); + self.db.set(name + '_height', height, queue = True); + + + # Action signals + def on_quit(self, widget, data = None): + self.quit() + + + def on_preferences(self, widget, data = None): + # OSX crashes with out this, but it's a good idea anyway + if not self.window_visible: self.restore() + + if self.get_visible_dialogs(): return + + self.preferences_dialog_init() + self.preferences_dialog.present() + + + def viewer_check(self): + if self.viewer is not None and self.viewer.poll() is not None: + self.viewer = None # Viewer exited + + + def viewer_close(self): + if self.viewer is not None: + try: + self.viewer.kill() + self.viewer.wait() # Note: This could cause a hang kill() fails + except: pass + + self.viewer = None + + + def on_viewer(self, widget, data = None): + self.viewer_close() + + # Get preferences + command = self.get_pref('viz_command') + fullscreen = parse_bool(self.get_pref('viz_fullscreen')) + width = self.get_pref('viz_width') + height = self.get_pref('viz_height') + mode = self.get_viz_render_mode() + cycle_snapshots = self.get_pref('viz_cycle_snapshots') + + # Create command line + cmd = shlex.split(command) + + if not (len(cmd) and len(cmd[0])): cmd = ['FAHViewer'] + + if fullscreen: cmd.append('--fullscreen') + cmd.append('--width=' + width) + cmd.append('--height=' + height) + cmd.append('--mode=%d' % mode) + cmd.append('--cycle-snapshots=' + cycle_snapshots) + + if self.active_client and self.active_client.is_online(): + address = self.active_client.address + port = self.active_client.port + cmd.append('--connect=%s:%d' % (address, port)) + + password = self.active_client.password + if password: cmd.append('--password="%s"' % password) + + slot = self.active_client.get_selected_slot(self) + if slot is not None: cmd.append('--slot=%d' % slot.id) + + debug = True + if debug: print cmd + + try: + self.viewer = subprocess.Popen(cmd, cwd = get_home_dir()) + except Exception, e: + self.error('Failed to launch viewer with command:\n\n' + + ' '.join(cmd)) + + + def on_about(self, widget, data = None): + # OSX crashes with out this, but it's a good idea anyway + if not self.window_visible: self.restore() + + if self.get_visible_dialogs(): return False + + self.open_dialog(self.about_dialog) + + + def on_about_close(self, widget, data = None): + self.about_dialog.hide() + return True # Cancel event + + + # Window signals + def on_window_destroy(self, widget, data = None): + if sys.platform == 'darwin': + self.hide_all_windows() + return True # prevent destroy + self.quit() + + + def on_window_delete(self, widget, event, data = None): + return self.on_window_destroy(widget) + + + def on_window_is_active(self, window, *args): + try: + if window.is_active(): self.update_client_list() + except Exception, e: print e + + + # Preferences signals + def on_preferences_ok(self, widget, data = None): + self.preferences_set() + self.preferences_save() + self.preferences_dialog.hide() + + + def on_preferences_cancel(self, widget, data = None): + # Reset theme + if self.db.has('theme'): current_theme = self.db.get('theme') + else: current_theme = 'Default' + if self.get_pref('theme') != current_theme: + self.load_theme(current_theme) + + # FIXME workaround for defect: get_pref takes from dialog widgets + self.preferences_dialog_init() + self.preferences_dialog.hide() + return True # Cancel event + + + def on_theme_pref_changed(self, widget, data = None): + iter = widget.get_active_iter() + theme = widget.get_model().get_value(iter, 0) + self.load_theme(theme) + + + # Proxy signals + def on_proxy_enable_toggled(self, widget, data = None): + self.proxy_frame.set_sensitive(widget.get_active()) + self.proxy_auth_frame.set_sensitive(widget.get_active()) + + + # Client list signals + def on_client_add_button_clicked(self, widget, data = None): + if self.get_visible_dialogs(): return + + # Make client name + for i in xrange(sys.maxint): + name = 'client%d' % i + if not name in self.clients: break + + self.client_entries['name'].set_text(name) + + self.client_dialog.client = None + text = 'Configure New Client Connection' + self.client_config_label.set_markup(text) + + # Reset dialog + self.client_entries['name'].set_sensitive(True) + self.client_entries['address'].set_sensitive(True) + for name, widget in self.client_config_tabs.items(): + if name != 'connection': widget.hide() + + self.open_dialog(self.client_dialog) + + + def on_client_remove_button_clicked(self, widget, data = None): + remove_tree_selection(self.client_tree, self.remove_client_path) + self.save_clients() + + + def on_configure(self, widget, data = None): + if self.get_visible_dialogs(): return + + selection = get_tree_selection(self.client_tree) + if not len(selection): return + name = self.client_list.get(selection[0][1], 0)[0] + client = self.clients[name] + self.edit_client(client) + + + def on_client_tree_view_row_activated(self, widget, path, col, data = None): + if self.get_visible_dialogs(): return + + iter = self.client_list.get_iter(path) + name = self.client_list.get(iter, 0)[0] + client = self.clients[name] + self.edit_client(client) + + + def on_client_selection_changed(self, widget, data = None): + self.deactivate_client() + + self.selected_clients = self.get_selected_clients() + + # Modify selection + for client in self.clients.values(): + client.set_selected(client in self.selected_clients) + + self.update_client_status() + + if len(self.clients): self.activate_client() + + self.update_client_list() + gobject.timeout_add(5000, self.update_client_list) + + # temporarily increase update rate for faster switch + if sys.platform == 'darwin': + self.set_update_timer_interval(100) + gobject.timeout_add(10000, self.set_update_timer_interval, 500) + + + # Client options list signals + def on_client_options_add_button_clicked(self, widget, data = None): + self.option_present(self.option_list, self.client_dialog) + + + def on_client_options_remove_button_clicked(self, widget, data = None): + remove_tree_selection(self.option_tree) + + + # Core options list signals + def on_core_options_add_button_clicked(self, widget, data = None): + self.core_option_entry.set_text('') + self.core_options_dialog.set_transient_for(self.client_dialog) + self.core_options_dialog.present() + + + def on_core_options_remove_button_clicked(self, widget, data = None): + remove_tree_selection(self.core_option_tree) + + + def on_core_options_ok(self, widget, data = None): + option = self.core_option_entry.get_text().strip() + if not option: + self.error('Invalid option') + return + + self.core_option_list.append([option]) + self.core_options_dialog.hide() + + + def on_core_options_cancel(self, widget, data = None): + self.core_options_dialog.hide() + return True # Cancel event + + + # Client dialog signals + def on_client_ok(self, widget, data = None): + name = self.client_entries['name'].get_text() + address = self.client_entries['address'].get_text() + port = self.client_entries['port'].get_text() + password = self.client_entries['password'].get_text() + + if not name: + self.error('Invalid name') + return + + if not address: + self.error('Invalid address') + return + + if not port: + self.error('Invalid port') + return + + port = int(port) + + if self.client_dialog.client: # Existing client + client = self.client_dialog.client + config_hidden = self.client_dialog.config_hidden + + # Save client options + if config_hidden or self.save_client_config(client): + # Save client connection + if self.update_client(client, name, address, port, password): + self.save_clients() + self.client_dialog.hide() + self.resort_client_list() + + else: # New client + client = Client(self, name, address, port, password) + if self.add_client(client): + self.save_clients() + self.client_dialog.hide() + self.resort_client_list() + + + def on_client_cancel(self, widget, data = None): + self.client_dialog.hide() + return True # Cancel event + + + # Folding power signals + def on_fold_button_clicked(self, widget, data = None): + self.active_client.unpause() + + + def on_pause_button_clicked(self, widget, data = None): + self.active_client.pause() + + + def on_finish_button_clicked(self, widget, data = None): + self.active_client.finish() + + + def on_folding_power_change_value(self, widget, scroll, value, data = None): + # Clamp slider to integer increments + value = int(round(value)) + if self.folding_power.get_value() != value: + self.folding_power.set_value(value) + return True + + + def on_folding_power_value_changed(self, widget, data = None): + if not self.folding_power_changing and self.active_client: + power = self.folding_power_levels[int(widget.get_value())] + self.active_client.set_power(power) + + + def on_folding_power_button_press(self, widget, data = None): + self.folding_power_changing = True + + + def on_folding_power_button_release(self, widget, data = None): + if self.active_client: + power = self.folding_power_levels[int(widget.get_value())] + self.active_client.set_power(power) + + self.folding_power_changing = False + + + # User status signals + def on_team_stats_link_changed(self, widget, data = None): + iter = widget.get_active_iter() + model = widget.get_model() + text = model.get_value(iter, 0) + self.team_stats_pref.set_sensitive(text == 'Custom') + + + def on_donor_stats_link_changed(self, widget, data = None): + iter = widget.get_active_iter() + model = widget.get_model() + text = model.get_value(iter, 0) + self.donor_stats_pref.set_sensitive(text == 'Custom') + + + # Queue tree signals + def on_queue_tree_cursor_changed(self, widget, data = None): + if self.active_client: + self.active_client.config.select_queue_slot(self) + + + # Slot list signals + def on_slot_add_button_clicked(self, widget, data = None): + SlotConfig.clear_dialog(self) + self.slot_dialog.slot_iter = None + self.open_dialog(self.slot_dialog) + + + def on_slot_remove_button_clicked(self, widget, data = None): + remove_tree_selection(self.slot_tree) + + + def on_slot_edit_button_clicked(self, widget, data = None): + selection = get_tree_selection(self.slot_tree) + + if selection: + iter = selection[0][1] + slot = self.slot_list.get(iter, 2)[0].slot + slot.load_dialog(self) + self.slot_dialog.slot_iter = iter + self.open_dialog(self.slot_dialog) + + + def on_slot_tree_view_row_activated(self, widget, path, col, data = None): + iter = self.slot_list.get_iter(path) + slot = self.slot_list.get(iter, 2)[0].slot + slot.load_dialog(self) + self.slot_dialog.slot_iter = iter + self.open_dialog(self.slot_dialog) + + + + # Slot dialog signals + def on_slot_ok(self, widget, data = None): + if self.slot_dialog.slot_iter is None: + slot = SlotConfig() + slot.save_dialog(self) + slot.add_to_ui(self) # Add to list + + else: + iter = self.slot_dialog.slot_iter + id, type, wrapper = self.slot_list.get(iter, 0, 1, 2) + slot = wrapper.slot + slot.save_dialog(self) + if slot.type != type: self.slot_list.set(iter, 1, slot.type) + + self.slot_dialog.hide() + + + def on_slot_cancel(self, widget, data = None): + self.slot_dialog.hide() + return True # Cancel event + + + # Slot options list signals + def on_slot_options_add_button_clicked(self, widget, data = None): + self.option_present(self.slot_option_list, self.slot_dialog) + + + def on_slot_options_remove_button_clicked(self, widget, data = None): + remove_tree_selection(self.slot_option_tree) + + + # Options edit + def check_option_name(self, name): + if not re.match(r'^[a-zA-Z][\w-]*$', name): + self.error('Invalid option name.') + return False + return True + + + def on_option_edit(self, cell, path, text, model, column): + if column == 0 and not self.check_option_name(text): return + if model[path][column] != text: model[path][column] = text + + + def on_core_option_cell_edited(self, cell, path, text, data = None): + if not text: + self.error('Invalid option') + return + if self.core_option_list[path][0] != text: + self.core_option_list[path][0] = text + + + # Options dialog signals + def option_present(self, model, parent): + self.option_name_entry.set_text('') + self.option_value_entry.set_text('') + self.options_dialog.option_model = model + self.options_dialog.set_transient_for(parent) + self.options_dialog.present() + + + def on_options_ok(self, widget, data = None): + name = self.option_name_entry.get_text().strip() + value = self.option_value_entry.get_text() + + if not self.check_option_name(name): return + + self.options_dialog.option_model.append([name, value]) + self.options_dialog.hide() + + + def on_options_cancel(self, widget, data = None): + self.options_dialog.hide() + return True # Cancel event + + + # Configure dialog signals + def on_configure_ok(self, widget, data = None): + self.configure_dialog.hide() + if self.active_client: + # Select identity tab + self.client_config_notebook.set_current_page(1) + self.edit_client(self.active_client) + return True # Cancel event + + + def on_configure_cancel(self, widget, data = None): + self.configure_dialog.hide() + if self.active_client: + # Fold anonymously + self.active_client.conn.queue_command('save') + return True # Cancel event + + + # Slot status tree signals + def on_slot_status_tree_cursor_changed(self, widget, data = None): + if self.active_client: + self.active_client.config.select_slot(self) + + + def on_slot_status_tree_view_button_release_event(self, widget, event, + data = None): + if event.button != 3: return + idle = self.active_client.get_selected_slot(self).idle + self.idle_slot_item.set_active(idle) + self.slot_menu.popup(None, None, None, button = event.button, + activate_time = event.time, data = data) + + + def on_unpause_slot_item_activate(self, widget, data = None): + for id in self.get_selected_slot_ids(): + self.active_client.unpause(id) + + + def on_pause_slot_item_activate(self, widget, data = None): + for id in self.get_selected_slot_ids(): + self.active_client.pause(id) + + + def on_idle_slot_item_toggled(self, widget, data = None): + for id in self.get_selected_slot_ids(): + if widget.get_active(): self.active_client.on_idle(id) + else: self.active_client.always_on(id) + + + def on_finish_slot_item_activate(self, widget, data = None): + for id in self.get_selected_slot_ids(): + self.active_client.finish(id) + + + # Log signals + def on_download_log_clicked(self, widget, data = None): + self.active_client.refresh_log() + self.log.set_text('') + + + def on_copy_log_clicked(self, widget, data = None): + log = self.log + text = log.get_text(log.get_start_iter(), log.get_end_iter()) + gtk.Clipboard().set_text(text) + + + def on_clear_log_clicked(self, widget, data = None): + if self.active_client: self.active_client.config.log_clear(self) + + + def on_update_log(self, widget, data = None): + if self.active_client: self.active_client.config.update_log(self) + + + # Scale value formatting + def on_cpu_usage_scale_format_value(self, widget, value, data = None): + return '%d%%' % value + + + def on_checkpoint_scale_format_value(self, widget, value, data = None): + return '%d min.' % value + + + def on_uri_hook(self, widget, url, data = None): + keys = {'donor': urllib.quote(self.donor_info.get_label()), + 'team': urllib.quote(self.team_info.get_label())} + webbrowser.open(url % keys) diff --git a/fah/Icon.py b/fah/Icon.py new file mode 100644 index 0000000..8cbee80 --- /dev/null +++ b/fah/Icon.py @@ -0,0 +1,7074 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import gtk + +icons = {'tiny': None, 'small': None, 'medium': None, 'large': None} +viewer_icons = {'tiny': None, 'small': None, 'medium': None, 'large': None} + + +def load_rgba_pixbuf(data, dim): + return gtk.gdk.pixbuf_new_from_data(data, gtk.gdk.COLORSPACE_RGB, + True, 8, dim, dim, dim * 4) + + +def get_icon(name): + global icons + + if icons[name] is None: + if name == 'tiny': icons[name] = load_rgba_pixbuf(icon_24_raw, 24) + elif name == 'small': icons[name] = load_rgba_pixbuf(icon_32_raw, 32) + elif name == 'medium': icons[name] = load_rgba_pixbuf(icon_64_raw, 64) + else: icons[name] = load_rgba_pixbuf(icon_128_raw, 128) + + return icons[name] + + +def get_icon_image(name): + image = gtk.Image() + image.set_from_pixbuf(get_icon(name)) + image.show() + + return image + + +def get_viewer_icon(name): + global viewer_icons + + if viewer_icons[name] is None: + if name == 'tiny': + viewer_icons[name] = load_rgba_pixbuf(viewer_icon_24_raw, 24) + elif name == 'small': + viewer_icons[name] = load_rgba_pixbuf(viewer_icon_32_raw, 32) + elif name == 'medium': + viewer_icons[name] = load_rgba_pixbuf(viewer_icon_64_raw, 64) + else: viewer_icons[name] = load_rgba_pixbuf(viewer_icon_128_raw, 128) + + return viewer_icons[name] + + +def get_viewer_icon_image(name): + image = gtk.Image() + image.set_from_pixbuf(get_viewer_icon(name)) + image.show() + + return image + + +# RGBA 32x32x4 +icon_32_raw = \ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\62\1\67;\202\1" +\ + "DJ\226\0\20\22j\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\1\0\0\0\15\1SV\264\4\304\320\377\4\351\373\377\4\355" +\ + "\375\377\4\333\353\377\2s|\370\0\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10" +\ + "\35\13\11yf<8\327U-+\377\21\20V\377\6J\322\377\5O\327\377\3}\327\377" +\ + "\1\325\347\377\1\365\377\377\4\356\377\376\3\200\213\377\0\0\0/\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0J\35\62\64\361K}\200\3774\204\216\376\0Q\271\377\6\36\352\377" +\ + "\5\26\376\377\5\27\376\377\5\26\377\377\6\11\354\377\4k\316\377\3\367" +\ + "\377\377\7\351\372\377\1(+\301\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\63\67\236\5\256\274\377\4\352\373\376" +\ + "\2\360\377\377\3\360\377\377\3\361\377\377\3\273\315\377\4\21\377\377" +\ + "\3\30\375\377\4\27\375\377\4\27\375\377\7\24\376\377\5]\313\377\7\367" +\ + "\377\377\3X_\374\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\34\35\5\2}F\33\27\270M\37\32\301=\27\23\261" +\ + "\0\0\0k\20\24\3l\25;\63\337\7\334\355\377\4\357\377\376\2\360\377\377" +\ + "\1\363\377\377\0\363\377\377\1\362\377\377\2\341\344\377\3\24\356\377" +\ + "\2\33\375\377\3\32\375\377\4\31\375\377\6\27\374\377\10\16\366\377\10" +\ + "\270\340\377\3Ya\377\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + ",\37\37\0\0\0\0\6=\36\32\250\241f_\377\350\237\227\377\370\261\252\376" +\ + "\372\262\253\377\365\260\250\377\331\222\213\377\232iU\377\4\265\305" +\ + "\376\7\357\377\377\4\361\376\377\2\365\377\377\0\370\377\377\0\371\377" +\ + "\377\1\366\377\377\2\356\357\377\2\36\344\377\2\37\375\377\3\35\375\377" +\ + "\4\33\375\377\6\31\374\377\10\30\376\377\11N\324\376\3\679\352\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\5\5\0\0\0\0\17f,%\345\354\225\213" +\ + "\377\376\240\226\377\377\236\225\377\377\243\233\377\377\250\240\377" +\ + "\377\236\225\377\376\237\226\377\206kh\377\6\345\367\377\6\357\377\377" +\ + "\4\363\377\377\2\367\377\377\1\373\377\377\1\374\377\377\1\370\376\377" +\ + "\3\360\360\377\3 \343\377\3\42\375\377\3 \375\377\5\35\375\377\6\32\375" +\ + "\377\11\31\376\377\10\27\304\377\0\1\0\222\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0U\26\17\321\362wi\377\377\207|\377\377\205y\377" +\ + "\377\177u\377\377\252\245\377\376\331\326\377\377\204{\377\372\203x\377" +\ + "bYX\377\11\353\375\377\7\357\377\377\13\363\377\377\11\370\377\377\6" +\ + "\372\377\377\3\372\377\377\3\370\377\377\3\350\347\377\4\34\353\377\3" +\ + "\42\375\377\4 \375\377\5\35\375\377\7\33\375\377\11\31\376\377\10\21" +\ + "\270\377\0\0\0]\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\5\4^\322#" +\ + "\22\377\376_Q\377\377aU\377\377YP\377\377TM\377\376]W\377\377gb\377\377" +\ + "UN\377\372[Q\377\202>7\377\23\335\361\377A\361\377\3774\364\377\377," +\ + "\367\377\377#\371\377\377\36\370\377\377\32\366\377\377\21\317\330\377" +\ + "\31+\373\377\24/\375\377\20)\375\377\13!\375\377\11\33\374\377\13\32" +\ + "\376\377\5\14\215\377\0\0\0:\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "`\14\5\324\372\36\13\376\377&\27\377\377;/\377\3774,\377\3772+\377\377" +\ + "/+\377\377.+\377\3761+\377\3765-\377\302*!\3779\215\227\377}\363\377" +\ + "\377l\362\377\377f\364\377\377\212\371\376\377N\366\377\377K\363\377" +\ + "\377<\250\316\377=O\377\3775J\375\3771D\375\3772@\374\377!.\375\377\22" +\ + "\36\377\377\7\16O\377\0\0\0#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14" +\ + "\223\21\5\377\377\32\12\377\376\26\7\377\377\26\12\377\377\32\21\377" +\ + "\377\30\22\377\377\25\22\377\377\24\21\377\377\25\21\377\377\31\22\377" +\ + "\351\31\20\377\200\22\13\377m\266\276\377\232\365\377\377\230\365\377" +\ + "\377\265\367\376\377\205\364\376\377\201\365\377\377o\234\320\377\304" +\ + "\311\376\377cn\376\377aj\376\377`h\375\377UZ\376\377\31%\335\377\4y~" +\ + "\377\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\31\252\23\7\377\377" +\ + "\31\11\377\377\25\7\377\377\20\5\377\377\13\3\377\377\7\2\377\377\5\3" +\ + "\377\377\5\2\377\377\6\3\377\377\10\3\377\375\15\4\377\334\17\5\377\201" +\ + "\11\2\377Qrf\377y\302\317\377\232\346\361\377\240\353\367\377\212\334" +\ + "\336\377\213\223\343\377\244\250\376\377\215\223\377\377\211\216\377" +\ + "\377\207\214\377\377YY\342\377\12\312\347\377\5}\210\377\0\0\0.\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\31\250\23\7\377\377\31\11\377\377\24" +\ + "\6\377\377\17\4\377\377\12\3\377\377\7\2\377\377\3\1\377\377\3\2\377" +\ + "\377\4\1\377\377\7\3\377\377\14\4\377\376\21\5\377\321\12\6\377\253\227" +\ + "\6\377\227\201\0\377xq\13\377kg\14\377Fb\230\377\212\211\343\377\242" +\ + "\240\366\377\243\242\367\377\217\213\342\377[\227\321\377\32\335\356" +\ + "\377\15\355\377\377\3NU\377\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\14\207\16\4\377\377\30\10\377\376\25\6\377\377\20\4\377\377\12" +\ + "\3\377\377\6\2\377\377\3\0\377\377\2\0\377\377\4\0\377\377\10\1\377\376" +\ + "\14\3\377\377\21\5\377\301\26\5\377\374\345\4\377\367\330\4\377\363\326" +\ + "\4\377\330\277\4\377Qq:\377~\354\362\377e\313\343\377\221\320\342\377" +\ + "i\357\365\377]\366\377\377a\360\377\377!\301\323\377\0\1\0\264\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0M\10\2\320\367\30\10\376\377" +\ + "\26\6\377\377\21\4\377\377\14\3\377\377\10\1\377\377\4\0\377\377\4\0" +\ + "\377\377\5\0\377\377\12\2\377\377\16\3\377\372\22\5\377\300W\3\377\377" +\ + "\341\3\377\375\335\3\377\375\336\3\377\370\333\4\377\270\242\0\377Vq" +\ + "P\377\217\337\354\377\245\370\377\377\233\367\377\377\222\363\377\377" +\ + "g\275\311\376\3\27\30\360\0\1\1\27\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0W\270\23\5\377\377\27\7\377\377\22\4\377\377\17\3" +\ + "\377\377\13\1\377\377\10\0\377\377\7\0\377\377\11\1\377\377\14\1\377" +\ + "\377\20\3\377\336\11\4\377\334\274\2\377\374\336\3\377\375\336\3\377" +\ + "\375\336\3\377\375\337\3\377\363\331\4\377\301\255\2\377tp\12\377awG" +\ + "\377e\204^\377p~7\377\224\213\0\377\0\0\0\232\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0)\4\0\301\337\25\4\377\377\25" +\ + "\6\377\377\21\3\377\376\17\2\377\377\15\1\377\377\14\1\377\376\15\1\377" +\ + "\377\20\3\377\370\22\4\377\271M\3\377\377\346\3\377\375\335\3\377\375" +\ + "\336\3\377\375\336\3\377\374\340\3\377\375\343\4\377\372\343\4\377\353" +\ + "\327\5\377\335\315\6\377\340\321\7\377\361\342\11\377\222\213\6\377\0" +\ + "\0\0_\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + ";\4\65\207r\10C\377\313\22\1\377\373\25\5\377\377\24\3\377\377\22\3\377" +\ + "\377\22\2\377\377\22\3\377\373\24\4\377\275\35\3\377\362\337\3\377\374" +\ + "\342\3\377\375\340\2\377\375\337\1\377\375\340\2\377\375\341\2\377\375" +\ + "\344\4\377\375\345\5\377\375\351\6\377\375\353\7\377\376\356\11\377\370" +\ + "\353\12\377LA\3\377\0\0\0\33\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0b\4V\262\315\15\260\376t\0\7\11\200\15\17\20\232\17\21\22" +\ + "\233\15\21\21\232\3\12\13\212\0\0\0M\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\21" +\ + "\0\0\11\177\15\36\32\332\6\241\256\377\10\340\361\376\7\356\376\377\6" +\ + "\356\377\377\4\360\376\377\3\361\377\377\2\362\377\377\2\364\377\377" +\ + "\2\363\377\377\1\363\377\377\1\363\377\377\2\363\377\377\2\362\376\377" +\ + "\3\357\377\377\4\320\324\377\3\37\332\377\2\34\374\377\3\34\375\377\3" +\ + "\34\375\377\2\32\375\377\3\33\375\377\4\32\375\377\5\31\375\377\6\30" +\ + "\375\377\6\30\376\377\10\30\376\377\11\30\374\377\10\22\313\377\10\347" +\ + "\354\377\12\347\371\377\6\217\234\377\0\0\0+\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\2\3S9\25\22\267`*$\365\205HB\377" +\ + "\247_X\377\264g_\377\267i`\377\266g`\377\254e]\377\216QK\377_1,\371:" +\ + "\26\22\272\30\26\17\250[Z&\366le.\377\5\204\216\377\10\336\356\377\10" +\ + "\356\377\377\7\356\376\377\5\360\377\377\4\361\377\377\2\363\377\377" +\ + "\2\365\377\377\1\366\377\377\0\367\377\377\0\367\377\377\1\367\377\377" +\ + "\1\365\377\377\2\365\377\377\2\362\377\377\3\332\341\377\2)\320\377\3" +\ + "\37\375\377\2\35\375\377\1\36\375\377\3\36\375\377\3\34\375\377\4\34" +\ + "\375\377\5\32\375\377\6\31\374\377\6\31\375\377\7\30\376\377\10\30\376" +\ + "\377\11\25\362\377\10M\247\377\11\340\362\377\5hr\377\0\0\0\16\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\4\4C\77\35\32\337\221NF\377" +\ + "\303\201z\377\331\241\232\377\352\250\241\377\361\253\244\377\366\256" +\ + "\246\377\367\257\246\377\366\256\247\377\364\254\244\377\353\250\241" +\ + "\377\334\240\231\377\311\217\211\377\263kd\377\200YM\377\32TS\377\10" +\ + "\313\334\377\11\354\376\377\7\357\377\377\5\360\377\377\5\361\377\377" +\ + "\4\363\377\377\2\365\377\377\1\366\377\377\2\371\377\377\0\372\377\377" +\ + "\0\371\377\377\1\371\377\377\1\370\377\377\2\365\377\377\2\364\377\377" +\ + "\3\336\350\377\2\63\315\377\3 \375\377\2 \375\377\3\37\375\377\2\37\375" +\ + "\377\4\36\375\377\4\35\375\377\5\33\375\377\6\32\374\377\6\32\375\377" +\ + "\7\31\376\377\10\30\375\377\12\30\374\377\11\31\311\377\13\323\343\376" +\ + "\4BH\344\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\31\14\13\252\214" +\ + "A:\377\312\213\204\376\351\236\227\377\367\250\237\377\376\254\243\377" +\ + "\377\255\245\377\377\254\244\377\377\254\244\377\377\254\244\377\377" +\ + "\254\244\377\377\255\244\377\376\254\244\377\375\254\243\377\371\251" +\ + "\240\377\350\235\225\377\251vo\377\6\212\226\377\12\344\365\377\11\356" +\ + "\377\377\7\360\377\377\5\361\377\377\5\362\377\377\4\365\377\377\2\367" +\ + "\377\377\1\370\377\377\1\373\377\377\0\373\377\377\1\373\377\377\0\373" +\ + "\377\377\2\371\377\377\2\367\377\377\2\365\377\377\4\341\350\377\3\66" +\ + "\314\377\2!\375\377\2\42\375\377\2!\375\377\2!\375\377\4\37\375\377\4" +\ + "\36\375\377\5\35\375\377\6\34\375\377\6\32\374\377\7\32\375\377\10\31" +\ + "\376\377\12\31\376\377\11\24\334\376\12\233\253\377\5\34\36q\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\16\60\32\30\344\254\134R\377\340\222\212\376" +\ + "\367\237\226\377\376\243\231\377\377\244\232\377\376\243\231\377\377" +\ + "\242\231\377\377\243\233\377\377\246\236\377\377\247\237\377\377\244" +\ + "\234\377\377\243\233\377\377\242\231\377\377\244\232\377\376\243\230" +\ + "\377\350\226\214\377iD@\377\6\260\300\377\12\353\375\377\10\357\376\377" +\ + "\7\357\377\377\5\362\377\377\5\362\377\377\3\365\377\377\3\370\377\377" +\ + "\2\372\377\377\2\374\377\377\2\374\377\377\0\373\377\377\1\373\377\377" +\ + "\1\371\377\377\3\370\377\377\2\367\377\377\4\342\351\377\3\67\311\377" +\ + "\4#\375\377\3\42\375\377\3!\375\377\4\42\375\377\3 \375\377\5\37\375" +\ + "\377\5\35\375\377\6\33\375\377\6\33\375\377\7\32\375\377\11\32\376\377" +\ + "\12\32\376\377\11\24\344\377\12\62O\374\0\0\0\34\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\4\0" +\ + "\0\0\0\16;\32\26\341\267NB\377\352\217\204\376\374\231\216\377\376\232" +\ + "\217\377\377\232\217\377\377\230\217\377\377\227\215\377\377\230\216" +\ + "\377\377\237\225\377\377\262\253\377\377\275\267\377\377\253\242\377" +\ + "\377\233\222\377\377\231\216\377\377\227\215\377\373\226\215\377\334" +\ + "\204{\377.67\377\10\307\330\377\12\355\377\377\10\357\377\377\6\357\377" +\ + "\377\6\362\377\377\5\363\377\377\4\367\377\377\3\370\377\377\2\372\377" +\ + "\377\3\374\377\377\2\374\377\377\1\374\377\377\2\374\377\377\2\371\377" +\ + "\377\3\370\377\377\3\366\377\377\4\341\347\377\3\64\313\377\3#\375\377" +\ + "\4\42\375\377\4#\375\377\4\42\375\377\5!\375\377\5\37\375\377\6\36\375" +\ + "\377\7\34\375\377\7\34\375\377\10\32\374\377\11\31\376\377\13\32\376" +\ + "\377\11\25\344\377\3\59\336\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\64\27\24\301\264" +\ + ".\36\377\353\211~\377\374\215\202\377\377\216\202\377\376\215\201\377" +\ + "\377\214\200\377\377\212\177\377\377\211~\377\377\211\177\377\377\234" +\ + "\225\377\376\322\317\377\376\357\357\377\377\275\271\377\377\222\213" +\ + "\377\377\212\200\377\377\212\200\377\367\210|\377\320ri\377\34\67:\377" +\ + "\12\316\337\377\12\355\377\377\11\357\377\377\7\360\377\377\6\362\377" +\ + "\377\5\364\377\377\6\366\377\377\5\371\377\377\4\372\377\377\3\372\377" +\ + "\377\3\373\377\377\2\373\377\377\2\372\377\377\3\371\377\377\3\370\377" +\ + "\377\4\366\377\377\4\333\340\377\3,\320\377\4#\374\377\4$\375\377\4#" +\ + "\375\377\4#\375\377\5!\375\377\5 \375\377\6\36\375\377\6\34\375\377\7" +\ + "\34\375\377\10\33\375\377\11\32\375\377\13\32\376\377\12\27\341\377\3" +\ + "\69\336\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\4\12\12u\227%\31\377\344B0\376\375\204x\377" +\ + "\377\201u\377\376\177t\377\377}r\377\377zp\377\377vl\377\377sk\377\377" +\ + "tk\377\377\210\202\377\377\303\300\377\376\342\341\377\377\255\250\377" +\ + "\377\200w\377\377wm\377\377yo\377\365xm\377\312e[\377,/.\377\11\307\331" +\ + "\377\13\355\377\377\10\357\377\377\15\360\377\377\30\361\377\377\31\364" +\ + "\377\377\25\366\377\377\23\370\377\377\20\372\377\377\16\373\377\377" +\ + "\14\373\377\377\12\373\377\377\10\371\377\377\7\371\377\377\5\367\377" +\ + "\377\4\365\377\377\5\321\322\377\10'\333\377\10%\374\377\6$\375\377\6" +\ + "$\375\377\6#\375\377\5\42\375\377\6 \375\377\7\37\375\377\10\36\375\377" +\ + "\10\34\375\377\11\33\375\377\12\32\376\377\13\32\376\377\12\24\330\377" +\ + "\1\3#\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\11b\25\16\362\324+\30\376\371\77,\377\376" +\ + "re\377\377oa\377\377l^\377\377i]\377\377dY\377\377aW\377\377`V\377\377" +\ + "^V\377\377e^\377\377|w\377\377\211\204\377\377tn\377\377bZ\377\377`V" +\ + "\377\377e[\377\365eY\377\313WM\377V&\42\377\12\264\303\377\17\350\375" +\ + "\377\37\356\377\3778\362\377\377/\363\377\377,\364\377\377(\367\377\377" +\ + "$\367\377\377 \371\377\377\35\371\377\377\33\373\377\377\30\372\377\377" +\ + "\26\371\377\377\23\367\377\377\22\367\377\377\17\365\377\377\5\272\274" +\ + "\377\24*\350\377\22/\374\377\21.\375\377\17+\375\377\16)\375\377\14&" +\ + "\375\377\10!\375\377\7\36\375\377\10\35\375\377\11\34\374\377\12\33\375" +\ + "\377\13\33\375\377\13\31\374\377\11\22\305\377\0\0\5v\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\6" +\ + "\6\220\252\32\15\377\357&\24\377\376,\31\377\377_Q\377\377YL\377\377" +\ + "VJ\377\377SG\377\377PG\377\377ME\377\377KE\377\377JD\377\377JE\377\377" +\ + "NI\377\377OJ\377\377LF\377\377KD\377\377KE\377\377NG\377\370QG\377\322" +\ + "KA\377\2216-\377\20\207\225\377\42\340\365\377_\361\377\377Q\360\377" +\ + "\377I\362\377\377C\365\377\377>\367\377\3779\371\377\3776\370\377\377" +\ + "2\372\377\377.\371\377\377+\370\377\377(\367\377\377'\366\377\377%\365" +\ + "\377\377$\360\374\377\27\223\241\377#7\370\377 ;\374\377\368\374\377" +\ + "\35\65\375\377\32\62\375\377\30/\375\377\27-\375\377\23(\375\377\12\37" +\ + "\374\377\14\35\375\377\14\34\376\377\14\34\376\377\13\31\371\377\11\20" +\ + "\254\377\0\0\6D\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\1\1\4[\22\13\353\323\32\12\377\373!\16\377\377\37" +\ + "\15\377\3777)\377\377E9\377\377C7\377\377A6\377\377>6\377\377=4\377\377" +\ + ";5\377\37794\377\37794\377\37784\377\37794\377\37784\377\377:4\377\377" +\ + ":4\377\377<5\377\373\77\67\377\335;3\377\2511*\377)GJ\377=\315\335\377" +\ + "w\361\376\377p\363\376\377h\363\377\377_\364\377\377W\364\377\377R\365" +\ + "\377\377U\367\377\377Y\370\377\377K\370\377\377C\370\377\377@\370\377" +\ + "\377>\365\377\377=\363\377\377=\352\370\377%m\233\3775J\377\3772H\375" +\ + "\377.D\375\377,A\374\377)@\374\377(=\374\377':\374\377&7\374\377&4\374" +\ + "\377\22!\375\377\23!\376\377\20\36\376\377\16\31\362\377\11\16\211\377" +\ + "\1\0\1,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\4\0\0\65\224\22\6\376\351\34\12\376\377\35\14\377\376\33\13" +\ + "\377\377\31\12\377\3771#\377\3774'\377\3770&\377\377/&\377\377.&\377" +\ + "\377-&\377\377+%\377\377)%\377\377)$\377\377(%\377\377)%\377\377)%\377" +\ + "\377+%\377\377-&\377\376.&\377\354.&\377\274) \377u\30\21\377#\207\223" +\ + "\377\211\347\361\377\204\362\376\377\200\364\376\377z\363\377\377t\364" +\ + "\377\377s\365\377\377\242\371\377\377\321\374\377\377\213\371\376\377" +\ + "`\365\377\377\134\365\377\377[\363\377\377[\361\376\377U\337\354\377" +\ + "\77_\307\377Pb\377\377I\134\376\377AU\376\377>R\376\377D\377\375BM\377" +\ + "\350:D\377\30418\377\221$*\377B0\10\377\256\245\5\377\336\322\10\377" +\ + "\366\347\7\377\375\356\10\377\376\355\7\377\376\355\6\377\375\355\6\377" +\ + "\375\353\6\377\375\353\6\377\375\353\6\377\375\353\6\377\375\352\5\377" +\ + "\374\352\5\377\375\353\5\377\374\352\6\377\375\353\6\377\375\353\6\377" +\ + "\375\353\5\377\376\354\6\377\375\355\6\377\376\355\7\377\375\355\10\377" +\ + "\370\351\7\377\351\334\10\377\313\305\7\377\230L\6\377\365\22\6\377\377" +\ + "\26\7\377\377\30\11\377\374\32\11\377\326\30\10\377M\11\3\376\0\0\0\21" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\2\2V\237\17\20\377\262X\220\377" +\ + "\351\227\342\377\373\240\355\377\377\241\361\377\377\241\362\377\377" +\ + "\241\362\377\377\241\362\377\377\241\362\377\375\241\357\377\364\237" +\ + "\350\377\305r\276\377\275/Q\377\376,5\377\351*4\377\307%,\377\244\36" +\ + "$\377N\37\14\377\200{\4\377\313\300\7\377\353\335\7\377\370\352\10\377" +\ + "\375\355\7\377\376\356\6\377\376\355\7\377\376\354\6\377\375\354\6\377" +\ + "\375\353\6\377\376\353\5\377\375\353\5\377\376\353\5\377\375\353\5\377" +\ + "\375\353\5\377\376\354\6\377\376\355\6\377\376\356\6\377\375\355\7\377" +\ + "\372\352\10\377\360\341\7\377\334\321\7\377\254\242\7\377\2610\5\377" +\ + "\377\17\4\377\377\25\6\377\377\27\7\377\377\30\11\377\366\32\11\377\273" +\ + "\26\7\377\32\2\0\272\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0+\15" +\ + "\17\317\264Q\246\377\367\215\347\377\377\217\356\377\377\217\356\377" +\ + "\377\217\357\377\377\221\357\377\377\257\364\377\377\247\362\377\377" +\ + "\217\357\377\377\216\356\377\377\216\356\377\375\216\354\377\341p\326" +\ + "\377\263 R\377\375\35(\377\355\34'\377\321\31!\377\263\26\34\377h\5\14" +\ + "\377XD\5\377\255\243\7\377\332\317\6\377\353\336\7\377\366\347\10\377" +\ + "\373\354\7\377\375\355\6\377\375\356\7\377\376\356\7\377\376\356\7\377" +\ + "\376\356\7\377\376\356\7\377\376\356\7\377\375\355\7\377\375\355\6\377" +\ + "\372\353\6\377\366\347\10\377\354\336\7\377\335\322\6\377\274\266\7\377" +\ + "\237b\6\377\326\11\3\377\377\21\5\377\376\22\5\377\377\25\6\377\377\27" +\ + "\7\377\376\31\10\377\346\30\11\376\222\21\5\376\10\1\0B\4\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\4\1 \217\26~\377\357s\335\376\377{\353\377\376" +\ + "z\354\377\377x\354\377\377u\355\377\377}\357\377\376\335\372\377\376" +\ + "\302\370\377\377u\356\377\377t\354\377\377w\353\377\377y\354\377\375" +\ + "~\354\377\3328\310\377\275\31,\377\373\21\36\377\363\17\33\377\336\10" +\ + "\21\377\274\6\14\377\201\4\10\377c\7\4\377\207S\7\377\265\246\6\377\313" +\ + "\300\6\377\335\322\6\377\347\333\7\377\356\340\7\377\361\342\7\377\363" +\ + "\345\6\377\363\345\7\377\363\344\6\377\361\342\7\377\356\340\7\377\350" +\ + "\333\7\377\336\322\6\377\314\301\6\377\267\250\5\377\225Z\5\377\317\7" +\ + "\3\377\377\16\2\377\376\20\4\377\377\22\5\377\377\24\5\377\376\26\6\377" +\ + "\376\30\10\377\366\31\10\377\310\26\7\3779\6\3\347\0\0\0\15\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\09\14\63\310\330 \273\377\375c\345\376\377b" +\ + "\347\377\377`\350\377\377Z\352\377\377T\354\377\377S\355\377\377l\361" +\ + "\377\377e\361\377\377Q\355\377\377R\353\377\377U\353\377\377Y\350\377" +\ + "\377_\351\377\3731\335\377\302\22\236\377\377\5\21\377\375\6\23\377\367" +\ + "\10\22\377\341\10\17\377\264\6\12\377C\3\4\377\260\23\6\377\350\24\10" +\ + "\377\274\33\7\377\214L\5\377\245\220\6\377\263\251\6\377\277\267\5\377" +\ + "\303\273\7\377\304\273\7\377\303\273\7\377\277\270\5\377\264\252\5\377" +\ + "\246\223\6\377\212L\4\377\270\25\2\377\363\6\1\377\376\13\2\377\376\16" +\ + "\2\377\376\17\3\377\377\22\3\377\377\23\5\377\376\25\6\377\377\26\6\377" +\ + "\373\30\7\377\337\27\10\376\211\17\5\377\0\0\0I\0\0\0\2\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\5\0.\233\16\207\377\366 \326\377\376F\343\377\376G\346" +\ + "\377\377@\347\377\377:\353\377\3776\355\377\3775\356\377\3776\360\377" +\ + "\3775\357\377\3775\356\377\3776\355\377\3777\353\377\3778\350\377\376" +\ + ";\347\377\377\15\340\377\350\15\315\377\267\14'\377\375\6\23\377\375" +\ + "\7\22\377\363\10\21\377\320\7\14\377\232\6\11\377O\10\4\377\312\25\6" +\ + "\377\365\30\10\377\376\27\7\377\370\24\6\377\356\24\5\377\350\26\4\377" +\ + "\350\24\3\377\350\23\3\377\350\21\2\377\350\20\2\377\356\14\1\377\367" +\ + "\12\1\377\376\13\1\377\377\14\2\377\377\14\1\377\376\15\2\377\377\17" +\ + "\3\377\377\21\3\377\377\22\3\377\377\25\5\377\377\26\7\377\375\30\10" +\ + "\377\353\27\10\377\257\22\5\377\34\2\1\277\0\0\0\10\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\66\7/x\314\14\261\377\375\24\336\377\377\23\340\377" +\ + "\377\42\344\377\377\42\347\377\377\37\352\377\377\37\354\377\377\36\355" +\ + "\377\377\36\357\377\377\36\356\377\377\36\355\377\377\36\353\377\377" +\ + "\37\352\377\377\37\346\377\377\13\343\377\377\12\342\377\370\13\332\377" +\ + "\247\7~\377\373\5\21\377\375\6\21\377\373\7\20\377\352\10\16\377\301" +\ + "\7\13\377~\4\6\377t\14\5\377\320\25\7\377\365\30\7\377\376\26\6\377\377" +\ + "\26\5\377\377\23\4\377\377\22\3\377\377\21\3\377\377\20\2\377\377\16" +\ + "\2\377\377\16\1\377\377\15\1\377\377\16\1\377\377\16\2\377\377\17\2\377" +\ + "\377\20\3\377\377\21\3\377\377\22\4\377\376\24\5\377\377\26\6\377\374" +\ + "\27\6\377\355\27\7\377\276\24\6\377>\6\2\336\0\0\0\31\0\0\0\2\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0N\4C\262\337\13\303\377\377\13\341\377\376" +\ + "\13\342\377\377\7\345\377\377\12\350\377\377\14\353\377\377\14\355\377" +\ + "\377\14\355\377\377\14\356\377\377\14\356\377\377\14\355\377\377\14\353" +\ + "\377\377\13\351\377\377\6\346\377\377\7\343\377\376\11\342\377\375\13" +\ + "\336\377\306\11\255\377\367\5\24\377\374\6\21\377\374\7\20\377\371\10" +\ + "\17\377\343\7\15\377\271\7\12\377_\4\4\377s\14\3\377\315\24\6\377\362" +\ + "\27\10\377\375\26\7\377\377\25\6\377\377\24\5\377\377\22\4\377\377\21" +\ + "\3\377\377\22\2\377\377\21\2\377\377\21\3\377\377\20\3\377\377\21\2\377" +\ + "\377\22\2\377\377\21\3\377\377\23\3\377\377\24\5\377\377\26\6\377\373" +\ + "\30\6\377\350\27\7\376\272\23\5\377F\7\3\350\0\0\0\62\0\0\0\4\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0V\4K\270\344\12\310\377\377\11\341" +\ + "\377\377\10\343\377\377\6\345\377\377\5\350\377\377\4\352\377\377\3\355" +\ + "\377\377\2\356\377\377\2\356\377\377\2\356\377\377\3\355\377\377\3\353" +\ + "\377\377\4\351\377\377\5\347\377\377\6\344\377\377\11\342\377\376\12" +\ + "\337\377\317\11\263\377\367\5\24\377\374\6\17\377\374\6\17\377\375\10" +\ + "\16\377\367\11\15\377\337\10\13\377\261\7\10\377K\3!\377f\12\12\377\275" +\ + "\23\5\377\345\26\6\377\370\27\7\377\376\27\6\377\377\26\5\377\377\24" +\ + "\4\377\377\23\4\377\376\23\4\377\377\23\4\377\377\23\4\377\376\23\4\377" +\ + "\377\23\4\377\377\24\5\377\377\26\5\377\375\26\6\377\364\27\7\377\334" +\ + "\24\6\377\245\21\4\3776\5\2\335\0\0\0.\1\0\0\6\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0U\4J\270\344\11\310\376\377\10\341\377" +\ + "\377\7\343\377\377\6\345\377\377\4\350\377\377\3\352\377\377\2\355\377" +\ + "\377\2\356\377\377\1\356\377\377\1\357\377\377\2\356\377\377\3\353\377" +\ + "\377\3\350\377\377\4\347\377\377\6\344\377\376\10\342\377\376\12\337" +\ + "\377\315\10\263\377\367\5\22\377\374\6\17\377\374\7\17\377\375\10\15" +\ + "\377\375\11\15\377\366\12\15\377\310\11\4\377\234\3~\377\220\1\210\377" +\ + "<\4\31\377\224\17\3\377\311\23\5\377\345\25\7\377\364\26\5\377\373\27" +\ + "\6\377\375\26\5\377\376\25\4\377\376\25\5\377\376\24\5\377\376\25\4\377" +\ + "\375\26\6\377\371\26\6\377\360\26\6\377\335\25\6\377\272\21\5\377{\15" +\ + "\3\373\7\1\0\235\0\0\0\20\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0I\3@\252\333\11\300\377\377\10\341\377\376\7" +\ + "\343\377\377\5\345\377\377\4\347\377\377\3\352\377\377\1\354\377\377" +\ + "\2\355\377\377\0\357\377\377\0\356\377\377\2\355\377\377\3\352\377\377" +\ + "\3\351\377\377\4\346\377\377\6\343\377\377\10\343\377\374\12\336\377" +\ + "\300\10\246\377\370\5\17\377\374\6\17\377\374\7\16\377\376\10\14\377" +\ + "\376\11\15\377\372\12\15\377\251\10\12\377\343\1\334\377\313\3\273\377" +\ + "\255\2\235\377o\3d\377@\5\15\377\217\16\3\377\270\21\4\377\317\23\6\377" +\ + "\340\25\6\377\351\26\6\377\354\26\6\377\353\25\6\377\347\26\6\377\335" +\ + "\24\6\376\310\23\5\377\257\20\4\377w\14\3\376\35\2\1\302\1\0\0 \0\0\0" +\ + "\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0+\2%e\303\7\252\377\375\10\336\377\377\7\342\377\377\5\344" +\ + "\377\377\3\346\377\377\2\350\377\377\2\353\377\377\1\356\377\377\1\356" +\ + "\377\377\0\356\377\377\2\354\377\377\2\352\377\377\3\350\377\377\4\346" +\ + "\377\377\5\343\377\377\10\342\377\367\11\331\377\242\6h\377\374\5\15" +\ + "\377\374\6\15\377\375\7\15\377\376\10\14\377\375\11\14\377\347\11\12" +\ + "\377\317\3\244\377\376\1\354\377\362\2\336\377\336\2\313\377\307\3\263" +\ + "\377\255\3\232\377\210\4x\377S\4<\376:\5\7\377j\12\4\377\215\15\4\377" +\ + "\221\16\4\377\221\16\4\377\205\14\4\377[\10\3\377)\4\1\320\26\1\0a\0" +\ + "\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\30\177\5o\377\360\11\324" +\ + "\377\377\7\342\377\376\5\343\377\377\4\345\377\377\2\347\377\377\1\351" +\ + "\377\377\1\353\377\377\0\353\377\377\0\353\377\377\1\352\377\377\2\350" +\ + "\377\377\4\346\377\377\4\344\377\376\6\343\377\377\10\341\377\335\10" +\ + "\306\377\320\4\21\377\375\6\15\377\374\6\14\377\376\7\14\377\376\11\15" +\ + "\377\363\12\12\377\244\7&\377\373\0\355\377\377\1\353\377\376\2\350\377" +\ + "\372\3\342\377\361\4\331\377\344\5\313\377\324\6\272\377\251\6\224\377" +\ + ".\1*\327\0\0\0B\0\0\0\62\0\0\0*\0\0\0)\0\0\0'\0\0\0\30\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*\2%\221\310\6\257" +\ + "\377\372\10\334\376\377\5\343\377\376\4\344\377\377\2\345\377\377\1\347" +\ + "\377\377\1\347\377\377\0\350\377\377\0\350\377\377\1\347\377\377\3\346" +\ + "\377\377\3\345\377\377\5\343\377\377\7\342\377\367\10\331\377\264\7\203" +\ + "\377\377\5\13\377\374\6\13\377\375\7\14\377\376\10\14\377\367\10\12\377" +\ + "\273\10\20\377\365\0\345\377\377\0\352\377\377\1\351\377\376\2\347\377" +\ + "\377\3\345\377\376\5\343\377\374\6\337\377\356\10\321\376\224\5\201\377" +\ + "\0\0\0G\0\0\0\11\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12a\3V\354" +\ + "\331\6\277\377\373\7\336\376\377\5\342\377\377\3\343\377\377\2\344\377" +\ + "\377\2\346\377\377\2\345\377\377\2\346\377\377\2\345\377\377\2\343\377" +\ + "\376\4\343\377\377\6\342\377\372\7\334\377\306\7\256\377\334\5\6\377" +\ + "\376\6\14\377\376\7\14\377\375\7\13\377\362\10\11\377\273\7\25\377\343" +\ + "\2\327\377\377\1\346\377\377\1\346\377\377\2\347\377\377\3\344\377\377" +\ + "\4\344\377\376\5\342\377\372\10\334\377\312\7\262\377B\3;\257\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16r\4d\360" +\ + "\323\6\272\377\367\6\332\376\376\4\342\377\376\4\342\377\377\3\342\377" +\ + "\377\3\342\377\377\3\342\377\377\3\342\377\377\4\342\377\376\6\341\377" +\ + "\367\6\332\377\311\6\265\377\312\5\30\377\375\7\13\377\373\7\12\377\365" +\ + "\7\12\377\341\10\11\377\251\6+\377\367\2\345\377\376\3\343\377\377\3" +\ + "\343\377\377\2\343\377\377\3\343\377\377\3\343\377\376\5\342\377\367" +\ + "\7\332\377\320\6\266\377P\3F\342\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12A\29\324\261\5\233\377" +\ + "\336\6\304\376\364\5\327\377\373\4\337\377\375\4\340\377\374\4\340\377" +\ + "\371\5\334\377\357\6\323\377\334\6\302\377\240\6\204\377\332\6\15\377" +\ + "\352\7\11\377\331\6\10\377\277\6\10\377\220\6\14\377\263\5\221\376\364" +\ + "\6\330\377\375\5\340\377\377\3\342\377\377\4\343\377\377\3\343\377\377" +\ + "\4\342\377\372\5\335\377\352\6\316\376\272\6\244\377;\2\64\330\0\0\0" +\ + "\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\1\32\0\27A\77\1\67\315\200\4q\377\261\5\233" +\ + "\377\275\5\246\377\270\4\242\377\232\4\210\377Z\3M\377R\3\26\377f\3\1" +\ + "\377g\3\4\377Q\3\4\3614\1\2\251'\1\2F\0\0\15!9\2\63\270\214\4{\377\306" +\ + "\5\256\377\333\5\301\377\343\5\310\376\341\4\307\376\324\5\272\377\263" +\ + "\5\234\377a\3U\375$\1\37^\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\27\13\1\13C\31\0\26J\25\1\22H\0\0\0.\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!)\1" +\ + "&hH\2@\252R\3H\263Q\3G\262=\2\66\220\14\0\13E\0\0\0\5\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" + + +# RGBA 128x128x4 +icon_128_raw = \ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\10\0\0\0\13\0\0\0" +\ + "\14\0\0\0\13\0\0\0\6\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\5\0\0\0\17\0\0\0\36\0\0\0/\0\0\0A\0\0\0V\0\0\0d\0" +\ + "\0\0g\0\0\0\134\0\0\0K\0\0\0:\0\0\0)\0\0\0\32\0\0\0\14\0\0\0\3\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0" +\ + "\0\0\12\0\0\0\36\0\0\0B\0\0\0q\0\1\1\245\0\11\11\311\0\24\25\334\0\42" +\ + "%\355\1.\60\365\1\60\64\365\0$&\355\0\20\22\336\0\4\5\314\0\1\1\257\0" +\ + "\0\0\203\0\0\0U\0\0\0.\0\0\0\20\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\11\0\0\0\42\0\0\0T\0\0\0\242\0\27\30\335\1BG\367\2e" +\ + "m\374\3\202\214\376\3\220\232\377\3\232\246\377\3\235\252\377\4\240\254" +\ + "\377\3\231\245\377\3\216\232\377\3~\211\376\2^e\375\0\658\371\0\4\5\337" +\ + "\0\0\0\242\0\0\0_\0\0\0-\0\0\0\16\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\25\0\0" +\ + "\0C\0\0\0\241\1'*\350\2_g\374\4\215\230\377\4\246\263\377\4\270\306\377" +\ + "\4\302\321\376\4\311\332\377\4\317\340\377\5\322\343\377\5\322\342\377" +\ + "\4\317\337\377\4\310\330\377\4\300\317\377\4\262\277\377\3\235\251\377" +\ + "\3x\201\377\1<@\373\0\5\5\341\0\0\0\234\0\0\0P\0\0\0\36\0\0\0\5\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0" +\ + "\42\0\0\0k\0\17\20\322\2V]\374\4\223\236\376\5\260\276\377\5\307\326" +\ + "\376\5\326\345\377\6\337\357\377\5\343\365\377\4\347\367\377\4\351\372" +\ + "\377\5\352\373\377\4\352\372\377\5\351\372\377\5\350\370\377\5\344\364" +\ + "\377\5\333\354\377\5\317\337\377\4\273\311\377\4\241\255\377\2r|\377" +\ + "\0&)\371\0\0\0\312\0\0\0r\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\3\0\0\0\4\0\0\0\5" +\ + "\0\0\0\6\0\0\0\10\0\0\0\20\0\0\0\60\0\0\0\207\1$&\354\3z\205\377\4\252" +\ + "\267\376\5\307\326\377\6\332\352\377\6\344\365\377\5\352\373\377\5\355" +\ + "\375\377\4\355\375\377\4\356\376\377\3\356\376\377\3\356\376\377\4\356" +\ + "\376\377\3\356\376\377\4\356\376\377\3\355\375\377\3\353\374\377\5\350" +\ + "\370\377\5\337\357\377\5\320\337\377\4\265\304\376\3\223\235\377\1HN" +\ + "\377\0\2\2\344\0\0\0\206\0\0\0\66\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\3\0\0\0\7\0\0\0\17\0\0\0\31\0\0\0&\0\0\0\62\0\0\0=\0\0\0D\0\0\0" +\ + "G\0\0\0N\0\0\0c\0\0\0\246\0+/\365\4\216\232\376\6\267\305\377\6\323\343" +\ + "\376\7\343\363\377\6\352\372\377\5\355\375\377\4\356\376\377\3\356\376" +\ + "\377\3\357\377\377\2\357\376\377\3\356\377\377\3\357\377\377\2\357\377" +\ + "\377\2\357\377\377\2\357\376\377\2\357\377\377\3\356\376\377\4\355\375" +\ + "\377\4\354\374\377\4\346\370\377\5\333\354\377\4\303\322\377\4\237\254" +\ + "\377\3[a\377\0\4\4\356\0\0\0\216\0\0\0\66\0\0\0\11\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\24" +\ + "\0\0\0(\0\0\0B\0\0\0d\0\0\0\212\0\0\0\263\0\0\0\322\1\1\1\344\2\1\1\352" +\ + "\2\2\1\354\2\2\1\357\1\0\0\365\2-\61\374\5\225\241\376\5\304\320\377" +\ + "\6\342\354\376\7\356\367\377\7\362\374\377\4\370\376\377\3\365\377\377" +\ + "\3\363\377\377\3\361\377\377\3\357\377\377\3\357\377\377\1\361\377\377" +\ + "\2\360\377\377\2\357\377\377\1\357\377\377\2\357\377\377\2\356\376\377" +\ + "\3\356\377\377\3\357\376\377\3\355\375\377\4\356\375\377\5\351\372\377" +\ + "\5\340\361\377\6\312\331\377\4\241\257\377\3Zb\376\0\2\2\355\0\0\0\207" +\ + "\0\0\0-\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16\0" +\ + "\0\0 \0\0\0A\0\0\0t\0\0\0\260\0\0\0\337\20\21\21\365.\31\30\375N\35\31" +\ + "\377h\36\26\377v\34\23\377{\35\23\377q\33\22\377S\24\14\377\22\33\33" +\ + "\376\4Kg\376\5@|\377\5/\217\377\5%\226\377\5 \235\377\5\36\225\377\5" +\ + ",\241\377\4E\242\377\2w\253\377\1\247\274\377\1\324\323\377\0\361\357" +\ + "\377\2\371\377\377\1\365\377\377\1\362\377\377\1\362\377\377\1\362\377" +\ + "\377\2\362\377\377\1\361\377\377\3\357\376\377\3\357\377\377\4\356\376" +\ + "\377\4\355\375\377\5\352\373\377\6\341\362\377\6\313\332\377\4\241\256" +\ + "\376\2EK\377\0\0\0\343\0\0\0q\0\0\0\37\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0" +\ + "\0\0\20\0\0\0(\0\0\0U\0\0\0\224\3\4\4\325\35\16\14\366F\37\34\377n1," +\ + "\377\220\77\67\377\237QH\377\253e\134\377\254ph\377\210ZT\377C+/\377" +\ + "\27\22C\377\5\14l\377\4\14\230\377\5\13\264\377\6\15\311\377\6\20\330" +\ + "\377\6\22\336\377\6\23\341\377\6\22\341\377\6\20\335\377\6\15\330\377" +\ + "\6\11\314\377\6\6\302\377\5\15\266\377\5\35\241\377\4L\230\377\2\255" +\ + "\277\377\0\346\355\377\0\366\376\377\0\363\377\377\1\362\377\377\2\362" +\ + "\377\377\1\361\377\377\3\357\377\377\3\357\376\377\3\356\376\377\5\353" +\ + "\375\377\6\352\373\377\6\340\361\377\5\304\324\377\5\226\241\376\1'*" +\ + "\377\0\0\0\306\0\0\0R\0\0\0\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\14\0\0\0#\0\0\0R\0\0\0\235\13" +\ + "\6\6\3410\33\30\375k2-\377\226QI\377\254ib\376\271\200y\377\304\220\212" +\ + "\377\306\224\216\377\234vq\377A3D\377\5\12U\377\4\14\217\377\5\17\264" +\ + "\377\5\20\304\377\6\23\330\377\6\24\347\377\6\25\361\377\7\25\366\377" +\ + "\7\25\371\377\7\25\371\377\7\26\372\377\7\25\370\377\7\25\367\377\6\25" +\ + "\362\377\6\24\357\377\7\24\350\377\6\24\342\377\6\20\327\377\6\7\267" +\ + "\377\4&\233\377\2\215\263\377\0\341\347\377\0\366\376\377\1\364\377\377" +\ + "\2\363\376\377\1\361\377\377\2\360\377\377\3\357\376\377\5\356\376\377" +\ + "\5\354\375\377\7\352\373\377\7\333\353\377\6\266\305\377\3s|\376\0\11" +\ + "\11\371\0\0\0\230\0\0\0/\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\2\0\0\0\10\0\0\0\27\0\0\0;\0\0\0\201\7\5\4\324/\32\30\375" +\ + "t>9\377\237ZT\377\260|v\377\276\213\206\377\306\215\206\377\316\220\211" +\ + "\377\303\211\201\377_EN\377\7\12Q\377\4\15\233\377\5\17\271\377\6\23" +\ + "\320\377\7\24\342\377\7\26\355\377\6\26\365\377\7\26\372\377\7\26\374" +\ + "\377\7\26\375\377\6\26\375\377\6\26\375\377\5\27\375\377\5\27\375\377" +\ + "\5\26\375\377\5\27\376\377\6\27\375\377\7\27\373\377\7\26\372\377\7\25" +\ + "\363\377\6\25\352\377\6\22\335\377\5\12\301\377\5&\230\377\1\245\300" +\ + "\377\0\360\364\377\2\364\377\377\2\362\377\377\2\361\376\377\4\357\377" +\ + "\377\4\356\376\377\5\356\376\377\7\355\375\377\7\347\367\377\6\320\340" +\ + "\377\5\243\261\377\19>\377\0\0\0\332\0\0\0_\0\0\0\21\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\14\0\0\0%\0\0\0Y\1\0\0\260\30\16\16\364" +\ + "U+'\376|HC\376zUQ\377sUS\377hQN\377OGF\3778\77@\3774A@\377\22$.\377\3" +\ + "\30q\377\5\24\231\377\6\23\274\377\6\23\334\377\10\25\361\377\6\25\371" +\ + "\377\6\27\374\377\7\27\374\377\6\27\374\377\5\26\375\377\5\26\374\377" +\ + "\6\26\374\377\6\26\375\377\6\26\374\377\6\26\375\377\6\27\375\377\6\26" +\ + "\375\377\6\27\375\377\5\26\375\377\6\27\376\377\6\26\375\377\7\26\374" +\ + "\377\7\26\367\377\7\25\355\377\6\22\334\377\6\13\267\377\4R\233\377\2" +\ + "\334\344\377\1\365\375\377\2\362\377\377\4\360\377\377\4\357\377\377" +\ + "\4\357\377\377\7\356\376\377\7\354\374\377\7\337\360\377\6\272\312\377" +\ + "\3s}\376\0\6\6\372\0\0\0\227\0\0\0+\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0" +\ + "\0\0\24\0\0\0\66\0\0\0~\3\1\1\330\33\17\16\374/%$\377\27\65\66\377\16" +\ + "IM\377\7ck\377\5u~\377\4\205\220\377\4\215\230\377\4\226\242\377\3\235" +\ + "\252\377\3\240\255\377\3\243\255\377\4\230\246\377\3\216\236\377\5p\224" +\ + "\377\5A\233\377\6 \302\377\6\24\353\377\6\27\375\377\6\27\375\377\6\27" +\ + "\375\377\6\26\374\377\6\27\375\377\6\27\375\377\6\27\375\377\6\27\375" +\ + "\377\6\27\375\377\6\27\374\377\6\26\374\377\5\26\374\377\5\27\375\377" +\ + "\5\26\375\377\6\27\376\377\7\26\374\377\6\25\372\377\6\25\365\377\6\24" +\ + "\347\377\7\16\317\377\6$\236\377\2\300\314\377\2\364\376\377\4\360\376" +\ + "\377\4\357\377\377\4\356\376\377\6\356\377\377\6\355\375\377\10\347\370" +\ + "\377\7\315\335\377\6\234\251\377\1%(\377\0\0\0\316\0\0\0M\0\0\0\11\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\1\0\0\0\11\0\0\0\37\0\0\0P\0\0\0\245\0\5\5\360\7-/\377\10[c\377" +\ + "\3\203\215\376\3\233\250\377\4\253\267\377\4\266\304\377\4\276\314\377" +\ + "\4\304\323\377\5\311\330\377\4\316\335\377\5\321\342\377\5\324\343\377" +\ + "\5\325\346\377\6\325\346\377\4\323\343\377\5\314\332\377\4\275\312\377" +\ + "\4\242\261\377\4m\236\377\4/\253\377\5\26\362\377\4\26\375\377\4\27\375" +\ + "\377\4\26\375\377\4\26\375\377\4\26\375\377\4\26\375\377\5\26\375\377" +\ + "\4\26\375\377\4\27\375\377\5\27\375\377\5\27\375\377\6\26\374\377\6\27" +\ + "\375\377\7\27\376\377\6\26\375\377\7\26\375\377\7\25\370\377\7\25\357" +\ + "\377\6\21\327\377\6\26\244\377\3\257\301\377\3\366\377\377\4\357\376" +\ + "\377\5\357\377\377\6\356\377\377\6\356\376\377\7\352\373\377\10\332\352" +\ + "\377\6\256\275\377\3U\134\377\0\0\0\363\0\0\0s\0\0\0\26\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\17\0\0\0" +\ + "\62\0\0\0w\0\5\5\315\1\62\65\373\3nx\377\4\232\250\377\5\262\300\377" +\ + "\5\303\322\377\5\317\337\377\6\330\350\377\4\335\356\377\5\342\363\377" +\ + "\4\345\366\377\4\346\370\377\5\351\371\377\4\351\373\377\5\352\374\377" +\ + "\5\353\374\377\5\353\374\377\5\352\373\377\5\346\367\377\4\340\362\377" +\ + "\6\330\351\377\5\306\322\377\3\220\232\377\3\42\276\377\5\26\376\377" +\ + "\4\27\375\377\4\27\375\377\4\27\375\377\4\27\375\377\4\27\375\377\3\27" +\ + "\375\377\4\30\375\377\5\27\375\377\4\26\375\377\5\26\375\377\5\27\375" +\ + "\377\5\26\374\377\5\26\374\377\6\27\375\377\7\27\376\377\7\26\375\377" +\ + "\10\26\373\377\10\25\362\377\7\21\335\377\5\25\250\377\3\255\301\377" +\ + "\4\365\377\377\5\357\376\377\5\356\377\377\6\356\377\377\7\354\376\377" +\ + "\7\341\362\377\7\274\313\377\4t~\376\0\4\4\375\0\0\0\230\0\0\0'\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\30\0\0\0" +\ + "H\0\0\0\240\1\36 \355\3hp\377\4\237\253\377\5\270\306\377\6\315\335\377" +\ + "\5\333\353\377\6\343\364\377\6\347\370\377\5\353\374\377\4\354\375\377" +\ + "\3\354\375\377\4\355\376\377\3\356\376\377\3\356\376\377\3\356\376\377" +\ + "\3\356\377\377\3\356\377\377\4\356\377\377\3\356\376\377\4\355\376\377" +\ + "\4\354\375\377\5\352\374\377\5\334\355\377\4\267\277\377\3:\250\377\5" +\ + "\25\376\377\4\31\375\377\3\31\375\377\4\31\375\377\4\30\375\377\4\30" +\ + "\375\377\4\30\375\377\4\27\375\377\3\27\375\377\4\27\375\377\5\30\375" +\ + "\377\5\27\375\377\5\27\375\377\5\30\375\377\5\27\374\377\6\30\375\377" +\ + "\7\27\375\377\7\27\375\377\7\26\373\377\10\25\363\377\7\22\333\377\6" +\ + "\32\242\377\4\274\315\377\5\363\377\377\6\357\377\377\7\360\376\377\10" +\ + "\356\376\377\10\345\366\377\7\306\326\377\5\212\226\377\0\15\16\376\0" +\ + "\0\0\267\0\0\09\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0" +\ + "\0\0\35\0\0\0Z\0\5\5\303\2DJ\372\4\212\226\377\6\263\300\377\6\314\334" +\ + "\377\7\334\355\377\7\347\367\377\6\354\374\377\5\354\375\377\4\356\376" +\ + "\377\3\357\376\377\2\356\377\377\2\357\377\377\2\356\376\377\2\357\377" +\ + "\377\2\356\377\377\3\356\377\377\2\357\377\377\2\357\377\377\2\357\377" +\ + "\377\4\357\377\377\4\356\377\377\4\356\377\377\4\355\376\377\5\344\365" +\ + "\377\4\305\322\377\2L\240\377\3\25\370\377\4\32\374\377\4\32\375\377" +\ + "\4\31\375\377\3\32\375\377\3\32\375\377\4\32\375\377\4\31\375\377\4\31" +\ + "\375\377\4\31\375\377\4\30\375\377\5\30\375\377\4\30\375\377\4\27\375" +\ + "\377\5\27\375\377\6\30\375\377\6\27\374\377\6\26\375\377\10\27\375\377" +\ + "\10\27\373\377\10\27\361\377\10\21\325\377\6\61\240\377\5\336\344\377" +\ + "\5\360\377\377\6\356\376\377\10\356\376\377\11\350\371\377\10\314\335" +\ + "\377\6\225\242\377\0\25\27\377\0\0\0\317\0\0\0J\0\0\0\6\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0" +\ + "\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\4\0\0\0\15\0\0\0(\0\0\0i\0\7\7\325\2\134d\374\5\237\253" +\ + "\376\5\302\322\377\7\331\351\377\7\345\365\377\6\353\374\377\5\354\374" +\ + "\377\5\356\375\377\3\355\377\377\4\357\377\377\3\356\377\377\2\357\377" +\ + "\377\3\357\377\377\3\357\377\377\1\357\377\377\2\357\377\377\2\357\377" +\ + "\377\2\357\377\377\2\360\377\377\2\356\377\377\3\356\377\377\2\356\377" +\ + "\377\3\356\377\377\3\356\377\377\4\351\370\377\4\322\337\377\2m\232\377" +\ + "\3\27\350\377\4\33\375\377\4\32\375\377\3\32\375\377\3\32\375\377\3\31" +\ + "\375\377\3\31\375\377\2\31\375\377\3\32\375\377\3\32\375\377\3\30\375" +\ + "\377\3\31\375\377\5\27\375\377\4\30\375\377\4\30\375\377\6\30\375\377" +\ + "\5\30\375\377\7\26\374\377\10\30\376\377\10\27\374\377\10\27\372\377" +\ + "\7\25\355\377\7\16\313\377\6X\241\377\6\362\373\377\7\360\377\377\10" +\ + "\356\377\377\10\351\372\377\10\320\341\377\6\235\253\377\0!#\377\0\0" +\ + "\0\335\0\0\0W\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\2\0\0\0\5\0\0\0\14\0\0\0\24\0\0\0\35\0\0\0&\0\0\0*\0\0\0,\0\0\0,\0\0" +\ + "\0,\0\0\0*\0\0\0'\0\0\0 \0\0\0\31\0\0\0\17\0\0\0\7\0\0\0\2\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\17\0\0\0$\0\0\0I\0\0\0\213\0\12" +\ + "\12\341\3em\375\5\245\262\376\6\312\331\377\6\336\360\377\7\352\371\377" +\ + "\6\354\375\377\5\355\375\377\5\356\376\377\4\356\377\377\4\356\376\377" +\ + "\3\357\377\377\2\357\377\377\3\360\377\377\3\361\377\377\2\361\377\377" +\ + "\2\362\377\377\2\362\377\377\2\362\377\377\2\362\377\377\2\361\377\377" +\ + "\1\361\377\377\2\360\377\377\3\360\377\377\2\356\377\377\2\356\377\377" +\ + "\3\353\372\377\4\327\345\377\3\206\241\377\3\33\330\377\3\32\375\377" +\ + "\2\32\375\377\2\32\375\377\3\31\375\377\3\31\375\377\3\31\375\377\3\30" +\ + "\375\377\2\30\375\377\3\32\375\377\4\31\375\377\3\31\375\377\5\30\375" +\ + "\377\5\30\375\377\4\27\375\377\5\30\375\377\5\27\375\377\7\27\375\377" +\ + "\6\26\374\377\10\26\375\377\10\27\374\377\10\26\371\377\7\24\346\377" +\ + "\7\23\266\377\6\237\271\377\7\361\376\377\10\356\377\377\11\351\373\377" +\ + "\10\321\341\377\6\236\254\377\0#&\377\0\0\0\343\0\0\0\134\0\0\0\13\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\22\0\0\0%\0\0\0\77\0\0\0]\0\0\0" +\ + "\201\0\0\0\237\0\0\0\263\0\0\0\274\0\0\0\277\0\0\0\300\0\0\0\277\0\0" +\ + "\0\274\0\0\0\265\0\0\0\244\0\0\0\210\0\0\0g\0\0\0I\0\0\0-\0\0\0\30\0" +\ + "\0\0\14\0\0\0\14\0\0\0\27\0\0\0\61\0\0\0^\0\0\0\236\0\0\0\326\4\12\11" +\ + "\367\4ai\376\6\247\265\377\7\315\336\376\10\342\363\377\7\352\373\377" +\ + "\6\355\375\377\6\355\376\377\4\357\377\377\5\356\376\377\3\357\377\377" +\ + "\3\360\377\377\2\360\377\377\2\360\377\377\1\362\377\377\1\362\377\377" +\ + "\2\363\377\377\2\363\377\377\1\363\377\377\0\362\377\377\0\362\377\377" +\ + "\1\363\377\377\1\363\377\377\1\361\377\377\1\361\377\377\3\360\377\377" +\ + "\3\357\377\377\2\355\374\377\3\334\353\377\2\237\255\377\2!\305\377\3" +\ + "\33\375\377\3\33\375\377\3\33\375\377\3\34\375\377\3\34\375\377\3\33" +\ + "\375\377\3\32\375\377\3\32\375\377\3\32\375\377\4\33\375\377\4\32\375" +\ + "\377\4\31\375\377\5\30\375\377\5\30\375\377\5\30\375\377\5\27\375\377" +\ + "\7\31\375\377\6\27\376\377\10\30\376\377\10\30\375\377\11\27\374\377" +\ + "\10\25\365\377\7\21\331\377\7-\241\377\10\346\356\377\10\356\376\377" +\ + "\11\351\372\377\11\316\337\377\6\231\247\377\0\32\35\377\0\0\0\341\0" +\ + "\0\0Z\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\12\0\0\0\36\0\0\0C\0\0\0v\0\0\0\260\3\7" +\ + "\10\331\16\11\11\357\42\17\15\3733\25\21\376G\30\24\377M\34\27\377O\35" +\ + "\30\377O\36\30\377N\35\30\377L\34\27\377E\30\24\3772\23\20\377\35\16" +\ + "\14\375\13\10\10\362\1\5\5\334\0\0\0\257\0\0\0|\0\0\0\134\0\0\0X\0\0" +\ + "\0y\0\0\0\270\12\11\12\351+*\22\37610\23\377\11KL\376\6\241\257\377\7" +\ + "\313\333\377\10\343\364\377\7\352\374\377\7\356\375\377\6\356\376\377" +\ + "\5\356\377\377\5\357\377\377\4\360\377\377\3\360\377\377\2\361\377\377" +\ + "\3\362\377\377\2\363\377\377\2\363\377\377\2\364\377\377\1\363\377\377" +\ + "\0\363\377\377\1\363\377\377\1\364\377\377\1\364\377\377\1\363\377\377" +\ + "\0\363\377\377\1\363\377\377\2\363\377\377\1\362\377\377\3\361\377\377" +\ + "\3\357\375\377\3\340\356\377\2\254\266\377\2*\267\377\3\35\375\377\3" +\ + "\35\375\377\2\35\375\377\1\35\375\377\1\34\375\377\2\34\375\377\3\34" +\ + "\375\377\3\33\375\377\3\31\375\377\3\32\375\377\4\33\375\377\4\33\375" +\ + "\377\4\32\375\377\5\31\375\377\5\31\375\377\6\30\375\377\5\30\375\377" +\ + "\7\27\374\377\6\27\374\377\7\30\376\377\11\27\375\377\10\27\373\377\10" +\ + "\26\354\377\7\20\301\377\7\223\265\377\11\356\375\377\12\346\370\377" +\ + "\10\311\331\377\7\220\234\377\0\16\17\377\0\1\1\326\0\0\0Q\0\0\0\10\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\17\0" +\ + "\0\0-\0\0\0b\0\1\1\250\13\6\6\347$\24\23\377M\37\33\377v)!\376\2166," +\ + "\376\237D:\377\252TJ\377\256\134R\377\262\134S\377\264\134T\377\264\134" +\ + "T\377\264]T\377\261\134S\377\255\134R\377\250UL\377\232G=\377\2107.\377" +\ + "h(!\376&\21\17\377\20\10\7\377\4\2\2\357\1\1\1\353\26\26\16\376GD\36" +\ + "\377{x'\376|y2\377\27\77\67\377\5\224\241\377\7\306\324\377\10\341\362" +\ + "\377\10\352\374\377\10\356\376\377\6\356\376\377\5\355\376\377\5\357" +\ + "\377\377\4\360\377\377\3\360\377\377\3\361\377\377\3\362\377\377\2\364" +\ + "\377\377\1\364\377\377\1\365\377\377\0\366\377\377\0\367\377\377\1\367" +\ + "\377\377\0\367\377\377\0\367\377\377\0\366\377\377\0\366\377\377\1\365" +\ + "\377\377\1\364\377\377\1\363\377\377\1\363\377\377\2\362\377\377\3\360" +\ + "\375\377\2\343\360\377\2\264\274\377\2\61\253\377\3\35\377\377\3\36\374" +\ + "\377\2\36\375\377\2\35\375\377\2\35\375\377\1\35\375\377\3\36\375\377" +\ + "\3\36\375\377\3\34\375\377\3\34\375\377\4\33\375\377\3\33\375\377\5\32" +\ + "\375\377\5\32\375\377\5\32\375\377\6\31\375\377\6\31\375\377\6\31\374" +\ + "\377\7\31\376\377\10\27\375\377\10\30\376\377\11\30\375\377\11\27\366" +\ + "\377\10\22\332\377\7\61\235\377\10\343\357\377\11\343\365\377\10\300" +\ + "\320\377\5}\211\377\0\6\10\377\0\0\0\305\0\0\0B\0\0\0\5\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0+\0\0\0l\4\2\2\305\27\16" +\ + "\15\367O'#\377\20781\377\240D:\377\256d[\377\271\202|\377\304\224\217" +\ + "\377\315\235\230\377\325\240\234\377\330\243\235\377\333\243\237\377" +\ + "\334\246\240\377\334\246\240\377\334\246\237\377\331\243\236\377\330" +\ + "\242\234\377\323\236\232\377\313\231\225\377\277\221\215\377\260}w\377" +\ + "\236`X\377\223G\77\377y;4\377W3+\377i_&\377\213\212F\377\243\242p\377" +\ + "JR=\377\4r|\377\7\265\305\377\11\332\354\377\10\351\372\377\7\354\375" +\ + "\377\7\357\377\377\5\355\377\377\5\357\377\377\5\357\377\377\4\360\377" +\ + "\377\3\361\377\377\3\362\377\377\2\364\377\377\3\364\377\377\1\366\377" +\ + "\377\1\366\377\377\0\367\377\377\1\366\377\377\1\370\377\377\0\366\377" +\ + "\377\0\370\377\377\0\370\377\377\0\370\377\377\0\370\377\377\1\365\377" +\ + "\377\0\365\377\377\2\364\377\377\1\364\376\377\3\361\376\377\3\346\362" +\ + "\377\2\277\307\377\1\77\241\377\3\35\374\377\3\37\375\377\3\37\375\377" +\ + "\1\37\375\377\2\35\375\377\1\36\375\377\3\36\375\377\3\37\375\377\3\35" +\ + "\375\377\2\34\375\377\4\34\375\377\3\33\375\377\5\34\375\377\5\32\375" +\ + "\377\5\31\375\377\6\32\375\377\5\31\375\377\7\31\374\377\7\31\375\377" +\ + "\10\27\376\377\10\27\375\377\11\30\375\377\11\27\373\377\11\25\353\377" +\ + "\10\15\267\377\11\251\304\377\11\343\362\377\10\267\307\377\4kv\377\0" +\ + "\1\1\376\0\0\0\257\0\0\0\64\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\3\0\0\0\32\0\0\0S\1\2\2\263\35\22\22\365^'!\376\216<3\377\251ia\377" +\ + "\274\206\177\377\312\222\214\377\330\233\223\377\341\241\231\377\350" +\ + "\244\236\377\354\251\241\377\361\253\244\377\364\255\246\377\365\255" +\ + "\246\377\365\257\247\377\366\256\246\377\365\257\247\377\365\254\246" +\ + "\377\363\254\245\377\360\252\242\377\353\247\241\377\345\242\234\377" +\ + "\333\234\225\377\321\226\217\377\306\215\207\377\274\207\200\377\256" +\ + "rl\377\234MD\377vG<\377[U>\377\17IJ\377\6\240\257\377\10\320\341\377" +\ + "\11\347\370\377\11\354\375\377\10\357\376\377\10\360\377\377\6\356\377" +\ + "\377\4\360\377\377\4\360\377\377\3\361\377\377\4\362\377\377\2\364\377" +\ + "\377\3\365\377\377\1\365\377\377\2\366\377\377\1\367\377\377\0\370\377" +\ + "\377\1\370\377\377\0\371\377\377\1\370\377\377\0\370\377\377\0\370\377" +\ + "\377\0\370\377\377\0\370\377\377\1\367\377\377\0\365\377\377\2\364\377" +\ + "\377\1\364\377\377\3\363\376\377\3\347\362\377\3\300\310\377\1A\240\377" +\ + "\3\35\375\377\3\37\375\377\3 \375\377\3\37\375\377\1\36\375\377\3\37" +\ + "\375\377\2\36\375\377\3\36\375\377\2\37\375\377\3\35\375\377\4\34\375" +\ + "\377\4\34\375\377\5\33\375\377\5\32\375\377\5\33\375\377\6\31\375\377" +\ + "\5\31\375\377\7\31\375\377\7\30\374\377\10\30\376\377\10\30\376\377\11" +\ + "\27\376\377\11\30\375\377\11\26\363\377\10\20\321\377\10a\244\377\12" +\ + "\330\345\377\10\251\271\377\2LR\376\0\0\0\374\0\0\0\226\0\0\0'\0\0\0" +\ + "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\0\0\60\0\0\0\211\21\14\13\346P \34" +\ + "\376\217C:\377\256ld\377\302\211\203\377\325\227\221\377\342\235\226" +\ + "\377\354\244\235\377\362\251\241\377\366\253\243\377\373\256\246\377" +\ + "\374\256\246\377\374\257\247\377\375\257\247\377\376\260\250\377\376" +\ + "\257\250\377\376\257\247\377\376\260\250\377\376\260\250\377\375\261" +\ + "\250\377\374\257\247\377\373\256\245\377\370\254\244\377\364\251\242" +\ + "\377\356\246\236\377\350\241\232\377\342\234\225\377\325\227\220\377" +\ + "\303\212\205\377\246le\377\77+)\377\5v\200\377\10\272\312\377\11\336" +\ + "\360\377\11\353\374\377\7\356\376\377\7\357\377\377\7\360\377\377\5\356" +\ + "\377\377\5\360\377\377\4\361\377\377\3\362\377\377\4\363\377\377\3\365" +\ + "\377\377\3\365\377\377\2\367\377\377\2\367\377\377\2\367\377\377\1\371" +\ + "\377\377\0\372\377\377\1\372\377\377\1\372\377\377\0\370\377\377\1\371" +\ + "\377\377\1\372\377\377\1\371\377\377\0\370\377\377\2\366\377\377\1\366" +\ + "\377\377\2\365\377\377\3\363\376\377\3\351\364\377\3\305\314\377\1F\236" +\ + "\377\3\36\373\377\3!\375\377\3!\375\377\2 \375\377\3!\375\377\2 \375" +\ + "\377\3\37\375\377\3 \375\377\2\36\375\377\4\36\375\377\4\35\375\377\4" +\ + "\35\375\377\5\34\375\377\5\33\375\377\5\33\375\377\5\32\375\377\7\32" +\ + "\375\377\6\32\375\377\6\31\375\377\7\31\375\377\10\31\375\377\10\27\376" +\ + "\377\11\27\374\377\12\27\371\377\11\24\340\377\10(\236\377\13\271\310" +\ + "\377\7\226\245\377\5!$\377\0\0\0\367\0\0\0y\0\0\0\31\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\21\0\0\0K\1\3\3\2670\30\26\372\1773,\377\251_X\377\302\205" +\ + "\177\377\327\225\216\377\346\234\224\377\361\243\233\377\366\247\236" +\ + "\377\373\252\242\377\375\254\243\377\376\254\243\377\376\254\244\377" +\ + "\377\254\243\377\377\254\244\377\377\254\243\377\376\253\243\377\377" +\ + "\253\243\377\377\253\243\377\377\253\243\377\377\253\243\377\377\254" +\ + "\244\377\377\254\243\377\376\254\243\377\375\254\243\377\375\254\243" +\ + "\377\373\252\242\377\372\251\240\377\364\245\235\377\351\235\225\377" +\ + "\323\217\210\377\252uo\377\32\62\64\377\5\226\244\377\11\314\335\377" +\ + "\11\346\370\377\11\355\376\377\10\356\377\377\10\357\376\377\7\357\377" +\ + "\377\5\360\377\377\5\360\377\377\4\362\377\377\3\363\377\377\4\363\377" +\ + "\377\3\366\377\377\3\366\377\377\2\367\377\377\2\367\377\377\1\371\377" +\ + "\377\0\372\377\377\1\373\377\377\1\372\377\377\1\372\377\377\1\373\377" +\ + "\377\1\373\377\377\1\372\377\377\0\372\377\377\1\370\377\377\2\366\377" +\ + "\377\1\366\377\377\2\364\377\377\3\363\376\377\3\351\364\377\3\305\314" +\ + "\377\1G\236\377\2\36\374\377\3!\375\377\3 \375\377\3\42\375\377\3!\375" +\ + "\377\3!\375\377\3!\375\377\3\37\375\377\3 \375\377\3\36\375\377\4\35" +\ + "\375\377\4\35\375\377\5\34\375\377\5\35\375\377\5\34\375\377\6\32\375" +\ + "\377\6\32\375\377\6\32\375\377\10\31\375\377\7\30\374\377\11\31\375\377" +\ + "\10\27\375\377\11\30\375\377\12\27\372\377\11\26\347\377\7\21\251\377" +\ + "\11\214\242\377\10lv\377\2\5\5\377\0\1\1\325\0\0\0W\0\0\0\16\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\1\0\0\0\24\0\0\0]\10\10\10\321F\36\32\376\227;2\377\265tl\377\320" +\ + "\216\206\377\343\226\216\377\357\237\226\377\366\243\232\377\373\246" +\ + "\234\377\375\247\236\377\376\247\235\377\376\247\236\377\377\247\236" +\ + "\377\377\246\236\377\377\246\236\377\377\246\236\377\377\247\237\377" +\ + "\377\247\237\377\377\247\237\377\377\250\240\377\377\247\237\377\377" +\ + "\247\237\377\377\246\236\377\377\246\235\377\377\246\236\377\377\246" +\ + "\236\377\376\247\236\377\376\247\236\377\376\250\236\377\371\245\234" +\ + "\377\355\235\224\377\325\215\206\377\226e^\377\12HN\377\7\252\271\377" +\ + "\11\330\352\377\12\352\373\377\10\355\376\377\10\356\377\377\10\357\377" +\ + "\377\6\355\377\377\5\360\377\377\5\360\377\377\5\363\377\377\4\363\377" +\ + "\377\3\366\377\377\3\365\377\377\2\366\377\377\2\370\377\377\1\370\377" +\ + "\377\2\372\377\377\2\372\377\377\0\372\377\377\1\373\377\377\1\373\377" +\ + "\377\1\373\377\377\1\372\377\377\1\372\377\377\1\371\377\377\1\371\377" +\ + "\377\2\370\377\377\1\367\377\377\2\366\377\377\3\364\376\377\3\352\364" +\ + "\377\2\305\313\377\2F\236\377\4\37\374\377\3!\375\377\3!\375\377\3!\375" +\ + "\377\3\42\375\377\3 \375\377\3 \375\377\2 \375\377\3 \375\377\4\37\375" +\ + "\377\3\36\375\377\5\35\375\377\5\36\375\377\5\33\375\377\5\34\375\377" +\ + "\6\32\375\377\6\32\375\377\6\31\375\377\10\32\375\377\7\31\375\377\11" +\ + "\30\375\377\11\31\376\377\12\30\376\377\11\30\374\377\12\26\353\377\10" +\ + "\14\264\377\7_\201\377\7\62\64\376\0\0\0\374\0\0\0\246\0\0\0\66\0\0\0" +\ + "\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\1\0\0\0\26\0\0\0`\15\12\12\334] \32\376\237>2\377\301\177w\376\333" +\ + "\216\205\377\353\227\216\377\366\235\224\377\372\241\230\377\375\242" +\ + "\230\377\376\242\230\377\377\243\231\377\377\242\230\377\377\242\231" +\ + "\377\377\241\230\377\377\241\230\377\377\241\232\377\377\242\232\377" +\ + "\377\244\234\377\377\245\235\377\377\247\237\377\377\246\236\377\377" +\ + "\244\234\377\377\243\233\377\377\241\231\377\377\241\231\377\377\241" +\ + "\230\377\377\241\231\377\377\242\231\377\377\242\231\377\376\242\227" +\ + "\377\370\236\225\377\351\225\214\377\321\207~\377uOK\377\6lw\377\10\267" +\ + "\307\377\12\340\361\377\12\354\375\377\10\356\377\377\10\357\377\377" +\ + "\7\357\377\377\6\356\377\377\6\360\377\377\5\361\377\377\5\362\377\377" +\ + "\3\363\377\377\4\364\377\377\3\366\377\377\2\370\377\377\3\367\377\377" +\ + "\2\372\377\377\1\372\377\377\1\372\377\377\1\373\377\377\1\374\377\377" +\ + "\1\374\377\377\0\374\377\377\1\374\377\377\1\373\377\377\1\372\377\377" +\ + "\2\371\377\377\2\370\377\377\3\367\377\377\2\366\377\377\3\365\376\377" +\ + "\3\352\363\377\2\307\315\377\2J\233\377\4 \372\377\3\42\375\377\3\42" +\ + "\375\377\3\42\375\377\2\42\375\377\3\42\375\377\3!\375\377\4\42\375\377" +\ + "\3 \375\377\4\37\375\377\3\36\375\377\5\36\375\377\4\35\375\377\5\35" +\ + "\375\377\6\34\375\377\5\33\375\377\7\33\375\377\6\31\375\377\10\32\375" +\ + "\377\7\31\375\377\11\31\376\377\11\31\376\377\12\30\376\377\12\31\374" +\ + "\377\12\26\353\377\7\15\273\377\11)Y\377\2\10\7\377\0\0\0\350\0\0\0p" +\ + "\0\0\0\32\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\26\0\0\0d\16\14\14\340n&\35\375\247:-\377\310\177" +\ + "v\377\342\217\205\377\362\226\214\377\370\233\221\377\374\235\223\377" +\ + "\375\234\223\377\377\235\222\377\377\235\222\377\377\234\222\377\377" +\ + "\233\222\377\377\233\222\377\377\233\222\377\377\233\222\377\377\235" +\ + "\224\377\377\240\226\377\377\245\234\377\377\251\241\377\377\255\245" +\ + "\377\377\254\245\377\377\250\240\377\377\242\231\377\377\237\226\377" +\ + "\377\234\223\377\377\233\222\377\377\233\222\377\377\234\222\377\377" +\ + "\233\222\377\374\233\222\377\365\227\215\377\343\214\203\377\306zq\377" +\ + "N;:\377\7\211\226\377\10\303\323\377\12\344\366\377\12\354\376\377\10" +\ + "\356\376\377\11\357\377\377\7\360\377\377\6\356\377\377\6\361\377\377" +\ + "\6\361\377\377\4\363\377\377\4\363\377\377\3\366\377\377\3\367\377\377" +\ + "\3\367\377\377\2\371\377\377\3\371\377\377\2\372\377\377\1\373\377\377" +\ + "\2\374\377\377\2\374\377\377\2\374\377\377\2\374\377\377\1\374\377\377" +\ + "\1\373\377\377\1\372\377\377\2\370\377\377\2\370\377\377\2\366\377\377" +\ + "\3\366\377\377\3\365\376\377\4\351\363\377\3\303\310\377\2D\234\377\4" +\ + "!\374\377\4#\375\377\4#\375\377\4#\375\377\4#\375\377\4#\375\377\4!\375" +\ + "\377\4\42\375\377\4!\375\377\3\37\375\377\5\37\375\377\4\37\375\377\5" +\ + "\37\375\377\6\36\375\377\5\34\375\377\5\33\375\377\7\33\375\377\6\33" +\ + "\375\377\10\31\375\377\7\30\374\377\11\31\376\377\11\31\376\377\11\30" +\ + "\376\377\12\31\374\377\12\26\353\377\10\20\275\377\4\6>\377\0\0\0\377" +\ + "\0\0\0\276\0\0\0D\0\0\0\12\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0]\14\13\13\333j#\34\375\250.\37" +\ + "\377\313ul\376\343\212\201\377\363\223\210\377\371\227\214\377\375\230" +\ + "\215\377\375\231\216\377\376\230\216\377\377\230\216\377\377\230\215" +\ + "\377\377\227\215\377\377\227\214\377\377\225\213\377\377\225\214\377" +\ + "\377\226\215\377\377\227\216\377\377\237\227\377\377\251\242\377\377" +\ + "\267\260\377\377\277\271\377\377\275\267\377\377\263\253\377\377\245" +\ + "\235\377\377\234\224\377\377\227\216\377\377\227\215\377\377\227\215" +\ + "\377\377\226\213\377\377\226\214\377\373\225\213\377\361\217\207\377" +\ + "\335\204|\377\271ng\377+/0\377\6\223\241\377\11\312\333\377\11\346\371" +\ + "\377\12\354\376\377\10\356\377\377\10\357\377\377\7\356\377\377\7\357" +\ + "\377\377\6\361\377\377\5\362\377\377\5\363\377\377\5\363\377\377\4\365" +\ + "\377\377\3\367\377\377\4\367\377\377\2\371\377\377\3\371\377\377\2\373" +\ + "\377\377\1\374\377\377\1\374\377\377\2\374\377\377\2\374\377\377\1\374" +\ + "\377\377\2\374\377\377\2\373\377\377\1\372\377\377\3\370\377\377\3\370" +\ + "\377\377\3\366\377\377\4\366\377\377\4\365\376\377\3\351\363\377\3\302" +\ + "\310\377\3B\240\377\4 \373\377\4#\375\377\4#\375\377\4#\375\377\4#\375" +\ + "\377\4#\375\377\4\42\375\377\3\42\375\377\4 \375\377\5!\375\377\5\37" +\ + "\375\377\4\37\375\377\6\37\375\377\5\35\375\377\6\35\375\377\7\34\375" +\ + "\377\6\33\375\377\10\33\375\377\10\32\375\377\11\31\374\377\10\32\376" +\ + "\377\12\32\376\377\12\31\376\377\13\32\373\377\12\26\353\377\10\20\275" +\ + "\377\3\5F\377\0\0\0\373\0\0\0\234\0\0\0+\0\0\0\4\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0G\10\10\10\316]#\35" +\ + "\376\244\42\23\377\313ZM\376\345\210~\377\364\215\201\377\373\222\207" +\ + "\377\375\221\206\377\376\221\206\377\377\221\206\377\376\221\206\377" +\ + "\377\222\206\377\377\221\206\377\377\220\205\377\377\220\205\377\377" +\ + "\217\204\377\377\216\204\377\377\217\205\377\377\223\213\377\377\240" +\ + "\230\377\377\263\255\377\377\313\307\377\377\331\326\377\377\326\322" +\ + "\377\377\303\276\377\377\254\244\377\377\233\223\377\377\222\211\377" +\ + "\377\217\205\377\377\217\205\377\376\221\205\377\377\221\205\377\372" +\ + "\216\202\377\356\210~\377\327{r\377\255b\134\377\26,-\377\6\232\250\377" +\ + "\11\317\337\377\12\347\372\377\12\355\376\377\11\356\377\377\10\357\377" +\ + "\377\7\357\377\377\7\357\377\377\7\361\377\377\6\363\377\377\5\363\377" +\ + "\377\5\364\377\377\5\365\377\377\4\366\377\377\4\367\377\377\3\370\377" +\ + "\377\3\372\377\377\3\373\377\377\3\372\377\377\3\373\377\377\2\373\377" +\ + "\377\2\373\377\377\2\373\377\377\2\374\377\377\2\373\377\377\3\372\377" +\ + "\377\2\370\377\377\3\370\377\377\2\366\377\377\3\365\377\377\3\364\375" +\ + "\377\5\347\361\377\3\273\303\377\3<\244\377\4\42\375\377\4#\375\377\3" +\ + "#\375\377\4\42\375\377\3\42\375\377\3\42\375\377\3#\375\377\5\42\375" +\ + "\377\5!\375\377\5!\375\377\4\37\375\377\6\37\375\377\5\35\375\377\6\35" +\ + "\375\377\6\35\375\377\7\34\375\377\7\34\375\377\10\33\375\377\10\33\375" +\ + "\377\11\31\374\377\10\32\376\377\12\32\376\377\12\32\375\377\13\30\373" +\ + "\377\12\27\351\377\10\20\272\377\3\6J\377\0\0\0\366\0\0\0\212\0\0\0 " +\ + "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0" +\ + "\0-\1\3\3\257J\37\33\374\236%\27\377\3075$\377\344{p\377\364\211}\377" +\ + "\374\214\200\377\376\214\200\377\377\215\200\377\377\214\200\377\377" +\ + "\213\177\377\377\212\177\377\377\211~\377\377\212~\377\377\210}\377\377" +\ + "\207|\377\377\206{\377\377\205|\377\377\207~\377\377\214\204\377\377" +\ + "\236\227\377\377\273\265\377\376\335\332\377\375\363\364\377\375\356" +\ + "\355\377\377\321\316\377\377\257\251\377\377\230\220\377\377\213\202" +\ + "\377\377\210~\377\377\207}\377\377\210~\377\375\211~\377\371\207|\377" +\ + "\352\200u\377\322ri\377\250[T\377\27+,\377\6\233\251\377\11\317\340\377" +\ + "\13\350\372\377\12\355\376\377\11\356\377\377\10\357\377\377\10\361\377" +\ + "\377\7\357\377\377\7\360\377\377\6\362\377\377\4\362\377\377\5\365\377" +\ + "\377\4\365\377\377\6\366\377\377\5\370\377\377\5\370\377\377\4\371\377" +\ + "\377\3\372\377\377\3\372\377\377\2\372\377\377\2\373\377\377\2\373\377" +\ + "\377\2\373\377\377\3\372\377\377\2\372\377\377\2\371\377\377\3\370\377" +\ + "\377\3\370\377\377\3\367\377\377\3\366\377\377\3\363\375\377\4\345\360" +\ + "\377\3\264\273\377\3\64\252\377\5!\377\377\4\42\374\377\5#\375\377\4" +\ + "#\375\377\4#\375\377\4#\375\377\5\42\375\377\4!\375\377\5!\375\377\4" +\ + "!\375\377\4\37\375\377\6 \375\377\5\36\375\377\6\36\375\377\6\35\375" +\ + "\377\7\34\375\377\7\34\375\377\7\33\375\377\10\32\375\377\11\31\375\377" +\ + "\11\31\376\377\12\32\376\377\12\32\375\377\13\30\372\377\12\27\350\377" +\ + "\7\20\270\377\2\5D\377\0\0\0\363\0\0\0\200\0\0\0\35\0\0\0\1\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0\0\200*\25\24\363" +\ + "\223\42\26\376\276.\35\376\341K:\377\363\203y\377\373\205z\377\375\206" +\ + "y\377\377\205y\377\377\204y\377\377\204x\377\377\202x\377\377\202v\377" +\ + "\377\201u\377\377\200u\377\377~t\377\377}s\377\377{q\377\377zq\377\377" +\ + "}t\377\377\202z\377\377\226\220\377\377\267\262\377\376\334\332\377\375" +\ + "\366\365\377\375\356\356\377\377\321\315\377\377\251\243\377\377\215" +\ + "\207\377\377\202y\377\377~s\377\377}s\377\377~t\377\376\177u\377\367" +\ + "\177t\377\350xn\377\315j`\377\247WN\377 ))\377\6\227\244\377\12\315\336" +\ + "\377\12\347\371\377\12\355\376\377\12\356\377\377\11\357\377\377\10\357" +\ + "\377\377\6\357\377\377\7\360\377\377\13\362\377\377\16\363\377\377\21" +\ + "\364\377\377\17\365\377\377\16\366\377\377\15\367\377\377\14\370\377" +\ + "\377\12\371\377\377\12\371\377\377\10\371\377\377\7\372\377\377\6\371" +\ + "\377\377\5\372\377\377\4\372\377\377\3\371\377\377\4\371\377\377\3\371" +\ + "\377\377\3\370\377\377\3\370\377\377\4\366\377\377\5\365\377\377\5\362" +\ + "\374\377\5\342\355\377\3\253\263\377\4-\272\377\5\42\376\377\5#\374\377" +\ + "\4#\375\377\4\42\375\377\4\42\375\377\4\42\375\377\4\42\375\377\4\42" +\ + "\375\377\5!\375\377\6!\375\377\6!\375\377\5\37\375\377\5\37\375\377\6" +\ + "\36\375\377\6\35\375\377\6\34\375\377\10\34\375\377\7\33\375\377\11\33" +\ + "\375\377\10\32\375\377\12\32\375\377\11\31\376\377\12\32\375\377\13\30" +\ + "\372\377\12\25\344\377\7\20\263\377\2\58\376\0\0\0\360\0\0\0u\0\0\0\27" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0L\14\10" +\ + "\11\331q\35\25\376\264)\32\377\3303\37\377\357VD\377\372\201u\377\375" +\ + "\200s\377\376\177q\377\376}r\377\377}q\377\377{p\377\377zo\377\377yn" +\ + "\377\377xl\377\377vl\377\377sj\377\377ri\377\377qg\377\377qg\377\377" +\ + "qg\377\377xo\377\377\207\201\377\377\244\236\377\377\304\302\377\375" +\ + "\332\330\377\377\324\321\377\376\272\265\377\377\227\222\377\377\202" +\ + "{\377\377wn\377\377tj\377\377tj\377\377uk\377\376wm\377\367vj\377\346" +\ + "pe\377\314d[\377\250RJ\3770)(\377\6\220\235\377\12\310\332\377\13\345" +\ + "\370\377\13\355\376\377\12\355\376\377\11\356\377\377\7\355\377\377\23" +\ + "\357\377\377\37\360\377\377\36\361\377\377\34\363\377\377\31\366\377" +\ + "\377\30\365\377\377\26\366\377\377\24\367\377\377\24\371\377\377\23\372" +\ + "\377\377\21\372\377\377\20\373\377\377\16\372\377\377\16\373\377\377" +\ + "\15\373\377\377\13\372\377\377\12\371\377\377\11\371\377\377\10\371\377" +\ + "\377\10\370\377\377\6\367\377\377\4\365\377\377\4\365\377\377\4\362\374" +\ + "\377\5\337\351\377\3\235\252\377\11)\312\377\12'\375\377\11&\375\377" +\ + "\10%\375\377\7%\375\377\6$\375\377\6#\375\377\6#\375\377\6#\375\377\5" +\ + "!\375\377\5!\375\377\5\37\375\377\7\37\375\377\7\36\375\377\6\36\375" +\ + "\377\7\34\375\377\10\35\375\377\7\33\375\377\10\33\375\377\11\33\375" +\ + "\377\11\33\374\377\12\31\375\377\12\32\376\377\13\31\375\377\13\27\371" +\ + "\377\12\24\337\377\10\17\253\377\0\2\42\377\0\0\0\351\0\0\0e\0\0\0\20" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0$\0\0\0\250G\30" +\ + "\24\374\244\36\20\377\316.\34\376\3524\37\377\370TB\377\374yl\377\375" +\ + "vi\377\377vi\377\377vi\377\377tg\377\377qe\377\377qe\377\377oc\377\377" +\ + "ka\377\377i_\377\377h]\377\377g]\377\377f\134\377\377e\134\377\377e]" +\ + "\377\377i`\377\377tl\377\377\206\177\377\376\232\226\377\377\247\243" +\ + "\377\376\245\241\377\377\223\217\377\377~w\377\377oh\377\377i`\377\377" +\ + "g]\377\377g^\377\377kb\377\376mb\377\367l`\377\346g[\377\313[R\377\253" +\ + "OF\377N,(\377\10\177\212\377\13\300\321\377\14\341\364\377\14\352\375" +\ + "\377\13\355\377\377\13\356\377\377)\360\377\377-\360\377\377*\361\377" +\ + "\377%\361\377\377$\366\377\377\42\366\377\377\42\365\377\377 \367\377" +\ + "\377\36\366\377\377\34\370\377\377\32\371\377\377\30\372\377\377\26\371" +\ + "\377\377\26\372\377\377\24\372\377\377\22\372\377\377\21\372\377\377" +\ + "\21\371\377\377\16\371\377\377\17\370\377\377\16\367\377\377\15\367\377" +\ + "\377\14\365\377\377\11\364\377\377\6\361\373\377\5\334\350\377\4\223" +\ + "\246\377\16*\322\377\20,\375\377\16+\375\377\15*\375\377\14)\375\377" +\ + "\13(\375\377\12'\375\377\12%\375\377\10%\375\377\10$\375\377\6\42\375" +\ + "\377\5 \375\377\7\37\375\377\7\36\375\377\6\35\375\377\10\36\375\377" +\ + "\10\34\375\377\7\34\375\377\11\32\375\377\11\32\375\377\12\33\374\377" +\ + "\11\32\376\377\13\33\376\377\13\31\374\377\13\27\367\377\12\24\330\377" +\ + "\7\16\240\377\0\1\23\377\0\0\0\331\0\0\0V\0\0\0\14\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0[\31\15\13\354\205\25\12\377\275" +\ + "#\23\377\342,\32\377\3651\35\377\373I9\377\376n`\377\376k^\377\377k^" +\ + "\377\377h[\377\377h[\377\377fY\377\377eX\377\377bW\377\377`U\377\377" +\ + "^T\377\377]T\377\377[R\377\377[R\377\377YQ\377\377YQ\377\377[S\377\377" +\ + "_Y\377\377gb\377\377rm\377\377yt\377\377ws\377\377pi\377\377d^\377\377" +\ + "^V\377\377\134T\377\377[R\377\377\134S\377\377_V\377\376bW\377\367`U" +\ + "\377\350^S\377\315VL\377\257JA\377g.)\377\15fo\377\14\265\304\377\20" +\ + "\334\357\377\20\350\375\377\24\355\376\377:\357\377\377<\361\377\377" +\ + "7\362\377\3775\361\377\3772\362\377\3771\365\377\377.\364\377\377+\366" +\ + "\377\377)\365\377\377'\367\377\377&\370\377\377$\367\377\377\42\370\377" +\ + "\377 \371\377\377\37\372\377\377\36\372\377\377\34\372\377\377\33\372" +\ + "\377\377\32\371\377\377\30\371\377\377\30\367\377\377\25\366\377\377" +\ + "\24\366\377\377\24\365\377\377\24\364\377\377\21\356\372\377\12\325\337" +\ + "\377\6x\232\377\25,\344\377\26\60\375\377\25\61\375\377\24/\375\377\23" +\ + "/\375\377\22-\375\377\21-\375\377\20,\375\377\20*\375\377\17*\375\377" +\ + "\16(\375\377\14$\375\377\11!\375\377\7\36\375\377\7\36\375\377\10\36" +\ + "\375\377\10\35\375\377\10\34\375\377\10\33\375\377\11\33\375\377\11\32" +\ + "\374\377\12\32\376\377\13\32\376\377\13\31\374\377\12\27\363\377\11\24" +\ + "\317\377\6\14\206\377\0\0\11\377\0\0\0\311\0\0\0G\0\0\0\7\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\42\1\1\1\247P\23\16\375\250\30\12" +\ + "\377\323#\22\377\357)\26\377\372+\30\377\3768%\377\377cT\377\377aT\377" +\ + "\377`S\377\377^Q\377\377^Q\377\377\134O\377\377YN\377\377WL\377\377U" +\ + "K\377\377TK\377\377RJ\377\377QI\377\377PI\377\377PH\377\377OH\377\377" +\ + "PI\377\377QK\377\377UO\377\377YT\377\377[V\377\377[V\377\377XR\377\377" +\ + "SN\377\377QJ\377\377PI\377\377QI\377\377RJ\377\377TL\377\375UK\377\371" +\ + "WM\377\353VK\377\321PE\377\264F<\377\2054.\377\26:=\377\14\242\262\377" +\ + "\26\320\344\377\26\345\372\377=\355\376\377Q\361\377\377I\361\377\377" +\ + "G\360\377\377B\361\377\377\77\363\377\377=\363\377\3779\365\377\3777" +\ + "\366\377\3775\367\377\3772\367\377\3771\370\377\377/\367\377\377-\367" +\ + "\377\377+\370\377\377*\371\377\377(\371\377\377&\367\377\377$\371\377" +\ + "\377\42\367\377\377!\367\377\377 \366\377\377\36\365\377\377\36\365\377" +\ + "\377\35\363\376\377\35\364\377\377\34\354\366\377\30\317\327\377\17d" +\ + "\226\377\35\64\360\377\358\374\377\33\65\375\377\33\65\375\377\32\64" +\ + "\375\377\30\62\375\377\30\61\375\377\26/\375\377\25.\375\377\24,\375" +\ + "\377\23,\375\377\23*\375\377\22)\375\377\17'\375\377\11\37\375\377\10" +\ + "\35\375\377\11\35\375\377\11\34\375\377\13\33\375\377\12\33\375\377\12" +\ + "\34\376\377\14\34\375\377\13\32\375\377\14\32\374\377\12\26\360\377\12" +\ + "\22\305\377\4\11m\377\0\0\2\377\0\0\0\272\0\0\0;\0\0\0\5\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0O\23\7\6\350\212\22\10\377\276\32" +\ + "\14\377\343!\20\377\366%\22\377\375&\23\377\377%\23\377\376PB\377\377" +\ + "VI\377\377TH\377\377SG\377\377QE\377\377OD\377\377NC\377\377MB\377\377" +\ + "KB\377\377JA\377\377H@\377\377F@\377\377FA\377\377F@\377\377E@\377\377" +\ + "E\77\377\377E@\377\377EA\377\377FA\377\377GB\377\377GB\377\377FA\377" +\ + "\377FA\377\377F@\377\377F@\377\377FA\377\377GA\377\376IC\377\377JB\377" +\ + "\372KC\377\356KA\377\326H=\377\271@6\377\2317/\377/! \377\17\210\227" +\ + "\377\32\302\326\377*\342\365\377b\357\375\377_\360\376\377X\360\377\377" +\ + "U\360\377\377R\361\377\377M\362\377\377I\363\377\377F\364\377\377B\366" +\ + "\377\377A\367\377\377>\370\377\377<\370\377\377:\370\377\3778\371\377" +\ + "\3777\371\377\3775\371\377\3772\370\377\3771\371\377\3770\370\377\377" +\ + "-\367\377\377,\367\377\377+\366\377\377*\366\377\377(\365\377\377)\365" +\ + "\377\377)\362\376\377&\345\363\377 \304\315\377\31X\234\377&<\367\377" +\ + "%=\374\377$=\375\377\42=\375\377!:\375\377\379\375\377\378\375\377\35" +\ + "\66\375\377\34\64\375\377\33\61\375\377\32\61\375\377\32\60\375\377\31" +\ + ".\375\377\31-\375\377\30+\375\377\16\42\375\377\12\35\375\377\14\35\375" +\ + "\377\14\34\375\377\15\35\375\377\14\35\376\377\14\34\376\377\14\34\375" +\ + "\377\14\32\373\377\12\27\351\377\10\21\270\377\4\10P\377\0\0\0\377\0" +\ + "\0\0\255\0\0\0\61\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\31\1\0" +\ + "\0\217>\21\16\375\246\21\4\377\321\35\14\377\356!\16\377\373\42\17\377" +\ + "\375\42\16\377\377\36\14\377\3772#\377\377K\77\377\377J=\377\377G<\377" +\ + "\377G;\377\377F:\377\377E:\377\377C9\377\377B8\377\377@9\377\377@7\377" +\ + "\377>7\377\377>8\377\377=6\377\377;7\377\377<7\377\377;7\377\377;6\377" +\ + "\377;8\377\377;7\377\377;7\377\377;7\377\377;6\377\377<7\377\377<6\377" +\ + "\377=7\377\377=7\377\377@8\377\377@9\377\373B:\377\361B9\377\334\77\65" +\ + "\377\30091\377\2433+\377`!\33\377\30`i\377\30\257\302\377<\330\352\377" +\ + "t\356\373\377m\360\376\377k\361\377\377f\360\376\377b\361\377\377^\363" +\ + "\377\377X\362\377\377S\363\377\377O\363\377\377M\365\377\377J\366\377" +\ + "\377J\365\377\377I\366\377\377J\367\377\377I\370\377\377E\371\377\377" +\ + "@\370\377\377=\370\377\377;\370\377\3779\370\377\3778\367\377\3776\365" +\ + "\377\3776\365\377\3777\364\377\3776\363\376\3776\362\375\3772\341\357" +\ + "\377(\263\274\377!K\250\377/E\375\377.D\375\377-B\375\377,B\375\377*" +\ + "@\374\377(\77\374\377'>\375\377&<\375\377%<\375\377#9\375\377#8\375\377" +\ + "\42\66\375\377!4\375\377!4\375\377 2\375\377!1\375\377\24$\375\377\17" +\ + "\35\375\377\17\37\374\377\20 \374\377\17\37\376\377\16\35\376\377\16" +\ + "\34\375\377\15\32\372\377\13\27\340\377\10\21\253\377\7\5+\377\0\0\0" +\ + "\377\0\0\0\242\0\0\0*\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\09\12" +\ + "\3\4\316q\20\7\377\267\26\7\376\336\34\13\377\365\36\15\377\374\37\14" +\ + "\377\376\37\14\377\377\35\14\377\377\35\15\377\3779,\377\377C6\377\377" +\ + "\77\63\377\377\77\63\377\377=2\377\377=2\377\377;1\377\37791\377\377" +\ + "91\377\37780\377\37770\377\37770\377\37770\377\3775/\377\37750\377\377" +\ + "60\377\3773/\377\37740\377\37740\377\37740\377\3773/\377\3774/\377\377" +\ + "60\377\37760\377\37760\377\37770\377\37780\377\37780\377\374:2\377\365" +\ + "<2\377\34370\377\3102*\377\254.'\377\213( \377**+\377\23\220\237\377" +\ + "\77\307\327\377{\352\364\377x\357\375\377v\361\375\377t\362\377\377p" +\ + "\363\377\377l\362\377\377h\364\377\377d\363\377\377`\363\377\377[\362" +\ + "\377\377Y\363\377\377[\365\377\377`\367\377\377m\371\377\377o\371\377" +\ + "\377f\367\377\377X\370\377\377M\366\377\377I\366\377\377F\366\377\377" +\ + "F\366\377\377D\365\377\377D\364\377\377D\362\377\377D\360\376\377F\357" +\ + "\374\377A\334\351\377.\234\250\377-I\275\3779O\377\3778O\376\3776M\376" +\ + "\3773J\376\3772I\376\3771G\375\3770E\375\377.D\374\377.C\374\377-A\374" +\ + "\377,\77\374\377+>\374\377+=\375\377+<\375\377+9\375\377-;\374\377+8" +\ + "\374\377\27&\374\377\24#\376\377\24\42\376\377\24!\375\377\21 \376\377" +\ + "\20\35\375\377\16\32\367\377\13\25\325\377\10\17\222\377\20\5\12\377" +\ + "\0\0\0\373\0\0\0\230\0\0\0%\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0" +\ + "\0\0g\35\6\4\364\223\21\5\377\307\30\11\377\351\34\12\377\372\35\14\377" +\ + "\375\35\13\377\377\33\13\377\377\32\12\377\377\31\11\377\377\35\16\377" +\ + "\3775(\377\3779,\377\3777+\377\3775)\377\3773)\377\3772)\377\3772)\377" +\ + "\3771)\377\3770(\377\3770(\377\377/'\377\377.'\377\377.(\377\377-'\377" +\ + "\377-'\377\377-'\377\377,'\377\377+'\377\377+(\377\377,(\377\377-(\377" +\ + "\377-'\377\377-'\377\377.(\377\377/(\377\377/(\377\3771)\377\3760)\377" +\ + "\3702*\377\3532)\377\322-$\377\267)!\377\235&\35\377[\31\24\377\32]d" +\ + "\377-\254\273\377}\333\347\377\177\354\371\377\200\360\375\377\177\362" +\ + "\376\377|\362\376\377y\362\377\377u\363\377\377r\364\377\377o\364\377" +\ + "\377k\364\377\377i\364\377\377p\366\377\377\205\367\377\377\245\371\377" +\ + "\377\260\372\377\377\236\372\376\377{\367\377\377`\365\377\377X\365\377" +\ + "\377T\365\377\377T\365\377\377S\363\377\377S\362\377\377T\361\377\377" +\ + "S\357\376\377S\355\371\377J\323\341\3771}\232\377>O\336\377FY\376\377" +\ + "DX\376\377AW\376\377>T\376\377\5\1\377\252\23\7\376\326\31\11\377\360\33\12\377\374" +\ + "\34\13\377\376\33\13\377\377\33\13\377\377\31\12\377\377\31\12\377\377" +\ + "\26\7\377\377\32\14\377\377.\37\377\3770$\377\377.\42\377\377-\42\377" +\ + "\377+\42\377\377*!\377\377*!\377\377)\42\377\377(!\377\377'!\377\377" +\ + "(!\377\377& \377\377% \377\377$!\377\377$ \377\377$ \377\377# \377\377" +\ + "# \377\377$ \377\377$ \377\377$ \377\377$!\377\377% \377\377' \377\377" +\ + "'!\377\377(!\377\376)\42\377\372*\42\377\361* \377\335'\37\377\302&\35" +\ + "\377\250\42\30\377\213\35\25\3777\37\36\377\33|\210\377h\277\312\377" +\ + "\204\342\355\377\210\356\371\377\211\361\375\377\206\363\376\377\205" +\ + "\363\377\377\202\362\377\377\177\363\377\377}\362\377\377y\364\377\377" +\ + "z\364\377\377\206\366\377\377\254\370\377\377\332\373\376\377\354\374" +\ + "\375\377\317\374\376\377\231\371\377\377t\365\377\377g\364\377\377d\365" +\ + "\377\377d\363\377\377d\363\377\377b\361\377\377c\361\377\377c\361\376" +\ + "\377`\350\366\377R\313\326\3777k\234\377Ud\364\377]m\375\377^o\376\377" +\ + "Xh\376\377Oa\376\377HZ\376\377DW\376\377CV\376\377CU\376\377BT\376\377" +\ + "AQ\376\377AP\376\377BP\375\377BQ\376\377DP\376\377EO\376\377EN\375\377" +\ + "EO\376\377GP\376\37709\376\377 *\376\377\36)\376\377\31$\375\377\25 " +\ + "\373\377\21\33\350\377\13\22\261\377\13e|\377\3\42#\377\0\0\0\370\0\0" +\ + "\0\215\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\64\6\0\0\313c\13" +\ + "\4\377\267\26\10\377\340\32\12\377\366\34\13\377\375\34\12\377\377\32" +\ + "\12\377\377\30\11\377\377\31\12\377\377\27\12\377\377\26\10\377\377\24" +\ + "\6\377\377\31\13\377\377%\30\377\377(\35\377\377'\34\377\377%\34\377" +\ + "\377$\33\377\377#\33\377\377#\33\377\377#\34\377\377!\32\377\377 \32" +\ + "\377\377\37\32\377\377\36\32\377\377\36\32\377\377\36\32\377\377\36\32" +\ + "\377\377\35\31\377\377\35\32\377\377\35\32\377\377\36\32\377\377\36\32" +\ + "\377\377\36\32\377\377\37\32\377\377\37\32\377\377!\32\377\377 \32\377" +\ + "\377\42\32\377\375$\34\377\365$\32\377\347\42\32\377\317!\30\377\264" +\ + "\37\25\377\236\34\23\377t\23\14\377&24\3773\224\237\377\200\307\320\377" +\ + "\211\343\355\377\220\357\372\377\217\362\375\377\217\363\376\377\215" +\ + "\363\377\377\213\364\377\377\210\364\377\377\207\363\377\377\210\365" +\ + "\377\377\223\366\377\377\264\370\377\377\337\375\375\377\361\374\375" +\ + "\377\323\373\376\377\243\367\377\377\201\367\377\377u\364\377\377r\363" +\ + "\377\377q\363\377\377q\362\377\377r\363\377\377q\362\377\377o\361\375" +\ + "\377h\343\357\377Q\266\277\377Hd\253\377v\202\376\377\210\223\375\377" +\ + "\216\230\375\377~\212\375\377hw\376\377Xg\376\377Ra\376\377O_\376\377" +\ + "N]\376\377N\134\376\377MZ\376\377O[\376\377O[\376\377PZ\376\377OY\376" +\ + "\377PX\376\377QY\376\377QY\376\377QX\376\377LS\376\377#,\376\377\42+" +\ + "\376\377\37'\375\377\30!\363\377\21\27\325\377\16\65\225\377\6\242\253" +\ + "\377\2@E\377\0\0\0\371\0\0\0\217\0\0\0 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\6\0\0\0O\23\1\0\353\207\20\5\377\302\30\10\377\350\32\12\377\370\34" +\ + "\13\377\376\33\13\377\376\32\11\377\377\30\12\377\377\31\12\377\377\26" +\ + "\11\377\377\26\7\377\377\26\10\377\377\24\6\377\377\24\10\377\377\32" +\ + "\17\377\377 \26\377\377\37\26\377\377\36\26\377\377\35\26\377\377\34" +\ + "\25\377\377\32\24\377\377\32\24\377\377\32\24\377\377\32\25\377\377\31" +\ + "\24\377\377\31\25\377\377\27\25\377\377\27\25\377\377\30\24\377\377\27" +\ + "\25\377\377\30\25\377\377\27\25\377\377\30\25\377\377\31\25\377\377\31" +\ + "\24\377\377\32\25\377\377\33\24\377\377\32\24\377\376\33\25\377\375\35" +\ + "\25\377\372\36\26\377\360\36\26\377\335\35\24\377\303\33\23\377\253\25" +\ + "\15\377\227\17\7\377c\13\5\377\42AD\377K\232\243\377\205\311\321\377" +\ + "\217\344\355\377\225\357\370\377\225\362\375\377\225\364\376\377\223" +\ + "\365\377\377\220\364\376\377\220\364\377\377\220\364\377\377\227\365" +\ + "\377\377\247\367\376\377\276\371\377\377\307\372\377\377\266\370\377" +\ + "\377\235\367\377\377\211\365\377\377\202\364\377\377\200\364\377\377" +\ + "\177\363\377\377}\362\377\377|\362\377\377z\363\376\377x\360\373\377" +\ + "n\335\350\377N\234\246\377cr\305\377\236\245\377\377\300\305\375\377" +\ + "\313\317\375\377\260\265\375\377\207\222\375\377kv\375\377_k\376\377" +\ + "[g\376\377\134g\376\377\134g\376\377[e\376\377\134d\376\377\134d\376" +\ + "\377\134d\376\377]c\376\377\134c\376\377\134b\376\377[a\376\377[a\376" +\ + "\377[a\375\377)/\376\377&.\375\377!)\371\377\31!\346\377\20\30\265\377" +\ + "\16\233\257\377\6\266\305\377\3Ya\377\0\1\1\374\0\0\0\227\0\0\0$\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0g%\3\1\373\227\21\7\377\313\31\11" +\ + "\377\354\34\12\377\373\34\13\377\376\32\13\377\377\32\11\377\377\30\11" +\ + "\377\377\27\11\377\377\26\10\377\377\26\10\377\377\25\7\377\377\24\7" +\ + "\377\377\21\5\377\377\20\6\377\377\21\7\377\377\26\15\377\377\30\20\377" +\ + "\377\30\21\377\377\27\17\377\377\26\20\377\377\26\20\377\377\26\20\377" +\ + "\377\24\20\377\377\23\17\377\377\23\17\377\377\21\17\377\377\21\17\377" +\ + "\377\22\17\377\377\21\17\377\377\22\17\377\377\22\17\377\377\22\17\377" +\ + "\377\23\17\377\377\23\17\377\377\24\17\377\377\24\20\377\377\26\20\377" +\ + "\377\26\20\377\376\27\20\377\374\30\20\377\366\30\20\377\351\25\15\377" +\ + "\324\22\11\377\274\16\4\377\244\15\5\377\223\14\5\377]\12\5\377#\77C" +\ + "\377R\231\237\377\206\305\314\377\223\341\350\377\231\355\367\377\233" +\ + "\362\374\377\231\364\375\377\232\365\376\377\227\364\377\377\230\365" +\ + "\376\377\231\365\377\377\236\367\377\377\244\366\377\377\247\366\377" +\ + "\377\236\366\377\377\226\365\377\377\217\364\377\377\213\364\377\377" +\ + "\212\363\377\377\210\363\377\377\206\363\377\377\206\362\377\377\204" +\ + "\362\376\377\177\354\370\377p\322\334\377K\177\225\377\204\213\344\377" +\ + "\271\275\376\377\346\347\375\377\363\364\375\377\325\326\375\377\241" +\ + "\250\374\377}\206\376\377mw\376\377gr\376\377hr\376\377gp\376\377hp\376" +\ + "\377go\376\377go\376\377gn\375\377fm\375\377ek\375\377ek\376\377di\376" +\ + "\377ci\376\377ch\376\377/5\374\377'-\373\377\37&\355\377\25\31\310\377" +\ + "\23`\241\377\7\342\357\377\7\272\312\377\4lu\377\0\5\5\377\0\0\0\244" +\ + "\0\0\0+\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\0u\62\5\1\377\240\24\7\376" +\ + "\320\31\11\377\360\33\11\377\375\34\13\377\377\32\13\377\377\32\11\377" +\ + "\377\30\11\377\377\26\10\377\377\27\10\377\377\25\10\377\377\25\6\377" +\ + "\377\23\7\377\377\22\5\377\377\20\5\377\377\17\5\377\377\17\5\377\377" +\ + "\17\6\377\377\20\10\377\377\22\12\377\377\22\13\377\377\21\13\377\377" +\ + "\20\13\377\377\17\12\377\377\17\12\377\377\16\12\377\377\16\12\377\377" +\ + "\16\12\377\377\16\12\377\377\16\12\377\377\15\12\377\377\15\12\377\377" +\ + "\15\13\377\377\17\12\377\377\15\12\377\377\17\12\377\377\20\13\377\377" +\ + "\20\13\377\377\21\13\377\377\23\13\377\376\22\11\377\373\20\10\377\362" +\ + "\16\5\377\344\17\4\377\316\15\4\377\266\16\5\377\241\14\5\377\221\14" +\ + "\4\377b\13\5\377&57\377C\216\225\377\204\272\301\377\222\330\340\377" +\ + "\234\351\361\377\241\361\371\377\240\362\374\377\240\366\375\377\237" +\ + "\365\377\377\236\365\377\377\236\366\377\377\236\366\377\377\237\367" +\ + "\377\377\234\366\377\377\231\365\377\377\226\366\377\377\224\364\377" +\ + "\377\222\364\377\377\222\364\377\377\220\364\377\377\217\364\377\377" +\ + "\215\363\375\377\205\350\362\377p\303\313\377Vq\237\377\230\234\370\377" +\ + "\274\300\376\377\343\344\374\377\356\357\375\377\321\325\374\377\246" +\ + "\253\376\377\206\215\376\377y\201\377\377t}\377\377s{\377\377sz\377\377" +\ + "sz\377\377sz\377\377rx\377\377qx\376\377pw\376\377ou\376\377nt\375\377" +\ + "mr\375\377lq\376\377mr\375\377/5\374\377$+\362\377\33\37\330\377\27:" +\ + "\235\377\12\332\340\377\10\343\364\377\10\276\316\377\5x\203\377\0\11" +\ + "\11\377\0\0\0\257\0\0\0\63\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\0}=\6" +\ + "\2\377\244\24\7\377\324\31\11\377\363\33\11\377\375\33\12\377\377\32" +\ + "\12\377\377\31\12\377\377\27\11\377\377\26\11\377\377\26\10\377\377\26" +\ + "\7\377\377\25\6\377\377\23\7\377\377\21\5\377\377\21\6\377\377\20\6\377" +\ + "\377\15\5\377\377\14\4\377\377\14\4\377\377\12\4\377\377\11\4\377\377" +\ + "\12\4\377\377\11\5\377\377\12\6\377\377\12\6\377\377\11\6\377\377\11" +\ + "\5\377\377\10\5\377\377\10\5\377\377\11\5\377\377\12\6\377\377\12\6\377" +\ + "\377\12\6\377\377\12\6\377\377\12\6\377\377\12\6\377\377\12\5\377\377" +\ + "\12\5\377\377\13\4\377\376\13\5\377\376\15\4\377\375\15\4\377\371\17" +\ + "\5\377\360\16\4\377\340\16\5\377\312\16\5\377\263\16\5\377\241\15\4\377" +\ + "\223\14\5\377k\12\4\377%\37\37\3771qy\377e\251\261\377\223\307\315\377" +\ + "\232\335\344\377\237\352\361\377\244\361\371\377\245\364\374\377\245" +\ + "\365\375\377\244\366\376\377\243\367\377\377\241\367\377\377\240\367" +\ + "\377\377\237\366\376\377\235\365\377\377\234\365\377\377\233\363\377" +\ + "\377\231\364\377\377\230\364\377\377\227\365\376\377\225\362\373\377" +\ + "\212\340\352\377g\247\260\377lx\276\377\232\237\376\377\255\261\376\377" +\ + "\304\306\375\377\313\316\375\377\271\275\375\377\237\244\375\377\213" +\ + "\221\376\377\202\212\377\377\200\207\377\377\177\205\377\377~\204\377" +\ + "\377}\203\377\377{\201\377\377z\200\377\377z\200\377\377y\177\376\377" +\ + "y~\377\377x}\377\377v{\377\377uz\376\377rw\374\377#)\363\377\37&\334" +\ + "\377\33&\241\377\15\303\316\377\11\356\376\377\10\343\364\377\10\277" +\ + "\317\377\5}\210\377\0\12\13\377\0\0\0\263\0\0\0\67\0\0\0\3\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\22\0\0\0\200@\7\2\377\246\24\7\377\325\31\11\377\364\33" +\ + "\11\377\375\33\12\377\377\31\12\377\377\31\11\377\377\27\10\377\377\27" +\ + "\11\377\377\25\7\377\377\26\7\377\377\24\7\377\377\22\6\377\377\20\5" +\ + "\377\377\20\6\377\377\20\6\377\377\16\4\377\377\14\5\377\377\14\5\377" +\ + "\377\11\3\377\377\10\4\377\377\11\4\377\377\10\3\377\377\7\3\377\377" +\ + "\7\3\377\377\6\3\377\377\6\2\377\377\5\2\377\377\5\2\377\377\5\2\377" +\ + "\377\6\2\377\377\6\2\377\377\6\2\377\377\6\3\377\377\10\3\377\377\7\3" +\ + "\377\377\7\3\377\377\10\3\377\377\11\3\377\377\12\3\377\377\15\5\377" +\ + "\376\15\5\377\374\17\5\377\370\17\6\377\355\17\5\377\335\16\5\377\311" +\ + "\17\4\377\265\17\5\377\242\15\3\377\223\15\4\377u\11\2\3779\15\11\377" +\ + "\34:>\377;\204\215\377i\256\265\377\223\307\314\377\237\332\337\377\241" +\ + "\344\354\377\242\355\364\377\245\361\370\377\246\363\373\377\247\364" +\ + "\374\377\247\365\375\377\247\365\375\377\246\365\376\377\244\366\376" +\ + "\377\243\366\376\377\241\364\376\377\241\365\376\377\237\364\375\377" +\ + "\231\355\366\377\206\322\332\377[\203\226\377\213\220\350\377\231\236" +\ + "\377\377\240\244\376\377\250\254\375\377\253\256\375\377\243\247\376" +\ + "\377\227\234\376\377\217\225\377\377\213\220\377\377\212\216\377\377" +\ + "\210\215\377\377\207\214\377\377\206\213\377\377\205\212\377\377\203" +\ + "\211\377\377\202\207\377\377\201\206\377\377\201\206\377\377\200\205" +\ + "\377\377~\203\376\377~\203\374\377bh\364\377\36$\335\377 \241\377\16" +\ + "\264\301\377\7\362\377\377\11\354\375\377\11\341\362\377\10\273\313\377" +\ + "\4pz\377\0\6\6\377\0\0\0\260\0\0\0\64\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22" +\ + "\0\0\0\202@\7\2\377\247\24\7\377\327\31\11\377\364\33\12\377\375\32\11" +\ + "\377\377\32\11\377\377\31\11\377\377\27\11\377\377\27\11\377\377\26\7" +\ + "\377\377\25\6\377\377\24\6\377\377\22\6\377\377\21\6\377\377\20\6\377" +\ + "\377\17\5\377\377\16\4\377\377\14\5\377\377\14\4\377\377\12\3\377\377" +\ + "\11\3\377\377\10\4\377\377\10\4\377\377\7\3\377\377\5\2\377\377\6\3\377" +\ + "\377\6\3\377\377\6\2\377\377\4\3\377\377\5\3\377\377\4\2\377\377\5\3" +\ + "\377\377\6\3\377\377\5\2\377\377\6\3\377\377\7\3\377\377\10\4\377\377" +\ + "\11\4\377\377\10\4\377\377\13\3\377\377\14\5\377\376\15\5\377\375\16" +\ + "\5\377\374\20\6\377\367\20\6\377\356\20\6\377\336\21\5\377\314\20\4\377" +\ + "\270\17\5\377\242\16\4\377\214\14\4\377v\12\4\377C\12\1\377()\17\377" +\ + "\35DF\377/z\202\377X\242\253\377}\271\276\377\225\311\316\377\240\325" +\ + "\332\377\242\333\341\377\243\342\347\377\242\344\353\377\240\347\357" +\ + "\377\241\347\357\377\241\350\360\377\242\353\361\377\240\352\361\377" +\ + "\242\353\363\377\237\347\357\377\227\332\342\377z\264\272\377Yl\221\377" +\ + "\232\236\372\377\234\241\377\377\236\243\376\377\236\243\377\377\237" +\ + "\243\377\377\232\240\377\377\230\235\377\377\224\231\377\377\222\227" +\ + "\377\377\221\226\377\377\220\225\377\377\217\224\377\377\215\222\377" +\ + "\377\215\221\377\377\213\220\377\377\213\220\377\377\212\216\377\377" +\ + "\211\216\377\377\207\214\375\377\204\210\373\377~\202\360\37702\334\377" +\ + "!!\245\377\21\256\275\377\6\363\377\377\10\355\377\377\11\354\375\377" +\ + "\10\336\360\377\10\265\305\377\4]g\377\0\0\1\377\0\0\0\243\0\0\0,\0\0" +\ + "\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\0\202@\7\2\377\250\24\7\377\330\30" +\ + "\11\377\364\32\12\377\375\32\12\377\377\32\12\377\377\30\10\377\377\27" +\ + "\10\377\377\25\11\377\377\25\7\377\377\25\7\377\377\23\5\377\377\21\5" +\ + "\377\377\20\5\377\377\20\4\377\377\17\4\377\377\15\5\377\377\14\3\377" +\ + "\377\12\3\377\377\11\4\377\377\7\4\377\377\7\2\377\377\6\2\377\377\5" +\ + "\3\377\377\4\2\377\377\4\3\377\377\4\3\377\377\3\3\377\377\3\1\377\377" +\ + "\3\1\377\377\3\3\377\377\3\3\377\377\4\3\377\377\6\3\377\377\6\2\377" +\ + "\377\5\3\377\377\7\2\377\377\10\2\377\377\11\3\377\377\11\4\377\377\12" +\ + "\3\377\376\15\4\377\376\16\4\377\376\17\4\377\374\20\4\377\370\21\6\377" +\ + "\357\20\5\377\342\22\5\377\320\21\5\377\271\20\6\377\236\16\5\377\202" +\ + "\14\4\377U\24\4\377uk\11\377vi\10\37781\5\377$5)\377\34WZ\377$y\202\377" +\ + "3\214\227\377M\237\247\377g\255\263\377{\265\272\377\206\272\300\377" +\ + "\206\274\301\377\210\275\303\377\207\276\306\377\204\301\307\377~\301" +\ + "\311\377m\267\277\377V\240\250\377Gs\207\377\215\222\336\377\243\247" +\ + "\377\377\241\245\377\377\240\245\377\377\240\244\377\377\240\244\377" +\ + "\377\236\243\377\377\234\241\377\377\233\240\377\377\232\236\377\377" +\ + "\230\235\377\377\227\233\377\377\226\232\377\377\224\231\377\377\224" +\ + "\230\376\377\224\230\376\377\223\227\376\377\221\225\376\377\220\224" +\ + "\374\377\214\220\367\377\210\213\351\377GH\320\377!1\232\377\13\306\305" +\ + "\377\6\363\377\377\10\357\377\377\11\355\376\377\11\352\374\377\12\332" +\ + "\354\377\10\252\273\377\3HO\377\0\0\0\370\0\0\0\220\0\0\0#\0\0\0\1\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\22\0\0\0\202@\7\2\377\247\23\7\377\327\31\11\377" +\ + "\364\33\12\377\375\32\11\377\377\32\12\377\377\30\10\377\377\27\11\377" +\ + "\377\26\7\377\377\26\6\377\377\25\7\377\377\22\5\377\377\21\6\377\377" +\ + "\20\4\377\377\17\5\377\377\17\5\377\377\15\4\377\377\12\4\377\377\13" +\ + "\4\377\377\11\3\377\377\10\2\377\377\10\3\377\377\6\3\377\377\6\3\377" +\ + "\377\4\3\377\377\3\1\377\377\3\1\377\377\4\1\377\377\2\2\377\377\3\2" +\ + "\377\377\3\1\377\377\4\1\377\377\4\1\377\377\4\1\377\377\6\3\377\377" +\ + "\5\3\377\377\7\3\377\377\7\3\377\377\10\2\377\377\11\3\377\377\13\4\377" +\ + "\377\13\3\377\377\16\5\377\376\17\4\377\376\20\5\377\374\21\5\377\371" +\ + "\22\6\377\362\23\5\377\346\23\6\377\320\22\5\377\262\20\5\377\224\15" +\ + "\5\377X\33\4\377\216\201\10\377\230\207\12\377\222\202\12\377\206x\11" +\ + "\377fY\6\37793\5\377('\15\377%1#\377!A<\377\34PP\377$[]\377#Z]\377'^" +\ + "`\377'WZ\377)Pe\377AZt\377dl\217\377\206\206\302\377\246\247\366\377" +\ + "\252\255\376\377\251\254\376\377\247\253\376\377\246\252\377\377\246" +\ + "\251\377\377\243\247\377\377\244\250\376\377\243\247\377\377\241\245" +\ + "\377\377\240\244\377\377\240\244\377\377\237\243\377\377\236\241\377" +\ + "\377\235\240\376\377\234\237\377\377\233\236\375\377\231\235\374\377" +\ + "\224\230\371\377\217\222\357\377\207\212\336\377FE\276\377#X\222\377" +\ + "\7\332\337\377\10\362\377\377\11\355\376\377\12\356\377\377\13\356\376" +\ + "\377\12\351\372\377\10\322\343\377\7\242\261\377\1/\63\376\0\0\0\360" +\ + "\0\0\0z\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\0\202@\7\1\377" +\ + "\246\23\6\377\325\31\11\377\364\33\12\377\375\32\12\377\377\31\11\377" +\ + "\377\30\10\377\377\27\11\377\377\25\10\377\377\26\6\377\377\25\7\377" +\ + "\377\22\5\377\377\21\5\377\377\17\4\377\377\20\5\377\377\17\4\377\377" +\ + "\15\3\377\377\13\4\377\377\13\4\377\377\10\2\377\377\11\3\377\377\7\3" +\ + "\377\377\7\2\377\377\7\3\377\377\4\3\377\377\4\1\377\377\4\2\377\377" +\ + "\4\2\377\377\3\2\377\377\3\2\377\377\3\2\377\377\4\2\377\377\4\2\377" +\ + "\377\3\1\377\377\4\3\377\377\6\3\377\377\6\2\377\377\10\3\377\377\7\3" +\ + "\377\377\11\2\377\377\12\4\377\377\15\3\377\377\16\4\377\377\17\5\377" +\ + "\377\17\5\377\376\21\5\377\375\23\6\377\371\24\6\377\362\24\7\377\342" +\ + "\22\5\377\304\22\5\377\244\15\5\377d/\3\377\262\241\11\377\256\233\11" +\ + "\377\245\223\10\377\236\214\11\377\231\210\7\377\225\204\10\377\221\200" +\ + "\7\377\211y\7\377~o\6\377vh\7\377tf\6\377rf\6\377pc\6\377l`\5\377+&\12" +\ + "\377$(p\377MN\260\377\214\216\324\377\242\245\351\377\251\254\366\377" +\ + "\252\255\372\377\255\260\375\377\253\256\376\377\252\255\376\377\253" +\ + "\256\376\377\252\255\377\377\251\254\377\377\247\253\377\377\246\251" +\ + "\376\377\246\251\376\377\245\250\376\377\243\246\376\377\242\245\374" +\ + "\377\240\243\372\377\234\237\365\377\226\231\355\377\216\221\340\377" +\ + "mn\307\3775F\232\377\37\245\263\377\26\361\371\377\12\361\377\377\13" +\ + "\357\377\377\13\355\377\377\15\355\377\377\13\353\375\377\13\346\366" +\ + "\377\11\307\330\377\7\222\237\377\0\27\31\377\0\0\0\345\0\0\0d\0\0\0" +\ + "\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\0\200>\6\2\377\245\23\6\377\325" +\ + "\31\11\377\362\31\12\377\375\32\12\377\377\32\11\377\377\30\10\377\377" +\ + "\27\10\377\377\26\10\377\377\25\7\377\377\25\6\377\377\22\6\377\377\22" +\ + "\5\377\377\20\4\377\377\20\5\377\377\16\4\377\377\14\3\377\377\13\4\377" +\ + "\377\12\4\377\377\12\2\377\377\10\3\377\377\7\3\377\377\7\3\377\377\5" +\ + "\1\377\377\5\1\377\377\4\2\377\377\4\2\377\377\4\2\377\377\4\2\377\377" +\ + "\4\2\377\377\4\2\377\377\4\2\377\377\4\2\377\377\3\2\377\377\4\1\377" +\ + "\377\5\1\377\377\7\3\377\377\10\3\377\377\7\3\377\377\12\2\377\377\13" +\ + "\4\377\377\13\4\377\377\15\4\377\377\17\5\377\377\20\5\377\376\21\5\377" +\ + "\376\23\6\377\375\24\5\377\367\24\7\377\352\23\7\377\317\22\7\377\245" +\ + "\16\5\377~R\4\377\324\277\10\377\312\263\10\377\300\252\7\377\270\242" +\ + "\10\377\261\235\7\377\253\230\7\377\247\224\6\377\245\222\6\377\242\220" +\ + "\6\377\242\220\6\377\240\216\6\377\236\214\6\377\232\210\6\377\223\203" +\ + "\6\377\207y\5\377%0\30\377\27ay\377+@\217\377AC\265\377st\324\377\225" +\ + "\227\342\377\245\250\352\377\253\256\361\377\253\256\364\377\254\257" +\ + "\370\377\254\257\371\377\252\255\372\377\252\255\373\377\252\255\372" +\ + "\377\250\253\371\377\246\251\366\377\243\246\363\377\237\241\355\377" +\ + "\231\233\345\377\212\212\326\377kl\277\377EY\240\377*\221\252\377$\335" +\ + "\344\377$\365\376\377&\357\377\377%\356\377\377\21\354\377\377\21\354" +\ + "\376\377\21\354\376\377\16\352\374\377\15\335\360\377\11\266\307\377" +\ + "\7oz\377\1\6\6\377\0\0\0\310\0\0\0L\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\21\0\0\0}\64\5\1\377\240\23\6\377\321\30\11\377\360\32\12\377" +\ + "\375\32\11\377\377\31\12\377\377\30\10\377\377\27\10\377\377\26\10\377" +\ + "\377\26\7\377\377\24\6\377\377\22\5\377\377\22\6\377\377\20\4\377\377" +\ + "\20\5\377\377\17\4\377\377\14\3\377\377\13\4\377\377\12\4\377\377\10" +\ + "\2\377\377\7\2\377\377\10\3\377\377\6\2\377\377\4\1\377\377\4\2\377\377" +\ + "\3\2\377\377\3\2\377\377\4\2\377\377\4\2\377\377\3\1\377\377\4\2\377" +\ + "\377\4\2\377\377\3\1\377\377\4\2\377\377\4\2\377\377\5\1\377\377\7\2" +\ + "\377\377\10\3\377\377\10\3\377\377\11\2\377\377\13\4\377\377\14\4\377" +\ + "\377\15\4\377\377\20\5\377\377\17\5\377\377\21\5\377\377\23\6\377\376" +\ + "\23\5\377\371\24\7\377\352\24\7\377\321\22\6\377\230\15\5\377\240}\5" +\ + "\377\356\324\7\377\343\311\6\377\334\302\6\377\325\274\6\377\316\266" +\ + "\5\377\310\260\5\377\303\255\5\377\300\252\5\377\276\250\5\377\275\247" +\ + "\5\377\273\245\5\377\266\241\5\377\255\231\4\377\241\216\4\377\225\204" +\ + "\3\377QF\1\377\21oz\377\34\250\264\377A\235\260\377:c\241\3770@\243\377" +\ + "8=\264\377IJ\302\377]^\316\377uw\330\377\206\210\336\377\224\226\341" +\ + "\377\223\225\341\377\221\223\340\377\214\215\334\377\201\202\324\377" +\ + "vt\312\377_c\270\377L]\247\3779o\240\3770\247\271\3771\340\343\3775\370" +\ + "\376\3774\364\377\3775\360\376\3776\356\377\3778\356\377\3771\355\377" +\ + "\377\27\352\376\377\27\352\375\377\23\345\370\377\16\316\341\377\10\237" +\ + "\256\377\11:\77\377\0\0\0\375\0\0\0\242\0\0\0\63\0\0\0\5\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\17\0\0\0u'\3\0\376\230\21\6\377\313\27\10\377\355" +\ + "\31\10\377\373\33\12\377\376\31\12\377\377\30\10\377\377\26\7\377\377" +\ + "\26\10\377\377\26\10\377\377\24\5\377\377\23\6\377\377\21\4\377\377\20" +\ + "\5\377\377\20\5\377\377\17\4\377\377\14\4\377\377\13\3\377\377\12\2\377" +\ + "\377\12\3\377\377\11\3\377\377\7\1\377\377\6\1\377\377\5\2\377\377\4" +\ + "\2\377\377\3\1\377\377\3\0\377\377\2\0\377\377\2\0\377\377\3\1\377\377" +\ + "\2\0\377\377\2\0\377\377\3\0\377\377\4\1\377\377\5\2\377\377\5\1\377" +\ + "\377\6\1\377\377\10\2\377\377\10\2\377\377\11\2\377\377\13\4\377\377" +\ + "\14\3\377\377\15\3\377\377\16\4\377\377\17\5\377\377\21\4\377\377\23" +\ + "\6\377\375\23\5\377\366\24\6\377\346\22\7\377\314\20\6\377\213\27\4\377" +\ + "\304\250\4\377\371\334\4\377\364\326\4\377\357\323\4\377\353\317\4\377" +\ + "\347\313\4\377\343\310\5\377\340\304\3\377\335\302\3\377\333\301\3\377" +\ + "\332\277\3\377\330\277\3\377\322\272\5\377\307\260\5\377\264\240\3\377" +\ + "\241\217\4\377\204u\1\377 >4\377\30\236\257\377[\325\342\377r\352\362" +\ + "\377m\334\334\377`\272\304\377P\231\262\377Ax\250\3774X\243\377-H\243" +\ + "\3773I\245\3778Q\247\3778Q\245\377\77[\243\377Bn\247\377A\204\252\377" +\ + "@\261\276\377A\332\334\377D\366\370\377E\372\377\377E\365\377\377E\362" +\ + "\376\377F\361\377\377H\360\377\377G\357\377\377I\356\376\377K\356\377" +\ + "\377&\351\375\377\37\346\373\377\30\333\357\377\20\270\311\377\7y\203" +\ + "\377\3\11\11\377\0\0\0\350\0\0\0t\0\0\0\34\0\0\0\2\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\14\0\0\0e\25\1\0\365\212\20\5\377\302\26\10\377\350\30\10" +\ + "\377\371\33\11\377\376\31\10\377\377\30\11\377\377\26\10\377\377\26\10" +\ + "\377\377\26\10\377\377\24\5\377\377\23\5\377\377\21\4\377\377\21\5\377" +\ + "\377\20\3\377\377\16\3\377\377\14\4\377\377\12\3\377\377\12\3\377\377" +\ + "\11\3\377\377\7\2\377\377\10\1\377\377\6\2\377\377\5\1\377\377\4\1\377" +\ + "\377\3\0\377\377\2\1\377\377\3\1\377\377\3\1\377\377\3\1\377\377\2\1" +\ + "\377\377\2\1\377\377\3\1\377\377\3\1\377\377\4\0\377\377\5\2\377\377" +\ + "\7\2\377\377\10\2\377\377\10\2\377\377\11\3\377\377\12\2\377\377\14\3" +\ + "\377\377\16\3\377\377\16\4\377\377\20\4\377\377\20\5\377\377\22\5\377" +\ + "\374\23\5\377\362\23\6\377\341\23\5\377\302\16\6\377\222@\3\377\347\316" +\ + "\3\377\374\336\5\377\372\334\5\377\371\333\5\377\367\331\5\377\365\330" +\ + "\5\377\363\326\4\377\362\325\5\377\361\324\5\377\357\324\5\377\357\323" +\ + "\5\377\355\322\5\377\350\315\4\377\335\303\4\377\307\260\4\377\257\233" +\ + "\3\377\231\210\3\377OH\6\377\31lw\377H\264\300\377y\336\351\377~\356" +\ + "\371\377~\363\376\377{\367\377\377x\366\377\377q\362\370\377l\357\357" +\ + "\377f\351\351\377g\353\351\377|\360\356\377\244\370\364\377\264\377\376" +\ + "\377\216\376\377\377h\372\377\377Y\365\377\377U\364\377\377V\363\377" +\ + "\377U\361\377\377W\360\377\377W\361\377\377W\357\377\377X\357\377\377" +\ + "W\355\377\377X\356\375\377@\352\375\377!\340\365\377\33\307\333\377\16" +\ + "\231\250\377\128<\377\0\0\1\376\0\0\0\266\0\0\0F\0\0\0\14\0\0\0\1\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0M\10\0\0\340j\13\4\377\270\26\10\377" +\ + "\337\30\10\377\366\32\11\377\375\31\10\377\377\31\10\377\377\26\10\377" +\ + "\377\27\10\377\377\26\10\377\377\25\6\377\377\22\5\377\377\22\5\377\377" +\ + "\20\5\377\377\20\4\377\377\17\4\377\377\15\4\377\377\13\2\377\377\13" +\ + "\3\377\377\11\3\377\377\10\2\377\377\7\2\377\377\6\2\377\377\5\1\377" +\ + "\377\3\0\377\377\3\1\377\377\4\1\377\377\2\1\377\377\3\1\377\377\3\1" +\ + "\377\377\3\1\377\377\3\1\377\377\4\1\377\377\4\1\377\377\4\0\377\377" +\ + "\6\2\377\377\10\2\377\377\10\2\377\377\10\1\377\377\11\3\377\377\12\3" +\ + "\377\377\15\3\377\377\17\4\377\377\16\3\377\377\21\4\377\377\21\5\377" +\ + "\376\23\5\377\372\24\7\377\356\24\5\377\331\23\6\377\264\15\6\377\232" +\ + "e\2\377\370\335\4\377\374\336\5\377\374\337\5\377\374\336\5\377\373\334" +\ + "\5\377\374\334\5\377\372\334\5\377\372\333\5\377\371\334\5\377\371\335" +\ + "\5\377\371\333\5\377\370\333\5\377\365\330\5\377\353\317\4\377\327\277" +\ + "\3\377\276\250\4\377\244\222\4\377\207w\1\377*8 \377(\215\232\377w\307" +\ + "\320\377\203\344\356\377\206\357\372\377\205\363\376\377\204\362\377" +\ + "\377\201\363\377\377~\364\377\377{\364\377\377~\364\377\377\236\370\377" +\ + "\377\333\374\375\377\362\375\375\377\272\372\377\377\202\367\377\377" +\ + "l\364\377\377h\364\377\377g\363\377\377f\362\377\377g\362\377\377g\360" +\ + "\377\377e\361\377\377d\357\376\377c\356\376\377b\355\375\377Q\346\370" +\ + "\377!\317\344\377\26\251\272\377\14aj\377\1\1\1\377\0\0\0\347\0\0\0y" +\ + "\0\0\0#\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\64\1\0\0" +\ + "\273A\7\1\377\252\24\6\377\326\27\7\377\361\31\11\377\374\31\10\377\377" +\ + "\31\11\377\376\27\10\377\377\27\10\377\377\26\10\377\377\26\5\377\377" +\ + "\23\5\377\377\22\5\377\377\20\4\377\377\20\3\377\377\17\4\377\377\15" +\ + "\3\377\377\13\2\377\377\13\3\377\377\11\2\377\377\7\1\377\377\7\2\377" +\ + "\377\10\2\377\377\5\2\377\377\4\0\377\377\4\1\377\377\4\1\377\377\3\1" +\ + "\377\377\3\1\377\377\2\1\377\377\3\1\377\377\4\1\377\377\4\1\377\377" +\ + "\3\1\377\377\4\0\377\377\6\2\377\377\10\2\377\377\7\2\377\377\10\1\377" +\ + "\377\12\2\377\377\12\3\377\377\14\3\377\377\17\4\377\377\16\4\377\377" +\ + "\20\4\377\376\21\5\377\375\23\5\377\367\23\6\377\352\24\5\377\322\21" +\ + "\6\377\241\24\3\377\262\221\3\377\374\337\4\377\374\336\5\377\374\335" +\ + "\5\377\375\335\5\377\375\336\5\377\375\336\4\377\374\334\4\377\374\335" +\ + "\4\377\374\336\5\377\374\336\5\377\374\336\5\377\374\335\5\377\372\334" +\ + "\5\377\363\326\5\377\343\312\3\377\314\264\4\377\261\235\3\377\233\212" +\ + "\3\377oc\3\377\37C=\377O\237\250\377\177\314\325\377\213\346\360\377" +\ + "\217\360\372\377\216\362\375\377\215\364\376\377\211\362\377\377\211" +\ + "\364\377\377\214\365\377\377\244\366\377\377\323\372\375\377\342\374" +\ + "\375\377\270\370\377\377\215\366\377\377{\364\377\377y\363\377\377w\362" +\ + "\377\377v\362\377\377u\362\377\377u\362\377\377t\363\377\377r\360\376" +\ + "\377o\357\375\377m\351\370\377O\327\347\377\32\260\302\377\21|\210\377" +\ + "\5\20\21\377\0\0\0\370\0\0\0\247\0\0\0B\0\0\0\15\0\0\0\2\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36\0\0\0\217 \2\0\376\227\21\5\377" +\ + "\312\26\7\377\352\30\10\377\371\31\11\377\376\31\11\377\377\30\10\377" +\ + "\377\27\10\377\377\27\6\377\377\26\6\377\377\23\6\377\377\23\5\377\377" +\ + "\20\4\377\377\17\3\377\377\17\4\377\377\16\3\377\377\14\2\377\377\13" +\ + "\3\377\377\12\2\377\377\11\2\377\377\11\2\377\377\7\1\377\377\6\1\377" +\ + "\377\4\1\377\377\3\1\377\377\3\1\377\377\3\1\377\377\4\0\377\377\4\0" +\ + "\377\377\3\1\377\377\3\1\377\377\3\1\377\377\4\1\377\377\4\1\377\377" +\ + "\6\1\377\377\10\2\377\377\11\2\377\377\11\1\377\377\12\2\377\377\14\3" +\ + "\377\377\14\3\377\377\17\4\377\377\16\4\377\376\20\4\377\376\22\5\377" +\ + "\374\23\5\377\364\24\6\377\343\22\6\377\313\21\5\377\212!\3\377\326\275" +\ + "\3\377\375\336\4\377\375\336\4\377\375\336\3\377\375\335\3\377\375\335" +\ + "\3\377\375\335\4\377\375\334\3\377\375\336\4\377\375\336\3\377\375\336" +\ + "\3\377\375\336\3\377\375\336\4\377\373\334\4\377\367\332\4\377\355\322" +\ + "\5\377\332\301\3\377\300\252\3\377\250\225\3\377\224\204\2\377^V\4\377" +\ + "!PP\377_\242\252\377\204\314\324\377\221\344\356\377\226\357\371\377" +\ + "\226\362\375\377\225\364\376\377\224\365\376\377\225\365\377\377\235" +\ + "\365\376\377\255\367\377\377\263\370\377\377\241\366\376\377\220\365" +\ + "\377\377\210\364\377\377\206\364\377\377\204\362\377\377\202\362\377" +\ + "\377\201\362\376\377\200\362\376\377~\361\376\377}\360\374\377x\352\365" +\ + "\377p\333\345\3773\266\303\377\23\203\220\377\11 !\376\0\0\0\376\0\0" +\ + "\0\311\0\0\0_\0\0\0\33\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\16\0\0\0a\13\0\0\351w\16\4\377\272\25\6\377\340\30\10" +\ + "\377\365\31\10\377\375\31\10\377\376\27\10\377\377\27\10\377\377\26\6" +\ + "\377\377\26\6\377\377\25\6\377\377\22\4\377\377\21\5\377\377\21\4\377" +\ + "\377\17\4\377\377\17\4\377\377\15\2\377\377\13\3\377\377\12\2\377\377" +\ + "\12\1\377\377\11\2\377\377\7\2\377\377\6\0\377\377\5\1\377\377\5\0\377" +\ + "\377\5\1\377\377\5\1\377\377\3\0\377\377\4\0\377\377\5\1\377\377\5\1" +\ + "\377\377\4\1\377\377\5\1\377\377\5\0\377\377\6\1\377\377\10\2\377\377" +\ + "\11\2\377\377\12\2\377\377\13\3\377\377\14\2\377\377\15\3\377\377\17" +\ + "\3\377\377\17\4\377\377\21\4\377\375\22\4\377\373\22\6\377\356\24\5\377" +\ + "\332\22\4\377\266\15\4\377\213P\2\377\357\324\4\377\375\336\3\377\375" +\ + "\336\4\377\375\336\4\377\375\335\4\377\375\335\4\377\375\335\4\377\375" +\ + "\335\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336\4\377\374" +\ + "\335\4\377\374\336\4\377\372\335\5\377\364\330\5\377\345\314\4\377\321" +\ + "\271\4\377\267\244\3\377\242\220\2\377\217\201\2\377UM\4\377'RP\377`" +\ + "\237\246\377\206\305\314\377\223\337\347\377\232\355\365\377\235\362" +\ + "\374\377\233\364\375\377\234\366\376\377\235\366\376\377\237\367\377" +\ + "\377\237\366\377\377\232\365\377\377\225\365\377\377\222\364\377\377" +\ + "\221\364\377\377\217\364\377\377\215\364\376\377\214\363\376\377\211" +\ + "\362\375\377\206\356\371\377\201\346\361\377v\325\337\377_\265\276\377" +\ + "\27\201\215\377\12\36 \376\0\0\0\377\0\0\0\335\0\0\0v\0\0\0)\0\0\0\10" +\ + "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0" +\ + "\09\1\0\0\273B\7\2\377\247\22\5\376\322\26\7\377\357\30\10\377\373\31" +\ + "\11\377\376\30\7\377\377\30\10\377\377\26\10\377\377\25\6\377\377\25" +\ + "\6\377\377\22\4\377\377\21\5\377\377\22\4\377\377\20\4\377\377\17\4\377" +\ + "\377\15\2\377\377\13\3\377\377\13\2\377\377\12\2\377\377\11\2\377\377" +\ + "\11\2\377\377\6\1\377\377\5\1\377\377\5\1\377\377\4\0\377\377\5\0\377" +\ + "\377\4\0\377\377\5\0\377\377\5\0\377\377\4\0\377\377\5\1\377\377\5\1" +\ + "\377\377\6\1\377\377\10\1\377\377\11\2\377\377\12\2\377\377\12\1\377" +\ + "\377\13\3\377\377\14\2\377\377\16\3\377\377\20\3\377\377\21\5\377\376" +\ + "\22\5\377\375\22\4\377\366\23\6\377\347\23\5\377\320\21\5\377\231\17" +\ + "\4\377\271\231\2\377\373\335\4\377\375\336\4\377\375\336\4\377\375\336" +\ + "\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336" +\ + "\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\335" +\ + "\4\377\374\337\5\377\370\333\5\377\360\325\4\377\340\307\3\377\313\264" +\ + "\3\377\262\237\2\377\237\216\4\377\220\201\3\377]T\2\377'E<\377M\212" +\ + "\222\377\177\267\274\377\220\322\331\377\232\343\353\377\240\356\366" +\ + "\377\242\362\373\377\241\365\375\377\241\366\375\377\241\365\376\377" +\ + "\237\366\376\377\234\366\376\377\233\366\376\377\232\365\376\377\230" +\ + "\363\375\377\226\362\374\377\223\356\370\377\217\351\363\377\206\334" +\ + "\345\377y\310\320\377c\250\260\377\36s}\377\12\24\23\377\0\0\0\377\0" +\ + "\0\0\357\0\0\0\214\0\0\0\65\0\0\0\14\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\0\201\25\1\0\372" +\ + "\217\17\5\377\300\25\6\377\344\30\10\377\366\31\11\377\375\27\7\377\376" +\ + "\30\10\377\377\27\10\377\376\25\5\377\377\25\6\377\377\23\4\377\377\22" +\ + "\5\377\377\20\4\377\377\20\4\377\377\17\4\377\377\16\2\377\377\13\3\377" +\ + "\377\13\2\377\377\12\1\377\377\11\2\377\377\11\2\377\377\10\0\377\377" +\ + "\6\1\377\377\6\1\377\377\5\0\377\377\5\0\377\377\5\0\377\377\4\0\377" +\ + "\377\5\0\377\377\5\0\377\377\6\0\377\377\6\1\377\377\7\1\377\377\7\0" +\ + "\377\377\12\2\377\377\12\2\377\377\12\1\377\377\14\3\377\377\15\3\377" +\ + "\377\17\3\377\377\20\4\377\377\20\3\377\376\22\4\377\372\22\5\377\361" +\ + "\24\5\377\337\22\6\377\303\17\4\377\2210\3\377\341\307\2\377\375\337" +\ + "\4\377\375\335\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336" +\ + "\3\377\375\336\4\377\375\336\3\377\375\336\4\377\375\336\4\377\375\336" +\ + "\4\377\375\336\4\377\375\335\4\377\375\337\3\377\374\337\3\377\373\336" +\ + "\3\377\366\333\5\377\355\323\4\377\335\304\3\377\307\262\4\377\261\236" +\ + "\3\377\237\216\4\377\223\204\3\377sg\2\377,2\24\377.jo\377^\235\243\377" +\ + "\205\271\276\377\222\317\325\377\233\335\344\377\241\347\356\377\242" +\ + "\353\363\377\242\357\367\377\243\360\370\377\242\360\370\377\240\357" +\ + "\367\377\236\355\365\377\232\351\362\377\224\342\353\377\215\330\341" +\ + "\377\202\310\317\377s\257\265\377Q\220\230\377\37IG\37754\5\377\20\17" +\ + "\0\377\0\0\0\376\0\0\0\275\0\0\0J\0\0\0\21\0\0\0\3\0\0\0\1\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0" +\ + "M\2\0\0\323X\11\3\377\253\22\6\377\324\26\10\377\360\31\10\377\373\30" +\ + "\7\377\376\30\10\377\376\30\10\377\377\26\6\377\377\26\6\377\377\23\4" +\ + "\377\377\22\5\377\377\21\3\377\377\20\3\377\377\20\4\377\377\16\2\377" +\ + "\377\15\3\377\377\14\3\377\377\13\2\377\377\13\2\377\377\11\2\377\377" +\ + "\11\1\377\377\6\1\377\377\6\1\377\377\6\0\377\377\5\0\377\377\6\0\377" +\ + "\377\5\0\377\377\6\0\377\377\6\0\377\377\6\1\377\377\6\1\377\377\7\1" +\ + "\377\377\11\0\377\377\12\2\377\377\13\2\377\377\13\1\377\377\14\3\377" +\ + "\377\15\3\377\377\17\3\377\377\21\4\377\377\20\3\377\374\22\4\377\371" +\ + "\23\4\377\353\23\6\377\323\21\5\377\256\20\4\377\232m\2\377\367\335\2" +\ + "\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336\4\377\375\336" +\ + "\4\377\375\336\4\377\375\336\2\377\375\336\4\377\375\336\4\377\375\336" +\ + "\4\377\375\336\4\377\375\336\4\377\375\335\4\377\375\337\4\377\375\336" +\ + "\4\377\374\337\4\377\372\336\3\377\365\332\5\377\353\322\3\377\333\303" +\ + "\4\377\310\263\4\377\263\241\3\377\242\222\4\377\226\207\2\377\210z\2" +\ + "\377XR\4\377\36*\34\377'go\377K\225\237\377v\252\257\377\216\273\277" +\ + "\377\222\305\313\377\224\315\323\377\225\321\330\377\223\322\330\377" +\ + "\221\320\327\377\216\313\321\377\211\303\311\377\201\265\273\377n\245" +\ + "\253\377R\215\223\377)LM\37703\17\377pj\4\377nj\3\377\17\16\0\376\0\0" +\ + "\0\374\0\0\0\214\0\0\0&\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0%\0\0\0\222\31" +\ + "\2\1\372\206\16\4\377\276\24\6\377\343\30\7\377\364\27\7\377\374\30\10" +\ + "\377\376\27\10\377\376\26\7\377\376\26\6\377\377\24\5\377\377\23\5\377" +\ + "\377\21\4\377\377\21\4\377\377\20\4\377\377\17\2\377\377\16\3\377\377" +\ + "\14\3\377\377\13\2\377\377\13\2\377\377\12\2\377\377\12\1\377\377\11" +\ + "\1\377\377\11\0\377\377\7\1\377\377\7\1\377\377\7\0\377\377\7\0\377\377" +\ + "\6\0\377\377\7\1\377\377\10\0\377\377\11\1\377\377\11\0\377\377\12\1" +\ + "\377\377\13\1\377\377\13\2\377\377\13\2\377\377\16\3\377\377\16\2\377" +\ + "\376\20\3\377\377\21\3\377\376\21\4\377\373\22\5\377\362\22\4\377\341" +\ + "\22\6\377\306\20\5\377\206 \2\377\327\275\2\377\375\337\4\377\374\336" +\ + "\3\377\375\336\4\377\375\336\3\377\375\336\3\377\375\336\3\377\375\336" +\ + "\3\377\375\336\2\377\375\336\3\377\375\336\3\377\375\336\3\377\375\336" +\ + "\3\377\375\336\3\377\375\336\4\377\375\336\3\377\375\337\4\377\375\337" +\ + "\4\377\373\337\3\377\372\335\4\377\365\332\4\377\353\322\4\377\335\307" +\ + "\3\377\313\266\4\377\271\247\3\377\250\227\4\377\234\216\3\377\223\206" +\ + "\3\377\207z\3\377bX\2\37705\17\377\27\62\60\377\37V]\377%r|\3774\212" +\ + "\225\377F\224\236\377P\225\237\377M\223\234\377F\207\221\377:u|\377&" +\ + "KM\377!/\42\377LL\11\377\203z\3\377\240\230\6\377\227\220\7\377xs\5\377" +\ + "\15\14\0\377\0\0\0\360\0\0\0q\0\0\0\30\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\15\0\0\0S\0\0\0\326I\7\2\377\244\22\5\376\316\25\6\377\352\30\7" +\ + "\377\370\27\10\377\374\30\10\377\376\27\7\377\376\25\6\377\377\25\5\377" +\ + "\377\23\4\377\377\23\5\377\377\22\3\377\377\21\3\377\377\17\3\377\377" +\ + "\16\2\377\377\16\3\377\377\15\2\377\377\14\1\377\377\13\2\377\377\12" +\ + "\1\377\377\13\0\377\377\11\0\377\377\11\1\377\377\11\1\377\377\11\1\377" +\ + "\377\11\1\377\377\11\1\377\377\11\1\377\377\11\1\377\377\12\0\377\377" +\ + "\13\1\377\377\12\2\377\377\14\2\377\377\13\2\377\377\16\2\377\377\16" +\ + "\3\377\377\17\2\377\376\21\4\377\375\22\4\377\375\23\3\377\367\23\5\377" +\ + "\353\23\4\377\326\21\5\377\251\20\4\377\231k\2\377\363\331\4\377\375" +\ + "\337\3\377\375\336\3\377\375\337\2\377\375\336\2\377\375\335\3\377\375" +\ + "\336\3\377\375\336\3\377\375\336\3\377\375\336\3\377\375\336\3\377\375" +\ + "\336\3\377\375\336\3\377\375\336\2\377\375\337\2\377\375\337\3\377\375" +\ + "\337\3\377\375\340\4\377\375\340\4\377\373\340\4\377\372\336\4\377\365" +\ + "\334\4\377\355\325\5\377\340\312\3\377\322\275\4\377\301\256\4\377\262" +\ + "\243\3\377\246\227\4\377\235\217\3\377\230\213\3\377\221\206\4\377\201" +\ + "v\2\377h]\0\377TK\0\377EA\6\3778=\17\3778=\20\377>\77\14\377JF\5\377" +\ + "ZR\1\377zr\2\377\233\222\5\377\255\243\7\377\270\256\7\377\267\255\10" +\ + "\377\244\235\6\377vq\5\377\5\4\0\377\0\0\0\337\0\0\0^\0\0\0\20\0\0\0" +\ + "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0%\0\0\0\213\14\0\0\363t\14\4\377" +\ + "\265\22\5\377\331\27\7\377\360\27\10\377\372\27\10\377\374\30\10\377" +\ + "\376\27\7\377\376\26\6\377\377\24\5\377\377\24\5\377\377\22\4\377\377" +\ + "\22\4\377\377\21\4\377\377\20\3\377\377\20\3\377\377\17\3\377\377\14" +\ + "\2\377\377\13\1\377\377\13\1\377\377\12\2\377\377\13\2\377\377\13\1\377" +\ + "\377\12\1\377\377\11\1\377\377\13\1\377\377\13\1\377\377\13\1\377\377" +\ + "\13\0\377\377\13\1\377\377\12\2\377\377\13\2\377\377\13\1\377\377\16" +\ + "\2\377\377\17\2\377\377\17\2\377\376\20\3\377\376\22\4\377\375\22\3\377" +\ + "\373\22\4\377\362\23\5\377\341\22\4\377\306\15\4\377\227(\3\377\320\273" +\ + "\3\377\375\340\4\377\374\340\4\377\375\337\2\377\375\336\3\377\375\337" +\ + "\3\377\375\337\3\377\375\335\3\377\375\336\3\377\375\336\3\377\375\336" +\ + "\3\377\375\336\3\377\375\336\3\377\375\335\3\377\375\337\3\377\375\337" +\ + "\3\377\375\336\2\377\375\340\4\377\375\340\4\377\375\340\4\377\375\342" +\ + "\4\377\373\341\4\377\372\340\4\377\366\336\4\377\360\331\5\377\347\320" +\ + "\5\377\333\306\4\377\315\273\5\377\301\260\4\377\264\246\4\377\254\235" +\ + "\5\377\245\227\4\377\240\223\4\377\235\221\5\377\233\220\5\377\233\220" +\ + "\5\377\232\220\5\377\233\221\5\377\237\225\5\377\244\232\6\377\252\237" +\ + "\6\377\262\247\7\377\274\261\7\377\307\275\10\377\317\304\10\377\307" +\ + "\275\11\377\251\242\7\377ic\5\377\2\2\0\377\0\0\0\312\0\0\0I\0\0\0\11" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0D\0\0\0\273'\3\1\375" +\ + "\221\16\4\377\275\23\5\377\337\25\6\377\362\26\6\377\373\27\10\377\375" +\ + "\27\7\377\377\26\6\377\377\25\5\377\376\24\4\377\377\23\4\377\377\21" +\ + "\3\377\377\22\4\377\377\20\3\377\377\17\3\377\377\17\3\377\377\17\3\377" +\ + "\377\14\1\377\377\14\2\377\377\15\2\377\377\14\2\377\377\13\1\377\377" +\ + "\14\1\377\377\14\1\377\377\13\0\377\377\14\0\377\377\14\0\377\377\14" +\ + "\1\377\377\13\2\377\377\15\2\377\377\14\2\377\377\15\1\377\377\17\3\377" +\ + "\377\20\3\377\377\17\2\377\376\22\4\377\375\21\4\377\374\23\4\377\366" +\ + "\22\5\377\347\22\4\377\323\21\5\377\247\17\4\377\231l\2\377\367\335\4" +\ + "\377\375\340\3\377\375\340\4\377\375\340\2\377\375\336\3\377\375\337" +\ + "\3\377\375\336\3\377\375\336\3\377\375\336\3\377\375\336\3\377\375\335" +\ + "\3\377\375\335\3\377\375\335\3\377\375\336\3\377\375\337\3\377\375\337" +\ + "\3\377\375\337\3\377\375\340\3\377\375\337\4\377\375\340\4\377\375\342" +\ + "\4\377\375\342\3\377\374\342\4\377\373\342\5\377\370\340\5\377\364\334" +\ + "\4\377\356\330\5\377\345\320\5\377\333\311\4\377\321\300\4\377\310\270" +\ + "\5\377\301\260\5\377\272\254\4\377\265\250\5\377\262\245\5\377\262\245" +\ + "\5\377\262\246\6\377\264\251\6\377\271\254\6\377\276\262\7\377\305\271" +\ + "\7\377\316\302\10\377\327\313\11\377\340\324\11\377\337\323\11\377\314" +\ + "\302\11\377\245\235\7\377B>\3\377\0\0\0\376\0\0\0\260\0\0\0\67\0\0\0" +\ + "\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\30\0\0\0e\0\0\0" +\ + "\334C\6\1\377\234\21\5\376\305\24\5\377\343\25\7\377\363\27\6\377\373" +\ + "\30\7\377\376\26\7\377\376\25\5\377\377\25\5\377\377\24\5\377\377\23" +\ + "\3\377\377\21\4\377\377\22\4\377\377\20\2\377\377\20\3\377\377\20\2\377" +\ + "\377\16\3\377\377\14\1\377\377\14\2\377\377\14\1\377\377\13\2\377\377" +\ + "\15\2\377\377\13\2\377\377\14\2\377\377\14\2\377\377\14\2\377\377\13" +\ + "\2\377\377\15\2\377\377\15\1\377\377\15\1\377\377\20\3\377\377\21\3\377" +\ + "\377\17\3\377\377\21\2\377\376\22\4\377\374\22\3\377\370\23\5\377\357" +\ + "\24\4\377\333\23\4\377\300\17\4\377\214/\2\377\326\301\2\377\375\341" +\ + "\4\377\374\342\4\377\375\337\4\377\375\340\2\377\375\336\3\377\375\336" +\ + "\3\377\375\337\3\377\375\336\3\377\375\336\3\377\375\336\3\377\375\336" +\ + "\3\377\375\337\3\377\375\337\3\377\375\336\3\377\375\337\3\377\375\337" +\ + "\3\377\375\337\2\377\375\340\4\377\375\341\4\377\375\340\4\377\375\342" +\ + "\4\377\375\342\4\377\374\342\4\377\375\344\5\377\374\344\5\377\373\342" +\ + "\5\377\370\341\4\377\364\336\6\377\357\332\6\377\350\325\5\377\342\320" +\ + "\6\377\334\313\5\377\327\307\6\377\323\303\6\377\321\301\6\377\320\301" +\ + "\6\377\321\303\7\377\322\304\7\377\325\307\6\377\332\315\10\377\340\322" +\ + "\11\377\347\332\11\377\355\337\11\377\356\341\12\377\346\331\12\377\310" +\ + "\300\10\377\233\225\6\377\26\25\1\377\0\0\0\376\0\0\0\216\0\0\0$\0\0" +\ + "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0)\0\0\0" +\ + "\213\7\0\0\362\134\11\2\377\244\21\4\377\312\24\6\377\344\25\7\377\363" +\ + "\27\7\377\373\27\6\377\375\26\7\377\377\25\6\377\376\25\6\377\377\24" +\ + "\4\377\377\22\3\377\377\23\4\377\377\21\3\377\377\21\2\377\377\21\3\377" +\ + "\377\20\2\377\377\17\3\377\377\15\1\377\377\15\1\377\377\15\2\377\377" +\ + "\15\2\377\377\15\2\377\377\14\2\377\377\15\2\377\377\15\2\377\377\15" +\ + "\2\377\377\15\1\377\377\16\2\377\377\17\2\377\377\20\2\377\377\21\3\377" +\ + "\377\21\3\377\376\22\3\377\375\22\3\377\372\23\4\377\363\23\4\377\343" +\ + "\23\5\377\313\21\5\377\235\24\3\377\252\207\2\377\371\341\3\377\375\341" +\ + "\3\377\375\341\4\377\375\337\3\377\375\337\2\377\375\337\3\377\375\337" +\ + "\3\377\375\336\3\377\375\337\3\377\375\337\3\377\375\337\3\377\375\337" +\ + "\3\377\375\337\3\377\375\337\3\377\375\337\3\377\375\337\3\377\375\336" +\ + "\3\377\375\337\2\377\375\337\3\377\375\340\4\377\375\341\4\377\375\343" +\ + "\4\377\375\343\4\377\375\342\4\377\374\344\5\377\375\343\5\377\374\344" +\ + "\5\377\373\344\4\377\373\344\6\377\370\343\5\377\366\342\6\377\363\337" +\ + "\6\377\360\335\6\377\355\334\6\377\352\331\6\377\351\331\6\377\350\331" +\ + "\7\377\351\332\7\377\352\333\7\377\354\336\7\377\357\340\10\377\363\344" +\ + "\11\377\366\350\11\377\367\350\11\377\365\347\13\377\343\327\12\377\277" +\ + "\265\10\377\204}\6\377\3\3\0\377\1\1\0\357\0\0\0k\0\0\0\26\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0G\0" +\ + "\0\0\303\16\2\4\377d\12\5\377\247\20\5\377\311\23\5\377\343\26\6\377" +\ + "\362\27\7\377\372\27\7\377\375\27\6\377\376\26\6\377\377\24\5\377\376" +\ + "\24\5\377\377\22\3\377\377\23\4\377\377\21\4\377\377\21\2\377\377\21" +\ + "\3\377\377\20\2\377\377\20\3\377\377\20\2\377\377\17\1\377\377\17\1\377" +\ + "\377\17\2\377\377\17\2\377\377\17\2\377\377\17\1\377\377\20\1\377\377" +\ + "\20\3\377\377\17\2\377\377\21\3\377\377\20\3\377\377\20\3\377\377\21" +\ + "\2\377\375\22\4\377\373\23\3\377\365\24\5\377\350\24\4\377\323\22\6\377" +\ + "\257\17\4\377\220R\3\377\351\325\3\377\376\344\4\377\375\341\4\377\375" +\ + "\341\4\377\375\341\3\377\375\340\3\377\375\340\3\377\375\337\3\377\375" +\ + "\336\2\377\375\336\3\377\375\336\3\377\375\336\2\377\375\337\2\377\375" +\ + "\337\3\377\375\336\2\377\375\336\3\377\375\336\3\377\375\337\3\377\375" +\ + "\337\3\377\375\341\3\377\375\341\4\377\375\341\3\377\375\342\4\377\375" +\ + "\342\3\377\375\343\5\377\375\343\5\377\375\343\5\377\374\344\5\377\375" +\ + "\346\5\377\374\346\5\377\374\346\6\377\373\346\5\377\373\346\6\377\371" +\ + "\345\7\377\370\346\7\377\367\344\10\377\366\345\10\377\367\345\7\377" +\ + "\366\346\10\377\367\346\11\377\370\350\10\377\372\352\12\377\373\354" +\ + "\12\377\374\355\12\377\374\355\11\377\362\344\12\377\332\317\11\377\262" +\ + "\253\7\377[U\4\377\0\0\0\376\0\0\0\312\0\0\0L\0\0\0\13\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0+\0\0\0\256" +\ + ";\7\64\3773\3#\377g\12\5\377\243\20\4\377\305\23\5\377\340\25\6\377\360" +\ + "\26\7\377\371\27\6\377\375\27\6\377\375\25\5\377\376\24\5\377\377\24" +\ + "\5\377\376\23\4\377\377\23\4\377\377\21\3\377\377\21\3\377\377\21\3\377" +\ + "\377\21\3\377\377\20\3\377\377\20\3\377\377\20\3\377\377\20\2\377\377" +\ + "\20\1\377\377\20\2\377\377\21\2\377\377\20\3\377\377\21\2\377\377\21" +\ + "\2\377\377\21\3\377\377\21\3\377\377\22\3\377\376\22\3\377\373\23\4\377" +\ + "\367\23\5\377\353\22\4\377\331\23\5\377\274\20\5\377\2136\3\377\316\266" +\ + "\3\377\374\344\4\377\374\343\4\377\375\343\4\377\375\341\4\377\375\341" +\ + "\3\377\375\340\3\377\375\340\3\377\375\340\3\377\375\340\3\377\375\340" +\ + "\2\377\375\340\1\377\375\337\2\377\375\337\1\377\375\336\1\377\375\340" +\ + "\3\377\375\340\3\377\375\340\3\377\375\340\3\377\375\340\3\377\375\341" +\ + "\2\377\375\340\2\377\375\341\4\377\375\343\4\377\375\344\3\377\375\344" +\ + "\4\377\375\344\5\377\375\344\5\377\375\345\4\377\375\346\6\377\375\346" +\ + "\6\377\375\347\6\377\375\350\6\377\375\351\7\377\374\350\7\377\374\351" +\ + "\6\377\374\352\10\377\374\352\10\377\374\353\7\377\374\353\10\377\375" +\ + "\354\11\377\375\355\10\377\375\356\11\377\375\356\12\377\375\355\12\377" +\ + "\372\353\11\377\355\341\12\377\316\304\11\377\244\234\7\377)&\2\377\0" +\ + "\0\0\376\0\0\0\242\0\0\0\60\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\64\12\3\11\310m\7^\376\201\11" +\ + "q\3776\5'\377a\11\5\377\240\17\3\377\301\22\5\377\332\25\6\377\354\25" +\ + "\6\377\366\27\6\377\373\26\6\377\375\25\5\377\375\25\5\377\377\25\5\377" +\ + "\377\24\4\377\377\23\3\377\377\23\4\377\377\23\3\377\377\23\3\377\377" +\ + "\22\3\377\377\22\3\377\377\22\2\377\377\22\2\377\377\22\3\377\377\21" +\ + "\2\377\377\21\2\377\377\22\3\377\377\23\4\377\377\23\4\377\376\23\4\377" +\ + "\376\23\4\377\375\24\3\377\373\25\4\377\367\24\5\377\356\23\5\377\334" +\ + "\23\5\377\305\17\4\377\216\32\2\377\273\242\3\377\371\341\4\377\375\344" +\ + "\4\377\375\343\4\377\375\343\4\377\375\343\3\377\375\341\3\377\375\341" +\ + "\3\377\375\341\3\377\375\340\3\377\375\337\2\377\375\340\2\377\375\340" +\ + "\2\377\375\340\2\377\375\337\2\377\375\337\2\377\375\340\1\377\375\337" +\ + "\2\377\375\340\3\377\375\341\3\377\375\341\3\377\375\340\3\377\375\342" +\ + "\3\377\375\342\4\377\375\343\4\377\375\344\3\377\375\344\4\377\375\345" +\ + "\5\377\375\344\5\377\375\346\4\377\375\346\6\377\375\347\6\377\375\350" +\ + "\6\377\375\350\6\377\375\351\7\377\375\351\7\377\375\351\7\377\375\353" +\ + "\7\377\375\354\10\377\375\355\7\377\376\355\10\377\375\355\11\377\376" +\ + "\355\11\377\376\357\11\377\375\356\12\377\373\355\12\377\366\351\12\377" +\ + "\347\332\12\377\304\272\10\377\217\207\7\377\12\6\0\377\0\0\0\376\0\0" +\ + "\0\201\0\0\0\35\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\10\0\0\0R\37\5\33\347\212\6w\377\243\12\215\377" +\ + "\220\11~\377\77\4\64\377K\7\10\377\226\17\3\377\265\21\4\377\320\22\6" +\ + "\377\344\24\5\377\357\25\6\377\366\26\6\377\374\27\5\377\375\25\6\377" +\ + "\376\26\5\377\376\24\5\377\376\24\4\377\377\24\4\377\377\22\4\377\377" +\ + "\22\3\377\377\23\4\377\377\23\4\377\377\23\4\377\377\23\4\377\377\23" +\ + "\4\377\377\23\4\377\377\22\3\377\377\22\4\377\377\22\3\377\376\24\3\377" +\ + "\375\24\5\377\373\25\5\377\367\25\4\377\357\24\5\377\336\22\4\377\306" +\ + "\22\4\377\230\27\3\377\245\202\3\377\367\341\4\377\375\345\4\377\375" +\ + "\343\4\377\375\344\4\377\375\343\4\377\375\342\3\377\375\342\3\377\375" +\ + "\341\3\377\375\340\3\377\375\341\2\377\375\341\2\377\375\337\1\377\375" +\ + "\337\2\377\375\340\2\377\375\340\2\377\375\337\2\377\375\337\1\377\375" +\ + "\340\2\377\375\341\3\377\375\340\3\377\375\341\3\377\375\342\3\377\375" +\ + "\341\3\377\375\343\4\377\375\344\4\377\375\343\3\377\375\345\5\377\375" +\ + "\344\5\377\375\344\5\377\375\346\4\377\375\346\6\377\375\350\6\377\375" +\ + "\350\6\377\375\351\6\377\375\350\7\377\375\351\7\377\375\351\6\377\375" +\ + "\353\10\377\374\353\10\377\375\355\7\377\376\355\10\377\376\356\11\377" +\ + "\376\355\11\377\376\357\11\377\375\356\12\377\372\354\12\377\361\344" +\ + "\12\377\336\322\12\377\273\264\7\377kT\6\377\20\0\0\377\0\0\0\376\0\0" +\ + "\0u\0\0\0\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\17\0\0\0w\77\7\67\367\237\7\211\377\267\11\240\377" +\ + "\257\11\231\377\231\10\207\377Z\4O\3771\4\12\377|\14\4\377\245\21\5\377" +\ + "\300\22\5\377\326\23\5\377\345\25\6\377\360\27\6\377\366\25\5\377\373" +\ + "\26\4\377\374\26\6\377\376\26\4\377\376\24\3\377\377\23\3\377\377\23" +\ + "\3\377\376\22\4\377\377\24\3\377\377\24\3\377\377\24\4\377\377\24\3\377" +\ + "\376\24\4\377\377\23\4\377\377\23\3\377\376\24\3\377\375\25\5\377\373" +\ + "\26\5\377\365\26\6\377\354\25\5\377\337\23\4\377\310\22\5\377\236\25" +\ + "\3\377\225l\2\377\360\334\3\377\375\345\5\377\374\345\4\377\375\345\4" +\ + "\377\375\343\4\377\375\343\4\377\375\342\3\377\375\342\3\377\375\342" +\ + "\3\377\375\341\3\377\375\340\3\377\375\340\2\377\375\340\1\377\375\340" +\ + "\2\377\375\337\2\377\375\337\2\377\375\341\2\377\375\340\1\377\375\340" +\ + "\2\377\375\340\3\377\375\341\3\377\375\341\3\377\375\343\2\377\375\342" +\ + "\2\377\375\343\4\377\375\344\4\377\375\344\4\377\375\345\4\377\375\345" +\ + "\5\377\375\345\5\377\375\346\4\377\375\350\6\377\375\347\6\377\375\351" +\ + "\6\377\375\350\6\377\375\351\7\377\375\351\7\377\375\352\6\377\375\353" +\ + "\10\377\375\354\10\377\375\354\7\377\376\355\10\377\376\356\11\377\376" +\ + "\355\11\377\376\357\11\377\374\355\12\377\370\351\11\377\352\335\12\377" +\ + "\322\310\10\377\245\236\10\377n%\5\3779\4\2\377\1\0\0\376\0\0\0\200\0" +\ + "\0\0\33\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\25\0\0\0\215X\3M\375\256\7\230\377\314\11\263\377\305\11" +\ + "\255\377\264\10\236\377\237\6\214\377p\4d\3775\1\42\377P\10\6\377\224" +\ + "\17\3\377\257\21\4\377\303\21\4\377\326\23\5\377\343\24\6\377\354\25" +\ + "\6\377\363\26\5\377\370\26\5\377\373\25\5\377\374\26\5\377\375\24\4\377" +\ + "\377\25\4\377\377\24\4\377\377\24\4\377\377\24\4\377\377\24\4\377\377" +\ + "\25\4\377\376\25\4\377\374\25\5\377\373\25\4\377\370\26\5\377\363\26" +\ + "\6\377\352\26\6\377\334\24\4\377\313\22\5\377\235\15\3\377\217a\3\377" +\ + "\344\320\3\377\375\346\5\377\374\345\4\377\375\344\4\377\375\344\4\377" +\ + "\375\345\4\377\375\343\4\377\375\343\2\377\375\343\2\377\375\343\3\377" +\ + "\375\341\3\377\375\341\3\377\375\341\2\377\375\340\1\377\375\340\2\377" +\ + "\375\341\2\377\375\341\2\377\375\340\2\377\375\340\1\377\375\341\2\377" +\ + "\375\341\3\377\375\341\3\377\375\342\3\377\375\343\3\377\375\343\3\377" +\ + "\375\343\4\377\375\344\4\377\375\344\3\377\375\345\5\377\375\345\5\377" +\ + "\375\346\5\377\375\347\4\377\375\347\6\377\375\350\6\377\375\351\6\377" +\ + "\375\351\5\377\375\351\7\377\375\352\7\377\375\352\6\377\374\353\10\377" +\ + "\376\355\10\377\376\355\7\377\376\355\10\377\376\355\11\377\375\356\11" +\ + "\377\374\356\11\377\372\354\12\377\361\344\12\377\342\325\11\377\306" +\ + "\276\7\377\212n\10\377\220\23\6\377Y\11\4\377\1\0\0\376\0\0\0\226\0\0" +\ + "\0'\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\31\0\0\0\230c\4W\377\272\10\243\377\335\10\302\377\334\10\302" +\ + "\377\313\10\265\377\272\3\247\377\202\10t\377W\25\62\377\77\35\35\377" +\ + "-\14\13\377^\12\3\377\222\16\3\377\254\20\4\377\276\20\4\377\315\23\5" +\ + "\377\331\23\5\377\344\25\4\377\354\25\6\377\361\26\6\377\365\26\6\377" +\ + "\367\26\6\377\370\26\6\377\371\26\5\377\371\26\6\377\371\26\6\377\367" +\ + "\26\6\377\367\26\6\377\365\26\6\377\360\26\5\377\352\25\5\377\342\24" +\ + "\5\377\325\23\6\377\277\21\5\377\221\15\3\377\225n\3\377\354\333\4\377" +\ + "\374\350\5\377\375\346\4\377\375\346\5\377\375\346\4\377\375\346\3\377" +\ + "\375\345\4\377\375\345\3\377\375\344\4\377\375\344\3\377\375\343\3\377" +\ + "\375\343\3\377\375\343\3\377\375\342\3\377\375\342\2\377\375\342\2\377" +\ + "\375\341\1\377\375\341\2\377\375\342\2\377\375\342\3\377\375\342\3\377" +\ + "\375\342\3\377\375\343\3\377\375\343\3\377\375\343\3\377\375\344\4\377" +\ + "\375\343\4\377\375\345\4\377\375\345\3\377\375\345\5\377\375\347\5\377" +\ + "\375\347\5\377\375\350\4\377\375\350\6\377\375\351\6\377\375\351\5\377" +\ + "\374\351\7\377\375\353\6\377\375\353\7\377\375\352\6\377\374\354\10\377" +\ + "\376\355\10\377\376\356\7\377\376\356\10\377\375\356\11\377\375\356\10" +\ + "\377\373\355\11\377\366\350\11\377\351\334\10\377\324\311\10\377\260" +\ + "\251\7\377\207.\7\377\263\23\10\377q\16\5\377\1\0\0\376\0\0\0\256\0\0" +\ + "\0\63\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\33\0\0\0\233g\4Y\377\301\10\250\377\350\12\315\377\361\10" +\ + "\324\377\305\7\262\377~\36W\377\206C@\377\227a^\377\225ee\377\202WW\377" +\ + "J10\3771\21\20\377Q\11\3\377\200\14\2\377\235\16\3\377\256\20\4\377\274" +\ + "\21\4\377\311\22\5\377\325\24\4\377\336\24\4\377\344\25\5\377\350\25" +\ + "\5\377\351\25\5\377\351\25\5\377\351\25\5\377\350\25\5\377\345\25\6\377" +\ + "\341\24\5\377\333\24\4\377\322\24\5\377\307\22\4\377\260\20\4\377\202" +\ + "!\3\377\231w\3\377\357\337\4\377\376\351\6\377\375\350\4\377\375\350" +\ + "\5\377\375\350\5\377\375\346\5\377\375\345\3\377\375\345\4\377\375\344" +\ + "\4\377\375\345\4\377\375\344\3\377\375\343\2\377\375\344\3\377\375\344" +\ + "\3\377\375\342\3\377\375\342\3\377\375\342\3\377\375\342\2\377\375\342" +\ + "\3\377\375\342\3\377\375\342\3\377\375\343\3\377\375\344\3\377\375\344" +\ + "\3\377\375\343\3\377\375\344\3\377\375\344\4\377\375\344\4\377\375\345" +\ + "\4\377\375\345\3\377\375\346\5\377\375\347\5\377\375\350\5\377\375\347" +\ + "\4\377\375\350\6\377\375\350\6\377\375\351\5\377\375\351\7\377\374\352" +\ + "\7\377\375\352\7\377\374\353\6\377\375\354\10\377\376\355\10\377\376" +\ + "\356\10\377\375\356\10\377\375\355\11\377\374\355\11\377\371\352\12\377" +\ + "\357\342\11\377\336\323\11\377\307\300\7\377\212e\11\377\300\24\7\377" +\ + "\277\27\10\377\177\17\5\377\1\0\0\376\0\0\0\275\0\0\0>\0\0\0\5\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0" +\ + "\233g\4Z\377\304\10\253\377\354\10\321\377\262\22\233\377\223@B\377\300" +\ + "xt\377\310\205\204\377\305\200\177\377\275{z\377\262sr\377\246kj\377" +\ + "\215\134[\377X:9\377*\27\27\3777\12\11\377d\12\4\377\204\14\4\377\227" +\ + "\16\2\377\252\17\3\377\272\20\4\377\306\22\4\377\315\22\4\377\321\22" +\ + "\4\377\323\23\4\377\323\22\4\377\320\22\4\377\315\22\4\377\310\22\5\377" +\ + "\276\20\4\377\255\20\3\377\231\26\4\377}<\3\377\301\256\5\377\364\342" +\ + "\5\377\374\352\6\377\375\350\6\377\375\350\4\377\375\347\5\377\375\350" +\ + "\5\377\375\347\4\377\375\346\5\377\375\345\3\377\375\346\4\377\375\345" +\ + "\4\377\375\345\4\377\375\344\3\377\375\344\2\377\375\344\3\377\375\344" +\ + "\3\377\375\344\3\377\375\344\3\377\375\344\3\377\375\344\3\377\375\344" +\ + "\3\377\375\343\3\377\375\344\3\377\375\344\2\377\375\344\2\377\375\344" +\ + "\3\377\375\345\3\377\375\345\4\377\375\345\4\377\375\346\4\377\375\347" +\ + "\4\377\375\347\5\377\375\347\5\377\375\350\4\377\375\350\5\377\375\351" +\ + "\5\377\375\352\6\377\375\351\5\377\375\352\7\377\375\353\7\377\375\353" +\ + "\7\377\375\354\7\377\375\355\10\377\376\356\10\377\375\356\10\377\375" +\ + "\356\11\377\374\355\10\377\372\353\11\377\363\346\10\377\346\331\11\377" +\ + "\317\304\7\377\242\235\7\377\246%\10\377\343\30\11\377\300\27\10\377" +\ + "\206\21\6\377\1\0\0\377\0\0\0\305\0\0\0C\0\0\0\6\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0\233g\4Y\377\274" +\ + "\6\245\377\214\36h\377\270XR\377\332\215\214\377\351\223\221\377\354" +\ + "\225\223\377\345\220\216\377\332\211\207\377\316\201\200\377\302yx\377" +\ + "\267qp\377\254kj\377\236ba\377\210TS\377]::\377-\30\30\377-\15\14\377" +\ + "J\10\5\377f\16\4\377\212\13\4\377\227\15\3\377\235\16\3\377\237\14\4" +\ + "\377\237\16\3\377\236\15\3\377\226\15\4\377~\26\3\377\202=\4\377\235" +\ + "{\4\377\303\267\6\377\360\343\6\377\375\353\6\377\375\352\6\377\375\351" +\ + "\6\377\375\352\5\377\375\350\5\377\375\351\4\377\375\351\5\377\375\350" +\ + "\5\377\375\350\5\377\375\346\3\377\375\345\4\377\375\346\4\377\375\346" +\ + "\4\377\375\346\4\377\375\345\2\377\375\344\2\377\375\344\3\377\375\344" +\ + "\3\377\375\344\3\377\375\344\3\377\375\344\3\377\375\344\3\377\375\344" +\ + "\3\377\375\345\3\377\375\345\3\377\375\344\4\377\375\345\3\377\375\346" +\ + "\4\377\375\346\4\377\375\346\4\377\375\347\4\377\375\347\5\377\375\351" +\ + "\5\377\375\351\5\377\375\351\4\377\375\350\6\377\375\352\6\377\375\352" +\ + "\6\377\375\352\6\377\375\352\6\377\374\352\7\377\375\354\7\377\376\354" +\ + "\7\377\376\355\7\377\376\356\11\377\375\356\11\377\374\355\11\377\374" +\ + "\355\10\377\367\351\11\377\354\337\11\377\327\313\7\377\276\266\7\377" +\ + "\210L\10\377\342\25\11\377\351\33\12\377\302\30\11\377\210\20\6\377\1" +\ + "\0\0\377\1\0\0\311\0\0\0E\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\0\233T\3K\376}\37J\377\276ZV\377" +\ + "\345\214\212\377\365\223\222\377\373\226\225\377\371\226\225\377\365" +\ + "\223\222\377\356\215\214\377\346\211\210\377\334\203\202\377\323||\377" +\ + "\311vv\377\277pp\377\266ll\377\255hh\377\236aa\377\210UU\377f@@\377\35" +\ + "\24\15\377ec\4\377\215\211\4\377\250\244\6\377\272\265\7\377\301\272" +\ + "\6\377\305\276\6\377\313\304\6\377\332\321\7\377\356\341\10\377\373\354" +\ + "\7\377\376\356\7\377\376\355\7\377\375\353\7\377\374\352\6\377\375\352" +\ + "\6\377\375\352\6\377\375\351\5\377\375\350\4\377\375\351\5\377\375\351" +\ + "\5\377\375\347\5\377\375\347\4\377\375\346\4\377\375\345\4\377\375\345" +\ + "\4\377\375\345\4\377\375\345\3\377\375\345\3\377\375\345\3\377\375\345" +\ + "\3\377\375\345\3\377\375\345\3\377\375\344\3\377\375\346\2\377\375\345" +\ + "\3\377\375\345\2\377\375\345\4\377\375\345\4\377\375\345\4\377\375\345" +\ + "\4\377\375\345\4\377\375\346\3\377\375\350\5\377\375\347\5\377\375\351" +\ + "\5\377\375\351\5\377\375\350\4\377\375\351\6\377\375\352\6\377\375\351" +\ + "\6\377\375\352\6\377\374\352\7\377\375\353\7\377\375\354\7\377\376\354" +\ + "\7\377\375\355\7\377\375\356\11\377\375\356\11\377\374\355\11\377\367" +\ + "\350\11\377\357\341\11\377\336\321\10\377\303\272\6\377\221w\10\377\310" +\ + "\26\7\377\372\32\12\377\350\33\12\377\302\30\11\377\211\21\6\377\1\0" +\ + "\0\377\1\0\0\313\0\0\0F\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\0\0\0\266N\26\35\377\265D@\377\342\204" +\ + "\203\377\370\217\215\377\375\222\220\377\376\223\221\377\375\221\220" +\ + "\377\374\217\216\377\372\216\215\377\365\212\212\377\360\210\207\377" +\ + "\351\203\203\377\343\200\177\377\333{{\377\322xx\377\311xx\377\275{{" +\ + "\377\257yy\377\241on\377qII\3775,\12\377\227\217\5\377\303\270\6\377" +\ + "\343\325\10\377\364\346\11\377\375\356\11\377\376\357\11\377\376\357" +\ + "\11\377\376\356\10\377\376\356\10\377\376\355\7\377\376\354\6\377\375" +\ + "\354\7\377\375\353\6\377\375\353\5\377\375\352\6\377\375\352\6\377\375" +\ + "\352\6\377\375\351\4\377\375\350\5\377\375\351\5\377\375\350\4\377\375" +\ + "\347\4\377\375\347\3\377\375\347\4\377\375\346\4\377\375\346\4\377\375" +\ + "\346\4\377\375\346\3\377\375\346\3\377\375\345\3\377\375\345\3\377\375" +\ + "\346\3\377\375\345\4\377\375\345\3\377\375\345\4\377\375\346\3\377\375" +\ + "\346\4\377\375\346\4\377\375\347\4\377\375\346\4\377\375\347\3\377\375" +\ + "\350\5\377\375\351\5\377\375\350\5\377\375\351\4\377\375\351\5\377\375" +\ + "\352\6\377\375\352\6\377\375\353\6\377\374\353\6\377\374\354\7\377\374" +\ + "\355\7\377\375\354\6\377\376\356\10\377\376\356\10\377\374\355\11\377" +\ + "\374\355\11\377\371\351\11\377\361\344\11\377\343\326\10\377\316\304" +\ + "\7\377\244\227\6\377\240&\7\377\366\31\11\377\372\31\11\377\350\32\12" +\ + "\377\302\27\7\377\210\20\5\377\1\0\0\377\1\0\0\313\0\0\0F\0\0\0\7\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\0x\66\21" +\ + "\21\361\245'#\377\331tr\377\364\205\203\377\375\211\210\377\376\212\211" +\ + "\377\376\212\210\377\377\210\207\377\376\210\207\377\375\210\207\377" +\ + "\374\207\206\377\372\205\204\377\367\203\202\377\364\201\200\377\357" +\ + "\177\200\377\352\202\202\377\342\214\214\377\327\235\235\377\307\245" +\ + "\244\377\263\223\223\377\237qq\377W45\377IB\7\377\240\231\5\377\305\273" +\ + "\7\377\342\326\10\377\364\346\10\377\372\353\11\377\375\356\11\377\376" +\ + "\357\11\377\376\355\7\377\376\356\10\377\376\356\10\377\374\355\7\377" +\ + "\375\353\7\377\375\353\6\377\375\352\6\377\375\352\6\377\375\352\5\377" +\ + "\375\352\5\377\375\352\4\377\375\351\5\377\375\351\5\377\375\351\5\377" +\ + "\375\347\4\377\375\346\4\377\375\346\4\377\375\347\4\377\375\346\4\377" +\ + "\375\345\4\377\375\345\4\377\375\346\4\377\375\346\4\377\375\345\4\377" +\ + "\375\346\4\377\375\347\4\377\375\347\4\377\375\347\4\377\375\347\4\377" +\ + "\375\346\4\377\375\346\4\377\375\350\4\377\375\350\4\377\375\351\4\377" +\ + "\375\351\5\377\375\351\4\377\375\352\6\377\375\352\5\377\375\351\6\377" +\ + "\374\353\5\377\375\353\6\377\375\354\7\377\376\355\7\377\376\355\7\377" +\ + "\376\355\7\377\376\355\7\377\375\356\10\377\374\355\10\377\371\352\11" +\ + "\377\363\346\7\377\345\330\7\377\321\307\7\377\257\251\7\377\222:\6\377" +\ + "\354\25\10\377\376\33\12\377\371\31\12\377\350\32\12\377\301\27\7\377" +\ + "\207\17\5\377\1\0\0\377\1\0\0\313\0\0\0F\0\0\0\7\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0Q!\14\14\336\220\30\25\377\315" +\ + "FD\376\356|z\377\373\200\177\377\375\201\200\377\377\201\200\377\377" +\ + "\200\177\377\377\200\177\377\376\177\177\377\377\177~\377\376~}\377\376" +\ + "~}\377\375}}\377\374{{\377\372z|\377\367\202\204\377\362\232\233\377" +\ + "\352\274\275\377\334\321\321\377\310\274\274\377\262\213\213\377\233" +\ + "__\377A#!\377_W\6\377\244\233\5\377\311\276\7\377\344\330\7\377\363\345" +\ + "\10\377\372\353\11\377\374\355\11\377\375\356\7\377\376\356\10\377\376" +\ + "\356\10\377\375\355\7\377\375\354\6\377\375\354\6\377\375\352\5\377\375" +\ + "\353\6\377\375\353\6\377\375\352\6\377\375\351\4\377\375\352\5\377\375" +\ + "\351\5\377\375\351\5\377\375\351\5\377\375\351\4\377\375\350\4\377\375" +\ + "\346\4\377\375\347\4\377\375\347\4\377\375\347\4\377\375\346\4\377\375" +\ + "\346\4\377\375\347\4\377\375\346\4\377\375\346\4\377\375\346\4\377\375" +\ + "\347\4\377\375\347\4\377\375\347\3\377\375\350\4\377\375\350\5\377\375" +\ + "\350\5\377\375\352\5\377\375\352\5\377\375\351\5\377\375\352\6\377\375" +\ + "\353\6\377\375\352\6\377\375\352\6\377\374\354\7\377\376\354\6\377\376" +\ + "\354\7\377\376\355\10\377\376\356\10\377\375\356\7\377\374\355\11\377" +\ + "\371\352\10\377\363\345\7\377\347\332\10\377\323\307\10\377\267\257\7" +\ + "\377\222V\10\377\332\20\7\377\377\31\11\377\377\32\11\377\371\31\12\377" +\ + "\347\32\11\377\300\27\7\377\206\17\5\377\1\0\0\377\1\0\0\312\0\0\0F\0" +\ + "\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0/\11\4\4\272" +\ + "t\25\24\376\277\36\34\377\347][\377\371yw\377\375{y\377\376yw\377\376" +\ + "yw\377\377xw\377\377ww\377\377wv\377\377vu\377\377uu\377\376tt\377\377" +\ + "rs\377\376qr\377\376rt\377\375z}\377\372\225\227\377\365\277\277\377" +\ + "\354\333\333\377\333\311\312\377\305\224\224\377\256bd\377\216CD\377" +\ + "9\35\26\377f_\5\377\247\236\6\377\314\300\7\377\344\330\7\377\363\345" +\ + "\10\377\371\352\11\377\374\355\10\377\375\356\10\377\376\355\10\377\376" +\ + "\355\10\377\375\355\6\377\374\354\6\377\374\354\6\377\375\353\6\377\375" +\ + "\352\5\377\375\352\6\377\375\352\5\377\375\351\4\377\375\352\5\377\375" +\ + "\352\5\377\375\352\5\377\375\351\5\377\375\351\5\377\375\351\4\377\375" +\ + "\351\4\377\375\350\3\377\375\350\4\377\375\350\4\377\375\350\4\377\375" +\ + "\350\4\377\375\350\4\377\375\351\3\377\375\350\3\377\375\350\4\377\375" +\ + "\351\4\377\375\351\4\377\375\351\4\377\375\352\5\377\375\352\5\377\375" +\ + "\351\4\377\375\352\5\377\375\352\5\377\374\352\6\377\374\352\6\377\375" +\ + "\353\6\377\374\354\7\377\376\354\7\377\375\355\6\377\376\356\10\377\376" +\ + "\356\10\377\375\356\10\377\374\355\7\377\371\351\11\377\363\345\7\377" +\ + "\347\332\10\377\325\311\7\377\272\262\6\377\222`\6\377\310\22\6\377\376" +\ + "\30\11\377\377\31\11\377\377\32\12\377\371\32\11\377\344\32\11\377\275" +\ + "\26\7\377\177\17\4\377\2\0\0\377\0\0\0\307\0\0\0D\0\0\0\7\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\0|I\17\17\370\256\33\30\377\336" +\ + "&#\376\365c`\377\375rp\377\376qo\377\377po\377\377po\377\377on\377\377" +\ + "on\377\377on\377\377mm\377\377jk\377\377hi\377\377fh\377\375dg\377\375" +\ + "dg\377\375jm\377\375}\201\377\372\234\240\377\364\264\266\377\352\252" +\ + "\254\377\330\203\205\377\300[]\377\252EG\377\20425\3778\34\21\377mg\5" +\ + "\377\252\241\5\377\313\300\6\377\343\326\10\377\362\344\7\377\371\352" +\ + "\11\377\374\355\7\377\376\356\10\377\375\355\7\377\375\356\7\377\375" +\ + "\355\6\377\376\353\7\377\374\353\6\377\375\353\6\377\375\352\5\377\375" +\ + "\353\6\377\375\353\6\377\375\351\4\377\375\352\5\377\375\351\5\377\374" +\ + "\351\4\377\375\351\4\377\375\351\5\377\375\351\4\377\375\351\4\377\375" +\ + "\351\3\377\375\351\3\377\375\350\4\377\375\350\3\377\375\350\3\377\375" +\ + "\350\4\377\375\350\4\377\375\351\4\377\375\351\5\377\375\351\5\377\375" +\ + "\351\5\377\375\352\5\377\375\351\5\377\375\353\5\377\375\352\5\377\375" +\ + "\353\6\377\375\352\5\377\374\352\5\377\374\354\7\377\374\353\6\377\376" +\ + "\355\6\377\374\355\10\377\376\355\10\377\376\356\10\377\374\355\7\377" +\ + "\371\352\11\377\363\344\7\377\346\332\7\377\326\312\7\377\276\271\5\377" +\ + "\216f\10\377\301\24\6\377\374\26\10\377\377\27\10\377\376\31\11\377\375" +\ + "\32\12\377\367\33\12\377\341\30\11\377\271\25\7\377r\15\5\377\2\0\0\377" +\ + "\0\0\0\300\0\0\0\77\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0" +\ + "\77\27\7\7\327\220\23\22\376\316 \35\377\357)&\377\373^Z\377\376kh\377" +\ + "\377jg\377\360e_\377\333\134X\377\300OV\377\260FZ\377\257EZ\377\257D" +\ + "X\377\257CX\377\267ET\377\317MQ\377\344SQ\377\374UW\377\377Z`\377\376" +\ + "bh\377\375rx\377\372~\204\377\363y\177\377\351em\377\324PT\377\276AF" +\ + "\377\2518;\377\202+.\377;\34\17\377ha\5\377\245\234\6\377\306\274\6\377" +\ + "\341\323\7\377\360\342\10\377\370\352\7\377\374\355\10\377\375\356\10" +\ + "\377\375\356\10\377\375\355\7\377\375\354\7\377\375\354\7\377\374\353" +\ + "\6\377\375\353\6\377\374\352\6\377\375\352\5\377\375\353\6\377\375\351" +\ + "\4\377\374\352\4\377\375\352\5\377\375\351\5\377\375\351\5\377\375\351" +\ + "\5\377\375\352\5\377\375\351\5\377\375\350\5\377\375\352\3\377\375\352" +\ + "\5\377\375\352\5\377\375\352\4\377\375\352\5\377\375\352\5\377\375\352" +\ + "\5\377\375\351\5\377\375\352\5\377\375\351\5\377\375\352\4\377\375\352" +\ + "\5\377\375\353\6\377\375\352\5\377\375\354\7\377\375\354\7\377\375\353" +\ + "\6\377\376\354\7\377\375\355\6\377\375\356\10\377\375\356\10\377\373" +\ + "\354\10\377\367\351\7\377\360\342\10\377\345\330\10\377\322\307\7\377" +\ + "\273\263\6\377\213a\7\377\302\23\6\377\373\24\7\377\377\26\7\377\377" +\ + "\27\10\377\376\31\11\377\375\32\12\377\364\33\12\377\332\30\10\377\262" +\ + "\25\7\377X\10\3\377\0\0\0\376\0\0\0\263\0\0\0\67\0\0\0\4\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\26\1\0\0\207S\16\16\374\267\30\26\376\345%!\377" +\ + "\373)%\377\367JD\377\316RR\377\252C_\377\244Cz\377\253O\224\377\272^" +\ + "\251\377\301c\264\377\303d\266\377\304d\266\377\302d\266\377\275`\260" +\ + "\377\263Q\237\377\246@\206\377\2447h\377\272D\377\2756;\377\25105\377" +\ + "\205%)\377;\30\17\377bZ\5\377\240\230\5\377\302\267\6\377\334\317\7\377" +\ + "\354\337\10\377\366\347\10\377\372\353\7\377\375\354\10\377\374\355\7" +\ + "\377\376\355\6\377\376\354\7\377\376\353\7\377\375\353\7\377\375\353" +\ + "\6\377\375\353\5\377\375\353\5\377\375\352\6\377\374\352\6\377\375\353" +\ + "\5\377\375\353\5\377\375\353\5\377\375\352\5\377\375\352\5\377\375\352" +\ + "\5\377\375\352\4\377\375\352\5\377\375\352\4\377\375\352\5\377\375\352" +\ + "\5\377\375\352\4\377\375\352\4\377\374\352\5\377\375\353\5\377\375\353" +\ + "\5\377\375\353\5\377\375\352\6\377\375\352\6\377\375\353\5\377\374\354" +\ + "\6\377\376\353\7\377\375\353\7\377\375\354\7\377\376\355\6\377\375\355" +\ + "\10\377\374\354\7\377\372\353\10\377\366\347\10\377\355\340\7\377\342" +\ + "\325\7\377\320\305\6\377\266\256\7\377\215[\6\377\310\21\4\377\375\24" +\ + "\6\377\377\26\10\377\376\26\10\377\377\27\10\377\376\30\10\377\374\32" +\ + "\11\377\360\32\11\377\321\30\10\377\246\23\6\3777\6\1\377\1\0\0\376\0" +\ + "\0\0\234\0\0\0+\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\09\25\5\5\321" +\ + "\225\15\15\376\322\32\30\377\360#\36\377\312%(\377\2419^\377\256[\235" +\ + "\377\310|\277\377\332\223\321\377\346\236\333\377\354\244\341\377\357" +\ + "\247\344\377\360\250\346\377\361\250\346\377\360\250\346\377\355\246" +\ + "\343\377\351\241\336\377\341\230\327\377\321\204\311\377\273a\256\377" +\ + "\242@\200\377\2565O\377\351=D\377\377@K\377\371\77I\377\362\377\372*5\377\371+7\377\361*4\377\346(2\377\325%-\377\302\42)" +\ + "\377\260 %\377\235\34 \377i\22\26\377,\30\6\377ja\5\377\235\225\5\377" +\ + "\274\261\5\377\323\307\6\377\345\330\6\377\357\341\10\377\367\350\10" +\ + "\377\372\353\10\377\374\354\7\377\374\354\7\377\376\356\7\377\376\356" +\ + "\7\377\374\354\6\377\375\355\6\377\376\355\6\377\374\353\5\377\374\353" +\ + "\5\377\375\354\5\377\374\354\6\377\374\354\6\377\375\354\6\377\375\354" +\ + "\6\377\374\354\6\377\375\353\6\377\374\353\6\377\374\354\6\377\375\353" +\ + "\5\377\375\353\6\377\375\354\5\377\375\354\6\377\375\355\6\377\375\354" +\ + "\6\377\375\356\6\377\375\355\7\377\374\354\6\377\373\354\7\377\371\352" +\ + "\7\377\365\346\7\377\357\341\7\377\346\331\6\377\332\315\6\377\314\300" +\ + "\6\377\267\256\6\377\210g\10\377\251\26\3\377\365\16\4\377\377\22\5\377" +\ + "\377\24\6\377\377\24\6\377\377\25\5\377\377\27\7\377\377\27\10\377\376" +\ + "\31\11\377\373\31\11\377\361\30\11\377\324\27\10\377\252\23\6\377K\10" +\ + "\3\377\0\0\0\377\0\0\0\275\0\0\0A\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3" +\ + "\0\0\0=\32\4\5\333\203\12\13\377\220-w\377\316z\302\377\354\214\335\377" +\ + "\370\224\352\377\375\226\355\377\375\225\356\377\376\224\356\377\377" +\ + "\226\357\377\376\225\357\377\377\226\360\377\377\227\360\377\377\236" +\ + "\361\377\377\241\361\377\377\236\361\377\377\230\360\377\377\226\360" +\ + "\377\377\225\357\377\377\224\357\377\376\225\356\377\375\224\356\377" +\ + "\373\225\354\377\364\221\345\377\342\211\324\377\300<\256\377\221-E\377" +\ + "\371!,\377\370\42/\377\362#.\377\350!*\377\332\37)\377\307\34#\377\265" +\ + "\31\37\377\243\27\34\377\202\23\25\377<\15\11\377=5\5\377\222\213\5\377" +\ + "\260\247\4\377\312\277\7\377\336\321\6\377\352\334\7\377\361\342\7\377" +\ + "\366\350\7\377\371\353\6\377\373\354\7\377\375\355\7\377\375\355\7\377" +\ + "\376\355\7\377\375\356\6\377\375\354\6\377\375\354\6\377\375\354\6\377" +\ + "\374\354\5\377\375\354\6\377\376\353\5\377\375\353\6\377\375\353\6\377" +\ + "\375\354\6\377\375\354\5\377\375\353\5\377\375\354\6\377\374\354\5\377" +\ + "\375\355\6\377\375\355\7\377\376\355\7\377\375\354\7\377\374\355\7\377" +\ + "\373\354\6\377\370\351\10\377\365\346\6\377\357\341\7\377\350\333\7\377" +\ + "\336\321\7\377\320\305\7\377\304\274\6\377\226\224\7\377\2137\3\377\322" +\ + "\14\3\377\373\20\3\377\375\21\5\377\377\22\4\377\377\24\5\377\377\26" +\ + "\5\377\377\25\6\377\376\27\10\377\377\27\10\377\375\31\10\377\372\30" +\ + "\10\377\350\30\10\377\305\24\7\377\226\22\6\377\35\2\1\377\0\0\0\373" +\ + "\0\0\0\222\0\0\0&\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0g$\12\13\372" +\ + "\204\35j\377\313k\275\377\355\203\335\377\373\213\352\377\375\214\354" +\ + "\377\376\213\355\377\377\213\356\377\377\214\355\377\377\212\355\377" +\ + "\377\212\356\377\377\213\356\377\376\225\361\377\377\255\362\377\377" +\ + "\300\365\377\377\262\363\377\377\231\361\377\377\214\357\377\377\212" +\ + "\356\377\377\212\355\377\376\213\355\377\377\213\355\377\376\214\356" +\ + "\377\375\213\354\377\370\211\347\377\346\205\330\377\302\42\254\377\231" +\ + "'C\377\371\31$\377\371\33&\377\364\32%\377\353\32$\377\337\30!\377\316" +\ + "\26\37\377\274\26\34\377\254\23\30\377\230\13\16\377i\3\6\377\42\16\2" +\ + "\377`R\5\377\235\227\5\377\302\271\6\377\321\305\6\377\335\320\7\377" +\ + "\346\331\7\377\356\340\7\377\362\344\6\377\366\350\7\377\371\353\6\377" +\ + "\373\354\7\377\373\354\7\377\374\354\7\377\375\355\7\377\375\355\7\377" +\ + "\375\355\7\377\375\355\6\377\375\355\7\377\375\355\6\377\375\355\6\377" +\ + "\375\355\6\377\375\355\7\377\375\355\7\377\375\355\7\377\375\355\7\377" +\ + "\374\354\6\377\374\354\7\377\373\353\7\377\370\352\7\377\365\347\7\377" +\ + "\361\343\6\377\353\335\7\377\345\326\6\377\332\315\6\377\320\305\6\377" +\ + "\303\276\6\377\242\233\7\377\212P\6\377\261\17\2\377\360\13\2\377\376" +\ + "\17\2\377\376\20\3\377\377\22\5\377\376\23\4\377\377\24\5\377\377\26" +\ + "\7\377\377\25\5\377\377\27\10\377\375\27\10\377\374\31\10\377\362\30" +\ + "\10\377\334\27\7\377\263\24\6\377f\12\2\377\3\0\0\377\0\0\0\351\0\0\0" +\ + "f\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\256Z\25N\377\274" +\ + "6\251\376\346x\326\377\372\200\350\377\376\201\354\377\377\200\353\377" +\ + "\376\200\354\377\377\200\354\377\377\177\354\377\377\177\354\377\377" +\ + "~\355\377\377\200\356\377\377\225\361\377\375\310\367\377\375\360\373" +\ + "\377\376\324\370\377\377\234\361\377\377\201\356\377\377|\355\377\377" +\ + "~\355\377\377~\355\377\377\177\353\377\377\200\353\377\377\201\353\377" +\ + "\376\201\353\377\371\200\347\377\345X\317\377\271\35\244\377\260\36\63" +\ + "\377\377\23 \377\372\24 \377\366\24 \377\356\24\36\377\344\23\34\377" +\ + "\326\20\27\377\304\10\17\377\262\5\12\377\241\6\12\377|\4\7\377#\0\2" +\ + "\377d\37\5\377{b\6\377\251\237\6\377\276\266\5\377\315\302\5\377\327" +\ + "\312\6\377\337\322\6\377\346\330\6\377\354\336\7\377\360\341\7\377\363" +\ + "\344\7\377\365\347\7\377\367\347\7\377\370\351\6\377\371\351\7\377\372" +\ + "\352\7\377\372\352\7\377\372\352\7\377\372\352\7\377\372\352\7\377\371" +\ + "\351\7\377\370\350\7\377\370\350\7\377\366\350\7\377\365\346\7\377\362" +\ + "\343\7\377\357\341\7\377\352\334\7\377\344\326\6\377\335\317\6\377\325" +\ + "\310\5\377\312\277\5\377\272\262\4\377\244\225\6\377\210R\6\377\253\24" +\ + "\3\377\346\4\1\377\377\15\3\377\377\20\4\377\377\20\4\377\376\20\3\377" +\ + "\377\22\5\377\377\23\4\377\377\26\6\377\377\25\7\377\377\26\6\377\376" +\ + "\27\10\377\375\30\10\377\370\31\10\377\351\31\10\377\311\25\7\377\233" +\ + "\21\5\377,\3\2\376\0\0\0\377\1\0\0\264\0\0\0>\0\0\0\7\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\13\0\0\0a-\14(\362\253\25\223\377\332P\306\377\365t\343\377" +\ + "\375v\351\377\377w\353\377\377v\353\377\377t\353\377\377s\354\377\377" +\ + "s\353\377\377p\353\377\377n\355\377\377p\355\377\377\206\360\377\376" +\ + "\274\367\377\375\350\373\377\376\310\370\377\377\215\362\377\377p\356" +\ + "\377\377l\354\377\377m\353\377\377n\355\377\377q\352\377\377r\353\377" +\ + "\377t\353\377\377t\353\377\375u\352\377\366p\343\377\337\42\300\377\244" +\ + "\37\210\377\321\21\33\377\375\16\35\377\372\16\32\377\370\15\31\377\362" +\ + "\11\25\377\351\6\20\377\333\7\17\377\311\7\15\377\263\5\13\377\236\6" +\ + "\12\377D\2\4\377a\12\3\377\223\16\4\377\201\36\6\377\214^\6\377\236\220" +\ + "\5\377\265\255\5\377\305\273\5\377\316\304\5\377\326\311\5\377\334\320" +\ + "\6\377\341\324\6\377\345\327\6\377\350\333\6\377\351\334\7\377\353\336" +\ + "\5\377\354\337\5\377\354\337\5\377\354\337\6\377\354\337\5\377\354\337" +\ + "\5\377\354\337\5\377\354\336\6\377\351\334\6\377\347\332\6\377\344\326" +\ + "\6\377\340\323\6\377\332\316\6\377\325\310\5\377\313\301\5\377\301\270" +\ + "\5\377\256\246\6\377\232\204\5\377\214G\4\377\251\17\1\377\345\10\1\377" +\ + "\375\14\3\377\376\15\2\377\376\17\2\377\377\17\3\377\377\20\4\377\377" +\ + "\21\3\377\377\23\5\377\377\23\4\377\377\26\6\377\377\26\5\377\376\26" +\ + "\6\377\375\27\10\377\373\27\10\377\361\30\7\377\333\26\7\377\264\23\6" +\ + "\377m\13\4\377\7\0\0\377\0\0\0\360\0\0\0{\0\0\0\37\0\0\0\2\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\2\0\0\0+\5\3\4\311\202\21r\377\310\34\255\376\357T\325\377\373" +\ + "i\345\377\376j\347\377\376i\350\377\377g\350\377\377g\352\377\377e\352" +\ + "\377\377b\351\377\377`\352\377\377\134\353\377\377[\354\377\377f\356" +\ + "\377\377\206\362\377\377\233\365\377\377\213\363\377\377k\357\377\377" +\ + "\134\354\377\377Z\353\377\377Z\353\377\377\134\353\377\377_\353\377\377" +\ + "b\351\377\377c\351\377\377e\350\377\376g\350\377\375f\346\377\362!\322" +\ + "\377\320\31\267\377\237\25U\377\371\5\21\377\375\6\23\377\373\6\22\377" +\ + "\371\6\23\377\364\7\22\377\354\7\20\377\335\7\17\377\306\7\14\377\256" +\ + "\6\12\377\213\5\10\377.\3\3\377\225\20\5\377\300\22\7\377\312\17\7\377" +\ + "\262\31\7\377\2250\5\377\206^\6\377\242\217\5\377\257\245\6\377\272\262" +\ + "\5\377\304\273\5\377\313\300\5\377\317\304\6\377\322\307\5\377\324\311" +\ + "\6\377\326\312\6\377\326\312\6\377\326\312\6\377\326\312\6\377\326\312" +\ + "\6\377\326\311\6\377\324\310\5\377\322\306\5\377\316\303\5\377\311\276" +\ + "\5\377\301\271\5\377\267\256\4\377\255\241\5\377\231\202\5\377\204M\5" +\ + "\377\242\36\2\377\305\12\1\377\360\3\1\377\377\12\2\377\377\14\1\377" +\ + "\376\14\3\377\377\16\3\377\377\17\3\377\377\20\4\377\377\22\4\377\377" +\ + "\22\4\377\377\24\4\377\377\24\5\377\377\26\6\377\377\25\7\377\376\27" +\ + "\6\377\374\30\10\377\366\31\10\377\345\30\7\377\306\25\5\377\232\21\5" +\ + "\377(\3\1\376\0\0\0\377\0\0\0\274\0\0\0H\0\0\0\13\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\16\0\0\0lE\14=\371\261\23\231\377\342!\304\377\370E\334\377\376" +\ + "`\346\377\377^\346\377\377\134\347\377\377[\346\377\377X\350\377\377" +\ + "T\350\377\377Q\352\377\377N\353\377\377L\354\377\377J\355\377\377L\357" +\ + "\377\377T\360\377\377Z\361\377\377V\357\377\377N\356\377\377J\355\377" +\ + "\377J\355\377\377J\353\377\377L\354\377\377L\353\377\377O\350\377\377" +\ + "R\351\377\376R\347\377\377V\347\377\376M\345\377\372\30\332\377\347\26" +\ + "\312\377\263\16\230\377\302\13\31\377\376\6\24\377\374\7\22\377\374\7" +\ + "\22\377\372\6\22\377\365\10\21\377\353\6\17\377\327\7\14\377\275\7\13" +\ + "\377\245\5\11\377Y\3\4\377K\10\3\377\242\21\6\377\316\25\6\377\355\30" +\ + "\10\377\366\27\7\377\346\20\6\377\276\16\4\377\232#\6\377\231A\6\377" +\ + "\226Z\4\377\222w\5\377\224\200\5\377\247\231\5\377\256\244\6\377\261" +\ + "\245\6\377\261\246\5\377\261\247\5\377\261\247\4\377\261\246\6\377\260" +\ + "\245\6\377\255\242\6\377\241\222\5\377\223}\4\377\222o\4\377\231S\4\377" +\ + "\2261\3\377\240\24\2\377\314\2\0\377\360\6\0\377\377\11\0\377\376\12" +\ + "\2\377\377\12\2\377\377\14\2\377\377\15\2\377\377\17\3\377\377\16\3\377" +\ + "\377\20\3\377\377\20\4\377\377\21\4\377\377\22\4\377\377\24\4\377\377" +\ + "\24\6\377\376\25\6\377\376\25\6\377\375\27\7\377\371\30\10\377\355\30" +\ + "\10\377\321\25\6\377\251\21\5\377Z\11\2\377\5\0\0\377\0\0\0\351\0\0\0" +\ + "z\0\0\0\42\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0'\0\0\0\311\207\13u\377\313" +\ + "\30\260\376\360\42\321\377\375/\336\377\376T\344\377\377Q\345\377\377" +\ + "N\345\377\377K\347\377\377G\347\377\377D\350\377\377\77\351\377\377>" +\ + "\353\377\377<\354\377\377=\356\377\377;\357\377\377<\360\377\377=\360" +\ + "\377\377=\357\377\377;\356\377\377;\356\377\377;\356\377\377<\355\377" +\ + "\377<\354\377\377>\352\377\377\77\351\377\377@\347\377\377A\350\377\377" +\ + "C\346\377\376%\342\377\375\17\335\377\364\20\325\377\321\13\270\377\241" +\ + "\15S\377\373\4\21\377\375\6\23\377\375\7\22\377\374\6\21\377\371\7\22" +\ + "\377\363\7\17\377\344\6\15\377\315\7\14\377\263\6\11\377\222\5\10\377" +\ + "6\2\3\377u\14\5\377\262\22\5\377\327\26\7\377\356\27\7\377\372\30\10" +\ + "\377\375\27\10\377\373\25\6\377\365\23\6\377\346\22\5\377\321\25\5\377" +\ + "\306\26\3\377\271\32\3\377\263\34\3\377\263\32\2\377\264\32\2\377\264" +\ + "\32\2\377\264\31\1\377\264\30\1\377\263\30\1\377\264\30\1\377\275\24" +\ + "\1\377\311\20\1\377\326\15\1\377\353\11\0\377\367\11\0\377\374\12\0\377" +\ + "\377\14\1\377\377\13\1\377\376\13\2\377\377\13\1\377\377\13\2\377\377" +\ + "\14\1\377\377\16\2\377\377\20\3\377\377\20\2\377\377\21\4\377\377\22" +\ + "\3\377\377\21\3\377\377\23\4\377\377\25\5\377\377\25\6\377\376\26\7\377" +\ + "\376\30\10\377\371\30\10\377\361\27\7\377\334\26\7\377\270\22\5\377\204" +\ + "\15\5\377\26\1\0\376\0\0\0\376\0\0\0\254\0\0\0A\0\0\0\13\0\0\0\1\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\10\0\0\0Q%\13!\364\252\14\224\377\337\26\302\377\370\35" +\ + "\331\377\376!\336\377\3777\341\377\377B\344\377\377>\345\377\377:\345" +\ + "\377\3775\350\377\3773\352\377\3771\353\377\377/\353\377\377/\354\377" +\ + "\377.\355\377\377.\355\377\377.\357\377\377.\356\377\377.\356\377\377" +\ + ".\356\377\377.\355\377\377.\354\377\377/\353\377\377/\354\377\3770\353" +\ + "\377\3770\350\377\3771\347\377\3773\347\377\377/\346\377\376\13\340\377" +\ + "\376\15\337\377\372\14\332\377\344\13\307\377\254\12\212\377\333\7\22" +\ + "\377\375\5\23\377\375\5\23\377\375\7\22\377\373\6\20\377\367\7\20\377" +\ + "\356\6\17\377\334\6\15\377\303\7\12\377\252\6\11\377w\4\6\3772\3\2\377" +\ + "\214\17\4\377\274\23\5\377\335\26\6\377\360\27\10\377\372\30\10\377\376" +\ + "\27\6\377\377\26\7\377\377\26\6\377\376\25\5\377\376\23\4\377\375\21" +\ + "\4\377\375\20\4\377\375\20\3\377\375\16\3\377\375\16\3\377\375\15\2\377" +\ + "\375\14\2\377\375\13\2\377\375\13\1\377\375\13\1\377\376\13\1\377\377" +\ + "\13\1\377\377\13\1\377\377\14\1\377\377\14\1\377\376\13\1\377\377\14" +\ + "\2\377\377\14\2\377\377\14\2\377\377\14\1\377\377\16\2\377\377\17\3\377" +\ + "\377\17\3\377\377\20\3\377\377\22\4\377\377\21\4\377\377\22\3\377\377" +\ + "\24\4\377\377\25\5\377\376\27\7\377\376\27\7\377\373\30\10\377\362\27" +\ + "\7\377\341\26\7\377\301\23\5\377\223\20\4\3771\4\1\376\1\0\0\377\0\0" +\ + "\0\323\0\0\0e\0\0\0\32\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\0\210" +\ + "g\11Y\374\277\14\246\377\354\22\315\377\374\27\335\377\376\30\337\377" +\ + "\377\30\337\377\377*\342\377\377.\344\377\377)\344\377\377'\347\377\377" +\ + "%\351\377\377$\352\377\377\42\353\377\377\42\354\377\377\42\355\377\377" +\ + "\42\355\377\377\42\357\377\377\42\357\377\377\42\356\377\377\42\356\377" +\ + "\377\42\355\377\377\42\353\377\377\42\353\377\377#\352\377\377#\351\377" +\ + "\377$\350\377\377$\346\377\377\42\345\377\377\13\343\377\377\12\342\377" +\ + "\377\13\341\377\375\13\337\377\356\12\321\377\302\10\251\377\263\5&\377" +\ + "\374\5\22\377\374\6\21\377\374\6\21\377\374\7\20\377\372\7\20\377\365" +\ + "\10\16\377\350\10\16\377\323\7\13\377\273\6\12\377\242\5\10\377f\3\5" +\ + "\377B\6\3\377\230\20\4\377\300\24\6\377\337\25\7\377\361\27\7\377\371" +\ + "\27\7\377\375\27\6\377\375\27\7\377\376\26\5\377\376\24\4\377\377\23" +\ + "\4\377\377\22\4\377\377\22\3\377\377\21\3\377\377\20\3\377\377\17\3\377" +\ + "\377\17\2\377\377\16\1\377\377\14\1\377\377\14\2\377\377\14\2\377\377" +\ + "\14\2\377\377\14\2\377\377\14\2\377\377\14\2\377\377\14\2\377\377\14" +\ + "\2\377\377\14\2\377\377\16\1\377\377\17\2\377\377\17\3\377\377\20\3\377" +\ + "\377\20\3\377\377\22\3\377\377\21\3\377\377\22\3\377\377\24\4\377\377" +\ + "\24\5\377\376\26\6\377\375\27\7\377\372\30\7\377\363\27\7\377\343\25" +\ + "\7\377\305\24\6\377\236\20\5\377H\6\1\376\1\0\0\377\1\0\0\353\0\0\0\206" +\ + "\0\0\0.\0\0\0\7\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0(\2\1\2\305\211\5w\375" +\ + "\317\13\263\377\364\16\326\377\375\20\336\377\377\21\340\377\377\17\340" +\ + "\377\377\16\340\377\377\27\344\377\377\34\346\377\377\33\350\377\377" +\ + "\32\350\377\377\30\351\377\377\30\353\377\377\30\354\377\377\30\355\377" +\ + "\377\30\355\377\377\30\357\377\377\27\356\377\377\30\356\377\377\30\356" +\ + "\377\377\30\354\377\377\30\354\377\377\30\352\377\377\30\352\377\377" +\ + "\31\351\377\377\32\350\377\377\25\345\377\377\11\343\377\377\7\342\377" +\ + "\377\11\342\377\377\11\341\377\375\12\337\377\366\12\327\377\323\11\271" +\ + "\377\240\6N\377\371\5\22\377\374\5\22\377\375\6\21\377\375\7\20\377\374" +\ + "\7\20\377\371\10\20\377\361\10\15\377\342\7\14\377\315\7\13\377\265\6" +\ + "\11\377\233\6\10\377K\3\3\377S\7\3\377\235\20\4\377\303\24\5\377\340" +\ + "\25\6\377\360\27\6\377\371\27\7\377\374\26\6\377\375\27\7\377\376\26" +\ + "\4\377\377\24\5\377\377\24\4\377\377\22\4\377\377\22\3\377\377\21\2\377" +\ + "\377\21\3\377\377\20\2\377\377\20\3\377\377\17\2\377\377\17\2\377\377" +\ + "\16\1\377\377\16\2\377\377\16\2\377\377\16\2\377\377\16\2\377\377\17" +\ + "\1\377\377\17\2\377\377\17\2\377\377\20\3\377\377\20\2\377\377\20\3\377" +\ + "\377\21\3\377\377\21\3\377\377\22\4\377\377\23\4\377\376\24\5\377\377" +\ + "\24\5\377\376\26\6\377\375\26\7\377\371\27\7\377\363\27\6\377\343\25" +\ + "\6\377\307\23\5\377\244\20\5\377[\10\2\377\7\0\0\377\1\0\0\366\0\0\0" +\ + "\242\0\0\0A\0\0\0\15\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0:\12\1" +\ + "\11\351\235\6\210\376\332\12\276\377\370\14\332\377\376\13\340\377\377" +\ + "\14\340\377\377\12\341\377\377\11\342\377\377\7\344\377\377\12\345\377" +\ + "\377\16\350\377\377\20\352\377\377\17\352\377\377\17\353\377\377\17\355" +\ + "\377\377\17\355\377\377\16\355\377\377\16\356\377\377\16\356\377\377" +\ + "\16\357\377\377\16\355\377\377\17\355\377\377\17\353\377\377\17\353\377" +\ + "\377\17\352\377\377\17\351\377\377\11\347\377\377\6\346\377\377\6\343" +\ + "\377\377\10\343\377\377\10\343\377\377\11\341\377\376\12\340\377\371" +\ + "\12\332\377\336\12\301\377\240\6r\377\357\4\21\377\375\6\22\377\375\5" +\ + "\20\377\375\7\21\377\375\6\17\377\373\7\17\377\367\10\17\377\356\10\14" +\ + "\377\337\10\14\377\307\6\13\377\260\6\10\377\223\6\7\377A\2\3\377V\10" +\ + "\4\377\237\17\4\377\303\23\5\377\336\24\6\377\357\26\6\377\370\27\7\377" +\ + "\374\27\7\377\376\27\5\377\376\25\6\377\376\24\5\377\377\24\5\377\377" +\ + "\22\4\377\377\22\3\377\377\20\3\377\377\21\2\377\377\21\2\377\377\21" +\ + "\3\377\377\21\2\377\377\21\3\377\377\20\1\377\377\20\1\377\377\20\2\377" +\ + "\377\20\1\377\377\20\3\377\377\21\3\377\377\21\3\377\377\21\3\377\377" +\ + "\20\3\377\377\20\3\377\377\22\3\377\377\23\3\377\377\23\5\377\377\25" +\ + "\5\377\377\25\5\377\375\26\5\377\375\27\5\377\371\27\7\377\360\27\7\377" +\ + "\342\24\6\377\307\23\5\377\244\20\5\377b\11\3\377\11\0\0\377\0\0\0\374" +\ + "\0\0\0\266\0\0\0R\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\6\0\0\0H\23\0\17\362\245\6\220\377\340\11\304\376\373\13\335\377\377" +\ + "\12\341\377\377\11\341\377\377\11\341\377\377\10\343\377\377\7\345\377" +\ + "\377\5\346\377\377\5\350\377\377\5\350\377\377\6\351\377\377\7\354\377" +\ + "\377\7\354\377\377\7\354\377\377\10\356\377\377\7\355\377\377\7\355\377" +\ + "\377\7\356\377\377\7\354\377\377\7\354\377\377\7\354\377\377\6\353\377" +\ + "\377\5\352\377\377\5\351\377\377\5\347\377\377\5\346\377\377\7\344\377" +\ + "\377\7\343\377\377\7\342\377\377\11\342\377\377\12\341\377\373\12\334" +\ + "\377\343\11\306\377\253\6\204\377\350\3\17\377\375\6\22\377\375\5\17" +\ + "\377\375\6\20\377\375\7\16\377\374\6\16\377\373\10\16\377\366\10\15\377" +\ + "\354\7\14\377\332\7\13\377\304\7\11\377\256\6\10\377\215\6\6\377>\3\2" +\ + "\377L\10\2\377\232\17\4\377\274\22\5\377\327\26\6\377\353\27\7\377\366" +\ + "\27\6\377\372\27\7\377\375\25\6\377\377\24\5\377\377\24\5\377\377\23" +\ + "\4\377\377\23\4\377\377\22\3\377\377\22\3\377\377\21\3\377\377\21\2\377" +\ + "\377\21\2\377\377\21\2\377\377\20\3\377\377\21\1\377\377\21\1\377\377" +\ + "\21\3\377\377\20\3\377\377\20\2\377\377\21\3\377\377\22\3\377\377\21" +\ + "\2\377\377\22\4\377\377\22\3\377\377\23\3\377\377\24\5\377\376\24\5\377" +\ + "\376\25\6\377\373\27\5\377\367\27\7\377\355\26\7\377\333\25\6\377\302" +\ + "\23\5\377\237\17\4\377U\10\2\377\11\0\0\376\0\0\0\375\0\0\0\301\0\0\0" +\ + "_\0\0\0\35\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0" +\ + "N\25\0\22\364\251\6\223\376\342\11\306\377\372\12\334\377\377\11\341" +\ + "\377\377\7\342\377\377\7\343\377\377\7\342\377\377\6\346\377\377\6\346" +\ + "\377\377\4\350\377\377\5\351\377\377\3\352\377\377\3\353\377\377\3\354" +\ + "\377\377\3\354\377\377\3\356\377\377\2\356\377\377\2\356\377\377\2\356" +\ + "\377\377\3\355\377\377\3\355\377\377\3\353\377\377\3\353\377\377\3\352" +\ + "\377\377\5\351\377\377\5\347\377\377\6\346\377\377\6\345\377\377\7\342" +\ + "\377\377\7\342\377\377\10\341\377\377\12\340\377\374\11\335\377\345\11" +\ + "\310\377\257\6\211\377\346\4\16\377\375\5\21\377\375\6\17\377\375\6\17" +\ + "\377\375\6\16\377\375\7\16\377\374\7\16\377\373\7\15\377\365\10\14\377" +\ + "\352\10\14\377\330\10\12\377\303\7\11\377\247\6\10\377x\5\3\3771\2\23" +\ + "\377F\6\11\377\221\17\4\377\263\21\4\377\321\25\6\377\344\25\6\377\361" +\ + "\26\6\377\370\27\5\377\374\25\5\377\376\25\5\377\376\25\6\377\377\25" +\ + "\4\377\377\23\4\377\377\23\3\377\377\22\4\377\377\23\4\377\377\23\3\377" +\ + "\377\22\3\377\377\21\3\377\377\21\2\377\377\21\2\377\377\21\3\377\377" +\ + "\22\2\377\377\22\4\377\377\22\3\377\377\22\3\377\377\22\3\377\377\23" +\ + "\3\377\377\24\4\377\376\25\4\377\376\25\5\377\374\25\5\377\371\25\6\377" +\ + "\362\27\6\377\350\24\6\377\325\25\6\377\267\22\5\377\231\17\4\377J\6" +\ + "\1\377\6\0\0\376\0\0\0\376\0\0\0\303\0\0\0e\0\0\0\42\0\0\0\6\0\0\0\1" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0P\25\0\22\365\252\6" +\ + "\224\376\343\11\306\377\373\12\335\377\377\11\340\377\377\10\341\377" +\ + "\377\6\342\377\377\6\344\377\377\6\345\377\377\5\347\377\377\4\350\377" +\ + "\377\4\351\377\377\4\352\377\377\3\353\377\377\3\354\377\377\3\355\377" +\ + "\377\3\356\377\377\2\356\377\377\2\356\377\377\2\356\377\377\3\356\377" +\ + "\377\2\355\377\377\3\354\377\377\3\352\377\377\4\352\377\377\4\351\377" +\ + "\377\5\347\377\377\5\346\377\377\6\345\377\377\5\342\377\377\7\343\377" +\ + "\377\10\341\377\377\11\340\377\374\12\335\377\346\11\311\377\260\6\212" +\ + "\377\346\4\16\377\375\5\20\377\375\6\17\377\375\5\16\377\375\7\16\377" +\ + "\375\7\16\377\375\7\15\377\374\7\16\377\372\11\15\377\364\11\14\377\351" +\ + "\10\13\377\327\10\13\377\267\7\10\377\202\6\4\377o\2X\377X\0Q\3775\3" +\ + "\14\377~\15\3\377\253\20\4\377\304\23\5\377\332\24\6\377\352\25\6\377" +\ + "\363\27\5\377\371\27\6\377\374\26\4\377\375\26\5\377\376\26\5\377\377" +\ + "\24\4\377\377\23\4\377\376\23\3\377\377\23\3\377\377\23\4\377\377\23" +\ + "\3\377\377\23\4\377\377\23\4\377\377\23\3\377\377\22\4\377\377\23\3\377" +\ + "\377\23\3\377\376\23\3\377\377\25\3\377\376\25\4\377\375\26\5\377\375" +\ + "\26\5\377\371\26\6\377\364\27\6\377\354\26\6\377\334\24\6\377\310\23" +\ + "\5\377\257\22\4\377\207\16\3\3774\4\1\376\2\0\0\377\0\0\0\373\0\0\0\274" +\ + "\0\0\0c\0\0\0\42\0\0\0\7\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\6\0\0\0P\25\0\22\365\250\6\222\376\342\10\306\377\372" +\ + "\11\334\377\377\10\341\377\377\7\342\377\377\6\342\377\377\5\343\377" +\ + "\377\5\345\377\377\5\346\377\377\4\350\377\377\4\350\377\377\2\352\377" +\ + "\377\2\353\377\377\3\354\377\377\2\355\377\377\1\357\377\377\2\357\377" +\ + "\377\2\357\377\377\1\357\377\377\1\357\377\377\3\356\377\377\2\353\377" +\ + "\377\2\352\377\377\3\352\377\377\4\350\377\377\4\347\377\377\4\346\377" +\ + "\377\5\345\377\377\6\344\377\377\7\342\377\377\11\341\377\377\11\340" +\ + "\377\374\12\335\377\346\11\311\377\257\6\211\377\346\3\15\377\375\4\20" +\ + "\377\375\6\17\377\375\5\17\377\375\7\16\377\375\7\16\377\375\10\15\377" +\ + "\374\10\15\377\374\10\15\377\372\11\15\377\364\10\13\377\346\10\13\377" +\ + "\303\10\10\377\204\6\23\377\233\1\220\377\241\1\225\377u\0m\3772\1\42" +\ + "\377[\11\5\377\225\17\3\377\262\21\4\377\311\23\5\377\333\24\6\377\347" +\ + "\25\6\377\361\26\6\377\366\26\6\377\372\26\6\377\374\26\6\377\375\26" +\ + "\4\377\376\24\4\377\377\24\5\377\377\24\3\377\377\24\4\377\377\23\5\377" +\ + "\377\23\3\377\377\23\3\377\377\23\3\377\376\23\4\377\376\24\5\377\376" +\ + "\26\5\377\375\26\5\377\372\26\6\377\367\26\5\377\362\26\5\377\350\25" +\ + "\6\377\335\24\6\377\314\22\5\377\265\21\5\377\234\20\3\377c\11\3\377" +\ + "\22\1\0\377\0\0\0\377\0\0\0\360\0\0\0\252\0\0\0Y\0\0\0 \0\0\0\6\0\0\0" +\ + "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0" +\ + "O\23\0\20\364\245\5\220\376\340\11\305\377\372\11\334\377\377\10\340" +\ + "\377\377\7\343\377\377\6\343\377\377\5\343\377\377\5\345\377\377\4\346" +\ + "\377\377\3\347\377\377\3\351\377\377\3\352\377\377\2\353\377\377\2\354" +\ + "\377\377\1\355\377\377\1\356\377\377\1\357\377\377\1\357\377\377\1\357" +\ + "\377\377\1\356\377\377\1\355\377\377\2\353\377\377\2\352\377\377\2\352" +\ + "\377\377\3\350\377\377\3\347\377\377\5\346\377\377\5\344\377\377\6\343" +\ + "\377\377\7\343\377\377\10\341\377\377\11\340\377\373\12\335\377\343\11" +\ + "\306\377\253\7\206\377\347\4\15\377\375\5\17\377\375\5\16\377\375\6\16" +\ + "\377\375\6\15\377\375\7\15\377\374\7\14\377\375\7\15\377\375\11\14\377" +\ + "\375\11\14\377\371\12\13\377\354\11\13\377\305\10\6\377\215\6D\377\310" +\ + "\1\276\377\272\1\253\377\251\2\233\377\222\1\206\377G\0C\3770\3\15\377" +\ + "o\13\4\377\233\16\3\377\262\20\4\377\305\22\4\377\325\23\5\377\342\24" +\ + "\5\377\352\25\5\377\361\25\6\377\365\25\4\377\370\26\4\377\373\26\5\377" +\ + "\374\26\5\377\375\26\5\377\375\26\5\377\375\26\5\377\375\26\5\377\374" +\ + "\26\5\377\373\26\5\377\370\25\4\377\365\26\5\377\362\25\6\377\353\25" +\ + "\4\377\343\24\5\377\326\24\5\377\307\22\5\377\265\20\4\377\236\17\3\377" +\ + "w\13\2\377/\3\1\377\0\0\0\376\0\0\0\374\0\0\0\327\0\0\0\207\0\0\0E\0" +\ + "\0\0\30\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\6\0\0\0H\13\0\11\357\236\6\210\377\332\10\277\376" +\ + "\370\11\331\377\376\10\340\377\376\7\343\377\377\6\343\377\377\6\344" +\ + "\377\377\4\345\377\377\4\346\377\377\4\347\377\377\3\351\377\377\3\351" +\ + "\377\377\2\352\377\377\2\353\377\377\1\355\377\377\1\356\377\377\1\356" +\ + "\377\377\1\357\377\377\1\356\377\377\0\356\377\377\2\355\377\377\2\353" +\ + "\377\377\2\352\377\377\3\352\377\377\3\351\377\377\3\345\377\377\5\346" +\ + "\377\377\4\344\377\377\6\343\377\377\7\342\377\376\7\341\377\376\11\340" +\ + "\377\371\11\332\377\337\11\303\377\237\5t\377\356\3\15\377\375\5\17\377" +\ + "\375\6\15\377\375\6\16\377\375\7\15\377\375\7\15\377\374\10\15\377\376" +\ + "\7\15\377\376\11\13\377\375\11\13\377\372\12\14\377\347\11\13\377\262" +\ + "\10\6\377\270\2\235\377\344\2\326\377\323\2\303\377\303\1\263\377\262" +\ + "\2\243\377\241\3\222\377{\2q\3777\1\60\3771\3\13\377s\14\4\377\226\16" +\ + "\3\377\252\17\3\377\272\20\3\377\307\22\5\377\325\22\4\377\336\24\5\377" +\ + "\345\23\4\377\352\25\6\377\356\25\5\377\360\26\4\377\357\24\5\377\357" +\ + "\24\6\377\360\24\4\377\356\24\4\377\352\24\5\377\346\24\4\377\340\23" +\ + "\5\377\326\22\4\377\312\23\5\377\275\20\3\377\254\20\4\377\231\17\2\377" +\ + "z\13\3\3762\3\1\377\3\0\0\376\0\0\0\375\1\0\0\356\0\0\0\243\0\0\0]\0" +\ + "\0\0*\0\0\0\15\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0;\2\0\2\331\213\4y\376\317" +\ + "\7\265\377\364\11\327\377\375\10\340\377\377\7\343\377\377\5\342\377" +\ + "\377\5\343\377\377\5\344\377\377\4\346\377\377\3\346\377\377\2\350\377" +\ + "\377\3\350\377\377\2\353\377\377\2\353\377\377\0\355\377\377\1\356\377" +\ + "\377\1\355\377\377\1\356\377\377\1\355\377\377\0\356\377\377\1\355\377" +\ + "\377\2\353\377\377\2\352\377\377\2\351\377\377\3\350\377\377\4\346\377" +\ + "\377\3\345\377\377\5\344\377\377\6\342\377\377\7\343\377\377\10\342\377" +\ + "\376\10\340\377\366\10\327\377\324\10\272\377\240\5Q\377\371\4\14\377" +\ + "\374\5\16\377\375\6\16\377\375\6\16\377\375\7\14\377\375\7\15\377\375" +\ + "\10\15\377\375\7\13\377\375\11\14\377\374\10\14\377\365\11\12\377\327" +\ + "\11\11\377\236\6\65\377\352\1\337\377\362\2\341\377\347\1\326\377\333" +\ + "\2\311\377\314\1\272\377\275\2\253\377\257\3\235\377\240\3\220\377~\2" +\ + "r\377F\1;\377,\2\23\377N\6\7\377w\12\4\377\226\16\4\377\250\17\3\377" +\ + "\265\20\4\377\277\21\4\377\306\21\5\377\312\22\5\377\315\23\5\377\316" +\ + "\23\5\377\316\23\5\377\316\23\5\377\314\22\5\377\306\21\5\377\301\21" +\ + "\4\377\265\20\4\377\252\17\4\377\231\16\4\377{\12\3\377N\6\1\377\36\1" +\ + "\0\377\4\0\0\377\0\0\0\375\1\0\0\356\0\0\0\265\0\0\0q\0\0\09\0\0\0\24" +\ + "\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0)\0\0\0\253i\4\134\375" +\ + "\300\7\247\377\355\10\320\377\375\10\336\377\376\7\342\377\377\7\342" +\ + "\377\377\5\343\377\377\5\344\377\377\3\345\377\377\3\346\377\377\3\350" +\ + "\377\377\1\351\377\377\2\351\377\377\2\352\377\377\0\354\377\377\1\355" +\ + "\377\377\0\355\377\377\0\355\377\377\1\355\377\377\1\354\377\377\1\354" +\ + "\377\377\2\352\377\377\1\351\377\377\2\350\377\377\3\347\377\377\3\345" +\ + "\377\377\3\345\377\377\5\343\377\377\6\342\377\377\7\342\377\377\7\340" +\ + "\377\375\11\337\377\357\10\321\377\304\7\253\377\260\4%\377\374\4\15" +\ + "\377\374\5\15\377\375\6\15\377\375\6\15\377\375\7\15\377\375\6\14\377" +\ + "\375\10\14\377\376\7\14\377\375\11\13\377\371\11\13\377\350\11\12\377" +\ + "\271\10\10\377\300\2\243\377\376\0\360\377\372\1\351\377\365\2\342\377" +\ + "\356\1\332\377\343\3\317\377\326\3\303\377\312\3\266\377\275\3\252\377" +\ + "\262\3\236\377\246\4\223\377\220\3\177\377c\3X\377B\2\64\377/\3\24\377" +\ + "\77\5\5\377^\10\2\377x\12\3\377\215\14\3\377\227\16\3\377\233\16\3\377" +\ + "\234\16\3\377\234\16\3\377\233\17\3\377\230\16\3\377\217\14\3\377{\12" +\ + "\3\377a\10\1\377\77\5\1\377\35\1\0\377\10\0\0\377\0\0\0\376\0\0\0\371" +\ + "\0\0\0\334\0\0\0\253\0\0\0s\0\0\0A\0\0\0\34\0\0\0\7\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\27\0\0\0z(\1#\373\252\6\225\377" +\ + "\340\7\305\377\370\10\332\377\375\7\340\377\377\5\342\377\377\6\342\377" +\ + "\377\5\343\377\377\4\345\377\377\3\346\377\377\2\346\377\377\3\347\377" +\ + "\377\1\351\377\377\2\352\377\377\0\353\377\377\1\354\377\377\0\353\377" +\ + "\377\0\354\377\377\0\354\377\377\1\354\377\377\0\353\377\377\2\352\377" +\ + "\377\1\351\377\377\2\350\377\377\2\346\377\377\4\345\377\377\4\344\377" +\ + "\377\5\343\377\377\6\341\377\376\7\342\377\376\10\340\377\372\10\334" +\ + "\377\345\10\311\377\256\6\214\377\330\4\14\377\375\5\15\377\375\6\15" +\ + "\377\375\6\15\377\375\6\15\377\375\6\14\377\375\10\14\377\375\7\13\377" +\ + "\375\10\14\377\374\11\14\377\360\10\12\377\320\7\7\377\235\5E\377\365" +\ + "\1\351\377\377\0\355\377\376\1\353\377\373\2\347\377\371\2\344\377\364" +\ + "\2\336\377\354\2\326\377\343\3\314\377\330\3\302\377\316\4\267\377\303" +\ + "\4\254\377\271\5\243\377\256\5\231\377\233\4\207\377p\4b\3772\1+\377" +\ + "\5\0\0\377\22\1\0\376\37\2\0\377+\3\1\377,\4\1\377-\3\1\377-\3\1\377" +\ + ",\3\1\377,\3\1\377!\1\0\377\24\1\0\377\10\0\0\377\2\0\0\375\0\0\0\367" +\ + "\1\0\0\340\0\0\0\274\0\0\0\213\0\0\0_\0\0\08\0\0\0\32\0\0\0\7\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0" +\ + "\0M\0\0\0\345\211\5w\377\314\7\263\377\361\7\324\377\374\10\336\377\376" +\ + "\7\341\377\377\6\342\377\377\5\343\377\377\3\344\377\377\3\344\377\377" +\ + "\3\345\377\377\3\347\377\377\1\347\377\377\1\351\377\377\1\352\377\377" +\ + "\0\353\377\377\0\353\377\377\0\352\377\377\0\353\377\377\1\353\377\377" +\ + "\0\352\377\377\2\350\377\377\1\347\377\377\2\347\377\377\2\345\377\377" +\ + "\4\344\377\377\4\344\377\377\4\342\377\377\6\342\377\376\7\341\377\375" +\ + "\7\337\377\363\10\326\377\322\7\272\377\240\5U\377\372\4\11\377\375\5" +\ + "\14\377\375\6\14\377\375\5\14\377\375\7\14\377\375\7\13\377\376\10\13" +\ + "\377\375\10\14\377\374\10\14\377\365\11\12\377\335\7\10\377\251\6\26" +\ + "\377\326\0\310\377\377\0\355\377\377\1\353\377\377\1\353\377\376\1\351" +\ + "\377\375\2\347\377\373\3\344\377\370\2\340\377\363\4\334\377\356\4\325" +\ + "\377\346\4\315\377\336\6\305\377\325\6\274\377\311\6\257\377\257\5\231" +\ + "\377\205\4t\3776\1\60\376\0\0\0\377\0\0\0\375\0\0\0\356\0\0\0\346\0\0" +\ + "\0\347\0\0\0\346\0\0\0\345\0\0\0\344\0\0\0\343\0\0\0\341\1\0\0\333\1" +\ + "\0\0\320\0\0\0\263\0\0\0\213\0\0\0c\0\0\0@\0\0\0%\0\0\0\21\0\0\0\5\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\1\0\0\0+\0\0\0\243H\2@\377\262\6\233\376\341\7\306\377" +\ + "\367\10\331\377\375\6\340\377\376\6\342\377\377\5\342\377\377\3\344\377" +\ + "\377\3\344\377\377\3\345\377\377\3\346\377\377\1\346\377\377\1\347\377" +\ + "\377\0\351\377\377\0\352\377\377\0\352\377\377\0\352\377\377\0\352\377" +\ + "\377\1\351\377\377\0\350\377\377\2\347\377\377\2\346\377\377\3\345\377" +\ + "\377\2\344\377\377\4\345\377\377\4\343\377\376\4\342\377\377\6\341\377" +\ + "\376\7\340\377\373\10\334\377\347\7\313\377\265\7\233\377\300\3\26\377" +\ + "\375\5\15\377\375\5\14\377\375\6\13\377\374\5\14\377\375\7\12\377\375" +\ + "\7\13\377\375\10\13\377\375\10\14\377\367\10\13\377\344\10\11\377\270" +\ + "\7\11\377\260\2\214\377\377\0\354\377\376\0\352\377\377\1\352\377\377" +\ + "\0\351\377\376\2\347\377\377\1\347\377\376\2\346\377\375\2\344\377\373" +\ + "\4\342\377\371\4\337\377\365\5\332\377\361\6\326\377\352\6\317\377\334" +\ + "\7\300\377\271\6\242\377}\4m\377\23\0\20\377\0\0\0\370\0\0\0\274\0\0" +\ + "\0\177\0\0\0j\0\0\0i\0\0\0g\0\0\0c\0\0\0b\0\0\0b\0\0\0_\0\0\0X\0\0\0" +\ + "K\0\0\09\0\0\0%\0\0\0\22\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\20\0\0\0`\4\0\4\352\204\4s\377\307\6\255\377\354\10\320" +\ + "\377\372\6\334\377\375\7\341\377\377\5\341\377\377\4\343\377\377\4\344" +\ + "\377\377\2\345\377\377\3\345\377\377\2\346\377\377\2\347\377\377\0\346" +\ + "\377\377\1\350\377\377\0\350\377\377\0\350\377\377\1\350\377\377\0\346" +\ + "\377\377\0\347\377\377\2\347\377\377\2\345\377\377\3\345\377\377\3\345" +\ + "\377\377\3\344\377\377\5\342\377\377\5\341\377\376\6\341\377\375\7\336" +\ + "\377\361\10\323\377\321\7\271\377\240\5T\377\367\4\7\377\374\5\13\377" +\ + "\375\6\14\377\375\5\13\377\375\7\14\377\376\7\14\377\375\7\12\377\374" +\ + "\10\12\377\370\11\13\377\347\7\12\377\301\7\4\377\243\4d\377\375\0\354" +\ + "\377\377\0\353\377\377\1\351\377\377\0\351\377\377\1\350\377\377\2\347" +\ + "\377\376\2\346\377\377\3\345\377\376\2\345\377\377\3\344\377\375\5\342" +\ + "\377\374\5\340\377\371\7\335\377\362\7\325\377\335\7\302\377\256\6\231" +\ + "\377S\2I\376\0\0\0\376\0\0\0\314\0\0\0`\0\0\0$\0\0\0\25\0\0\0\23\0\0" +\ + "\0\20\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\10\0\0\0\4\0" +\ + "\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\3\0\0\0/\0\0\0\241,\1'\375\244\5\221\376\324\6\273\377\361\7\325" +\ + "\377\373\7\337\377\375\5\341\377\377\4\342\377\376\3\343\377\377\2\344" +\ + "\377\377\3\343\377\377\2\345\377\377\1\346\377\377\1\346\377\377\1\346" +\ + "\377\377\1\345\377\377\1\346\377\377\1\346\377\377\1\346\377\377\1\346" +\ + "\377\377\2\346\377\377\1\344\377\377\3\343\377\377\3\344\377\377\4\343" +\ + "\377\377\5\342\377\377\6\341\377\375\7\337\377\366\7\330\377\336\7\303" +\ + "\377\246\5\205\377\323\3\14\377\375\5\13\377\375\6\13\377\375\5\13\377" +\ + "\374\6\14\377\375\6\13\377\375\7\13\377\374\7\12\377\366\10\13\377\347" +\ + "\10\11\377\303\7\0\377\237\5W\377\364\0\344\377\377\1\347\377\376\1\347" +\ + "\377\377\1\347\377\377\0\347\377\377\1\347\377\377\2\346\377\377\1\345" +\ + "\377\377\3\344\377\377\3\344\377\376\3\343\377\377\5\343\377\375\6\341" +\ + "\377\372\6\335\377\356\7\321\377\311\6\261\377\214\4z\377\24\0\22\377" +\ + "\0\0\0\356\0\0\0\205\0\0\0+\0\0\0\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0" +\ + "\0T\0\0\0\317N\1E\377\257\5\232\377\332\6\300\377\362\7\325\377\373\6" +\ + "\336\377\375\5\340\377\376\4\341\377\376\4\343\377\377\3\343\377\377" +\ + "\2\342\377\377\2\344\377\377\2\345\377\377\1\345\377\377\1\345\377\377" +\ + "\1\345\377\377\1\345\377\377\2\345\377\377\1\345\377\377\2\343\377\377" +\ + "\3\342\377\377\2\343\377\377\3\343\377\376\4\342\377\376\5\341\377\375" +\ + "\6\340\377\370\7\332\377\344\7\311\377\266\6\242\377\266\4\42\377\376" +\ + "\5\11\377\374\6\12\377\375\5\14\377\374\7\13\377\376\6\13\377\375\7\13" +\ + "\377\373\10\12\377\364\10\12\377\343\7\11\377\276\7\0\377\242\4\134\377" +\ + "\360\1\337\377\377\0\346\377\377\0\345\377\377\0\345\377\377\0\345\377" +\ + "\377\2\346\377\377\2\346\377\377\1\345\377\377\3\343\377\377\2\344\377" +\ + "\377\4\343\377\377\3\342\377\376\5\341\377\374\6\336\377\362\7\325\377" +\ + "\330\7\276\377\246\5\222\377:\1\63\376\0\0\0\375\0\0\0\263\0\0\0F\0\0" +\ + "\0\15\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0 \0\0\0u\6\0\5\346a\3V" +\ + "\377\261\5\234\377\332\5\277\377\360\7\324\377\372\6\334\377\375\4\340" +\ + "\377\376\4\342\377\377\2\343\377\377\2\343\377\377\3\342\377\377\2\343" +\ + "\377\377\1\343\377\377\2\342\377\377\2\342\377\377\1\342\377\377\2\343" +\ + "\377\377\2\343\377\377\2\342\377\377\3\342\377\377\4\343\377\376\4\342" +\ + "\377\376\5\341\377\375\6\337\377\366\7\331\377\345\7\312\377\276\5\254" +\ + "\377\245\5\63\377\370\5\10\377\375\5\12\377\375\6\13\377\375\7\12\377" +\ + "\374\6\12\377\374\7\13\377\371\7\12\377\357\7\11\377\334\7\10\377\261" +\ + "\7\6\377\250\5m\377\364\2\341\377\377\2\345\377\377\2\345\377\377\2\345" +\ + "\377\377\2\345\377\377\2\345\377\377\1\345\377\377\2\344\377\377\3\343" +\ + "\377\377\2\342\377\376\4\342\377\376\3\342\377\376\5\341\377\373\6\336" +\ + "\377\363\7\326\377\334\6\301\377\260\5\233\377\134\2P\376\1\0\0\377\0" +\ + "\0\0\326\0\0\0e\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\5\0\0\0/\0\0\0\212\7\0\6\356c\2W\377\255\4\230\376\323\5\272\377" +\ + "\353\6\317\377\367\6\332\377\373\5\337\377\375\4\341\377\376\3\341\377" +\ + "\376\3\343\377\377\3\341\377\376\2\342\377\377\2\341\377\377\2\341\377" +\ + "\377\2\341\377\376\3\342\377\377\2\341\377\377\3\342\377\377\3\341\377" +\ + "\377\5\342\377\376\5\341\377\374\6\335\377\364\6\327\377\342\6\306\377" +\ + "\276\5\252\377\235\6\65\377\366\5\7\377\375\6\13\377\374\6\13\377\373" +\ + "\7\11\377\371\7\13\377\365\7\12\377\357\7\11\377\343\6\10\377\314\6\5" +\ + "\377\240\6\27\377\274\3\230\377\374\2\343\377\376\3\342\377\376\2\342" +\ + "\377\377\2\342\377\377\1\342\377\377\1\342\377\377\2\342\377\377\2\342" +\ + "\377\377\2\342\377\377\2\343\377\377\3\342\377\376\4\342\377\375\4\340" +\ + "\377\372\6\335\377\360\6\324\377\332\6\300\377\261\4\234\377l\3`\376" +\ + "\4\0\4\377\0\0\0\351\0\0\0\202\0\0\0*\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\08\0\0\0\221\4\0\3\357M\1D" +\ + "\377\240\4\214\376\303\4\254\377\337\6\305\377\357\6\323\377\367\5\332" +\ + "\377\373\5\336\377\376\3\341\377\375\3\341\377\377\4\343\377\376\4\341" +\ + "\377\376\4\341\377\376\4\341\377\377\3\341\377\375\4\341\377\375\4\340" +\ + "\377\375\5\337\377\373\5\335\377\366\5\331\377\354\6\317\377\330\5\275" +\ + "\377\257\4\234\377\242\4\42\377\366\5\11\377\372\7\13\377\366\6\12\377" +\ + "\362\6\11\377\351\6\10\377\340\6\10\377\324\5\10\377\305\5\6\377\251" +\ + "\7\6\377\225\6P\377\343\5\311\377\375\5\343\377\375\4\341\377\377\3\341" +\ + "\377\377\3\342\377\376\3\341\377\377\1\342\377\377\2\341\377\377\2\341" +\ + "\377\377\3\342\377\376\2\341\377\376\4\342\377\375\4\340\377\373\5\336" +\ + "\377\366\5\332\377\352\5\316\377\322\5\271\377\253\5\226\377i\2\134\377" +\ + "\4\0\4\377\0\0\0\364\0\0\0\223\0\0\08\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0\67\0\0" +\ + "\0\210\1\0\0\346!\0\36\377\201\3p\376\255\4\227\377\307\5\260\377\333" +\ + "\5\301\377\352\5\316\377\363\6\326\377\367\4\331\377\372\3\336\377\373" +\ + "\4\340\377\373\3\336\377\373\3\336\377\371\4\334\377\366\4\330\377\362" +\ + "\6\324\377\351\5\316\377\341\6\304\377\321\6\270\377\274\5\251\377\213" +\ + "\5d\377\274\5\16\377\351\6\10\377\347\6\11\377\340\6\10\377\327\6\10" +\ + "\377\312\6\10\377\272\5\7\377\253\5\6\377\220\5\7\377s\5\62\377\244\4" +\ + "\213\377\331\5\301\377\354\6\320\377\366\5\330\377\373\5\335\377\375" +\ + "\3\340\377\376\3\341\377\377\3\342\377\377\3\342\377\377\3\342\377\376" +\ + "\3\342\377\376\3\341\377\375\3\341\377\373\4\335\377\367\5\331\377\354" +\ + "\5\320\377\334\5\302\377\300\5\251\377\240\4\214\377G\1>\376\2\0\2\377" +\ + "\0\0\0\363\0\0\0\226\0\0\0>\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0-" +\ + "\0\0\0q\0\0\0\306\5\0\5\3754\1.\377\201\3r\377\247\3\224\377\273\4\244" +\ + "\377\312\4\262\377\327\4\274\377\335\4\303\377\341\5\306\377\341\5\306" +\ + "\377\340\5\306\377\333\4\300\377\321\4\270\377\305\4\255\377\273\4\244" +\ + "\377\245\3\223\377}\3c\377\203\3\35\377\261\4\4\377\274\5\5\377\267\5" +\ + "\6\377\264\4\6\377\253\4\6\377\236\4\5\377\203\3\5\376K\2\3\377\33\1" +\ + "\1\377\1\0\0\377\32\0\31\377t\2e\377\250\3\224\376\300\4\252\377\325" +\ + "\5\275\377\344\5\311\377\356\5\321\377\363\5\326\377\367\4\332\377\370" +\ + "\5\333\377\370\4\333\377\367\4\332\377\364\4\327\377\356\5\321\377\345" +\ + "\5\311\377\327\5\275\377\301\4\252\377\251\4\224\377u\3f\377\33\0\30" +\ + "\377\0\0\0\377\0\0\0\341\0\0\0\210\0\0\0:\0\0\0\15\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\5\0\0\0\36\0\0\0O\0\0\0\224\0\0\0\331\0\0\0\374" +\ + "!\0\35\377O\1E\377z\2l\377\226\3\204\376\245\3\220\377\251\4\225\377" +\ + "\252\4\225\377\247\4\223\377\236\3\213\377\212\2z\377g\2[\376;\2\62\377" +\ + "*\2\21\377@\1\0\377N\1\1\377K\1\2\377J\1\2\377I\2\3\3778\1\2\377&\1\2" +\ + "\377\14\0\0\377\0\0\0\377\0\0\0\376\0\0\0\356\0\0\0\340\0\0\0\345\0\0" +\ + "\0\371'\1\42\377h\2\134\377\230\3\206\377\260\3\233\377\301\4\251\377" +\ + "\314\4\263\377\324\4\271\377\327\4\275\377\326\4\275\377\324\4\273\377" +\ + "\314\4\263\377\302\4\252\377\261\4\233\377\232\4\206\377k\2^\376*\1%" +\ + "\377\0\0\0\377\0\0\0\371\0\0\0\304\0\0\0n\0\0\0-\0\0\0\11\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\16\0\0\0-\0\0\0[\0" +\ + "\0\0\221\0\0\0\315\0\0\0\354\0\0\0\373\17\0\15\376\42\0\36\377&\0!\377" +\ + "'\0!\377%\0 \377\30\0\25\377\5\0\5\376\0\0\0\376\0\0\0\373\0\0\0\363" +\ + "\0\0\0\360\0\0\0\360\0\0\0\360\0\0\0\360\0\0\0\360\0\0\0\355\0\0\0\347" +\ + "\0\0\0\335\0\0\0\275\0\0\0\225\0\0\0o\0\0\0W\0\0\0^\0\0\0\212\0\0\0\314" +\ + "\0\0\0\363\12\0\12\376;\1\64\377b\2V\377\202\3s\377\222\3\200\377\225" +\ + "\3\202\377\225\3\203\377\221\3\177\377\202\3s\377d\2X\377=\1\66\377\16" +\ + "\0\14\377\0\0\0\376\0\0\0\364\0\0\0\323\0\0\0\214\0\0\0L\0\0\0\34\0\0" +\ + "\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\2\0\0\0\17\0\0\0(\0\0\0I\0\0\0o\0\0\0\226\0\0\0\272\1" +\ + "\0\0\324\1\0\0\340\1\0\1\345\1\0\0\343\0\0\0\333\0\0\0\310\0\0\0\254" +\ + "\0\0\0\217\0\0\0{\0\0\0s\0\0\0r\0\0\0s\0\0\0s\0\0\0r\0\0\0m\0\0\0a\0" +\ + "\0\0Q\0\0\0<\0\0\0'\0\0\0\25\0\0\0\11\0\0\0\15\0\0\0%\0\0\0M\0\0\0~\0" +\ + "\0\0\265\0\0\0\344\0\0\0\364\0\0\0\375\1\0\1\376\1\0\1\376\1\0\1\376" +\ + "\0\0\0\376\0\0\0\376\0\0\0\375\0\0\0\365\0\0\0\347\0\0\0\271\0\0\0\203" +\ + "\0\0\0S\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0" +\ + "\0\0\7\0\0\0\25\0\0\0(\0\0\0;\0\0\0J\0\0\0Q\0\0\0U\0\0\0S\0\0\0N\0\0" +\ + "\0D\0\0\0\63\0\0\0!\0\0\0\26\0\0\0\23\0\0\0\23\0\0\0\23\0\0\0\23\0\0" +\ + "\0\23\0\0\0\22\0\0\0\17\0\0\0\12\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\1\0\0\0\13\0\0\0\36\0\0\0:\0\0\0\134\0\0\0\200\0\0\0\236\0" +\ + "\0\0\264\0\0\0\276\0\0\0\301\0\0\0\276\0\0\0\264\0\0\0\240\0\0\0\202" +\ + "\0\0\0`\0\0\0=\0\0\0!\0\0\0\15\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\10\0\0\0" +\ + "\11\0\0\0\13\0\0\0\12\0\0\0\11\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0" +\ + "\16\0\0\0\35\0\0\0-\0\0\08\0\0\0<\0\0\0>\0\0\0<\0\0\08\0\0\0.\0\0\0\37" +\ + "\0\0\0\17\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\1\0\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\3\0\0\0\2\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0" + + +# RGBA 24x24x4 +viewer_icon_24_raw = \ + "\0\0\0\0\0\0\0\0\0\0\0\0Br\253\0K\177\265\0\0\0\0\0:i\241\2L\202\271" +\ + "\27S\206\272W\134\216\276\245W\221\306\327w\231\267\356\237\250\253\356" +\ + "\233\245\254\327\242\247\247\247\227\240\245W\226\237\241\30\231\234" +\ + "\230\4\0\0\0\0\246\251\246\0\237\242\237\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@p\247+P\206\274\227V\220\305\357" +\ + "\205\241\271\377\234\256\272\377|\261\327\377\227\255\272\377\332\332" +\ + "\330\377\260\267\272\377\260\263\264\377\306\306\303\377\261\264\261" +\ + "\362\243\247\244\240\234\237\2345\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\77m\243\0\0\0\0\0@s\255\134R\212\301\352`\240\327" +\ + "\377|\260\331\377\324\330\332\377\322\325\326\377\304\317\327\377\343" +\ + "\347\350\377\355\355\354\377\325\336\342\377\212\246\272\377o\210\234" +\ + "\377\264\270\272\377\302\304\302\377\253\255\253\356\237\242\236k\0\0" +\ + "\0\0\236\241\236\0\0\0\0\0\0\0\0\0\217\221\217\0\0\0\0\0\0\0\0\0_\177" +\ + "\242Zr\223\264\377\224\264\320\377\265\312\332\377\341\342\341\377\350" +\ + "\351\350\377\357\360\360\377\366\366\366\377\366\367\367\377\364\363" +\ + "\363\377\315\322\325\377\362\360\357\377\260\323\353\377v\236\273\377" +\ + "\320\323\323\377\310\312\311\377\256\260\256\377\242\244\241k\0\0\0\0" +\ + "\0\0\0\0+Fo\0\210\213\202\0\0\0\0\0\222\225\221i\234\241\241\377\301" +\ + "\301\274\377\324\324\321\376\336\336\334\377\344\345\345\377\360\361" +\ + "\360\377\372\372\372\377\376\376\376\377\365\365\365\377\252\300\315" +\ + "\377\222\276\326\377\364\372\371\377\302\313\307\377\134\232\265\377" +\ + "\313\313\320\377\336\340\337\376\312\313\307\377\233\234\233\377otwk" +\ + "\0\0\0\0Az\274\0\0\0\0\0\223\224\2147\230\233\230\357\271\272\267\377" +\ + "\324\324\320\376\336\337\334\377\336\340\337\377\351\353\351\377\370" +\ + "\370\370\377\377\377\377\377\377\377\377\377\340\346\351\377\214\313" +\ + "\353\377\245\252\265\377\203n\227\377\12|\326\377\2\331\356\377)\301" +\ + "\305\377\266\260\262\377p\214\246\376U\202\257\377Bl\232\354.U\213+\0" +\ + "\0\0\0\4>\221\2H_y\232\223\233\237\377r\207\231\377Jv\236\377f\207\242" +\ + "\377\337\340\337\377\357\361\360\377\365\363\364\377\367\361\361\377" +\ + "\367\363\362\377\357\362\361\377X\272\277\377\0\273\276\377\0\207\347" +\ + "\377\0\0\377\377\0\0\367\377\0\305\374\377+n\213\377R\204\261\377V\215" +\ + "\302\377H{\261\3775]\222\227#Cu\2/V\213\308e\234\360Fu\247\377W\223\316" +\ + "\377g\247\340\377j\256\344\377\206\247\276\377\332\311\306\377\333\237" +\ + "\230\377\336\233\223\377\336\221\206\377+\253\253\377\0\377\377\377\0" +\ + "\377\377\377\0\365\355\377\0\0\377\377\0\0\377\377\0\33\362\377 T\134" +\ + "\377;^~\377L}\254\377K~\264\3777a\223\360-Q\203\30+O\202Yk\241\377M\202\273\377" +\ + "X\221\313\377a\236\327\377j\254\343\377ti\210\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377sJO\377h\365\365\377c\375\374\377:\302\353" +\ + "\3777B\377\377\30\37\377\377\2(\275\377\32(-\377)C\134\377An\231\377" +\ + "Gy\255\377:e\230\377'Gu\246(Hx\331\377\31(8\377+If\377@l\233\377\77m\242\3774[\215\377!>h" +\ + "\356!\377.Np\377=i\232\377:e\231\377/T\203\377\368`\355\34\65" +\ + "]\330,O\177\3777a\226\377Ap\251\377J\177\270\377S\212\305\377]\213\307" +\ + "\377\246Ad\377\31452\377\2737\32\377\355\224\0\377\375\374\0\377\376" +\ + "\376\0\377\376\376\0\377\377\377\0\377\377\377\0\377\276p\1\377 \36)" +\ + "\377\36\63H\3773V}\377:e\227\3774[\215\377)Jv\377\32\62W\326\30-R\244" +\ + "$Co\377/U\207\3779d\232\377Br\253\377J\200\272\377\134h\226\377\354f" +\ + "\251\377\356u\304\377\323!+\377\267\213\0\377\375\377\0\377\377\377\0" +\ + "\377\377\377\0\377\372\377\0\377\342u\0\377\302\5\4\377#\37)\377\35\63" +\ + "M\3770T\177\3775\134\215\377-Q\177\377\42\77h\377\26+M\243\23&GU\35\66" +\ + "]\377(Iw\3770V\211\3779d\231\377;u\251\377\260 \271\377\377+\377\377" +\ + "\377\37\377\377\371\20\331\377\311\0\0\377\277\42\0\377\344`\0\377\347" +\ + "W\0\377\354\14\0\377\371\0\0\377s\21\20\377(++\377>GQ\377D^}\377.Q\177" +\ + "\377'Do\377\34\64X\377\23%DU\20!@\26\26,O\355!=f\377)Iw\3770U\207\377" +\ + "/f\224\377\324\0\310\377\377\0\377\377\377\0\377\377\376\0\356\377\371" +\ + "\0\1\377\300\0c\377\315\0G\377\276\0\6\377\257\5\7\377i\22\22\377 \42" +\ + "\42\377010\377XYV\377x}~\377-Ip\377 :`\377\25)I\355\20\37:\26\10\20\42" +\ + "\2\23$D\224\32\62W\377\42>g\377'Gt\377+R\201\377a0\213\377\377\0\362" +\ + "\377\377\0\377\377\360\0p\377\362\0L\377\377\0\376\377\262\2\246\377" +\ + "\35\34\31\377(#\42\377&)(\377010\377DFD\377bdd\377DUi\377 ;b\377\31/" +\ + "Q\377\20!=\224\6\15\34\2\0\0\0\0\15\30\61'\24&G\350\34\64Y\377\42=e\376" +\ + "&Cn\377%Hs\377%7\134\377\33 \66\377\13\25\34\377\30\23\60\3773\209\377" +\ + "\3\27\32\377\21\30\42\377021\377BCB\377MOM\377Y\134[\377Z`e\377%<_\376" +\ + "\33\63X\377\22%E\350\13\26-'\0\0\0\0\23#E\0\0\0\0\0\15\32\65U\24&E\377" +\ + "\37\66Z\377&>d\376'Ai\377\42=b\377\32\60M\377\24%;\377\21\42\66\377\20" +\ + "#\66\377\23\42\67\377\33%\64\377CEF\377TUV\377X[Y\377\77K]\377%<`\376" +\ + "\33\63X\377\23&F\377\14\32\65T\0\0\0\0\20!@\0\10\20 \0\0\0\0\0\0\0\0" +\ + "\0\15\32\63Q\25%B\377%8Z\377.Cg\377/Ej\377+@d\377&:[\377%9X\377%9Y\377" +\ + "%9X\377/;M\377ILP\377LOR\377>IY\377*@f\377\37\66\134\377\23&G\377\16" +\ + "\348Q\0\0\0\0\0\0\0\0\6\15\34\0\0\0\0\0\0\0\0\0\12\24)\0\0\0\0\0\12\26" +\ + "/R\24#@\347'9Z\3776Jp\377>Rx\377>Rx\377=Qv\377>Rw\377\77Sw\377DPe\377" +\ + "JNV\377@K]\377/Cj\377\36\64Z\377\22%H\346\14\32\67Q\0\0\0\0\13\27/\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\21)$\20\36" +\ + ":\221\34,M\357*<`\3774Gm\377Pu\377=H\134\3776k\240\377,Q\203" +\ + "\225\0\0\0\0\0\0\0\0\61X\214\377Ev\256\377R\211\302\377Z\225\316\377" +\ + "b\236\327\377h\247\336\377n\260\344\377\134\225\300\377\306\310\311\377" +\ + "\272[R\377\377\236\217\377\377\254\240\377\377\246\231\377\364~o\377" +\ + "\0\336\347\377\0\376\376\377\0\377\377\377\0\377\377\377\0\356\351\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\355\377\34\658\377)CY\377;`" +\ + "\202\377Jz\251\377L\177\264\377Bq\245\377.S\204\377\0\0\0\0&GyI\64]\221" +\ + "\377Fx\257\377P\207\300\377Y\223\314\377`\235\326\377f\246\334\377m\256" +\ + "\342\377l\260\341\377\237\23\23\377\377^H\377\377E6\377\377tl\377\377" +\ + "\134Q\377\330)\32\377\0\352\362\377\0\376\376\377\0\377\377\377\0\377" +\ + "\377\377\0\332\347\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\335\377" +\ + "\31)+\377 5G\3773Ts\377Fs\240\377J|\260\377Cq\246\3771X\211\377$CrH&" +\ + "Fw\2227`\225\376Ev\256\377N\204\275\377W\220\312\377^\232\324\377e\243" +\ + "\333\377j\253\340\377U\203\252\377\377\0\0\377\376\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\376\0\0\377@pw\377i\377\377\377\203\376\376" +\ + "\3775\377\376\377'\266\346\377(:\377\377\16\33\377\377\13\20\377\377" +\ + "\0\21\253\377\30%.\377 4E\3773Ss\377Dr\237\377Hy\257\377Aq\245\3773Z" +\ + "\214\376$Bp\221%Eu\3016_\223\377Cs\252\377L\200\271\377T\214\306\377" +\ + "[\226\320\377b\240\330\377g\250\336\377kj\213\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\332\0\0\377L_X\377" +\ + "f\272\302\377p\322\337\377\211\254\351\377\234\244\377\377{\177\377\377" +\ + ";R\354\377\0\273\307\377\30 ,\377!6J\3775Wx\377Ds\242\377Fw\254\377\77" +\ + "m\242\3773Z\212\377#@m\300#Bp\3434\134\220\377@n\245\377I{\264\377P\207" +\ + "\301\377X\222\314\377_\233\324\377d\242\333\377^n\221\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\332\230\0\377\347\313\0\377\242\200\0\377D\244\334\377w\270\357" +\ + "\377M\302\351\377\33\377\377\377\4t\201\377\30%\63\377!8L\3775Y|\377" +\ + "Cq\241\377Ds\250\377X\3776[\203\377>k\235\377;h\234\3775" +\ + "\134\216\377*Ly\377\34\65]\353\33\64]\342)Kz\3773[\216\377;g\235\377" +\ + "Cs\253\377J~\267\377P\210\302\377W\220\313\377[\226\321\377zG\247\377" +\ + "\203\26\77\377\250\0\0\377\360\0\0\377\355\0\0\377\320M\0\377\377\377" +\ + "\0\377\376\376\0\377\377\376\0\377\377\377\0\377\377\377\0\377\376\377" +\ + "\0\377\377\377\0\377m3\10\377\22#\60\377\32-\77\377*Fd\3778_\213\377" +\ + "g\377\26,O\275\24(K\217\37:" +\ + "b\376(Jx\3770U\207\3776a\226\377>k\243\377Du\256\377J~\270\377Bg\223" +\ + "\377\355H\217\377\350\206\347\377\352o\316\377\357\22\63\377\221\30\0" +\ + "\377\321\320\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\367\377\0\377\327p\0\377\377\0\0\377s\16\15\377\31$.\377\34\60" +\ + "F\377+Ko\3774[\213\3773Z\213\377.Q\177\377'Fp\377\35\66\134\376\23&G" +\ + "\216\20!@C\31\60U\377#Al\377*M{\3770V\211\3776`\226\377=k\242\377Cv\257" +\ + "\377\223(\245\377\377,\377\377\377;\377\377\376\34\376\377\370\30\372" +\ + "\377\370\0\1\377\212\0\0\377\3326\0\377\337r\0\377\342z\0\377\336T\0" +\ + "\377\350\5\0\377\377\0\0\377\353\0\0\377\36\37\37\377*,-\3777@J\377F" +\ + "[u\377+P\177\377.Q\200\377(Ht\377\42=f\377\30.Q\377\21\37=C\0\0\0\0\23" +\ + "'H\376\35\67_\377%Co\377+M|\3771V\210\3775_\224\3775n\240\377\322\0\303" +\ + "\377\376\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\354\09\377" +\ + "\377\0\0\377w\0\20\377\347\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\332\0\0\377/\26\26\377%%%\377./.\377KLK\377suq\377y\203\215\377%Fs\377" +\ + "#@h\377\34\65Z\377\23%C\375\0\0\0\0\0\0\0\0\20 >\217\31/T\377 ;c\377" +\ + "%Cn\377*Kz\377/T\205\3771_\222\377\260\14\255\377\377\0\377\377\377\0" +\ + "\377\377\377\0\376\377\377\0\377\377\352\0\25\377\370\0\0\377\366\0\344" +\ + "\377\272\0\252\377c\5\33\377p\16\15\377E\22\22\377\31!!\377$%$\377()" +\ + "(\377898\377VWV\377xzw\377Vet\377!>h\377\378^\377\27+M\377\17\358\216" +\ + "\0\0\0\0\2\6\13\0\4\10\24\10\23%E\377\33\63X\377 ;c\377$Bm\377(Hv\377" +\ + ",O\200\3775Bu\377\340\0\317\377\377\0\377\377\377\0\377\377\354\0o\377" +\ + "\352\0\3\377\367\0\306\377\377\0\377\377\317\0\277\377\17\26\34\377$" +\ + "%$\377&'&\377)*)\377./.\377898\377JLK\377bdc\377\134di\377\369b\377\37" +\ + "9`\377\31\60S\377\21\42>\377\1\5\14\10\2\5\10\0\0\0\0\0\0\0\0\0\17\34" +\ + "\67w\25)K\377\34\64Z\377!;c\377$@j\377&Ep\377)Iv\377\35Eg\3773&S\377" +\ + "\30\34/\377\20\24\35\377\0\25!\377:\15<\377:\15=\377\4\26\33\377\14\26" +\ + "\42\377\26\32 \377222\377=>=\377EFF\377OQO\377[^\134\377jkg\3771E^\377" +\ + "\379`\377\33\63X\377\24'H\377\15\31\63v\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\17\369\321\27+M\376\36\65Y\377#" +\ + "c\377)@g\377(@f\377$;_\377\36\63S\377\32,G\377\30*C\377\30*C\377\30*" +\ + "D\377\30)C\377\30)B\377-3;\377KMM\377SUV\377TVX\377OST\377&=b\377\42" +\ + ":a\377\35\64Y\377\26*M\376\17\37=\357\1\0\5\7\12\24*\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\12\25*\0\4\12\31\20\16\34\66\357\31+J\376" +\ + "&9[\377.Bf\3771Fk\3770Fk\377-Bf\377)>`\377(<\134\377'<]\377(=]\377(<" +\ + "]\377&:Y\377>BH\377JNR\377KOR\377EJQ\3770Dd\377'\77f\377 7]\377\26*M" +\ + "\376\17\36=\356\5\16\36\17\13\27.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\12\24(\0\0\0\4\5\15\31\63\314\27'E\377(;]\376" +\ + "4Hl\377:Nu\377=Qw\377l\245\233Ew\256\377O\206\276\377" +\ + "X\223\313\377^\234\325\377b\244\334\377d\246\335\377\200\262\331\377" +\ + "\255\310\332\377\332\335\335\377\341\341\337\377\341\343\342\377\345" +\ + "\346\345\377\347\350\350\377\351\352\352\377\353\354\354\377\356\357" +\ + "\356\377\360\360\360\377\361\362\361\377\362\362\362\377\363\363\362" +\ + "\377\362\363\363\377\361\363\363\377\363\362\363\377\361\362\362\377" +\ + "\357\357\357\377\363\364\364\377\360\360\360\377\357\360\360\377\361" +\ + "\361\360\377\223\302\341\377q\265\344\377q\261\335\377V\210\255\377\215" +\ + "\226\235\377\343\345\343\377\330\332\331\377\320\323\321\377\307\312" +\ + "\310\377\276\277\276\377\263\265\263\377\251\254\251\377\242\244\241" +\ + "\377\235\240\235\320\0\0\0\0\234\240\235\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\08h\243\251]\200\247\377\200" +\ + "\230\256\377\220\245\266\377\242\262\276\377\260\276\306\377\301\311" +\ + "\315\377\321\323\322\377\334\334\331\377\335\336\335\377\337\342\341" +\ + "\377\343\344\343\377\345\346\345\377\347\350\350\377\352\353\352\377" +\ + "\355\356\356\377\360\361\360\377\362\363\363\377\364\365\365\377\365" +\ + "\366\366\377\366\367\367\377\367\367\367\377\367\367\367\377\366\367" +\ + "\366\377\366\366\366\377\365\365\365\377\325\330\331\377KU`\377\363\363" +\ + "\362\377\361\362\361\377\360\360\360\377\364\362\361\377\300\331\350" +\ + "\377q\264\342\377q\260\335\377Rt\217\377\177\200\202\377\335\337\336" +\ + "\377\330\332\331\377\321\323\322\377\312\313\311\377\300\302\300\377" +\ + "\265\267\265\377\253\255\253\377\241\244\241\377\235\240\235\331\0\0" +\ + "\0\0\234\240\233\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\227\231\223\0" +\ + "\0\0\0\0Zx\235\232\212\225\234\377\244\245\241\377\254\256\254\377\267" +\ + "\271\267\377\300\303\300\377\312\314\312\377\321\323\322\377\326\330" +\ + "\327\377\333\335\334\377\336\337\337\377\341\342\341\377\343\344\343" +\ + "\377\346\347\347\377\351\353\352\377\355\356\356\377\360\361\361\377" +\ + "\364\364\364\377\367\367\367\377\370\371\370\377\372\372\372\377\373" +\ + "\372\372\377\372\373\373\377\373\373\373\377\371\372\372\377\372\371" +\ + "\371\377\375\376\376\377\315\322\326\377O\201\235\377\247\262\273\377" +\ + "\362\363\363\377\360\362\361\377\360\361\361\377\360\360\357\377\350" +\ + "\354\355\377\206\275\343\377m\254\331\377An\220\377\274\300\302\377\335" +\ + "\336\336\377\327\331\330\377\321\322\321\377\312\314\312\377\301\303" +\ + "\301\377\267\271\266\377\253\255\253\377\242\244\242\376\234\236\233" +\ + "\324\0\0\0\0\233\236\231\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\221\226" +\ + "\224\226\231\234\227\377\240\242\237\377\252\254\252\377\265\270\265" +\ + "\377\277\301\300\377\310\313\311\377\317\321\317\377\323\325\324\377" +\ + "\330\332\331\377\334\335\334\377\336\340\337\377\341\342\342\377\345" +\ + "\346\345\377\350\351\351\377\355\355\355\377\360\362\361\377\365\366" +\ + "\366\377\371\371\371\377\373\373\373\377\374\374\374\377\375\375\375" +\ + "\377\375\375\375\377\375\375\375\377\374\375\375\377\377\377\377\377" +\ + "\317\316\316\377px\200\377]}\221\377x\270\335\377\234\302\330\377\366" +\ + "\366\366\377\361\363\363\377\360\362\361\377\361\361\361\377\356\356" +\ + "\355\377}\242\274\377p\257\334\377\237\271\314\377\351\352\351\377\341" +\ + "\343\342\377\333\335\334\377\327\330\327\377\322\323\322\377\313\315" +\ + "\314\377\302\305\303\377\270\272\270\377\254\256\254\377\240\243\240" +\ + "\377\231\235\232\254\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222\225\222" +\ + "w\224\227\224\377\234\237\234\377\247\251\246\377\262\265\263\377\275" +\ + "\277\275\377\306\310\307\377\314\316\315\377\321\323\322\377\326\327" +\ + "\326\377\331\332\331\377\333\335\334\377\336\340\337\377\342\343\343" +\ + "\377\346\347\347\377\353\354\353\377\360\361\360\377\366\366\366\377" +\ + "\371\371\371\377\374\375\374\377\375\375\375\377\376\376\376\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\247\251" +\ + "\255\377Px\220\377q\257\317\377\200\305\351\377\205\310\354\377\277\330" +\ + "\347\377\366\366\366\377\362\363\363\377\365\366\366\377\305\306\305" +\ + "\377Vj|\377a\223\271\377u\262\337\377k\210\237\377\345\346\344\377\344" +\ + "\344\344\377\337\340\337\377\332\333\332\377\327\330\330\377\324\325" +\ + "\324\377\316\317\316\377\307\311\307\377\300\302\300\377\262\264\262" +\ + "\377\243\247\243\377\237\241\234o\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\214\220\214\0\217\221\217" +\ + "*\221\224\220\377\230\233\227\377\242\245\242\377\257\261\257\377\271" +\ + "\274\272\377\303\305\303\377\312\314\312\377\320\322\320\377\324\325" +\ + "\324\377\326\330\327\377\332\333\332\377\334\335\334\377\337\341\340" +\ + "\377\344\344\344\377\351\352\351\377\356\357\356\377\364\365\365\377" +\ + "\371\372\371\377\374\374\374\377\376\376\376\377\377\377\377\377\376" +\ + "\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\215\223" +\ + "\231\377^\220\253\377\201\305\350\377\210\321\366\377~\311\356\377\353" +\ + "\363\367\377\371\371\371\377\366\366\366\377\364\365\364\377\201\177" +\ + "\203\377\23N_\377\3\220\237\377\0\245\261\377\0\230\246\377\26ez\377" +\ + "|}\203\377\351\352\352\377\340\341\341\377\335\336\335\377\333\334\333" +\ + "\377\313\314\313\377\253\253\251\377\222\222\221\377QYc\377>KX\3778E" +\ + "V\3779I^\377\15.f\16\63\134\225\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\215\221\215\346\223\226\223\376" +\ + "\235\240\235\377\252\254\252\377\265\270\266\377\277\302\300\377\310" +\ + "\312\311\377\316\320\316\377\323\324\324\377\326\330\327\377\331\333" +\ + "\331\377\333\334\334\377\336\337\337\377\341\342\341\377\345\347\346" +\ + "\377\354\354\353\377\361\362\362\377\367\367\367\377\374\374\374\377" +\ + "\375\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\375\375\377`\213\242\377\204\313\355" +\ + "\377\213\326\372\377\212\325\371\377\231\322\356\377\377\377\377\377" +\ + "\336\344\344\377\277\303\303\377\234\240\234\377\0\245\252\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\255" +\ + "\274\377z\200\202\377\345\346\345\377\333\334\334\377\341\341\337\377" +\ + "I[m\377;`\203\377Bo\231\377Jz\251\377Gx\251\377An\237\3778a\222\3762" +\ + "Y\215\272\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\212\216\212}\216\221\215\377\230\233\227\377\245\247\244" +\ + "\377\261\264\262\377\274\276\275\377\313\316\314\377\325\327\325\377" +\ + "\333\335\333\377\336\337\336\377\336\337\336\377\334\335\335\377\336" +\ + "\337\336\377\337\342\341\377\343\344\343\377\350\351\351\377\356\356" +\ + "\355\377\364\365\364\377\371\372\372\377\375\375\374\377\377\377\376" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\376\376\376\377\377\377\377\377\272\341\362\377\207" +\ + "\317\362\377\202\313\356\377OYg\377\206E\77\377t+#\377 \0<\377\0\0\246" +\ + "\377\0\0\334\377\0\0\335\377\0#\333\377\0p\325\377\0\364\362\377\0\377" +\ + "\377\377\0\377\377\377\0\253\272\377LQ[\377\217\220\221\377}\203\210" +\ + "\377Ix\241\377Z\222\304\377Z\223\311\377X\221\306\377S\211\300\377K\177" +\ + "\264\377Bq\245\3775^\222\3771X\217I\32)F\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0qx|\376\225\230\224\377\236\241\236\377" +\ + "\254\257\254\377\275\277\275\377\265\266\263\377S^i\377CUf\377l\237\377JXi\3778Pk" +\ + "\377Hy\250\377X\220\306\377_\234\323\377d\242\331\377g\247\335\377j\253" +\ + "\340\377l\254\340\377b\234\310\377j}\216\377\356\356\355\377\351\352" +\ + "\351\377\355\356\355\377\362\362\362\377\367\370\367\377\377\377\377" +\ + "\377\375\377\377\377\304\312\313\377\247\255\255\377\247\256\256\377" +\ + "\311\317\317\377\377\377\377\377\377\377\377\377\263\260\262\377\36p" +\ + "|\377\0\374\377\377\0\377\377\377\0\376\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\252\322\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\376\377\0\0\351\377\0\354\356" +\ + "\377\0\215\232\377Ad\202\377Ah\211\377Fp\226\377Jz\244\377O\201\260\377" +\ + "R\206\271\377R\207\274\377P\204\272\377K}\263\377Bq\246\3778b\225\376" +\ + "-Q\204\365\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\27'>\0+Q\206\1342Z\217\377" +\ + "=j\241\377Gy\261\377K~\264\377O\204\271\377X\220\311\377\134\230\321" +\ + "\377`\235\325\377d\242\332\377g\246\335\377j\253\340\377m\256\342\377" +\ + "m\255\337\377P\204\253\377\267\273\276\377\352\353\353\377\356\356\356" +\ + "\377\365\365\365\377\325\333\333\377\200ZY\377\207:4\377\301_W\377\340" +\ + "yp\377\337xo\377\273]T\377\177C=\377V.\32\377(F)\377\0\372\377\377\0" +\ + "\376\376\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\376\377\0\306\323\377\0\0\377\377\0\0\377\377\0" +\ + "\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0f\327\377" +\ + "\10q\203\3772Nf\3774To\377:^~\377Bk\220\377Hv\242\377N\200\257\377O\203" +\ + "\267\377N\203\270\377K~\263\377Dt\251\377;f\232\377/T\206\377*M\201Z" +\ + "\24\42:\0\0\0\0\0\0\0\0\0\0\0\0\0,P\204\3236_\224\376@o\245\377I{\264" +\ + "\377O\205\275\377T\213\305\377X\222\314\377\134\227\321\377`\234\325" +\ + "\377d\241\331\377f\246\335\377j\252\340\377l\256\343\377o\261\344\377" +\ + "j\247\326\377Qs\216\377\362\361\357\377\366\366\366\377\216\200\200\377" +\ + "\240>5\377\376\235\217\377\377\252\234\377\377\252\236\377\377\251\235" +\ + "\377\377\251\235\377\377\252\234\377\377\250\233\377\352~r\377\0\214" +\ + "\234\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\316\325\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\16\322\377\21@E\377&=O\377)CX\3770Oi\3779]~\377Bm\224" +\ + "\377Ix\246\377L\200\261\377M\201\265\377J~\264\377Eu\253\377=i\235\377" +\ + "3Y\214\376)L}\320\0\0\0\0\0\0\0\0\0\0\0\0*O\211\32,Q\203\3778b\227\377" +\ + "Aq\250\377I|\264\377O\205\276\377T\213\305\377W\221\313\377\134\227\320" +\ + "\377_\233\324\377c\240\331\377f\245\334\377i\251\337\377m\255\342\377" +\ + "o\260\345\377p\261\343\377^\227\300\377\231\245\256\377~hi\377\327M@" +\ + "\377\377\217~\377\376\217\177\377\377\215}\377\377\221\203\377\377\276" +\ + "\263\377\377\250\233\377\377\215~\377\377\215}\377\254@4\377\0\330\350" +\ + "\377\0\377\376\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\313\323\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\313\377\31'*\377\36\61@\377\428J\377*DZ\3772Sp\377=d\210" +\ + "\377Er\236\377K|\255\377K~\262\377J}\262\377Ev\254\377>k\237\3775]\217" +\ + "\377*K{\377)N\204\30\0\0\0\0\0\0\0\0(J|x.T\207\377:e\232\377Br\251\377" +\ + "J}\265\377O\204\274\377S\212\303\377W\221\312\377[\225\320\377_\233\324" +\ + "\377b\237\330\377e\244\333\377i\250\337\377k\254\341\377o\257\344\377" +\ + "q\262\345\377g\243\320\377Uiu\377\306\3\0\377\377vc\377\377m[\377\377" +\ + "hV\377\377_P\377\377m`\377\377\356\354\377\377\266\256\377\377bS\377" +\ + "\377eT\377\223\35\22\377\0\337\355\377\0\377\376\377\0\377\377\377\0" +\ + "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\270\323\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\300\377\30&+\377\33" +\ + "+9\377\36\62A\377%=Q\377.Mh\377:^\202\377Cn\230\377Iy\250\377J|\260\377" +\ + "I|\261\377Ev\253\377\77l\241\3777_\222\377,O\177\377%Evu\0\0\0\0\0\0" +\ + "\0\0'Hz\3121W\212\377:f\234\377Cs\252\377I|\265\377N\203\274\377R\211" +\ + "\302\377V\217\311\377Z\225\317\377^\232\323\377a\236\327\377d\243\332" +\ + "\377h\247\336\377j\253\341\377m\256\343\377q\261\344\377c\240\315\377" +\ + "p\4\5\377\377\6\2\377\376C-\377\3778$\377\377-\35\377\377&\31\377\377" +\ + "%\32\377\377A9\377\3774*\377\377'\31\377\377/\37\377\267\15\1\377\0\246" +\ + "\267\377\14\377\377\377\6\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\217\315\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\231\377\30'/\377\31(\65\377\35/>\377#:N\377-Id\3778" +\ + "\134~\377Al\226\377Gw\247\377I{\256\377Hz\260\377Ev\253\377\77l\241\377" +\ + "7a\223\377.Q\202\377%Ds\310\0\0\0\0\0\0\0\0&Hx\3772X\214\377;f\234\377" +\ + "Br\251\377H{\263\377M\201\272\377Q\207\300\377U\216\310\377Y\223\315" +\ + "\377]\230\322\377`\235\326\377d\242\332\377g\246\334\377i\252\340\377" +\ + "m\255\342\377o\257\343\377@j\210\377\340\0\0\377\377\0\0\377\377\7\0" +\ + "\377\377\5\0\377\377\1\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\2\0\377\341\0\0\377\269F\377V\377\377\377N\376" +\ + "\376\3778\377\377\377-\377\377\377Q\377\377\377\25\377\377\377\15\377" +\ + "\377\377\16\377\377\377\1a\320\377\0\26\377\377\0\16\377\377\0\7\377" +\ + "\377\0\4\377\377\0\2\377\377\0\0\377\377\0\0\377\377\1\0R\377\27&\62" +\ + "\377\30'\64\377\34.>\377#:M\377-Je\3778\134\177\377Ak\226\377Gv\246\377" +\ + "Iz\256\377Gy\256\377Dt\251\377\77l\241\3777a\224\377.S\203\377$Cp\377" +\ + "\0\0\0\0#Cv9(Hy\3772Y\214\377;f\234\377Bq\250\377Gz\262\377L\200\271" +\ + "\377P\206\277\377T\214\306\377X\222\313\377[\227\320\377_\233\325\377" +\ + "c\240\331\377e\244\333\377h\250\336\377k\254\341\377p\261\346\377O4C" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377" +\ + "\374\0\0\377\214\0\0\377.\216\231\377\207\377\377\377|\376\376\377\205" +\ + "\377\377\377\351\377\377\377i\377\377\377X\377\377\377P\377\377\377H" +\ + "l\316\377\205\224\376\377%<\377\377!5\377\377$3\377\377%0\377\377\14" +\ + "\20\376\377\0\0\352\377\1_i\377\27%\60\377\30'\65\377\35/>\377$:P\377" +\ + "-Kg\3779]\200\377Bm\230\377Gv\246\377Gy\255\377Gx\255\377Cs\250\377>" +\ + "k\240\3777a\223\377/S\203\377%Cq\377\42Ao\66!\77mp(Iz\3772Y\214\377:" +\ + "f\233\377Ap\247\377Ex\257\377J~\267\377O\204\276\377S\212\303\377V\220" +\ + "\312\377Z\225\317\377^\232\323\377a\236\327\377d\242\333\377g\246\335" +\ + "\377i\252\340\377p\262\352\377n\37(\377\377\0\0\377\377\0\0\377\377\0" +\ + "\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\351\0\0\377v\0\0\377.ip" +\ + "\377\215\365\372\377\242\377\377\377\233\377\377\377\224\377\377\377" +\ + "\216\377\377\377_\326\332\377\241\243\370\377\311\316\377\377fr\377\377" +\ + "`j\377\377\134d\377\377W`\376\377!\33\374\377\0\232\325\377\0\220\236" +\ + "\377\27#.\377\31(\65\377\35/@\377%T\377/Nm\377:`\206\377Bn\232\377Fv\250\377Gx\254\377Du\252" +\ + "\377@o\244\377l\242\377Cs\252\377Gy\262\377K\200\271\377" +\ + "O\205\277\377T\213\305\377W\220\312\377[\225\320\377]\232\323\377a\236" +\ + "\327\377c\242\333\377g\246\335\377k\257\347\377m\37)\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\252\22\0\377\356\322\0\377\315\251\0\377\277\231" +\ + "\0\377\257\212\0\3774.\16\3772\200\324\377[m\324\377tn\342\377tq\343" +\ + "\377[n\325\377,\222\325\377\0\345\352\377\0\377\377\377\0\375\377\377" +\ + "\10\63\77\377\26$\61\377\31(\66\377\36\61C\377&>V\3770Po\377:`\210\377" +\ + "An\233\377Et\247\377Eu\252\377Cs\250\377\77l\242\377;f\232\3775]\216" +\ + "\377-Q\201\377%Do\377\358b\276\37;g\314'Hw\3770U\207\3776a\225\377=i" +\ + "\240\377Ap\247\377Ev\257\377J}\266\377M\203\275\377Q\210\302\377U\216" +\ + "\311\377Y\222\315\377\134\227\321\377_\234\325\377b\240\331\377d\243" +\ + "\334\377i\251\341\377N8J\377\377\0\0\377\376\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\277c\0\377" +\ + "\377\375\0\377\377\366\0\377\377\365\0\377\377\351\0\377\247\203\0\377" +\ + "#\202\217\377x\377\377\377]\377\376\377\241\377\376\377\207\377\377\377" +\ + "\77\377\377\377\77\376\376\3778\377\377\377\0\221\244\377\23\31#\377" +\ + "\26$\60\377\30(\67\377\36\61D\377&\77W\3770Pq\377:a\210\377Am\233\377" +\ + "Ds\246\377Ds\250\377Ap\245\377=j\236\3779d\227\3774Z\214\377-P~\377$" +\ + "Cn\377\34\66_\313\369e\327&Gu\377.S\204\3775]\222\377:f\234\377\77m\244" +\ + "\377Cs\254\377Gz\262\377K\200\272\377P\206\300\377S\213\306\377V\220" +\ + "\312\377Z\225\317\377]\231\322\377`\235\326\377c\240\332\377d\243\333" +\ + "\377Dt\233\377\333\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0" +\ + "\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\376\0\0\377\356\0\0\377\323\273\0\377\376\370\0" +\ + "\377\377\371\0\377\377\370\0\377\377\372\0\377\356\317\0\377r\134\0\377" +\ + "9\204\216\377\224\377\377\377\234\377\377\377\222\377\377\377\207\377" +\ + "\377\377z\377\377\377%\223\241\377\15\24\33\377\24\42.\377\26$\61\377" +\ + "\30)8\377\36\62E\377&@Y\3770Qr\377:`\210\377@l\232\377Cq\244\377Bp\246" +\ + "\377\77m\242\377;g\234\3778a\223\3772X\211\377+M{\377#Al\377\34\65]\324" +\ + "\35\67b\342%Dr\377,Q\201\3773[\217\3779d\230\377=j\241\377Aq\250\377" +\ + "Ev\257\377I}\266\377M\202\274\377Q\210\302\377U\215\310\377W\221\314" +\ + "\377[\226\321\377^\232\323\377a\235\327\377c\241\332\377f\247\341\377" +\ + "k\14\21\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\267\26\0\377\377\377\0\377\377\371\0\377\377\371\0\377" +\ + "\377\371\0\377\377\373\0\377\377\371\0\377\350\311\0\377\222w\0\3779" +\ + "D\35\3778mn\377C\203\220\377j\232\377@l\240\377>k\240\377;" +\ + "g\233\3777a\224\3773[\213\377.R\202\377(Hu\377 l\243\377Bq\251\377Fw\261\377J}\266\377M\203\274" +\ + "\377Q\207\301\377S\214\307\377W\220\313\377Y\224\316\377[\227\321\377" +\ + "\134\231\322\377[\233\322\377\206\0g\377a\0L\377\207\0\0\377\371\0\0" +\ + "\377\377\0\0\377\377\0\0\377\376\0\0\377\376\0\0\377\377\0\0\377\377" +\ + "\0\0\377\257\25\0\377\372\374\0\377\376\376\0\377\377\376\0\377\377\376" +\ + "\0\377\377\374\0\377\377\376\0\377\377\377\0\377\377\376\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\305\257\0\377\24\11\27\377\24 -\377\24\42\60\377\27'\67\377\34" +\ + "\60D\377$\377M\25\24\377k\0\0\377\277\0\0\377" +\ + "\353\0\0\377\352\0\0\377\312\0\0\377\256A\0\377\367\370\0\377\376\376" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\376\377\0\377\376\372\0\377\271,\0\3770\13\17\377" +\ + "\23 .\377\24#\61\377\31):\377\36\63I\377&@]\377.Or\3775\134\206\3779" +\ + "c\222\377;g\230\377:e\231\3778b\224\3774\134\216\3770V\207\377-P~\377" +\ + "(Ht\377\42\77i\377\34\64Z\377\25*N\273\25*O\215\33\65]\376\42\77k\377" +\ + "(Ix\377-Q\202\3771W\212\3775^\222\3779c\231\377k\242\377Aq\250\377Du\256\377Hz\263\377J\177" +\ + "\271\377M\202\274\377O\206\301\377\377 7Q\377(De\377/Rz\3774Z\210\3776^\217\3775" +\ + "]\217\3774Z\214\3770U\205\377.Q\177\377)Kw\377&Dn\377!=e\377\32\63Y\377" +\ + "\25*L\377\20 >.\0\0\0\0\24(J\377\33\62X\377 k\243\377Ap\250\377Cu\256" +\ + "\377Gy\262\377J}\267\377N\204\300\377L'E\377\345e\334\377\377\214\377" +\ + "\377\376\211\377\377\377\245\377\377\376\212\377\377\377\215\377\377" +\ + "\341X\322\377\346\0\10\377\363\0\0\377\204\0\0\377VD\0\377\347\334\0" +\ + "\377\377\376\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\376" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\374\0\377\331\325" +\ + "\0\377\270A\0\377\374\0\0\377\376\0\0\377\377\0\0\377\247\0\0\377\34" +\ + "##\377$(*\377\23!\60\377\30)>\377\37\65O\377'Cd\377.Ow\3772W\205\377" +\ + "3Z\212\3773Y\213\3771V\206\377-Q\200\377+Ly\377(Fq\377$Ai\377\378_\377" +\ + "\31\60T\377\22%F\377\0\0\0\0\0\0\0\0\22$E\277\27.R\376\35\67_\377\42" +\ + "@j\377&Fs\377)L{\377-Q\202\3770V\210\3774\134\220\3777a\225\377:f\234" +\ + "\377=k\242\377@o\250\377Ct\255\377Ex\261\377:q\237\377\300\20\244\377" +\ + "\377S\377\377\377K\377\377\377@\377\377\377\263\377\377\377C\377\377" +\ + "\377C\377\377\377Q\377\377\334\12\270\377\370\0\0\377\376\0\0\377\257" +\ + "\0\0\377P\0\0\377\275R\0\377\277\245\0\377\342\340\0\377\357\361\0\377" +\ + "\361\363\0\377\356\357\0\377\334\327\0\377\274\225\0\377\277A\0\377\350" +\ + "\0\0\377\377\0\0\377\376\0\0\377\376\0\0\377\375\0\0\3775\12\12\377&" +\ + "'&\377'(*\377$*2\377'2@\377\32\61L\377#\77`\377+Ls\3770T\200\3771W\205" +\ + "\3770T\205\377.Q\200\377+Lz\377(Ht\377$Cm\377!m\25*L\377\32\62X\377\37;c\377$B" +\ + "l\377'Gu\377*M|\377.Q\202\3770W\211\3774[\220\3776`\226\377:e\233\377" +\ + "g\377\368^\377\31\61T\377\24(H\377\20\36;k\0\0\0\0\0\0\0\0" +\ + "\10\21\42\20\23%E\377\27.R\377\34\66\134\377 =f\377$Cn\377'Gt\377+N|" +\ + "\377-Q\202\3770V\211\3773[\217\3776`\224\3779c\232\377;h\237\377\77q" +\ + "\252\377\214\12|\377\377\0\377\377\377\0\376\377\377\0\377\377\377\0" +\ + "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376\377\377" +\ + "\0\377\377\326\0u\377\377\0\0\377\377\0\0\377\346\0\0\377D\0\0\377\321" +\ + "\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\226\0\0" +\ + "\377\26\32\31\377#$#\377%&%\377***\377232\377@A@\377STS\377ghg\377z|" +\ + "y\377\223\227\232\377Oh\210\377*Ky\377(Ht\377%Cm\377\42\77h\377 :`\377" +\ + "\33\64X\377\27+M\377\22\42A\377\7\16\34\16\0\0\0\0\0\0\0\0\0\0\0\0\20" +\ + " =\302\25*L\376\31\61W\377\368`\377!>h\377%Co\377'Hu\377+M{\377-Q\201" +\ + "\3770U\210\3773Z\215\3775^\223\3778b\230\3779k\241\377\233\7\207\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\335\0\205\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\257\0\3\377Y\0O\377\212\0\0\377" +\ + "\370\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\346\0\0\377]\3\3\377\26\33\33\377###\377$%$\377&&&\377" +\ + "+,+\377454\377CEC\377VWV\377jlj\377|~|\377\207\212\207\377ap\177\377" +\ + "'Fr\377%Do\377#\77h\377 ;b\377\34\66Z\377\31/R\377\24'F\376\17\369\300" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\24&M\0\16\32\65M\22$E\377\30.Q\377\34\64[\377" +\ + "\37:c\377\42\77i\377%Cn\377'Gt\377*Kz\377-O\200\377/T\206\3772X\213\377" +\ + "4\134\221\3777d\232\377x\17p\377\377\0\377\377\377\0\376\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376" +\ + "\377\377\0\377\377\330\0f\377\377\0\0\377\377\0\0\377\377\0\0\377\323" +\ + "\0n\377\366\0\346\377\242\0\215\377R\0.\377l\0\0\377\262\0\0\377\323" +\ + "\0\0\377\320\0\0\377\233\0\0\377U\6\6\377\32\25\24\377!##\377###\377" +\ + "#$#\377%&%\377))(\377/0/\377:;:\377IJI\377[][\377npn\377|~}\377\205\211" +\ + "\206\377Ras\377%Bl\377#\77h\377!h\377$Cm\377'Fs\377*J" +\ + "y\377,N~\377.R\203\3771V\211\3773Z\216\37722^\377\377\0\350\377\376\0" +\ + "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\376\0\377\377\377\0\371\377\327\0\21\377\376\0\0\377\377\0" +\ + "\0\377\332\0\11\377\370\0\376\377\377\0\377\377\377\0\371\377\372\0\335" +\ + "\377|\0b\377\21\33\30\377\24\36\35\377\24\35\35\377\33! \377#%$\377#" +\ + "$#\377#$#\377$%$\377&&&\377())\377./.\377665\377BCB\377QRQ\377acb\377" +\ + "oqp\377|\177{\377_is\377\36;c\377\42>h\377!;b\377\379_\377\33\62W\377" +\ + "\27-O\377\22$C\376\16\34\67\353\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\14\31\61\134\23$E\377\27,O\377\33\63X\377\36\67^\377\37:c" +\ + "\377\42>h\377$Am\377&Fr\377(Iw\377*M|\377-P\201\377.S\205\377.X\210\377" +\ + "v\11j\377\377\0\371\377\376\0\377\377\377\0\376\377\377\0\377\377\377" +\ + "\0\376\377\376\0\376\377\377\0\377\377\313\0l\377\377\0\0\377\377\0\0" +\ + "\377\336\0\5\377\353\0\341\377\376\0\376\377\377\0\377\377\376\0\377" +\ + "\377\372\0\343\377 \11#\377 !\42\377\42#\42\377###\377#$#\377$%$\377" +\ + "%&&\377'('\377()(\377+,+\377/0/\377676\377\77@\77\377KML\377X[Y\377f" +\ + "hf\377qtr\377V_g\377\35\67^\377#>f\377 h\377$Ak\377&Dp\377'Gu\377*Kz\377+N~\377,P\200\377%" +\ + "Nw\377f\15`\377\361\0\326\377\377\0\374\377\377\0\377\377\377\0\374\377" +\ + "\366\0\347\377\316\0`\377\373\0\0\377\321\0\0\377\270\09\377\373\0\365" +\ + "\377\377\0\377\377\377\0\377\377\377\0\375\377\350\0\314\3773\10\60\377" +\ + "\13\26!\377\20\26\36\377\42#\42\377$$%\377&'&\377())\377+,+\377./.\377" +\ + "122\377565\377:<;\377BBA\377IKJ\377UWU\377`a`\377ikj\377rur\3770AY\377" +\ + "\42>=\377ACB\377GHF\377LNM\377TVT\377\134^\134\377cfd\377" +\ + "ilj\377gkk\377\34\64X\377!;b\377 :a\377\35\66\134\377\32\62V\377\27-" +\ + "P\377\24&F\377\17\36;\377\11\21$\66\14\31\60\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\32\63\247\22#C\377\26*" +\ + "L\377\31/S\377\35\65Y\377\378^\377!:b\377#=f\377$@i\377%Bl\377&Do\377" +\ + "&Fr\377'Fs\377'Eq\377$Bj\377!e\377%\77g\377&\77h\377%@h\377%\77h\377" +\ + "#>e\377!:_\377\36\65V\377\32.L\377\26(A\377\23#9\377\22 \64\377\21\37" +\ + "\61\377\20\36\60\377\20\36\61\377\21\36\61\377\21\37\62\377\21\36\62" +\ + "\377\20\36\61\377\20\36\60\377\20\36\60\377\21\36\61\377\13\27%\377<" +\ + "=;\377BDC\377IKJ\377ORQ\377UWV\377WZY\377Y[[\377Y\134[\377Y\134[\377" +\ + "LRW\377-\77Z\377 9`\377\42;a\377 8^\377\36\67\134\377\34\63X\377\31/" +\ + "S\377\26*M\377\22$D\376\16\35:\377\7\17\37#\12\23(\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\11\22#W\20\359\377\23%D\377\30,L\377\34\61T\377 7Z\377$" +\ + ":^\377&=b\377(\77f\377'\77f\377(Ai\377'@f\377%>d\377#;_\377 7Y\377\36" +\ + "\63R\377\33.K\377\30*D\377\26'\77\377\25%=\377\25%<\377\25%<\377\26&" +\ + ">\377\25&=\377\26&=\377\26%=\377\25%<\377\25%<\377\25%<\377\22\35.\377" +\ + "CEC\377GIH\377MOO\377RTT\377UWW\377VYY\377WYZ\377TWX\377UWV\3770@X\377" +\ + "&>c\377$\377\11\22'U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\11\22%|\17\359\377\24$B\377\31,L\377\36\63T\377#7[\377&;`\377" +\ + ")\77d\377*Ag\377*Ag\377*Ag\377)Af\377'\77c\377%;_\377#7Y\377 4S\377\36" +\ + "\62O\377\34/K\377\33.J\377\33.J\377\33-J\377\34/K\377\33.K\377\33/K\377" +\ + "\33.J\377\33-I\377\33-I\377\33-G\377\30#\65\377GJI\377ILL\377MPQ\377" +\ + "PST\377QTV\377RUV\377PST\377NQR\377=GU\377&=d\377&>e\377#;b\377!7^\377" +\ + "\36\64Z\377\32\60U\377\26*L\377\23$E\376\20 \77\377\12\24*x\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\21%\206" +\ + "\17\348\377\23$A\377\31+K\377 3T\377$8[\377)=a\377-Af\377-Ch\377.Ch\377" +\ + ".Di\377-Dh\377,Ae\377)>b\377'<^\377%9Z\377$7W\377#7U\377\42\66U\377\42" +\ + "\67V\377\42\67V\377#8W\377#7W\377#7V\377#7U\377#6U\377\42\64O\377'/;" +\ + "\377HKM\377JMO\377LOQ\377LPR\377LOS\377KOR\377JMP\377AGQ\377)@f\377)" +\ + "Ah\377%=e\377#:a\377\37\66\134\377\32\60U\377\25*M\377\23%F\376\20\37" +\ + ">\377\12\24+\202\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\21$x\16\33\66\377\23\42\77\376\31" +\ + "+J\377!3T\377&9\134\377+\77a\377/Dg\3772Gl\3773In\3774Io\3773Jo\3772" +\ + "Gl\3770Ei\377.Cg\377.Be\377,Ac\377,Ac\377,Ac\377,Ac\377-Ac\377-Bd\377" +\ + "-Bc\377-Ac\377.Bc\377*\377\12\25,u\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\20#O" +\ + "\14\31\63\377\21 =\376\30)H\377!3S\377(:]\377.Ae\3773Fj\3776Jo\3778M" +\ + "r\3779Ms\3779Nt\3778Ms\3777Lq\3777Kp\3776Kn\3776Jn\3776Jm\3775Jn\377" +\ + "6Ko\3777Ko\3777Lp\3778Lp\3778Lo\3775Ee\377GLS\377JOU\377JNU\377IMS\377" +\ + "HLR\377FIO\377AFP\3773Hp\3770Fm\377+Bj\377&=e\377 7^\377\31/U\377\23" +\ + "(M\377\22#E\376\16\36=\377\12\23)L\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\7\16\34\37\13\27\61\347\17\358\377\25%B\377\37\60P\377" +\ + "(;\134\377/Cf\3776Io\377:Ns\377Sy\377\77T{\377\77Ty\377\77Ty" +\ + "\377\77Sz\377\77Sx\377\77Sx\377\77Sx\377\77Tz\377@Uz\377AUz\377ATz\377" +\ + "AUz\377>Op\377JOY\377LPY\377JOW\377IMU\377DJT\377Pt\377;G`\377BFK\377=AE\3779<=\377\35)\77\377\27*K\377\23&I\377\22#" +\ + "E\377\20 A\377\20\37@\377\13\30\62\344\7\20\42N\0\0\0\0\6\15\33\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\7" +\ + "\20W\11\23)\331\15\34:\377\17 @\377\20!A\377\22#D\377\25'G\377\31*L\377" +\ + "\35.O\377 2T\377\42\64V\377#6W\377#6W\377\42\64V\377 2T\377\36\60Q\377" +\ + "\31*I\377\33%\67\377\35%\60\377\24\37\64\377\17\36=\377\17\36<\377\17" +\ + "\35<\377\15\32\66\377\11\22'\326\3\7\20W\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0*\5\13\30\214\10\21$\337\12\25,\377\16\34:" +\ + "\377\16\349\377\16\349\377\16\35:\377\17\35;\377\17\35;\377\17\36;\377" +\ + "\17\36;\377\17\36:\377\16\35:\377\16\349\377\16\348\377\15\338\377\15" +\ + "\33\67\377\11\24)\377\10\21#\333\5\13\30\210\0\0\0&\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\12\0\0\0M\3\10\23y\6\15\35\252\7\17 \302\7\17!\326\10\22&\346" +\ + "\11\22%\356\11\22%\356\10\22&\345\7\17 \325\7\17\37\300\6\15\34\247\3" +\ + "\10\22u\0\0\0H\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0" + + +# RGBA 128x128x4 +viewer_icon_128_raw = \ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Hy\262/H~\264oK}\264\204K}\265\220K\177" +\ + "\265\233K~\263\246L~\263\264K~\264\265K~\264\306H}\264\305H|\265\265" +\ + "_\207\257\264\216\233\243\246p\217\252\234E{\266\217I}\263\204H{\264" +\ + "mDy\262.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0H{\263\20I{\262ZI}\263\220I}\263\324K~\264\371" +\ + "L\200\265\377M\202\267\377O\204\270\377P\205\272\376Q\207\273\377R\211" +\ + "\274\376S\211\274\377Q\211\276\377]\215\272\377t\224\261\377\214\235" +\ + "\250\377\236\243\241\377\245\245\237\377\241\243\240\377\244\245\237" +\ + "\376\226\237\243\377\200\226\251\376~\225\250\377{\223\251\377v\221\252" +\ + "\377y\221\251\371z\222\250\326\205\227\245\231\213\231\244s\217\232\242" +\ + "\42\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0>i\245\5H|\262`H|\262\232J}\263\377K\177\264\377N\202\267\377O" +\ + "\205\272\376R\207\274\377T\212\276\377V\215\301\377W\216\302\377X\220" +\ + "\304\377Y\221\306\377Z\222\306\377[\224\311\377Z\225\311\377{\234\271" +\ + "\377\252\251\243\377\247\251\245\377\245\251\245\377\246\250\245\377" +\ + "\246\251\245\377\246\250\245\377\245\250\244\377\245\247\244\377\244" +\ + "\247\243\377\243\246\244\377\243\245\242\377\242\245\241\377\241\245" +\ + "\241\377\241\244\241\377\241\244\240\377\241\243\237\377\237\242\237" +\ + "\377\220\233\242\377\204\226\243\236d\207\254a\0\16\335\5\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0H{\262}I{\262\306J~\264\377M\200\266\377O\205\272\376Q\210" +\ + "\274\377U\213\277\376W\216\301\377Y\221\304\377Z\224\310\377[\225\312" +\ + "\377]\227\314\377^\231\316\377`\232\316\377`\233\317\377a\233\316\377" +\ + "_\231\313\377n\232\276\377\260\260\253\377\254\257\256\377\255\260\256" +\ + "\377\255\260\256\377\255\260\256\377\255\257\255\377\254\257\255\377" +\ + "\254\256\254\377\253\256\253\377\253\255\252\377\252\254\252\377\251" +\ + "\253\251\377\250\253\247\377\246\251\246\377\245\250\245\377\244\247" +\ + "\244\377\243\246\243\377\243\245\242\376\241\245\241\377\242\244\240" +\ + "\376\242\244\237\377\223\235\241\377\205\225\244\306f\210\253\177\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Gx\260MHz\261\310I|\262" +\ + "\377L\200\266\377O\205\272\377R\210\275\377U\213\300\377W\217\304\377" +\ + "Z\222\306\377\134\225\312\377]\227\314\377_\232\317\377a\234\320\377" +\ + "c\237\322\377d\241\323\377e\242\325\377e\244\327\377f\245\327\377d\241" +\ + "\322\377]\227\302\377g\215\253\377\271\272\266\377\266\271\266\377\266" +\ + "\271\267\377\266\271\267\377\266\271\267\377\267\271\267\377\266\271" +\ + "\266\377\265\270\265\377\265\267\265\377\264\266\264\377\263\265\263" +\ + "\377\261\264\261\377\260\263\261\377\257\261\257\377\255\260\255\377" +\ + "\253\256\253\377\252\254\252\377\250\253\250\377\247\251\246\377\244" +\ + "\247\244\377\243\245\242\377\242\244\241\377\241\244\240\377\242\243" +\ + "\237\377\224\235\241\377\207\226\244\315\177\223\244Y\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0At\263\6Fx\260" +\ + "wHy\260\377K~\264\377N\202\270\376Q\207\274\377T\213\300\377W\216\304" +\ + "\377Y\222\307\377Z\225\311\377Z\226\314\377]\230\315\377_\233\316\377" +\ + "b\235\317\377d\240\322\377d\243\327\377h\247\331\377i\251\332\377j\252" +\ + "\334\377k\255\336\377k\253\334\377h\246\325\377]\225\277\377Il\210\377" +\ + "\304\305\301\377\300\303\300\377\301\304\300\377\301\304\300\377\301" +\ + "\303\300\377\301\303\300\377\300\302\300\377\300\302\300\377\277\300" +\ + "\277\377\275\300\276\377\275\276\275\377\274\275\274\377\272\274\272" +\ + "\377\270\272\270\377\267\271\267\377\264\267\264\377\263\265\263\377" +\ + "\260\262\260\377\256\261\256\377\255\260\254\377\252\255\252\377\250" +\ + "\252\250\377\246\250\246\377\243\246\243\377\243\244\242\377\240\243" +\ + "\237\377\240\243\236\377\231\237\237\377\234\240\236\230\232\236\240" +\ + "7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Cq\261\12Ew\256\237Hz\260\377K~\264\377" +\ + "N\204\272\377R\211\275\376V\215\302\377X\221\307\377[\225\311\377\134" +\ + "\230\314\377\134\230\314\377\201\243\275\377\250\260\263\377\256\264" +\ + "\263\377\262\267\266\377\266\272\271\377\272\274\272\377\271\276\277" +\ + "\377y\256\326\377m\256\336\377p\260\340\377q\262\342\377r\262\342\377" +\ + "m\254\333\377a\231\301\377Bg\205\377\270\271\267\377\314\315\315\377" +\ + "\314\315\315\377\315\315\315\377\314\316\314\377\312\315\313\377\313" +\ + "\315\312\377\312\314\312\377\311\313\312\377\310\312\310\377\306\311" +\ + "\307\377\306\310\306\377\304\307\304\377\303\305\303\377\301\303\301" +\ + "\377\276\301\277\377\275\277\275\377\273\275\272\377\267\272\270\377" +\ + "\265\270\266\377\262\264\262\377\260\262\257\377\255\257\255\377\252" +\ + "\255\252\377\247\252\250\377\246\250\245\377\243\245\242\376\241\243" +\ + "\240\377\240\242\240\376\236\241\236\377\235\241\236\335\237\241\237" +\ + "^\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "Dr\260\6Ev\256\243Fy\257\377K~\264\376N\203\271\377R\211\275\377V\216" +\ + "\302\377Y\222\310\377\134\226\313\377^\231\316\377a\233\317\377[\227" +\ + "\312\377\204\243\271\377\271\271\265\377\272\274\272\377\275\277\275" +\ + "\377\300\302\277\377\302\305\303\377\306\310\306\377\307\311\310\377" +\ + "\276\307\312\377i\252\332\377r\262\342\377t\266\346\377u\267\347\377" +\ + "r\263\342\377f\240\311\377Kx\230\377\223\226\231\377\325\327\325\377" +\ + "\325\327\325\377\324\327\325\377\325\327\325\377\324\326\325\377\324" +\ + "\325\324\377\323\324\324\377\323\324\323\377\322\324\322\377\321\322" +\ + "\321\377\317\322\320\377\317\320\317\377\317\320\317\377\271\272\271" +\ + "\377\307\311\307\377\307\311\310\377\304\307\305\377\302\304\302\377" +\ + "\277\301\277\377\274\277\274\377\271\273\272\377\266\270\266\377\263" +\ + "\265\263\377\260\261\257\377\254\257\254\377\251\254\251\377\247\251" +\ + "\246\377\244\246\243\377\242\244\241\377\237\243\237\377\237\242\237" +\ + "\377\237\242\236\352\240\241\236L\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0Cu\254zEw\256\377I|\263\376N\202\270\377R\210\275\377V\215\302" +\ + "\377Y\223\310\377\134\227\314\377_\233\320\377a\235\322\377b\236\320" +\ + "\377^\226\304\377\246\262\271\377\300\301\275\377\300\302\301\377\304" +\ + "\306\304\377\306\311\307\377\312\314\312\377\314\316\315\377\317\320" +\ + "\317\377\321\323\322\377\324\325\323\377\267\310\322\377o\260\336\377" +\ + "v\270\347\377x\271\351\377w\271\347\377n\253\326\377X\212\254\377\134" +\ + "jw\377\340\341\340\377\332\335\333\377\334\335\334\377\334\335\334\377" +\ + "\334\335\334\377\333\335\333\377\333\334\334\377\332\334\333\377\331" +\ + "\333\332\377\330\332\331\377\331\332\332\377\251\252\251\377qqp\377c" +\ + "dc\377\301\301\300\377\320\323\321\377\317\321\317\377\315\317\315\377" +\ + "\312\314\312\377\307\311\310\377\304\306\304\377\277\302\300\377\274" +\ + "\277\275\377\270\272\270\377\265\267\265\377\261\263\261\377\256\260" +\ + "\255\377\252\255\252\377\246\251\247\377\244\247\244\377\242\244\241" +\ + "\376\240\242\240\377\236\241\236\377\236\241\237\330\237\242\240-\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0Bt\255KCt\254\361Hy\257\377L\200\265\377Q\206\274\376U\214\302" +\ + "\377Y\221\307\377\134\225\313\377^\233\320\377b\236\324\377d\241\325" +\ + "\377d\241\323\377_\230\307\377\234\257\274\377\303\306\303\377\307\311" +\ + "\307\377\314\316\315\377\317\320\317\377\321\323\321\377\324\326\324" +\ + "\377\325\327\325\377\326\330\327\377\330\332\331\377\332\333\333\377" +\ + "\337\336\334\377q\252\323\377u\267\345\377y\274\352\377y\274\352\377" +\ + "s\264\340\377b\231\276\377Gcz\377\201\200\177\377\345\347\346\377\340" +\ + "\342\341\377\341\342\341\377\341\343\341\377\340\341\341\377\340\341" +\ + "\340\377\337\341\340\377\337\340\337\377\337\340\337\377\340\342\341" +\ + "\377`cg\377BN^\3774J]\377bfl\377\336\337\336\377\327\330\330\377\325" +\ + "\327\325\377\323\325\323\377\321\322\320\377\315\317\316\377\312\314" +\ + "\313\377\307\311\306\377\302\305\302\377\276\300\277\377\272\274\273" +\ + "\377\266\271\266\377\262\265\263\377\256\261\255\377\252\255\252\377" +\ + "\246\250\246\377\244\247\244\377\242\244\241\377\237\242\237\376\236" +\ + "\241\237\377\236\242\235\253\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0Cy\276\4Bs\253\300Ew\255\377J}\263\377O\204\272\376R" +\ + "\212\277\377W\217\306\377Z\224\312\377^\231\317\377a\236\323\377d\241" +\ + "\327\377g\245\331\377i\247\332\377f\243\322\377]\225\300\377Tv\221\377" +\ + "\215\215\213\377\215\216\215\377\201\202\202\377\207\210\207\377\215" +\ + "\215\215\377\217\221\220\377\250\252\250\377\343\344\344\377\341\343" +\ + "\341\377\336\337\336\377\313\314\313\377a\225\272\377s\263\337\377w\272" +\ + "\350\377v\272\350\377q\265\342\377b\234\303\377Bm\212\377\200\211\224" +\ + "\377\347\350\350\377\345\346\346\377\345\345\345\377\345\347\346\377" +\ + "\345\346\345\377\344\346\345\377\344\346\344\377\344\345\345\377\351" +\ + "\352\352\377\205\206\205\3778Un\377Is\220\377Is\217\377@Sg\377\220\222" +\ + "\220\377\343\343\343\377\334\335\335\377\332\334\333\377\330\332\330" +\ + "\377\325\327\326\377\323\325\323\377\320\321\320\377\315\316\315\377" +\ + "\310\313\311\377\303\306\304\377\277\302\300\377\273\275\273\377\267" +\ + "\271\267\377\262\264\263\377\256\261\256\377\252\254\251\377\246\251" +\ + "\246\377\243\246\243\377\241\244\241\377\237\242\237\376\237\242\235" +\ + "\377\236\241\235N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Bq\253PCs\252\377Gy\260" +\ + "\376L\177\266\377P\206\274\377U\214\302\377Y\223\310\377]\227\315\377" +\ + "`\234\322\377c\240\325\377e\244\331\377i\250\334\377k\252\335\377k\252" +\ + "\334\377f\243\322\377]\222\270\377\231\243\253\377\275\277\275\377\266" +\ + "\270\267\377\267\270\270\377\262\263\263\377\214\217\221\377Z_g\377Q" +\ + "TZ\377rsr\377lll\377ikj\377aab\377U\205\247\377f\244\315\377\236\307" +\ + "\342\377\275\326\346\377\307\332\345\377\337\344\346\377\347\351\350" +\ + "\377\351\352\351\377\350\352\351\377\350\351\350\377\350\351\351\377" +\ + "\350\351\351\377\350\351\350\377\350\350\347\377\346\347\347\377\346" +\ + "\347\346\377\322\323\322\377ESb\377S\202\243\377a\230\274\377`\226\272" +\ + "\377O~\235\377IS_\377\250\252\251\377\337\340\340\377\342\343\343\377" +\ + "\345\346\345\377\341\342\341\377\336\337\336\377\333\334\333\377\325" +\ + "\326\325\377\321\323\321\377\315\317\316\377\311\313\311\377\304\306" +\ + "\304\377\277\301\277\377\272\274\273\377\266\271\267\377\261\264\261" +\ + "\377\255\257\254\377\251\253\251\377\245\250\245\377\242\245\241\377" +\ + "\240\242\240\377\236\241\236\377\236\241\237\272\243\244\236\4\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0Aq\252\261Dt\253\377I{\262\377N\202\270\376R\210\277\377V\216\304\377" +\ + "[\225\313\377^\231\317\377a\236\324\377e\242\327\377g\245\333\377j\252" +\ + "\335\377l\255\337\377m\256\337\377k\253\333\377b\236\313\377\250\274" +\ + "\311\377\327\330\327\377\331\332\331\377\333\334\333\377\335\336\336" +\ + "\377\336\340\337\377\343\345\343\377\345\347\346\377\274\303\306\377" +\ + "\226\233\240\377GVg\377\77Si\377>^z\377X\210\246\377\247\277\317\377" +\ + "\356\355\353\377\352\352\352\377\352\353\352\377\353\353\353\377\352" +\ + "\353\353\377\351\354\353\377\352\354\352\377\352\353\353\377\353\354" +\ + "\353\377\352\353\353\377\352\353\353\377\352\353\352\377\352\353\353" +\ + "\377\354\356\356\377\243\244\245\377\134\200\230\377d\236\305\377j\251" +\ + "\325\377j\247\322\377a\230\275\377Kv\224\377VY`\377kkk\377mom\377|}|" +\ + "\377\206\207\207\377\211\212\211\377\210\211\211\377\323\325\324\377" +\ + "\327\331\330\377\324\326\325\377\321\322\322\377\315\317\316\377\311" +\ + "\313\311\377\302\305\303\377\277\301\277\377\271\273\271\377\265\267" +\ + "\265\377\260\262\260\377\253\256\254\377\247\252\247\377\243\247\244" +\ + "\377\241\243\241\377\237\242\237\376\237\242\237\364\236\240\237;\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@p\253\31Ap\250\357D" +\ + "u\254\376J|\264\377O\204\272\377S\212\301\377X\220\307\377[\226\314\377" +\ + "`\233\321\377b\240\325\377e\244\330\377h\247\333\377k\253\336\377l\255" +\ + "\340\377n\257\341\377n\260\341\377l\253\332\377f\236\310\377\334\333" +\ + "\332\377\333\335\334\377\335\337\336\377\337\340\340\377\340\341\340" +\ + "\377\341\342\341\377\342\343\343\377\344\345\344\377\345\346\345\377" +\ + "\350\350\350\377\322\330\332\377p\215\240\377\273\311\320\377\353\353" +\ + "\353\377\354\355\354\377\353\355\354\377\354\355\355\377\355\356\354" +\ + "\377\354\355\355\377\355\356\354\377\355\355\356\377\354\356\355\377" +\ + "\354\356\355\377\354\355\355\377\354\355\355\377\354\355\355\377\354" +\ + "\355\355\377\354\355\354\377\353\354\354\377\357\360\360\377\360\360" +\ + "\357\377\354\354\354\377\332\343\351\377\276\325\344\377y\255\320\377" +\ + "^\225\271\377My\231\377@Xq\377\77Tj\377DRd\377HS`\377IR_\377KS^\377i" +\ + "ij\377\314\316\315\377\333\335\334\377\327\330\330\377\323\325\323\377" +\ + "\317\321\320\377\313\315\314\377\307\310\307\377\301\303\301\377\274" +\ + "\276\274\377\267\271\267\377\262\264\262\377\255\260\256\377\251\254" +\ + "\251\377\245\250\245\377\242\244\242\377\237\243\237\376\237\241\236" +\ + "\377\237\241\237y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ao\251LAp\247\377" +\ + "Ev\255\376J~\265\377P\205\274\377U\214\302\377X\221\310\377\134\227\316" +\ + "\377a\234\323\377c\241\327\377f\244\331\377h\250\334\377k\253\337\377" +\ + "m\255\340\377o\257\342\377o\261\342\377o\257\340\377k\251\331\377\215" +\ + "\264\321\377\340\337\336\377\336\340\337\377\340\341\340\377\341\342" +\ + "\342\377\341\343\342\377\344\345\344\377\345\346\346\377\346\347\346" +\ + "\377\347\350\350\377\351\351\351\377\352\353\353\377\357\357\355\377" +\ + "\354\354\355\377\354\355\354\377\355\356\355\377\355\356\356\377\356" +\ + "\356\356\377\355\356\356\377\356\357\357\377\356\357\357\377\357\360" +\ + "\357\377\356\356\356\377\356\356\356\377\356\356\356\377\356\356\356" +\ + "\377\356\356\357\377\356\357\356\377\355\356\356\377\355\356\356\377" +\ + "\355\357\357\377\356\356\357\377\356\357\357\377\355\357\356\377\356" +\ + "\356\356\377\357\357\356\377\231\276\325\377`\230\277\377a\227\273\377" +\ + "_\223\266\377\134\220\263\377X\213\256\377S\203\245\377It\222\377;Qh" +\ + "\377bce\377\302\304\303\377\336\340\336\377\331\333\332\377\326\330\326" +\ + "\377\323\323\323\377\316\320\316\377\311\312\311\377\304\307\304\377" +\ + "\276\301\276\377\271\274\271\377\265\266\265\377\260\262\260\377\252" +\ + "\255\253\377\247\251\246\377\243\246\243\377\241\243\241\377\236\241" +\ + "\236\377\236\241\236\274\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\77m\246w@o\247\377Fw\257" +\ + "\377K\177\265\376P\206\274\377V\215\303\377Y\222\312\377^\231\316\377" +\ + "a\235\323\377d\242\330\377f\245\332\377h\250\334\377k\253\340\377l\255" +\ + "\340\377m\256\340\377n\257\340\377k\255\336\377l\254\334\377i\247\324" +\ + "\377x\237\275\377\343\343\341\377\341\342\342\377\342\343\343\377\343" +\ + "\344\344\377\344\346\345\377\345\347\346\377\347\347\347\377\350\351" +\ + "\350\377\351\352\352\377\352\354\353\377\353\355\354\377\355\355\355" +\ + "\377\355\356\355\377\356\357\357\377\357\357\357\377\357\360\360\377" +\ + "\360\361\360\377\360\360\360\377\357\361\361\377\360\360\360\377\360" +\ + "\360\361\377\360\361\360\377\357\360\357\377\357\360\357\377\360\360" +\ + "\360\377\360\361\360\377\357\360\360\377\357\357\356\377\357\357\357" +\ + "\377\356\360\357\377\356\357\357\377\356\360\357\377\356\357\357\377" +\ + "\356\360\357\377\356\357\357\377\363\361\360\377\274\322\342\377h\245" +\ + "\316\377l\252\322\377n\253\325\377l\251\324\377j\245\317\377b\232\301" +\ + "\377V\207\252\377l\246\253@o\246" +\ + "\377Fx\257\377L\177\266\377P\206\275\377U\215\303\377Z\223\312\377]\230" +\ + "\317\377a\235\324\377d\242\330\377f\245\333\377h\250\335\377k\253\340" +\ + "\377k\253\336\377h\252\334\377l\252\332\377\216\271\331\377\275\317\333" +\ + "\377\334\336\336\377\340\340\337\377\326\331\332\377\335\337\336\377" +\ + "\343\344\343\377\343\344\344\377\344\346\345\377\346\347\346\377\347" +\ + "\350\347\377\351\351\351\377\352\353\352\377\352\354\354\377\353\355" +\ + "\353\377\355\355\355\377\356\357\357\377\357\357\357\377\357\360\357" +\ + "\377\360\361\361\377\360\361\361\377\360\361\361\377\361\362\361\377" +\ + "\361\361\361\377\361\362\362\377\361\362\362\377\361\362\362\377\361" +\ + "\362\362\377\361\361\362\377\361\362\361\377\361\362\361\377\360\361" +\ + "\361\377\360\361\360\377\361\361\361\377\360\361\361\377\360\360\360" +\ + "\377\357\360\360\377\357\361\360\377\357\360\360\377\357\360\357\377" +\ + "\357\357\357\377\360\360\357\377\334\345\353\377u\261\332\377s\263\337" +\ + "\377t\266\343\377s\264\342\377p\257\334\377h\243\314\377Y\215\261\377" +\ + ">`|\377OTZ\377\316\317\317\377\336\340\337\377\333\334\334\377\330\332" +\ + "\330\377\324\326\325\377\320\322\321\377\314\316\315\377\310\311\310" +\ + "\377\301\304\301\377\275\277\276\377\267\272\270\377\262\265\263\377" +\ + "\255\260\255\377\251\254\250\377\244\247\244\377\242\244\241\377\237" +\ + "\241\236\376\236\241\235\371\233\240\234\25\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0=l\244\277@o\246\377Fw\256\377L\177\265\377P\206" +\ + "\276\377U\215\304\377Y\223\312\377]\230\317\377`\235\324\377c\241\331" +\ + "\377d\245\334\377d\247\336\377e\250\336\377f\245\327\377\211\263\324" +\ + "\377\261\307\325\377\332\333\331\377\336\336\334\377\335\336\336\377" +\ + "\337\337\337\377\340\342\341\377\342\343\342\377\342\344\343\377\343" +\ + "\344\344\377\345\347\346\377\346\347\346\377\347\351\347\377\351\352" +\ + "\352\377\352\352\353\377\352\354\354\377\354\355\354\377\355\356\356" +\ + "\377\356\357\357\377\357\361\357\377\360\361\361\377\361\362\362\377" +\ + "\362\363\363\377\362\363\363\377\363\363\363\377\363\364\363\377\363" +\ + "\364\364\377\364\364\364\377\363\364\364\377\363\364\363\377\362\364" +\ + "\363\377\363\364\363\377\363\363\364\377\364\364\364\377\362\364\362" +\ + "\377\362\362\363\377\362\362\362\377\346\347\347\377\352\353\352\377" +\ + "\362\362\362\377\360\360\361\377\360\361\361\377\360\361\360\377\357" +\ + "\360\360\377\357\360\360\377\357\357\357\377\351\355\356\377\211\276" +\ + "\340\377q\263\341\377u\266\344\377u\267\345\377r\262\337\377i\244\317" +\ + "\377X\212\256\3777Yv\377\350\350\346\377\343\344\343\377\337\340\337" +\ + "\377\334\335\334\377\330\332\330\377\325\326\325\377\321\322\322\377" +\ + "\314\317\315\377\310\312\311\377\303\305\304\377\276\277\276\377\271" +\ + "\274\270\377\263\265\263\377\257\261\256\377\251\254\251\377\245\250" +\ + "\245\377\242\244\242\376\237\241\237\376\235\240\234\377\236\241\236" +\ + "%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0=k\244\324@m\245\377Bv\256\377P\201\264" +\ + "\377Z\212\272\377e\222\275\377s\234\301\377\200\243\303\377\212\252\306" +\ + "\377\223\260\311\377\235\267\313\377\252\277\315\377\266\305\317\377" +\ + "\275\310\317\377\321\323\322\377\331\331\326\377\331\333\331\377\332" +\ + "\334\333\377\334\335\334\377\336\340\340\377\340\342\341\377\342\342" +\ + "\342\377\343\344\343\377\343\345\344\377\345\346\346\377\345\346\347" +\ + "\377\347\351\350\377\351\351\351\377\351\353\352\377\353\354\353\377" +\ + "\354\355\355\377\356\357\357\377\357\360\360\377\361\361\361\377\362" +\ + "\363\363\377\362\363\363\377\364\364\364\377\364\365\364\377\365\366" +\ + "\365\377\365\366\366\377\366\366\366\377\366\366\366\377\366\366\366" +\ + "\377\366\367\366\377\365\366\366\377\365\366\366\377\365\366\366\377" +\ + "\365\365\365\377\364\366\365\377\364\365\365\377\364\364\364\377\365" +\ + "\365\365\377\261\262\263\377ijk\377\225\226\227\377\366\366\367\377\361" +\ + "\362\362\377\360\361\361\377\360\361\360\377\360\360\360\377\357\360" +\ + "\360\377\357\360\360\377\363\362\357\377\266\324\346\377o\262\340\377" +\ + "u\266\344\377u\266\345\377q\262\340\377g\240\312\377Q\201\243\377elr" +\ + "\377\237\240\237\377\313\314\313\377\341\342\341\377\334\335\334\377" +\ + "\330\331\330\377\325\326\325\377\321\323\321\377\315\317\315\377\311" +\ + "\313\312\377\304\307\304\377\277\301\300\377\272\274\272\377\264\267" +\ + "\265\377\257\261\260\377\252\254\252\377\245\250\246\377\242\245\242" +\ + "\377\237\241\236\376\235\240\235\377\233\240\234+\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Pb\377\325\326\324\377\361\363\362\377" +\ + "\362\362\361\377\361\361\361\377\361\361\360\377\357\361\360\377\357" +\ + "\360\361\377\357\360\357\377\360\361\360\377\341\351\354\377\201\272" +\ + "\340\377r\265\343\377t\265\344\377p\256\334\377c\233\304\377B]w\377H" +\ + "Q_\377TVZ\377\314\315\315\377\336\340\336\377\333\335\334\377\330\332" +\ + "\330\377\325\326\325\377\321\323\321\377\315\317\315\377\311\313\312" +\ + "\377\304\307\305\377\300\302\277\377\273\275\272\377\265\267\265\377" +\ + "\257\262\260\377\253\255\253\377\246\250\245\377\242\245\241\377\236" +\ + "\241\236\376\234\240\234\377\233\236\234\36\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\66f\241\277Sv\236\376\223" +\ + "\232\233\377\240\241\235\377\241\244\242\377\247\252\247\377\254\256" +\ + "\254\377\261\263\262\377\266\272\267\377\274\276\274\377\277\303\301" +\ + "\377\307\311\307\377\312\314\312\377\316\320\317\377\321\323\322\377" +\ + "\325\327\326\377\325\327\326\377\331\332\331\377\334\335\334\377\335" +\ + "\335\335\377\337\341\337\377\340\341\340\377\341\343\342\377\342\343" +\ + "\343\377\343\344\344\377\345\346\345\377\346\350\347\377\347\350\350" +\ + "\377\352\352\352\377\353\354\354\377\356\357\356\377\357\357\357\377" +\ + "\360\360\360\377\361\362\362\377\363\363\364\377\365\364\364\377\365" +\ + "\366\366\377\366\367\367\377\367\367\367\377\370\371\371\377\371\371" +\ + "\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371" +\ + "\377\372\372\372\377\371\371\371\377\371\371\371\377\370\370\370\377" +\ + "\370\370\370\377\370\371\371\377\367\370\370\377\366\367\367\377\366" +\ + "\366\366\377\263\276\304\377Cj\201\377O{\225\377qy\202\377\366\366\366" +\ + "\377\361\362\362\377\361\362\362\377\361\362\362\377\361\361\361\377" +\ + "\360\361\360\377\357\361\360\377\357\360\357\377\357\357\357\377\363" +\ + "\362\360\377\261\320\345\377p\262\340\377s\264\342\377n\255\332\377b" +\ + "\232\303\377P~\237\377/Pk\377\246\253\256\377\340\341\340\377\335\336" +\ + "\335\377\333\334\333\377\327\331\331\377\324\326\324\377\320\323\321" +\ + "\377\315\317\316\377\312\313\312\377\305\307\305\377\301\303\301\377" +\ + "\273\275\274\377\266\270\266\377\260\262\260\377\253\256\253\377\245" +\ + "\250\246\377\241\245\241\377\236\241\236\376\234\237\233\377\234\241" +\ + "\233#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Su\237\253\204" +\ + "\217\231\377\236\236\230\377\235\240\234\377\241\244\241\377\246\251" +\ + "\247\377\253\256\254\377\261\263\261\377\266\271\267\377\274\276\274" +\ + "\377\277\302\300\377\306\310\307\377\312\314\312\377\315\317\315\377" +\ + "\321\323\321\377\324\325\324\377\325\327\326\377\330\331\331\377\332" +\ + "\334\333\377\334\337\335\377\336\337\336\377\337\340\337\377\340\342" +\ + "\341\377\342\342\342\377\343\344\342\377\344\345\345\377\346\347\346" +\ + "\377\347\350\350\377\352\353\352\377\353\354\354\377\355\356\356\377" +\ + "\357\357\357\377\360\361\361\377\362\363\363\377\365\365\365\377\365" +\ + "\366\366\377\367\370\367\377\371\371\371\377\371\371\371\377\372\372" +\ + "\372\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373\373" +\ + "\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373\373\377" +\ + "\373\373\373\377\372\373\373\377\372\372\372\377\371\371\371\377\372" +\ + "\373\373\377\374\374\374\377\377\377\377\377m~\213\377Z\213\246\377d" +\ + "\233\271\377X\204\242\377\343\343\342\377\362\363\363\377\361\363\362" +\ + "\377\361\362\362\377\360\362\361\377\361\361\361\377\360\361\360\377" +\ + "\360\360\360\377\357\361\357\377\357\360\360\377\361\360\357\377\315" +\ + "\336\351\377p\262\341\377s\264\342\377l\251\326\377]\221\270\377Ms\217" +\ + "\377}\207\222\377\344\345\344\377\337\341\340\377\334\335\335\377\332" +\ + "\334\332\377\327\331\330\377\324\325\324\377\321\322\321\377\315\320" +\ + "\316\377\312\313\313\377\306\310\306\377\301\303\301\377\273\276\273" +\ + "\377\267\272\267\377\261\263\261\377\253\256\254\377\246\250\246\377" +\ + "\241\244\241\377\235\237\235\376\234\236\233\365\231\233\231\20\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\211\221\226\243\227\232\226\377\230\233" +\ + "\230\376\234\236\234\377\240\243\240\377\245\247\245\377\253\255\253" +\ + "\377\257\262\260\377\266\270\266\377\273\275\273\377\277\301\300\377" +\ + "\305\307\305\377\311\313\312\377\313\315\314\377\320\322\320\377\322" +\ + "\324\323\377\323\325\324\377\326\327\327\377\331\332\331\377\332\333" +\ + "\333\377\335\336\335\377\336\337\337\377\336\340\337\377\340\341\341" +\ + "\377\341\343\342\377\343\345\344\377\344\346\345\377\347\347\350\377" +\ + "\350\351\351\377\353\354\353\377\354\356\354\377\356\357\357\377\360" +\ + "\361\361\377\363\364\363\377\365\365\365\377\367\367\367\377\370\371" +\ + "\370\377\371\371\371\377\372\372\372\377\373\373\373\377\374\373\374" +\ + "\377\374\374\374\377\374\375\375\377\375\374\375\377\375\375\375\377" +\ + "\374\375\374\377\374\375\375\377\374\374\374\377\374\373\373\377\375" +\ + "\374\375\377\374\374\374\377\374\374\374\377\367\367\367\377\257\257" +\ + "\256\377\224\224\224\377\203\203\204\377Nr\212\377k\245\306\377t\262" +\ + "\326\377m\257\325\377\321\325\330\377\364\364\364\377\363\363\363\377" +\ + "\361\362\362\377\361\362\362\377\360\361\362\377\360\361\361\377\360" +\ + "\360\361\377\360\360\360\377\357\361\360\377\360\360\357\377\323\336" +\ + "\345\377m\256\334\377r\264\341\377m\254\331\377Y\217\266\377\341\344" +\ + "\344\377\351\352\351\377\345\346\345\377\341\342\342\377\337\340\337" +\ + "\377\333\335\334\377\331\333\331\377\327\330\327\377\323\325\324\377" +\ + "\321\323\322\377\316\317\317\377\313\315\314\377\307\311\310\377\301" +\ + "\304\302\377\274\276\275\377\267\271\270\377\262\264\262\377\254\257" +\ + "\254\377\246\250\246\377\240\244\240\377\234\237\234\376\231\234\231" +\ + "\336\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222\226\224\261\225\231\225\377\227" +\ + "\232\227\377\232\234\232\377\237\242\236\377\243\247\244\377\251\253" +\ + "\251\377\256\261\257\377\265\267\265\377\271\274\271\377\277\301\277" +\ + "\377\303\305\303\377\310\312\310\377\312\315\313\377\316\320\317\377" +\ + "\321\323\322\377\323\324\323\377\326\327\326\377\330\332\331\377\332" +\ + "\333\332\377\333\334\334\377\334\335\334\377\335\337\336\377\337\340" +\ + "\340\377\340\341\341\377\342\342\342\377\343\345\344\377\346\347\347" +\ + "\377\350\350\351\377\351\352\351\377\354\355\355\377\356\357\357\377" +\ + "\360\361\361\377\363\364\364\377\365\366\365\377\367\370\367\377\370" +\ + "\371\371\377\372\372\372\377\373\374\373\377\374\374\374\377\375\375" +\ + "\375\377\375\375\375\377\375\375\375\377\375\375\375\377\375\375\375" +\ + "\377\375\375\375\377\375\375\375\377\375\375\375\377\375\375\375\377" +\ + "\375\375\375\377\374\375\375\377\377\377\377\377\316\316\315\377ijn\377" +\ + "KZk\377Jbw\377Ll\207\377o\252\314\377{\276\342\377~\301\350\377t\267" +\ + "\336\377\307\322\331\377\364\364\364\377\363\363\363\377\362\364\363" +\ + "\377\362\362\362\377\361\361\361\377\360\361\361\377\360\361\361\377" +\ + "\360\361\361\377\365\365\365\377\302\303\302\377Xcn\377i\246\320\377" +\ + "o\257\333\377l\250\324\377T\210\255\377\345\345\345\377\350\351\350\377" +\ + "\346\346\346\377\343\344\344\377\341\342\342\377\336\337\336\377\333" +\ + "\335\334\377\331\332\331\377\327\330\327\377\324\326\325\377\321\323" +\ + "\322\377\317\321\317\377\314\316\315\377\310\312\310\377\304\306\304" +\ + "\377\276\300\277\377\271\272\270\377\262\265\262\377\254\256\254\377" +\ + "\245\250\246\377\240\242\237\376\234\236\233\376\230\235\231\302\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\222\226\222\222\222\226\223\377\225\230\225\377\231\233\230" +\ + "\377\235\240\235\377\242\245\242\377\247\252\247\377\255\260\255\377" +\ + "\263\266\264\377\272\273\271\377\275\277\275\377\302\303\303\377\307" +\ + "\311\307\377\311\314\312\377\315\317\316\377\320\321\320\377\322\323" +\ + "\322\377\324\326\324\377\326\330\327\377\330\331\330\377\331\332\332" +\ + "\377\333\334\334\377\334\336\335\377\336\337\336\377\336\340\340\377" +\ + "\341\342\341\377\342\343\343\377\345\346\345\377\347\350\350\377\350" +\ + "\351\351\377\354\355\354\377\356\356\357\377\360\361\360\377\363\364" +\ + "\364\377\366\366\366\377\367\367\367\377\371\371\371\377\373\373\373" +\ + "\377\373\374\374\377\375\375\375\377\375\375\375\377\375\375\375\377" +\ + "\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377" +\ + "\376\377\377\377\376\377\377\377\377\377\377\376\376\376\377\376\376" +\ + "\376\377\377\377\377\377\263\262\262\377NWe\377Hn\207\377`\224\256\377" +\ + "k\244\302\377u\263\325\377~\302\346\377\202\311\357\377\177\304\351\377" +\ + "p\265\334\377\304\323\334\377\365\365\365\377\364\365\364\377\363\362" +\ + "\363\377\361\363\362\377\362\362\362\377\361\361\361\377\361\362\362" +\ + "\377\352\353\352\377\213\214\214\377HQ_\377P}\235\377j\245\316\377p\257" +\ + "\333\377j\247\321\377P\203\247\377\305\307\311\377\351\352\352\377\347" +\ + "\350\350\377\345\346\345\377\343\344\343\377\340\341\341\377\335\337" +\ + "\336\377\333\334\334\377\331\332\331\377\330\330\330\377\325\327\326" +\ + "\377\323\324\324\377\321\322\321\377\316\317\316\377\312\314\312\377" +\ + "\306\307\306\377\277\302\300\377\272\274\272\377\263\265\264\377\253" +\ + "\256\253\377\244\247\244\377\236\241\236\377\231\235\231\377\231\235" +\ + "\230\203\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\221\224\220M\222\225\221\377\223\226\222\377\227\232\226\377\233" +\ + "\235\233\377\240\243\240\377\246\250\246\377\254\256\253\377\262\264" +\ + "\262\377\266\271\267\377\273\275\273\377\301\303\301\377\306\310\306" +\ + "\377\310\312\311\377\313\315\314\377\316\317\317\377\320\322\321\377" +\ + "\323\324\323\377\326\326\326\377\326\330\326\377\330\331\331\377\332" +\ + "\333\332\377\332\335\333\377\334\335\335\377\335\337\336\377\340\340" +\ + "\337\377\341\343\342\377\344\345\344\377\346\346\346\377\350\350\350" +\ + "\377\353\353\353\377\355\355\355\377\360\360\360\377\362\363\363\377" +\ + "\365\366\365\377\367\367\367\377\372\372\372\377\373\373\373\377\374" +\ + "\374\374\377\375\375\375\377\375\375\375\377\376\376\376\377\376\376" +\ + "\376\377\377\377\377\377\376\376\376\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377" +\ + "\377\377\377\377\240\237\240\377HZl\377Y\213\244\377l\247\305\377x\270" +\ + "\333\377\177\302\346\377\202\310\354\377\204\313\361\377~\306\354\377" +\ + "\243\321\353\377\325\346\357\377\370\370\370\377\365\365\365\377\364" +\ + "\366\365\377\363\363\363\377\363\362\363\377\361\362\362\377\364\365" +\ + "\365\377\277\300\277\377adh\377@Yq\377W\211\251\377^\223\266\377b\232" +\ + "\300\377s\263\340\377m\253\326\377\134\221\267\377KUa\377\304\305\303" +\ + "\377\351\352\351\377\346\347\347\377\345\345\345\377\342\343\343\377" +\ + "\340\341\340\377\335\337\336\377\334\335\334\377\331\333\332\377\330" +\ + "\331\331\377\326\330\327\377\325\326\325\377\323\324\323\377\317\321" +\ + "\320\377\314\315\315\377\310\312\310\377\302\304\302\377\302\304\303" +\ + "\377\271\274\271\377\261\263\261\377\251\254\251\377\243\246\242\377" +\ + "\227\232\225\377\235\237\233:\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\221\221\223\16\221\223\217\377\222\225\221\377\224\230\224\377" +\ + "\230\234\230\377\236\240\235\377\243\246\243\377\251\253\251\377\260" +\ + "\262\260\377\265\270\265\377\272\274\272\377\277\301\300\377\303\306" +\ + "\304\377\307\311\307\377\312\314\313\377\315\317\316\377\317\321\320" +\ + "\377\322\323\322\377\325\326\326\377\326\327\326\377\326\330\327\377" +\ + "\330\333\331\377\332\334\332\377\333\334\333\377\334\336\335\377\337" +\ + "\337\336\377\340\342\341\377\342\343\342\377\344\345\344\377\346\347" +\ + "\347\377\352\353\352\377\354\355\355\377\356\357\357\377\362\362\362" +\ + "\377\364\365\365\377\366\367\367\377\371\371\371\377\373\373\373\377" +\ + "\374\374\374\377\375\375\375\377\376\376\376\377\376\376\376\377\377" +\ + "\377\377\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376" +\ + "\377\374\374\374\377\213\214\216\377F_t\377b\227\260\377t\261\321\377" +\ + "\177\304\345\377\205\314\360\377\207\317\364\377\206\316\363\377\203" +\ + "\312\357\377\251\325\354\377\377\375\373\377\371\370\371\377\367\367" +\ + "\367\377\366\366\366\377\366\366\366\377\363\363\364\377\363\363\363" +\ + "\377\361\361\361\377\207\210\212\377DQ_\377)@Q\377\27R\3770F`\3771On\3775Xz\377:`\206" +\ + "\377Al\225\377Cp\231\377Bn\233\377@l\231\377f\210\377Ix\237\377O" +\ + "\200\252\377P\202\260\377Q\204\263\377P\204\266\377Q\206\270\377N\201" +\ + "\265\377K~\262\377Hy\255\377Cq\245\377>j\236\3779c\226\3774[\216\375" +\ + "2Z\220\276\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\213\217\213\265\214\217\214\376\217\222\216" +\ + "\376\223\226\222\377\230\234\231\377\240\242\237\377\246\250\246\377" +\ + "\254\257\254\377\262\265\262\377\270\272\270\377\274\277\275\377\302" +\ + "\304\302\377\307\311\307\377\313\315\313\377\315\317\315\377\321\322" +\ + "\322\377\323\325\324\377\325\327\325\377\327\331\327\377\330\332\331" +\ + "\377\332\334\333\377\333\334\333\377\334\336\334\377\334\336\335\377" +\ + "\336\337\336\377\337\340\337\377\340\341\340\377\341\343\342\377\343" +\ + "\344\343\377\347\350\347\377\350\351\351\377\354\354\353\377\356\357" +\ + "\357\377\362\362\362\377\365\365\365\377\370\370\370\377\372\372\372" +\ + "\377\373\374\374\377\375\375\375\377\376\376\376\377\376\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\376\376\376\377\377\377\377\377\377\377\377" +\ + "\377\362\367\372\377\232\321\353\377\204\315\357\377\211\322\365\377" +\ + "\212\324\367\377\213\325\372\377\210\322\365\377\202\312\355\377Rs\210" +\ + "\377jji\3772!!\3776\0\0\377k\23\15\377r\16\10\3779\0\0\377\1\0\27\377" +\ + "\0\20}\377\0\3\237\377\0\0\260\377\0\0\257\377\0\17\264\377\0L\267\377" +\ + "\0\221\311\377\0\324\335\377\0\377\377\377\0\376\376\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\376\377\377\0\377\377\377\0\314\341\377" +\ + "\5.8\377``e\377\231\231\230\377\315\316\315\377\334\334\334\377\335\335" +\ + "\334\377vz~\377;b\204\377N~\247\377V\214\274\377Y\221\303\377Y\222\306" +\ + "\377Y\221\307\377X\220\306\377U\216\304\377S\211\300\377Q\207\274\377" +\ + "L\200\266\377Hz\257\377Cr\247\377=j\237\3778b\225\3772X\214\3773^\230" +\ + "N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\211\215\211A\212\216\213\377\215\220\214\377\220\223\220\377\226\231" +\ + "\226\377\234\237\234\377\242\245\243\377\252\255\252\377\260\263\260" +\ + "\377\266\270\266\377\273\276\274\377\300\303\301\377\305\310\306\377" +\ + "\320\322\320\377\322\325\323\377\327\331\330\377\331\333\331\377\333" +\ + "\334\333\377\333\334\333\377\335\336\335\377\335\337\336\377\334\335" +\ + "\334\377\335\335\335\377\336\337\335\377\336\337\337\377\336\340\337" +\ + "\377\340\341\340\377\341\342\341\377\342\343\343\377\345\346\345\377" +\ + "\347\350\347\377\352\353\352\377\354\355\354\377\360\360\360\377\363" +\ + "\364\363\377\366\367\366\377\371\371\371\377\373\373\373\377\375\375" +\ + "\375\377\375\376\375\377\377\376\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377\376\376" +\ + "\377\377\377\377\377\377\315\350\363\377\227\321\355\377\202\314\356" +\ + "\377\206\315\357\377h\241\274\377(08\377B\17\13\377\2526,\377\324qe\377" +\ + "\312\201w\377R49\377\0\0E\377\0\0\303\377\0\0\351\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\347\377\0\5\223\377\0\262\320\377\0\377\377\377\0\376\376\377\0" +\ + "\377\377\377\0\376\377\377\0\377\377\377\0\374\376\377\0\245\274\377" +\ + "\34\60@\3773G\134\377;BL\377``b\377rrr\3775Rl\377L{\243\377W\214\272" +\ + "\377[\224\307\377\134\226\312\377\134\227\315\377Z\224\312\377Y\223\311" +\ + "\377W\220\310\377U\215\303\377S\211\300\377O\204\271\377K~\264\377Ev" +\ + "\253\377An\244\377:f\232\3774]\220\3770V\213\364\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\211\211\303\212" +\ + "\215\212\376\216\221\215\376\222\226\222\377\231\234\231\377\240\243" +\ + "\237\377\247\252\247\377\255\260\255\377\264\266\264\377\272\274\273" +\ + "\377\277\301\277\377\312\314\312\377\240\242\240\377gii\377^`a\377VW" +\ + "Y\377MNR\377CFJ\377ACI\377DGL\377\220\222\221\377\323\325\324\377\342" +\ + "\343\341\377\337\340\340\377\337\341\340\377\341\342\340\377\341\342" +\ + "\342\377\342\343\342\377\344\344\344\377\346\347\347\377\350\351\350" +\ + "\377\353\354\353\377\355\356\356\377\360\361\360\377\363\364\364\377" +\ + "\367\367\367\377\372\371\372\377\373\373\373\377\375\375\375\377\376" +\ + "\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" +\ + "\377\377\377\377\377\377\377\373\373\373\377\301\330\342\377;Q]\3775" +\ + "\2\0\377o\37\32\377|C=\377l4.\377h63\377\0\0\30\377\0\0\253\377\0\0\372" +\ + "\377\0\0\377\377\0\0\376\377\0\0\377\377\0\0\376\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\376\377\0\0\376\377\0\0\377\377" +\ + "\0\0\362\377\0#\236\377\0\343\351\377\0\377\377\377\0\377\377\377\0\376" +\ + "\377\377\0\377\376\377\0\347\367\377\0AL\377Jw\231\377Do\217\3779Zy\377" +\ + "7Wu\377L|\244\377T\211\264\377Y\221\301\377[\225\310\377]\225\312\377" +\ + "[\224\312\377Z\223\311\377X\222\310\377W\220\307\377U\215\303\377S\211" +\ + "\300\377O\204\273\377K\177\265\377Hx\257\377Bq\247\377=i\236\3777`\225" +\ + "\3761W\211\3771Y\221\201\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0#L\215\149Le\377{\177|\377\222\225\222\377\226\230\225\377\234" +\ + "\237\235\377\244\247\244\377\253\255\252\377\262\265\262\377\271\273" +\ + "\270\377\302\304\303\377\263\265\263\377}~}\377.=O\3771Nl\3775Xx\377" +\ + "9^\201\377m\242\377Ct\252\377Cs\247\3778^\210\377-d\201\377\77e\205" +\ + "\377@h\210\377Bl\215\377Do\223\377Gs\233\377Jy\241\377M}\251\377N\201" +\ + "\257\377P\204\263\377R\206\270\377R\207\273\377R\211\275\377Q\207\274" +\ + "\377Q\206\273\377O\204\272\377L\200\266\377H{\261\377Eu\253\377@o\244" +\ + "\377;g\232\3776^\222\3770V\210\377+O\201\377B{\322\10\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0+S\211" +\ + "\201/T\210\3775]\222\376:f\234\377\77n\245\377Eu\254\377H{\262\377Gx" +\ + "\256\377Gx\251\377Iy\253\377N\201\265\377S\212\277\377W\221\312\377Z" +\ + "\225\316\377^\231\322\377_\234\324\377b\236\327\377c\241\331\377e\242" +\ + "\332\377f\245\334\377g\247\335\377j\252\337\377k\254\341\377l\256\341" +\ + "\377n\257\343\377n\256\341\377h\245\325\377\134\221\271\377:`~\377\265" +\ + "\266\267\377\350\352\351\377\351\352\352\377\353\353\353\377\355\355" +\ + "\354\377\356\357\356\377\361\361\360\377\364\364\364\377\365\365\365" +\ + "\377\371\371\371\377\363\363\363\377\252\253\252\377I>>\377.\0\0\377" +\ + "S\13\10\377\224\36\31\377\254*$\377\261+$\377\260+$\377\252)$\377\213" +\ + "\37\32\377H\13\10\377)\16\16\377iii\377\201\201\201\377.-\27\377QM\5" +\ + "\377\16\32\17\377\0\301\332\377\0\377\377\377\0\377\377\377\0\376\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0s\246\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\257\377\0\377\377\377\0\317\345\377\20*8\377" +\ + "7Xs\3778Zv\3779\134y\377k\237\3778c\226\3774" +\ + "[\215\377.R\203\377)L~\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-T\214[,O\202\3772Y\216\3777b\227\377=" +\ + "i\240\377Br\250\377Fx\257\377J~\266\377M\201\272\377P\206\276\377R\212" +\ + "\301\377U\215\306\377W\220\312\377Y\223\315\377[\225\320\377]\231\322" +\ + "\377^\234\324\377a\236\327\377b\240\331\377d\242\332\377f\245\334\377" +\ + "g\247\335\377i\251\337\377j\253\341\377l\255\341\377n\256\343\377o\260" +\ + "\344\377o\260\342\377l\252\332\377`\230\302\377Jw\230\377\214\221\227" +\ + "\377\355\355\354\377\354\355\354\377\355\356\355\377\356\357\356\377" +\ + "\361\361\360\377\314\315\315\377(\31\30\377\213\32\22\377\320vk\377\371" +\ + "\226\213\377\377\242\227\377\377\254\240\377\376\260\243\377\377\260" +\ + "\243\377\377\261\244\377\377\257\245\377\377\260\244\377\377\262\246" +\ + "\377\377\257\242\377\376\255\241\377\377\251\236\377\377\236\223\377" +\ + "\371\224\207\377\306ka\377\0\31 \377\0\321\350\377\0\377\376\377\0\376" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\217\254\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0H\244" +\ + "\377\0v\211\377\36\61@\377+DY\377,F\134\377.Ja\3770Oh\3774To\3777Zx\377" +\ + ";a\203\377\77h\215\377Do\226\377Gu\240\377Jz\250\377M\177\257\377M\201" +\ + "\264\377O\202\265\377N\202\266\377M\202\267\377L\200\265\377I}\263\377" +\ + "Fw\256\377Cs\250\377>l\240\377:e\231\3775\134\217\377/T\206\377)K{\377" +\ + ",Q\211V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0*N\202\317.R\206\3773[\220\3779d\231\377>k\241\377Br\251\377Gy\261" +\ + "\377K~\267\377M\203\273\377Q\207\300\377R\212\303\377U\215\306\377W\220" +\ + "\312\377X\223\314\377[\226\317\377^\230\322\377^\232\323\377a\236\326" +\ + "\377c\240\330\377e\242\332\377e\245\333\377g\246\335\377i\251\336\377" +\ + "j\253\341\377k\254\341\377n\256\343\377n\260\344\377p\261\344\377o\257" +\ + "\341\377i\245\324\377[\217\265\3779Xr\377\343\343\342\377\353\354\353" +\ + "\377\355\356\356\377\356\357\357\377\221\221\221\377@\0\0\377\301SF\377" +\ + "\367\211}\377\377\234\216\377\377\242\224\377\377\246\227\377\377\246" +\ + "\227\377\377\243\227\377\377\245\227\377\377\244\230\377\377\245\231" +\ + "\377\377\244\230\377\377\243\227\377\377\243\226\377\377\244\227\377" +\ + "\377\245\227\377\377\245\226\377\377\224\210\377\265WL\377\0IW\377\0" +\ + "\361\374\377\0\376\376\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\215\251\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\11\216\377\6:=\377$:K\377&e" +\ + "\212\377Bl\224\377Es\236\377Ix\246\377J}\256\377M\177\261\377L\177\263" +\ + "\377K\177\265\377L\177\264\377I|\261\377Fx\256\377Dt\252\377\77m\241" +\ + "\377e\212\377Cm\226\377Fs\240" +\ + "\377Hy\247\377J|\254\377J}\260\377J}\261\377J~\262\377I{\261\377Gy\256" +\ + "\377Dt\252\377Ao\244\377=i\235\3778b\226\3773Z\215\377.S\204\377)Jy\377" +\ + "&Gx\312\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0:m\266\16'Hy\377,P\203" +\ + "\3772Y\215\3777a\226\377w\316\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&Fzf(Iz\377-R\205" +\ + "\3773[\216\3777b\227\377=i\237\377@p\246\377Du\255\377Hz\262\377J~\266" +\ + "\377M\202\272\377O\204\275\377Q\207\301\377S\213\304\377V\216\311\377" +\ + "W\220\312\377Z\223\316\377[\226\320\377]\231\322\377^\233\324\377a\236" +\ + "\326\377c\237\330\377c\242\332\377e\244\333\377g\246\335\377i\250\336" +\ + "\377i\252\340\377k\254\341\377m\255\343\377o\260\343\377p\261\345\377" +\ + "p\260\343\377k\252\331\377]\223\273\3777EO\377\214\0\0\377\370\0\0\377" +\ + "\376\42\24\377\377U@\377\377Q=\377\377M8\377\377I6\377\377C2\377\377" +\ + "<,\377\3779*\377\3778*\377\3776(\377\377D8\377\377h`\377\377\204~\377" +\ + "\377oh\377\377F<\377\377;+\377\377;,\377\377B1\377\377\77.\377\341,\35" +\ + "\377d\3\0\377\0\204\231\377\0\371\377\377\0\376\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\375\377\377" +\ + "\0\77\247\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\370\377\0\0S\377\31" +\ + "'\63\377\30(\64\377\32)\66\377\33+9\377\34.=\377\37\62C\377\428L\377" +\ + "'\77U\377,G`\3771Pm\3776Yz\377;b\206\377@i\221\377Cp\234\377Gv\245\377" +\ + "Iz\253\377J{\256\377J{\260\377J|\261\377Hz\257\377Gy\256\377Ct\251\377" +\ + "Ap\244\377=j\236\3779c\226\3774\134\217\377/T\205\377*M|\377%Dq\377$" +\ + "Dtc\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&H{\247(J{\376.S\205\3774[\217\377" +\ + "8b\227\377=j\240\377Ap\247\377Dt\254\377Hz\262\377J}\266\377L\201\272" +\ + "\377O\204\275\377Q\207\300\377S\212\303\377T\215\310\377W\220\311\377" +\ + "Y\222\314\377[\226\317\377]\230\321\377^\232\323\377`\235\326\377a\237" +\ + "\327\377d\241\331\377d\244\333\377g\246\335\377h\246\336\377i\252\340" +\ + "\377j\254\340\377m\255\343\377n\256\343\377o\260\344\377o\260\343\377" +\ + "i\247\327\377X\214\262\377:\5\5\377\326\0\0\377\377\0\0\377\377\7\0\377" +\ + "\377<&\377\3773\37\377\3771\35\377\377+\31\377\377%\25\377\377\42\25" +\ + "\377\377\36\21\377\377\33\21\377\377\33\20\377\377\34\23\377\377%\35" +\ + "\377\377+#\377\377'\35\377\377\36\24\377\377\34\20\377\377\37\23\377" +\ + "\377#\25\377\376'\26\377\351\34\13\377\217\3\0\377\0;E\377\0\347\371" +\ + "\377\11\377\377\377\35\377\377\377\20\377\377\377\5\377\377\377\2\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\367\375\377\0\22\241\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\353\377\2\4\67\377\27&\61\377\30'\63\377\30(\64\377" +\ + "\32*\67\377\34-<\377\36\61B\377!6J\377&>S\377*F^\3770Ok\3775Xy\377:`" +\ + "\204\377\77h\220\377Co\234\377Fu\243\377Ix\252\377Iz\255\377Hz\257\377" +\ + "H{\261\377Hy\256\377Ew\253\377Dt\252\377Ao\244\377=j\235\377:d\227\377" +\ + "5]\217\3770V\207\377+M}\377%Et\376$Eu\240\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0$Eu\377(K|\377/T\207\3773\134\220\3778c\230\377=j\240\377@o\246\377" +\ + "Dt\254\377Gy\262\377I}\266\377K\200\271\377N\204\274\377P\206\277\377" +\ + "R\212\303\377T\214\307\377V\217\311\377X\222\314\377Z\225\316\377[\227" +\ + "\321\377^\232\323\377`\235\326\377a\236\327\377c\240\331\377e\243\333" +\ + "\377e\244\333\377h\247\335\377i\251\337\377j\253\340\377l\255\342\377" +\ + "m\255\343\377n\260\344\377n\257\341\377h\244\323\377/Lb\377\210\0\0\377" +\ + "\371\0\0\377\376\0\0\377\377\0\0\377\377\24\5\377\377\25\3\377\377\22" +\ + "\0\377\377\17\0\377\377\14\0\377\377\7\0\377\377\4\0\377\377\3\0\377" +\ + "\377\0\0\377\377\0\0\377\377\1\0\377\377\1\0\377\377\1\0\377\377\1\0" +\ + "\377\377\1\0\377\377\4\0\377\377\11\0\377\377\13\0\377\363\5\0\377\260" +\ + "\0\0\377\24\16\20\377\0\274\337\377A\377\377\377D\377\377\377;\377\377" +\ + "\377/\377\377\377!\377\377\377\31\377\377\377\22\377\377\377\15\377\377" +\ + "\377\15\377\377\377\7\377\377\377\1\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\376\377\0\337\347\377\0\0\273" +\ + "\377\0\11\376\377\0\7\377\377\0\3\377\377\0\1\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\326\377\4\7\11\377\27%\60\377" +\ + "\27&\62\377\30'\63\377\31)\66\377\33,;\377\36\61B\377\42\66I\377%=S\377" +\ + "*E]\377/Nk\3775Wx\377:`\205\377\77h\220\377Co\233\377Fu\243\377Hx\251" +\ + "\377Hz\255\377Hz\256\377H{\260\377Fx\255\377Fw\254\377Cs\250\377Ao\244" +\ + "\377T\377*F_\3770Nl\3775Wy\377:`\205\377\77h\221\377Co\233" +\ + "\377Et\243\377Hx\252\377Gx\255\377Hx\255\377Hz\257\377Ew\254\377Eu\252" +\ + "\377Cs\250\377@o\244\377U\377+Ga\3770On\3776Xz\377;`\206\377" +\ + "\77h\222\377Bp\234\377Et\244\377Gw\251\377Hx\254\377Gy\255\377Gx\257" +\ + "\377Ew\254\377Ct\251\377Cq\247\377@m\243\377=i\235\3779d\227\3775]\220" +\ + "\3771V\207\377,P\177\377'Hv\377#@n\376 >j\225\0\0\0\0\0\0\0\0\42@o\335" +\ + "%Eu\377*M\177\3770V\207\3774\134\220\3778c\230\377l\241\377l\377%Fu\377+M~\3770U\207\3773[\217\3778a\226\377;g\235\377>m\243\377" +\ + "Ap\247\377Dt\254\377Ew\257\377Hz\263\377J~\266\377L\201\272\377O\204" +\ + "\276\377P\207\300\377R\212\303\377T\214\310\377V\217\312\377X\222\314" +\ + "\377Y\225\316\377\134\227\321\377^\230\323\377^\234\325\377a\235\326" +\ + "\377b\240\330\377c\241\332\377d\243\333\377g\246\335\377g\247\336\377" +\ + "i\252\337\377j\253\340\377k\254\342\377:G]\377\272\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\376\0\0\377\377\0\0\377\346\0\0\377\260\0\0\377{\0\0\377\36\0\0" +\ + "\377\2\4\5\377\10l|\377b\275\306\377\224\346\354\377\234\367\373\377" +\ + "\235\374\375\377\234\375\375\377\234\375\376\377\233\375\376\377\231" +\ + "\375\376\377\204\356\364\377>]\241\377\231\241\377\377\227\235\377\377" +\ + "\230\235\377\377\215\225\377\377\206\216\377\377\202\211\377\377\177" +\ + "\210\377\377}\203\377\377y\201\377\377w~\377\377t|\376\377qx\376\377" +\ + "\35\35\366\377\0P\231\377\0\377\377\377\0\377\377\377\0\332\355\377\4" +\ + ",\67\377\26$/\377\27%\62\377\30(\65\377\31)8\377\34-=\377\37\62D\377" +\ + "#9N\377(AY\377,Ie\3772Rr\3777Z\177\377k\237\377;g\233\3778b\224\3774\134\215\3770V\206\377,O~\377" +\ + "(Hu\377#Am\377\369d\377\0\0\0\0#E{B!>j\377%Et\377+M~\377/U\206\3774Z" +\ + "\216\3777b\226\377;f\233\377>k\242\377Ap\246\377Cs\252\377Ew\257\377" +\ + "Gy\261\377J}\266\377K\177\271\377M\203\274\377O\205\277\377R\211\302" +\ + "\377T\213\306\377V\216\311\377W\221\313\377X\224\316\377[\225\320\377" +\ + "]\231\322\377^\232\324\377_\235\326\377a\236\327\377c\241\332\377d\243" +\ + "\333\377e\244\333\377g\247\335\377h\251\337\377j\252\337\377k\253\341" +\ + "\377:H^\377\272\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\357\0\0\377\246\0\0\3778\0\0\377\207r\0\377lS\0\377\10\0\0\377\2" +\ + "\0\0\377\0\61:\377\0]l\377\1p\177\377\11w\203\377\4p\203\377\11ax\377" +\ + "9T\220\377\246\251\377\377\243\251\377\377\237\245\377\377\234\242\377" +\ + "\377\232\241\377\377\227\235\377\377\224\233\377\377\222\230\377\377" +\ + "\220\225\377\377\215\224\377\377\211\217\377\377~\204\376\37712\334\377" +\ + "\0\207\255\377\0\377\377\377\0\377\377\377\0\377\377\377\0\305\334\377" +\ + "\10\15\26\377\26$/\377\27%\62\377\30'\65\377\32*9\377\34.\77\377\37\63" +\ + "F\377#:O\377(B[\377-Jf\3772Ss\3777\134\201\377k\377%Es\377)L|\377/S\205\3773Z\214\3776_\223\377:e\232\377<" +\ + "i\240\377\77m\243\377Aq\250\377Ct\253\377Ew\260\377Hz\262\377I}\267\377" +\ + "L\200\271\377N\204\274\377P\206\300\377R\212\302\377T\214\306\377V\217" +\ + "\311\377W\220\313\377Y\224\316\377Z\226\321\377]\227\322\377^\232\324" +\ + "\377_\235\326\377b\236\327\377b\240\332\377d\242\333\377e\244\333\377" +\ + "g\246\335\377g\250\336\377i\252\337\3771Kc\377\256\0\0\377\376\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\346\0\0\377\212" +\ + "G\0\377\377\351\0\377\367\320\0\377\344\276\0\377\326\261\0\377\315\253" +\ + "\0\377\310\246\0\377\302\240\0\377\252\214\0\377\220u\0\377\0!.\377\1" +\ + "\277\313\377\20>\207\377\4\6\254\377\34\36\333\377W[\361\377\215\222" +\ + "\367\377\215\220\366\377\202\206\363\377]^\344\377\34\34\256\377\0O\211" +\ + "\377\0\365\361\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\376\377\0\343\364\377\0>K\377\24 +\377\26$\60\377\26%\61\377" +\ + "\30&\64\377\31*9\377\34/@\377 4G\377#:Q\377)C]\377-Kh\3773Tv\3777\134" +\ + "\202\377;d\214\377\77k\227\377Cp\236\377Ds\244\377Eu\250\377Eu\252\377" +\ + "Dt\251\377Ct\251\377Bq\245\377\77m\242\377>j\240\377l\242\377Ao\246\377Br\252\377Dv\256\377Gy\261\377I|\265" +\ + "\377K\177\270\377M\202\274\377O\205\276\377Q\210\301\377S\213\305\377" +\ + "U\215\310\377W\220\312\377X\222\314\377Z\225\317\377\134\227\320\377" +\ + "^\230\322\377_\234\325\377`\235\327\377b\237\330\377c\241\332\377c\242" +\ + "\333\377f\245\334\377g\246\335\377g\247\336\377:^{\377\225\0\0\377\374" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\314\0\0" +\ + "\377\303\234\0\377\376\371\0\377\377\363\0\377\376\356\0\377\377\350" +\ + "\0\377\377\345\0\377\377\342\0\377\377\336\0\377\350\302\0\377\254\217" +\ + "\0\377C,\0\377\0\212\241\377e\374\377\377d\377\377\377[\377\377\377D" +\ + "\377\377\3772\355\350\3775\363\355\377~\377\377\377r\377\377\377+\377" +\ + "\377\377\37\376\376\377\37\377\377\377\42\377\377\377#\377\377\377#\376" +\ + "\377\377\26\377\377\377\0\372\377\377\0\244\300\377\10\16\22\377\24!" +\ + "-\377\26$\60\377\27%\62\377\30'\65\377\32+:\377\34.@\377\37\64G\377$" +\ + ";R\377(C]\377.Ki\3772Uw\3777\134\202\377j\227\377Am\236\377Cp\243\377" +\ + "Br\246\377Br\246\377Bq\246\377@o\245\377\77m\241\377g\377\35\66_\377\32\62Z\257\34\65" +\ + "_\301\37:e\377\42Ao\377'Hv\377+N~\377.T\205\3772Y\215\3775^\222\3777" +\ + "b\227\377:f\234\377l\243\377Ao\247\377Bs\253\377Dv\256\377" +\ + "Gx\262\377I|\265\377K\177\271\377L\201\273\377O\205\276\377Q\210\301" +\ + "\377R\212\304\377T\215\307\377V\217\312\377X\220\314\377Y\224\316\377" +\ + "Z\225\320\377\134\227\321\377^\232\324\377^\234\325\377a\235\327\377" +\ + "a\237\330\377c\241\332\377c\242\333\377d\242\332\377Z\220\300\377M\0" +\ + "\0\377\342\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\367\0\0\377\223\0\0\377\373\362\0\377" +\ + "\377\371\0\377\377\371\0\377\377\370\0\377\377\371\0\377\377\371\0\377" +\ + "\377\371\0\377\377\370\0\377\377\372\0\377\377\371\0\377\377\370\0\377" +\ + "\377\345\0\377\335\273\0\377\247\212\0\377\210q\0\377\34\16\0\377\5G" +\ + "T\377\134\265\276\377\211\341\352\377\224\367\371\377\230\373\377\377" +\ + "\225\373\376\377\215\371\373\377~\350\362\377a\277\312\377\26it\377\10" +\ + "\2\0\377\35\32\0\377\22\35'\377\24!-\377\25\42.\377\25\42/\377\26#\60" +\ + "\377\26%\62\377\30'\66\377\32+<\377\35/B\377 5J\377$h\226\377\77l\235\377Ao\241\377Bp" +\ + "\244\377Ap\244\377\77n\244\377@m\241\377=i\235\377;g\233\377:d\227\377" +\ + "7`\222\3774]\216\3772X\211\377/T\204\377+N{\377(Hu\377$Cn\377!k\237\377;h\235\377:f\231\3778b\225\3776_\221\377" +\ + "3[\214\3771W\207\377.R\201\377+M{\377'Hs\377#Al\377\37;d\377\34\65\134" +\ + "\377\30\60W\301\31\63]\307\358c\377!\77l\377%Fs\377)K{\377,Q\201\377" +\ + "0V\211\3774[\217\3776`\223\3778b\227\377:f\234\377X\377)Ea\377.Nn\3773Uy\3777\134\205\377:b\216\377j\233\377" +\ + "\77k\236\377@m\241\377>m\241\377=k\237\377=j\235\377:e\231\3779c\227" +\ + "\3777a\223\3774]\216\3773Z\212\3770V\205\377,Q\177\377*Ky\377&Fr\377" +\ + "\42@j\377\36:b\377\33\63Z\377\31\62[\274\31\62Z\277\35\67a\377!=h\377" +\ + "%Dr\377)Jy\377,O\177\377/U\207\3772Z\215\3775^\222\3777a\225\3779d\232" +\ + "\377;g\235\377>k\241\377\77n\245\377Bp\250\377Cs\254\377Ew\260\377Gy" +\ + "\262\377I|\267\377K\200\272\377M\202\274\377O\205\277\377Q\210\301\377" +\ + "R\212\304\377T\214\310\377V\216\311\377W\221\314\377Y\223\315\377Y\224" +\ + "\320\377\134\227\321\377]\230\322\377^\233\325\377`\234\326\377a\236" +\ + "\327\377a\236\330\377`\237\330\377a\236\325\377Ah\214\377c\0\0\377\346" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\335\0\0\377" +\ + "\234h\0\377\377\377\0\377\377\373\0\377\377\372\0\377\377\373\0\377\377" +\ + "\372\0\377\377\370\0\377\377\370\0\377\377\372\0\377\377\371\0\377\377" +\ + "\373\0\377\377\373\0\377\377\376\0\377\377\377\0\377\377\376\0\377\376" +\ + "\377\0\377\377\373\0\377\376\360\0\377\372\340\0\377\350\316\0\377\332" +\ + "\301\0\377\320\272\0\377\321\274\0\377\325\302\0\377\345\320\0\377\366" +\ + "\343\0\377\377\366\0\377\372\355\0\377\234\221\0\377\11\17\24\377\24" +\ + "!-\377\24!-\377\25\42.\377\25\42/\377\25$\61\377\27%\64\377\31)9\377" +\ + "\33-\77\377\36\62F\377!8O\377&\77Y\377*Fd\377.No\3773V{\3777]\206\377" +\ + ":b\216\377=h\227\377>k\233\377\77l\236\377\77k\236\377>k\237\377=h\235" +\ + "\377h\377\368a\377\32\63Y\377\26-S\271\30\60" +\ + "X\263\34\65_\377 l\243\377@o\247\377" +\ + "Cr\252\377Du\256\377Fx\260\377G{\264\377J}\267\377L\201\273\377M\204" +\ + "\274\377O\206\300\377Q\210\302\377S\212\305\377T\215\310\377V\217\311" +\ + "\377W\221\314\377Y\223\315\377[\225\317\377\134\226\321\377]\231\322" +\ + "\377^\233\325\377`\233\326\377_\234\325\377a\235\327\377_\234\324\377" +\ + "_\233\322\377!7I\377\204\0\0\377\356\0\0\377\376\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377" +\ + "\360\0\0\377\177\5\0\377\377\374\0\377\377\376\0\377\377\375\0\377\377" +\ + "\373\0\377\377\372\0\377\377\373\0\377\377\373\0\377\377\373\0\377\377" +\ + "\372\0\377\377\372\0\377\377\373\0\377\377\374\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\376\0\377\376\377\0\377\377\377\0\377\377" +\ + "\376\0\377\377\375\0\377\376\372\0\377\376\371\0\377\376\372\0\377\376" +\ + "\374\0\377\377\376\0\377\377\376\0\377\377\377\0\377\357\343\0\377SK" +\ + "\0\377\17\31\42\377\24!-\377\24!-\377\24\42.\377\25\42/\377\26$\62\377" +\ + "\27&\65\377\31*:\377\33.@\377\37\64I\377\42:Q\377&@[\377*Hf\377/Pr\377" +\ + "3W}\3778^\206\377:b\217\377j\235\377>k\237\377=" +\ + "j\236\377g\377\34\67^\377\31\62X\376" +\ + "\26+P\254\27/V\243\34\65]\377\37;e\377#An\377'Hu\377)M|\377,R\202\377" +\ + "0U\210\3773[\215\3775^\221\3777a\225\3778d\231\377;g\235\377=j\241\377" +\ + "\77n\244\377Ap\250\377Cs\253\377Dv\257\377Fx\262\377I|\266\377K\177\270" +\ + "\377L\202\273\377O\204\276\377O\207\300\377R\211\302\377S\213\306\377" +\ + "U\215\310\377V\220\312\377X\222\314\377Y\223\317\377Z\225\317\377\134" +\ + "\227\321\377]\231\323\377^\233\325\377^\233\325\377`\234\325\377_\233" +\ + "\323\377^\232\321\377/Mj\377\11\0\7\377\213\0\0\377\347\0\0\377\377\0" +\ + "\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\376\0\0\377\371\0\0" +\ + "\377\241\0\0\377\311\266\0\377\377\377\0\377\376\376\0\377\377\375\0" +\ + "\377\377\375\0\377\377\374\0\377\377\374\0\377\377\373\0\377\377\372" +\ + "\0\377\377\374\0\377\377\374\0\377\377\375\0\377\377\375\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\376\0\377\376\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\331\312" +\ + "\0\377($\3\377\23 +\377\24!-\377\24 ,\377\24\42.\377\25#\61\377\26%\63" +\ + "\377\30'\67\377\31*;\377\34/C\377 4J\377#;T\377'B^\377+Ji\3770Qt\377" +\ + "4Y\177\3778^\211\377:c\217\377=g\226\377=h\233\377=i\233\377=j\234\377" +\ + "k\242\377@o\246\377Br\251\377Cs\255\377Ew\260\377Gz\263\377J|\266\377" +\ + "K\200\271\377L\202\273\377N\204\276\377P\207\301\377R\211\303\377S\213" +\ + "\307\377T\216\310\377V\220\313\377X\221\314\377Z\223\317\377Z\225\317" +\ + "\377\134\226\321\377]\231\322\377\134\231\323\377^\232\324\377]\231\321" +\ + "\377]\230\317\377,\26\64\377\232\0x\377\20\0\13\377q\0\0\377\322\0\0" +\ + "\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\374\0\0\377\277\0\0" +\ + "\377\245x\0\377\377\377\0\377\376\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\375\0\377\377\376\0\377\377\373\0\377\377\373\0\377\377\373\0\377" +\ + "\377\373\0\377\377\375\0\377\377\376\0\377\377\376\0\377\377\376\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\376\0\377\377\371\0\377\270\252\0\377" +\ + "\4\6\11\377\24!-\377\24 ,\377\24!-\377\24\42/\377\25#\60\377\26%\64\377" +\ + "\27'\67\377\32,=\377\35\61E\377 6M\377$=X\377)Eb\377-Lm\3771Sx\3774Y" +\ + "\202\3777_\212\377:d\221\377i\377$Cp\377(Iw\377+N}\377.R" +\ + "\203\3770V\211\3773Z\214\3774]\221\3776`\225\3778b\230\377;g\234\377" +\ + "l\244\377@o\247\377Bq\252\377Du\256\377Fw\261\377Gz\264\377" +\ + "I}\266\377K\200\272\377M\203\274\377N\204\277\377P\207\301\377Q\211\303" +\ + "\377T\213\307\377U\215\311\377V\220\312\377W\221\314\377Y\224\317\377" +\ + "Z\225\317\377\134\227\321\377\134\226\320\377]\230\322\377]\227\320\377" +\ + "W\217\305\377E\0\65\377\310\0\243\377\254\0\214\377:\0,\377'\0\0\377" +\ + "\257\0\0\377\345\0\0\377\377\0\0\377\376\0\0\377\376\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\376\0\0\377\374\0\0\377\312\0\0\377\215N\0\377\377" +\ + "\377\0\377\377\377\0\377\377\376\0\377\377\377\0\377\377\377\0\377\377" +\ + "\376\0\377\377\375\0\377\377\375\0\377\377\375\0\377\377\375\0\377\377" +\ + "\375\0\377\377\376\0\377\377\376\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\364\345\0\377{X\0\3771\0\0\377" +\ + "\22\36*\377\23 ,\377\23!-\377\24!/\377\25#\62\377\26%\64\377\30(9\377" +\ + "\32,\77\377\36\62G\377\428P\377%\77Y\377)Fe\377.Np\3772Tz\3775Z\204\377" +\ + "9_\214\377:c\222\377;f\227\377;h\231\377;g\232\377;f\232\377:d\230\377" +\ + "8c\226\3776`\223\3774\134\217\3773Z\214\3771X\211\377/T\204\377-Q\200" +\ + "\377+L{\377(Hu\377$Cn\377\42>h\377\369a\377\33\63Y\377\30.S\377\24*M" +\ + "\220\25+R\203\30\60V\377\35\67_\377 ;f\377#Bn\377&Gu\377*L{\377,P\201" +\ + "\377/U\206\3771X\213\3773[\216\3775^\223\3777b\227\3779d\231\377;g\235" +\ + "\377=k\241\377\77m\245\377Ap\250\377Bs\253\377Ev\257\377Fx\261\377H{" +\ + "\265\377J~\267\377K\200\273\377M\203\274\377O\205\277\377P\207\302\377" +\ + "R\212\304\377T\214\307\377U\215\311\377V\220\313\377W\222\314\377Y\223" +\ + "\317\377Z\224\317\377Z\225\317\377[\226\320\377[\226\317\377T\212\275" +\ + "\377d\0J\377\371\0\320\377\352\0\303\377\247\0\222\377(\0\0\377\0\0\0" +\ + "\377H\0\0\377\256\0\0\377\326\0\0\377\367\0\0\377\377\0\0\377\377\0\0" +\ + "\377\376\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\377" +\ + "\0\0\377\361\0\0\377\260\0\0\377\225]\0\377\377\377\0\377\376\376\0\377" +\ + "\376\376\0\377\377\377\0\377\377\377\0\377\377\376\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\376\0\377\377\376\0\377\377\376\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\376\0\377\377\371\0\377\324\312\0\377}\0\0\377L\0\0\377\20\33%\377" +\ + "\23 -\377\23 -\377\24\42/\377\26$\63\377\27&\66\377\31*;\377\33.A\377" +\ + "\37\64J\377\42:S\377'A]\377+Ii\377/Ps\3772V}\3776\134\207\3778`\215\377" +\ + ":c\223\377;f\230\377;g\230\377;e\230\377:e\232\3778c\226\3777b\224\377" +\ + "6_\222\3774[\216\3772Y\212\3771V\206\377.R\202\377,O}\377)Kx\377'Gs\377" +\ + "$Bm\377!=f\377\358_\377\32\62X\377\27-Q\377\23'I\201\23(Kj\30/U\377\33" +\ + "\64\134\377\37:d\377\42@k\377%Er\377(Jx\377,O~\377.R\204\3770V\210\377" +\ + "2Y\214\3774\134\220\3776_\223\3778c\227\3779e\233\377k\242" +\ + "\377\77n\246\377Aq\250\377Cs\254\377Dv\257\377Fy\262\377I{\266\377J~" +\ + "\270\377L\201\274\377N\204\275\377O\205\300\377P\207\301\377R\211\304" +\ + "\377S\214\307\377U\215\311\377W\220\312\377W\221\315\377X\222\316\377" +\ + "Z\225\317\377Z\224\317\377Z\224\316\377R\211\275\377j\0O\377\377\0\356" +\ + "\377\222\0R\377\266LC\377\302`_\377\257QO\377}//\377\10\0\0\377\24\0" +\ + "\0\377u\0\0\377\255\0\0\377\321\0\0\377\351\0\0\377\362\0\0\377\362\0" +\ + "\0\377\357\0\0\377\345\0\0\377\305\0\0\377u\0\0\377\301\233\0\377\376" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\376\0\377\377\377\0\377\360\335\0\377\203" +\ + "U\0\377\373\0\0\377c\0\0\377\17\30#\377\23 -\377\23 -\377\24\42\60\377" +\ + "\25$\63\377\27'\67\377\32+=\377\34/C\377 6L\377#i\377" +\ + "$Cp\377'Gv\377*L|\377-Q\201\377.T\205\3771W\211\3773Z\215\3775]\221\377" +\ + "6`\225\3778c\230\377:f\234\377l\243\377@n\247\377Aq\251\377" +\ + "Ct\255\377Ev\257\377Fz\262\377H{\266\377K\177\270\377L\201\273\377M\203" +\ + "\275\377O\205\277\377Q\207\301\377R\211\304\377S\214\307\377U\215\311" +\ + "\377V\217\312\377V\220\313\377X\222\316\377X\222\315\377X\224\315\377" +\ + "R\207\274\377a\0R\377\221\11\25\377\373\200}\377\376\214\211\377\377" +\ + "\205\202\377\366sp\377\331``\377\276NM\377\241;;\377h !\377\17\0\0\377" +\ + "\12\0\0\377a\22\0\377\202&\0\377\214.\0\377\2162\0\377\215R\0\377\335" +\ + "\314\0\377\373\372\0\377\377\377\0\377\376\376\0\377\376\376\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\372\356\0\377\255\253\0\377\316\0\0\377\366\0\0\377g\0\0\377" +\ + "\17\30\42\377\23 ,\377\23 .\377\24\42\60\377\25$\63\377\27'8\377\32," +\ + ">\377\35\61F\377 6N\377$=X\377)Ed\377,Kn\3771Rx\3773X\202\3776]\211\377" +\ + "8a\220\3779c\224\377:d\226\3779d\226\3778c\226\3778b\225\3776_\223\377" +\ + "6]\220\3773Z\214\3772X\211\3770U\205\377-R\201\377,N|\377)Ky\377'Gs\377" +\ + "%Cn\377\42\77g\377\379a\377\33\64Z\377\30/T\377\25)L\377\22$F)\0\0\0" +\ + "\0\25*O\377\31\61W\377\35\67_\377 l\244\377@o\247\377Ar\252\377Du\255\377Ex\261\377" +\ + "Gy\263\377H|\266\377J\177\271\377L\201\273\377N\203\275\377N\205\277" +\ + "\377Q\210\302\377R\211\304\377S\213\307\377U\215\311\377V\217\312\377" +\ + "V\217\312\377W\222\315\377X\221\315\377J{\255\377W\0\0\377\371ro\377" +\ + "\377\203\200\377\377\204\201\377\377\177|\377\376{y\377\376rq\377\375" +\ + "ig\377\360^^\377\326bb\377\262ba\377f&&\37766\0\377\322\303\0\377\377" +\ + "\375\0\377\377\377\0\377\377\377\0\377\377\377\0\377\376\376\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\376\0\377\376\376\0\377\377\370\0\377\330\320\0\377\240" +\ + "\21\0\377\377\0\0\377\366\0\0\377g\0\0\377\16\27!\377\22\37+\377\23 " +\ + "-\377\24\42\60\377\26%\64\377\30(9\377\33-@\377\36\62G\377!8Q\377%\77" +\ + "[\377)Ff\377.Mq\3771T{\3773Y\203\3776^\212\3778a\220\3779b\223\3778c" +\ + "\225\3778d\226\3779b\225\3777a\224\3776_\220\3774Z\215\3773Y\213\377" +\ + "1W\207\377.S\203\377-P~\377,N{\377)Iv\377&Fp\377#Ak\377 =e\377\35\67" +\ + "_\377\33\63X\377\27.R\377\24'J\377\0\0\0\0\0\0\0\0\24)M\370\27/T\377" +\ + "\33\64\134\377\37:c\377\42\77j\377$Cp\377(Hv\377*L{\377,P\200\377.S\204" +\ + "\3770V\210\3772Y\214\3774\134\217\3775_\223\3778a\227\3779e\232\377;" +\ + "g\236\377=j\241\377>l\244\377@p\250\377Br\253\377Du\256\377Fx\261\377" +\ + "Hz\263\377H}\266\377J\177\271\377L\201\273\377N\203\275\377N\205\300" +\ + "\377P\207\302\377Q\211\303\377S\213\306\377T\214\310\377U\216\311\377" +\ + "U\217\312\377W\220\313\3779\10\13\377\351,+\377\376ii\377\377lj\377\377" +\ + "kh\377\377ih\377\377hg\377\377ge\377\376bc\377\377hi\377\377\245\246" +\ + "\377\355\334\334\377\266\203\202\377F\16\21\377[Q\0\377\334\314\0\377" +\ + "\377\375\0\377\377\376\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\376\0\377\377\373\0\377\341\322\0\377\213;\0\377\377\0\0\377\376" +\ + "\0\0\377\364\0\0\377f\0\0\377\16\26 \377\22\37,\377\23\37-\377\24\42" +\ + "\60\377\25$\64\377\30(9\377\32-@\377\36\62I\377!9R\377&@]\377*Gh\377" +\ + ".Ns\3771T|\3774Y\204\3776]\213\3778`\220\3778b\223\3778b\225\3778b\223" +\ + "\3776_\222\3776_\221\3774\134\216\3774Y\213\3771W\207\3770S\203\377-" +\ + "Q\177\377,N|\377*Kx\377'Gr\377%Cm\377#@i\377\37:c\377\34\66\134\377\32" +\ + "\60U\377\26,O\377\23'I\365\0\0\0\0\0\0\0\0\23'I\320\26-R\377\32\62Y\377" +\ + "\358a\377 j\243\377\77n\246\377@p\250\377Br\253\377Ct\256\377Ew" +\ + "\260\377Fy\262\377H|\265\377I}\267\377K\177\272\377L\201\273\377M\203" +\ + "\275\377H{\261\377c\0\0\377\231\0\24\377\322]\301\377\376\217\373\377" +\ + "\376\233\377\377\377\235\377\377\377\235\377\377\377\234\377\377\377" +\ + "\235\377\377\377\234\377\377\377\235\377\377\377\231\376\377\375\214" +\ + "\371\377\3079\256\377\274\0\10\377\377\0\0\377\376\0\0\377\344\0\0\377" +\ + "\261\0\0\377\134\0\0\377\20\25\0\377\250\231\0\377\347\325\0\377\377" +\ + "\372\0\377\377\376\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\376\0\377\376" +\ + "\377\0\377\377\366\0\377\354\331\0\377\245\240\0\377\245\11\0\377\376" +\ + "\0\0\377\376\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\375\0\0\377" +\ + "\237\0\0\377\21\22\22\377)))\377++*\377\32#-\377\22 .\377\25#\63\377" +\ + "\27(:\377\32-A\377\35\63K\377!9T\377%@_\377)Fi\377,Ms\377/R{\3772V\202" +\ + "\3773Y\210\3774[\212\3773Z\213\3773Z\214\3773Y\213\3772W\211\3770U\206" +\ + "\377.R\203\377.R\200\377,O|\377+Kx\377(Ht\377'Fq\377%Cm\377\42\77h\377" +\ + " ]\377'Dg\377*Jq" +\ + "\377-Ox\377/S~\3771V\203\3772W\205\3772V\210\3772W\207\3770U\204\377" +\ + "/S\203\377-Q\177\377+M{\377,M{\377)Jw\377(Gt\377&Eo\377%Cm\377#\77g\377" +\ + " ;c\377\368^\377\32\63W\377\31.R\377\26*L\377\23&G\377\20\37<\214\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\36;Q\23%G\377\25*M\376\30/T\377\33\63" +\ + "Z\377\359`\377 m\244\377@o\247\377Aq\251\377Bs\255" +\ + "\377Du\256\377Ew\260\377Gy\263\3772V\177\377\224\0r\377\377,\360\377" +\ + "\376M\376\377\377J\377\377\377I\377\377\377D\377\377\377<\377\377\377" +\ + "\77\377\377\377\222\377\377\377\256\377\377\377H\377\377\3776\377\377" +\ + "\3779\377\377\377A\377\377\377F\376\377\377K\376\377\377\37\363\377\264" +\ + "\0\215\377\362\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\332\0\0\377" +\ + "\232\0\0\377\24\0\0\377\270\0\0\377\252\12\0\377|7\0\377\241\240\0\377" +\ + "\323\315\0\377\347\331\0\377\363\341\0\377\367\345\0\377\371\352\0\377" +\ + "\372\351\0\377\371\351\0\377\370\351\0\377\366\344\0\377\357\336\0\377" +\ + "\340\326\0\377\312\311\0\377\201o\0\377\217#\0\377\332\1\0\377\374\0" +\ + "\0\377\377\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\351\0\0\377Y\0\0\377\33\33\33\377%%" +\ + "%\377'''\377()(\377(*+\377/02\377<<;\377@AC\3770:F\377\32.G\377\36\65" +\ + "P\377\42<[\377&Ce\377)In\377,Nv\377.Q}\377/T\201\3770U\203\3770V\203" +\ + "\3770T\204\3770S\202\377-Q\177\377,O}\377*L{\377*Jw\377(Ht\377&Fp\377" +\ + "%Cm\377#@j\377!=e\377\379_\377\34\65Z\377\32\61U\377\27-P\377\25)J\376" +\ + "\22$D\377\16\34\66N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21#C\377" +\ + "\24(K\377\27-Q\377\32\62W\377\34\65\134\377\36:b\377!>h\377#Ak\377%D" +\ + "p\377'Hu\377(Jw\377*L{\377+N~\377-Q\203\377.T\205\3770V\211\3772Y\214" +\ + "\3773\134\220\3775^\223\3776a\225\3778b\230\377:e\233\377;g\237\377=" +\ + "j\241\377=l\244\377@n\246\377Ap\251\377Bs\254\377Du\255\377Ev\260\377" +\ + ";\17>\377\351\0\301\377\375\31\370\377\377-\377\377\377'\377\377\377" +\ + "!\377\377\377\25\377\377\377\17\377\377\377\14\377\377\377\24\377\377" +\ + "\377\26\377\377\377\14\377\377\377\14\377\377\377\16\377\377\377\21\377" +\ + "\377\377\26\377\377\377\35\377\377\376\1\374\377\375\0\336\377\271\0" +\ + ")\377\377\0\0\377\377\0\0\377\376\0\0\377\374\0\0\377\305\0\0\377H\0" +\ + "\0\377^\0\0\377\352\0\0\377\376\0\0\377\355\0\0\377\333\5\0\377\225\26" +\ + "\0\377l\34\0\377\220R\0\377\226]\0\377\227]\0\377\227^\0\377\224Y\0\377" +\ + "\2025\0\377o\34\0\377\270\20\0\377\343\0\0\377\365\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\376\0\0\377\372\0\0\377\250\0\0\377\12\12" +\ + "\12\377$%$\377%&%\377&'&\377()(\377*++\377///\377454\377;<;\377IIH\377" +\ + "ZZ[\377HR_\377FUg\377FYq\3779Rs\377)Js\377.Oy\377.Q~\3770R\201\377/S" +\ + "\201\377.Q\200\377.P\177\377,O~\377+Lz\377*Jw\377(Ht\377&Fp\377%Dn\377" +\ + "#Ak\377\42>f\377 ;b\377\35\67]\377\32\64W\377\31\60S\377\26,M\377\24" +\ + "&G\377\21 \77\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20" +\ + "\37=\270\23&H\377\25*N\377\30/S\377\33\64Y\377\35\67_\377\37;d\377!\77" +\ + "i\377$Bm\377%Eq\377'Gt\377(Jx\377+M|\377-P\177\377.Q\202\377.S\205\377" +\ + "0V\211\3771Y\214\3774[\220\3775^\224\3776`\225\3778b\230\3779e\233\377" +\ + ":g\236\377g\377!l\244\377" +\ + "\77o\247\377\33/F\377\327\0\255\377\377\0\366\377\377\0\374\377\377\0" +\ + "\375\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\376\377\377\0\377\377\377" +\ + "\0\374\377\347\0\313\377\325\0\0\377\376\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\331\0\0\377\231\0\0\377\7\0\0\377\261\0\0\377\372\0" +\ + "\0\377\376\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\315" +\ + "\0\0\377B\0\0\377\30\31\30\377#$#\377$%$\377%&%\377&'&\377(((\377+,+" +\ + "\377./.\377454\377:<;\377CDC\377LML\377VWV\377`b`\377kmk\377sus\377\201" +\ + "\204\201\377\242\244\245\377o\177\226\3776U\177\377+Ny\377+M{\377+Kz" +\ + "\377(Iw\377(Ht\377&Fq\377%Dm\377$Aj\377\42\77g\377 =d\377\37:`\377\35" +\ + "\66\134\377\32\62W\377\31/R\377\25*L\377\23&G\377\22\42A\377\15\32\61" +\ + "m\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21!\77\377" +\ + "\23&G\377\25+N\377\30/S\377\32\63Y\377\34\66]\377\37:b\377 =g\377\42" +\ + "@k\377$Cn\377&Eq\377'Hu\377*Kx\377+M{\377,N~\377.Q\203\377/S\205\377" +\ + "1V\210\3772X\213\3773[\216\3775]\221\3775_\224\3777b\227\3778c\231\377" +\ + ":f\234\377k\244\3779\30F\377\351\0\304\377\376\0" +\ + "\374\377\377\0\377\377\377\0\376\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\376\377\375\0\336\377\267\0\21\377\376" +\ + "\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\376\0\0\377\313\0\0\377" +\ + "\206\0\0\377\2\0\0\377\256\0\0\377\364\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\376\0\0\377" +\ + "\375\0\0\377\313\0\0\377C\0\0\377\25\25\24\377\42\42\42\377$$$\377$$" +\ + "$\377%%%\377&'&\377()(\377+,+\377/0/\377454\377;<;\377DED\377MNM\377" +\ + "WYW\377aca\377lmk\377vxv\377~\200~\377\206\211\206\377\231\232\230\377" +\ + "\256\255\252\377,Ly\377*Kx\377)Kw\377(Gt\377'Gr\377%Cm\377$Bl\377#\77" +\ + "h\377!f\377 ;a\377\368^\377\35\65Z\377\32\61V\377\30.P\377\25*L\377" +\ + "\23&F\377\21\42\77\376\16\33\64\255\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\22&\67\21\42B\377\23&G\377\26+N\377" +\ + "\30.S\377\32\62X\377\34\65]\377\359a\377 ;d\377\42>h\377#Ak\377$Bn\377" +\ + "&Eq\377'Gu\377)Jx\377*L{\377,N~\377-Q\201\377.R\204\3770U\210\3771W\212" +\ + "\3772Y\214\3773\134\220\3774]\222\3776`\225\3777b\227\3778c\231\377:" +\ + "e\234\377D\25L\377\357\0\313\377\377\0\375\377\377\0\376\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\375" +\ + "\377\377\0\344\377\277\0!\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\376\0\0\377\362\0\0\377d\0\0\377\237\0\221\377\36" +\ + "\0\32\377M\0\0\377\277\0\0\377\357\0\0\377\377\0\0\377\377\0\0\377\376" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\371\0\0" +\ + "\377\322\0\0\377\200\0\0\377\20\5\5\377\33\34\33\377 ! \377\42#\42\377" +\ + "#$#\377###\377$%$\377%&%\377'''\377)*)\377,-,\377121\377787\377>\77>" +\ + "\377FGF\377PQP\377Y\134Z\377dec\377mpn\377vxv\377~\200~\377\204\206\204" +\ + "\377\210\213\210\377\217\221\215\377/Il\377&Eo\377&Do\377%Cn\377%Cm\377" +\ + "$\77h\377!=e\377 ;c\377\369_\377\35\66Z\377\33\63W\377\31/S\377\27,N" +\ + "\377\24(H\377\22#B\377\20\37=\377\11\20!\63\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\35:\363\22#C\376\23" +\ + "(I\377\27-Q\377\32\61V\377\33\64Z\377\34\67^\377\37:a\377 i\377" +\ + "$Ak\377%Co\377&Er\377'Ft\377)Iw\377+L{\377+N~\377-P\200\377.R\203\377" +\ + "0T\207\3771V\211\3772X\213\3774[\217\3775]\222\3775_\224\3777a\227\377" +\ + "8b\230\377;\26E\377\353\0\305\377\376\0\373\377\377\0\377\377\377\0\376" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\374" +\ + "\377\374\0\337\377\267\0\24\377\377\0\0\377\377\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\377\0\0\377\371\0\0\377\253\0t\377\337\0\306\377" +\ + "\263\0\234\377_\0Q\377\5\0\0\377g\0\0\377\276\0\0\377\341\0\0\377\371" +\ + "\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\352\0\0\377\312\0\0\377\227\0\0" +\ + "\377\36\0\0\377\23\23\23\377\42\42\42\377!\42!\377##\42\377\42##\377" +\ + "#$#\377$$$\377%%%\377&&&\377(((\377*+*\377./.\377232\3779:9\377@A@\377" +\ + "IJI\377RTR\377\134^\134\377fhf\377npo\377xzx\377~\201~\377\204\206\204" +\ + "\377\205\211\207\377\214\216\212\377(@d\377$Ak\377&Cm\377$Ak\377#>h\377" +\ + "\42>f\377!\376\15\32\64\360\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\31\62d\21\42A\377" +\ + "\22&F\377\26*K\377\31/S\377\32\62W\377\35\66\134\377\368`\377\37:b\377" +\ + "\42=f\377\42>i\377$@k\377%Cn\377&Eq\377'Ft\377(Iw\377*Kz\377+M|\377," +\ + "O\177\377-R\202\3770T\205\3770U\210\3771W\212\3772Z\215\3774\134\220" +\ + "\3775^\223\3775`\225\377\25&<\377\334\0\261\377\377\0\370\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376" +\ + "\377\377\0\374\377\353\0\316\377\320\0\0\377\377\0\0\377\377\0\0\377" +\ + "\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\267\0\0\377\366\0\372" +\ + "\377\377\0\366\377\362\0\325\377\314\0\261\377\247\0\214\377\134\0M\377" +\ + "\14\0\3\377)\0\0\377w\0\0\377\256\0\0\377\310\0\0\377\323\0\0\377\325" +\ + "\0\0\377\325\0\0\377\315\0\0\377\272\0\0\377\214\0\0\377F\0\0\377\27" +\ + "\5\5\377\24\24\24\377 ! \377\42##\377\42#\42\377\42#\42\377\42#\42\377" +\ + "\42##\377#$#\377%%%\377%&%\377'''\377)*)\377-.-\377000\377565\377<=<" +\ + "\377CEC\377KMK\377UVU\377^`^\377hji\377prp\377wyx\377|\200}\377\200\204" +\ + "\201\377\203\207\204\377pw|\377\37;b\377$@i\377$@k\377#>h\377\42=e\377" +\ + "!=c\377 :`\377\35\67]\377\34\64Y\377\32\60T\377\30-Q\377\26+L\377\23" +\ + "&E\377\22#A\377\17\36;\377\13\26,a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\35:\377\22" +\ + "#C\377\24(J\377\27,O\377\31\60U\377\33\63Y\377\35\67^\377\368`\377 ;" +\ + "b\377!=f\377\42\77h\377#@k\377%Bn\377%Eq\377'Fs\377)Hw\377)Jy\377+M|" +\ + "\377,N\177\377-P\201\377.S\204\3770T\206\3770W\211\3772Y\214\3773Z\216" +\ + "\3774[\220\377'Fn\377\214\0n\377\377\0\354\377\377\0\376\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377" +\ + "\377\377\0\377\377\377\0\377\377\377\0\376\377\377\0\376\377\377\0\364" +\ + "\377\262\0\215\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377\376" +\ + "\0\0\377\376\0\0\377\371\0\0\377\262\0q\377\377\0\377\377\377\0\376\377" +\ + "\377\0\375\377\376\0\351\377\360\0\315\377\325\0\261\377\274\0\232\377" +\ + "\206\0j\377\35\0\25\377\4\4\4\377\30\4\4\377#\3\3\377$\3\3\377$\3\3\377" +\ + " \4\4\377\14\10\10\377\23\23\23\377\36\36\36\377\42##\377##\42\377\42" +\ + "#\42\377\42#\42\377\42\42\42\377\42#\42\377#$#\377#$#\377$$$\377%&%\377" +\ + "&'&\377)))\377+,+\377///\377343\377898\377@A@\377FGF\377OPO\377XYX\377" +\ + "aca\377iki\377oqp\377vyw\377{~|\377\177\202\177\377nuy\377\358]\377#" +\ + ">f\377#@h\377\42\77h\377!h\377" +\ + "#@j\377%Bn\377%Dq\377'Er\377(Hu\377)Jy\377+Lz\377+N}\377,O\177\377.R" +\ + "\203\377/S\205\3770U\210\3771W\212\3772Y\215\3773[\220\377\77\11;\377" +\ + "\354\0\310\377\377\0\371\377\376\0\377\377\377\0\376\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376\377" +\ + "\377\0\377\377\377\0\374\377\377\0\343\377\263\0/\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\377\0\0\377\242\0\23\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376\377\377\0\377\377" +\ + "\377\0\371\377\377\0\351\377\373\0\325\377\306\0\243\3775\0&\377\36\36" +\ + "\36\377!\42\42\377\42#\42\377###\377#$#\377#$#\377###\377###\377\42#" +\ + "\42\377###\377###\377#$#\377$$$\377#$#\377$$$\377$%%\377%&%\377&'&\377" +\ + "'('\377()(\377++*\377./.\377232\377676\377<=<\377CDC\377KLK\377RTT\377" +\ + "Z\134Z\377cec\377jlj\377prq\377uxv\377|~{\377fns\377\35\66[\377!=d\377" +\ + "#\77g\377\42\77g\377!=e\377!h\377#@j\377$Am\377%Dp\377&Fs\377(Gt\377)Ix\377)Kz\377" +\ + "*L{\377+N~\377-Q\202\377.S\204\377/S\206\3771V\211\3770W\211\377 :\134" +\ + "\377\231\0y\377\377\0\346\377\377\0\375\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\375\377\377\0\362\377\265\0\223\377\361\0\0\377\377\0\0\377\377" +\ + "\0\0\377\377\0\0\377\376\0\0\377\377\0\0\377\260\0\0\377\360\0\355\377" +\ + "\376\0\376\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376\377" +\ + "\377\0\377\377\377\0\374\377\377\0\353\377\271\0\225\377\3\7\13\377 " +\ + "!!\377\42#\42\377#$#\377#$#\377###\377\42##\377\42#\42\377###\377\42" +\ + "#\42\377#$#\377#$#\377$%$\377$%$\377%%%\377$%$\377&&&\377&'&\377()(\377" +\ + ")*)\377+,+\377./.\377232\377575\377;<;\377ABA\377GIH\377NPN\377UXV\377" +\ + "]_]\377dfd\377kmk\377psq\377wyw\377ahn\377\33\63V\377\42f\377" +\ + "\42=e\377!=f\377 i\377#\77j\377$Al\377&Cp\377'Fr\377'Gt\377(Hv\377" +\ + ")Ky\377*L{\377+N}\377,O\177\377.Q\202\377.S\205\377/S\206\377/U\207\377" +\ + "\31\30.\377\314\0\246\377\377\0\354\377\377\0\375\377\376\0\376\377\377" +\ + "\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\376\377\377\0\376\377\377\0\376\377\377" +\ + "\0\367\377\344\0\307\377\306\0\12\377\377\0\0\377\377\0\0\377\377\0\0" +\ + "\377\376\0\0\377\377\0\0\377\261\0\0\377\351\0\342\377\376\0\376\377" +\ + "\376\0\376\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\377\377" +\ + "\377\0\376\377\377\0\367\377\351\0\303\3779\1,\377\12\22\35\377\26\32" +\ + "\36\377$$$\377#$#\377###\377\42#\42\377\42#\42\377#$#\377#$#\377$%$\377" +\ + "$$$\377%%%\377%&%\377&&&\377&'&\377'('\377()(\377)*)\377+,+\377---\377" +\ + "000\377333\377787\377;<;\377\77@\77\377DFD\377KML\377QTS\377Z[Z\377_" +\ + "b`\377fhf\377knl\377prp\377cij\377\26,K\377 8]\377!g\377#@k\377$Ak\377%Cn\377'Dq\377'Fr\377(" +\ + "Hu\377(Ix\377*L{\377+M}\377,O\177\377-P\200\377,Q\202\377.S\204\377," +\ + "R\201\377\34\16$\377\312\0\243\377\377\0\346\377\377\0\373\377\377\0" +\ + "\377\377\377\0\377\377\377\0\377\377\377\0\377\377\377\0\376\377\377" +\ + "\0\376\377\377\0\377\377\376\0\377\377\377\0\375\377\377\0\364\377\350" +\ + "\0\316\377\255\0\26\377\377\0\0\377\377\0\0\377\377\0\0\377\377\0\0\377" +\ + "\370\0\0\377\236\0\37\377\357\0\351\377\376\0\376\377\377\0\377\377\377" +\ + "\0\377\377\377\0\377\377\377\0\376\377\377\0\377\377\377\0\376\377\376" +\ + "\0\365\377\355\0\307\377_\0J\377\11\22\33\377\14\25 \377\14\24\36\377" +\ + "!\42\42\377##\42\377#$#\377#$#\377#$#\377$%$\377$%$\377%%%\377&&&\377" +\ + "'''\377(((\377()(\377)*)\377*+*\377+,+\377-.-\377/0/\377121\377454\377" +\ + "787\377:;:\377\77A\77\377CED\377IKJ\377OQP\377VWV\377\134^\134\377bd" +\ + "b\377hjg\377kok\377orp\377LU]\377\33\61R\377 :^\377!=c\377\42;d\377!" +\ + "h\377\42\77i\377$@j\377" +\ + "%Am\377&Do\377&Er\377&Gt\377(Hv\377)Ky\377*L{\377*M}\377*N}\377+O\177" +\ + "\377,P\200\377,N~\377\32\27.\377\226\0w\377\354\0\307\377\377\0\353\377" +\ + "\377\0\372\377\377\0\376\377\377\0\377\377\377\0\377\377\376\0\376\377" +\ + "\377\0\372\377\377\0\362\377\376\0\341\377\273\0\241\377\300\0\13\377" +\ + "\377\0\0\377\377\0\0\377\363\0\0\377\337\0\0\377\232\0\0\377\270\0\206" +\ + "\377\377\0\377\377\376\0\377\377\377\0\377\377\377\0\376\377\377\0\377" +\ + "\377\377\0\376\377\377\0\377\377\377\0\371\377\377\0\352\377\335\0\266" +\ + "\377M\0<\377\11\21\32\377\14\25!\377\14\25 \377\13\24\37\377\12\22\35" +\ + "\377\30\34\37\377$$$\377$$$\377$%$\377$%$\377%&%\377&'&\377()(\377)*" +\ + ")\377+,+\377+,+\377-.-\377/0/\377010\377121\377454\377676\3779;9\377" +\ + "<>=\377@AA\377CED\377IJI\377NPN\377TVT\377Y[Y\377^`^\377cfd\377gjh\377" +\ + "knk\377nqo\377EO^\377\35\65W\377 ;a\377\42;b\377!\377\16\359\377\10\22$\134\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\31\62\334\21!@\376\22$E\377" +\ + "\25(I\377\26+N\377\30.R\377\31\60U\377\32\62X\377\35\66\134\377\368_" +\ + "\377 :a\377 :b\377!h\377#@k\377$Al\377%Cn\377&Ep\377" +\ + "'Er\377(Gt\377'Hv\377(Jx\377)Kz\377*Lz\377*L{\377*L{\377*Lz\377\33\62" +\ + "Q\3778\7\64\377\205\0j\377\333\0\263\377\354\0\310\377\363\0\322\377" +\ + "\363\0\323\377\352\0\306\377\333\0\261\377\231\0o\377|\0.\377\262\0\0" +\ + "\377\312\0\0\377\247\0\0\377b\0\0\377=\2\3\377\6\11\17\377\34\4 \377" +\ + "\212\0p\377\341\0\272\377\371\0\332\377\377\0\355\377\377\0\364\377\377" +\ + "\0\365\377\377\0\356\377\371\0\332\377\341\0\272\377\207\0l\377\35\4" +\ + "\31\377\12\23\35\377\14\25!\377\14\25 \377\14\25 \377\13\24 \377\13\24" +\ + "\37\377\12\22\35\377\15\22\31\377\42##\377%&%\377&'&\377(('\377***\377" +\ + "++*\377-.-\377/0/\377010\377121\377343\377455\377776\3778:9\377<=<\377" +\ + ">\77\77\377ABA\377EFE\377IKI\377MOM\377RTQ\377WYW\377[^\134\377aba\377" +\ + "dgd\377fig\377ink\377mpm\377\35\63P\377\37\67[\377 ;`\377!:b\377!;c\377" +\ + "\379`\377\379`\377\34\65[\377\34\64X\377\33\62W\377\30/R\377\27,O\377" +\ + "\25)J\377\22%E\377\21!@\377\17\36:\376\13\26.\331\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\13\24/\17" +\ + "\36<\377\22\42@\377\22%F\377\25)K\377\26+N\377\30/R\377\32\61V\377\33" +\ + "\64Y\377\35\66\134\377\379_\377\37:a\377!:b\377\42=\377\77A\77" +\ + "\377ACB\377CDC\377GIG\377IKJ\377MPN\377RTR\377UXV\377Z\134Z\377^a^\377" +\ + "adb\377egf\377fih\377ilj\377DO\134\377\36\65W\377 ;^\377!;a\377 :a\377" +\ + "\37:`\377\378_\377\36\67]\377\34\65Z\377\33\62W\377\30/S\377\30.P\377" +\ + "\25*L\377\23'G\377\22#B\377\20\37=\377\16\33\66\377\3\7\17+\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\13\25)\232\20 >\377\22#B\376\23&G\377\25)K\377\30-P\377\31/S\377" +\ + "\32\61V\377\36\65Z\377\36\67\134\377\378_\377!9a\377!;b\377!;c\377#=" +\ + "f\377$\77h\377$\77i\377%Ak\377$Bl\377&Dn\377&Dp\377'Dq\377&Fs\377&Gs" +\ + "\377)Ht\377(Ht\377'Gs\377'Fp\377%Cl\377#Ah\377!=c\377 9\134\377\36\64" +\ + "U\377\32/K\377\30+D\377\24&<\377\22!\65\377\21\36\60\377\17\33+\377\16" +\ + "\31(\377\15\27%\377\14\26#\377\14\25\42\377\14\25!\377\13\24 \377\13" +\ + "\25!\377\13\25!\377\13\24 \377\10\20\31\377\10\17\30\377\10\17\30\377" +\ + "\11\20\31\377\13\24\37\377\14\25!\377\14\25!\377\14\25!\377\14\25!\377" +\ + "\14\25!\377\14\25!\377\14\25!\377\14\25!\377\14\25!\377\13\23\37\377" +\ + "\10\17\31\377\32\34\36\377)*(\377+,+\377./.\377000\377243\377566\377" +\ + "888\377:;:\377<>=\377>\77>\377ABA\377BCB\377DED\377GHF\377IKI\377KML" +\ + "\377OPO\377RSR\377UYW\377X[Y\377\134^]\377_a`\377aeb\377dfe\377fig\377" +\ + "U\134`\377\33\63U\377 8]\377 :_\377!;`\377\379a\377\35\67^\377\36\67" +\ + "]\377\35\65Z\377\33\63X\377\31\61U\377\30.R\377\26+N\377\24'I\377\23" +\ + "$E\377\21!@\377\16\36:\377\11\22%\230\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\15\31\62\363\20 >\376\22#B\377\23&G\377\27*M\377\27-P\377\31/S\377\34" +\ + "\62V\377\36\65Z\377\36\66\134\377\378^\377 9`\377!:b\377\42g\377$\77h\377%@j\377%Ak\377&Cm\377%Cn\377%Co\377&Dq\377'Ep\377" +\ + "&Eq\377&Dp\377&Co\377$Bk\377#@g\377!<\377\77A\77\377BCB\377CED\377FGF\377HIH\377JKJ\377KML\377NPO" +\ + "\377PRR\377RUS\377UXV\377YZY\377Z]\134\377]`^\377^a`\377aca\377`ca\377" +\ + "Y^`\377\35\63T\377 8[\377\42:a\377 ;a\377\378`\377\36\67^\377\35\65\134" +\ + "\377\34\64Y\377\33\62W\377\32\61U\377\30/R\377\26+N\377\24)K\377\23%" +\ + "E\377\22#A\376\17\36;\376\14\27\60\361\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\4\13\24/\17\349\377\22!>\377\22#C\377\24'G\377\26*M\377\27" +\ + "-O\377\33\61T\377\34\63X\377\34\64Y\377\36\66\134\377 9^\377!:a\377#" +\ + "f\377$\77h\377%\77i\377%Aj\377$Ak\377%Bl\377%C" +\ + "n\377&Bm\377&Cn\377$Bl\377$Aj\377$@i\377#=e\377!;_\377\378Z\377\34\63" +\ + "S\377\32/K\377\30+E\377\25'>\377\23#8\377\21\37\63\377\17\34.\377\16" +\ + "\32*\377\16\31(\377\15\30&\377\14\27%\377\14\26$\377\14\26#\377\14\26" +\ + "#\377\14\26#\377\14\26#\377\14\26#\377\14\26#\377\15\27$\377\14\26$\377" +\ + "\14\26#\377\14\26#\377\14\26#\377\14\26#\377\14\26#\377\14\26#\377\14" +\ + "\26#\377\14\26#\377\15\26$\377\15\26$\377\14\25!\377\10\17\32\377#$$" +\ + "\377.//\377121\377465\377898\377;<:\377>@>\377BCB\377EFD\377GHG\377I" +\ + "JJ\377KML\377NON\377OQO\377QSR\377RTT\377TWU\377UXV\377VYX\377Y\134Z" +\ + "\377Z][\377[^\134\377]`^\377_b_\377Y]]\377\42\67V\377 8]\377\42:`\377" +\ + "!9a\377 8_\377\36\67]\377\35\66[\377\35\65Z\377\34\64X\377\33\62V\377" +\ + "\31/S\377\26,N\377\25*L\377\23&G\377\22#D\377\20 =\377\16\33\67\377\3" +\ + "\7\21+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\17\37\205\17" +\ + "\36<\377\21 >\377\23%D\377\24(H\377\26*M\377\31.Q\377\33\61T\377\34\63" +\ + "W\377\37\64Y\377\36\66[\377 8^\377\42;a\377#;b\377#f\377" +\ + "%\77g\377%@i\377%@j\377%Aj\377%Ak\377%@k\377$Bj\377%Bk\377$Ai\377#\77" +\ + "g\377\42e\377\42=b\377!:^" +\ + "\377\37\67Y\377\35\64T\377\32\60O\377\31-H\377\27)C\377\25&=\377\23#" +\ + "8\377\22 \64\377\20\36\60\377\20\34.\377\17\33+\377\16\32*\377\16\32" +\ + ")\377\16\31)\377\16\31)\377\16\31)\377\16\32)\377\16\32)\377\16\32)\377" +\ + "\16\32*\377\16\32*\377\16\32)\377\16\32*\377\16\31)\377\16\31)\377\16" +\ + "\31)\377\16\31(\377\16\31(\377\16\31)\377\16\32)\377\16\31)\377\15\30" +\ + "&\377\11\21\34\377120\377565\3778:9\377=>=\377@BA\377DFE\377GHG\377J" +\ + "LK\377MOM\377NQO\377PRQ\377RUS\377SUT\377SVV\377UWV\377UXW\377VYW\377" +\ + "WYX\377WYX\377Y[Y\377KRW\377,>V\377\37\66[\377#:^\377\429_\377\42;`\377" +\ + "!9_\377 8^\377\378^\377\36\66\134\377\35\65[\377\33\62W\377\33\62U\377" +\ + "\31/S\377\27-P\377\25*L\377\23'H\377\22#C\377\20 \77\376\17\36<\376\12" +\ + "\24+\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\14\27/\365\20\36:\376\21!\77\376\22$C\377\25(H\377" +\ + "\30+L\377\32/Q\377\33\61T\377\35\63V\377\37\65Y\377 8\134\377\42:_\377" +\ + "\42:`\377$=b\377&>d\377%=d\377%\77g\377&\77g\377'@h\377%\77g\377&@g\377" +\ + "%\77f\377%\77g\377$>f\377#=c\377\42" +\ + "c\377%=d\377'>e\377'@f\377'@h\377'\77g\377'@h\377'@g\377%\77f\377&\77" +\ + "e\377$=d\377$b\377" +\ + "(\77e\377'\77e\377(\77e\377(@g\377(Ah\377(Ag\377(@g\377&\77e\377&>c\377" +\ + "%=b\377#;_\377\429\134\377!6X\377\37\64U\377\35\62Q\377\34/M\377\33-" +\ + "I\377\31+E\377\30)A\377\26'\77\377\25%<\377\25$;\377\24$9\377\24#9\377" +\ + "\24#8\377\24#8\377\24#8\377\24#8\377\25#9\377\24#9\377\24$:\377\25$:" +\ + "\377\25#:\377\24#9\377\24#9\377\24#8\377\24\428\377\24\428\377\24#\67" +\ + "\377\24#8\377\24#8\377\24\42\67\377\22\37\62\377\23\34(\377=>=\377>@" +\ + "\77\377ACB\377DFE\377HJI\377JML\377LNN\377NQQ\377QSS\377QTT\377RTT\377" +\ + "SUV\377SUV\377QUV\377QTU\377PTT\377PTT\377QRS\3774AT\377%:^\377%=c\377" +\ + "&\376\16\339\377\5\11\25C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\6\15\33m\15\32\64\377\17\359\377\22!>\377\23$B\377\27)H\377\31," +\ + "M\377\33.O\377\36\62T\377 4W\377\42\67Z\377#9]\377&;`\377&=a\377(>c\377" +\ + "*Ae\377)@f\377*Ah\377(@f\377)Ag\377)Ag\377)@g\377)@e\377'\77c\377&=b" +\ + "\377$;^\377#9[\377\42\66X\377 4U\377\36\62Q\377\35\60N\377\33.K\377\33" +\ + ",G\377\31+E\377\30*C\377\27(A\377\30(@\377\27(\77\377\27'\77\377\27'" +\ + "\77\377\27'\77\377\27(@\377\27(@\377\27(@\377\27(@\377\27(@\377\27(@" +\ + "\377\27(@\377\27'@\377\27'\77\377\27'\77\377\27'>\377\27'>\377\27'\77" +\ + "\377\27'\77\377\27&<\377\24!\65\377\27\37+\377@BA\377@CC\377CEE\377E" +\ + "HH\377HJJ\377JMM\377LPP\377NRQ\377PRS\377PST\377QTU\377QTU\377PST\377" +\ + "PST\377NQS\377NQR\377NQR\377=FS\377%:^\377&=d\377&=c\377&>e\377$\377\16\34:\377" +\ + "\7\16\36g\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\5\14\27\203\15\32\65\377\17\359\377\21 =\377\23$A\377\27)H\377\31+K" +\ + "\377\34/P\377\37\63T\377!6X\377#7Z\377$:]\377';`\377'>b\377)\77d\377" +\ + "+Ae\377,Bg\377+Af\377*Bh\377+Bg\377*Af\377*Ag\377*Af\377*@d\377(>b\377" +\ + "&<_\377%9[\377\42\67X\377!6U\377!4S\377\37\62P\377\35\61M\377\35.J\377" +\ + "\34-I\377\34-H\377\33,F\377\33+F\377\32+E\377\32,F\377\32+F\377\32+E" +\ + "\377\33,G\377\33,G\377\32,G\377\33,G\377\33,G\377\32,F\377\32,G\377\33" +\ + ",G\377\32+E\377\32+E\377\32+D\377\33+F\377\32+D\377\31)A\377\27$8\377" +\ + "\33\42-\377BDD\377BED\377EGG\377FII\377HKL\377JMN\377LOP\377MPQ\377N" +\ + "QS\377OQS\377PRT\377NQS\377MPR\377LOQ\377KNO\377LNP\377AHR\377&<_\377" +\ + "(>d\377(@e\377'\77f\377%=d\377#;b\377#:a\377!8^\377\37\65[\377\36\64" +\ + "Z\377\34\63X\377\33\61U\377\30-Q\377\25)L\377\24'I\377\22$E\377\21!B" +\ + "\377\17\37>\377\17\35;\377\6\14\31}\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\15\32\217\14\31\63\377\16" +\ + "\358\377\21 <\377\23$A\377\26(F\377\31+J\377\34.O\377\37\62T\377!6W\377" +\ + "$8[\377&;^\377'<_\377*\77c\377+Ae\377-Bg\377,Cg\377,Bg\377-Ch\377-Cg" +\ + "\377,Ch\377,Bg\377+Ae\377+Ae\377*@c\377(=`\377'<^\377%:[\377#8X\377\42" +\ + "\65T\377!5S\377 3P\377 1O\377\36\61M\377\37\60M\377\36\60K\377\36\60" +\ + "L\377\36\60L\377\36\60L\377\36\60L\377\36\61M\377\36\61M\377\36\61M\377" +\ + "\36\61M\377\36\61M\377\37\61M\377\36\60M\377\36\60K\377\36\60L\377\36" +\ + "\60L\377\36\60L\377\36\60K\377\36/I\377\34,D\377\31%:\377(,3\377BEF\377" +\ + "CFG\377EGJ\377GIK\377IKM\377JMO\377KNQ\377KOQ\377MPR\377LOR\377KNR\377" +\ + "LOR\377KNQ\377IMP\377HKO\377DHM\377)>_\377)\77d\377*@g\377)@g\377'>f" +\ + "\377%=e\377$a\377,@d\377-Bf\377.Dh\377/Di\377/Ci\3770Di\377/Ei\377/" +\ + "Ei\377.Dh\377-Cg\377-Be\377,@d\377+\77c\377*>`\377(<^\377(;[\377&9Y\377" +\ + "%8X\377$7V\377#5T\377\42\66S\377\42\65S\377\42\65R\377\42\65R\377\42" +\ + "\65R\377\42\65R\377\42\65S\377\42\65S\377\42\66S\377\42\65S\377#7T\377" +\ + "\42\66S\377#6S\377\42\66S\377#5R\377\42\65R\377\42\65R\377\42\65Q\377" +\ + "\42\63O\377 /G\377\34':\3779;>\377EGI\377EHI\377FJL\377GKM\377ILN\377" +\ + "JMP\377JNP\377KNQ\377JMQ\377JMQ\377JMP\377HLP\377HKN\377GJM\377EHK\377" +\ + "-@`\377+Bg\377+Ah\377)Ah\377(Ah\377'>f\377%a\377,Ad\377" +\ + "/Cg\3770Eh\3771Fj\3771Fk\3772Gl\3773Gm\3773Hm\3771Gl\3771Gm\3770Fk\377" +\ + "0Ch\377.Cg\377-Ae\377,@c\377*\77a\377)>^\377)<^\377(<]\377';[\377(<[" +\ + "\377(<[\377';Z\377(;Z\377'<[\377';Z\377';Z\377(;[\377(<[\377(;[\377(" +\ + "<[\377(;Z\377(;Z\377';Z\377)\377" +\ + "CEJ\377EIK\377EHL\377GIN\377GKO\377ILP\377ILP\377IMP\377IMQ\377HKP\377" +\ + "HLP\377FJO\377CGL\377@FO\377BFL\3772C`\377-Ci\377.Dk\377+Ck\377+Bi\377" +\ + "(\77g\377&=d\377$\377\6\15" +\ + "\33v\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\12\25" +\ + "f\14\30\62\377\15\32\64\376\20\369\376\22!>\377\26&D\377\31*I\377\36" +\ + "/N\377!3T\377$6W\377'9\134\377)<^\377,\77b\377/Bf\3771Eh\3772Fk\3773" +\ + "Gl\3774Im\3774In\3775Jn\3775Ko\3774Io\3774In\3774Im\3773Gk\3771Ei\377" +\ + "0Ei\3770Cg\377/Cf\377/Ce\377-Bd\377-Ac\377.Ab\377-Ac\377,Ab\377-@a\377" +\ + "-Ab\377,Ab\377-Ab\377-Ac\377-Ab\377.Bc\377.Bd\377.Bc\377-Ab\377-Ac\377" +\ + "-Ac\377.Bc\377.Ab\377-\77]\377*9T\3776;E\377FIM\377FIO\377HKP\377HKP" +\ + "\377HLR\377ILQ\377ILQ\377ILR\377HKQ\377GKP\377FJO\377FIN\377>CN\377." +\ + "Ac\3770Ej\3770Fm\377.El\377-Dl\377,Bj\377)@h\377'\77f\377%b\377" +\ + ".Bd\3771Dg\3774Fk\3775Im\3778Kq\3778Mr\3779Mr\377:Nt\377:Ot\377:Ou\377" +\ + ";Pu\377:Ot\3779Ns\3779Ms\3779Nr\3778Mp\3778Lp\3777Lo\3777Ko\3778Ln\377" +\ + "7Ko\3777Jm\3777Ko\3777Ko\3777Ko\3777Ko\3778Lp\3779Lp\3778Lp\3778Mp\377" +\ + "9Lo\3779Lo\3779Lp\3779Mp\377:Lo\3779Jj\3775C`\377DJT\377JMU\377JMT\377" +\ + "IMU\377INU\377ILT\377HLS\377HLS\377ILS\377GKQ\377EIP\377EHN\377BDI\377" +\ + "7Hf\3774Ip\3772Ho\3770Fn\377-Dm\377+Bi\377(\77g\377&=d\377#:a\377 6]" +\ + "\377\34\62Y\377\31/T\377\25,P\377\23(L\377\22%H\377\21#D\377\20 @\377" +\ + "\17\36>\377\14\31\65\346\0\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\11\23'\266\15\32\66\377\15\32\65\376\20\359\376\21!>\377\25" +\ + "%D\377\33,J\377\37\62Q\377$6W\377)<]\377,\77a\3770Cf\3771Ej\3775In\377" +\ + "7Kp\3778Lr\377:Nt\377Sx\377=Qx\377=Rx\377=Rw\377" +\ + "=Qv\377=Qx\377=Qv\377Qv\377>Rv\377\77Ru\377\77" +\ + "Sv\377\77Ru\377>Oq\377:Ig\377FKY\377KNW\377JNW\377KPW\377JNW\377IMV\377" +\ + "IMU\377HLT\377FJR\377EHO\377DHO\377>I]\3777Kn\3775Kr\3774Ip\3771Ho\377" +\ + ".Fn\377,Cj\377)@g\377&=d\377\429`\377\36\64\134\377\32\60V\377\27,R\377" +\ + "\25*O\377\22'K\377\22%H\377\21#D\376\20 A\376\20 B\377\12\25,\261\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\13" +\ + "\30i\14\30\63\377\15\31\63\376\16\34\67\377\20\37:\377\23#A\377\30(G" +\ + "\377\35\60O\377\42\64V\377(:]\377,\77a\377/Cf\3773Gl\3776Io\3778Mr\377" +\ + "Jc\377:Ou\3779Nu\3777Mt\3775Kr\3772Hq\3770Fm\377" +\ + ",Cj\377*@g\377%Ry\377\77Tz\377@T{\377@T|\377AV~\377BV}\377BV~\377BV}" +\ + "\377BW~\377CW~\377BW|\377CX}\377CW|\377DW}\377CW|\377CX|\377DW}\377D" +\ + "W}\377DX~\377DX~\377EX}\377EX}\377EW}\377GY}\377FZ\177\377GZ\177\377" +\ + "EW|\377EUw\377@Ok\377GN\134\377LPZ\377LPZ\377KPY\377JNW\377INV\377HM" +\ + "U\377HKS\377;Jh\377;Os\377:Ov\3778Nu\3775Ks\3772Hp\377/El\377,Bi\377" +\ + "'=d\377\42\67^\377\34\62X\377\27-S\377\25+O\377\23(L\377\22%J\377\21" +\ + "$G\377\21\42D\376\20 A\376\17 C\377\15\32\67\321\0\0\0\27\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\15\35}\13\32\66\377\15\32\66\377\16\34" +\ + "8\377\20\37<\377\22\42B\377\26(G\377\34.O\377\42\65X\377)<_\377-@f\377" +\ + "3El\3775Io\3778Lr\377;Ov\377>Qy\377@Sz\377BV|\377AW|\377AU|\377BV}\377" +\ + "CW}\377CW}\377DW~\377DX~\377EX~\377EX~\377DX~\377FY\177\377FY\177\377" +\ + "FY\177\377FY\177\377FZ\200\377GZ\200\377FZ\200\377GZ\200\377GZ\200\377" +\ + "FZ\200\377G[\177\377G[\177\377GZ~\377DUw\377ANk\377HM]\377LP[\377KNY" +\ + "\377JNW\377JOX\377JMV\377HLT\377GJR\3779Jk\377:Mr\3777Mt\3775Jq\3771" +\ + "Fm\377-Ci\377(=d\377\42\67]\377\34\62X\377\30-S\377\25*O\377\23'L\377" +\ + "\22%I\377\22$G\377\21\42D\377\20 B\377\17\37@\377\16\36@\377\6\17\37" +\ + "x\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\24\12\24)\300\16\339\377\14\32\65\376\17\35:\377\21!\77\377\24$E\377" +\ + "\27)K\377\34\60Q\377\42\66Z\377)<`\377/Bg\3773Fl\3776Jp\3779Nt\377=P" +\ + "v\377>Ry\377\77Sz\377\77Sy\377BV|\377CV}\377CV}\377CV}\377DW}\377DX~" +\ + "\377DX~\377FX~\377EX~\377EX~\377EW~\377FY\177\377FY\177\377FY~\377FY" +\ + "\177\377GZ\200\377H[\201\377GZ\201\377H[\200\377G[\200\377FX|\377EUt" +\ + "\377HPf\377QT_\377KPY\377KOZ\377JNW\377JNW\377HMU\377HKR\377AHV\3776" +\ + "Gj\3775In\3772Fl\377-Bh\377';a\377!6[\377\34\61V\377\27,Q\377\25)M\377" +\ + "\23(K\377\22%I\377\22$F\377\20\42D\377\20 A\377\17\37@\376\20 C\377\13" +\ + "\27/\274\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\7\17A\11\25+\343\15\34:\377\15" +\ + "\349\376\17\36=\377\22\42A\377\23$F\377\27*L\377\32.R\377\37\63X\377" +\ + "&9^\377,@e\3771Dk\3775Io\3779Mr\377;Ou\377>Qw\377>Qx\377@Sy\377@Ty\377" +\ + "ATy\377BU|\377CW{\377DW|\377DX{\377EX}\377EX}\377EX~\377EY~\377GY~\377" +\ + "EX~\377GY~\377FY\177\377FY~\377GY\177\377GZ\177\377EW}\377EUy\377BQq" +\ + "\377DMb\377OS]\377KOY\377JNW\377IMV\377HKR\377EIP\377CFK\377.`\377)=a\377$8]\377\36\63X\377\31.S\377\26+O\377\24(M\377\22&J\377\22" +\ + "$G\377\22#E\377\20\42C\377\20 A\377\17\37\77\376\17 C\377\13\27\61\337" +\ + "\3\6\15\77\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\10\21" +\ + "^\12\26/\354\16\35=\377\16\35;\376\20\37>\377\21\42C\377\23$F\377\25" +\ + "'J\377\31,O\377\35\60U\377!4Y\377':_\377,\77e\3771Di\3775Hm\3778Jo\377" +\ + "9Lq\377;Nr\377=Pt\377>Pu\377@Rw\377\77Rw\377@Rx\377BTy\377CUy\377BVz" +\ + "\377CUz\377CVz\377DV{\377DV{\377DVz\377CV{\377DV|\377CU{\377DVz\377A" +\ + "Sv\377\77Nn\377BJ[\377HLT\377FIQ\377DHO\377AEL\377\77CI\377=@D\377-3" +\ + "=\377\37.K\377\35/P\377\32.Q\377\27+O\377\24(L\377\23&J\377\22%G\377" +\ + "\22#F\377\21\42D\377\20 A\377\17\37\77\377\17\36>\376\17\37B\377\13\30" +\ + "\63\354\2\7\20\134\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\2\5\14\201\12\25,\345\17\37@\377\16" +\ + "\35=\377\20\37>\377\20 A\377\21#D\377\22%F\377\25(J\377\31+N\377\33/" +\ + "S\377 3X\377\42\66Z\377':^\377+>b\377.Ad\3771Cg\3774Fi\3776Hl\3777Im" +\ + "\3777Jn\377:Lo\377:Lq\377:Mq\377;Mq\377=Nr\377B\3777;>\377" +\ + "58:\377145\377031\377\32$\65\377\24$A\377\23%E\377\23&G\377\22$E\377" +\ + "\22#E\377\20!B\377\20!A\377\20\37\77\377\16\36<\376\16\35=\377\17\37" +\ + "@\377\12\25-\345\2\5\13\204\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\25\0\2\5~\7\17!\350\16\35\77\376\17\36>\377\16\36=\376\17 \77\377" +\ + "\21 A\377\21\42C\377\23%E\377\23%F\377\24'H\377\26)K\377\31,M\377\34" +\ + ".P\377\36\60S\377!3V\377#5W\377%6Y\377):]\377)<^\377+=`\377+>a\377,\77" +\ + "a\377-\77a\377-@b\377-@b\377,>a\377+=`\377*=_\377(:]\377'9\134\377%7" +\ + "Y\377\42\63S\377 .F\377&,5\377)-.\377,.+\377,.+\377#')\377\24 \63\377" +\ + "\17\35;\377\20 \77\377\21 @\377\17 >\377\17\37\77\377\17\36<\377\16\35" +\ + ";\377\15\34:\376\16\34;\377\16\34;\376\7\17 \346\1\2\4\177\0\0\0\25\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\14\0\0\0i\4\11\22\332\12\25,\374\16\35\77\377\16\35=\377\16\35;\377" +\ + "\16\35=\377\17\36=\377\20\37\77\377\20 @\377\21!@\377\22\42B\377\23$" +\ + "D\377\23$E\377\25&F\377\26'H\377\26(I\377\30*J\377\30*K\377\31+M\377" +\ + "\32-M\377\32,L\377\33,N\377\32,M\377\31+L\377\31+L\377\30+K\377\27)J" +\ + "\377\26(I\377\25'G\377\24&F\377\22#B\377\21 @\377\17\36<\377\16\348\377" +\ + "\16\34\67\377\15\34:\377\17\36<\377\16\36=\377\17\36<\377\16\34:\377" +\ + "\15\348\377\15\33\67\376\15\338\377\15\33:\377\11\24)\373\3\10\21\324" +\ + "\0\0\0e\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;\0\0\0\220" +\ + "\5\13\27\363\11\21&\377\15\35;\377\16\34;\377\15\338\376\16\349\376\15" +\ + "\35:\377\16\35;\377\16\35;\377\17\35;\377\17\36<\377\20\36<\377\17\37" +\ + "=\377\20 >\377\21\37\77\377\21 @\377\21 \77\377\21 @\377\20 @\377\21" +\ + "!@\377\21!@\377\21!\77\377\20 >\377\20 >\377\20 >\377\17\37=\377\17\36" +\ + "<\377\17\36<\377\17\36;\377\17\35;\377\17\359\377\16\349\377\16\338\377" +\ + "\16\33\67\377\14\32\66\376\15\32\65\376\14\338\377\15\33\67\377\10\20" +\ + "$\377\5\12\26\352\0\0\0\211\0\0\0\66\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0\0{\3" +\ + "\7\16\345\5\14\31\377\11\22&\377\15\339\376\15\339\377\14\31\65\376\14" +\ + "\31\65\377\14\31\65\377\14\32\65\377\14\32\66\376\15\33\66\377\15\33" +\ + "\67\377\15\33\67\377\15\34\67\377\15\33\67\377\16\33\67\377\15\33\67" +\ + "\377\15\33\67\377\15\33\67\377\15\33\66\377\15\33\66\377\15\33\67\377" +\ + "\15\33\66\377\14\32\65\377\15\32\64\376\14\31\64\377\14\31\64\377\14" +\ + "\31\63\377\13\30\64\377\14\31\65\377\15\32\66\377\10\21$\377\5\13\30" +\ + "\374\3\6\16\331\0\0\0s\0\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0G\0\0\0\211\0\2\4\312\3\10\21" +\ + "\357\6\14\32\377\10\22'\377\12\24,\377\13\30\63\377\14\31\64\377\14\31" +\ + "\65\377\14\31\66\377\14\31\65\377\14\31\64\377\14\31\63\377\14\31\64" +\ + "\377\14\30\63\377\14\30\62\377\14\31\63\377\14\31\64\377\14\30\64\377" +\ + "\14\31\63\377\14\31\63\377\12\27\61\377\11\24*\377\10\22%\377\5\14\31" +\ + "\377\3\10\21\346\0\2\4\301\0\0\0\177\0\0\0@\0\0\0\6\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<\0\0\0h\0\0" +\ + "\0z\0\0\0\217\0\0\0\243\1\4\10\264\4\10\23\306\4\11\25\322\5\13\26\333" +\ + "\5\12\26\336\5\13\26\336\5\12\26\333\4\11\24\321\4\11\23\304\1\3\10\262" +\ + "\0\0\0\240\0\0\0\213\0\0\0v\0\0\0a\0\0\0\67\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" +\ + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" diff --git a/fah/SlotConfig.py b/fah/SlotConfig.py new file mode 100644 index 0000000..0e55da3 --- /dev/null +++ b/fah/SlotConfig.py @@ -0,0 +1,118 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import gtk +import gobject +import copy + +from fah.util import parse_bool +from fah.util import status_to_color + + +class SlotConfig: + def __init__( + self, id = -1, status = None, description = None, reason = None, + idle = False, options = {}, **kw): + + self.id = int(id) + self.status = status + self.description = description + self.reason = reason + self.idle = idle + self.options = options + + if status is not None: self.status = status.title() + if description is None: self.description = 'cpu' + + # Type + if self.description.startswith('cpu'): self.type = 'cpu' + elif self.description.startswith('gpu'): self.type = 'gpu' + else: raise Exception, 'Invalid slot type "%s"' % description + + + def add_to_ui(self, app): + wrapper = gobject.GObject() + wrapper.slot = copy.deepcopy(self) + app.slot_list.append((self.id, self.type, wrapper)) + + + @staticmethod + def clear_dialog(app): + app.slot_option_list.clear() + app.slot_type_cpu.set_active(True) + for name in 'gpu opencl cuda'.split(): + app.slot_option_widgets[name + '_index'].set_value(-1) + app.slot_option_widgets['cpus'].set_value(-1) + + + def save_dialog(self, app): + self.options = {} + + if app.slot_type_cpu.get_active(): + self.type = 'cpu' + + cpus = str(int(app.slot_option_widgets['cpus'].get_value())) + if int(cpus): self.options['cpus'] = cpus + + elif app.slot_type_gpu.get_active(): + self.type = 'gpu' + + for name in 'gpu opencl cuda'.split(): + idx = int(app.slot_option_widgets[name + '_index'].get_value()) + if idx == -1: + if name + '-index' in self.options: + del self.options[name + '-index'] + else: self.options[name + '-index'] = str(idx) + + # Extra options + def add_option(model, path, iter, data = None): + name = model.get(iter, 0)[0] + value = model.get(iter, 1)[0] + self.options[name] = value + + app.slot_option_list.foreach(add_option) + + + def load_dialog(self, app): + used = set() + + # Type + if self.type == 'cpu': app.slot_type_cpu.set_active(True) + elif self.type == 'gpu': app.slot_type_gpu.set_active(True) + else: raise Exception, 'Invalid slot type "%s"' % self.type + used.add('gpu') + + # SMP + if 'cpus' in self.options: cpus = float(self.options['cpus']) + else: cpus = -1 + app.slot_option_widgets['cpus'].set_value(cpus) + used.add('cpus') + + # GPU + for name in 'gpu opencl cuda'.split(): + if name + '-index' in self.options: + idx = float(self.options[name + '-index']) + else: idx = -1 + app.slot_option_widgets[name + '_index'].set_value(idx) + used.add(name + '-index') + + # Options + app.slot_option_list.clear() + for name, value in self.options.items(): + if not name in used: + app.slot_option_list.append((name, value)) diff --git a/fah/Version.py b/fah/Version.py new file mode 100644 index 0000000..e939561 --- /dev/null +++ b/fah/Version.py @@ -0,0 +1 @@ +version = '7.4.4' diff --git a/fah/WidgetMap.py b/fah/WidgetMap.py new file mode 100644 index 0000000..608be12 --- /dev/null +++ b/fah/WidgetMap.py @@ -0,0 +1,49 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import gtk + + +class WidgetMap(dict): + def __init__(self, widgets, suffix = None, prefix = None): + self.suffix = suffix + self.prefix = prefix + self.list = [] + + try: + for widget in widgets: self.find(widget) + except: self.find(widgets) + + def add(self, widget): + if widget is None: return + name = gtk.Buildable.get_name(widget) + + if self.suffix is not None: name = name[0:-len(self.suffix)] + if self.prefix is not None: name = name[len(self.prefix):] + self[name] = widget + self.list.append(widget) + + def find(self, widget): + name = gtk.Buildable.get_name(widget) + + if (name and (self.suffix is None or name.endswith(self.suffix)) and + (self.prefix is None or name.startswith(self.prefix))): + self.add(widget) + + if isinstance(widget, gtk.Container): + widget.foreach(self.find) diff --git a/fah/__init__.py b/fah/__init__.py new file mode 100644 index 0000000..da8e4ef --- /dev/null +++ b/fah/__init__.py @@ -0,0 +1,31 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +# fah + +import db +import util + +from Version import * +from Icon import * +from SlotConfig import * +from ClientConfig import * +from Connection import * +from Client import * +from WidgetMap import * +from FAHControl import * diff --git a/fah/db/Column.py b/fah/db/Column.py new file mode 100644 index 0000000..23ecbb5 --- /dev/null +++ b/fah/db/Column.py @@ -0,0 +1,46 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +class Column: + def __init__(self, name, dbType, constraits, auto = False): + self.name = name + self.dbType = dbType.lower() + self.constraints = constraits + self.auto = auto + + + def get_name(self): return self.name + def is_auto(self): return self.auto + + + def get_db_value(self, value): + if self.dbType == 'text': return "'%s'" % str(value).replace("'", "''") + if self.dbType == 'integer': return '%d' % value + if self.dbType == 'real': return '%f' % value + if self.dbType == 'boolean': + if value: return '1' + else: return '0' + + + def get_sql(self): + return '"%s" %s %s' % (self.name, self.dbType, self.constraints) + + + def __hash__(self): return self.name.__hash__() + def __cmp__(self, other): return self.name.__cmp__(other.name) + def __str__(self): return self.name diff --git a/fah/db/Database.py b/fah/db/Database.py new file mode 100644 index 0000000..b0f450f --- /dev/null +++ b/fah/db/Database.py @@ -0,0 +1,174 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +from fah.db import Column, Table + +import sqlite3 + + +class Database: + tables = [ + Table('config', + [ + Column('name', 'Text', 'NOT NULL'), + Column('value', 'Text', 'NOT NULL'), + ], + 'PRIMARY KEY (name)'), + + Table('clients', + [ + Column('name', 'Text', 'NOT NULL'), + Column('address', 'Text', 'NOT NULL'), + Column('port', 'Integer', 'NOT NULL'), + Column('password', 'Text', 'NOT NULL'), + ], + 'PRIMARY KEY (name)'), + ] + + + def __init__(self, filename): + self.filename = filename + self.conn = sqlite3.connect(filename) + self.conn.row_factory = sqlite3.Row + self.queue = {} + + + def get_table(self, name): + for table in self.tables: + if table.name == name: return table + + raise Exception, 'Table "%s" not found' % name + + + def get_version(self): + return 6 + + + def get_current_version(self): + return int(self.execute_one('PRAGMA user_version')[0]) + + + def set_current_version(self, version): + self.write('PRAGMA user_version=%d' % version, True) + + + def set(self, name, value, commit = True, queue = False): + if queue: self.queue[name] = value + else: + self.insert('config', name = name, value = value) + if commit: self.commit() + + + def clear(self, name, commit = True): + self.delete('config', name = name) + if commit: self.commit() + + + def get(self, name): + c = self.get_table('config').select(self, 'value', name = name) + result = c.fetchone() + c.close() + if result: return result[0] + + + def has(self, name): + return self.get(name) != None + + + def default(self, name, default, commit = True): + if not self.has(name): self.set(name, default, commit) + + + def flush_queued(self): + if len(self.queue) == 0: return + + for name, value in self.queue.items(): + self.set(name, value, commit = False) + + self.commit() + self.queue.clear() + + + def execute(self, sql): + #print 'SQL:', sql + c = self.conn.cursor() + c.execute(sql) + return c + + + def execute_one(self, sql): + c = self.execute(sql) + result = c.fetchone() + c.close() + return result + + + def write(self, sql, commit = False): + self.execute(sql).close() + if commit: self.commit() + + + def commit(self): + self.conn.commit() + + + def rollback(self): + self.conn.rollback() + + + def insert(self, table, **kwargs): + self.get_table(table).insert(self, **kwargs) + + + def delete(self, table, **kwargs): + self.get_table(table).delete(self, **kwargs) + + + def select(self, table, cols = None, **kwargs): + return self.get_table(table).select(self, cols, **kwargs) + + + def create(self): + for table in self.tables: + table.create(self) + self.commit() + + + def validate(self): + current = self.get_current_version() + if self.get_version() < current: + raise Exception, \ + ('Configuration database "%s" version %d is newer than is ' + 'supported %d') % (self.filename, current, self.get_version()) + + elif self.get_version() != current: + # Create or upgrade DB + + if current == 0: self.create() + else: + if current <= 2: + # Just drop and recreate the clients table + self.execute('DROP TABLE IF EXISTS clients') + for table in self.tables: + if table.name == 'clients': table.create(self) + + if current <= 5: + self.execute('DROP TABLE IF EXISTS projects') + + self.set_current_version(self.get_version()) + self.commit() diff --git a/fah/db/Table.py b/fah/db/Table.py new file mode 100644 index 0000000..562b448 --- /dev/null +++ b/fah/db/Table.py @@ -0,0 +1,90 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +from fah.db import Column + + +class Table: + def __init__(self, name, cols, constraints = ''): + self.name = name + self.cols = cols + self.constraints = constraints + + + def where(self, **kwargs): + if len(kwargs) == 0: return '' + sql = 'WHERE ' + + if len(kwargs) == 1 and 'where' in kwargs: + sql += kwargs['where'] + + else: + sql +=\ + ' AND '.join(map(lambda i: '"%s"=\'%s\'' % i, kwargs.items())) + + return sql + + + def create(self, db): + sql = 'CREATE TABLE IF NOT EXISTS "%s" (%s' % ( + self.name, ','.join(map(Column.get_sql, self.cols))) + + if self.constraints: sql += ',%s' % self.constraints + sql += ')' + + db.execute(sql).close() + + + def insert(self, db, **kwargs): + cols = filter(lambda col: col.name in kwargs, self.cols) + + # Error checking + if len(cols) != len(kwargs): + col_names = set(map(Column.get_name, cols)) + missing = filter(lambda kw: not kw in col_names, kwargs.keys()) + raise Exception, 'Table %s does not have column(s) %s' % ( + self.name, ', '.join(missing)) + + sql = 'REPLACE INTO "%s" ("%s") VALUES (%s)' % ( + self.name, '","'.join(map(Column.get_name, cols)), + ','.join(map(lambda col: col.get_db_value(kwargs[col.name]), cols))) + + db.execute(sql).close() + + + def select(self, db, cols = None, **kwargs): + if cols is None: + cols = '"' + '","'.join(map(str, self.cols)) + '"' + + sql = 'SELECT %s FROM %s' % (cols, self.name) + if 'orderby' in kwargs: + sql += ' ORDER BY ' + kwargs['orderby'] + del kwargs['orderby'] + + sql += ' ' + self.where(**kwargs) + + return db.execute(sql) + + + def delete(self, db, **kwargs): + sql = 'DELETE FROM %s %s' % (self.name, self.where(**kwargs)) + db.execute(sql).close() + + + def drop(self, db): + db.execute('DROP TABLE IF EXISTS ' + self.name).close() diff --git a/fah/db/__init__.py b/fah/db/__init__.py new file mode 100644 index 0000000..7acf64b --- /dev/null +++ b/fah/db/__init__.py @@ -0,0 +1,23 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +# fah.db + +from Column import * +from Table import * +from Database import * diff --git a/fah/util/EntryValidator.py b/fah/util/EntryValidator.py new file mode 100644 index 0000000..b83247e --- /dev/null +++ b/fah/util/EntryValidator.py @@ -0,0 +1,50 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import gtk +import re + +class EntryValidator: + def __init__(self, app, entry, pattern, description = ''): + self.app = app + self.entry = entry + self.re = re.compile(pattern) + self.description = description + self.text = entry.get_text() + + entry.connect('focus-in-event', self.on_focus_in_event) + entry.connect('focus-out-event', self.on_focus_out_event) + + + def is_valid(self): + return self.re.match(self.entry.get_text()) is not None + + + def on_focus_in_event(self, widget, event, data = None): + self.text = self.entry.get_text() + return False # let the signal propagate + + + def on_focus_out_event(self, widget, event, data = None): + if not self.is_valid(): + self.app.error('Invalid value\n%s' % self.description) + self.entry.set_text(self.text) + + else: self.text = self.entry.get_text() + + return False # let the signal propagate diff --git a/fah/util/OrderedDict.py b/fah/util/OrderedDict.py new file mode 100644 index 0000000..ae6f14b --- /dev/null +++ b/fah/util/OrderedDict.py @@ -0,0 +1,118 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +from UserDict import DictMixin + +class OrderedDict(dict, DictMixin): + + def __init__(self, *args, **kwds): + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % len(args)) + try: + self.__end + except AttributeError: + self.clear() + self.update(*args, **kwds) + + def clear(self): + self.__end = end = [] + end += [None, end, end] # sentinel node for doubly linked list + self.__map = {} # key --> [key, prev, next] + dict.clear(self) + + def __setitem__(self, key, value): + if key not in self: + end = self.__end + curr = end[1] + curr[2] = end[1] = self.__map[key] = [key, curr, end] + dict.__setitem__(self, key, value) + + def __delitem__(self, key): + dict.__delitem__(self, key) + key, prev, next = self.__map.pop(key) + prev[2] = next + next[1] = prev + + def __iter__(self): + end = self.__end + curr = end[2] + while curr is not end: + yield curr[0] + curr = curr[2] + + def __reversed__(self): + end = self.__end + curr = end[1] + while curr is not end: + yield curr[0] + curr = curr[1] + + def popitem(self, last=True): + if not self: + raise KeyError('dictionary is empty') + if last: + key = reversed(self).next() + else: + key = iter(self).next() + value = self.pop(key) + return key, value + + def __reduce__(self): + items = [[k, self[k]] for k in self] + tmp = self.__map, self.__end + del self.__map, self.__end + inst_dict = vars(self).copy() + self.__map, self.__end = tmp + if inst_dict: + return (self.__class__, (items,), inst_dict) + return self.__class__, (items,) + + def keys(self): + return list(self) + + setdefault = DictMixin.setdefault + update = DictMixin.update + pop = DictMixin.pop + values = DictMixin.values + items = DictMixin.items + iterkeys = DictMixin.iterkeys + itervalues = DictMixin.itervalues + iteritems = DictMixin.iteritems + + def __repr__(self): + if not self: + return '%s()' % (self.__class__.__name__,) + return '%s(%r)' % (self.__class__.__name__, self.items()) + + def copy(self): + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + if isinstance(other, OrderedDict): + return len(self)==len(other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other diff --git a/fah/util/PasswordValidator.py b/fah/util/PasswordValidator.py new file mode 100644 index 0000000..8697224 --- /dev/null +++ b/fah/util/PasswordValidator.py @@ -0,0 +1,74 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import gtk + +from fah.util.EntryValidator import EntryValidator + + +class PasswordValidator(EntryValidator): + def __init__(self, app, password_entry, reenter_entry, valid_image, + valid_text, pattern = r'^.*$', description = ''): + EntryValidator.__init__(self, app, password_entry, pattern, description) + + self.password_entry = password_entry + self.reenter_entry = reenter_entry + self.valid_image = valid_image + self.valid_text = valid_text + + self.update() + + password_entry.connect('changed', self.on_changed) + reenter_entry.connect('changed', self.on_changed) + + + def set_good(self): + if not self.is_valid(): self.password_entry.set_text('') + password = self.password_entry.get_text() + self.reenter_entry.set_text(password) + + + def is_good(self): + return self.entries_match() and self.is_valid() + + + def entries_match(self): + password = self.password_entry.get_text() + reenter = self.reenter_entry.get_text() + return password == reenter + + + def update(self): + valid = False + if self.is_valid(): + if self.entries_match(): valid = True + else: + self.valid_text.set_text('Entries do not match') + else: self.valid_text.set_text('Entry is invalid') + + if valid: + self.valid_image.set_from_stock(gtk.STOCK_YES, gtk.ICON_SIZE_BUTTON) + self.valid_text.set_text('Entries match') + else: + self.valid_image.set_from_stock(gtk.STOCK_DIALOG_ERROR, + gtk.ICON_SIZE_BUTTON) + + + def on_changed(self, widget, data = None): + self.update() + return False # Let the signal propagate diff --git a/fah/util/SingleApp.py b/fah/util/SingleApp.py new file mode 100644 index 0000000..9a6e4f8 --- /dev/null +++ b/fah/util/SingleApp.py @@ -0,0 +1,81 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +import sys +import socket +import threading +import SocketServer + +import gtk + +from fah.Icon import get_icon + +single_app_host = '127.0.0.1' +single_app_port = 32455 +single_app_addr = (single_app_host, single_app_port) + + +class SingleAppRequestHandler(SocketServer.BaseRequestHandler): + def handle(self): + cmd = self.request.recv(1024).strip() + + if cmd == 'PING': + self.server.ping.set() + self.request.send('OK\r\n') + + elif cmd == 'EXIT': + self.server.exit_requested.set() + self.request.send('OK\r\n') + + + +class SingleAppServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): + allow_reuse_address = True + + def __init__(self): + # Check to see if we are already running + self.check_for_instance() + + self.ping = threading.Event() + self.exit_requested = threading.Event() + + SocketServer.TCPServer.__init__( + self, single_app_addr, SingleAppRequestHandler) + + thread = threading.Thread(target = self.serve_forever) + # Exit the server thread when the main thread terminates + thread.setDaemon(True) + thread.start() + + + def check_for_instance(self): + sock = None + try: + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.connect(single_app_addr) + sock.send('PING') + if sock.recv(1024).strip() == 'OK': + print 'Already running' + sys.exit(1) + + except socket.error: + # Assume this is the first instance + return + + finally: + if sock is not None: sock.close() diff --git a/fah/util/__init__.py b/fah/util/__init__.py new file mode 100644 index 0000000..caa1b14 --- /dev/null +++ b/fah/util/__init__.py @@ -0,0 +1,203 @@ +''' + Folding@Home Client Control (FAHControl) + Copyright (C) 2010-2014 Stanford University + + 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 . +''' + +# fah.util +import sys +import os +import gtk + +from SingleApp import * +from EntryValidator import * +from PasswordValidator import * +from OrderedDict import * + + +def parse_bool(x): + if isinstance(x, bool): return x + return x.lower() in ['true', 't', '1', 'yes', 'y'] + + +def status_to_color(status): + status = status.upper() + + if status == 'PAUSED' or status == 'UPDATING': + return '#ffff55' + elif status == 'FINISHED' or status == 'OFFLINE' or status == 'UPLOADED': + return '#0080c0' + elif status == 'RUNNING' or status == 'ACTIVE' or status == 'ONLINE': + return '#1dd923' + elif status == 'FINISHING': + return '#7AD980' + elif status == 'FAILED' or status == 'ERROR' or status == 'FAULTY': + return '#ff0000' + elif status == 'SHUTDOWN' or status == 'CONNECTING': + return '#ff8b00' + elif status == 'OFFLINE': + return '#dddddd' + elif status == 'READY': + return '#1ef0bc' + elif status == 'DUMP': + return '#d2c272' + else: return None + + +def get_span_markup(text, bg = None, fg = 'black'): + markup = '/dev/null 2>&1); do + sleep 1 + let I+=1 + if [ $I -ge 60 ]; then break; fi +done + +if [ $I -lt 1 ]; then sleep 1; fi + +# move app if it was relocated to old place +# move must delayed becuase installd will try to register app in installed +# location after all scripts have been run, although it seems to just be a +# harmless error message in installer log +A1="/Applications/FAHControl.app" +A2="/Applications/Folding@home/FAHControl.app" +if [ -d "$A1" ]; then + if [ ! -d "$A2" ]; then + mv "$A1" "$A2" + else + # app was not relocated; delete old one (should only happen on 10.5) + rm -rf "$A1" + fi +fi + +# ensure no old group writeable in std install locations +# (installer overwrite will not change directory permissions) +if [ -d "$A1" ]; then chmod -R go-w "$A1"; fi +if [ -d "$A2" ]; then chmod -R go-w "$A2"; fi + +# do action +#"$@" diff --git a/osx/scripts/postflight b/osx/scripts/postflight new file mode 100755 index 0000000..653d708 --- /dev/null +++ b/osx/scripts/postflight @@ -0,0 +1,13 @@ +#!/bin/bash -e + +# fahcontrol postflight/postinstall + +D="/Applications/Folding@home" +if [ -d "$D" ]; then + chmod 0755 "$D" +else + mkdir -m 0755 "$D" +fi + +SCRIPTS="$(dirname "$0")" +"$SCRIPTS"/onquit diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c03fd57 --- /dev/null +++ b/setup.py @@ -0,0 +1,118 @@ +import sys +import os +import inspect + +dir = os.path.dirname(inspect.getfile(inspect.currentframe())) +if dir == '': dir = '.' +print 'dir =', dir + +os.chdir(dir) + +# Convert glade data +in_file = 'fah/FAHControl.glade' +out_file = 'fah/FAHControl_glade.py' +input = None +output = None +try: + input = open(in_file, 'r') + output = open(out_file, 'w') + + output.write('# -*- coding: utf8 -*-\n\n') + output.write('glade_data = """') + output.write(input.read()) + output.write('"""\n') +finally: + if input is not None: input.close() + if output is not None: output.close() + + +# Bootstrap +try: + import ez_setup + ez_setup.use_setuptools() +except: pass + +app = 'FAHControl' + +if sys.platform == 'darwin': + from setuptools import setup + + plist = dict( + CFBundleDisplayName = 'FAHControl', + CFBundleIdentifier = 'edu.stanford.folding.fahcontrol', + CFBundleSignature = '????', + NSHumanReadableCopyright = 'Copyright 2010-2014 Stanford University', + ) + + options = dict( + argv_emulation = False, + includes = 'cairo, pango, pangocairo, atk, gobject, gio', + iconfile = 'images/FAHControl.icns', + resources = ['/opt/local/share/themes'], + plist = plist, + ) + + extra_opts = dict( + app = [app], + options = {'py2app': options}, + setup_requires = ['py2app'], + ) + + # Hack around py2app problem with python scripts with out .py extension. + from py2app.util import PY_SUFFIXES + PY_SUFFIXES.append('') + +elif sys.platform == 'win32': + from cx_Freeze import setup, Executable + + e = Executable(app, base = 'Win32GUI', icon = 'images/FAHControl.ico') + options = {'build_exe': {'build_exe': 'gui'}} + extra_opts = dict(executables = [e], options = options) + +else: + from setuptools import setup, find_packages + + extra_opts = dict( + packages = find_packages(), + scripts = [app], + data_files = [('/usr/share/pixmaps', ['images/FAHControl.png'])], + install_requires = 'gtk2 >= 2.14.0', + ) + +try: + version = open('version/version.txt').read().strip() +except: version = None + +if version is not None: + open('fah/Version.py', 'w').write('version = \'%s\'\n' % version) + +description = \ +'''Folding@home is a distributed computing project using volunteered +computer resources run by Pandegroup of Stanford University. +''' +short_description = ''' +This package contains FAHControl, a graphical monitor and control +utility for the Folding@home client. It gives an overview of running +projects on the local and optional (remote) machines. Starting, +stopping and pausing of the running projects is also possible, as is +viewing the logs. It provides an Advanced view with +additional information and settings for enthusiasts and gurus.''' + +description += short_description + +setup( + name = 'FAHControl', + version = version, + description = 'Folding@home Client Control', + long_description = description, + author = 'Joseph Coffland', + author_email = 'joseph@cauldrondevelopment.com', + license = 'GNU General Public License version 3', + keywords = 'protein, molecular dynamics, simulation', + url = 'http://folding.stanford.edu/', + package_data = {'fah': ['*.glade']}, + **extra_opts) + +with open('package-description.txt', 'w') as f: + f.write(short_description.strip()) + diff --git a/stdeb.cfg b/stdeb.cfg new file mode 100644 index 0000000..604fec6 --- /dev/null +++ b/stdeb.cfg @@ -0,0 +1,9 @@ +[DEFAULT] +Package: fahcontrol +Debian-Version: 1 +Recommends: fahclient, fahviewer +Section: science +Priority: optional +MIME-Desktop-Files: FAHControl.desktop +Depends: python-gnome2 +XS-Python-Version: >= 2.4 diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libanachron.dll b/theme-engines/gtk-2.0/2.10.0/engines/libanachron.dll new file mode 100755 index 0000000..11b79fd Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libanachron.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libaurora.dll b/theme-engines/gtk-2.0/2.10.0/engines/libaurora.dll new file mode 100755 index 0000000..e8740cc Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libaurora.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libbluecurve.dll b/theme-engines/gtk-2.0/2.10.0/engines/libbluecurve.dll new file mode 100755 index 0000000..2142bb6 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libbluecurve.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libblueprint.dll b/theme-engines/gtk-2.0/2.10.0/engines/libblueprint.dll new file mode 100755 index 0000000..d7349b9 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libblueprint.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libcandido.dll b/theme-engines/gtk-2.0/2.10.0/engines/libcandido.dll new file mode 100755 index 0000000..95e404f Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libcandido.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libcleanice.dll b/theme-engines/gtk-2.0/2.10.0/engines/libcleanice.dll new file mode 100755 index 0000000..fa450de Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libcleanice.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libclearlooks.dll b/theme-engines/gtk-2.0/2.10.0/engines/libclearlooks.dll new file mode 100755 index 0000000..272ea59 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libclearlooks.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libcrux-engine.dll b/theme-engines/gtk-2.0/2.10.0/engines/libcrux-engine.dll new file mode 100755 index 0000000..10cbf3c Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libcrux-engine.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libdyndyn.dll b/theme-engines/gtk-2.0/2.10.0/engines/libdyndyn.dll new file mode 100755 index 0000000..5040a2b Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libdyndyn.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libexcelsior.dll b/theme-engines/gtk-2.0/2.10.0/engines/libexcelsior.dll new file mode 100755 index 0000000..acc9ce1 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libexcelsior.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libgflat.dll b/theme-engines/gtk-2.0/2.10.0/engines/libgflat.dll new file mode 100755 index 0000000..7810f9c Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libgflat.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libglide.dll b/theme-engines/gtk-2.0/2.10.0/engines/libglide.dll new file mode 100755 index 0000000..b6cb390 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libglide.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libhcengine.dll b/theme-engines/gtk-2.0/2.10.0/engines/libhcengine.dll new file mode 100755 index 0000000..3293ede Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libhcengine.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libindustrial.dll b/theme-engines/gtk-2.0/2.10.0/engines/libindustrial.dll new file mode 100755 index 0000000..b444ca2 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libindustrial.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/liblighthouseblue.dll b/theme-engines/gtk-2.0/2.10.0/engines/liblighthouseblue.dll new file mode 100755 index 0000000..9a66a01 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/liblighthouseblue.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libmetal.dll b/theme-engines/gtk-2.0/2.10.0/engines/libmetal.dll new file mode 100755 index 0000000..e0ee65a Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libmetal.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libmgicchikn.dll b/theme-engines/gtk-2.0/2.10.0/engines/libmgicchikn.dll new file mode 100755 index 0000000..ca26a5d Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libmgicchikn.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libmist.dll b/theme-engines/gtk-2.0/2.10.0/engines/libmist.dll new file mode 100755 index 0000000..83b58a5 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libmist.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libmurrine.dll b/theme-engines/gtk-2.0/2.10.0/engines/libmurrine.dll new file mode 100755 index 0000000..cedc3be Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libmurrine.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libnimbus.dll b/theme-engines/gtk-2.0/2.10.0/engines/libnimbus.dll new file mode 100755 index 0000000..3e9db65 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libnimbus.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libnodoka.dll b/theme-engines/gtk-2.0/2.10.0/engines/libnodoka.dll new file mode 100755 index 0000000..913051e Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libnodoka.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libpixmap.dll b/theme-engines/gtk-2.0/2.10.0/engines/libpixmap.dll new file mode 100755 index 0000000..57ff5aa Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libpixmap.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libredmond95.dll b/theme-engines/gtk-2.0/2.10.0/engines/libredmond95.dll new file mode 100755 index 0000000..ff5dbee Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libredmond95.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/librezlooks.dll b/theme-engines/gtk-2.0/2.10.0/engines/librezlooks.dll new file mode 100755 index 0000000..e96e801 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/librezlooks.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libsmooth.dll b/theme-engines/gtk-2.0/2.10.0/engines/libsmooth.dll new file mode 100755 index 0000000..78ca338 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libsmooth.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libthinice.dll b/theme-engines/gtk-2.0/2.10.0/engines/libthinice.dll new file mode 100755 index 0000000..0af26f8 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libthinice.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libubuntulooks.dll b/theme-engines/gtk-2.0/2.10.0/engines/libubuntulooks.dll new file mode 100755 index 0000000..66b3c57 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libubuntulooks.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libwimp.dll b/theme-engines/gtk-2.0/2.10.0/engines/libwimp.dll new file mode 100755 index 0000000..e13293a Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libwimp.dll differ diff --git a/theme-engines/gtk-2.0/2.10.0/engines/libxfce.dll b/theme-engines/gtk-2.0/2.10.0/engines/libxfce.dll new file mode 100755 index 0000000..848af01 Binary files /dev/null and b/theme-engines/gtk-2.0/2.10.0/engines/libxfce.dll differ diff --git a/themes/Aero-Ion/LICENSE b/themes/Aero-Ion/LICENSE new file mode 100644 index 0000000..5b6e7c6 --- /dev/null +++ b/themes/Aero-Ion/LICENSE @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey 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 2 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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 Library General +Public License instead of this License. diff --git a/themes/Aero-Ion/gtk-2.0/NEWS b/themes/Aero-Ion/gtk-2.0/NEWS new file mode 100644 index 0000000..d9abe68 --- /dev/null +++ b/themes/Aero-Ion/gtk-2.0/NEWS @@ -0,0 +1,25 @@ +Aero-ion-GTK-2.x 3.1 + * Nicer checkbuttons, radio options, background, various other small items. + -- David Gowers <00ai99@gmail.com> + +Aero-GTK-2.x 1.2 + +* gtk-stop icon has been changed +* GtkDialog and GtkMenubar don't have the highlight on top + anymore, because this is painted by the Metacity theme now. + +Aero-GTK-2.x 1.1 + +* Wire frame borders are anti-aliased now. +* The active notebook tab is distincter now. +* 61 stock icons have been themed (11 of them in two sizes). +* The background image of windows and dialogs has been changed. +* The font color has been brightened somewhat for better contrast. +* An explanation of how to change Nautilus' icon title color to + something readable, has been added to the README. + +Aero-GTK-2.x 1.0 + +* Initial release. + +Marcus Petzoldt diff --git a/themes/Aero-Ion/gtk-2.0/README b/themes/Aero-Ion/gtk-2.0/README new file mode 100644 index 0000000..1a406ce --- /dev/null +++ b/themes/Aero-Ion/gtk-2.0/README @@ -0,0 +1,38 @@ +This is Aero-ion a theme for GTK 2.x. It is an inverse Aqua-style theme, in +which the gas phase and the liquid phase have been switched. + +The 'Aero-ion' version (versus plain 'Aero') is modified to be much more +practical (background is plain instead of checked for most things, + and checkbuttons and radio options were improved to be both more legible + and more sensible.). + +The most recent version of Aero-ion can be found at art.gnome.org + + +INSTALLATION +------------ + +Just unpack into your ~/.themes directory and use gconf-editor to switch +theme. + +Unfortunately Nautilus seems to disrespect Aero theme settings, when +using the icon view. This can be solved by creating a new background +color (color value is #37383F), and drag it onto the icon view pane. +Nautilus automagically switches the icon title color to white. + +Create a new background color (from the Nautilus online help file): + +To add a color to the colors that you can use on your screen components, +choose Edit-> Backgrounds and Emblems. Click on the Colors button, then +click on the Add New Color button. A color selector dialog is displayed. +Use the color wheel or the sliders to choose the color (enter #37383F +here). Click OK to add the new color to the Backgrounds and Emblems +dialog. + +AUTHOR(s) +--------- +This theme was brought to you by: + Marcus Petzoldt + +'ion' version by: + David Gowers <00ai99@gmail.com> diff --git a/themes/Aero-Ion/gtk-2.0/arrow-down-i.png b/themes/Aero-Ion/gtk-2.0/arrow-down-i.png new file mode 100644 index 0000000..598dca6 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-down-i.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-down.png b/themes/Aero-Ion/gtk-2.0/arrow-down.png new file mode 100644 index 0000000..87a35c0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-down.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-left-i.png b/themes/Aero-Ion/gtk-2.0/arrow-left-i.png new file mode 100644 index 0000000..dd73a85 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-left-i.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-left.png b/themes/Aero-Ion/gtk-2.0/arrow-left.png new file mode 100644 index 0000000..ca644d8 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-left.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-right-i.png b/themes/Aero-Ion/gtk-2.0/arrow-right-i.png new file mode 100644 index 0000000..d05b1fb Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-right-i.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-right.png b/themes/Aero-Ion/gtk-2.0/arrow-right.png new file mode 100644 index 0000000..a141f43 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-right.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-up-i.png b/themes/Aero-Ion/gtk-2.0/arrow-up-i.png new file mode 100644 index 0000000..9a10dd4 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-up-i.png differ diff --git a/themes/Aero-Ion/gtk-2.0/arrow-up.png b/themes/Aero-Ion/gtk-2.0/arrow-up.png new file mode 100644 index 0000000..b2a98d7 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/arrow-up.png differ diff --git a/themes/Aero-Ion/gtk-2.0/bg.png b/themes/Aero-Ion/gtk-2.0/bg.png new file mode 100644 index 0000000..13b8776 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/bg.png differ diff --git a/themes/Aero-Ion/gtk-2.0/box.png b/themes/Aero-Ion/gtk-2.0/box.png new file mode 100644 index 0000000..22e710a Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/box.png differ diff --git a/themes/Aero-Ion/gtk-2.0/button-default.png b/themes/Aero-Ion/gtk-2.0/button-default.png new file mode 100644 index 0000000..9204afc Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/button-default.png differ diff --git a/themes/Aero-Ion/gtk-2.0/button-in-pre.png b/themes/Aero-Ion/gtk-2.0/button-in-pre.png new file mode 100644 index 0000000..bb70f78 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/button-in-pre.png differ diff --git a/themes/Aero-Ion/gtk-2.0/button-in.png b/themes/Aero-Ion/gtk-2.0/button-in.png new file mode 100644 index 0000000..7643c08 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/button-in.png differ diff --git a/themes/Aero-Ion/gtk-2.0/button-out-pre.png b/themes/Aero-Ion/gtk-2.0/button-out-pre.png new file mode 100644 index 0000000..2054699 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/button-out-pre.png differ diff --git a/themes/Aero-Ion/gtk-2.0/button-out.png b/themes/Aero-Ion/gtk-2.0/button-out.png new file mode 100644 index 0000000..88c5763 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/button-out.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check1.png b/themes/Aero-Ion/gtk-2.0/check1.png new file mode 100644 index 0000000..e2b16ad Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check1.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check2.png b/themes/Aero-Ion/gtk-2.0/check2.png new file mode 100644 index 0000000..afdfe03 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check2.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check3.png b/themes/Aero-Ion/gtk-2.0/check3.png new file mode 100644 index 0000000..c0ae296 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check3.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check4.png b/themes/Aero-Ion/gtk-2.0/check4.png new file mode 100644 index 0000000..754da04 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check4.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check5.png b/themes/Aero-Ion/gtk-2.0/check5.png new file mode 100644 index 0000000..42f957f Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check5.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check6.png b/themes/Aero-Ion/gtk-2.0/check6.png new file mode 100644 index 0000000..b525f9e Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check6.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check7.png b/themes/Aero-Ion/gtk-2.0/check7.png new file mode 100644 index 0000000..4f5f7a5 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check7.png differ diff --git a/themes/Aero-Ion/gtk-2.0/check8.png b/themes/Aero-Ion/gtk-2.0/check8.png new file mode 100644 index 0000000..3fb5504 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/check8.png differ diff --git a/themes/Aero-Ion/gtk-2.0/entry-insensitive.png b/themes/Aero-Ion/gtk-2.0/entry-insensitive.png new file mode 100644 index 0000000..3df08c2 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/entry-insensitive.png differ diff --git a/themes/Aero-Ion/gtk-2.0/entry-normal.png b/themes/Aero-Ion/gtk-2.0/entry-normal.png new file mode 100644 index 0000000..ca4575a Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/entry-normal.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ext-bottom-active.png b/themes/Aero-Ion/gtk-2.0/ext-bottom-active.png new file mode 100644 index 0000000..72cd7ec Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ext-bottom-active.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ext-bottom1.png b/themes/Aero-Ion/gtk-2.0/ext-bottom1.png new file mode 100644 index 0000000..99b8242 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ext-bottom1.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ext-left.png b/themes/Aero-Ion/gtk-2.0/ext-left.png new file mode 100644 index 0000000..2680eb6 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ext-left.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ext-right.png b/themes/Aero-Ion/gtk-2.0/ext-right.png new file mode 100644 index 0000000..061ae93 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ext-right.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ext-top-active.png b/themes/Aero-Ion/gtk-2.0/ext-top-active.png new file mode 100644 index 0000000..63fcb2b Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ext-top-active.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ext-top.png b/themes/Aero-Ion/gtk-2.0/ext-top.png new file mode 100644 index 0000000..3829455 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ext-top.png differ diff --git a/themes/Aero-Ion/gtk-2.0/grip-h.png b/themes/Aero-Ion/gtk-2.0/grip-h.png new file mode 100644 index 0000000..d6f7f77 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/grip-h.png differ diff --git a/themes/Aero-Ion/gtk-2.0/grip-v.png b/themes/Aero-Ion/gtk-2.0/grip-v.png new file mode 100644 index 0000000..cbc6bbf Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/grip-v.png differ diff --git a/themes/Aero-Ion/gtk-2.0/gtkrc b/themes/Aero-Ion/gtk-2.0/gtkrc new file mode 100644 index 0000000..00636b4 --- /dev/null +++ b/themes/Aero-Ion/gtk-2.0/gtkrc @@ -0,0 +1,1219 @@ +# Aero-ion 3.1 +# +# Depends on GTK+ 2.x and pixmap engine +# +# Copyright (c) July 16, 2003 Marcus Petzoldt +# +# The Aero theme is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# The Aero theme 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 +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with the Aero theme; see the file LICENSE. If +# not, write to the Free Software Foundation, Inc., 59 Temple Place - +# Suite 330, Boston, MA 02111-1307, USA. +# + +# Modified to be more usable by David Gowers <00ai99@gmail.com> + + +style "Aero-default" +{ + GtkWidget::interior_focus = 1 + GtkWidget::focus_padding = 1 + GtkWidget::cursor_color = "#ffffff" + GtkWidget::secondary_cursor_color = "#ffffff" + GtkWidget::focus_line_pattern = "\3\1" + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::default_outside_border = { 0, 0, 0, 0 } + GtkRange::trough_border = 2 + GtkRange::slider_width = 11 + GtkRange::stepper_size = 12 + GtkPaned::handle_size = 7 + GtkScrollbar::min_slider_length = 30 + GtkCheckButton::indicator_size = 12 + GtkMenuBar::internal_padding = 2 + GtkOptionMenu::indicator_size = { 12, 8 } + GtkOptionMenu::indicator_spacing = { 0, 4, 0, 0 } + + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = "#d8d8d8" + fg[PRELIGHT] = "#d8d8d8" + fg[ACTIVE] = "#d8d8d8" + fg[SELECTED] = "#ffffff" + fg[INSENSITIVE] = "#404040" + + bg[NORMAL] = "#27282F" + bg[PRELIGHT] = "#5058a0" + bg[ACTIVE] = "#454f60" + bg[SELECTED] = "#5058a0" + bg[INSENSITIVE] = "#27282f" + + text[NORMAL] = "#d8d8d8" + text[PRELIGHT] = "#d8d8d8" + text[ACTIVE] = "#ffffff" + text[SELECTED] = "#ffffff" + text[INSENSITIVE] = "#404040" + + base[NORMAL] = "#37383f" + base[PRELIGHT] = "#5058a0" + base[ACTIVE] = "#757f90" + base[SELECTED] = "#5058a0" + base[INSENSITIVE] = "#27282f" + + engine "pixmap" + { + + image + { + function = BOX + } + + # handle + + image + { + function = HANDLE + state = PRELIGHT + recolorable = TRUE + overlay_file = "handle-pre.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "handle.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + # shadow + + image + { + function = SHADOW + recolorable = FALSE + file = "shadow.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + image + { + function = SHADOW_GAP + recolorable = TRUE + file = "shadow-gap.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + gap_start_file = "shadow-gap-top.png" + gap_start_border = { 0, 0, 1, 0 } + gap_end_file = "shadow-gap-top.png" + gap_end_border = { 0, 0, 1, 0 } + gap_side = TOP + } + image + { + function = VLINE + recolorable = TRUE + file = "line-v.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + image + { + function = HLINE + recolorable = TRUE + file = "line-h.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + # arrows + + image + { + function = ARROW + state = INSENSITIVE + recolorable = TRUE + overlay_file = "arrow-up-i.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + state = INSENSITIVE + recolorable = TRUE + overlay_file = "arrow-down-i.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + state = INSENSITIVE + recolorable = TRUE + overlay_file = "arrow-left-i.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + state = INSENSITIVE + recolorable = TRUE + overlay_file = "arrow-right-i.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = CHECK + state = NORMAL + shadow = OUT + recolorable = TRUE + overlay_file = "check1.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = CHECK + state = PRELIGHT + shadow = OUT + recolorable = TRUE + overlay_file = "check3.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = CHECK + state = ACTIVE + shadow = OUT + recolorable = TRUE + overlay_file = "check5.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = CHECK + state = INSENSITIVE + shadow = OUT + recolorable = TRUE + overlay_file = "check6.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + + image + { + function = CHECK + shadow = IN + state = NORMAL + recolorable = TRUE + overlay_file = "check2.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = CHECK + shadow = IN + state = PRELIGHT + recolorable = TRUE + overlay_file = "check4.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = CHECK + shadow = IN + state = ACTIVE + recolorable = TRUE + overlay_file = "check7.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = CHECK + shadow = IN + state = INSENSITIVE + recolorable = TRUE + overlay_file = "check8.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + state = NORMAL + shadow = OUT + recolorable = TRUE + overlay_file = "option1.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = OPTION + state = NORMAL + shadow = IN + recolorable = TRUE + overlay_file = "option2.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + state = PRELIGHT + shadow = IN + recolorable = TRUE + overlay_file = "option3.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + state = ACTIVE + shadow = IN + recolorable = TRUE + overlay_file = "option4.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + state = ACTIVE + shadow = OUT + recolorable = TRUE + overlay_file = "option5.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + state = PRELIGHT + shadow = OUT + recolorable = TRUE + overlay_file = "option6.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + } +} + +style "Aero-button" = "Aero-default" +{ + # orange focus rectangle + fg[NORMAL] = "#ffbb31" + fg[INSENSITIVE] = "#ffbb31" + fg[ACTIVE] = "#ffbb31" + fg[SELECTED] = "#ffbb31" + fg[PRELIGHT] = "#ffbb31" + + engine "pixmap" + { + image + { + function = BOX + detail = "buttondefault" + file = "button-default.png" + border = { 8, 8, 8, 8 } + stretch = TRUE + } + image + { + function = BOX + shadow = IN + state = PRELIGHT + recolorable = TRUE + file = "button-in-pre.png" + border = { 9, 9, 9, 9 } + stretch = TRUE + } + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "button-in.png" + border = { 8, 8, 8, 8 } + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "button-out-pre.png" + border = { 9, 9, 9, 9 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + file = "button-out.png" + border = { 8, 8, 8, 8 } + stretch = TRUE + } + } +} + +style "Aero-optionmenu" = "Aero-default" +{ + # orange focus rectangle + fg[NORMAL] = "#ffbb31" + fg[INSENSITIVE] = "#ffbb31" + fg[ACTIVE] = "#ffbb31" + fg[SELECTED] = "#ffbb31" + fg[PRELIGHT] = "#ffbb31" + + engine "pixmap" + { + image + { + function = BOX + shadow = IN + state = PRELIGHT + recolorable = TRUE + file = "button-in-pre.png" + border = { 9, 9, 9, 9 } + stretch = TRUE + } + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "button-in.png" + border = { 8, 8, 8, 8 } + stretch = TRUE + } + image + { + function = BOX + shadow = OUT + state = PRELIGHT + recolorable = TRUE + file = "button-out-pre.png" + border = { 9, 9, 9, 9 } + stretch = TRUE + } + image + { + function = BOX + shadow = OUT + recolorable = TRUE + file = "button-out.png" + border = { 8, 8, 8, 8 } + stretch = TRUE + } + image + { + function = TAB + state = INSENSITIVE + recolorable = TRUE + overlay_file = "arrow-down-i.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + overlay_file = "arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + } +} + +style "Aero-radiobutton" = "Aero-default" +{ + # orange focus rectangle + fg[NORMAL] = "#ffbb31" + fg[INSENSITIVE] = "#ffbb31" + fg[ACTIVE] = "#ffbb31" + fg[SELECTED] = "#ffbb31" + fg[PRELIGHT] = "#ffbb31" +} + +style "Aero-checkbutton" = "Aero-default" +{ + # orange focus rectangle + fg[NORMAL] = "#ffbb31" + fg[INSENSITIVE] = "#ffbb31" + fg[ACTIVE] = "#ffbb31" + fg[SELECTED] = "#ffbb31" + fg[PRELIGHT] = "#ffbb31" + + engine "pixmap" + { + image + { + function = FLAT_BOX + } + } +} + +style "Aero-entry" = "Aero-default" +{ + GtkWidget::interior_focus = 1 + + bg_pixmap[NORMAL] = "entry-normal.png" + bg_pixmap[INSENSITIVE] = "entry-insensitive.png" +} + +style "Aero-spinbutton"= "Aero-entry" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "spinbutton" + file = "shadow.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + image + { + function = BOX + detail = "spinbutton_up" + file = "spinbutton-up.png" + border = { 4, 5, 5, 0 } + stretch = TRUE + } + image + { + function = BOX + detail = "spinbutton_down" + file = "spinbutton-down.png" + border = { 4, 5, 0, 5 } + stretch = TRUE + } + } +} + +style "Aero-scrollbar" +{ + engine "pixmap" + { + image + { + function = BOX + detail = "trough" + file = "bg.png" + stretch = FALSE + overlay_file = "trough.png" + overlay_border = { 5, 5, 5, 5 } + overlay_stretch = TRUE + } + image + { + function = SLIDER + state = PRELIGHT + recolorable = TRUE + file = "slider-v-pre.png" + border = { 4, 4, 7, 5 } + stretch = TRUE + orientation = VERTICAL + } + image + { + function = SLIDER + state = PRELIGHT + recolorable = TRUE + file = "slider-h-pre.png" + border = { 5, 5, 6, 4 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + file = "slider.png" + border = { 4, 4, 6, 4 } + stretch = TRUE + } + } +} + +style "Aero-progressbar" = "Aero-default" +{ + engine "pixmap" + { + image + { + function = BOX + detail = "bar" + recolorable = TRUE + file = "progressbar.png" + border = { 0, 21, 0, 15 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + file = "bg.png" + stretch = FALSE + overlay_file = "progress-trough.png" + overlay_border = { 6, 6, 0, 15 } + overlay_stretch = TRUE + } + } +} + +style "Aero-range" = "Aero-standard" +{ + # orange focus rectangle + fg[NORMAL] = "#ffbb31" + fg[INSENSITIVE] = "#ffbb31" + fg[ACTIVE] = "#ffbb31" + fg[SELECTED] = "#ffbb31" + fg[PRELIGHT] = "#ffbb31" + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "bg.png" + stretch = FALSE + overlay_file = "trough.png" + overlay_border = { 5, 5, 5, 5 } + overlay_stretch = TRUE + } + image + { + function = SLIDER + state = PRELIGHT + recolorable = TRUE + file = "slider-h-pre.png" + border = { 5, 5, 6, 4 } + stretch = TRUE + overlay_file = "grip-h.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = PRELIGHT + recolorable = TRUE + file = "slider-v-pre.png" + border = { 4, 4, 7, 5 } + stretch = TRUE + overlay_file = "grip-v.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + file = "slider.png" + border = { 4, 4, 6, 4 } + stretch = TRUE + overlay_file = "grip-h.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + file = "slider.png" + border = { 4, 4, 6, 4 } + stretch = TRUE + overlay_file = "grip-v.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + +style "Aero-menu" = "Aero-default" +{ + engine "pixmap" + { + image + { + function = BOX + detail = "menu" + recolorable = TRUE + file = "shadow-menu.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +style "Aero-menuitem" = "Aero-default" +{ + # orange focus rectangle + fg[NORMAL] = "#ffbb31" + fg[INSENSITIVE] = "#ffbb31" + fg[ACTIVE] = "#ffbb31" + fg[SELECTED] = "#ffbb31" + fg[PRELIGHT] = "#ffbb31" + + xthickness = 4 + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "box.png" + border = { 1, 1, 8, 8 } + stretch = TRUE + } + } +} + +# = "Aero-default" +style "Aero-notebook" +{ + # Orange focus rectangle + fg[NORMAL] = "#ffbb31" + + engine "pixmap" + { + image + { + function = EXTENSION + state = ACTIVE + recolorable = TRUE + file = "ext-bottom-active.png" + border = { 8, 8, 9, 1 } + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + file = "ext-bottom1.png" + border = { 7, 7, 8, 1 } + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + state = ACTIVE + recolorable = TRUE + file = "ext-top-active.png" + border = { 8, 8, 1, 9 } + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + file = "ext-top.png" + border = { 7, 7, 1, 8 } + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + file = "ext-right.png" + border = { 7, 4, 8, 8 } + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "ext-left.png" + border = { 4, 7, 8, 8 } + stretch = TRUE + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "shadow-notebook-top.png" + border = { 5, 5, 0, 5 } + stretch = TRUE + gap_file = "trans.png" + gap_border = { 0, 0, 0, 0 } + gap_start_file = "light.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "light.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = TOP + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "shadow-notebook-bottom.png" + border = { 5, 5, 5, 0 } + stretch = TRUE + gap_file = "trans.png" + gap_border = { 0, 0, 0, 0 } + gap_start_file = "light.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "light.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = BOTTOM + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "shadow-notebook-left.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "trans.png" + gap_border = { 0, 0, 0, 0 } + gap_start_file = "light.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "light.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "shadow-notebook-right.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "trans.png" + gap_border = { 0, 0, 0, 0 } + gap_start_file = "light.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "light.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = RIGHT + } + } +} + +style "Aero-tooltips" = "Aero-default" +{ + bg[NORMAL] = "#454f60" + + engine "pixmap" + { + image + { + function = FLAT_BOX + recolorable = TRUE + file = "tooltip.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + } +} + +style "Aero-ruler" = "Aero-default" +{ + engine "pixmap" + { + image + { + function = BOX + file = "ruler.png" + border = { 0, 1, 0, 1 } + stretch = TRUE + } + } +} + +style "Aero-layout" = "Aero-default" +{ + engine "pixmap" + { + image + { + function = SHADOW + detail = "entry" + file = "shadow.png" + recolorable = TRUE + border = { 5, 5, 5, 5 } + stretch = TRUE + } + image + { + function = SHADOW + file = "shadow-evolution.png" + recolorable = TRUE + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = BOX + detail = "button" + state = NORMAL + file = "button-out.png" + recolorable = TRUE + border = { 8, 8, 8, 8 } + stretch = TRUE + } + } +} + +# This prevents Sodipodi from crashing while opening the +# Object-Style dialog. + +style "Aero-unstyle" +{ + engine "" + { + } +} + +# recognizable pressed toggle buttons +# SPIcons seem to erase the background first. That's why I can't use +# the Aero-button style. + +style "Aero-SPbutton" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "shadow.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + image + { + function = BOX + } + } +} + +style "Aero-treeview" = "Aero-default" +{ + bg_pixmap[NORMAL] = "entry-normal.png" +} + +style "Aero-evolution-specific" = "Aero-default" +{ + engine "pixmap" + { + image + { + function = SHADOW + file = "shadow.png" + recolorable = TRUE + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} + +style "Aero-stock-icons" +{ + stock["gtk-add"] = { + { "icons/48x48/gtk_stock_add.png" } + } + stock["gtk-apply"] = { + { "icons/48x48/gtk_stock_apply.png" } + } + stock["gtk-bold"] = { + { "icons/48x48/gtk_stock_bold.png" } + } + stock["gtk-cancel"] = { + { "icons/48x48/gtk_stock_cancel.png" } + } + stock["gtk-cdrom"] = { + { "icons/48x48/gtk_stock_cdrom.png" } + } + stock["gtk-clear"] = { + { "icons/48x48/gtk_stock_clear.png" } + } + stock["gtk-close"] = { + { "icons/48x48/gtk_stock_close.png" } + } + stock["gtk-convert"] = { + { "icons/48x48/gtk_stock_convert.png" } + } + stock["gtk-copy"] = { + { "icons/48x48/gtk_stock_copy.png" } + } + stock["gtk-cut"] = { + { "icons/48x48/gtk_stock_cut.png" } + } + stock["gtk-delete"] = { + { "icons/48x48/gtk_stock_delete.png" } + } + stock["gtk-find"] = { + { "icons/48x48/gtk_stock_find.png" } + } + stock["gtk-find-and-replace"] = { + { "icons/48x48/gtk_stock_find_and_replace.png" } + } + stock["gtk-home"] = { + { "icons/48x48/gtk_stock_home.png" } + } + stock["gtk-remove"] = { + { "icons/48x48/gtk_stock_remove.png" } + } + stock["gtk-go-back"] = { + { "icons/48x48/gtk_stock_go_back.png" } + } + stock["gtk-go-down"] = { + { "icons/48x48/gtk_stock_go_down.png" } + } + stock["gtk-execute"] = { + { "icons/48x48/gtk_stock_execute.png" } + } + stock["gtk-floppy"] = { + { "icons/48x48/gtk_stock_floppy.png" } + } + stock["gtk-go-forward"] = { + { "icons/48x48/gtk_stock_go_forward.png" } + } + stock["gtk-go-up"] = { + { "icons/48x48/gtk_stock_go_up.png" } + } + stock["gtk-goto-bottom"] = { + { "icons/48x48/gtk_stock_goto_bottom.png" } + } + stock["gtk-goto-first"] = { + { "icons/48x48/gtk_stock_goto_first.png" } + } + stock["gtk-goto-last"] = { + { "icons/48x48/gtk_stock_goto_last.png" } + } + stock["gtk-goto-top"] = { + { "icons/48x48/gtk_stock_goto_top.png" } + } + stock["gtk-help"] = { + { "icons/48x48/gtk_stock_help.png" } + } + stock["gtk-index"] = { + { "icons/16x16/gtk_stock_index.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_index.png" } + } + stock["gtk-italic"] = { + { "icons/48x48/gtk_stock_italic.png" } + } + stock["gtk-jump-to"] = { + { "icons/48x48/gtk_stock_jump_to.png" } + } + stock["gtk-justify-center"] = { + { "icons/48x48/gtk_stock_justify_center.png" } + } + stock["gtk-justify-fill"] = { + { "icons/48x48/gtk_stock_justify_fill.png" } + } + stock["gtk-justify-left"] = { + { "icons/48x48/gtk_stock_justify_left.png" } + } + stock["gtk-justify-right"] = { + { "icons/48x48/gtk_stock_justify_right.png" } + } + stock["gtk-missing-image"] = { + { "icons/16x16/gtk_stock_missing_image.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_missing_image.png" } + } + stock["gtk-new"] = { + { "icons/16x16/gtk_stock_new.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_new.png" } + } + stock["gtk-no"] = { + { "icons/48x48/gtk_stock_no.png" } + } + stock["gtk-open"] = { + { "icons/16x16/gtk_stock_open.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_open.png" } + } + stock["gtk-ok"] = { + { "icons/48x48/gtk_stock_ok.png" } + } + stock["gtk-paste"] = { + { "icons/48x48/gtk_stock_paste.png" } + } + stock["gtk-preferences"] = { + { "icons/48x48/gtk_stock_preferences.png" } + } + stock["gtk-print"] = { + { "icons/48x48/gtk_stock_print.png" } + } + stock["gtk-print-preview"] = { + { "icons/16x16/gtk_stock_print_preview.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_print_preview.png" } + } + stock["gtk-properties"] = { + { "icons/16x16/gtk_stock_properties.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_properties.png" } + } + stock["gtk-quit"] = { + { "icons/48x48/gtk_stock_quit.png" } + } + stock["gtk-redo"] = { + { "icons/48x48/gtk_stock_redo.png" } + } + stock["gtk-refresh"] = { + { "icons/48x48/gtk_stock_refresh.png" } + } + stock["gtk-revert-to-saved"] = { + { "icons/16x16/gtk_stock_revert_to_saved.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_revert_to_saved.png" } + } + stock["gtk-save"] = { + { "icons/48x48/gtk_stock_save.png" } + } + stock["gtk-save-as"] = { + { "icons/16x16/gtk_stock_save_as.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_save_as.png" } + } + stock["gtk-select-color"] = { + { "icons/48x48/gtk_stock_select_color.png" } + } + stock["gtk-select-font"] = { + { "icons/48x48/gtk_stock_select_font.png" } + } + stock["gtk-spell-check"] = { + { "icons/48x48/gtk_stock_spell_check.png" } + } + stock["gtk-strikethrough"] = { + { "icons/48x48/gtk_stock_strikethrough.png" } + } + stock["gtk-sort-ascending"] = { + { "icons/48x48/gtk_stock_sort_ascending.png" } + } + stock["gtk-sort-descending"] = { + { "icons/48x48/gtk_stock_sort_descending.png" } + } + stock["gtk-stop"] = { + { "icons/16x16/gtk_stock_stop.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_stop.png" } + } + stock["gtk-undelete"] = { + { "icons/16x16/gtk_stock_undelete.png", *, *, "gtk-menu" }, + { "icons/48x48/gtk_stock_undelete.png" } + } + stock["gtk-underline"] = { + { "icons/48x48/gtk_stock_underline.png" } + } + stock["gtk-undo"] = { + { "icons/48x48/gtk_stock_undo.png" } + } + stock["gtk-yes"] = { + { "icons/48x48/gtk_stock_yes.png" } + } +} class "GtkObject" style "Aero-stock-icons" + +class "GtkWidget" style "Aero-default" +class "GtkEventBox" style "Aero-default" +class "GtkButton" style "Aero-button" +class "GtkRadioButton" style "Aero-radiobutton" +class "GtkCheckButton" style "Aero-checkbutton" +class "GtkOptionMenu" style "Aero-optionmenu" +class "GtkEntry" style "Aero-entry" +class "GtkOldEditable" style "Aero-entry" +class "GtkSpinButton" style "Aero-spinbutton" +class "GtkRange" style "Aero-range" +class "GtkScrollbar" style "Aero-scrollbar" +class "GtkProgressBar" style "Aero-progressbar" +class "GtkMenu" style "Aero-menu" +class "GtkItem" style "Aero-menuitem" +class "GtkNotebook" style "Aero-notebook" +class "GtkRuler" style "Aero-ruler" +class "GtkLayout" style "Aero-layout" +class "GtkTreeView" style "Aero-treeview" +widget "gtk-tooltips" style "Aero-tooltips" +# Sodipodi 0.31 +class "SPButton" style "Aero-SPbutton" +class "SPColorSlider" style "Aero-unstyle" +# Evolution 1.4.4 +class "ECalendar" style "Aero-evolution-specific" diff --git a/themes/Aero-Ion/gtk-2.0/handle-pre.png b/themes/Aero-Ion/gtk-2.0/handle-pre.png new file mode 100644 index 0000000..b2cd2a2 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/handle-pre.png differ diff --git a/themes/Aero-Ion/gtk-2.0/handle.png b/themes/Aero-Ion/gtk-2.0/handle.png new file mode 100644 index 0000000..d6f049a Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/handle.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_index.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_index.png new file mode 100644 index 0000000..db00a34 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_index.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_missing_image.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_missing_image.png new file mode 100644 index 0000000..f7beb19 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_missing_image.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_new.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_new.png new file mode 100644 index 0000000..20bc70a Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_new.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_open.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_open.png new file mode 100644 index 0000000..eaca3cb Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_open.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_print.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_print.png new file mode 100644 index 0000000..c5c155e Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_print.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_print_preview.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_print_preview.png new file mode 100644 index 0000000..fa79681 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_print_preview.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_properties.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_properties.png new file mode 100644 index 0000000..3e7af83 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_properties.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_revert_to_saved.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_revert_to_saved.png new file mode 100644 index 0000000..84aefe9 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_revert_to_saved.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_save_as.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_save_as.png new file mode 100644 index 0000000..4d8a916 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_save_as.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_stop.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_stop.png new file mode 100644 index 0000000..35f7838 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_stop.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_undelete.png b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_undelete.png new file mode 100644 index 0000000..53839f0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/16x16/gtk_stock_undelete.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_add.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_add.png new file mode 100644 index 0000000..c23944c Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_add.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_apply.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_apply.png new file mode 100644 index 0000000..63888fc Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_apply.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_bold.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_bold.png new file mode 100644 index 0000000..defecc4 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_bold.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cancel.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cancel.png new file mode 100644 index 0000000..b607791 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cancel.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cdrom.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cdrom.png new file mode 100644 index 0000000..042c4c8 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cdrom.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_clear.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_clear.png new file mode 100644 index 0000000..02d4c0e Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_clear.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_close.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_close.png new file mode 100644 index 0000000..21a0f92 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_close.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_convert.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_convert.png new file mode 100644 index 0000000..1ad6495 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_convert.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_copy.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_copy.png new file mode 100644 index 0000000..ad1b069 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_copy.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cut.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cut.png new file mode 100644 index 0000000..b0fafbf Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_cut.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_delete.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_delete.png new file mode 100644 index 0000000..c48d4ee Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_delete.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_dnd.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_dnd.png new file mode 100644 index 0000000..836f406 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_dnd.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_execute.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_execute.png new file mode 100644 index 0000000..81e0715 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_execute.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_find.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_find.png new file mode 100644 index 0000000..2124ac0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_find.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_find_and_replace.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_find_and_replace.png new file mode 100644 index 0000000..7abb4d6 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_find_and_replace.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_floppy.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_floppy.png new file mode 100644 index 0000000..8e06171 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_floppy.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_back.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_back.png new file mode 100644 index 0000000..eefc499 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_back.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_down.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_down.png new file mode 100644 index 0000000..8aa0cd8 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_down.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_forward.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_forward.png new file mode 100644 index 0000000..051e017 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_forward.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_up.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_up.png new file mode 100644 index 0000000..4e3e981 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_go_up.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_bottom.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_bottom.png new file mode 100644 index 0000000..ad7a55b Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_bottom.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_first.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_first.png new file mode 100644 index 0000000..ab065f8 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_first.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_last.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_last.png new file mode 100644 index 0000000..9427bbb Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_last.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_top.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_top.png new file mode 100644 index 0000000..8c1e3eb Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_goto_top.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_help.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_help.png new file mode 100644 index 0000000..7696c32 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_help.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_home.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_home.png new file mode 100644 index 0000000..5b338e7 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_home.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_index.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_index.png new file mode 100644 index 0000000..3082269 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_index.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_italic.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_italic.png new file mode 100644 index 0000000..dabfbd0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_italic.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_jump_to.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_jump_to.png new file mode 100644 index 0000000..4fff238 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_jump_to.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_center.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_center.png new file mode 100644 index 0000000..bcfb29a Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_center.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_fill.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_fill.png new file mode 100644 index 0000000..b6bf9ab Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_fill.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_left.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_left.png new file mode 100644 index 0000000..0e6e361 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_left.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_right.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_right.png new file mode 100644 index 0000000..535e8c0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_justify_right.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_missing_image.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_missing_image.png new file mode 100644 index 0000000..860e8f1 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_missing_image.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_new.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_new.png new file mode 100644 index 0000000..c19cfb2 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_new.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_no.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_no.png new file mode 100644 index 0000000..afecf0b Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_no.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_ok.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_ok.png new file mode 100644 index 0000000..4082746 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_ok.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_open.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_open.png new file mode 100644 index 0000000..fcb4e61 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_open.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_paste.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_paste.png new file mode 100644 index 0000000..10f40e6 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_paste.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_preferences.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_preferences.png new file mode 100644 index 0000000..f1f4227 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_preferences.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_print.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_print.png new file mode 100644 index 0000000..8188200 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_print.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_print_preview.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_print_preview.png new file mode 100644 index 0000000..866a542 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_print_preview.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_properties.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_properties.png new file mode 100644 index 0000000..6959596 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_properties.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_quit.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_quit.png new file mode 100644 index 0000000..969d8ed Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_quit.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_redo.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_redo.png new file mode 100644 index 0000000..6c4d9e7 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_redo.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_refresh.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_refresh.png new file mode 100644 index 0000000..788ef26 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_refresh.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_remove.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_remove.png new file mode 100644 index 0000000..32d6108 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_remove.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_revert_to_saved.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_revert_to_saved.png new file mode 100644 index 0000000..c4afe6b Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_revert_to_saved.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_save.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_save.png new file mode 100644 index 0000000..8e5d1ff Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_save.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_save_as.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_save_as.png new file mode 100644 index 0000000..49d79eb Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_save_as.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_select_color.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_select_color.png new file mode 100644 index 0000000..820788f Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_select_color.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_select_font.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_select_font.png new file mode 100644 index 0000000..125e3be Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_select_font.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_sort_ascending.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_sort_ascending.png new file mode 100644 index 0000000..df32020 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_sort_ascending.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_sort_descending.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_sort_descending.png new file mode 100644 index 0000000..8f894f5 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_sort_descending.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_spell_check.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_spell_check.png new file mode 100644 index 0000000..584a703 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_spell_check.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_stop.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_stop.png new file mode 100644 index 0000000..bb074ad Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_stop.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_strikethrough.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_strikethrough.png new file mode 100644 index 0000000..9dc67aa Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_strikethrough.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_undelete.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_undelete.png new file mode 100644 index 0000000..b5f2d3f Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_undelete.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_underline.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_underline.png new file mode 100644 index 0000000..1bcb716 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_underline.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_undo.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_undo.png new file mode 100644 index 0000000..d41d3c8 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_undo.png differ diff --git a/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_yes.png b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_yes.png new file mode 100644 index 0000000..8d39205 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/icons/48x48/gtk_stock_yes.png differ diff --git a/themes/Aero-Ion/gtk-2.0/light.png b/themes/Aero-Ion/gtk-2.0/light.png new file mode 100644 index 0000000..04fea5e Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/light.png differ diff --git a/themes/Aero-Ion/gtk-2.0/line-h.png b/themes/Aero-Ion/gtk-2.0/line-h.png new file mode 100644 index 0000000..b0f8fcc Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/line-h.png differ diff --git a/themes/Aero-Ion/gtk-2.0/line-v.png b/themes/Aero-Ion/gtk-2.0/line-v.png new file mode 100644 index 0000000..b498057 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/line-v.png differ diff --git a/themes/Aero-Ion/gtk-2.0/line.png b/themes/Aero-Ion/gtk-2.0/line.png new file mode 100644 index 0000000..35ce992 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/line.png differ diff --git a/themes/Aero-Ion/gtk-2.0/option1.png b/themes/Aero-Ion/gtk-2.0/option1.png new file mode 100644 index 0000000..99384ca Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/option1.png differ diff --git a/themes/Aero-Ion/gtk-2.0/option2.png b/themes/Aero-Ion/gtk-2.0/option2.png new file mode 100644 index 0000000..dc83731 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/option2.png differ diff --git a/themes/Aero-Ion/gtk-2.0/option3.png b/themes/Aero-Ion/gtk-2.0/option3.png new file mode 100644 index 0000000..b7c478b Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/option3.png differ diff --git a/themes/Aero-Ion/gtk-2.0/option4.png b/themes/Aero-Ion/gtk-2.0/option4.png new file mode 100644 index 0000000..32738e1 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/option4.png differ diff --git a/themes/Aero-Ion/gtk-2.0/option5.png b/themes/Aero-Ion/gtk-2.0/option5.png new file mode 100644 index 0000000..957fd28 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/option5.png differ diff --git a/themes/Aero-Ion/gtk-2.0/option6.png b/themes/Aero-Ion/gtk-2.0/option6.png new file mode 100644 index 0000000..ba9b0f5 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/option6.png differ diff --git a/themes/Aero-Ion/gtk-2.0/progress-trough.png b/themes/Aero-Ion/gtk-2.0/progress-trough.png new file mode 100644 index 0000000..395fbb9 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/progress-trough.png differ diff --git a/themes/Aero-Ion/gtk-2.0/progressbar.png b/themes/Aero-Ion/gtk-2.0/progressbar.png new file mode 100644 index 0000000..87025d0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/progressbar.png differ diff --git a/themes/Aero-Ion/gtk-2.0/ruler.png b/themes/Aero-Ion/gtk-2.0/ruler.png new file mode 100644 index 0000000..a950f84 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/ruler.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-evolution.png b/themes/Aero-Ion/gtk-2.0/shadow-evolution.png new file mode 100644 index 0000000..3df2c4d Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-evolution.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-gap-top.png b/themes/Aero-Ion/gtk-2.0/shadow-gap-top.png new file mode 100644 index 0000000..718d06b Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-gap-top.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-gap.png b/themes/Aero-Ion/gtk-2.0/shadow-gap.png new file mode 100644 index 0000000..6cf3fc9 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-gap.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-menu.png b/themes/Aero-Ion/gtk-2.0/shadow-menu.png new file mode 100644 index 0000000..d7cf7d6 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-menu.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-notebook-bottom.png b/themes/Aero-Ion/gtk-2.0/shadow-notebook-bottom.png new file mode 100644 index 0000000..944f3db Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-notebook-bottom.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-notebook-left.png b/themes/Aero-Ion/gtk-2.0/shadow-notebook-left.png new file mode 100644 index 0000000..47e9515 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-notebook-left.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-notebook-right.png b/themes/Aero-Ion/gtk-2.0/shadow-notebook-right.png new file mode 100644 index 0000000..c3fc9b2 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-notebook-right.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow-notebook-top.png b/themes/Aero-Ion/gtk-2.0/shadow-notebook-top.png new file mode 100644 index 0000000..eb2612d Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow-notebook-top.png differ diff --git a/themes/Aero-Ion/gtk-2.0/shadow.png b/themes/Aero-Ion/gtk-2.0/shadow.png new file mode 100644 index 0000000..0df67f0 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/shadow.png differ diff --git a/themes/Aero-Ion/gtk-2.0/slider-h-pre.png b/themes/Aero-Ion/gtk-2.0/slider-h-pre.png new file mode 100644 index 0000000..3885cc3 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/slider-h-pre.png differ diff --git a/themes/Aero-Ion/gtk-2.0/slider-v-pre.png b/themes/Aero-Ion/gtk-2.0/slider-v-pre.png new file mode 100644 index 0000000..2a1991f Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/slider-v-pre.png differ diff --git a/themes/Aero-Ion/gtk-2.0/slider.png b/themes/Aero-Ion/gtk-2.0/slider.png new file mode 100644 index 0000000..de972db Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/slider.png differ diff --git a/themes/Aero-Ion/gtk-2.0/spinbutton-down.png b/themes/Aero-Ion/gtk-2.0/spinbutton-down.png new file mode 100644 index 0000000..5d9bdff Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/spinbutton-down.png differ diff --git a/themes/Aero-Ion/gtk-2.0/spinbutton-up.png b/themes/Aero-Ion/gtk-2.0/spinbutton-up.png new file mode 100644 index 0000000..28d33ed Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/spinbutton-up.png differ diff --git a/themes/Aero-Ion/gtk-2.0/tooltip.png b/themes/Aero-Ion/gtk-2.0/tooltip.png new file mode 100644 index 0000000..5562c5e Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/tooltip.png differ diff --git a/themes/Aero-Ion/gtk-2.0/trans.png b/themes/Aero-Ion/gtk-2.0/trans.png new file mode 100644 index 0000000..224f308 Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/trans.png differ diff --git a/themes/Aero-Ion/gtk-2.0/trough.png b/themes/Aero-Ion/gtk-2.0/trough.png new file mode 100644 index 0000000..5ca6fdf Binary files /dev/null and b/themes/Aero-Ion/gtk-2.0/trough.png differ diff --git a/themes/Aero/gtk-2.0/Arrows/arrow-down.png b/themes/Aero/gtk-2.0/Arrows/arrow-down.png new file mode 100644 index 0000000..242a18e Binary files /dev/null and b/themes/Aero/gtk-2.0/Arrows/arrow-down.png differ diff --git a/themes/Aero/gtk-2.0/Arrows/arrow-left.png b/themes/Aero/gtk-2.0/Arrows/arrow-left.png new file mode 100644 index 0000000..407f7df Binary files /dev/null and b/themes/Aero/gtk-2.0/Arrows/arrow-left.png differ diff --git a/themes/Aero/gtk-2.0/Arrows/arrow-right-norm.png b/themes/Aero/gtk-2.0/Arrows/arrow-right-norm.png new file mode 100644 index 0000000..d7429eb Binary files /dev/null and b/themes/Aero/gtk-2.0/Arrows/arrow-right-norm.png differ diff --git a/themes/Aero/gtk-2.0/Arrows/arrow-right-prelight.png b/themes/Aero/gtk-2.0/Arrows/arrow-right-prelight.png new file mode 100644 index 0000000..27c3569 Binary files /dev/null and b/themes/Aero/gtk-2.0/Arrows/arrow-right-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Arrows/arrow-right.png b/themes/Aero/gtk-2.0/Arrows/arrow-right.png new file mode 100644 index 0000000..5872976 Binary files /dev/null and b/themes/Aero/gtk-2.0/Arrows/arrow-right.png differ diff --git a/themes/Aero/gtk-2.0/Arrows/arrow-up2.png b/themes/Aero/gtk-2.0/Arrows/arrow-up2.png new file mode 100644 index 0000000..a0be59b Binary files /dev/null and b/themes/Aero/gtk-2.0/Arrows/arrow-up2.png differ diff --git a/themes/Aero/gtk-2.0/Buttons/button-default.png b/themes/Aero/gtk-2.0/Buttons/button-default.png new file mode 100644 index 0000000..e3e8bb7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Buttons/button-default.png differ diff --git a/themes/Aero/gtk-2.0/Buttons/button-insensitive.png b/themes/Aero/gtk-2.0/Buttons/button-insensitive.png new file mode 100644 index 0000000..cfc673e Binary files /dev/null and b/themes/Aero/gtk-2.0/Buttons/button-insensitive.png differ diff --git a/themes/Aero/gtk-2.0/Buttons/button-normal.png b/themes/Aero/gtk-2.0/Buttons/button-normal.png new file mode 100644 index 0000000..3c99d93 Binary files /dev/null and b/themes/Aero/gtk-2.0/Buttons/button-normal.png differ diff --git a/themes/Aero/gtk-2.0/Buttons/button-prelight.png b/themes/Aero/gtk-2.0/Buttons/button-prelight.png new file mode 100644 index 0000000..b6e259b Binary files /dev/null and b/themes/Aero/gtk-2.0/Buttons/button-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Buttons/button-pressed.png b/themes/Aero/gtk-2.0/Buttons/button-pressed.png new file mode 100644 index 0000000..cffcda4 Binary files /dev/null and b/themes/Aero/gtk-2.0/Buttons/button-pressed.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/check1.png b/themes/Aero/gtk-2.0/Check-Radio/check1.png new file mode 100644 index 0000000..2377162 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/check1.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/check2.png b/themes/Aero/gtk-2.0/Check-Radio/check2.png new file mode 100644 index 0000000..d56551d Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/check2.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/check3.png b/themes/Aero/gtk-2.0/Check-Radio/check3.png new file mode 100644 index 0000000..22f15a3 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/check3.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/check4.png b/themes/Aero/gtk-2.0/Check-Radio/check4.png new file mode 100644 index 0000000..ae66ee7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/check4.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/check5.png b/themes/Aero/gtk-2.0/Check-Radio/check5.png new file mode 100644 index 0000000..c50c92e Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/check5.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/check6.png b/themes/Aero/gtk-2.0/Check-Radio/check6.png new file mode 100644 index 0000000..9507ecc Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/check6.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/checklight.png b/themes/Aero/gtk-2.0/Check-Radio/checklight.png new file mode 100644 index 0000000..2b8964b Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/checklight.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/highlight.png b/themes/Aero/gtk-2.0/Check-Radio/highlight.png new file mode 100644 index 0000000..a8b71b3 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/highlight.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/option1.png b/themes/Aero/gtk-2.0/Check-Radio/option1.png new file mode 100644 index 0000000..14877a7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/option1.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/option2.png b/themes/Aero/gtk-2.0/Check-Radio/option2.png new file mode 100644 index 0000000..09e1398 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/option2.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/option3.png b/themes/Aero/gtk-2.0/Check-Radio/option3.png new file mode 100644 index 0000000..184da75 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/option3.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/option4.png b/themes/Aero/gtk-2.0/Check-Radio/option4.png new file mode 100644 index 0000000..01ee35f Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/option4.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/option5.png b/themes/Aero/gtk-2.0/Check-Radio/option5.png new file mode 100644 index 0000000..96fd20d Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/option5.png differ diff --git a/themes/Aero/gtk-2.0/Check-Radio/option6.png b/themes/Aero/gtk-2.0/Check-Radio/option6.png new file mode 100644 index 0000000..2ce9ec3 Binary files /dev/null and b/themes/Aero/gtk-2.0/Check-Radio/option6.png differ diff --git a/themes/Aero/gtk-2.0/Combo/button-pressed.png b/themes/Aero/gtk-2.0/Combo/button-pressed.png new file mode 100644 index 0000000..cffcda4 Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/button-pressed.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-active.png b/themes/Aero/gtk-2.0/Combo/combo-active.png new file mode 100644 index 0000000..e30c5b2 Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-active.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-arrow-insens.png b/themes/Aero/gtk-2.0/Combo/combo-arrow-insens.png new file mode 100644 index 0000000..242a18e Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-arrow-insens.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-arrow-insens3.png b/themes/Aero/gtk-2.0/Combo/combo-arrow-insens3.png new file mode 100644 index 0000000..2e441d9 Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-arrow-insens3.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-arrow-prelight.png b/themes/Aero/gtk-2.0/Combo/combo-arrow-prelight.png new file mode 100644 index 0000000..242a18e Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-arrow-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-arrow-prelight2.png b/themes/Aero/gtk-2.0/Combo/combo-arrow-prelight2.png new file mode 100644 index 0000000..2b71f85 Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-arrow-prelight2.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-arrow.png b/themes/Aero/gtk-2.0/Combo/combo-arrow.png new file mode 100644 index 0000000..242a18e Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-arrow.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-arrow2.png b/themes/Aero/gtk-2.0/Combo/combo-arrow2.png new file mode 100644 index 0000000..fe3e85e Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-arrow2.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-inactive.png b/themes/Aero/gtk-2.0/Combo/combo-inactive.png new file mode 100644 index 0000000..cfc673e Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-inactive.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-normal.png b/themes/Aero/gtk-2.0/Combo/combo-normal.png new file mode 100644 index 0000000..3c99d93 Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-normal.png differ diff --git a/themes/Aero/gtk-2.0/Combo/combo-prelight.png b/themes/Aero/gtk-2.0/Combo/combo-prelight.png new file mode 100644 index 0000000..b6e259b Binary files /dev/null and b/themes/Aero/gtk-2.0/Combo/combo-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Frame-Gap/frame-gap-end.png b/themes/Aero/gtk-2.0/Frame-Gap/frame-gap-end.png new file mode 100644 index 0000000..2b3d11b Binary files /dev/null and b/themes/Aero/gtk-2.0/Frame-Gap/frame-gap-end.png differ diff --git a/themes/Aero/gtk-2.0/Frame-Gap/frame-gap-start.png b/themes/Aero/gtk-2.0/Frame-Gap/frame-gap-start.png new file mode 100644 index 0000000..ae3fc0e Binary files /dev/null and b/themes/Aero/gtk-2.0/Frame-Gap/frame-gap-start.png differ diff --git a/themes/Aero/gtk-2.0/Frame-Gap/frame1.png b/themes/Aero/gtk-2.0/Frame-Gap/frame1.png new file mode 100644 index 0000000..5246d47 Binary files /dev/null and b/themes/Aero/gtk-2.0/Frame-Gap/frame1.png differ diff --git a/themes/Aero/gtk-2.0/Frame-Gap/frame2.png b/themes/Aero/gtk-2.0/Frame-Gap/frame2.png new file mode 100644 index 0000000..f1dcc39 Binary files /dev/null and b/themes/Aero/gtk-2.0/Frame-Gap/frame2.png differ diff --git a/themes/Aero/gtk-2.0/Handles/handle-h.png b/themes/Aero/gtk-2.0/Handles/handle-h.png new file mode 100644 index 0000000..d050e75 Binary files /dev/null and b/themes/Aero/gtk-2.0/Handles/handle-h.png differ diff --git a/themes/Aero/gtk-2.0/Handles/handle-h2.png b/themes/Aero/gtk-2.0/Handles/handle-h2.png new file mode 100644 index 0000000..de2dc0b Binary files /dev/null and b/themes/Aero/gtk-2.0/Handles/handle-h2.png differ diff --git a/themes/Aero/gtk-2.0/Handles/handle-v.png b/themes/Aero/gtk-2.0/Handles/handle-v.png new file mode 100644 index 0000000..e90ae2e Binary files /dev/null and b/themes/Aero/gtk-2.0/Handles/handle-v.png differ diff --git a/themes/Aero/gtk-2.0/Handles/resize_grip (Kopie).png b/themes/Aero/gtk-2.0/Handles/resize_grip (Kopie).png new file mode 100644 index 0000000..e3d85c6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Handles/resize_grip (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Handles/resize_grip.png b/themes/Aero/gtk-2.0/Handles/resize_grip.png new file mode 100644 index 0000000..3127d23 Binary files /dev/null and b/themes/Aero/gtk-2.0/Handles/resize_grip.png differ diff --git a/themes/Aero/gtk-2.0/Lines/line-h (Kopie).png b/themes/Aero/gtk-2.0/Lines/line-h (Kopie).png new file mode 100644 index 0000000..0fa7444 Binary files /dev/null and b/themes/Aero/gtk-2.0/Lines/line-h (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Lines/line-h.png b/themes/Aero/gtk-2.0/Lines/line-h.png new file mode 100644 index 0000000..0fa7444 Binary files /dev/null and b/themes/Aero/gtk-2.0/Lines/line-h.png differ diff --git a/themes/Aero/gtk-2.0/Lines/line-v (Kopie).png b/themes/Aero/gtk-2.0/Lines/line-v (Kopie).png new file mode 100644 index 0000000..0de8814 Binary files /dev/null and b/themes/Aero/gtk-2.0/Lines/line-v (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Lines/line-v.png b/themes/Aero/gtk-2.0/Lines/line-v.png new file mode 100644 index 0000000..d050e75 Binary files /dev/null and b/themes/Aero/gtk-2.0/Lines/line-v.png differ diff --git a/themes/Aero/gtk-2.0/ListHeaders/list_header-insens.png b/themes/Aero/gtk-2.0/ListHeaders/list_header-insens.png new file mode 100644 index 0000000..c1561eb Binary files /dev/null and b/themes/Aero/gtk-2.0/ListHeaders/list_header-insens.png differ diff --git a/themes/Aero/gtk-2.0/ListHeaders/list_header-prelight.png b/themes/Aero/gtk-2.0/ListHeaders/list_header-prelight.png new file mode 100644 index 0000000..3bf16c9 Binary files /dev/null and b/themes/Aero/gtk-2.0/ListHeaders/list_header-prelight.png differ diff --git a/themes/Aero/gtk-2.0/ListHeaders/list_header-pressed.png b/themes/Aero/gtk-2.0/ListHeaders/list_header-pressed.png new file mode 100644 index 0000000..b5b5adf Binary files /dev/null and b/themes/Aero/gtk-2.0/ListHeaders/list_header-pressed.png differ diff --git a/themes/Aero/gtk-2.0/ListHeaders/list_header.png b/themes/Aero/gtk-2.0/ListHeaders/list_header.png new file mode 100644 index 0000000..3307c17 Binary files /dev/null and b/themes/Aero/gtk-2.0/ListHeaders/list_header.png differ diff --git a/themes/Aero/gtk-2.0/ListHeaders/menubar-green.png b/themes/Aero/gtk-2.0/ListHeaders/menubar-green.png new file mode 100644 index 0000000..a330470 Binary files /dev/null and b/themes/Aero/gtk-2.0/ListHeaders/menubar-green.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menu-alt.png b/themes/Aero/gtk-2.0/Menu-Menubar/menu-alt.png new file mode 100644 index 0000000..a0d7f35 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menu-alt.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menu-black.png b/themes/Aero/gtk-2.0/Menu-Menubar/menu-black.png new file mode 100644 index 0000000..958735e Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menu-black.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menu.png b/themes/Aero/gtk-2.0/Menu-Menubar/menu.png new file mode 100644 index 0000000..23e7dc5 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menu.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-black.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-black.png new file mode 100644 index 0000000..b53763c Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-black.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-dark.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-dark.png new file mode 100644 index 0000000..5ec58b0 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-dark.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-deep.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-deep.png new file mode 100644 index 0000000..0b95666 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-deep.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green.png new file mode 100644 index 0000000..beeffe1 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green0.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green0.png new file mode 100644 index 0000000..80f5d28 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green0.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1 (Kopie).png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1 (Kopie).png new file mode 100644 index 0000000..900c1ed Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1 (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1.png new file mode 100644 index 0000000..aa39a1d Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1XxX.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1XxX.png new file mode 100644 index 0000000..6a8e75a Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green1XxX.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2 (Kopie).png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2 (Kopie).png new file mode 100644 index 0000000..2416503 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2 (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2.png new file mode 100644 index 0000000..268d2fd Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2YY.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2YY.png new file mode 100644 index 0000000..becb269 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-green2YY.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-greenX.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-greenX.png new file mode 100644 index 0000000..827c95a Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-greenX.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-greenXX.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-greenXX.png new file mode 100644 index 0000000..759e860 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-greenXX.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-light.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-light.png new file mode 100644 index 0000000..25f246e Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue-light.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue.png new file mode 100644 index 0000000..935b415 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-blue.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-1.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-1.png new file mode 100644 index 0000000..717ffdd Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-1.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-2.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-2.png new file mode 100644 index 0000000..3df9714 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-2.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-3.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-3.png new file mode 100644 index 0000000..8818092 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-3.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-4.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-4.png new file mode 100644 index 0000000..039039f Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-alt-4.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-grad.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-grad.png new file mode 100644 index 0000000..e475d11 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown-grad.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown.png new file mode 100644 index 0000000..da46b0f Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-brown.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-clear-alt.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-clear-alt.png new file mode 100644 index 0000000..8bc273e Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-clear-alt.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-clear.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-clear.png new file mode 100644 index 0000000..a920464 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-clear.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green-alt.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green-alt.png new file mode 100644 index 0000000..f1f6f1c Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green-alt.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green-blue.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green-blue.png new file mode 100644 index 0000000..112e469 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green-blue.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green.png new file mode 100644 index 0000000..d716e22 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-green.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-inactive.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-inactive.png new file mode 100644 index 0000000..e9eef51 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-inactive.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-item-alt.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-item-alt.png new file mode 100644 index 0000000..aa6a0cc Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-item-alt.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-item.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-item.png new file mode 100644 index 0000000..620364c Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-item.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-orange-alt.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-orange-alt.png new file mode 100644 index 0000000..36cbcc7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-orange-alt.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-orange.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-orange.png new file mode 100644 index 0000000..260cbd6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-orange.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple-blue.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple-blue.png new file mode 100644 index 0000000..9579e15 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple-blue.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple-deep.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple-deep.png new file mode 100644 index 0000000..44d2a3d Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple-deep.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple.png new file mode 100644 index 0000000..f5a421e Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-purple.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-vista-inactive.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-vista-inactive.png new file mode 100644 index 0000000..7a17f6b Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-vista-inactive.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-vista.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-vista.png new file mode 100644 index 0000000..a8e4099 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-vista.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menubar-wood.png b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-wood.png new file mode 100644 index 0000000..accf6b2 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menubar-wood.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menuitem.png b/themes/Aero/gtk-2.0/Menu-Menubar/menuitem.png new file mode 100644 index 0000000..82aa276 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menuitem.png differ diff --git a/themes/Aero/gtk-2.0/Menu-Menubar/menuline.png b/themes/Aero/gtk-2.0/Menu-Menubar/menuline.png new file mode 100644 index 0000000..77b4679 Binary files /dev/null and b/themes/Aero/gtk-2.0/Menu-Menubar/menuline.png differ diff --git a/themes/Aero/gtk-2.0/Nautilus-background/back.png b/themes/Aero/gtk-2.0/Nautilus-background/back.png new file mode 100644 index 0000000..729ea54 Binary files /dev/null and b/themes/Aero/gtk-2.0/Nautilus-background/back.png differ diff --git a/themes/Aero/gtk-2.0/Nautilus-background/back_light.png b/themes/Aero/gtk-2.0/Nautilus-background/back_light.png new file mode 100644 index 0000000..c168e16 Binary files /dev/null and b/themes/Aero/gtk-2.0/Nautilus-background/back_light.png differ diff --git a/themes/Aero/gtk-2.0/Others/focus.png b/themes/Aero/gtk-2.0/Others/focus.png new file mode 100755 index 0000000..c41abe1 Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/focus.png differ diff --git a/themes/Aero/gtk-2.0/Others/gap.png b/themes/Aero/gtk-2.0/Others/gap.png new file mode 100755 index 0000000..47213ae Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/gap.png differ diff --git a/themes/Aero/gtk-2.0/Others/null.png b/themes/Aero/gtk-2.0/Others/null.png new file mode 100755 index 0000000..9d7e6be Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/null.png differ diff --git a/themes/Aero/gtk-2.0/Others/null2.png b/themes/Aero/gtk-2.0/Others/null2.png new file mode 100755 index 0000000..81f4aee Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/null2.png differ diff --git a/themes/Aero/gtk-2.0/Others/null3.png b/themes/Aero/gtk-2.0/Others/null3.png new file mode 100755 index 0000000..5081593 Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/null3.png differ diff --git a/themes/Aero/gtk-2.0/Others/null4.png b/themes/Aero/gtk-2.0/Others/null4.png new file mode 100755 index 0000000..c259f06 Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/null4.png differ diff --git a/themes/Aero/gtk-2.0/Others/null5.png b/themes/Aero/gtk-2.0/Others/null5.png new file mode 100755 index 0000000..6d5ceb4 Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/null5.png differ diff --git a/themes/Aero/gtk-2.0/Others/ruler.png b/themes/Aero/gtk-2.0/Others/ruler.png new file mode 100755 index 0000000..678ee3c Binary files /dev/null and b/themes/Aero/gtk-2.0/Others/ruler.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-24.png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-24.png new file mode 100644 index 0000000..cad9722 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-24.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-32.png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-32.png new file mode 100644 index 0000000..c8206db Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-32.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-35.png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-35.png new file mode 100644 index 0000000..b4ea98f Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-35.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-36 (Kopie).png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-36 (Kopie).png new file mode 100644 index 0000000..a2735e9 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-36 (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-36 (noch eine Kopie).png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-36 (noch eine Kopie).png new file mode 100644 index 0000000..ea4e39c Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-36 (noch eine Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-36.png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-36.png new file mode 100644 index 0000000..febc5ae Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-36.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-48-alt.png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-48-alt.png new file mode 100644 index 0000000..896bf05 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-48-alt.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-black-48.png b/themes/Aero/gtk-2.0/Panel/panel-bg-black-48.png new file mode 100644 index 0000000..b9abf73 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-black-48.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-blue-24.png b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-24.png new file mode 100644 index 0000000..ce3df91 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-24.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-blue-36.png b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-36.png new file mode 100644 index 0000000..d7d5b21 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-36.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-blue-48-alt.png b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-48-alt.png new file mode 100644 index 0000000..ad8d965 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-48-alt.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-blue-48.png b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-48.png new file mode 100644 index 0000000..8caaf5f Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-blue-48.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-gray-24.png b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-24.png new file mode 100644 index 0000000..f7584cc Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-24.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-gray-36.png b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-36.png new file mode 100644 index 0000000..a0cb4cd Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-36.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-gray-48-alt.png b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-48-alt.png new file mode 100644 index 0000000..8f9e30f Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-48-alt.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-gray-48.png b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-48.png new file mode 100644 index 0000000..1d3ae23 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-48.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-gray-alt.png b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-alt.png new file mode 100644 index 0000000..274902e Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-gray-alt.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-24.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-24.png new file mode 100644 index 0000000..0eaf8ef Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-24.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-36.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-36.png new file mode 100644 index 0000000..010f509 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-36.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-48-alt.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-48-alt.png new file mode 100644 index 0000000..91c39a5 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-48-alt.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-48.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-48.png new file mode 100644 index 0000000..428071a Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-2-48.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-24.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-24.png new file mode 100644 index 0000000..accbec4 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-24.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-36.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-36.png new file mode 100644 index 0000000..a5072f5 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-36.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-48-alt.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-48-alt.png new file mode 100644 index 0000000..ef40980 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-48-alt.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-48.png b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-48.png new file mode 100644 index 0000000..8c9837d Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panel-bg-translucent-48.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_black_1.png b/themes/Aero/gtk-2.0/Panel/panelbutton_black_1.png new file mode 100644 index 0000000..d2db064 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_black_1.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_black_2 (Kopie).png b/themes/Aero/gtk-2.0/Panel/panelbutton_black_2 (Kopie).png new file mode 100644 index 0000000..8ab488f Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_black_2 (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_black_2 (noch eine Kopie).png b/themes/Aero/gtk-2.0/Panel/panelbutton_black_2 (noch eine Kopie).png new file mode 100644 index 0000000..8ab488f Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_black_2 (noch eine Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_black_2.png b/themes/Aero/gtk-2.0/Panel/panelbutton_black_2.png new file mode 100644 index 0000000..0e61e3c Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_black_2.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_black_4.png b/themes/Aero/gtk-2.0/Panel/panelbutton_black_4.png new file mode 100644 index 0000000..d8c01de Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_black_4.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_gray_1.png b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_1.png new file mode 100644 index 0000000..d0211f6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_1.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_gray_2.png b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_2.png new file mode 100644 index 0000000..d8c01de Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_2.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_gray_2XX.png b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_2XX.png new file mode 100644 index 0000000..6eae1fb Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_2XX.png differ diff --git a/themes/Aero/gtk-2.0/Panel/panelbutton_gray_4.png b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_4.png new file mode 100644 index 0000000..0be7d89 Binary files /dev/null and b/themes/Aero/gtk-2.0/Panel/panelbutton_gray_4.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/Windows_Vista_Explorer.png b/themes/Aero/gtk-2.0/ProgressBar/Windows_Vista_Explorer.png new file mode 100644 index 0000000..feef2b6 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/Windows_Vista_Explorer.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/progressbar-horiz.png b/themes/Aero/gtk-2.0/ProgressBar/progressbar-horiz.png new file mode 100644 index 0000000..c5ca5f4 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/progressbar-horiz.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/progressbar-vert.png b/themes/Aero/gtk-2.0/ProgressBar/progressbar-vert.png new file mode 100644 index 0000000..ef10c86 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/progressbar-vert.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/progressbar-vertic.png b/themes/Aero/gtk-2.0/ProgressBar/progressbar-vertic.png new file mode 100644 index 0000000..a89bda2 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/progressbar-vertic.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-horiz (Kopie).png b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-horiz (Kopie).png new file mode 100644 index 0000000..f4427be Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-horiz (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-horiz.png b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-horiz.png new file mode 100644 index 0000000..9290f98 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-horiz.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vert (Kopie).png b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vert (Kopie).png new file mode 100644 index 0000000..c69a387 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vert (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vert.png b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vert.png new file mode 100644 index 0000000..be2a106 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vert.png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vertic (Kopie).png b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vertic (Kopie).png new file mode 100644 index 0000000..c69a387 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vertic (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vertic.png b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vertic.png new file mode 100644 index 0000000..d9c88d5 Binary files /dev/null and b/themes/Aero/gtk-2.0/ProgressBar/trough-progressbar-vertic.png differ diff --git a/themes/Aero/gtk-2.0/Range/null.png b/themes/Aero/gtk-2.0/Range/null.png new file mode 100644 index 0000000..4136605 Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/null.png differ diff --git a/themes/Aero/gtk-2.0/Range/slider-horiz-prelight.png b/themes/Aero/gtk-2.0/Range/slider-horiz-prelight.png new file mode 100644 index 0000000..0b04c80 Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/slider-horiz-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Range/slider-horiz.png b/themes/Aero/gtk-2.0/Range/slider-horiz.png new file mode 100644 index 0000000..602fc70 Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/slider-horiz.png differ diff --git a/themes/Aero/gtk-2.0/Range/slider-vert-prelight.png b/themes/Aero/gtk-2.0/Range/slider-vert-prelight.png new file mode 100644 index 0000000..2ea61fc Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/slider-vert-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Range/slider-vert.png b/themes/Aero/gtk-2.0/Range/slider-vert.png new file mode 100644 index 0000000..f8dfa88 Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/slider-vert.png differ diff --git a/themes/Aero/gtk-2.0/Range/trough-horizontal.png b/themes/Aero/gtk-2.0/Range/trough-horizontal.png new file mode 100644 index 0000000..6801570 Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/trough-horizontal.png differ diff --git a/themes/Aero/gtk-2.0/Range/trough-vertical.png b/themes/Aero/gtk-2.0/Range/trough-vertical.png new file mode 100644 index 0000000..14b72c6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Range/trough-vertical.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/scroll-thumb-horiz.png b/themes/Aero/gtk-2.0/Scrollbars/scroll-thumb-horiz.png new file mode 100644 index 0000000..b9080e6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/scroll-thumb-horiz.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/scroll-thumb-vert.png b/themes/Aero/gtk-2.0/Scrollbars/scroll-thumb-vert.png new file mode 100644 index 0000000..a7977a3 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/scroll-thumb-vert.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/slider-horiz-insens.png b/themes/Aero/gtk-2.0/Scrollbars/slider-horiz-insens.png new file mode 100644 index 0000000..7758f98 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/slider-horiz-insens.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/slider-horiz-prelight.png b/themes/Aero/gtk-2.0/Scrollbars/slider-horiz-prelight.png new file mode 100644 index 0000000..4d9ace6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/slider-horiz-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/slider-horiz.png b/themes/Aero/gtk-2.0/Scrollbars/slider-horiz.png new file mode 100644 index 0000000..c9839fd Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/slider-horiz.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/slider-vert-insens.png b/themes/Aero/gtk-2.0/Scrollbars/slider-vert-insens.png new file mode 100644 index 0000000..064364e Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/slider-vert-insens.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/slider-vert-prelight.png b/themes/Aero/gtk-2.0/Scrollbars/slider-vert-prelight.png new file mode 100644 index 0000000..bc4e62c Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/slider-vert-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/slider-vert.png b/themes/Aero/gtk-2.0/Scrollbars/slider-vert.png new file mode 100644 index 0000000..c7a89b6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/slider-vert.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-down-insens.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-down-insens.png new file mode 100644 index 0000000..c8cd94f Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-down-insens.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-down-prelight.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-down-prelight.png new file mode 100644 index 0000000..b1e2608 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-down-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-down.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-down.png new file mode 100644 index 0000000..489641c Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-down.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-left-insens.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-left-insens.png new file mode 100644 index 0000000..219f7a7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-left-insens.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-left-prelight.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-left-prelight.png new file mode 100644 index 0000000..b9eb381 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-left-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-left.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-left.png new file mode 100644 index 0000000..adc46e0 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-left.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-right-insens.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-right-insens.png new file mode 100644 index 0000000..d8d3b5e Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-right-insens.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-right-prelight.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-right-prelight.png new file mode 100644 index 0000000..be8a755 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-right-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-right.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-right.png new file mode 100644 index 0000000..0d761c4 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-right.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-up-insens.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-up-insens.png new file mode 100644 index 0000000..b09966f Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-up-insens.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-up-prelight.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-up-prelight.png new file mode 100644 index 0000000..162ab07 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-up-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/stepper-up.png b/themes/Aero/gtk-2.0/Scrollbars/stepper-up.png new file mode 100644 index 0000000..eae274f Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/stepper-up.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png b/themes/Aero/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png new file mode 100644 index 0000000..21dfbe9 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png differ diff --git a/themes/Aero/gtk-2.0/Scrollbars/trough-scrollbar-vert.png b/themes/Aero/gtk-2.0/Scrollbars/trough-scrollbar-vert.png new file mode 100644 index 0000000..dcf5619 Binary files /dev/null and b/themes/Aero/gtk-2.0/Scrollbars/trough-scrollbar-vert.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/entry-shadow-in.png b/themes/Aero/gtk-2.0/Shadows/entry-shadow-in.png new file mode 100644 index 0000000..a22e93d Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/entry-shadow-in.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/shadow-etched-out.png b/themes/Aero/gtk-2.0/Shadows/shadow-etched-out.png new file mode 100644 index 0000000..f2bd1d4 Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/shadow-etched-out.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/shadow-in.png b/themes/Aero/gtk-2.0/Shadows/shadow-in.png new file mode 100644 index 0000000..417a89f Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/shadow-in.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/shadow-none.png b/themes/Aero/gtk-2.0/Shadows/shadow-none.png new file mode 100644 index 0000000..f28ca27 Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/shadow-none.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/shadow-out.png b/themes/Aero/gtk-2.0/Shadows/shadow-out.png new file mode 100644 index 0000000..f02b72a Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/shadow-out.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/shadow-stat.png b/themes/Aero/gtk-2.0/Shadows/shadow-stat.png new file mode 100644 index 0000000..b9b158c Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/shadow-stat.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/text-entry.png b/themes/Aero/gtk-2.0/Shadows/text-entry.png new file mode 100644 index 0000000..9a50e44 Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/text-entry.png differ diff --git a/themes/Aero/gtk-2.0/Shadows/text.png b/themes/Aero/gtk-2.0/Shadows/text.png new file mode 100644 index 0000000..6b127f2 Binary files /dev/null and b/themes/Aero/gtk-2.0/Shadows/text.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin-down-disable.png b/themes/Aero/gtk-2.0/Spin/spin-down-disable.png new file mode 100644 index 0000000..5bb58f6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin-down-disable.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin-down-prelight.png b/themes/Aero/gtk-2.0/Spin/spin-down-prelight.png new file mode 100644 index 0000000..9b6793d Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin-down-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin-down.png b/themes/Aero/gtk-2.0/Spin/spin-down.png new file mode 100644 index 0000000..5801489 Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin-down.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin-up-disable.png b/themes/Aero/gtk-2.0/Spin/spin-up-disable.png new file mode 100644 index 0000000..fa73839 Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin-up-disable.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin-up-prelight.png b/themes/Aero/gtk-2.0/Spin/spin-up-prelight.png new file mode 100644 index 0000000..aeca5bf Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin-up-prelight.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin-up.png b/themes/Aero/gtk-2.0/Spin/spin-up.png new file mode 100644 index 0000000..8af2250 Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin-up.png differ diff --git a/themes/Aero/gtk-2.0/Spin/spin.png b/themes/Aero/gtk-2.0/Spin/spin.png new file mode 100644 index 0000000..f5a8219 Binary files /dev/null and b/themes/Aero/gtk-2.0/Spin/spin.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/notebook-bottom.png b/themes/Aero/gtk-2.0/Tabs/notebook-bottom.png new file mode 100755 index 0000000..70e53a1 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/notebook-bottom.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/notebook-left.png b/themes/Aero/gtk-2.0/Tabs/notebook-left.png new file mode 100755 index 0000000..947f2eb Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/notebook-left.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/notebook-right.png b/themes/Aero/gtk-2.0/Tabs/notebook-right.png new file mode 100755 index 0000000..e3182b5 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/notebook-right.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/notebook-top.png b/themes/Aero/gtk-2.0/Tabs/notebook-top.png new file mode 100755 index 0000000..991c301 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/notebook-top.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/notebook_border.png b/themes/Aero/gtk-2.0/Tabs/notebook_border.png new file mode 100755 index 0000000..97f3791 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/notebook_border.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/null.png b/themes/Aero/gtk-2.0/Tabs/null.png new file mode 100755 index 0000000..079a05a Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/null.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-bottom-active.png b/themes/Aero/gtk-2.0/Tabs/tab-bottom-active.png new file mode 100755 index 0000000..f9bc508 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-bottom-active.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-bottom.png b/themes/Aero/gtk-2.0/Tabs/tab-bottom.png new file mode 100755 index 0000000..e9d9599 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-bottom.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-left-active.png b/themes/Aero/gtk-2.0/Tabs/tab-left-active.png new file mode 100755 index 0000000..92f7aad Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-left-active.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-left.png b/themes/Aero/gtk-2.0/Tabs/tab-left.png new file mode 100755 index 0000000..a101d52 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-left.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-right-active.png b/themes/Aero/gtk-2.0/Tabs/tab-right-active.png new file mode 100755 index 0000000..8f34817 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-right-active.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-right.png b/themes/Aero/gtk-2.0/Tabs/tab-right.png new file mode 100755 index 0000000..8fdf179 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-right.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-top-active.png b/themes/Aero/gtk-2.0/Tabs/tab-top-active.png new file mode 100755 index 0000000..cd441b7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-top-active.png differ diff --git a/themes/Aero/gtk-2.0/Tabs/tab-top.png b/themes/Aero/gtk-2.0/Tabs/tab-top.png new file mode 100755 index 0000000..b3b1e06 Binary files /dev/null and b/themes/Aero/gtk-2.0/Tabs/tab-top.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-dark.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-dark.png new file mode 100644 index 0000000..5ec58b0 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-dark.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-deep.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-deep.png new file mode 100644 index 0000000..0b95666 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-deep.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-light.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-light.png new file mode 100644 index 0000000..25f246e Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue-light.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-blue.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue.png new file mode 100644 index 0000000..935b415 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-blue.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-brown-grad.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-brown-grad.png new file mode 100644 index 0000000..e475d11 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-brown-grad.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-brown.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-brown.png new file mode 100644 index 0000000..da46b0f Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-brown.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1.png new file mode 100644 index 0000000..5939a90 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-11.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-11.png new file mode 100644 index 0000000..bd97a46 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-11.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111 (Kopie).png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111 (Kopie).png new file mode 100644 index 0000000..beeffe1 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111 (Kopie).png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111.png new file mode 100644 index 0000000..ba8a6c5 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1113.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1113.png new file mode 100644 index 0000000..87e329f Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1113.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1114.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1114.png new file mode 100644 index 0000000..b53763c Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-1114.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111blue.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111blue.png new file mode 100644 index 0000000..cfbbe11 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111blue.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111green.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111green.png new file mode 100644 index 0000000..27e6f17 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-111green.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-2.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-2.png new file mode 100644 index 0000000..a920464 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-2.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-3.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-3.png new file mode 100644 index 0000000..0b88c6c Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-3.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-4.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-4.png new file mode 100644 index 0000000..8bc273e Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear-alt-4.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-clear.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear.png new file mode 100644 index 0000000..cf2c7cc Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-clear.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-gray.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-gray.png new file mode 100644 index 0000000..e9eef51 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-gray.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-green.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-green.png new file mode 100644 index 0000000..f1f6f1c Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-green.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-orange-alt.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-orange-alt.png new file mode 100644 index 0000000..36cbcc7 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-orange-alt.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-orange.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-orange.png new file mode 100644 index 0000000..260cbd6 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-orange.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-purple-blue.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-purple-blue.png new file mode 100644 index 0000000..9579e15 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-purple-blue.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-purple-deep.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-purple-deep.png new file mode 100644 index 0000000..44d2a3d Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-purple-deep.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-purple.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-purple.png new file mode 100644 index 0000000..f5a421e Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-purple.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar-wood.png b/themes/Aero/gtk-2.0/Toolbar/toolbar-wood.png new file mode 100644 index 0000000..accf6b2 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar-wood.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar.png b/themes/Aero/gtk-2.0/Toolbar/toolbar.png new file mode 100644 index 0000000..30f3a87 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar1.png b/themes/Aero/gtk-2.0/Toolbar/toolbar1.png new file mode 100644 index 0000000..53927be Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar1.png differ diff --git a/themes/Aero/gtk-2.0/Toolbar/toolbar3.png b/themes/Aero/gtk-2.0/Toolbar/toolbar3.png new file mode 100644 index 0000000..d499c55 Binary files /dev/null and b/themes/Aero/gtk-2.0/Toolbar/toolbar3.png differ diff --git a/themes/Aero/gtk-2.0/gtkrc b/themes/Aero/gtk-2.0/gtkrc new file mode 100644 index 0000000..66e18f8 --- /dev/null +++ b/themes/Aero/gtk-2.0/gtkrc @@ -0,0 +1,1852 @@ +################Select your desired menubar colour!!! +include "menubar-custom.rc" + +################Select your desired toolbar colour!!! +include "toolbar-custom.rc" + +################Comment out the following line if don't need a skinned panel!!! +include "panel_custom.rc" + +################Select your desired menu colour!!! +include "menu-custom.rc" + +################Select your desired panel colour!!! +#include "panel_silver.rc" +include "panel_black-plastic.rc" + +gtk-menu-drop-shadow = 1 +gtk-menu-shadow-delay = 2 +gtk-icon-sizes = "panel-menu=24,24:panel=24,24:gtk-button=16,16:gtk-large-toolbar=20,20" +#:gtk-large-toolbar=28,28:gtk-small-toolbar=24,24" + +style "default" +{ + GtkWidget::interior_focus = 7 + GtkWidget::focus_padding = 0 + GtkButton::default_border = { 1, 1, 1, 1 } + GtkButton::default_outside_border = { 2, 2, 2, 2 } + + GtkRange::trough_border = 1 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + + GtkVScale::slider_length = 11 + GtkVScale::slider_width = 21 + GtkHScale::slider_length = 11 + GtkHScale::slider_width = 21 + + GtkPaned::handle_size = 6 + GtkScrollbar::min_slider_length = 50 + GtkCheckButton::indicator_size = 12 + GtkCheckButton::indicator_spacing = 3 + GtkMenuBar::internal_padding = 1 + GtkOptionMenu::indicator_size = { 15, 8 } + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + #GtkOptionMenu::indicator_spacing = { 8, 8, 8, 8 } + GtkStatusbar::shadow_type = STAT + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + + + xthickness = 1 #3 + ythickness = 1 #2 + + + fg[NORMAL] = "#353535" #normaler text + fg[ACTIVE] = "#353535" + fg[PRELIGHT] = "#000000" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#9B9B9B" + + bg[NORMAL] = "#f1edec" #normaler fensterhintergrund + bg[ACTIVE] = "#f1edec" + bg[PRELIGHT] = "#FFFFFF" + bg[SELECTED] = "#B2C3D0" + bg[INSENSITIVE] = "#FFFFFF" + + base[NORMAL] = "#FFFFFF" + base[ACTIVE] = "#B4E1FA" + base[PRELIGHT] = "#FFFFFF" + base[INSENSITIVE] = "#F4F4F4" + base[SELECTED] = "#B4E1FA" + + text[INSENSITIVE] = "#9B9B9B" + text[SELECTED] = "#000000" + text[ACTIVE] = "#444444" + text[PRELIGHT] = "#353535" + + engine "pixmap" + { + + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + +####################### SHADOWS ############################x + + image + { + function = SHADOW + shadow = IN + recolorable = FALSE + file = "Shadows/shadow-stat.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = OUT + recolorable = TRUE + file = "Shadows/shadow-out.png" + #border = { 1, 1, 1, 1 } + stretch = TRUE + } + + + + image + { + function = SHADOW + shadow = ETCHED_IN + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = ETCHED_OUT + recolorable = TRUE + file = "Shadows/shadow-none.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW_GAP + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + gap_start_file = "Frame-Gap/frame-gap-start.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Frame-Gap/frame-gap-end.png" + gap_end_border = { 0, 2, 2, 0 } + gap_side = TOP + } + image + { + function = VLINE + recolorable = TRUE + file = "Lines/line-v.png" + border = { 1, 1, 0, 0 } + stretch = TRUE + } + image + { + function = HLINE + recolorable = TRUE + file = "Lines/line-h.png" + border = { 0, 0, 1, 1 } + stretch = TRUE + } + + # focus + + image + { + function = FOCUS + recolorable = TRUE + file = "Others/focus.png" + border = { 6, 0, 6, 0 } + stretch = TRUE + } + + # arrows + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = BOX + recolorable = TRUE + file = "Toolbar/toolbar.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +#################### BUTTONS ####################### + +style "button" = "default" +{ + + engine "pixmap" + { + image + { + function = BOX + detail = "buttondefault" + recolorable = TRUE + file = "Buttons/button-default.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "Buttons/button-prelight.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = ACTIVE + file = "Buttons/button-pressed.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + file = "Buttons/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + file = "Buttons/button-normal.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +#style "checkradiobutton" { +# engine "pixmap" { +# image +# { +# function = FLAT_BOX +# recolorable = TRUE +# file = "Check-Radio/highlight.png" +# border = { 2, 5, 2, 5 } +# stretch = TRUE +# } +# } +#} + +#class "GtkRadioButton" style "checkradiobutton" +#class "GtkCheckButton" style "checkradiobutton" + +style "optionmenu" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Combo/combo-prelight.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Combo/combo-normal.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Combo/combo-prelight.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Combo/combo-normal.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = TAB + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Combo/combo-arrow-insens.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = NORMAL + overlay_file = "Combo/combo-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = PRELIGHT + overlay_file = "Combo/combo-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + } +} + +############################################################################### +###Check vagy mi.... ######## + +style "radiobutton" = "default" +{ + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/option5.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/option5.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/option3.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/option2.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + + + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/option6.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + + } +} + +################################################################################ + +style "checkbutton" = "default" +{ + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/check3.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/check3.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/check5.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/check2.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + + + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/check6.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + + } +} + + +####################### ENTRY #####################xx + +style "entry" = "default" +{ + + xthickness = 3 + ythickness = 1 + + GtkWidget::interior_focus = 0 + engine "pixmap" + { + image + { + function = FOCUS + recolorable = TRUE + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = NORMAL + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = NORMAL + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + + image + { + function = SHADOW + detail = "entry" + shadow = IN + state = NORMAL + recolorable = FALSE + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + + } +} + +style "textview" = "entry" { + base[INSENSITIVE] = "#F1EDEC" +} + +################x SPINBUTTONS ################ + +style "spinbutton" = "entry" +{ + + engine "pixmap" + { + image + { + function = ARROW + } + +############################# UP ######################xx + image + { + function = BOX + state = NORMAL + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-prelight.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-disable.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-prelight.png" + overlay_stretch = FALSE + } + + +###########################################x DOWN ######################## + image + { + function = BOX + state = NORMAL + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-prelight.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-disable.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-prelight.png" + overlay_stretch = FALSE + } + + } +} + +############################# SCROLLBAR #################### + +style "scrollbar" = "default" +{ + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-horiz.png" + border = { 19, 19, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-vert.png" + border = { 2, 2, 19, 19 } + stretch = TRUE + orientation = VERTICAL + } + + +###########x SLIDERS ##################x + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-horiz-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-horiz-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + } + +#############x verticals################xx + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-vert-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-vert-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + + +###########x END SLIDERS ##################x + +########### Steppers ###################### +#### UP ####### + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-up.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-up-prelight.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-up-prelight.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-up-insens.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + + ######### DOWN ############ + + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-down.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-down-prelight.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-down-prelight.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-down-insens.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + +############ RIGHT ################ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-right.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-right-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-right-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-right-insens.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + +############### LEFT ################### + + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-left.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-left-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-left-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-left-insens.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + + } +} + +##################### PROGRESSBAR ###################x + +style "progressbar" { + fg[PRELIGHT] = "#ffffff" + text[PRELIGHT] = "#ffffff" + xthickness = 0 + ythickness = 0 + engine "pixmap" + { + image + { + function = BOX + + detail = "trough" + file = "ProgressBar/trough-progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = BOX + + detail = "bar" + file = "ProgressBar/progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = BOX + + detail = "trough" + file = "ProgressBar/trough-progressbar-vertic.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = BOX + + detail = "bar" + file = "ProgressBar/progressbar-vertic.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + + } +} + +############################# RANGE ####################### + +style "range" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-horizontal.png" + border = { 10, 10, 1, 19 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-vertical.png" + border = { 0, 19, 10, 10 } + stretch = TRUE + orientation = VERTICAL + } +############### the sliders ############### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + +######################### VERTICAL ########################### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + +##################### TOOLBAR BUTTONS ############################### + +style "toolbuttons" = "default" +{ + xthickness = 1 + ythickness = 1 + + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + +image + { + function = BOX + recolorable = TRUE + state = NORMAL +## file = "Toolbar/toolbutton-normal.png" + file = "Buttons/button-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT +## file = "Toolbar/toolbutton-prelight.png" + file = "Buttons/button-prelight.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = ACTIVE +## file = "Toolbar/toolbutton-pressed.png" + file = "Buttons/button-pressed.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE +## file = "Toolbar/toolbutton-normal.png" + file = "Buttons/button-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + + } + +} + +##################### STATUSBAR ############################### + +style "statusbar" = "default" +{ + xthickness = 0 + ythickness = 0 + + bg_pixmap[NORMAL] ="Menu-Menubar/menubar-blue-green2.png" + bg[NORMAL] = "#000000" + + engine "pixmap" + { + + #This does not seem to be working. It seems that you can tell gtk how + #to draw the resizing grip in the bottom right corner of the window, which + #seems to be part of the status bar. Not sure why it is not working. + image + { + function = RESIZE_GRIP + recolorable = TRUE + #state = NORMAL + detail = "statusbar" + overlay_file = "Handles/resize_grip.png" + + overlay_border = {1,1,1,1 } + overlay_stretch = FALSE + } + } +} + +##################### NOTEBOOK ############################### + +style "notebook" = "default" +{ + + xthickness = 2 + ythickness = 2 + + bg[NORMAL] = "#EFEFEF" + bg[INSENSITIVE] = "#EFEFEF" + text[SELECTED] = "#000000" + base[SELECTED] = "#969696" # + + engine "pixmap" + { + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-bottom.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-top.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-left.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-right.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-top-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-bottom-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-left-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-right-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } +# +# How to draw boxes with a gap on one side (ie the page of a notebook) +# + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook-top.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null2.png" + gap_border = { 1, 2, 3, 4 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = TOP + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook-bottom.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null3.png" + gap_border = { 1, 2, 3, 4 } + gap_start_file = "Others/null.png" + gap_start_border = { 10, 10, 5, 5 } + gap_end_file = "Others/null.png" + gap_end_border = { 10, 10, 5, 5 } + gap_side = BOTTOM + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook-left.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null4.png" + gap_border = { 1, 2, 3, 4 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 2, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 2, 1, 0 } + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook-right.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null5.png" + gap_border = { 0, 0, 1, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 1, 2, 3, 4 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 2 } + gap_side = RIGHT + } +# +# How to draw the box of a notebook when it isnt attached to a tab +# + image + { + function = BOX + recolorable = TRUE + file = "Tabs/notebook-top.png" + border = { 6,6,6,6 } + stretch = TRUE + #gap_side = TOP + } + } +} + +style "tooltips" = "default" +{ + bg[NORMAL] = "#fffcdb" +} + +##################### RULER ################## + +style "ruler" = "default" +{ + engine "pixmap" { + image + { + function = BOX + recolorable = TRUE + detail = "vruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + detail = "hruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +################# HANDLES ###################x + +style "handlebox" = "default" +{ + engine "pixmap" + { + image + { + #function = SHADOW + } + + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = HANDLE + overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + } +} + + +style "flat" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + } + } +} + + +style "layout" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = BOX + detail = "button" + state = NORMAL + file = "Buttons/button-normal.png" + recolorable = TRUE + border = { 2, 3, 2, 3 } + stretch = TRUE + } + } +} + +##################### LISTHEADERS ###################x + +style "list-header" +{ + #Comment out the ythickness setting below for thicker column headers. + ythickness = 0 + GtkTreeView::odd_row_color = "#f4f4f4" + GtkTreeView::even_row_color = "#FFFFFF" #"#F4F4F4" + + #fg[NORMAL] = "#000000" + #text[NORMAL] = "#000000" + + engine "pixmap" + { + + #This image is used to draw the headers of columns in list views when they are + #not selected. + image + { + function = BOX + recolorable = TRUE + + state = NORMAL + file = "ListHeaders/list_header.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #This image is used to draw the column headers in list views when they are + #clicked. + image + { + function = BOX + recolorable = TRUE + + state = PRELIGHT + file = "ListHeaders/list_header-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #Does this do anything? + image + { + function = BOX + recolorable = TRUE + + state = ACTIVE + file = "ListHeaders/list_header-pressed.png" + border = { 2, 2, 2, 2} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + + state = SELECTED + file = "ListHeaders/list_header-pressed.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + + state = INSENSITIVE + file = "ListHeaders/list_header-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + + } + +} + +# This prevents Sodipodi from crashing while opening the +# Object-Style dialog. + +style "unstyle" +{ + engine "" + { + } +} + +# recognizable pressed toggle buttons +# SPIcons seem to erase the background first. That's why I can't use +# the button style. + +style "SPbutton" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "Shadows/shadow-out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + } + } +} + +style "treecol" +{ + bg[NORMAL] = "#000000" +} + +style "metacity-frame" +{ + # Normal base color + bg[NORMAL] = "#444444" + + # Unfocused title background color + bg[INSENSITIVE] = "#444444" + + # Unfocused title text color + fg[INSENSITIVE] = "#ffffff" + + # Focused icon color + #fg[NORMAL] = { 0.2, 0.2, 0.2 } + + # Focused title background color + bg[SELECTED] = "#444444" + + # Focused title text color + fg[SELECTED] = "#ffffff" +} + +#class "MetaFrames" style "metacity-frame" +class "GtkWidget" style "default" +widget_class "*Nautilus*GtkButton" style "default" +# modif début +class "GtkList" style "list-header" +class "GtkTree" style "list-header" +class "GtkCList" style "list-header" +class "GtkCTree" style "list-header" +class "GtkTreeView" style "list-header" +# modif fin +class "GtkEntry" style "entry" +# modif début +class "GtkText" style "entry" +class "GtkEditable" style "entry" +# modif fin +class "GtkOldEditable" style "entry" +class "GtkCheckButton" style "checkbutton" +class "GtkRadioButton" style "radiobutton" +class "GtkRadioMenuItem" style "radiobutton" +class "GtkCheckMenuItem" style "checkbutton" +class "GtkButton" style "button" +widget_class "*Panel*GtkButton" style "panelbuttons-gray" +widget_class "*Nautilus*GtkButton" style "button" +class "*Nautilus*GtkButton*" style "panelbuttons-gray" +# modif début +class "GtkToggleButton" style "button" +widget_class "*Nautilus*.GtkToggleButton" style "button" +# modif fin +class "GtkSpinButton" style "spinbutton" +class "GtkOptionMenu" style "optionmenu" +class "GtkRange" style "range" +class "GtkPaned" style "handlebox" +# modif début +class "GtkStatusbar" style "statusbar" +class "GtkProgress" style "progressbar" +# modif fin +class "GtkProgressBar" style "progressbar" +class "GtkRuler" style "ruler" +class "GtkScrollbar" style "scrollbar" +class "*Font*" style "optionmenu" + +widget "gtk-tooltips" style "tooltips" + +class "GtkCombo" style "optionmenu" +widget_class "*Combo*" style "optionmenu" + +widget_class "*Tool*GtkToggleButton" style "toolbuttons" +widget_class "*Tool*GtkButton" style "toolbuttons" + +widget_class "*List*" style "list-header" +widget_class "*GtkTree*" style "list-header" +widget_class "*GtkCList*" style "list-header" +#widget_class "*ETree*" style "list-header" +#widget_class "*ETable*" style "list-header" +##widget_class "*Tree*" style "list-header" + +class "GtkNotebook" style "notebook" +class "GtkTextView" style "textview" +class "GtkToolbar" style "flat" +class "GtkHandleBox" style "handlebox" +class "GtkEventBox" style "flat" +class "GtkLayout" style "layout" +class "SPButton" style "SPbutton" +# prevent Sodipodi from crashing +class "SPColorSlider" style "unstyle" + +################## CUSTOMIZE THIS IF YOU WANT + +class "*BonoboDockItem" style "toolbar-clear-alt-1" +widget_class "*BonoboDockItem" style "toolbar-clear-alt-1" +class "*HandleBox" style "toolbar-clear-alt-1" +widget_class "*HandleBox" style "toolbar-clear-alt-1" +class "*Toolbar" style "toolbar-clear-alt-1" +widget_class "*Toolbar" style "toolbar-clear-alt-1" + +class "GtkMenuBar*" style "menubar-blue-green" +widget_class "*MenuBar.*" style "menubar-blue-green" +widget_class "*Nautilus*.GtkMenuBar*" style "menubar-blue" +#widget_class "*Gnome-panel*.GtkMenuBar*" style "menubar-blue-green" +#widget_class "*E*GtkMenuBar*" style "menubar-green" +#widget_class "*Gimp*GtkMenuBar*" style "menubar-purple-deep" +widget_class "*Nautilus*Toolbar*" style "toolbar-clear" +widget_class "*Eog*Toolbar*" style "toolbar-clear0" +widget_class "*Gthumb*Toolbar*" style "toolbar-clear0" +widget_class "*F-spot*Toolbar*" style "toolbar-clear0" + +class "GtkMenu" style "menu-silver" +#class "GtkMenu" style "menu-black" + +class "GtkMenuItem" style "menuitem-silver" +class "GtkTearoffMenuItem" style "tearoffmenuitem-silver" +class "GtkImageMenuItem" style "menuitem-silver" +#class "GtkMenuItem" style "menuitem-black" +#class "GtkTearoffMenuItem" style "tearoffmenuitem-black" +#class "GtkImageMenuItem" style "menuitem-black" + +#widget_class "*Panel*Toplevel*GtkMenu" style "menu-black" +#widget_class "*Panel*Toplevel*GtkMenuItem" style "menuitem-black" +#widget_class "*Panel*Toplevel*GtkTearoffMenuItem" style "tearoffmenuitem-black" +#widget_class "*Panel*Toplevel*GtkImageMenuItem" style "menuitem-black" diff --git a/themes/Aero/gtk-2.0/ickle/cute-ickle-source.svg b/themes/Aero/gtk-2.0/ickle/cute-ickle-source.svg new file mode 100644 index 0000000..3c7a4e5 --- /dev/null +++ b/themes/Aero/gtk-2.0/ickle/cute-ickle-source.svg @@ -0,0 +1,1719 @@ + + +image/svg+xml + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/Aero/gtk-2.0/ickle/ickle/QsVistaCrystalDock.png b/themes/Aero/gtk-2.0/ickle/ickle/QsVistaCrystalDock.png new file mode 100644 index 0000000..632c849 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/QsVistaCrystalDock.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomickleblack.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleblack.png new file mode 100644 index 0000000..a4ef1ad Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleblack.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomickleblue.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleblue.png new file mode 100644 index 0000000..e06d7df Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleblue.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomickledesat.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomickledesat.png new file mode 100644 index 0000000..0b10a2d Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomickledesat.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomicklegreen.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomicklegreen.png new file mode 100644 index 0000000..315c852 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomicklegreen.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomicklepink.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomicklepink.png new file mode 100644 index 0000000..c93200f Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomicklepink.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomicklered.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomicklered.png new file mode 100644 index 0000000..ff3f7b2 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomicklered.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomickleslate.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleslate.png new file mode 100644 index 0000000..4a337db Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleslate.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/bottomickleyellow.png b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleyellow.png new file mode 100644 index 0000000..79180e7 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/bottomickleyellow.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topickleblack.png b/themes/Aero/gtk-2.0/ickle/ickle/topickleblack.png new file mode 100644 index 0000000..57ab7e0 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topickleblack.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topickleblack_alt.png b/themes/Aero/gtk-2.0/ickle/ickle/topickleblack_alt.png new file mode 100644 index 0000000..c208386 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topickleblack_alt.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topickleblue.png b/themes/Aero/gtk-2.0/ickle/ickle/topickleblue.png new file mode 100644 index 0000000..7186b1e Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topickleblue.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topickledesat.png b/themes/Aero/gtk-2.0/ickle/ickle/topickledesat.png new file mode 100644 index 0000000..e2c2a48 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topickledesat.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topicklegreen.png b/themes/Aero/gtk-2.0/ickle/ickle/topicklegreen.png new file mode 100644 index 0000000..0e112b0 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topicklegreen.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topicklepink.png b/themes/Aero/gtk-2.0/ickle/ickle/topicklepink.png new file mode 100644 index 0000000..b92bff0 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topicklepink.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topicklered.png b/themes/Aero/gtk-2.0/ickle/ickle/topicklered.png new file mode 100644 index 0000000..d15c294 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topicklered.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topickleslate.png b/themes/Aero/gtk-2.0/ickle/ickle/topickleslate.png new file mode 100644 index 0000000..3ab20ab Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topickleslate.png differ diff --git a/themes/Aero/gtk-2.0/ickle/ickle/topickleyellow.png b/themes/Aero/gtk-2.0/ickle/ickle/topickleyellow.png new file mode 100644 index 0000000..6e58882 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/ickle/topickleyellow.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickerblack.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerblack.png new file mode 100644 index 0000000..073a587 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerblack.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickerblue.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerblue.png new file mode 100644 index 0000000..eb1609b Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerblue.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickerdesat.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerdesat.png new file mode 100644 index 0000000..073852e Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerdesat.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickergreen.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickergreen.png new file mode 100644 index 0000000..0be5652 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickergreen.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickerpink.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerpink.png new file mode 100644 index 0000000..22a4392 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerpink.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickerred.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerred.png new file mode 100644 index 0000000..9faf4cb Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerred.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickerslate.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerslate.png new file mode 100644 index 0000000..9383f82 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickerslate.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/kickeryellow.png b/themes/Aero/gtk-2.0/ickle/icklekicker/kickeryellow.png new file mode 100644 index 0000000..037777c Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/kickeryellow.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerblack.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerblack.png new file mode 100644 index 0000000..f577d46 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerblack.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerblue.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerblue.png new file mode 100644 index 0000000..5ba9bea Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerblue.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerdesat.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerdesat.png new file mode 100644 index 0000000..c3b581c Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerdesat.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickergreen.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickergreen.png new file mode 100644 index 0000000..0a4841f Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickergreen.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerpink.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerpink.png new file mode 100644 index 0000000..9b4d5fe Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerpink.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerred.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerred.png new file mode 100644 index 0000000..c2f87f6 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerred.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerslate.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerslate.png new file mode 100644 index 0000000..97cbd45 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickerslate.png differ diff --git a/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickeryellow.png b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickeryellow.png new file mode 100644 index 0000000..f3a5644 Binary files /dev/null and b/themes/Aero/gtk-2.0/ickle/icklekicker/reversekickeryellow.png differ diff --git a/themes/Aero/gtk-2.0/menu-custom.rc b/themes/Aero/gtk-2.0/menu-custom.rc new file mode 100644 index 0000000..bce98e3 --- /dev/null +++ b/themes/Aero/gtk-2.0/menu-custom.rc @@ -0,0 +1,209 @@ +########################### Menu & Menuitem silver ############################# + +style "menu-silver" = "default" +{ +#bg_pixmap[NORMAL] = "Menu-Menubar/menu-overlay.png" +xthickness = 3 +ythickness = 1 + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "menu" + file = "Menu-Menubar/menu-alt.png" + border = { 7, 3, 3, 3 } #{ 34, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "menuitem-silver" = "default" +{ + xthickness = 1 + fg[PRELIGHT] = "#000000" + text[PRELIGHT] = "#000000" + + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "Menu-Menubar/menuitem.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "Arrows/arrow-right-norm.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "Arrows/arrow-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } +# image +# { +# function = HLINE +# recolorable = TRUE +# file = "Menu-Menubar/menuline.png" +# border = { 0, 0, 0, 0 } +# stretch = TRUE +# } + + } +} + +style "tearoffmenuitem-silver" = "menuitem" +{ + engine "pixmap" + { + image + { + function = ARROW + file = "Arrows/arrow-left.png" + stretch = TRUE + arrow_direction = LEFT + } +# image +# { +# function = HLINE +# file = "cuthere.png" +# border = { 0, 0, 0, 0 } +# stretch = TRUE +# } + } +} + +########################### Menu & Menuitem black ############################# + +style "menu-black" #= "default" +{ +xthickness = 3 +ythickness = 1 + + fg[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#FFFFFF" + fg[ACTIVE] = "#FFFFFF" + fg[SELECTED] = "#FFFFFF" + fg[INSENSITIVE] = "#FFFFFF" + + base[NORMAL] = "#FFFFFF" + base[ACTIVE] = "#FFFFFF" + base[PRELIGHT] = "#FFFFFF" + base[INSENSITIVE] = "#FFFFFF" + base[SELECTED] = "#FFFFFF" + + text[NORMAL] = "#FFFFFF" + text[PRELIGHT] = "#FFFFFF" + text[ACTIVE] = "#FFFFFF" + text[SELECTED] = "#FFFFFF" + text[INSENSITIVE] = "#FFFFFF" + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "menu" + file = "Menu-Menubar/menu-black.png" + border = { 7, 3, 3, 3 } #{ 34, 3, 3, 3 } + stretch = TRUE + } + } +} + +style "menuitem-black" #= "default" +{ + xthickness = 1 + +# fg[NORMAL] = "#FFFFFF" +# fg[PRELIGHT] = "#FFFFFF" +# fg[ACTIVE] = "#FFFFFF" +# fg[SELECTED] = "#000000" +# fg[INSENSITIVE] = "#8A857C" + +# base[NORMAL] = "#FFFFFF" +# base[ACTIVE] = "#000000" +# base[PRELIGHT] = "#FFFFFF" +# base[INSENSITIVE]= "#F4F4F4" +# base[SELECTED] = "#B4E1FA" + +# text[NORMAL] = "#161616" +# text[PRELIGHT] = "#FFFFFF" +# text[ACTIVE] = "#000000" +# text[SELECTED] = "#000000" +# text[INSENSITIVE] = "#8A857C" + +# fg[NORMAL] = "#FFFFFF" +# text[NORMAL] = "#FFFFFF" +# fg[PRELIGHT] = "#2b2b2b" +# text[PRELIGHT] = "#2b2b2b" + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "Menu-Menubar/menuitem.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "Arrows/arrow-right-norm.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "Arrows/arrow-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + } +} + +style "tearoffmenuitem-black" = "menuitem-black" +{ + engine "pixmap" + { + image + { + function = ARROW + file = "Arrows/arrow-left.png" + stretch = TRUE + arrow_direction = LEFT + } +# image +# { +# function = HLINE +# file = "cuthere.png" +# border = { 0, 0, 0, 0 } +# stretch = TRUE +# } + } +} diff --git a/themes/Aero/gtk-2.0/menubar-custom.rc b/themes/Aero/gtk-2.0/menubar-custom.rc new file mode 100644 index 0000000..71a7e5d --- /dev/null +++ b/themes/Aero/gtk-2.0/menubar-custom.rc @@ -0,0 +1,1051 @@ +#################### MENUBAR ################### + + +style "menubar-black" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#B9B9B9" + fg[ACTIVE] = "#B9B9B9" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-black.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-black.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-green" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#9DDBA4" + fg[ACTIVE] = "#9DDBA4" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-green-alt" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#9DDBA4" + fg[ACTIVE] = "#9DDBA4" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-green-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-green-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-green-blue" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-green-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-green-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-blue-green" +{ +#font_name = "Segoe UI Bold 9" +font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#000000" + fg[ACTIVE] = "#000000" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-blue-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-blue-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-blue" #Nautilus übernimmt diese einstellungen!!!! +{ +#font_name = "Segoe UI Bold 9" +font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#000000" + fg[ACTIVE] = "#000000" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-blue-greenX.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-blue-greenX.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-vista" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#404040" + text[NORMAL] = "#404040" + fg[PRELIGHT] = "#808080" + fg[ACTIVE] = "#808080" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-vista.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-vista.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-vista-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-blue-dark" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-blue-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-blue-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-blue-deep" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-blue-deep.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-blue-deep.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-blue-light" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" +# fg[INSENSITIVE] = "#DDE4FF" +# text[PRELIGHT] = "#DDE4FF" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-blue-light.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-blue-light.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-purple-blue" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-purple-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-purple-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-purple-deep" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#E6AAF5" + fg[ACTIVE] = "#E6AAF5" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-purple-deep.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-purple-deep.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-purple" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#E6AAF5" + fg[ACTIVE] = "#E6AAF5" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-purple.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-purple.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-brown" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#F0B58D" + fg[ACTIVE] = "#F0B58D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-brown.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-brown.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-brown-grad" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#F0B58D" + fg[ACTIVE] = "#F0B58D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-brown-grad.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-brown-grad.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-clear" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" + #fg[INSENSITIVE] = "#DDE4FF" + #text[PRELIGHT] = "#DDE4FF" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-clear.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-clear.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item-alt.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-clear-alt" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-clear-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-clear-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-orange" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#5F3C2D" + fg[ACTIVE] = "#5F3C2D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-orange.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-orange.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + + +style "menubar-orange-alt" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#5f3c2d" + fg[ACTIVE] = "#5f3c2d" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-orange-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-orange-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/themes/Aero/gtk-2.0/panel_black-plastic.rc b/themes/Aero/gtk-2.0/panel_black-plastic.rc new file mode 100644 index 0000000..a013295 --- /dev/null +++ b/themes/Aero/gtk-2.0/panel_black-plastic.rc @@ -0,0 +1,15 @@ +widget "*PanelWidget*" style "panel-gray" +widget "*PanelApplet*" style "panel-black" +class "*Panel*" style "panel-black" +widget_class "*Mail*" style "panel-black" +widget_class "*notif*" style "panel-black" +widget_class "*Notif*" style "panel-black" +widget_class "*Tray*" style "panel-black" +widget_class "*tray*" style "panel-black" +class "*notif*" style "panel-black" +class "*Notif*" style "panel-black" +class "*Tray*" style "panel-black" +class "*tray*" style "panel-black" +widget_class "*BonoboDockItem" style "panel-black" +class "*BonoboDockItem" style "panel-black" +widget_class "*Panel*GtkToggleButton" style "panelbuttons-black" diff --git a/themes/Aero/gtk-2.0/panel_custom.rc b/themes/Aero/gtk-2.0/panel_custom.rc new file mode 100644 index 0000000..85bcc71 --- /dev/null +++ b/themes/Aero/gtk-2.0/panel_custom.rc @@ -0,0 +1,255 @@ +#################### PANEL BACKGROUND #########################xx + +style "panel-gray" +{ + xthickness = 2 + ythickness = 0 + + fg[NORMAL] = "#000000" + fg[PRELIGHT] = "#000000" + fg[ACTIVE] = "#000000" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#8A857C" + + text[NORMAL] = "#000000" + text[PRELIGHT] = "#000000" + text[ACTIVE] = "#000000" + text[SELECTED] = "#000000" + text[INSENSITIVE] = "#8A857C" + + bg_pixmap[NORMAL] = "Panel/panel-bg-black-36.png" + bg_pixmap[INSENSITIVE] = "" + bg_pixmap[PRELIGHT] = "" + bg_pixmap[SELECTED] = "" + bg_pixmap[ACTIVE] = "" +} + +style "panel-blue" +{ + xthickness = 2 + ythickness = 0 + + fg[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#FFFFFF" + fg[ACTIVE] = "#FFFFFF" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#8A857C" + + text[NORMAL] = "#161616" + text[PRELIGHT] = "#FFFFFF" + text[ACTIVE] = "#000000" + text[SELECTED] = "#FFFFFF" + text[INSENSITIVE] = "#8A857C" + + bg_pixmap[NORMAL] = "Panel/panel-bg-blue-24.png" + bg_pixmap[INSENSITIVE] = "" + bg_pixmap[PRELIGHT] = "" + bg_pixmap[SELECTED] = "" + bg_pixmap[ACTIVE] = "" +} + +style "panel-black" +{ + xthickness = 2 + ythickness = 0 + + fg[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#FFFFFF" + fg[ACTIVE] = "#FFFFFF" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#8A857C" + + text[NORMAL] = "#000000" + text[PRELIGHT] = "#000000" + text[ACTIVE] = "#000000" + text[SELECTED] = "#000000" + text[INSENSITIVE] = "#8A857C" + +#bg_pixmap[NORMAL] = "ickle/icklekicker/kickerslate.png" +#bg_pixmap[SELECTED] = "Panel/panel-bg.png" +#bg_pixmap[INSENSITIVE] = "Panel/panel-bg.png" +#bg_pixmap[PRELIGHT] = "Panel/panel-bg.png" + bg_pixmap[NORMAL] = "Panel/panel-bg-black-36.png" + bg_pixmap[INSENSITIVE] = "" + bg_pixmap[PRELIGHT] = "" + bg_pixmap[SELECTED] = "" + bg_pixmap[ACTIVE] = "" +} + +##################### PANEL BUTTONS ############################### + +style "panelbuttons-gray" = "default" +{ + + fg[NORMAL] = "#ffffff" # very dark brown + fg[PRELIGHT] = "#ffffff" # text on buttons (hover) + fg[ACTIVE] = "#ffffff" # text on unfocused tabs + fg[SELECTED] = "#ffffff" # selected text on lists + fg[INSENSITIVE] = "#ffffff" # greyed "unused" text + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton_gray_2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton_gray_1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton_gray_2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton_gray_4.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton_gray_4.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton_gray_1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + } + +} + +style "panelbuttons-black" = "default" +{ + + fg[NORMAL] = "#ffffff" # very dark brown + fg[PRELIGHT] = "#ffffff" # text on buttons (hover) + fg[ACTIVE] = "#ffffff" # text on unfocused tabs + fg[SELECTED] = "#ffffff" # selected text on lists + fg[INSENSITIVE] = "#ffffff" # greyed "unused" text + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton_black_2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton_black_1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton_black_2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton_black_4.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton_black_4.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton_black_1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + } + +} diff --git a/themes/Aero/gtk-2.0/panel_silver.rc b/themes/Aero/gtk-2.0/panel_silver.rc new file mode 100644 index 0000000..ccb8ee5 --- /dev/null +++ b/themes/Aero/gtk-2.0/panel_silver.rc @@ -0,0 +1,15 @@ +widget "*PanelWidget*" style "panel-gray" +widget "*PanelApplet*" style "panel-gray" +class "*Panel*" style "panel-gray" +widget_class "*Mail*" style "panel-gray" +widget_class "*notif*" style "panel-gray" +widget_class "*Notif*" style "panel-gray" +widget_class "*Tray*" style "panel-gray" +widget_class "*tray*" style "panel-gray" +class "*notif*" style "panel-gray" +class "*Notif*" style "panel-gray" +class "*Tray*" style "panel-gray" +class "*tray*" style "panel-gray" +widget_class "*BonoboDockItem" style "panel-gray" +class "*BonoboDockItem" style "panel-gray" +widget_class "*Panel*GtkToggleButton" style "panelbuttons-gray" diff --git a/themes/Aero/gtk-2.0/toolbar-custom.rc b/themes/Aero/gtk-2.0/toolbar-custom.rc new file mode 100644 index 0000000..ce2fb69 --- /dev/null +++ b/themes/Aero/gtk-2.0/toolbar-custom.rc @@ -0,0 +1,516 @@ +#################### MENUBAR ################### + + +style "toolbar-black" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#B9B9B9" + fg[ACTIVE] = "#B9B9B9" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-black.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-green" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#9DDBA4" + fg[ACTIVE] = "#9DDBA4" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + } +} + + +style "toolbar-blue-green" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Menu-Menubar/menubar-blue-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-blue" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-blue-dark" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-blue-dark.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-blue-deep" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-blue-deep.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-blue-light" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-blue-light.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-purple-blue" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#C7DBFC" + fg[ACTIVE] = "#C7DBFC" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-purple-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-purple-deep" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#E6AAF5" + fg[ACTIVE] = "#E6AAF5" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-purple-deep.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-purple" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#E6AAF5" + fg[ACTIVE] = "#E6AAF5" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-purple.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-brown" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#F0B58D" + fg[ACTIVE] = "#F0B58D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-brown.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-brown-grad" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#F0B58D" + fg[ACTIVE] = "#F0B58D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-brown-grad.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-clear" #nautilus Toolbar style!!!!!!!! +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + font_name = "Segoe UI 9" + bg_pixmap[NORMAL] ="Menu-Menubar/menubar-blue-green2YY.png" + bg[NORMAL] = "#4a92a0" + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#FFFFFF" + fg[ACTIVE] = "#FFFFFF" + #fg[INSENSITIVE] = "#DDE4FF" + #text[PRELIGHT] = "#DDE4FF" + + xthickness = 0 + ythickness = 0 + + engine "pixmap" + { + image + { + function = BOX + file = "Menu-Menubar/menubar-blue-green1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +style "toolbar-clear0" #alternativ Toolbar style!!!!!!!! +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + #bg_pixmap[NORMAL] ="Menu-Menubar/menubar-blue-greenXX.png" + bg[NORMAL] = "#000000" + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#00F0FF" + fg[ACTIVE] = "#FFFFFF" + #fg[INSENSITIVE] = "#DDE4FF" + #text[PRELIGHT] = "#DDE4FF" + + xthickness = 5 + ythickness = 4 + + engine "pixmap" + { + image + { + function = BOX + file = "Menu-Menubar/menubar-blue-greenXX.png" + border = { 5, 5, 0, 5 } + stretch = TRUE + } + } +} + + + +style "toolbar-clear-alt-1" #toolbarstyle of normal apps +{ + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#FFFFFF" + fg[ACTIVE] = "#FFFFFF" + fg[INSENSITIVE] = "#FFFFFF" + text[PRELIGHT] = "#FFFFFF" + + xthickness = 1 + ythickness = 0 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-clear-alt-111.png" #Toolbar/toolbar-clear-alt-11.png + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-clear-alt-2" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" + #fg[INSENSITIVE] = "#DDE4FF" + #text[PRELIGHT] = "#DDE4FF" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-clear-alt-2.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-clear-alt-3" +{ + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#FFFFFF" + fg[ACTIVE] = "#FFFFFF" + fg[INSENSITIVE] = "#FFFFFF" + text[PRELIGHT] = "#FFFFFF" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-clear-alt-3.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-clear-alt-4" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" + #fg[INSENSITIVE] = "#DDE4FF" + #text[PRELIGHT] = "#DDE4FF" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-clear-alt-4.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-orange" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#5F3C2D" + fg[ACTIVE] = "#5F3C2D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-orange.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + + +style "toolbar-orange-alt" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#FFFFFF" + text[NORMAL] = "#FFFFFF" + fg[PRELIGHT] = "#5F3C2D" + fg[ACTIVE] = "#5F3C2D" + + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-orange-alt.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + diff --git a/themes/Calla/gtk-2.0/gtkrc b/themes/Calla/gtk-2.0/gtkrc new file mode 100644 index 0000000..1b3617e --- /dev/null +++ b/themes/Calla/gtk-2.0/gtkrc @@ -0,0 +1,256 @@ +style "rezlooks-default" +{ + + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::default_outside_border = { 0, 0, 0, 0 } + GtkRange::trough_border = 0 + + GtkWidget::focus_padding = 1 + + GtkPaned::handle_size = 6 + + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + GtkScrollbar::min_slider_length = 30 + GtkCheckButton::indicator_size = 12 + GtkMenuBar::internal-padding = 0 + + GtkTreeView::expander_size = 14 + GtkExpander::expander_size = 16 + + GtkWidget::cursor_color = "#222222" + GtkWidget::secondary_cursor_color = "#222222" + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = "#222222" # very dark brown + fg[PRELIGHT] = "#1fbac2" # text on buttons (hover) + fg[ACTIVE] = "#222222" # text on unfocused tabs + fg[SELECTED] = "#1fbac2" # selected text on lists + fg[INSENSITIVE] = "#606060" # greyed "unused" text + + bg[NORMAL] = "#DADBC7" # entire background + bg[PRELIGHT] = "#433E2B" # button prelights + bg[ACTIVE] = "#bcbc99" # selected taskbar items + bg[SELECTED] = "#433E2B" # checkbutton progressbar highlight menu + bg[INSENSITIVE] = "#DADBC7" # greyed buttons + + base[NORMAL] = "#EEEEE4" # window background + base[PRELIGHT] = "#ffffff" # menubar outline colour + base[ACTIVE] = "#bcbc99" # selected item background (out of focus) + base[SELECTED] = "#433E2B" # selected hilight,tab/slider background, & menu stripe + base[INSENSITIVE] = "#dadbc7" # greyed sliders + + text[NORMAL] = "#222222" # text in general + text[PRELIGHT] = "#222222" # hover text (on buttons) + text[ACTIVE] = "#222222" # greyed text out of use (on highlight) + text[SELECTED] = "#1fbac2" # selected text (on highlight) + text[INSENSITIVE] = "#909090" # greyed text + + engine "rezlooks" + { + scrollbar_color = "#BCBC99" + menubarstyle = 0 # 0 = flat, 1 = flat gradient, 2 = striped gradient + menuitemstyle = 0 # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button) + animation = TRUE + } +} + + +style "rezlooks-progressbar" = "rezlooks-default" +{ + fg[PRELIGHT] = "#1fbac2" + xthickness = 1 + ythickness = 1 + +} + +style "rezlooks-wide" = "rezlooks-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "rezlooks-button" = "rezlooks-default" +{ + xthickness = 2 + ythickness = 2 + bg[NORMAL] = "#DADBC7" +} + +style "rezlooks-notebook" = "rezlooks-wide" +{ + bg[NORMAL] = "#DADBC7" # inner window background colour + bg[ACTIVE] = "#bcbc99" # out of focus tabs + bg[SELECTED] = "#433E2B" +} + + +style "rezlooks-tasklist" = "rezlooks-default" +{ + xthickness = 5 + ythickness = 0 +} + +style "rezlooks-menu" = "rezlooks-default" +{ + bg[NORMAL] = "#DADBC7" +} + +style "rezlooks-menu-item" = "rezlooks-default" +{ + xthickness = 2 + ythickness = 3 + fg[PRELIGHT] = "#1fbac2" + text[PRELIGHT] = "#1fbac2" +} + +style "rezlooks-tree" = "rezlooks-default" +{ + xthickness = 2 + ythickness = 2 + GtkTreeView::odd_row_color = "#ffffff" + GtkTreeView::even_row_color = "#f1f1f1" +} + +style "evolution-hack" = "rezlooks-default" +{ + bg[ACTIVE] = "#D1D2B8" + bg[SELECTED] = "#433E2B" + fg[ACTIVE] = "#433E2B" + fg[SELECTED] = "#e0e0e0" +} + +style "rezlooks-frame-title" = "rezlooks-default" +{ + fg[NORMAL] = "#222222" +} + +style "rezlooks-panel" = "rezlooks-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "rezlooks-tooltips" = "rezlooks-default" +{ + xthickness = 4 + ythickness = 4 + bg[NORMAL] = "#bcbc99" + } + +style "rezlooks-combo" = "rezlooks-default" +{ + xthickness = 1 + ythickness = 2 +} + +style "metacity-frame" +{ + # Normal base color + #bg[NORMAL] = "#ff0000" + + # Unfocused title background color + #bg[INSENSITIVE] = { 0.8, 0.8, 0.8 } + + # Unfocused title text color + #fg[INSENSITIVE] = { 1.55, 1.55, 1.55 } + + # Focused icon color + #fg[NORMAL] = { 0.2, 0.2, 0.2 } + + # Focused title background color + #bg[SELECTED] = "#ff0080" + + # Focused title text color + #fg[SELECTED] = "#ffffff" +} + +style "menubar" +{ + # fg[NORMAL] = "#000000" + # text[NORMAL] = "#000000" + bg[PRELIGHT] = "#433E2B" + fg[PRELIGHT] = "#1fbac2" +# fg[ACTIVE] = "#282828" +# fg[INSENSITIVE] = "#c9ddec" +# text[PRELIGHT] = "#c9ddec" + +xthickness = 1 +ythickness = 3 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "menu.png" + border = { 2, 2, 2, 2 } + stretch = FALSE + } + + image + { + function = BOX + state = ACTIVE + file = "menu.png" + border = { 2, 2, 2, 2 } + stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + file = "menu.png" + border = { 2, 2, 2, 2 } + stretch = FALSE + } + } +} + +# widget styles +class "GtkWidget" style "rezlooks-default" +class "GtkButton" style "rezlooks-button" +class "GtkCombo" style "rezlooks-button" +class "GtkRange" style "rezlooks-wide" +class "GtkFrame" style "rezlooks-wide" +class "GtkMenu" style "rezlooks-menu" +class "GtkEntry" style "rezlooks-button" +class "GtkMenuItem" style "rezlooks-menu-item" +class "GtkStatusbar" style "rezlooks-wide" +class "GtkNotebook" style "rezlooks-notebook" +class "GtkProgressBar" style "rezlooks-progressbar" + +class "MetaFrames" style "metacity-frame" +widget_class "*MenuItem.*" style "rezlooks-menu-item" + +class "GtkMenuBar*" style "menubar" +widget_class "*MenuBar.*" style "menubar" + +# combobox stuff +widget_class "*.GtkComboBox.GtkButton" style "rezlooks-combo" +widget_class "*.GtkCombo.GtkButton" style "rezlooks-combo" + +# tooltips stuff +widget_class "*.tooltips.*.GtkToggleButton" style "rezlooks-tasklist" +widget "gtk-tooltips" style "rezlooks-tooltips" + +# treeview stuff +widget_class "*.GtkTreeView.GtkButton" style "rezlooks-tree" +widget_class "*.GtkCTree.GtkButton" style "rezlooks-tree" +widget_class "*.GtkList.GtkButton" style "rezlooks-tree" +widget_class "*.GtkCList.GtkButton" style "rezlooks-tree" +widget_class "*.GtkFrame.GtkLabel" style "rezlooks-frame-title" + +# notebook stuff +widget_class "*.GtkNotebook.*.GtkEventBox" style "rezlooks-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "rezlooks-notebook" + +# evolution +widget_class "*GtkCTree*" style "evolution-hack" +widget_class "*GtkList*" style "evolution-hack" +widget_class "*GtkCList*" style "evolution-hack" +widget_class "*.ETree.*" style "evolution-hack" + + diff --git a/themes/Calla/gtk-2.0/menu.png b/themes/Calla/gtk-2.0/menu.png new file mode 100644 index 0000000..2031e3d Binary files /dev/null and b/themes/Calla/gtk-2.0/menu.png differ diff --git a/themes/Candido-Calm/gtk-2.0/gtkrc b/themes/Candido-Calm/gtk-2.0/gtkrc new file mode 100644 index 0000000..dfa2e73 --- /dev/null +++ b/themes/Candido-Calm/gtk-2.0/gtkrc @@ -0,0 +1,205 @@ +style "candido-default" { + + GtkButton ::default_border = { 0, 0, 0, 0 } + GtkRange ::trough_border = 0 + GtkPaned ::handle_size = 6 + GtkRange ::slider_width = 15 + GtkRange ::stepper_size = 15 + + GtkScrollbar ::min_slider_length = 35 + GtkCheckButton ::indicator_size = 14 + GtkMenuBar ::internal-padding = 0 + GtkTreeView ::expander_size = 14 + GtkExpander ::expander_size = 16 + GtkScale ::slider-length = 31 + # GtkToolbar ::button-relief = GTK_RELIEF_NORMAL + # GtkMenuBar ::shadow-type = GTK_SHADOW_OUT + # GtkScrollbar ::has-secondary-forward-stepper = 1 + # GtkScrollbar ::has-secondary-backward-stepper = 1 + + GtkButton ::child-displacement-x = 0 + GtkButton ::child-displacement-y = 0 + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = "#4a422f" + fg[PRELIGHT] = "#4a422f" + fg[ACTIVE] = "#5d4c3c" + fg[SELECTED] = "#5d4c3c" + fg[INSENSITIVE] = "#9D9388" + + bg[NORMAL] = "#f1efeb" + bg[PRELIGHT] = "#f5f3f0" + bg[ACTIVE] = "#c5bdb0" + bg[SELECTED] = "#c1baaa" + bg[INSENSITIVE] = "#E5E1DD" + + base[NORMAL] = "#FFFFFF" + base[PRELIGHT] = "#b39169" + base[ACTIVE] = "#d0c8c1" + base[SELECTED] = "#c1baaa" + base[INSENSITIVE] = "#E5E1DD" + + text[NORMAL] = "#342913" + text[PRELIGHT] = "#101010" + text[ACTIVE] = "#ffffff" + text[SELECTED] = "#FFFFFF" + text[INSENSITIVE] = "#9D9388" + + + engine "candido" { + contrast = 0.7 + menubarstyle = 1 # 0 = flat, 1 = gradient + menubaritemstyle = 1 # 0 = flat, 1 = button-ish style + squaredstyle = 0 # 0 = default (rounded), 1 = squared + animation = TRUE + } +} + + +style "candido-wide" = "candido-default" { + xthickness = 1 + ythickness = 1 +} + +style "candido-wider" = "candido-default" { + xthickness = 2 + ythickness = 2 +} + +style "candido-button" = "candido-wider" { + bg[PRELIGHT] = "#dfd9cd" + bg[NORMAL] = "#F1EFEC" + bg[SELECTED] = "#7a6b56" +} + +style "candido-scale" = "candido-default" { + xthickness = 3 + ythickness = 3 + bg[PRELIGHT] = "#dfd9cd" + bg[NORMAL] = "#F1EFEC" +} + +style "candido-entry" = "candido-wider" +{ + xthickness = 3 + ythickness = 3 + bg[SELECTED] = "#dfd9cd" +} + +style "candido-notebook" = "candido-wide" { + bg[NORMAL] = "#E5E1DD" + bg[INSENSITIVE] = "#E5E1DD" +} + +style "candido-tasklist" = "candido-default" { + xthickness = 5 + ythickness = 3 +} + +style "candido-menu" = "candido-default" { + xthickness = 1 + ythickness = 1 + bg[NORMAL] = "#f8f5f2" + #text[PRELIGHT] = "#f1f1f1" +} + +style "candido-menubar" = "candido-button" { + #text[PRELIGHT] = "#000000" + #fg[PRELIGHT] = "#f1f1f1" +} + +style "candido-menubar-item" = "candido-button" { + #text[PRELIGHT] = "#000000" + #fg[PRELIGHT] = "#f1f1f1" +} + + +style "candido-menu-item" = "candido-default" { + xthickness = 2 # Menu Stuff + ythickness = 2 + #fg[PRELIGHT] = "#ffffff" + #text[PRELIGHT] = "#ffffff" +} + +style "candido-tree" = "candido-default" { + xthickness = 2 + ythickness = 2 +} + +style "candido-frame-title" = "candido-default" { + fg[NORMAL] = "#404040" # Status Bar Type Thing +} + +style "candido-tooltips" = "candido-default" { + xthickness = 4 + ythickness = 4 + bg[NORMAL] = { 1.0,1.0,0.85 } +} + +style "candido-progressbar" = "candido-wide" { + xthickness = 2 + ythickness = 2 + #fg[PRELIGHT] = "#000000" +} + +style "candido-combo" = "candido-button" { +} + +style "metacity-frame" = "candido-default" { + bg[SELECTED] = "#d7ba94" # Main Metacity title bar colour +} + +# Evolution uses bg and fg for its ETree instead of base and text like it should +style "evolution-hack" = "candido-default" { + bg[ACTIVE] = "#DBC19A" + bg[SELECTED] = "#BA9871" + fg[ACTIVE] = "#ffffff" + fg[SELECTED] = "#ffffff" +} + + +# widget styles +class "GtkWidget" style "candido-default" +class "GtkButton" style "candido-button" +class "GtkScale" style "candido-scale" +class "GtkCombo" style "candido-button" +class "GtkRange" style "candido-button" +class "GtkFrame" style "candido-wide" +class "GtkMenu" style "candido-menu" +class "GtkEntry" style "candido-entry" +class "GtkMenuItem" style "candido-menu-item" +class "GtkNotebook" style "candido-notebook" +class "GtkProgressBar" style "candido-progressbar" +class "MetaFrames" style "metacity-frame" +class "GtkWindow" style "metacity-frame" + +class "*MenuBar*" style "candido-menubar" + +widget_class "*MenuItem.*" style "candido-menu-item" +widget_class "*MenuBar.*" style "candido-menubar-item" + +# combobox stuff +widget_class "*.GtkComboBox.GtkButton" style "candido-combo" +widget_class "*.GtkCombo.GtkButton" style "candido-combo" +# tooltips stuff +widget_class "*.tooltips.*.GtkToggleButton" style "candido-tasklist" +widget "gtk-tooltips" style "candido-tooltips" + +# treeview stuff +widget_class "*.GtkTreeView.GtkButton" style "candido-tree" +widget_class "*.GtkCTree.GtkButton" style "candido-tree" +widget_class "*.GtkList.GtkButton" style "candido-tree" +widget_class "*.GtkCList.GtkButton" style "candido-tree" +widget_class "*.GtkFrame.GtkLabel" style "candido-frame-title" + +# notebook stuff +widget_class "*.GtkNotebook.*.GtkEventBox" style "candido-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "candido-notebook" + +# those should really use base and text colors instead +widget_class "*GtkCTree*" style "evolution-hack" +widget_class "*GtkList*" style "evolution-hack" +widget_class "*GtkCList*" style "evolution-hack" +widget_class "*.ETree.*" style "evolution-hack" diff --git a/themes/Cillop/LICENSE b/themes/Cillop/LICENSE new file mode 100644 index 0000000..5b6e7c6 --- /dev/null +++ b/themes/Cillop/LICENSE @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey 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 2 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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 Library General +Public License instead of this License. diff --git a/themes/Cillop/gtk-2.0/arrow-down-ins.png b/themes/Cillop/gtk-2.0/arrow-down-ins.png new file mode 100644 index 0000000..a85e48c Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-down-ins.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-down-pre.png b/themes/Cillop/gtk-2.0/arrow-down-pre.png new file mode 100644 index 0000000..0ce6b11 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-down-pre.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-down.png b/themes/Cillop/gtk-2.0/arrow-down.png new file mode 100644 index 0000000..d9a7cd7 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-down.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-left-ins.png b/themes/Cillop/gtk-2.0/arrow-left-ins.png new file mode 100644 index 0000000..da6c6e7 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-left-ins.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-left-pre.png b/themes/Cillop/gtk-2.0/arrow-left-pre.png new file mode 100644 index 0000000..978cd91 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-left-pre.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-left.png b/themes/Cillop/gtk-2.0/arrow-left.png new file mode 100644 index 0000000..db058ab Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-left.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-pre.svg b/themes/Cillop/gtk-2.0/arrow-pre.svg new file mode 100644 index 0000000..658dc14 --- /dev/null +++ b/themes/Cillop/gtk-2.0/arrow-pre.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/arrow-right-ins.png b/themes/Cillop/gtk-2.0/arrow-right-ins.png new file mode 100644 index 0000000..ec4f250 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-right-ins.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-right-pre.png b/themes/Cillop/gtk-2.0/arrow-right-pre.png new file mode 100644 index 0000000..ebbdfbb Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-right-pre.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-right.png b/themes/Cillop/gtk-2.0/arrow-right.png new file mode 100644 index 0000000..68c295a Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-right.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-rleft-ins.png b/themes/Cillop/gtk-2.0/arrow-rleft-ins.png new file mode 100644 index 0000000..da6c6e7 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-rleft-ins.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-up-ins.png b/themes/Cillop/gtk-2.0/arrow-up-ins.png new file mode 100644 index 0000000..740bf9c Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-up-ins.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-up-pre.png b/themes/Cillop/gtk-2.0/arrow-up-pre.png new file mode 100644 index 0000000..4983e11 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-up-pre.png differ diff --git a/themes/Cillop/gtk-2.0/arrow-up.png b/themes/Cillop/gtk-2.0/arrow-up.png new file mode 100644 index 0000000..536b960 Binary files /dev/null and b/themes/Cillop/gtk-2.0/arrow-up.png differ diff --git a/themes/Cillop/gtk-2.0/arrow.svg b/themes/Cillop/gtk-2.0/arrow.svg new file mode 100644 index 0000000..d97fe64 --- /dev/null +++ b/themes/Cillop/gtk-2.0/arrow.svg @@ -0,0 +1,66 @@ + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/bg.png b/themes/Cillop/gtk-2.0/bg.png new file mode 100644 index 0000000..c7e7590 Binary files /dev/null and b/themes/Cillop/gtk-2.0/bg.png differ diff --git a/themes/Cillop/gtk-2.0/button-default.png b/themes/Cillop/gtk-2.0/button-default.png new file mode 100644 index 0000000..6711b0b Binary files /dev/null and b/themes/Cillop/gtk-2.0/button-default.png differ diff --git a/themes/Cillop/gtk-2.0/button-default.svg b/themes/Cillop/gtk-2.0/button-default.svg new file mode 100644 index 0000000..ef2edc2 --- /dev/null +++ b/themes/Cillop/gtk-2.0/button-default.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/button-insensitive.svg b/themes/Cillop/gtk-2.0/button-insensitive.svg new file mode 100644 index 0000000..bc98dbd --- /dev/null +++ b/themes/Cillop/gtk-2.0/button-insensitive.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/button-normal.svg b/themes/Cillop/gtk-2.0/button-normal.svg new file mode 100644 index 0000000..03ad38d --- /dev/null +++ b/themes/Cillop/gtk-2.0/button-normal.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/button-prelight.svg b/themes/Cillop/gtk-2.0/button-prelight.svg new file mode 100644 index 0000000..613288a --- /dev/null +++ b/themes/Cillop/gtk-2.0/button-prelight.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/button-pressed.svg b/themes/Cillop/gtk-2.0/button-pressed.svg new file mode 100644 index 0000000..af9635e --- /dev/null +++ b/themes/Cillop/gtk-2.0/button-pressed.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/comboarrow.png b/themes/Cillop/gtk-2.0/comboarrow.png new file mode 100644 index 0000000..fa1492b Binary files /dev/null and b/themes/Cillop/gtk-2.0/comboarrow.png differ diff --git a/themes/Cillop/gtk-2.0/gtkrc b/themes/Cillop/gtk-2.0/gtkrc new file mode 100644 index 0000000..5f1dd1e --- /dev/null +++ b/themes/Cillop/gtk-2.0/gtkrc @@ -0,0 +1,832 @@ +# Cillop GTK2 Theme +# Emrah Ünal - 2006, 2007 +# eunall@gmail.com + +gtk-color-scheme = "bg_color: #D6D6D6\nfg_color: #000\nbase_color: #fff\ntext_color: #000\nselected_bg_color: #8E9499\nselected_fg_color: #000" +style "default" +{ +GtkRange::trough_border = 0 +GtkPaned::handle_size = 6 +GtkRange::slider_width = 14 +GtkRange::stepper_size = 10 +GtkScrollbar::trough_border = 2 +GtkScrollbar::min_slider_length = 24 +GtkScrollbar::slider_width = 14 +GtkScrollbar::stepper_size = 12 +GtkCheckButton::indicator_size = 12 +GtkRadioButton::indicator_size = 12 +GtkMenuBar::internal-padding = 1 +GtkTreeView::expander_size = 14 +GtkExpander::expander_size = 14 +GtkWidget::interior_focus = 1 +GtkWidget::focus_padding = 0 +GtkScale::slider_length = 30 + +# color definitions +bg[NORMAL] = @bg_color +#bg_pixmap[NORMAL] = "bg.png" +bg[PRELIGHT] = shade (0.8, @bg_color) +bg[ACTIVE] = shade (0.85, @bg_color) +bg[SELECTED] = mix (0.65, @selected_bg_color, @bg_color) +bg[INSENSITIVE] = shade (0.85, @bg_color) +fg[NORMAL] = @fg_color +fg[PRELIGHT] = @fg_color +fg[ACTIVE] = @fg_color +fg[SELECTED] = @selected_fg_color +fg[INSENSITIVE] = mix (0.4, @fg_color, shade (0.85, @bg_color)) #shaded to bg[INSENSITIVE] +base[NORMAL] = @base_color +base[PRELIGHT] = @base_color #XXX +base[ACTIVE] = mix (0.45, @selected_bg_color, @base_color) +base[SELECTED] = @selected_bg_color +base[INSENSITIVE] = mix (0.90, @base_color, @text_color) +text[NORMAL] = @text_color +text[PRELIGHT] = @text_color #XXX +text[ACTIVE] = @selected_fg_color +text[SELECTED] = @selected_fg_color +text[INSENSITIVE] = mix (0.5, @text_color, @base_color) + +} + +style "default" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + file = "null.svg" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + image + { + function = BOX + shadow = OUT + file = "null.svg" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + image + { + function = ARROW + state = NORMAL + file = "arrow-up.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + arrow_direction = UP + } + + image + { + function = ARROW + state = PRELIGHT + file = "arrow-up-pre.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + arrow_direction = UP + } + + image + { + function = ARROW + state = INSENSITIVE + file = "arrow-up-ins.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + arrow_direction = UP + } + + image + { + function = ARROW + state = NORMAL + file = "arrow-down.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = ARROW + state = PRELIGHT + file = "arrow-down-pre.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = ARROW + state = INSENSITIVE + file = "arrow-down-ins.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = ARROW + file = "null.svg" + state = NORMAL + overlay_file = "arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + state = PRELIGHT + file = "null.svg" + overlay_file = "arrow-left-pre.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + state = INSENSITIVE + overlay_file = "arrow-left-ins.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + file = "null.svg" + state = NORMAL + overlay_file = "arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + state = PRELIGHT + file = "null.svg" + overlay_file = "arrow-right-pre.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + state = INSENSITIVE + overlay_file = "arrow-right-ins.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + } +} +class "GtkWidget" style "default" + +style "button" = "default" +{ + xthickness = 4 + ythickness = 4 + engine "pixmap" + { + + image + { + function = BOX + detail = "buttondefault" + file = "button-default.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + state = NORMAL + recolorable = TRUE + file = "button-normal.svg" + border = { 15, 15, 8, 8 } + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "button-prelight.svg" + border = { 8, 8, 8, 8 } + stretch = TRUE + } + image + { + function = BOX + state = ACTIVE + recolorable = TRUE + file = "button-pressed.svg" + border = { 15,15,8,8 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + recolorable = TRUE + file = "button-insensitive.svg" + border = { 15,15,8,8 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + file = "button-normal.svg" + border = { 15, 15, 8, 8 } + stretch = TRUE + } + + } +} + +style "optionmenu" = "default" +{ + xthickness = 4 + ythickness = 4 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "button-normal.svg" + border = { 15,15,8,8 } + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + file = "button-prelight.svg" + border = { 8,8,8,8 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + file = "button-insensitive.svg" + border = { 8,8,8,8} + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "button-insensitive.svg" + border = { 8,8,8,8} + stretch = TRUE + } + + + image + { + function = TAB + state = NORMAL + overlay_file = "comboarrow.png" + overlay_stretch = FALSE + } + + } +} + + + + + +style "scrollbar" +{ + + engine "pixmap" + { + image + { + function = BOX + detail = "trough" + file = "trough2.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + orientation = VERTICAL + } + image + { + function = BOX + detail = "trough" + file = "trough2-h.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = NORMAL + file = "slider-h.svg" + border = { 6, 6, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = PRELIGHT + file = "slider-h-pre.svg" + border = { 6, 6, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = INSENSITIVE + file = "slider-h-ins.svg" + border = { 6,6,2,2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = NORMAL + file = "slider-v.svg" + border = { 2, 2, 6, 6 } + stretch = TRUE + orientation = VERTICAL + + + + } + image + { + function = SLIDER + state = PRELIGHT + file = "slider-v-pre.svg" + border = { 2, 2, 6, 6 } + stretch = TRUE + orientation = VERTICAL + } + image + { + function = SLIDER + state = INSENSITIVE + file = "slider-v-ins.svg" + border = { 2, 2, 6, 6 } + stretch = TRUE + orientation = VERTICAL + } + image + { + function = STEPPER + state = NORMAL + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = UP + overlay_file = "arrow-up.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = PRELIGHT + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = UP + overlay_file = "arrow-up-pre.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = ACTIVE + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = UP + overlay_file = "arrow-up.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = INSENSITIVE + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = UP + overlay_file = "arrow-up-ins.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = NORMAL + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = DOWN + overlay_file = "arrow-down.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = PRELIGHT + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = DOWN + overlay_file = "arrow-down-pre.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = ACTIVE + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = DOWN + overlay_file = "arrow-down.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = INSENSITIVE + file = "null.svg" + border = { 1, 1, 4, 4 } + stretch = TRUE + arrow_direction = DOWN + overlay_file = "arrow-down-ins.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = NORMAL + file = "null.svg" + border = { 4, 4, 1, 1 } + stretch = TRUE + arrow_direction = RIGHT + overlay_file = "arrow-right.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = PRELIGHT + file = "null.svg" + border = { 4, 4, 1, 1 } + stretch = TRUE + arrow_direction = RIGHT + overlay_file = "arrow-right-pre.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = ACTIVE + file = "null.svg" + border = { 4, 4, 1, 1 } + stretch = TRUE + arrow_direction = RIGHT + overlay_file = "arrow-right.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = INSENSITIVE + file = "null.svg" + border = { 4, 4, 1, 1 } + stretch = TRUE + arrow_direction = RIGHT + overlay_file = "arrow-right-ins.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = NORMAL + file = "null.svg" + border = { 4,4,1,1 } + stretch = TRUE + arrow_direction = LEFT + overlay_file = "arrow-left.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = PRELIGHT + file = "null.svg" + border = { 4,4,1,1 } + stretch = TRUE + arrow_direction = LEFT + overlay_file = "arrow-left-pre.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = ACTIVE + file = "null.svg" + border = { 4,4,1,1 } + stretch = TRUE + arrow_direction = LEFT + overlay_file = "arrow-left.png" + overlay_stretch = FALSE + } + image + { + function = STEPPER + state = INSENSITIVE + file = "null.svg" + border = { 4,4,1,1 } + stretch = TRUE + arrow_direction = LEFT + overlay_file = "arrow-left-ins.png" + overlay_stretch = FALSE + } + } +} + +style "range" = "default" +{ + engine "pixmap" + { + image + { + function = FOCUS + file = "rangetrough-focus.png" + border = { 6, 6, 6, 6 } + stretch = TRUE + } + image + { + function = BOX + detail = "trough" + file = "pbtroughh.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + detail = "trough" + file = "pbtroughv.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + orientation = VERTICAL + } + image + { + function = SLIDER + state = NORMAL + file = "rangeslider.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = PRELIGHT + file = "rangeslider-pre.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = ACTIVE + file = "rangeslider-pre.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = INSENSITIVE + file = "rangeslider-ins.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + state = NORMAL + file = "rangeslider-v.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + state = PRELIGHT + file = "rangeslider-v-pre.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file= "rangegrip-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + state = ACTIVE + file = "rangeslider-v-pre.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + state = INSENSITIVE + file = "rangeslider-v-ins.svg" + border = { 6, 6, 6, 6 } + stretch = TRUE + overlay_file = "rangegrip-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + + + +style "menuitem" +{ + xthickness = 2 + ythickness = 2 + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color + engine "clearlooks" + { + radius = 0.0 + style = GLOSSY + } +} + + +style "menubar" +{ + xthickness = 0 + ythickness = 0 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "menubar.svg" + border = { 8,8,15,15 } + stretch = TRUE + } + } +} +class "GtkMenuBar" style "menubar" + + +style "list-header" +{ + GtkTreeView::odd_row_color = "#F5F5FA" + GtkTreeView::even_row_color = "#FFFFFF" + xthickness = 3 + ythickness = 2 + engine "clearlooks" + { + + } +} + + + +style "shallow" +{ + xthickness=0 + ythickness=0 + engine "clearlooks" + { + radius =0.0 + style = GLOSSY + } +} + +style "progressbar" +{ +xthickness = 1 +ythickness = 1 + engine "clearlooks" + { + style = GLOSSY + } +} + +style "spinbutton" +{ +xthickness=3 +ythickness=3 + engine "clearlooks" + { + } +} + +style "gtkentry" +{ +xthickness=4 +ythickness=4 + engine "clearlooks" + { + radius = 4.0 + style = GLOSSY + } +} + +style "checkbox" +{ + engine "clearlooks" + { + } +} + +style "radiobutton" = "default" +{ + engine "clearlooks" + { + } +} + +style "notebook" +{ + xthickness=2 + ythickness=2 + engine "clearlooks" + { + } +} + +class "GtkButton" style "button" +class "GtkOptionMenu" style "optionmenu" +class "GtkRuler" style "shallow" +class "GtkScrollbar" style "scrollbar" +class "GtkProgressBar" style "progressbar" +class "GtkRange" style "range" +class "GtkMenu" style "shallow" +class "GtkItem" style "menuitem" +class "GtkTearoffMenuItem" style "menuitem" +class "GtkNotebook" style "notebook" +class "GtkHandleBox" style "gtkentry" +class "GtkEventBox" style "notebook" +class "GtkPaned" style "gtkentry" +widget "gtk-tooltips" style "shallow" +class "GtkWidget" style "notebook" +class "GtkEntry" style "gtkentry" +class "GtkFrame" style "gtkentry" +class "GtkCheckButton" style "checkbox" +class "GtkStatusbar" style "shallow" +class "GtkSpinButton" style "spinbutton" +class "GTKComboEntry" style "gtkentry" +widget_class "*.GtkFrame.GtkLabel" style "shallow" +widget_class "*.GtkFrame.GtkLabel" style "shallow" +widget_class "BasePWidget.GtkEventBox.GtkTable.GtkFrame" style "shallow" +class "GtkRadioButton" style "radiobutton" +class "GtkRadioMenuItem" style "radiobutton" +class "GtkEditable" style "gtkentry" +widget_class "*OptionMenu*" style "optionmenu" + diff --git a/themes/Cillop/gtk-2.0/lineh.png b/themes/Cillop/gtk-2.0/lineh.png new file mode 100644 index 0000000..a4e7802 Binary files /dev/null and b/themes/Cillop/gtk-2.0/lineh.png differ diff --git a/themes/Cillop/gtk-2.0/linev.png b/themes/Cillop/gtk-2.0/linev.png new file mode 100644 index 0000000..ecb8fbe Binary files /dev/null and b/themes/Cillop/gtk-2.0/linev.png differ diff --git a/themes/Cillop/gtk-2.0/menubar.svg b/themes/Cillop/gtk-2.0/menubar.svg new file mode 100644 index 0000000..00034fc --- /dev/null +++ b/themes/Cillop/gtk-2.0/menubar.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/null.svg b/themes/Cillop/gtk-2.0/null.svg new file mode 100644 index 0000000..2872d25 --- /dev/null +++ b/themes/Cillop/gtk-2.0/null.svg @@ -0,0 +1,55 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/themes/Cillop/gtk-2.0/pbtroughh.svg b/themes/Cillop/gtk-2.0/pbtroughh.svg new file mode 100644 index 0000000..d2e12be --- /dev/null +++ b/themes/Cillop/gtk-2.0/pbtroughh.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/pbtroughv.svg b/themes/Cillop/gtk-2.0/pbtroughv.svg new file mode 100644 index 0000000..9e6703a --- /dev/null +++ b/themes/Cillop/gtk-2.0/pbtroughv.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangegrip-h.png b/themes/Cillop/gtk-2.0/rangegrip-h.png new file mode 100644 index 0000000..310b58e Binary files /dev/null and b/themes/Cillop/gtk-2.0/rangegrip-h.png differ diff --git a/themes/Cillop/gtk-2.0/rangegrip-h.svg b/themes/Cillop/gtk-2.0/rangegrip-h.svg new file mode 100644 index 0000000..59e6178 --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangegrip-h.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangegrip-v.png b/themes/Cillop/gtk-2.0/rangegrip-v.png new file mode 100644 index 0000000..2dab166 Binary files /dev/null and b/themes/Cillop/gtk-2.0/rangegrip-v.png differ diff --git a/themes/Cillop/gtk-2.0/rangeslider-ins.svg b/themes/Cillop/gtk-2.0/rangeslider-ins.svg new file mode 100644 index 0000000..a11d9df --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangeslider-ins.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangeslider-pre.svg b/themes/Cillop/gtk-2.0/rangeslider-pre.svg new file mode 100644 index 0000000..08cea94 --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangeslider-pre.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangeslider-v-ins.svg b/themes/Cillop/gtk-2.0/rangeslider-v-ins.svg new file mode 100644 index 0000000..6e6a5b3 --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangeslider-v-ins.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangeslider-v-pre.svg b/themes/Cillop/gtk-2.0/rangeslider-v-pre.svg new file mode 100644 index 0000000..fdf17ac --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangeslider-v-pre.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangeslider-v.svg b/themes/Cillop/gtk-2.0/rangeslider-v.svg new file mode 100644 index 0000000..3b67cdf --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangeslider-v.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangeslider.svg b/themes/Cillop/gtk-2.0/rangeslider.svg new file mode 100644 index 0000000..8dc2faa --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangeslider.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/rangetrough-focus.png b/themes/Cillop/gtk-2.0/rangetrough-focus.png new file mode 100644 index 0000000..47a3429 Binary files /dev/null and b/themes/Cillop/gtk-2.0/rangetrough-focus.png differ diff --git a/themes/Cillop/gtk-2.0/rangetrough-focus.svg b/themes/Cillop/gtk-2.0/rangetrough-focus.svg new file mode 100644 index 0000000..545fb36 --- /dev/null +++ b/themes/Cillop/gtk-2.0/rangetrough-focus.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/slider-h-ins.svg b/themes/Cillop/gtk-2.0/slider-h-ins.svg new file mode 100644 index 0000000..797162e --- /dev/null +++ b/themes/Cillop/gtk-2.0/slider-h-ins.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/slider-h-pre.svg b/themes/Cillop/gtk-2.0/slider-h-pre.svg new file mode 100644 index 0000000..7421e8b --- /dev/null +++ b/themes/Cillop/gtk-2.0/slider-h-pre.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/slider-h.svg b/themes/Cillop/gtk-2.0/slider-h.svg new file mode 100644 index 0000000..8f03045 --- /dev/null +++ b/themes/Cillop/gtk-2.0/slider-h.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/slider-v-ins.svg b/themes/Cillop/gtk-2.0/slider-v-ins.svg new file mode 100644 index 0000000..8ca1011 --- /dev/null +++ b/themes/Cillop/gtk-2.0/slider-v-ins.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/slider-v-pre.svg b/themes/Cillop/gtk-2.0/slider-v-pre.svg new file mode 100644 index 0000000..3f3c9a2 --- /dev/null +++ b/themes/Cillop/gtk-2.0/slider-v-pre.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/slider-v.svg b/themes/Cillop/gtk-2.0/slider-v.svg new file mode 100644 index 0000000..02986ef --- /dev/null +++ b/themes/Cillop/gtk-2.0/slider-v.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/trough2-h.svg b/themes/Cillop/gtk-2.0/trough2-h.svg new file mode 100644 index 0000000..090eabb --- /dev/null +++ b/themes/Cillop/gtk-2.0/trough2-h.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/Cillop/gtk-2.0/trough2.svg b/themes/Cillop/gtk-2.0/trough2.svg new file mode 100644 index 0000000..3f0745e --- /dev/null +++ b/themes/Cillop/gtk-2.0/trough2.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/Clearlooks-DarkLime/gtk-2.0/gtkrc b/themes/Clearlooks-DarkLime/gtk-2.0/gtkrc new file mode 100644 index 0000000..7580915 --- /dev/null +++ b/themes/Clearlooks-DarkLime/gtk-2.0/gtkrc @@ -0,0 +1,306 @@ +# Clearlooks-DarkLime +# version 0.1 +# Hacked by Ulisse Perusin + +# based on Darkilouche by Jakub Steiner + + +#define tiny icon sizes +gtk-icon-sizes = "gtk-menu=16,16:panel-menu=32,32:panel=16,16" +gtk-icon-sizes = "gtk-button=16,16:gtk-large-toolbar=22,22" + +#default color scheme +gtk_color_scheme = "fg_color:#3e3e3e\nbg_color:#888a85\nbase_color:#babdb6\ntext_color:#000\nselected_bg_color:#C8FF63\nselected_fg_color:#fff\ntooltip_bg_color:#D9F8A1\ntooltip_fg_color:#000" + +#widget class horrors from now on +style "darkilouche-default" +{ + GtkButton ::default_border = { 0, 0, 0, 0 } + GtkRange ::trough_border = 0 + GtkPaned ::handle_size = 6 + GtkRange ::slider_width = 15 + GtkRange ::stepper_size = 15 + + GtkScrollbar ::min_slider_length = 30 + GtkCheckButton ::indicator_size = 14 + GtkMenuBar ::internal-padding = 0 + GtkTreeView ::expander_size = 14 + GtkExpander ::expander_size = 16 + GtkScale ::slider-length = 27 + + GtkButton ::child-displacement-x = 1 + GtkButton ::child-displacement-y = 1 + + WnckTasklist ::fade-overlay-rect = 0 + + GtkMenu::vertical_padding = 4 + GtkMenu::horizontal_padding = 3 + xthickness = 1 + ythickness = 1 + + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = shade (0.5, @bg_color) + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @selected_bg_color) + base[ACTIVE] = shade (1.1, @selected_bg_color) + base[SELECTED] = shade (1.1, @selected_bg_color) + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @text_color + text[SELECTED] = @text_color + text[INSENSITIVE] = @bg_color + + engine "clearlooks" + { + #scrollbar_color = "#76acde" + menubarstyle = 2 # 0 = flat, 1 = sunken, 2 = flat gradient + toolbarstyle = 0 # 0 = flat, 1 = enable effects + animation = TRUE + style = GUMMY + radius = 3.0 + colorize_scrollbar = TRUE + } + +} + + +style "darkilouche-wide" = "darkilouche-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "darkilouche-wider" = "darkilouche-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "darkilouche-button" = "darkilouche-wider" +{ + bg[NORMAL] = shade (1.05, @bg_color) + bg[INSENSITIVE] = shade (1.04, @bg_color) + bg[PRELIGHT] = shade (1.08, @bg_color) + fg[PRELIGHT] = shade (0.9, @selected_fg_color) +} + +style "darkilouche-radiobutton" = "darkilouche-wider" +{ + bg[SELECTED] = @selected_bg_color +} + +style "darkilouche-notebook" = "darkilouche-wide" +{ + bg[SELECTED] = shade (0.8, @selected_bg_color) + bg[NORMAL] = shade (1.1, @bg_color) +} + +style "darkilouche-tasklist" = "darkilouche-default" +{ + xthickness = 5 + ythickness = 3 +} + + + + + +# File, Edit ... +style "darkilouche-menubar" = "darkilouche-default" +{ + bg[NORMAL] = shade (0.74, @bg_color) +} + + +style "darkilouche-menubar-item" = "darkilouche-button" +{ + #fg[PRELIGHT] = shade (0.8, @selected_fg_color) +} + + + + +#individual menus + +style "darkilouche-menu" = "darkilouche-default" +{ + xthickness = 0 + ythickness = 0 + bg[NORMAL] = shade (0.6, @bg_color) +} + +style "darkilouche-menu-item" = "darkilouche-default" +{ + xthickness = 2 + ythickness = 3 + #fg[PRELIGHT] = shade (0.5, @bg_color) + fg[NORMAL] = shade (0.95, @selected_fg_color) + text[PRELIGHT] = @bg_color + bg[SELECTED] = @selected_bg_color + bg[NORMAL] = shade (0.6, @bg_color) #separator + bg[INSENSITIVE] = shade (0.5, @bg_color) #inactive highlight arrows +} + +style "darkilouche-frame-title" = "darkilouche-default" +{ + fg[NORMAL] = lighter (@fg_color) +} + +style "darkilouche-tooltips" = "darkilouche-default" +{ + xthickness = 4 + ythickness = 4 + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + #bg[NORMAL] = shade (1.2, @selected_bg_color) +} + +style "darkilouche-progressbar" = "darkilouche-wide" +{ + xthickness = 1 + ythickness = 1 + bg[SELECTED] = shade (1.1, @selected_bg_color) + +} + + +style "darkilouche-combo" = "darkilouche-button" +{ +} + +style "darkilouche-scale" = "darkilouche-button" +{ + GtkRange::trough-side-details = 1 +} + +style "darkilouche-dialogbutton" = "darkilouche-default" +{ + + #gtk-button-images = 0 + #GtkButton::inner-border = {4,4,4,4} + + bg[NORMAL] = shade (.5, @bg_color) # normal bcg + fg[NORMAL] = @selected_fg_color + bg[INSENSITIVE] = shade (.8, @bg_color) # disabled bcg + fg[INSENSITIVE] = @selected_fg_color + bg[PRELIGHT] = shade (.65, @bg_color) # hover bcg + fg[PRELIGHT] = @selected_fg_color + bg[ACTIVE] = shade (.4, @bg_color) # pushed bcg +} + +style "darkilouche-tree" = "darkilouche-default" +{ + xthickness = 2 + ythickness = 2 +} + + + +#special case panel menus +style "panel-menu" = "darkilouche-default" +{ + bg[NORMAL] = @bg_color +} + +#nautilus search stripe and other specialties +style "extra-view" { + bg[NORMAL] = shade (1.2, @selected_bg_color) + fg[NORMAL] = shade (0.5, @bg_color) +} + +style "evolution-hack" = "darkilouche-default" +{ + bg[ACTIVE] = @selected_bg_color + bg[SELECTED] = @selected_bg_color + fg[ACTIVE] = @text_color + fg[SELECTED] = shade (0.5, @bg_color) +} + +style "fspot-photos" = "darkilouche-default" +{ + base[NORMAL] = shade (0.5, @bg_color) + fg[NORMAL] = "#000000" +} + +style "fix-textview" = "darkilouche-default" { + base[INSENSITIVE] = shade(1.1, @bg_color) +} + + + + + + +# widget styles +class "GtkWidget" style "darkilouche-default" +class "GtkButton" style "darkilouche-button" +class "GtkScale" style "darkilouche-scale" +class "GtkCombo" style "darkilouche-button" +class "GtkRange" style "darkilouche-wide" +class "GtkFrame" style "darkilouche-wide" +class "GtkSeparator" style "darkilouche-wide" +class "GtkMenu" style "darkilouche-menu" +class "GtkEntry" style "darkilouche-wider" +class "GtkMenuItem" style "darkilouche-menu-item" +class "GtkNotebook" style "darkilouche-notebook" +class "GtkProgressBar" style "darkilouche-progressbar" +class "GtkMenuBar" style "darkilouche-menubar" +class "GtkTextView" style "fix-textview" + +class "GtkCheckButton" style "darkilouche-radiobutton" +class "GtkRadioButton" style "darkilouche-radiobutton" + +widget_class "*MenuItem.*" style "darkilouche-menu-item" +#widget_class "*.GtkMenuBar.*MenuItem.*" style "darkilouche-menubar-item" + +#dialog button +widget_class "*.Gtk*ButtonBox.*Button*" style "darkilouche-dialogbutton" + +#menu stripe (but not on the panel) +widget_class "*MenuItem.*" style "darkilouche-menu-item" +class "PanelMenuBar" style "panel-menu" + +# combobox stuff +widget_class "*.GtkComboBox.GtkButton" style "darkilouche-combo" +widget_class "*.GtkCombo.GtkButton" style "darkilouche-combo" +# tooltips stuff +widget_class "*.tooltips.*.GtkToggleButton" style "darkilouche-tasklist" ####darkilouche-tasklist +widget "gtk-tooltip*" style "darkilouche-tooltips" + +# treeview stuff +widget_class "*.GtkTreeView.GtkButton" style "darkilouche-tree" +widget_class "*.GtkCTree.GtkButton" style "darkilouche-tree" +widget_class "*.GtkList.GtkButton" style "darkilouche-tree" +widget_class "*.GtkCList.GtkButton" style "darkilouche-tree" +widget_class "*.GtkFrame.GtkLabel" style "darkilouche-frame-title" + +# notebook stuff +widget_class "*.GtkNotebook.*.GtkEventBox" style "darkilouche-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "darkilouche-notebook" + +#nautilus search stripe +widget "*.nautilus-extra-view-widget" style:highest "extra-view" + +#f-spot stuff +class "__gtksharp_*_IconView" style "fspot-photos" +widget_class "*.__gtksharp_*_PhotoView.*.GtkEventBox*" style "fspot-photos" + + +# Evolution +widget_class "*GtkCTree*" style "evolution-hack" +widget_class "*GtkList*" style "evolution-hack" +widget_class "*GtkCList*" style "evolution-hack" +widget_class "*.ETree.*" style "evolution-hack" diff --git a/themes/Clearlooks-Vista/gtk-2.0/gtkrc b/themes/Clearlooks-Vista/gtk-2.0/gtkrc new file mode 100644 index 0000000..6e4e636 --- /dev/null +++ b/themes/Clearlooks-Vista/gtk-2.0/gtkrc @@ -0,0 +1,273 @@ +# Clearlooks-Vista by Marius M. M. < devilx at gdesklets dot org> +# This theme is GPLed :) + +gtk-icon-sizes = "panel-menu=16,16:panel=22,22" + +style "clearlooks-default" +{ + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::default_outside_border = { 0, 0, 0, 0 } + GtkRange::trough_border = 0 + + GtkWidget::focus_padding = 1 + + GtkPaned::handle_size = 6 + + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + GtkScrollbar::min_slider_length = 30 + GtkCheckButton::indicator_size = 12 + GtkMenuBar::internal-padding = 0 + + GtkTreeView::expander_size = 14 + GtkTreeView::odd_row_color = "#EBF5FF" + GtkExpander::expander_size = 16 + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = "#505050" + fg[ACTIVE] = "#505050" + fg[SELECTED] = "#ffffff" + fg[INSENSITIVE] = "#9B9B9B" + + bg[NORMAL] = "#F5F5F5" + bg[ACTIVE] = "#f9f9f9" + bg[PRELIGHT] = "#FFFFFF" + bg[SELECTED] = "#095fb2" + bg[INSENSITIVE] = "#ffffff" + + base[NORMAL] = "#ffffff" + base[ACTIVE] = "#095fb2" + base[PRELIGHT] = "#FFFFFF" + base[INSENSITIVE]= "#ffffff" + base[SELECTED] = "#095fb2" + + text[INSENSITIVE]= "#9B9B9B" + text[SELECTED] = "#ffffff" + text[ACTIVE] = "#ffffff" + + engine "clearlooks" + { + contrast = 1.1 + menubarstyle = 2 # 0 = flat, 1 = sunken, 2 = flat gradient + menuitemstyle = 1 # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button) + listviewitemstyle = 1 # 0 = flat, 1 = 3d-ish (gradient) + progressbarstyle = 1 # 0 = candy bar, 1 = flat + } +} + + +style "clearlooks-progressbar" = "clearlooks-default" +{ + fg[PRELIGHT] = "#ffffff" + xthickness = 1 + ythickness = 1 + +} + +style "clearlooks-wide" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "clearlooks-button" = "clearlooks-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-notebook" = "clearlooks-wide" +{ + bg[NORMAL] = "#FAFAFA" +} + +style "clearlooks-tasklist" = "clearlooks-default" +{ + xthickness = 5 + ythickness = 3 +} + +style "clearlooks-menu" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 1 +} + +style "clearlooks-menubar" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 2 + bg[NORMAL] = "#449E20" + fg[NORMAL] = "#ffffff" + base[PRELIGHT] = "#63E62E" + base[SELECTED] = "#4DB224" +} + +style "clearlooks-menu-item" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 3 + fg[PRELIGHT] = "#ffffff" + text[PRELIGHT] = "#ffffff" +} + +style "clearlooks-tree" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "clearlooks-frame-title" = "clearlooks-default" +{ + fg[NORMAL] = "#505050" +} + +style "clearlooks-panel" = "clearlooks-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-tooltips" = "clearlooks-default" +{ + xthickness = 4 + ythickness = 4 + bg[NORMAL] = { 1.0,1.0,0.75 } +} + +style "clearlooks-combo" = "clearlooks-default" +{ + xthickness = 1 + ythickness = 2 +} + +style "metacity-frame" +{ + bg[SELECTED] = "#095fb2" + fg[SELECTED] = "#ffffff" +} + +style "panelbg" +{ + xthickness = 0 + ythickness = 0 + bg_pixmap[NORMAL] = "images/panelbg.png" + +} + +style "panelbuttons" +{ + xthickness = 2 + ythickness = 0 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "images/panelbutton1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "images/panelbutton2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "images/panelbutton1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "images/panelbutton3.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "images/panelbutton3.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "images/panelbutton2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + } + +} + + +class "GtkWidget" style "clearlooks-default" +class "GtkButton" style "clearlooks-button" +class "GtkCombo" style "clearlooks-button" +class "GtkRange" style "clearlooks-wide" +class "GtkFrame" style "clearlooks-wide" +class "GtkMenu" style "clearlooks-menu" +class "GtkEntry" style "clearlooks-button" +class "GtkMenuItem" style "clearlooks-menu-item" +class "GtkStatusbar" style "clearlooks-wide" +class "GtkNotebook" style "clearlooks-notebook" +class "GtkProgressBar" style "clearlooks-progressbar" +class "*MenuBar*" style "clearlooks-menubar" +class "GtkMenuBar*" style "clearlooks-menubar" +class "MetaFrames" style "metacity-frame" +class "*Panel*" style "panelbg" +class "*notif*" style "panelbg" +class "*Notif*" style "panelbg" +class "*Tray*" style "panelbg" +class "*tray*" style "panelbg" + +widget_class "*MenuItem*" style "clearlooks-menu-item" + +widget_class "*.GtkComboBox.GtkButton" style "clearlooks-combo" +widget_class "*.GtkCombo.GtkButton" style "clearlooks-combo" + +widget_class "*.tooltips.*.GtkToggleButton" style "clearlooks-tasklist" +widget "gtk-tooltips" style "clearlooks-tooltips" + +widget_class "*.GtkTreeView.GtkButton" style "clearlooks-tree" +widget_class "*.GtkCTree.GtkButton" style "clearlooks-tree" +widget_class "*.GtkList.GtkButton" style "clearlooks-tree" +widget_class "*.GtkCList.GtkButton" style "clearlooks-tree" +widget_class "*.GtkFrame.GtkLabel" style "clearlooks-frame-title" + +widget_class "*.GtkNotebook.*.GtkEventBox" style "clearlooks-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook" + +widget_class "*MenuBar*" style "clearlooks-menubar" + +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" diff --git a/themes/Clearlooks-Vista/gtk-2.0/images/panelbg.png b/themes/Clearlooks-Vista/gtk-2.0/images/panelbg.png new file mode 100644 index 0000000..182a55d Binary files /dev/null and b/themes/Clearlooks-Vista/gtk-2.0/images/panelbg.png differ diff --git a/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton1.png b/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton1.png new file mode 100644 index 0000000..838bcb8 Binary files /dev/null and b/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton1.png differ diff --git a/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton2.png b/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton2.png new file mode 100644 index 0000000..fea631d Binary files /dev/null and b/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton2.png differ diff --git a/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton3.png b/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton3.png new file mode 100644 index 0000000..8ac9cb0 Binary files /dev/null and b/themes/Clearlooks-Vista/gtk-2.0/images/panelbutton3.png differ diff --git a/themes/Darkilouche/gtk-2.0/gtkrc b/themes/Darkilouche/gtk-2.0/gtkrc new file mode 100644 index 0000000..f4e410b --- /dev/null +++ b/themes/Darkilouche/gtk-2.0/gtkrc @@ -0,0 +1,299 @@ +# Darkilouche +# version 0.2.2 +# Created by Jakub Steiner + +# based on Clearlooks +# by Richard Stellingwerff, Emil Jacobs and Daniel Borgmann. + +#define tiny icon sizes +gtk-icon-sizes = "gtk-menu=16,16:panel-menu=32,32:panel=16,16" +gtk-icon-sizes = "gtk-button=16,16:gtk-large-toolbar=22,22" + +#default color scheme +gtk_color_scheme = "fg_color:#f5f5f5\nbg_color:#888a85\nbase_color:#babdb6\ntext_color:#000\nselected_bg_color:#f57900\nselected_fg_color:#fff\nfoo:#123" + +#widget class horrors from now on +style "darkilouche-default" +{ + GtkButton ::default_border = { 0, 0, 0, 0 } + GtkRange ::trough_border = 0 + GtkPaned ::handle_size = 6 + GtkRange ::slider_width = 15 + GtkRange ::stepper_size = 15 + + GtkScrollbar ::min_slider_length = 30 + GtkCheckButton ::indicator_size = 14 + GtkMenuBar ::internal-padding = 0 + GtkTreeView ::expander_size = 14 + GtkExpander ::expander_size = 16 + GtkScale ::slider-length = 27 +# GtkToolbar ::button-relief = GTK_RELIEF_NORMAL +# GtkMenuBar ::shadow-type = GTK_SHADOW_OUT +# GtkScrollbar ::has-secondary-forward-stepper = 1 +# GtkScrollbar ::has-secondary-backward-stepper = 1 + + GtkButton ::child-displacement-x = 1 + GtkButton ::child-displacement-y = 1 + + WnckTasklist ::fade-overlay-rect = 0 + + GtkMenu::vertical_padding = 4 + GtkMenu::horizontal_padding = 3 + xthickness = 1 + ythickness = 1 + + + fg[NORMAL] = @fg_color #"#000000" # black + fg[PRELIGHT] = @fg_color #"#000000" # black + fg[SELECTED] = @selected_fg_color #"#ffffff" # white + fg[ACTIVE] = @fg_color #"#000000" # black + fg[INSENSITIVE] = darker (@bg_color) #"#b5b3ac" # dark beige + + bg[NORMAL] = @bg_color # "#ede9e3" + bg[PRELIGHT] = shade (1.02, @bg_color) #"#f9f7f3" # very light beige + bg[SELECTED] = @selected_bg_color # "#5598d7" # deepsky + bg[INSENSITIVE] = @bg_color # "#efebe5" # beige + bg[ACTIVE] = shade (0.9, @bg_color) #"#dcd4c9" #"#d7d3ca" # dark beige + + base[NORMAL] = @base_color # "#ffffff" # white + base[PRELIGHT] = shade (0.95, @bg_color) # "#5f8ec4" # dark beige + base[ACTIVE] = shade (0.9, @selected_bg_color) # "#a69f91" # darker deepsky + base[SELECTED] = @selected_bg_color # "#5598d7" # deepsky + base[INSENSITIVE] = @bg_color # "#e8e5de" # beige + + text[NORMAL] = @text_color # "#000000" # black + text[PRELIGHT] = @text_color # "#000000" # black + text[ACTIVE] = @selected_fg_color # "#ffffff" # white + text[SELECTED] = @selected_fg_color # "#ffffff" # white + text[INSENSITIVE] = darker (@bg_color) # "#b5b3ac" # dark beige + + engine "clearlooks" + { + #scrollbar_color = "#76acde" + menubarstyle = 0 # 0 = flat, 1 = sunken, 2 = flat gradient + animation = FALSE + style = CLASSIC + radius = 3.0 + } +} + + +style "darkilouche-wide" = "darkilouche-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "darkilouche-wider" = "darkilouche-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "darkilouche-button" = "darkilouche-wider" +{ + bg[NORMAL] = shade (1.05, @bg_color) # "#f6f4f1" + bg[INSENSITIVE] = shade (1.04, @bg_color) # "#f2efeb" + bg[PRELIGHT] = shade (1.08, @bg_color) # "#faf9f8" +} + +style "darkilouche-notebook" = "darkilouche-wide" +{ +# bg[NORMAL] = "#efebe5" +# bg[INSENSITIVE] = "#efebe5" +} + +style "darkilouche-tasklist" = "darkilouche-default" +{ + xthickness = 5 + ythickness = 3 +} + + + + + +# File, Edit ... +style "darkilouche-menubar" = "blackrock-default" +{ + bg[NORMAL] = shade (0.5, @bg_color) +} + + +style "darkilouche-menubar-item" = "darkilouche-button" +{ +# fg[PRELIGHT] = "#000000" +} + + + + +#individual menus + +style "darkilouche-menu" = "darkilouche-default" +{ + xthickness = 0 + ythickness = 0 + bg[NORMAL] = shade (0.6, @bg_color) # "#f9f7f3" +} + +style "darkilouche-menu-item" = "darkilouche-default" +{ + xthickness = 2 + ythickness = 3 + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color + bg[NORMAL] = shade (0.6, @bg_color) #separator + bg[INSENSITIVE] = shade (0.5, @bg_color) #inactive highlight arrows +} + + + +style "darkilouche-tree" = "darkilouche-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "darkilouche-frame-title" = "darkilouche-default" +{ + fg[NORMAL] = lighter (@fg_color) # "#404040" +} + +style "darkilouche-tooltips" = "darkilouche-default" +{ + xthickness = 4 + ythickness = 4 + fg[NORMAL] = @text_color + text[NORMAL] = @text_color + bg[NORMAL] = shade (1.2, @selected_bg_color) +} + +style "darkilouche-progressbar" = "darkilouche-wide" +{ + xthickness = 1 + ythickness = 1 + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" + { + radius = 1.5 + } +} + +style "darkilouche-combo" = "darkilouche-button" +{ +} + +style "darkilouche-scale" = "darkilouche-button" +{ + GtkRange::trough-side-details = 1 +} + +style "darkilouche-dialogbutton" = "darkilouchedefault" +{ + engine "clearlooks" { + style = GLOSSY + + } + + #gtk-button-images = 0 + #GtkButton::inner-border = {4,4,4,4} + + bg[NORMAL] = shade (.95, @selected_bg_color) # normal bcg + fg[NORMAL] = @selected_fg_color + bg[INSENSITIVE] = shade (1.04, @selected_bg_color) # disabled bcg + fg[INSENSITIVE] = @selected_fg_color + bg[PRELIGHT] = shade (1.08, @selected_bg_color) # hover bcg + fg[PRELIGHT] = @selected_fg_color + bg[ACTIVE] = shade (1.18, @selected_bg_color) # pushed bcg +} + +#special case panel menus +style "panel-menu" = "darkilouche-default" +{ + bg[NORMAL] = @bg_color +} + +#nautilus search stripe and other specialties +style "extra-view" { + bg[NORMAL] = "#f00" +} + +style "evolution-hack" = "darkilouche-default" +{ + bg[ACTIVE] = "#f57900" + bg[SELECTED] = "#ce5c00" + fg[ACTIVE] = "#000000" + fg[SELECTED] = "#ffffff" +} + +style "fspot-photos" = "darkilouche-default" +{ + base[NORMAL] = "#555753" + fg[NORMAL] = "#000000" +} + + + + + + + + +# widget styles +class "GtkWidget" style "darkilouche-default" +class "GtkButton" style "darkilouche-button" +class "GtkScale" style "darkilouche-scale" +class "GtkCombo" style "darkilouche-button" +class "GtkRange" style "darkilouche-wide" +class "GtkFrame" style "darkilouche-wide" +class "GtkSeparator" style "darkilouche-wide" +class "GtkMenu" style "darkilouche-menu" +class "GtkEntry" style "darkilouche-wider" +class "GtkMenuItem" style "darkilouche-menu-item" +class "GtkNotebook" style "darkilouche-notebook" +class "GtkProgressBar" style "darkilouche-progressbar" +class "GtkMenuBar" style "darkilouche-menubar" + +widget_class "*MenuItem.*" style "darkilouche-menu-item" +#widget_class "*.GtkMenuBar.*MenuItem.*" style "darkilouche-menubar-item" + +#dialog button +widget_class "*.Gtk*ButtonBox.*Button*" style "darkilouche-dialogbutton" + +#menu stripe (but not on the panel) +widget_class "*MenuItem.*" style "darkilouche-menu-item" +class "PanelMenuBar" style "panel-menu" + +# combobox stuff +widget_class "*.GtkComboBox.GtkButton" style "darkilouche-combo" +widget_class "*.GtkCombo.GtkButton" style "darkilouche-combo" +# tooltips stuff +widget_class "*.tooltips.*.GtkToggleButton" style "darkilouche-tasklist" +widget "gtk-tooltips" style "darkilouche-tooltips" + +# treeview stuff +widget_class "*.GtkTreeView.GtkButton" style "darkilouche-tree" +widget_class "*.GtkCTree.GtkButton" style "darkilouche-tree" +widget_class "*.GtkList.GtkButton" style "darkilouche-tree" +widget_class "*.GtkCList.GtkButton" style "darkilouche-tree" +widget_class "*.GtkFrame.GtkLabel" style "darkilouche-frame-title" + +# notebook stuff +widget_class "*.GtkNotebook.*.GtkEventBox" style "darkilouche-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "darkilouche-notebook" + +#nautilus search stripe +widget "*.nautilus-extra-view-widget" style:highest "extra-view" + +#f-spot stuff +class "__gtksharp_*_IconView" style "fspot-photos" +widget_class "*.__gtksharp_*_PhotoView.*.GtkEventBox*" style "fspot-photos" + + +# Evolution +widget_class "*GtkCTree*" style "evolution-hack" +widget_class "*GtkList*" style "evolution-hack" +widget_class "*GtkCList*" style "evolution-hack" +widget_class "*.ETree.*" style "evolution-hack" diff --git a/themes/Darklooks/gtk-2.0/gtkrc b/themes/Darklooks/gtk-2.0/gtkrc new file mode 100644 index 0000000..037dfae --- /dev/null +++ b/themes/Darklooks/gtk-2.0/gtkrc @@ -0,0 +1,420 @@ +# Set GtkSettings color scheme property. +# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties. +gtk_color_scheme = "fg_color:#E6E6E6\nbg_color:#555753\nbase_color:#2E3436\ntext_color:#D3D7CF\nselected_bg_color:#3F403D\nselected_fg_color:#7AA3CC\ntooltip_bg_color:#EDDE5C\ntooltip_fg_color:#000000" + +style "clearlooks-default" +{ + ######## + # Style Properties + ######## + GtkButton ::child-displacement-x = 1 + GtkButton ::child-displacement-y = 1 + GtkButton ::default-border = { 0, 0, 0, 0 } + GtkCheckButton ::indicator-size = 14 + + GtkPaned ::handle-size = 6 + + GtkRange ::trough-border = 0 + GtkRange ::slider-width = 15 + GtkRange ::stepper-size = 15 + + GtkScale ::slider-length = 23 + GtkScale ::trough-side-details = 1 + GtkScrollbar ::min-slider-length = 30 + + GtkMenuBar ::internal-padding = 0 + GtkExpander ::expander-size = 16 + GtkToolbar ::internal-padding = 1 + GtkTreeView ::expander-size = 14 + GtkTreeView ::vertical-separator = 0 + + GtkMenu ::horizontal-padding = 0 + GtkMenu ::vertical-padding = 0 + + # Glow the tasklist by changing the color, instead of overlaying it with a rectangle + WnckTasklist ::fade-overlay-rect = 0 + + xthickness = 1 + ythickness = 1 + + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[ACTIVE] = shade (0.9, @selected_bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = darker (@bg_color) + + engine "clearlooks" + { + colorize_scrollbar = FALSE + reliefstyle = 1 + menubarstyle = 2 # 0 = flat, 1 = sunken, 2 = flat gradient + toolbarstyle = 1 # 0 = flat, 1 = enable effects + animation = FALSE + style = GUMMY + + # Set a hint to disable backward compatibility fallbacks. + hint = "use-hints" + } +} + +style "clearlooks-wide" +{ + xthickness = 2 + ythickness = 2 +} + +style "clearlooks-wider" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-button" +{ + xthickness = 3 + ythickness = 3 + + bg[NORMAL] = shade (1.04, @bg_color) # "#f6f4f1" + bg[PRELIGHT] = shade (1.06, @bg_color) + bg[ACTIVE] = shade (0.85, @bg_color) +} + +style "clearlooks-notebook-bg" +{ + bg[NORMAL] = shade (1.02, @bg_color) +} + +style "clearlooks-notebook" = "clearlooks-notebook-bg" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-tasklist" +{ + xthickness = 5 + ythickness = 3 +} + +style "clearlooks-menu" +{ + xthickness = 0 + ythickness = 0 + + bg[NORMAL] = shade (1.08, @bg_color) + + # Radius of the menu items (inside menus) + engine "clearlooks" + { + radius = 0.0 + } +} + +style "clearlooks-menu-item" +{ + xthickness = 2 + ythickness = 3 + + fg[PRELIGHT] = @selected_fg_color +} + +style "clearlooks-separator-menu-item" +{ + GtkSeparatorMenuItem::horizontal-padding = 0 + # We are setting the desired height by using wide-separators + # There is no other way to get the odd height ... + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 5 + xthickness = 1 + ythickness = 0 +} + +style "clearlooks-treeview" +{ + engine "clearlooks" { + hint = "treeview" + } +} + +# Based on the default style so that the colors from the button +# style are overriden again. +style "clearlooks-treeview-header" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 1 + + engine "clearlooks" { + hint = "treeview-header" + } +} + +style "clearlooks-frame-title" +{ + fg[NORMAL] = lighter (@fg_color) +} + +style "clearlooks-tooltips" +{ + xthickness = 4 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color +} + +style "clearlooks-progressbar" +{ + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" + { + # Explicitly set the radius, for progress + # bars inside menuitems + radius = 3.0 + + hint = "progressbar" + } +} + +style "clearlooks-statusbar" +{ + engine "clearlooks" + { + hint = "statusbar" + } +} + +style "clearlooks-comboboxentry" +{ + # NOTE: + # If you set the appears-as-list option on comboboxes in the theme + # you should set this hint on the combobox instead. + engine "clearlooks" + { + hint = "comboboxentry" + } +} + +style "clearlooks-spinbutton" +{ + engine "clearlooks" + { + hint = "spinbutton" + } +} + +style "clearlooks-scale" +{ + engine "clearlooks" + { + hint = "scale" + } +} + +style "clearlooks-hscale" +{ + engine "clearlooks" + { + hint = "hscale" + } +} + +style "clearlooks-vscale" +{ + engine "clearlooks" + { + hint = "vscale" + } +} + +style "clearlooks-scrollbar" +{ + engine "clearlooks" + { + hint = "scrollbar" + } +} + +style "clearlooks-hscrollbar" +{ + engine "clearlooks" + { + hint = "hscrollbar" + } +} + +style "clearlooks-vscrollbar" +{ + engine "clearlooks" + { + hint = "vscrollbar" + } +} + +style "clearlooks-menubar" +{ + engine "clearlooks" + { + hint = "menubar" + } +} + +style "clearlooks-nautilus-location" +{ + bg[NORMAL] = mix(0.60, shade (1.05,@bg_color), @selected_bg_color) +} + + +######################################### +# Matches +######################################### + +# Clearlooks default style is applied to every widget +class "GtkWidget" style "clearlooks-default" + +# Increase the x/ythickness in some widgets +class "GtkToolbar" style "clearlooks-default" +class "GtkRange" style "clearlooks-wide" +class "GtkFrame" style "clearlooks-wide" +class "GtkSeparator" style "clearlooks-wide" +class "GtkEntry" style "clearlooks-wider" + +class "GtkSpinButton" style "clearlooks-spinbutton" +class "GtkScale" style "clearlooks-scale" +class "GtkVScale" style "clearlooks-vscale" +class "GtkHScale" style "clearlooks-hscale" +class "GtkScrollbar" style "clearlooks-scrollbar" +class "GtkVScrollbar" style "clearlooks-vscrollbar" +class "GtkHScrollbar" style "clearlooks-hscrollbar" + +# General matching following, the order is choosen so that the right styles override each other +# eg. progressbar needs to be more important then the menu match. + +# This is not perfect, it could be done better +# (That is modify *every* widget in the notebook, and change those back that +# we really don't want changed) +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" + +widget_class "*" style "clearlooks-button" +widget_class "*" style "clearlooks-notebook" +widget_class "**" style "clearlooks-statusbar" + +widget_class "**" style "clearlooks-comboboxentry" +widget_class "**" style "clearlooks-comboboxentry" + +widget_class "**" style "clearlooks-menubar" +widget_class "**" style "clearlooks-menu" +widget_class "**" style "clearlooks-menu-item" +widget_class "**" style "clearlooks-separator-menu-item" + +widget_class "*.." style "clearlooks-frame-title" +widget_class "*.*" style "clearlooks-treeview" + +widget_class "*" style "clearlooks-progressbar" + +# Treeview header +widget_class "*.." style "clearlooks-treeview-header" +widget_class "*.." style "clearlooks-treeview-header" +widget_class "*.." style "clearlooks-treeview-header" +widget_class "*.." style "clearlooks-treeview-header" + +# Workarounds for Evolution +widget_class "*.ETable.ECanvas" style "clearlooks-treeview-header" +widget_class "*.ETree.ECanvas" style "clearlooks-treeview-header" + +# The window of the tooltip is called "gtk-tooltip" +################################ +# FIXME: +# This will not work if one embeds eg. a button into the tooltip. +# As far as I can tell right now we will need to rework the theme +# quite a bit to get this working correctly. +# (It will involve setting different priorities, etc.) +################################ +widget "gtk-tooltip*" style "clearlooks-tooltips" + +################################################### +# Special cases and work arounds +################################################### + +# Special case the nautilus-extra-view-widget +# ToDo: A more generic approach for all applications that have a widget like this. +widget "*.nautilus-extra-view-widget" style : highest "clearlooks-nautilus-location" + +# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 +# Note that the work around assumes that the combobox is _not_ in +# appears-as-list mode. +# Similar hack also in the menuitem style. +# This style does not affect GtkComboBoxEntry, it does have an effect +# on comboboxes in appears-as-list mode though. +style "clearlooks-text-is-fg-color-workaround" +{ + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} +widget_class "*.." style "clearlooks-text-is-fg-color-workaround" + +style "clearlooks-menuitem-text-is-fg-color-workaround" +{ + text[NORMAL] = @fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} +widget "*.gtk-combobox-popup-menu.*" style "clearlooks-menuitem-text-is-fg-color-workaround" + +# Work around the usage of GtkLabel inside GtkListItems to display text. +# This breaks because the label is shown on a background that is based on the +# base color set. +style "clearlooks-fg-is-text-color-workaround" +{ + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = darker (@bg_color) +} +widget_class "**" style "clearlooks-fg-is-text-color-workaround" +# The same problem also exists for GtkCList and GtkCTree +# Only match GtkCList and not the parent widgets, because that would also change the headers. +widget_class "*" style "clearlooks-fg-is-text-color-workaround" + +# Work around the evolution "New" button bug by making the toolbar flat. +# http://bugzilla.gnome.org/show_bug.cgi?id=446953 +# Maybe remove this workaround in unstable releases. +style "clearlooks-evo-new-button-workaround" +{ + engine "clearlooks" + { + toolbarstyle = 0 + } +} +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "clearlooks-evo-new-button-workaround" diff --git a/themes/Enchanter/gtk-2.0/gtkrc b/themes/Enchanter/gtk-2.0/gtkrc new file mode 100644 index 0000000..b6c7270 --- /dev/null +++ b/themes/Enchanter/gtk-2.0/gtkrc @@ -0,0 +1,357 @@ +# *** Enchanter Theme *** +# ===[ buttons ]=== +# the prelight of toggle buttons is darkened slightly + +# ===[ scroll bars ]=== +# bg[ACTIVE] is trough color +# bg[NORMAL] & bg[NORMAL] are scrollbar colors + +# ===[ check and radio buttons ]=== +# bg[SELECTED] is the selected background colour +# text[SELECTED] is the selected check/circle color +# text[INSENSITIVE] is the disabled check/circle colour +# base[*] is used for all other background states +# --on prelight the bg is lightened slightly +# --bg is lightened slightly when check/radio not drawn (for all states) + +#default color scheme +#gtk_color_scheme = "fg_color:#D4D4D4\nbg_color:#333333\nbase_color:#474747\ntext_color:#D4D4D4\nselected_bg_color:#0081DE\nselected_fg_color:#ffffff" + +gtk_color_scheme = "fg_color:#D4D4D4\nbg_color:#333333\nbase_color:#474747\ntext_color:#D4D4D4\nselected_bg_color:#680000\nselected_fg_color:#ffffff" +gtk-menu-popup-delay = 50 + +style "theme-default" +{ + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::child-displacement-x = 0 + GtkButton::child-displacement-y = 1 + #GtkWidget::focus-padding = 0 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 19 + GtkRange::stepper-size = 17 + + GtkScrollbar::min_slider_length = 30 + GtkScrollbar::has-secondary-backward-stepper = 1 + + GtkPaned::handle_size = 8 + + GtkMenuBar::internal-padding = 0 + GtkTreeView::expander_size = 13 #15 + GtkExpander::expander_size = 13 #17 + + GtkScale::slider-length = 25 + GtkScale::slider-width = 17 + GtkScale::trough-border = 0 + + GtkWidget::link-color = "#000000" # black + GtkWidget::visited-link-color = "#585858" # medium grey + + WnckTasklist::fade-overlay-rect = 0 + WnckTasklist::fade-loop-time = 5.0 # 5 seconds + WnckTasklist::fade-opacity = 0.5 # final opacity + + #makes menu only overlap border + GtkMenu::horizontal-offset = -1 + + #removes extra padding at top and bottom of menus. Makes menuitem overlap border + GtkMenu::vertical-padding = 0 + + #set to the same as roundness, used for better hotspot selection of tabs + GtkNotebook::tab-curvature = 3 + GtkNotebook::tab-overlap = 4 + + GtkMenuItem::arrow-spacing = 10 + #Spacing between edge with indicator and text + GtkOptionMenu ::indicator-size = {11, 5} + #GtkOptionMenu ::indicator-spacing = {6, 5, 4, 4} + + GtkCheckButton ::indicator-size = 15 + GtkCheckButton ::indicator-spacing = 1 + GtkRadioButton ::indicator-size = 15 + + GtkTreeView::horizontal_separator = 2 + GtkTreeView::odd_row_color = mix(0.98, shade (0.93,@base_color), @selected_bg_color) + + GtkEntry::cursor_color = @text_color + GtkTextView::cursor_color = @text_color + + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = shade (0.90,@fg_color) # Toolbar button text, Header text, Work Unit Text + fg[ACTIVE] = @fg_color # Check box text color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @selected_fg_color + + bg[NORMAL] = @bg_color + bg[ACTIVE] = shade (1.025,@bg_color) + bg[PRELIGHT] = shade (1.10,@selected_bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = shade (1.025,@bg_color) #drop shadow color + + base[NORMAL] = @base_color # background color of Clients, Slots section + base[ACTIVE] = shade (0.65,@base_color) # under column header background color + base[PRELIGHT] = @base_color + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = shade (1.025,@bg_color) + + text[NORMAL] = @text_color # Drop buttons (Novice) and text on Config screens and active slider arrow. + text[ACTIVE] = shade (0.65,@text_color) # Text under column headers + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color # Text color under headers when selected. + text[INSENSITIVE] = shade (1.70,@bg_color) #Greyed out text, like Proxy Tab + + engine "aurora" + { + menubarstyle = 2 # 0 = flat, 1 = gradient, 2 = sunken + #curvature = 6.2 + curvature = 6 + arrowsize = 1 # controls combo_arrow circle size. Diameter set by (11 + 2 * arrowsize) + old_arrowstyle = FALSE #set to TRUE for original circled arrows + animation = TRUE # FALSE = disabled, TRUE = enabled + } +} + +style "theme-wide" = "theme-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "theme-wider" = "theme-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "theme-widest" = "theme-default" +{ + xthickness = 4 + ythickness = 3 +} + +style "theme-button" = "theme-widest" +{ + bg[NORMAL] = shade (1.35,@bg_color) # OK Buttons, Drop Buttons + bg[ACTIVE] = shade (0.85,@bg_color) + bg[PRELIGHT] = mix(0.60, shade (1.35,@bg_color), @selected_bg_color) + + text[SELECTED] = shade (0.75,@selected_fg_color) #for arrows +} + +style "theme-entry" = "theme-button" { + xthickness = 4 + ythickness = 4 +} + +style "theme-frame" = "theme-wide" +{ + GtkWidget::draw-border = {1,1,1,1} +} + +style "theme-toolbar" = "theme-default" # top toolbar +{ + bg[NORMAL] = shade (1.2,@bg_color) +} + +style "theme-handlebox" = "theme-default" +{ + bg[NORMAL] = shade (0.95,@bg_color) +} + +style "theme-scale" = "theme-default" +{ + bg[NORMAL] = shade (1.50,@bg_color) + bg[PRELIGHT] = shade (1.90,@bg_color) +} + +style "theme-range" = "theme-wide" # vertical scrollbar +{ + bg[NORMAL] = shade (1.35,@bg_color) + bg[PRELIGHT] = mix(0.70, shade (1.35,@bg_color), @selected_bg_color) + + text[PRELIGHT] = @selected_fg_color # arrows + text[ACTIVE] = shade (0.30,@selected_fg_color) + text[INSENSITIVE] = shade (0.60,@bg_color) +} + +style "theme-notebook" = "theme-wider" #main background +{ + fg[ACTIVE] = shade (0.6,@fg_color) + bg[NORMAL] = shade (1.10,@bg_color) + bg[ACTIVE] = shade (0.90,@bg_color) + bg[SELECTED] = mix(0.70, @selected_bg_color, shade (1.10,@bg_color)) +} + +style "theme-paned" = "theme-default" # pane dividers +{ + bg[NORMAL] = shade (1.1,@bg_color) + bg[PRELIGHT] = shade (1.3,@bg_color) +} + +style "theme-menu" = "theme-default" #menu list +{ + xthickness = 0 + ythickness = 0 + bg[NORMAL] = shade (1.11627907,@bg_color) + bg[NORMAL] = shade (0.6,@bg_color) +} + +style "theme-menu-item" = "theme-wider" +{ + fg[PRELIGHT] = @selected_fg_color + text[PRELIGHT] = @selected_fg_color +} + +style "theme-menubar" = "theme-default" +{ + bg[NORMAL] = shade (0.7,@bg_color) +} + +style "theme-menubar-item" = "theme-menu-item" +{} + +style "theme-tree" = "theme-default" +{ + xthickness = 2 + ythickness = 1 + + GtkWidget::focus-padding = 0 + + bg[NORMAL] = shade (1.1,@bg_color) #column headers + bg[PRELIGHT] = shade (1.75,@bg_color) + bg[ACTIVE] = mix(0.65, shade (1.1,@bg_color), @selected_bg_color) +} + +style "theme-tree-arrow" = "theme-default" +{ + bg[NORMAL] = mix(0.70, shade (0.75,@bg_color), shade (0.80,@selected_bg_color)) + bg[PRELIGHT] = mix(0.80, @bg_color, @selected_bg_color) +} + +style "theme-tooltips" = "theme-widest" +{ + fg[NORMAL] = @selected_fg_color + bg[NORMAL] = shade (0.80,@selected_bg_color) +} + +style "theme-progressbar" = "theme-default" +{ + xthickness = 2 + ythickness = 2 + + fg[PRELIGHT] = @selected_fg_color + bg[NORMAL] = shade (1.4,@bg_color) #main progress bar trough +} + +style "theme-combo" = "theme-button" +{ + GtkButton::inner-border = { 0, 1, 0, 0 } + xthickness = 4 + ythickness = 4 +} + +style "theme-combo-box" = "theme-button" +{ + xthickness = 4 + ythickness = 2 +} + +style "theme-combo-arrow" = "theme-button" +{ + xthickness = 1 + ythickness = 1 + + text[SELECTED] = shade (0.8, @selected_fg_color) +} + +style "theme-view" = "theme-default" +{ + xthickness = 0 + ythickness = 0 +} + +style "theme-check-radio-buttons" = "theme-button" +{ + GtkWidget ::interior-focus = 0 + GtkWidget::focus-padding = 1 + text[SELECTED] = @selected_fg_color +} + +# widget styles +class "GtkWidget" style "theme-default" +class "GtkScale" style "theme-scale" +class "GtkRange" style "theme-range" +class "GtkPaned" style "theme-paned" +class "GtkFrame" style "theme-frame" +class "GtkMenu" style "theme-menu" +class "GtkMenuBar" style "theme-menubar" +class "GtkEntry" style "theme-entry" +class "GtkProgressBar" style "theme-progressbar" +class "GtkToolbar" style "theme-toolbar" +class "GtkSeparator" style "theme-wide" + +widget_class "**" style "theme-menu-item" +widget_class "*.*" style "theme-menubar-item" + +widget_class "*" style "theme-button" +widget_class "*" style "theme-check-radio-buttons" +widget_class "*" style "theme-handlebox" + +widget_class "*" style "theme-notebook" +widget_class "**" style "theme-notebook" +widget_class "**" style "theme-notebook" +widget_class "**" style "theme-notebook" +widget_class "**" style "theme-notebook" +widget_class "*.GtkLabel*" style "theme-notebook" #for tabs + +# combobox stuff +widget_class "**" style "theme-combo" +widget_class "**" style "theme-combo-box" +widget_class "**" style "theme-combo" +widget_class "**" style "theme-combo" + +# tooltips stuff +widget "gtk-tooltip*" style "theme-tooltips" + +# treeview stuff +widget_class "*." style "theme-tree" +widget_class "*." style "theme-tree" +widget_class "*." style "theme-tree" +widget_class "*." style "theme-tree" + +#For arrow bg +widget_class "*.*" style "theme-tree-arrow" +widget_class "*.*" style "theme-tree-arrow" +widget_class "*.*" style "theme-tree-arrow" + +####################################################### +## GNOME specific +####################################################### + +widget_class "*.ETree.ECanvas" style "theme-tree" #evolution +widget_class "*.ETable.ECanvas" style "theme-tree" #evolution + +style "panelbuttons" = "theme-button" +{ + # as buttons are draw lower this helps center text + ythickness = 3 +} + +widget_class "*Panel*GtkToggleButton*" style "panelbuttons" + +#nautilus search stripe and other specialties +style "extra-view" { + bg[NORMAL] = shade(0.6,@bg_color) + fg[NORMAL] = @selected_fg_color +} + +#nautilus search stripe +widget "*.nautilus-extra-view-widget" style:highest "extra-view" +widget "*.nautilus-extra-view-widget.*.GtkLabel*" style:highest "extra-view" +widget "*.nautilus-extra-view-widget.*Button*.GtkLabel*" style:highest "theme-button" diff --git a/themes/Evil-Mac/gtk-2.0/NormalTabBottom.png b/themes/Evil-Mac/gtk-2.0/NormalTabBottom.png new file mode 100644 index 0000000..d678a24 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/NormalTabBottom.png differ diff --git a/themes/Evil-Mac/gtk-2.0/NormalTabTop.png b/themes/Evil-Mac/gtk-2.0/NormalTabTop.png new file mode 100644 index 0000000..36512e5 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/NormalTabTop.png differ diff --git a/themes/Evil-Mac/gtk-2.0/OptionMenu.png b/themes/Evil-Mac/gtk-2.0/OptionMenu.png new file mode 100644 index 0000000..3c29d6f Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/OptionMenu.png differ diff --git a/themes/Evil-Mac/gtk-2.0/SelectedTabBottom.png b/themes/Evil-Mac/gtk-2.0/SelectedTabBottom.png new file mode 100644 index 0000000..0ecde55 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/SelectedTabBottom.png differ diff --git a/themes/Evil-Mac/gtk-2.0/SelectedTabTop.png b/themes/Evil-Mac/gtk-2.0/SelectedTabTop.png new file mode 100644 index 0000000..5d1f79c Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/SelectedTabTop.png differ diff --git a/themes/Evil-Mac/gtk-2.0/SelectedTabTop_backup.png b/themes/Evil-Mac/gtk-2.0/SelectedTabTop_backup.png new file mode 100644 index 0000000..2ef4c51 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/SelectedTabTop_backup.png differ diff --git a/themes/Evil-Mac/gtk-2.0/button_round.png b/themes/Evil-Mac/gtk-2.0/button_round.png new file mode 100644 index 0000000..ac98b71 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/button_round.png differ diff --git a/themes/Evil-Mac/gtk-2.0/button_round_blue.png b/themes/Evil-Mac/gtk-2.0/button_round_blue.png new file mode 100644 index 0000000..3636c34 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/button_round_blue.png differ diff --git a/themes/Evil-Mac/gtk-2.0/button_round_blue_push.png b/themes/Evil-Mac/gtk-2.0/button_round_blue_push.png new file mode 100644 index 0000000..b312dd0 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/button_round_blue_push.png differ diff --git a/themes/Evil-Mac/gtk-2.0/button_round_insens.png b/themes/Evil-Mac/gtk-2.0/button_round_insens.png new file mode 100644 index 0000000..e8c32fc Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/button_round_insens.png differ diff --git a/themes/Evil-Mac/gtk-2.0/checked_box.png b/themes/Evil-Mac/gtk-2.0/checked_box.png new file mode 100644 index 0000000..bcec6f1 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/checked_box.png differ diff --git a/themes/Evil-Mac/gtk-2.0/gnome-main-menu.png b/themes/Evil-Mac/gtk-2.0/gnome-main-menu.png new file mode 100644 index 0000000..06721a9 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/gnome-main-menu.png differ diff --git a/themes/Evil-Mac/gtk-2.0/gtkrc b/themes/Evil-Mac/gtk-2.0/gtkrc new file mode 100755 index 0000000..8c94a0a --- /dev/null +++ b/themes/Evil-Mac/gtk-2.0/gtkrc @@ -0,0 +1,1646 @@ +############################################### +#evil_mac by p0rt +#---------- +# +# A gtk theme for those who like the idea of a mac, but can't stand the +# light background. +# +# The graphics are completely unoriginal, stolen from m5brane. All I did +# was change some of the colors, lighten up the bright blues, and darken the +# backgrounds. Still, I like it, so I felt like sharing it was a good plan. +# +# This theme draws off years of using gtk and wanting something nice. +# Glossy P and ThinandMild are the main contributors. +# +# Glossy P was inspired by +# - roberTO +# - Grand Masta +# +# The Documentation for this theme is far from finished! Please feel free to +# modify this theme and release it into the wild, but make sure you leave a +# comment like this saying who else has worked on it and who (if anyone) +# inspired you. +# +# Cleaning up the documentation is encouraged! +# +# To Do +# ------- +# +# :: Find and remove any graphics that aren't 100% original +# +# :: Make the theme more efficient; i.e. cut down the number of pixmaps. +# +# :: Figure out how to theme tabs in a few ornery apps, like The Gimp and +# Gnumeric. These special tabs have text entries (or some other widget) +# on top and I haven't figured out how to make them look "right". As far +# as I can tell, no other pixmap themes have, either. +# +# :: Finish side tabs. +# +# :: m5rane claims the icons need more work, but I think these are glorious. +# +# :: m5rane also wanted to finish icons for rhythmbox. +# +# +# +############################################### + +# This sets the size of icons in toolbars and in the panel menus. +#gtk-icon-sizes = "gtk-large-toolbar=24,24:panel-menu=32,32" +gtk-icon-sizes = "gtk-large-toolbar=24,24:panel-menu=24,24" + +# These are settings used by the gtk-menu-shadow hack. If your build of gtk2 +# doesn't have this then comment out these lines. +gtk-menu-drop-shadow = 2 +gtk-menu-shadow-delay = 20 + +include "iconrc" + +#The following is the default style. It contains general settings for the theme that +#should apply to all widgets that aren't explicitly defined elsewhere. At the very end +#of the file we apply this style to the class GtkWidget. If the gtkrc file contains more +#than one rule for how to draw a widget the one that occurs first in the file is used. By +#applying this style to the GtkWidget class last we're telling gtk to use these settings +#for anything that hasn't been defined yet. + +style "glossy-default" +{ + #GtkWidget::interior_focus = 1 + #GtkWidget::focus-line-width=0 + #GtkButton::default_border = { 0, 0, 0, 0 } + #GtkButton::default_outside_border = { 0, 0, 0, 0 } + #GtkButton::default_border = { 3,3,3,3 } + #GtkButton::default_outside_border = { 3,3,3,3 } + #GtkDialog::action_area_border = {0,0,0,0} + + #Yes or No? + GtkWidget::focus_padding = 0 + + #GtkEntry::padding = 6 + #GtkPaned::handle_size = 7 + + #GtkFrame::shadow_type = GTK_SHADOW_NONE + GtkScrolledWindow::shadow_type = GTK_SHADOW_OUT + GtkMenuBar::shadow_type = GTK_SHADOW_ETCHED_IN + GtkToolbar::shadow_type = GTK_SHADOW_OUT + #GtkContainer::shadow_type = GTK_SHADOW_NONE + #GtkPaned::shadow_type = GTK_SHADOW_NONE + + #GtkMenuBar::internal-padding = 0 + + #GtkContainer::border_width = 0 + + #These properties control how the image on a button is displaced when it is clicked. + #GtkButton::child_displacement_x = 0 + #GtkButton::child_displacement_y = 1 + + #GtkButtonBox::child_min_width = 28 + + #GtkOptionMenu::indicator_size = { 20, 10 } + #GtkOptionMenu::indicator_spacing = { 6, 3, 1, 1 } + + #xthickness = 1 + #ythickness = 1 + + #This sets the color for odd rows in TreeViews to be light blue, instead of using + #the color set by gtk. + GtkTreeView::odd_row_color = "#7287ca" + + fg[NORMAL] = "#000000" + fg[ACTIVE] = "#000000" + fg[PRELIGHT] = "#000000" + fg[SELECTED] = "#ffffff" + fg[INSENSITIVE] = "#747474" + bg[NORMAL] = "#F0F0F0" + bg[ACTIVE] = "#a3a3a3" + bg[PRELIGHT] = "#ffffff" + #bg[SELECTED] = "#4285c7" + bg[SELECTED] = "#8db0d4" + bg[INSENSITIVE] = "#f0f0f0" + base[NORMAL] = "#4c5159" + #base[ACTIVE] = "#a3a3a3" + base[ACTIVE] = "#d4d4d4" + base[PRELIGHT] = "#000000" + base[INSENSITIVE]= "#ffffff" + #base[SELECTED] = "#3669bd" + base[SELECTED] = "#6e8eb0" + text[INSENSITIVE]= "#747474" + text[SELECTED] = "#ffffff" + text[ACTIVE] = "#000000" + + #A semi-transparent hi-light for files selected in Nautilus + NautilusIconContainer::highlight_alpha=160 + + #This sets the color used for the text under the icons in nautilus when they are not highlighted. + NautilusIconContainer::dark_info_color="#000000" + #This is the color of the text under an icon in Nautilus when it is highlighted. + NautilusIconContainer::light_info_color="#ffffff" + + #When in doubt, use this pixmap to draw the background of a widget. + bg_pixmap[NORMAL] = "plain_background.png" + bg_pixmap[PRELIGHT] = "plain_background.png" + + engine "pixmap" + { + #This defines how the focus is drawn. Using a transparent image means there is + #no line around a widget when it is in focus. + image + { + function = FOCUS + recolorable = TRUE + overlay_file = "transparent.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + #The following four entries describe how the different types of shadows + #are drawn + image + { + function = SHADOW + recolorable = TRUE + shadow = OUT + file = "shadow_etched_out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "shadow_in.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = ETCHED_IN + file = "shadow_etched_in.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = ETCHED_OUT + file = "shadow_etched_out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #How to draw horizontal lines + image + { + function = HLINE + recolorable = TRUE + file = "hline.png" + border = { 1, 1, 1, 0 } + stretch = TRUE + } + + #How to draw vertical lines + image + { + function = VLINE + recolorable = TRUE + file = "vline.png" + border = { 1, 0, 1, 1 } + stretch = TRUE + } + + #The following two entries describe how handles (grippers) are drawn. + image + { + function = HANDLE + orientation = HORIZONTAL + recolorable = TRUE + #The background image on boxes with horizontal handles. + file = "transparent.png" + border = { 1,1,1,1 } + stretch = TRUE + #The overlay on horizontal handles + overlay_file = "vertical_handle.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + + image + { + function = HANDLE + recolorable = TRUE + #The background on vertical handles + file = "transparent.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + #The overlay on vertical handles. + overlay_file = "horizontal_handle.png" + overlay_border = {0,0,0,0} + overlay_stretch = FALSE + orientation = VERTICAL + } + + #This tells gtk how to draw the base of a handlebox; i.e. the bin that the + #buttons sit in. + image + { + function = BOX + recolorable = TRUE + detail = "handlebox_bin" + file = "plain_background.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + } + +} + +##################################################### +#Buttons +##################################################### + +style "button" +{ + + GtkButton::default_border = { 0, 0, 0, 0 } + #GtkButton::default_outside_border = { 0, 0, 0, 0 } + + #This adds a little extra horizontal thickness to the buttons. I've added this so + #the label on a button has a little room on either side. + xthickness=3 + #ythickness=2 + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + detail = "buttondefault" + shadow = IN + file = "button_round.png" + #border = { 9,9,10,10 } + border = { 15,15,12,12 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = OUT + file = "button_round.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = OUT + file = "button_round_blue.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = IN + file = "button_round_blue.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = IN + file = "button_round.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + shadow = IN + file = "button_round_insens.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + file = "button_round_insens.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = SELECTED + shadow = IN + file = "button_round_blue_push.png" + border = {9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "button_round_blue_push.png" + border = { 9,9,10,10 } + stretch = TRUE + } + } +} + +class "GtkButton" style "button" + +################################################ +# Paned Widgets: Windows divided into two or more sections, which can be +# resized by dragging handles. +################################################ + +style "glossy-paned" = "glossy-default" +{ + #This section describes how panes are drawn. Panes are windows that are separated + #into two parts by a horizontal or vertical divider. The instructions set here over-ride + #the instructions set above for how to draw handles. + + #xthickness = 5 + #ythickness = 5 + + #This defines the thickness of the bar that divides the window. + GtkPaned::handle_size = 8 + + engine "pixmap" + { + # The handle on horizontal dividers + image + { + function = HANDLE + recolorable = TRUE + file = "plain_background.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + overlay_file = "horizontal_paned_handle.png" + overlay_border = {0,0,0,0} + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # The handle on vertical dividers + image + { + function = HANDLE + recolorable = TRUE + file = "plain_background.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + overlay_file = "vertical_paned_handle.png" + overlay_border = {0,0,0,0} + overlay_stretch = FALSE + orientation = VERTICAL + } + + + } +} + +class "Gtk*Paned" style "glossy-paned" + +################################################ +# Toolbars drawn by gtk +################################################ +style "glossy-toolbar"="glossy-default" +{ + + engine "pixmap" + { + + # This tells gtk how to draw the toolbar + image + { + function = BOX + recolorable = TRUE + shadow = OUT + #file = "plain_background.png" + file = "shadow_etched_out.png" + border = {1,1,1,2} + stretch = TRUE + } + + } +} + +widget_class "GtkToolBar" style "glossy-toolbar" +class "*Tool*" style "glossy-toolbar" + + +############################################### +# Menus +############################################### + +style "glossy-menu" +{ + + #This is the image that is used to draw the background of drop-down menus. It is + #tiled, and set inside the box defined below. + #bg_pixmap[NORMAL] = "plain_background.png" + + #The BOX set below is drawn as a 'frame' around the image above, + #whose x and y thicknesses are defined below. + #xthickness = 4 + #ythickness = 4 + + engine "pixmap" + { + + #This is the image that is used to draw Menus. The bg_pixmap image + #set above is drawn inside the border defined below, with a one-pixel + #buffer. Setting the x and y thicknesses above overrides the one-pixel + #border. + image + { + function = BOX + recolorable = TRUE + file = "menu_background.png" + border = {1,1,1,1} + stretch = TRUE + } + + image + { + function = HLINE + recolorable = TRUE + file = "hline.png" + border = { 1, 1, 1, 0 } + stretch = TRUE + } + + } +} + +#widget_class "*Menu*" style "glossy-menu" +class "GtkMenu" style "glossy-menu" + + +############################################### +# Menu Items +############################################### + +style "MenuItem" +{ + + #This sets the thickness of a buffer between the side of the menu + #and where the mouse-over image (set below) is drawn. The side of + #the menu is defined by the border set in the menu style above. + xthickness = 2 + ythickness = 2 + + + engine "pixmap" + { + + #This image is used to draw the highlight on a menu entry when it is + #moused over. + image + { + function = BOX + recolorable = TRUE + file = "menu_hi-light_2.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + image + { + function = HLINE + recolorable = TRUE + file = "hline.png" + border = { 1, 1, 1, 0 } + stretch = TRUE + } + + } +} + +widget_class "*.GtkMenuItem.*" style "MenuItem" +class "GtkMenuItem" style "MenuItem" + +############################################### +# Styles and Controls for Option Menus +############################################### + +style "OptionMenu" +{ + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + file = "OptionMenu.png" + border = { 12, 20, 10, 10 } + stretch = TRUE + } + image + { + function = TAB + recolorable = TRUE + overlay_file = "menubar_option_arrow.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = INSENSITIVE + overlay_file = "menubar_option_arrow_insensitive.png" + overlay_stretch = FALSE + } + } +} + +class "GtkOptionMenu" style "OptionMenu" + +##################################################### +#Notebook: How to draw the tabs, spacings, and backgrounds for notebooks. +##################################################### + +style "notebook" +{ + #These thickness settings make sure that we see the whole thin blue line at the top + #of the notebook page. + xthickness = 1 + ythickness = 3 + + engine "pixmap" + { + + + # NOTEBOOK TABS + + ##################### + #Tabs at the top of the notebook. + ##################### + #This is the image used for the selected tab. + image + { + function = EXTENSION + state = NORMAL + gap_side = BOTTOM + file = "SelectedTabTop.png" + border = {6,6,9,0} + stretch = TRUE + } + + #This is the image used for tabs in the background. + image + { + function = EXTENSION + state = ACTIVE + gap_side = BOTTOM + file = "NormalTabTop.png" + border = {6,6,9,0} + stretch = TRUE + } + + ######################## + # Tabs at the bottom of the notebook. + ######################## + # The image used for background tabs. + image + { + function = EXTENSION + state = ACTIVE + gap_side = TOP + file = "NormalTabBottom.png" + border = {6,6,0,9} + stretch = TRUE + } + + # The image for selected tabs. + image + { + function = EXTENSION + state = NORMAL + gap_side = TOP + file = "SelectedTabBottom.png" + border = {6,6,0,9} + stretch = TRUE + } + + #These are the images that are used for the base of the notebook: the area in the border + #forms the border of the notebook page and the stretched part sits inside. If I use an image + #with a transparent base then I get sequentially darker nested notebook pages, which is good, + #but it maked tab switching much, much slower (~1 sec to redraw when switching tabs). + + #Use this image when the tabs are at the top of the notebook. + image + { + function = BOX_GAP + gap_side = TOP + file = "notebook_top_flat.png" + border = {1,1,4,1} + + stretch = TRUE + } + # use this image when the tabs are on the bottom of the notebook. + image + { + function = BOX_GAP + gap_side = BOTTOM + file = "notebook_bottom_flat.png" + border = {1,1,1,4} + stretch = TRUE + } + # Use this when the tabs are on the left + image + { + function = BOX_GAP + gap_side = LEFT + file = "notebook_left_flat.png" + border = {4,1,1,1} + stretch = TRUE + } + # Use this when the tabs are on the right + image + { + function = BOX_GAP + gap_side = RIGHT + file = "notebook_right_flat.png" + border = {1,4,1,1} + stretch = TRUE + } + + #For drawing notebook pages when they are not attached to a tab. When does + #this happen? + image + { + function = BOX + file = "notebook_top_flat.png" + border = {1,1,4,1} + stretch = TRUE + gap_side = TOP + } + + + } +} +class "GtkNotebook" style "notebook" + +##################################################### +# Text Entries +##################################################### + + +style "entry" +{ + #xthickness = 2 + #ythickness = 2 + #bg[SELECTED] = { 0.30,0.35,0.65 } + bg[NORMAL] = "#595959" + fg[PRELIGHT] = "#595959" + + #GtkEntry::shadow_type = GTK_SHADOW_NONE + + #In the default style we set this color to white because it sets the background color for + #things like GtkText and GtkList, etc, which we want white. But here we set the background + #color for GtkEntry to be light gray so that it blends in with things like toolbars. + base[NORMAL] = "#595959" + + #bg_pixmap[NORMAL] = "menu_background.png" + + engine "pixmap" + { + + image + { + function = FLAT_BOX + recolorable = TRUE + state = INSENSITIVE + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = SELECTED + detail = "entry_bg" + file = "out_sel.png" + border = { 1,1,8,8 } + stretch = TRUE + } + + #This is a transparent shadow. + image + { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "transparent.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + } +} + +class "GtkEntry" style "entry" + +############################################### +# Gtk Lists, like the Rhythmbox playlist or Nautilus Listview +############################################### +style "list-header" +{ + #Comment out the ythickness setting below for thicker column headers. + ythickness = 0 + GtkTreeView::odd_row_color = "#5a6a78" + GtkTreeView::even_row_color = "#4c5159" + + engine "pixmap" + { + + #This image is used to draw the headers of columns in list views when they are + #not selected. + image + { + function = BOX + recolorable = TRUE + shadow = OUT + file = "list_header.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + #This image is used to draw the column headers in list views when they are + #clicked. + image + { + function = BOX + recolorable = TRUE + shadow = IN + file = "menu_hi-light_2.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + #Does this do anything? + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "menu_hi-light_2.png" + border = { 1,1,1,1 } + stretch = TRUE + } + } + +} + +widget_class "*List" style "list-header" +widget_class "*Tree*" style "list-header" +widget_class "GtkCList" style "list-header" + +############################################### +# GtkScrollbar: The scrollbars on windows +############################################### + +style "Scrollbar" { + + + #The values I set here have to do with the relative size of three graphic elements + #I have used: the slider, the arrow box, and the trough. They all have the same width + #of 15 pixels, but gtk wants to put in some spacing between them. It seems like it + #places the sliders inside the trough with a default 1 pixel border on either side of the slider, + #so that the trough has its width stretched by an additional two pixels(?). Setting the + #trough border makes the arrow box sit on top of the trough squarely, by making sure that + #the trough stays the same width as the arrowbox(?). I could be totally wrong here. + GtkRange::trough_border = 0 + GtkRange::slider_width = 15 + + #This sets the size of the steppers (arrow buttons on the end of the scrollbar). The image I + #am using is 15x15 pixels, and if I dont set this a one pixel line gets cut off of the top of the "up" + #stepper. + GtkRange::stepper_size = 15 + + + #Set a minimum length for the slider. Since I set the border on the slider image to 15 pixels + #on either end of the slider I want the min length to be at least 30 pixels to avoid an ugly + #slider when gtk wants to make it smaller than 30 pixels. + GtkScrollbar::min_slider_length = 30 + + engine "pixmap" + { + + #The trough for vertical scrollbars. This is the region in which the slider moves. + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "vertical_trough.png" + border = { 0, 0, 30, 30 } + stretch = TRUE + orientation = VERTICAL + } + + #The trough for horizontal scrollbars. + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "horizontal_trough.png" + border = { 30, 30, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in the NORMAL state. + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in their prelight state. + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_prelight_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in their ACTIVE (pressed?) state. + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in their INSENSITIVE state. + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for vertical scrollbars + #in their NORMAL state. + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + #The image used to draw the slider for vertical scrollbars + #in their prelight state. + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_prelight_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + #The image used to draw the slider for vertical scrollbars + #in their ACTIVE state. + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + #The image used to draw the slider for vertical scrollbars + #in their INSENSITIVE state. + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "vscroll_down.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "vscroll_down.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "vscroll_down.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + } + + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "vscroll_up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "vscroll_down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "hscroll_left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "hscroll_right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "vscroll_up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "vscroll_down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "hscroll_left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "hscroll_right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + shadow = IN + overlay_file = "vscroll_up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + shadow = IN + overlay_file = "vscroll_down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + shadow = IN + overlay_file = "hscroll_left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + shadow = IN + overlay_file = "hscroll_right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + +} +} + +class "GtkScrollbar" style "Scrollbar" + +########################################### +# Scales: The sliders used for volume, track position, etc. Drawn without +# arrow boxes on the end. +########################################### + +#Problem: scales in some apps, like the Gimp, dont look right when they +#are small. The slider is too thin and has two overlapping pieces and looks +#like crap. + +style "Scales" +{ + GtkRange::trough_border = 0 + GtkRange::slider_width = 15 + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "trough_2.png" + border = { 2, 2, 6, 6 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "horizontal_trough_3.png" + border = { 6, 6, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_vertical.png" + border = { 6, 6, 15, 15 } + stretch = TRUE + orientation = VERTICAL + } + + } +} + +class "GtkScale" style "Scales" + +################################################## +#Spin Controls +#--------------- +#These are buttons with two arrows that let you set some value by clicking the +#the arrows. The widget might also have a text entry box for setting the value +#directly by typing it in. +################################################## + +style "spin" +{ + engine "pixmap" + { + + #First we set the images for drawing different parts of a text entry that + #might be attached to the widget. This could be done by inheriting from the + #style used for GtkEntry, but we just set everything here explicitly. Still having + #the same problem as with GtkEntry with the white outline if we do not draw + #a shadow with a thick enough border. + + image + { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = SELECTED + detail = "entry_bg" + file = "out_sel.png" + border = { 1,1,8,8 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = INSENSITIVE + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "transparent.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + + #The following two sections define the images used to draw the up and + #down spin buttons in the INSENSITIVE state. + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + detail = "spinbutton_up" + file = "spin_button_up.png" + border = { 7,7,6,0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + detail = "spinbutton_down" + file = "spin_button_down.png" + border = { 7,7,0,6 } + stretch = TRUE + } + + #The following two sections define the images used to draw the up and + #down spin buttons in the PRELIGHT state. + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + detail = "spinbutton_up" + file = "spin_button_up_prelight.png" + border = { 7,7,6,0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + detail = "spinbutton_down" + file = "spin_button_down_prelight.png" + border = { 7,7,0,6 } + stretch = TRUE + } + + #The following two sections define the images used to draw the up and + #down spin buttons in any states that we have not already defined. + image + { + function = BOX + recolorable = TRUE + detail = "spinbutton_up" + file = "spin_button_up_active.png" + border = { 7,7,6,0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + detail = "spinbutton_down" + file = "spin_button_down_active.png" + border = { 7,7,0,6 } + stretch = TRUE + } + + #The arrows drawn on the spinbuttons are set by the next two + #entries. Different types of arrows can be used for different + #states by setting images for each state. + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "spin_button_up_arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "spin_button_down_arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + } +} + +class "GtkSpin*" style "spin" + +############################################ +# Check Boxes +# -------------- +# This section tells GTK how to draw check boxes. +############################################ + +style "CheckBox" +{ + + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = CHECK + recolorable = TRUE + shadow = OUT + overlay_file = "unchecked_box.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + image + { + function = CHECK + recolorable = TRUE + shadow = IN + overlay_file = "checked_box.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + file = "menu_hi-light_2.png" + border = { 1, 1, 1, 1 } + } + + } +} + +class "GtkCheckButton" style "CheckBox" + +############################################ +# Radio Buttons +############################################ + +style "RadioButton" +{ + + engine "pixmap" + { + + image + { + function = OPTION + recolorable = TRUE + shadow = OUT + overlay_file = "option_out_2.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + shadow = IN + overlay_file = "option_in_2.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a radio box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + file = "menu_hi-light_2.png" + border = { 1, 1, 1, 1 } + } + + } +} + +class "GtkRadioButton" style "RadioButton" + +################################################ +# Statusbars Drawn by gtk (info bar on the bottom of the window) +################################################ +style "glossy-GtkStatusbar" = "glossy-default" +{ + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + + engine "pixmap" + { + + #This does not seem to be working. It seems that you can tell gtk how + #to draw the resizing grip in the bottom right corner of the window, which + #seems to be part of the status bar. Not sure why it is not working. + image + { + function = RESIZE_GRIP + recolorable = TRUE + #state = NORMAL + detail = "statusbar" + overlay_file = "menu_hi-light_2.png" + overlay_border = {1,1,1,1 } + overlay_stretch = FALSE + } + } + + +} + +class "GtkStatusbar" style "glossy-GtkStatusbar" + +########################################### +#Progress Bars +########################################### + +style "ProgressBar" +{ + #xthickness = 1 + #ythickness = 1 + GtkProgressBar::trough_border = 0 + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "bar" + file = "menu_hi-light_2.png" + border = { 1, 1, 1, 1} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "trough_2.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + orientation = HORIZONTAL + } + } +} + +class "GtkProgressBar" style "ProgressBar" + +########################################### +#Text Boxes in Notebooks +########################################### + +#Notebook pages have a darker background than the normal base color. This +#section sets the appropriate background colors for widgets with text entries +#so they blend in with the darker grey background. This isn't a complete fix +#for the problem, since some programs seem to use notebook pages (without +#tabs) in such a way that they don't pick up the dark grey background. +style "DarkTextEntry" +{ + #xthickness = 1 + #ythickness = 1 + + #font_name = "Bold" + + base[NORMAL] = "#595959" + base[INSENSITIVE] = "#595959" + #base[ACTIVE] = "#E8E8E8" + #base[ACTIVE] = "#000000" + #base[INSENSITIVE] = "#000000" + #base[SELECTED] = "#000000" + +} +widget_class "*Notebook*Entry" style "DarkTextEntry" +widget_class "*Notebook*ComboBox" style "DarkTextEntry" +widget_class "*Notebook*SpinButton" style "DarkTextEntry" + +#The settings above assign the DarkTextEntry style to any TextEntry, ComboBox, +#or SpinButton widgets which are the children (or children of children, etc) of a +#Notebook widget. + + +#Widgets that have not been defined yet +class "GtkWidget" style "glossy-default" + diff --git a/themes/Evil-Mac/gtk-2.0/hline.png b/themes/Evil-Mac/gtk-2.0/hline.png new file mode 100644 index 0000000..5b2474d Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/hline.png differ diff --git a/themes/Evil-Mac/gtk-2.0/horizontal_handle.png b/themes/Evil-Mac/gtk-2.0/horizontal_handle.png new file mode 100644 index 0000000..a37cad6 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/horizontal_handle.png differ diff --git a/themes/Evil-Mac/gtk-2.0/horizontal_paned_handle.png b/themes/Evil-Mac/gtk-2.0/horizontal_paned_handle.png new file mode 100644 index 0000000..a37cad6 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/horizontal_paned_handle.png differ diff --git a/themes/Evil-Mac/gtk-2.0/horizontal_trough.png b/themes/Evil-Mac/gtk-2.0/horizontal_trough.png new file mode 100644 index 0000000..09acecd Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/horizontal_trough.png differ diff --git a/themes/Evil-Mac/gtk-2.0/horizontal_trough_3.png b/themes/Evil-Mac/gtk-2.0/horizontal_trough_3.png new file mode 100644 index 0000000..a129d53 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/horizontal_trough_3.png differ diff --git a/themes/Evil-Mac/gtk-2.0/hscroll_left.png b/themes/Evil-Mac/gtk-2.0/hscroll_left.png new file mode 100644 index 0000000..19874d4 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/hscroll_left.png differ diff --git a/themes/Evil-Mac/gtk-2.0/hscroll_right.png b/themes/Evil-Mac/gtk-2.0/hscroll_right.png new file mode 100644 index 0000000..c383d8e Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/hscroll_right.png differ diff --git a/themes/Evil-Mac/gtk-2.0/iconrc b/themes/Evil-Mac/gtk-2.0/iconrc new file mode 100755 index 0000000..6148a56 --- /dev/null +++ b/themes/Evil-Mac/gtk-2.0/iconrc @@ -0,0 +1,64 @@ +pixmap_path "/usr/share/themes/SmootS_Hacked/icons/stock" +style "glossy-icons" +{ + stock["gtk-add"] = {{ "stock_add.png", *, *, * }} + stock["gtk-apply"] = {{ "stock_apply.png", *, *, *}} + stock["gtk-cancel"] = {{ "stock_cancel.png", *, *, *}} + stock["gtk-cdrom"] = {{ "stock_cdrom.png", *, *, *}} + stock["gtk-close"] = {{ "stock_cancel.png", *, *, * }} + stock["gtk-copy"] = {{ "stock_copy.png", *, *, * }} + stock["gtk-cut"] = {{ "stock_cut.png", *, *, * }} + stock["gtk-find"] = {{ "stock_find.png", *, *, * }} + stock["gtk-folder"] = {{ "stock_folder.png", *, *, * }} + stock["gtk-go-back"] = { { "stock_back.png", *, *, *} } + #stock["gtk-go-back"] = { { "nautilus_back.png", *, *, *} } + stock["gtk-go-down"] ={ { "stock_down.png", *, *, *}} + stock["gtk-go-forward"] ={{ "stock_forward.png", *, *, *}} + stock["gtk-go-up"] ={{ "stock_up.png", *, *, *}} + stock["gtk-goto-bottom"] = { { "stock_bottom.png", *, *, *} } + stock["gtk-goto-first"] = {{ "stock_goto_first.png", *, *, * }} + stock["gtk-goto-last"] = {{ "stock_goto_last.png", *, *, * }} + stock["gtk-goto-top"] = {{ "stock_top.png", *, *, *}} + stock["gtk-help"] = {{ "stock_help.png", *, *, * }} + stock["gtk-home"] = {{ "stock_home.png", *, *, * }} + stock["gtk-jump-to"] = {{ "stock_jump_to.png", *, *, * }} + stock["gtk-new"] = {{ "stock_new.png", *, *, *}} + stock["gtk-no"] = {{ "stock_cancel.png", *, *, *}} + stock["gtk-ok"] ={{ "stock_ok.png", *, *, *}} + stock["gtk-open"] ={{ "stock_open.png", *, *, *}} + stock["gtk-print"] ={{ "stock_print.png", *, *, *}} + stock["gtk-quit"] = {{ "stock_quit.png", *, *, * }} + stock["gtk-redo"] = {{ "stock_redo.png", *, *, * }} + stock["gtk-refresh"] = {{ "stock_refresh.png", *, *, *}} + stock["gtk-save"] = {{ "stock_save.png", *, *, * }} + stock["gtk-save-as"] = {{ "stock_save.png", *, *, * }} + stock["gtk-stop"] = {{ "stock_cancel.png", *, *, * }} + stock["gtk-undo"] = {{ "stock_undo.png", *, *, * }} + stock["gtk-yes"] = { { "stock_apply.png", *, *, *} } + stock["gtk-zoom-100"] = {{ "stock_zoom_one_to_one.png", *, *, * }} + stock["gtk-zoom-fit"] = {{ "stock_zoom_fit_width.png", *, *, * }} + stock["gtk-zoom-fit-width"] = {{ "stock_zoom_fit_width.png", *, *, * }} + stock["gtk-zoom-in"] = {{ "stock_zoom_in.png", *, *, * }} + stock["gtk-zoom-out"] = {{ "stock_zoom_out.png", *, *, * }} + + stock ["panel-gnome-logo"] = {{"gnome-main-menu.png",*,*,*}} + +} +class "GtkWidget" style "glossy-icons" + +#style "rhythmbox" +#{ +# stock["rhythmbox-play"] = {{ "rhythmbox-play.png", *, *, * }} +# stock["rhythmbox-stop"] = {{ "rhythmbox-stop.png", *, *, * }} +# stock["rhythmbox-previous"] = {{ "rhythmbox-previous.png", *, *, * }} +# stock["rhythmbox-next"] = {{ "rhythmbox-next.png", *, *, * }} +# stock["rhythmbox-pause"] = {{ "rhythmbox-pause.png", *, *, * }} +# stock["rhythmbox-volume-max"] = {{ "volume-max.png", *, *, * }} +# stock["rhythmbox-volume-medium"] = {{ "volume-med.png", *, *, * }} +# stock["rhythmbox-volume-min"] = {{ "volume-min.png", *, *, * }} +# stock["rhythmbox-volume-zero"] = {{ "volume-zero.png", *, *, * }} +# stock["rhythmbox-volume-mute"] = {{ "volume-mute.png", *, *, * }} +#} +#class "GtkWidget" style "rhythmbox" + + diff --git a/themes/Evil-Mac/gtk-2.0/list_header.png b/themes/Evil-Mac/gtk-2.0/list_header.png new file mode 100755 index 0000000..b4d5e0a Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/list_header.png differ diff --git a/themes/Evil-Mac/gtk-2.0/menu_background.png b/themes/Evil-Mac/gtk-2.0/menu_background.png new file mode 100644 index 0000000..bd7dbd1 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/menu_background.png differ diff --git a/themes/Evil-Mac/gtk-2.0/menu_background_4.png b/themes/Evil-Mac/gtk-2.0/menu_background_4.png new file mode 100644 index 0000000..2bc36cf Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/menu_background_4.png differ diff --git a/themes/Evil-Mac/gtk-2.0/menu_hi-light_2.png b/themes/Evil-Mac/gtk-2.0/menu_hi-light_2.png new file mode 100644 index 0000000..3967615 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/menu_hi-light_2.png differ diff --git a/themes/Evil-Mac/gtk-2.0/menubar_option_arrow.png b/themes/Evil-Mac/gtk-2.0/menubar_option_arrow.png new file mode 100644 index 0000000..f2cbbd0 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/menubar_option_arrow.png differ diff --git a/themes/Evil-Mac/gtk-2.0/menubar_option_arrow_insensitive.png b/themes/Evil-Mac/gtk-2.0/menubar_option_arrow_insensitive.png new file mode 100644 index 0000000..8261b62 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/menubar_option_arrow_insensitive.png differ diff --git a/themes/Evil-Mac/gtk-2.0/nautilus_back.png b/themes/Evil-Mac/gtk-2.0/nautilus_back.png new file mode 100644 index 0000000..d0682ae Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/nautilus_back.png differ diff --git a/themes/Evil-Mac/gtk-2.0/notebook_bottom_flat.png b/themes/Evil-Mac/gtk-2.0/notebook_bottom_flat.png new file mode 100644 index 0000000..18a61aa Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/notebook_bottom_flat.png differ diff --git a/themes/Evil-Mac/gtk-2.0/notebook_left_flat.png b/themes/Evil-Mac/gtk-2.0/notebook_left_flat.png new file mode 100644 index 0000000..82d1291 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/notebook_left_flat.png differ diff --git a/themes/Evil-Mac/gtk-2.0/notebook_right_flat.png b/themes/Evil-Mac/gtk-2.0/notebook_right_flat.png new file mode 100644 index 0000000..40fff88 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/notebook_right_flat.png differ diff --git a/themes/Evil-Mac/gtk-2.0/notebook_top_flat.png b/themes/Evil-Mac/gtk-2.0/notebook_top_flat.png new file mode 100644 index 0000000..436a8f1 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/notebook_top_flat.png differ diff --git a/themes/Evil-Mac/gtk-2.0/notebook_top_flat_transparent.png b/themes/Evil-Mac/gtk-2.0/notebook_top_flat_transparent.png new file mode 100644 index 0000000..2116d58 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/notebook_top_flat_transparent.png differ diff --git a/themes/Evil-Mac/gtk-2.0/option_in_2.png b/themes/Evil-Mac/gtk-2.0/option_in_2.png new file mode 100644 index 0000000..1befea4 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/option_in_2.png differ diff --git a/themes/Evil-Mac/gtk-2.0/option_out_2.png b/themes/Evil-Mac/gtk-2.0/option_out_2.png new file mode 100644 index 0000000..270e961 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/option_out_2.png differ diff --git a/themes/Evil-Mac/gtk-2.0/out_sel.png b/themes/Evil-Mac/gtk-2.0/out_sel.png new file mode 100644 index 0000000..b97bc44 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/out_sel.png differ diff --git a/themes/Evil-Mac/gtk-2.0/plain_background.png b/themes/Evil-Mac/gtk-2.0/plain_background.png new file mode 100644 index 0000000..bbb0e05 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/plain_background.png differ diff --git a/themes/Evil-Mac/gtk-2.0/progressbar_3.png b/themes/Evil-Mac/gtk-2.0/progressbar_3.png new file mode 100644 index 0000000..ba37350 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/progressbar_3.png differ diff --git a/themes/Evil-Mac/gtk-2.0/scrollbar_horizontal.png b/themes/Evil-Mac/gtk-2.0/scrollbar_horizontal.png new file mode 100644 index 0000000..2e29273 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/scrollbar_horizontal.png differ diff --git a/themes/Evil-Mac/gtk-2.0/scrollbar_prelight_horizontal.png b/themes/Evil-Mac/gtk-2.0/scrollbar_prelight_horizontal.png new file mode 100644 index 0000000..54eef28 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/scrollbar_prelight_horizontal.png differ diff --git a/themes/Evil-Mac/gtk-2.0/scrollbar_prelight_vertical.png b/themes/Evil-Mac/gtk-2.0/scrollbar_prelight_vertical.png new file mode 100644 index 0000000..b4dd35b Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/scrollbar_prelight_vertical.png differ diff --git a/themes/Evil-Mac/gtk-2.0/scrollbar_vertical.png b/themes/Evil-Mac/gtk-2.0/scrollbar_vertical.png new file mode 100644 index 0000000..aa209c5 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/scrollbar_vertical.png differ diff --git a/themes/Evil-Mac/gtk-2.0/shadow_etched_in.png b/themes/Evil-Mac/gtk-2.0/shadow_etched_in.png new file mode 100644 index 0000000..535908e Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/shadow_etched_in.png differ diff --git a/themes/Evil-Mac/gtk-2.0/shadow_etched_out.png b/themes/Evil-Mac/gtk-2.0/shadow_etched_out.png new file mode 100644 index 0000000..e543df6 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/shadow_etched_out.png differ diff --git a/themes/Evil-Mac/gtk-2.0/shadow_in.png b/themes/Evil-Mac/gtk-2.0/shadow_in.png new file mode 100644 index 0000000..bab79e7 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/shadow_in.png differ diff --git a/themes/Evil-Mac/gtk-2.0/shadow_out.png b/themes/Evil-Mac/gtk-2.0/shadow_out.png new file mode 100644 index 0000000..7eb130a Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/shadow_out.png differ diff --git a/themes/Evil-Mac/gtk-2.0/small_arrow.xcf b/themes/Evil-Mac/gtk-2.0/small_arrow.xcf new file mode 100644 index 0000000..b192455 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/small_arrow.xcf differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_down.png b/themes/Evil-Mac/gtk-2.0/spin_button_down.png new file mode 100644 index 0000000..d1d69dc Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_down.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_down_active.png b/themes/Evil-Mac/gtk-2.0/spin_button_down_active.png new file mode 100644 index 0000000..a529145 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_down_active.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_down_arrow.png b/themes/Evil-Mac/gtk-2.0/spin_button_down_arrow.png new file mode 100644 index 0000000..cbe8ad3 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_down_arrow.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_down_prelight.png b/themes/Evil-Mac/gtk-2.0/spin_button_down_prelight.png new file mode 100644 index 0000000..3f82db1 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_down_prelight.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_up.png b/themes/Evil-Mac/gtk-2.0/spin_button_up.png new file mode 100644 index 0000000..471caa3 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_up.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_up_active.png b/themes/Evil-Mac/gtk-2.0/spin_button_up_active.png new file mode 100644 index 0000000..8065d1c Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_up_active.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_up_arrow (copy).png b/themes/Evil-Mac/gtk-2.0/spin_button_up_arrow (copy).png new file mode 100644 index 0000000..5fc3dc0 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_up_arrow (copy).png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_up_arrow.png b/themes/Evil-Mac/gtk-2.0/spin_button_up_arrow.png new file mode 100644 index 0000000..750dbcb Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_up_arrow.png differ diff --git a/themes/Evil-Mac/gtk-2.0/spin_button_up_prelight.png b/themes/Evil-Mac/gtk-2.0/spin_button_up_prelight.png new file mode 100644 index 0000000..cb76931 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/spin_button_up_prelight.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_add.png b/themes/Evil-Mac/gtk-2.0/stock_add.png new file mode 100644 index 0000000..e6217fe Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_add.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_apply.png b/themes/Evil-Mac/gtk-2.0/stock_apply.png new file mode 100644 index 0000000..15adf5c Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_apply.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_back (another copy).png b/themes/Evil-Mac/gtk-2.0/stock_back (another copy).png new file mode 100644 index 0000000..3bf6cca Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_back (another copy).png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_back.png b/themes/Evil-Mac/gtk-2.0/stock_back.png new file mode 100644 index 0000000..ce252a5 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_back.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_bottom.png b/themes/Evil-Mac/gtk-2.0/stock_bottom.png new file mode 100644 index 0000000..12f2510 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_bottom.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_cancel.png b/themes/Evil-Mac/gtk-2.0/stock_cancel.png new file mode 100644 index 0000000..c38ff18 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_cancel.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_cd.png b/themes/Evil-Mac/gtk-2.0/stock_cd.png new file mode 100644 index 0000000..17ed7ac Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_cd.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_cdrom.png b/themes/Evil-Mac/gtk-2.0/stock_cdrom.png new file mode 100644 index 0000000..17ed7ac Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_cdrom.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_copy.png b/themes/Evil-Mac/gtk-2.0/stock_copy.png new file mode 100644 index 0000000..442ed32 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_copy.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_cut.png b/themes/Evil-Mac/gtk-2.0/stock_cut.png new file mode 100644 index 0000000..91191d7 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_cut.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_down (another copy).png b/themes/Evil-Mac/gtk-2.0/stock_down (another copy).png new file mode 100644 index 0000000..5380c3a Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_down (another copy).png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_down.png b/themes/Evil-Mac/gtk-2.0/stock_down.png new file mode 100644 index 0000000..3984160 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_down.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_find.png b/themes/Evil-Mac/gtk-2.0/stock_find.png new file mode 100644 index 0000000..3279a54 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_find.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_folder.png b/themes/Evil-Mac/gtk-2.0/stock_folder.png new file mode 100644 index 0000000..0ad11f7 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_folder.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_forward (another copy).png b/themes/Evil-Mac/gtk-2.0/stock_forward (another copy).png new file mode 100644 index 0000000..062a9f7 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_forward (another copy).png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_forward.png b/themes/Evil-Mac/gtk-2.0/stock_forward.png new file mode 100644 index 0000000..d5f18f9 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_forward.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_goto_first.png b/themes/Evil-Mac/gtk-2.0/stock_goto_first.png new file mode 100644 index 0000000..140fdb1 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_goto_first.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_goto_last.png b/themes/Evil-Mac/gtk-2.0/stock_goto_last.png new file mode 100644 index 0000000..ff3fcd5 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_goto_last.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_help.png b/themes/Evil-Mac/gtk-2.0/stock_help.png new file mode 100644 index 0000000..e2ae128 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_help.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_home.png b/themes/Evil-Mac/gtk-2.0/stock_home.png new file mode 100644 index 0000000..129cf73 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_home.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_jump_to.png b/themes/Evil-Mac/gtk-2.0/stock_jump_to.png new file mode 100644 index 0000000..710a4fa Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_jump_to.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_new.png b/themes/Evil-Mac/gtk-2.0/stock_new.png new file mode 100644 index 0000000..cab6f0b Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_new.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_ok.png b/themes/Evil-Mac/gtk-2.0/stock_ok.png new file mode 100644 index 0000000..15adf5c Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_ok.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_open.png b/themes/Evil-Mac/gtk-2.0/stock_open.png new file mode 100644 index 0000000..2b564a3 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_open.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_paste.png b/themes/Evil-Mac/gtk-2.0/stock_paste.png new file mode 100644 index 0000000..9e376c5 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_paste.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_print.png b/themes/Evil-Mac/gtk-2.0/stock_print.png new file mode 100644 index 0000000..acb0568 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_print.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_quit.png b/themes/Evil-Mac/gtk-2.0/stock_quit.png new file mode 100644 index 0000000..f8371b0 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_quit.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_redo.png b/themes/Evil-Mac/gtk-2.0/stock_redo.png new file mode 100644 index 0000000..1461ec7 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_redo.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_refresh.png b/themes/Evil-Mac/gtk-2.0/stock_refresh.png new file mode 100644 index 0000000..328a135 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_refresh.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_save.png b/themes/Evil-Mac/gtk-2.0/stock_save.png new file mode 100644 index 0000000..0425c77 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_save.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_top.png b/themes/Evil-Mac/gtk-2.0/stock_top.png new file mode 100644 index 0000000..363d1ec Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_top.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_trash.png b/themes/Evil-Mac/gtk-2.0/stock_trash.png new file mode 100644 index 0000000..3e4df42 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_trash.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_undo.png b/themes/Evil-Mac/gtk-2.0/stock_undo.png new file mode 100644 index 0000000..5f8ce4e Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_undo.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_up (another copy).png b/themes/Evil-Mac/gtk-2.0/stock_up (another copy).png new file mode 100644 index 0000000..072ec39 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_up (another copy).png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_up.png b/themes/Evil-Mac/gtk-2.0/stock_up.png new file mode 100644 index 0000000..7cb01b8 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_up.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_zoom_fit_width.png b/themes/Evil-Mac/gtk-2.0/stock_zoom_fit_width.png new file mode 100644 index 0000000..63f3dcd Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_zoom_fit_width.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_zoom_in.png b/themes/Evil-Mac/gtk-2.0/stock_zoom_in.png new file mode 100644 index 0000000..7e76c06 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_zoom_in.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_zoom_one_to_one.png b/themes/Evil-Mac/gtk-2.0/stock_zoom_one_to_one.png new file mode 100644 index 0000000..14757d2 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_zoom_one_to_one.png differ diff --git a/themes/Evil-Mac/gtk-2.0/stock_zoom_out.png b/themes/Evil-Mac/gtk-2.0/stock_zoom_out.png new file mode 100644 index 0000000..f5d1cf7 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/stock_zoom_out.png differ diff --git a/themes/Evil-Mac/gtk-2.0/text_entry.png b/themes/Evil-Mac/gtk-2.0/text_entry.png new file mode 100644 index 0000000..c9e2987 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/text_entry.png differ diff --git a/themes/Evil-Mac/gtk-2.0/toolbar_background.png b/themes/Evil-Mac/gtk-2.0/toolbar_background.png new file mode 100644 index 0000000..b848579 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/toolbar_background.png differ diff --git a/themes/Evil-Mac/gtk-2.0/transparent.png b/themes/Evil-Mac/gtk-2.0/transparent.png new file mode 100644 index 0000000..fb1cb59 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/transparent.png differ diff --git a/themes/Evil-Mac/gtk-2.0/trough_2.png b/themes/Evil-Mac/gtk-2.0/trough_2.png new file mode 100644 index 0000000..7dd2230 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/trough_2.png differ diff --git a/themes/Evil-Mac/gtk-2.0/unchecked_box.png b/themes/Evil-Mac/gtk-2.0/unchecked_box.png new file mode 100644 index 0000000..e81773b Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/unchecked_box.png differ diff --git a/themes/Evil-Mac/gtk-2.0/vertical_handle.png b/themes/Evil-Mac/gtk-2.0/vertical_handle.png new file mode 100644 index 0000000..fd12fbd Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/vertical_handle.png differ diff --git a/themes/Evil-Mac/gtk-2.0/vertical_paned_handle.png b/themes/Evil-Mac/gtk-2.0/vertical_paned_handle.png new file mode 100644 index 0000000..0bd1dc0 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/vertical_paned_handle.png differ diff --git a/themes/Evil-Mac/gtk-2.0/vertical_trough.png b/themes/Evil-Mac/gtk-2.0/vertical_trough.png new file mode 100644 index 0000000..9962972 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/vertical_trough.png differ diff --git a/themes/Evil-Mac/gtk-2.0/vline.png b/themes/Evil-Mac/gtk-2.0/vline.png new file mode 100644 index 0000000..2f46c60 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/vline.png differ diff --git a/themes/Evil-Mac/gtk-2.0/vscroll_down.png b/themes/Evil-Mac/gtk-2.0/vscroll_down.png new file mode 100644 index 0000000..aa99a85 Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/vscroll_down.png differ diff --git a/themes/Evil-Mac/gtk-2.0/vscroll_up.png b/themes/Evil-Mac/gtk-2.0/vscroll_up.png new file mode 100644 index 0000000..04b8cde Binary files /dev/null and b/themes/Evil-Mac/gtk-2.0/vscroll_up.png differ diff --git a/themes/Foresight/gtk-2.0/gtkrc b/themes/Foresight/gtk-2.0/gtkrc new file mode 100644 index 0000000..0da61e4 --- /dev/null +++ b/themes/Foresight/gtk-2.0/gtkrc @@ -0,0 +1,197 @@ +#include "icons/iconrc" + +style "clearlooks-default" +{ + GtkButton ::default_border = { 0, 0, 0, 0 } + GtkRange ::trough_border = 0 + GtkPaned ::handle_size = 8 + GtkRange ::slider_width = 15 + GtkRange ::stepper_size = 15 + GtkScrollbar ::min_slider_length = 30 + GtkCheckButton ::indicator_size = 14 + GtkMenuBar ::internal-padding = 0 + GtkTreeView ::expander_size = 12 + GtkExpander ::expander_size = 14 + + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = "#000000" + fg[PRELIGHT] = "#000000" + fg[ACTIVE] = "#000000" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#e5dfc4" + + bg[NORMAL] = "#fbfaf1" + bg[ACTIVE] = "#e0dcc9" + bg[PRELIGHT] = "#fbfaf1" + bg[SELECTED] = "#b4de8f" + bg[INSENSITIVE] = "#f1efde" + + base[NORMAL] = "#ffffff" + base[ACTIVE] = "#dcf1cb" + base[PRELIGHT] = "#b4de8f" + base[INSENSITIVE] = "#fbfaf1" + base[SELECTED] = "#b4de8f" + + text[NORMAL] = "#000000" + text[PRELIGHT] = "#000000" + text[ACTIVE] = "#000000" + text[SELECTED] = "#000000" + text[INSENSITIVE] = "#c2ba79" + +engine "clearlooks" + { + scrollbar_color = "#b4de8f" + menubarstyle = 2 # 0 = flat, 1 = sunken, 2 = flat gradient + animation = TRUE + } +} + +style "clearlooks-wide" = "clearlooks-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-notebook" = "clearlooks-wide" +{ + #bg[NORMAL] = "#" +} + +style "clearlooks-tasklist" = "clearlooks-default" +{ + xthickness = 5 + ythickness = 3 +} + +style "clearlooks-menu" = "clearlooks-default" +{ + xthickness = 3 + ythickness = 3 + bg[NORMAL] = "#ffffff" +} + +style "clearlooks-menu-item" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 4 + #fg[PRELIGHT] = "#000000" + #text[PRELIGHT] = "#000000" + fg[PRELIGHT] = "#000000" + text[PRELIGHT] = "#000000" +} + +style "clearlooks-menu-itembar" = "clearlooks-default" +{ + xthickness = 0 + ythickness = 0 +} + +style "clearlooks-tree" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 2 + GtkTreeView::odd_row_color = "#f2faec" + GtkTreeView::even_row_color = "#ffffff" +} + +style "clearlooks-frame-title" = "clearlooks-default" +{ + fg[NORMAL] = "#404040" +} + +style "clearlooks-panel" = "clearlooks-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-tooltips" = "clearlooks-default" +{ + xthickness = 4 + ythickness = 4 + bg[NORMAL] = { 1.0,1.0,0.75 } +} + +style "clearlooks-progressbar" = "clearlooks-default" +{ + xthickness = 1 + ythickness = 1 + fg[PRELIGHT] = "#ffffff" +} + +style "clearlooks-combo" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 4 +} + +style "metacity-frame" +{ + # Normal base color + #bg[NORMAL] = "#dcf1cb" + + # Unfocused title background color + #bg[INSENSITIVE] = "#fbfaf1" + + # Unfocused title text color + #fg[INSENSITIVE] = "#453f15" + + # Focused icon color + #fg[NORMAL] = { 0.2, 0.2, 0.2 } + + # Focused title background color + bg[SELECTED] = "#8ec560" + + # Focused title text color + fg[SELECTED] = "#ffffff" +} + +style "clearlooks-button" = "clearlooks-wide" +{ + bg[NORMAL] = "#fbfaf1" + #bg[PRELIGHT] = "#555555" +} +style "clearlooks-check" = "clearlooks-button" +{ + text[NORMAL] = "#222222" + text[PRELIGHT] = "#555555" + bg[SELECTED] = "#67a733" +} + +style "clearlooks-panel" = "clearlooks-default" +{ + xthickness = 3 + ythickness = 3 +} + +class "GtkCheckButton" style "clearlooks-check" +class "GtkRadioButton" style "clearlooks-check" +#class "GtkCheck*" style "clearlooks-check" +#class "GtkRadio*" style "clearlooks-check" +class "GtkWidget" style "clearlooks-default" +class "GtkButton" style "clearlooks-button" +class "GtkRange" style "clearlooks-wide" +class "GtkFrame" style "clearlooks-wide" +class "GtkStatusbar" style "clearlooks-wide" +class "GtkMenu" style "clearlooks-menu" +class "GtkMenuItem" style "clearlooks-menu-item" +widget_class "*MenuItem.*" style "clearlooks-menu-item" +class "GtkEntry" style "clearlooks-wide" +widget_class "*.tooltips.*.GtkToggleButton" style "clearlooks-tasklist" +widget_class "*.GtkTreeView.GtkButton" style "clearlooks-tree" +widget_class "*.GtkCTree.GtkButton" style "clearlooks-tree" +widget_class "*.GtkList.GtkButton" style "clearlooks-tree" +widget_class "*.GtkCList.GtkButton" style "clearlooks-tree" +widget_class "*.GtkFrame.GtkLabel" style "clearlooks-frame-title" +widget_class "BasePWidget.GtkEventBox.GtkTable.GtkFrame" style "clearlooks-panel" +widget_class "*List" style "clearlooks-tree" +widget_class "GtkCList" style "clearlooks-tree" +widget "gtk-tooltips" style "clearlooks-tooltips" +class "GtkNotebook" style "clearlooks-notebook" +class "GtkProgressBar" style "clearlooks-progressbar" +widget_class "*.GtkComboBox.GtkButton" style "clearlooks-combo" +widget_class "*.GtkCombo.GtkButton" style "clearlooks-combo" +class "MetaFrames" style "metacity-frame" +widget_class "BasePWidget.GtkEventBox.GtkTable.GtkFrame" style "clearlooks-panel" diff --git a/themes/Khali/gtk-2.0/gtkrc b/themes/Khali/gtk-2.0/gtkrc new file mode 100644 index 0000000..ff4ed42 --- /dev/null +++ b/themes/Khali/gtk-2.0/gtkrc @@ -0,0 +1,274 @@ +#graphite colors by Lokheed modified -bvc +style "theme-default" +{ + GtkButton ::default_border = { 0, 0, 0, 0 } + GtkRange ::trough_border = 0 + GtkPaned ::handle_size = 6 + GtkRange ::slider_width = 15 + GtkRange ::stepper_size = 15 + + GtkScrollbar ::min_slider_length = 30 + GtkCheckButton ::indicator_size = 14 + GtkMenuBar ::internal-padding = 0 + GtkTreeView ::expander_size = 14 + GtkExpander ::expander_size = 16 + GtkScale ::slider-length = 24 + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = "#eaeaea" # Metacity and mouseover, Most text + fg[PRELIGHT] = "#ffffff" # Text when mouseover + fg[ACTIVE] = "#eaeaea" # Text when mouseclicking button, Tabs, Active window list + fg[SELECTED] = "#eaeaea" # Metacity X when window selected + fg[INSENSITIVE] = "#606060" # Insensitive Text + + bg[NORMAL] = "#1b1b1b" # Normal Background, inactive Metacity bar, buttons + bg[PRELIGHT] = "#303030" # Mouseover buttons + bg[ACTIVE] = "#141414" # Mouseclicking, Tabs, active window list + bg[SELECTED] = "#eaeaea" # Metacity Bar + bg[INSENSITIVE] = "#000000" # Insensitive buttons + + base[NORMAL] = "#222222" # Background, most + base[PRELIGHT] = "#051017" # Mouseover menu + base[ACTIVE] = "#181818" # Menu active item in inactive window + base[SELECTED] = "#303030" # Menu active item in active window + base[INSENSITIVE] = "#000000" # Background, insensitive + + text[NORMAL] = "#eaeaea" # Text in window + text[PRELIGHT] = "#eaeaea" # Text on Mouseover + text[ACTIVE] = "#eaeaea" # Active text in inactive window + text[SELECTED] = "#eaeaea" # Active text in active window + text[INSENSITIVE] = "#eaeaea" # Unknown + + GnomeHRef::link_color = "#424449" + GtkIMHtmlr::hyperlink-color = "#424449" + + NautilusIconContainer::normal_alpha = 0 + NautilusIconContainer::frame_text = 1 + #NautilusIconContainer::dark_info_color="#827B69" + #NautilusIconContainer::light_info_color="#827B69" + #NautilusIconContainer::highlight_alpha=70 + + engine "murrine" + { + scrollbar_color = "#303030" + contrast = 1.0 + menubarstyle = 1 # 0 = flat, 1 = glass, 2 = gradient + menubaritemstyle = 0 # 0 = menuitem look, 1 = button look + listviewheaderstyle = 0 # 0 = flat, 1 = glass + # Murrine < 0.30 + # squaredstyle = 1 # 0 = default (rounded), 1 = squared + # Murrine >= 0.30 + roundness = 3 # 0 = default (rounded), 1 = squared + animation = TRUE + } +} + + +style "theme-wide" = "theme-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "theme-wider" = "theme-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "theme-entry" = "theme-wider" +{ + bg[SELECTED] = "#262626" +} + +style "theme-button" = "theme-wider" +{ + bg[NORMAL] = "#141414" + bg[ACTIVE] = "#303030" +} + +style "theme-notebook" = "theme-wide" +{ + +} + +style "theme-tasklist" = "theme-default" +{ + xthickness = 5 + ythickness = 3 +} + +style "theme-tree" = "theme-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "theme-frame-title" = "theme-default" +{ + fg[NORMAL] = "#eaeaea" +} + +style "theme-tooltips" = "theme-default" +{ + xthickness = 4 + ythickness = 4 + bg[NORMAL] = "#101010" + fg[NORMAL] = "#eaeaea" +} + +style "theme-progressbar" = "theme-wide" +{ + xthickness = 1 + ythickness = 1 + fg[PRELIGHT] = "#ffffff" +} + +style "theme-combo" = "theme-button" +{ +} + +# ------------------------------------------------------------------------ Menu + +style "khali-menu" = "khali-default" +{ + xthickness = 0 + ythickness = 3 + + bg[NORMAL] = "#101010" +} + +style "khali-menu-item" = "khali-test" +{ + xthickness = 15 + ythickness = 2 + + bg[SELECTED] = "#eaeaea" + + # Text + fg[NORMAL] = "#eaeaea" + text[NORMAL] = "#eaeaea" + fg[PRELIGHT] = "#101010" + fg[INSENSITIVE] = "#101010" + + # Ticker Mark + text[PRELIGHT] = "#101010" + + # Radio Button + base[NORMAL] = "#101010" + base[PRELIGHT] = "#eaeaea" + + # font_name = "LucidaMacBold 8"#"Trebuchet MS Bold 10" +} + +widget_class "*MenuItem.*" style "khali-menu-item" +class "GtkMenu" style "khali-menu" +class "GtkMenuItem" style "khali-menu-item" + +# -------------------------------------------------------------------- Menu Bar + +# Dropdown menu for the menu bar are handled as 'Menu' + +style "khali-menubar" = "khali-default" +{ + xthickness = 0 + ythickness = 1 + + bg[NORMAL] = "#101010" +} + +style "khali-menubar-label" = "khali-default" +{ + xthickness = 2 + ythickness = 1 + + fg[NORMAL] = "#eaeaea" + fg[PRELIGHT] = "#101010" + + #font_name = "LucidaMacBold 8"#"Trebuchet MS Bold 10" +} + +style "khali-menubar-item" = "khali-default" +{ + xthickness = 2 + ythickness = 1 + + bg[SELECTED] = "#eaeaea" +} + +# -------------------------------------------------------------- Deskbar Applet + +style "khali-deskbar" = "khali-default" +{ + xthickness = 3 + ythickness = 3 + + fg[NORMAL] = "#101010" + bg[NORMAL] = "#222222" + base[NORMAL] = "#101010" + text[NORMAL] = "#eaeaea" + + fg[SELECTED] = "#eaeaea" + bg[SELECTED] = "#151515" + base[SELECTED] = "#303030" + text[SELECTED] = "#eaeaea" + + fg[PRELIGHT] = "#303030" + fg[ACTIVE] = "#202020" + bg[ACTIVE] = "#202020" + base[ACTIVE] = "#707070" + text[ACTIVE] = "#101010" +} + +style "khali-deskbar-entry" = "khali-deskbar" +{ + xthickness = 3 + ythickness = 3 + + base[NORMAL] = "#222222" +} + +class "GtkMenuBar" style "khali-menubar" +widget_class "*.*MenuBar.*MenuItem" style "khali-menubar-item" +widget_class "*.*MenuBar.*Label" style "khali-menubar-label" + +style "khali-window" = "khali-default" +{ + bg[SELECTED] = "#202020" # window title background +} + +class "GtkWindow" style "khali-window" + +# widget styles +class "GtkWidget" style "theme-default" +class "GtkButton" style "theme-button" +class "GtkScale" style "theme-button" +class "GtkCombo" style "theme-button" +class "GtkRange" style "theme-wide" +class "GtkFrame" style "theme-wide" +class "GtkEntry" style "theme-entry" +class "GtkNotebook" style "theme-notebook" +class "GtkProgressBar" style "theme-progressbar" + +# combobox stuff +widget_class "*.GtkComboBox.GtkButton" style "theme-combo" +widget_class "*.GtkCombo.GtkButton" style "theme-combo" +# tooltips stuff +widget_class "*.tooltips.*.GtkToggleButton" style "theme-tasklist" +widget "gtk-tooltips" style "theme-tooltips" + +# treeview stuff +widget_class "*.GtkTreeView.GtkButton" style "theme-tree" +widget_class "*.GtkCTree.GtkButton" style "theme-tree" +widget_class "*.GtkList.GtkButton" style "theme-tree" +widget_class "*.GtkCList.GtkButton" style "theme-tree" +widget_class "*.GtkFrame.GtkLabel" style "theme-frame-title" + +# notebook stuff +widget_class "*.GtkNotebook.*.GtkEventBox" style "theme-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "theme-notebook" + +widget "deskbar*.*Box*" style "khali-deskbar-entry" +widget "deskbar*.*Tree*" style "khali-deskbar" diff --git a/themes/Murrina-Brown/gtk-2.0/gtkrc b/themes/Murrina-Brown/gtk-2.0/gtkrc new file mode 100755 index 0000000..9104514 --- /dev/null +++ b/themes/Murrina-Brown/gtk-2.0/gtkrc @@ -0,0 +1,191 @@ + + +style "theme-default" +{ + GtkButton ::default_border = { 0, 0, 0, 0 } + GtkRange ::trough_border = 0 + GtkPaned ::handle_size = 6 + GtkRange ::slider_width = 15 + GtkRange ::stepper_size = 15 + + GtkScrollbar ::min_slider_length = 30 + GtkCheckButton ::indicator_size = 14 + GtkMenuBar ::internal-padding = 0 + GtkTreeView ::expander_size = 14 + GtkExpander ::expander_size = 16 + GtkScale ::slider-length = 24 + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = "#DBCFC1" # Metacity and mouseover, Most text + fg[PRELIGHT] = "#d34210" # Text when mouseover + fg[ACTIVE] = "#DBCFC1" # Text when mouseclicking button, Tabs, Active window list + fg[SELECTED] = "#ffffff" # Metacity X when window selected + fg[INSENSITIVE] = "#3c3c3c" # Insensitive Text + + bg[NORMAL] = "#2E2920" # Normal Background, inactive Metacity bar, buttons + bg[PRELIGHT] = "#27221A" # Mouseover buttons + bg[ACTIVE] = "#35312A" # Mouseclicking, Tabs, active window list + bg[SELECTED] = "#3C3831" # Metacity Bar + bg[INSENSITIVE] = "#3c3831" # Insensitive buttons + + base[NORMAL] = "#35312A" # Background, most + base[PRELIGHT] = "#27221A" # Mouseover menu + base[ACTIVE] = "#3c3831" # Menu active item in inactive window + base[SELECTED] = "#544c3f" # Menu active item in active window + base[INSENSITIVE] = "#35312A" # Background, insensitive + + text[NORMAL] = "#DBCFC1" # Text in window + text[PRELIGHT] = "#d34210" # Text on Mouseover + text[ACTIVE] = "#d34210" # Active text in inactive window + text[SELECTED] = "#d43210" # Active text in active window + text[INSENSITIVE] = "#DBCFC1" # Unknown + + GnomeHRef::link_color ="#544c3f" + GtkIMHtmlr::hyperlink-color ="#544c3f" + + NautilusIconContainer::normal_alpha = 0 + NautilusIconContainer::frame_text = 1 + #NautilusIconContainer::dark_info_color="#827B69" + #NautilusIconContainer::light_info_color="#827B69" + #NautilusIconContainer::highlight_alpha=70 + + engine "murrine" + { + menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped + scrollbar_color = "#3c3831" + contrast = 1.0 + glazestyle = 0 # 0 = flat hilight, 1 = curved hilight, 2 = concave style + menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped + menubaritemstyle = 1 # 0 = menuitem look, 1 = button look + menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped + listviewheaderstyle = 0 # 0 = flat, 1 = glassy + roundness = 2 # 0 = squared, 1 = old default, more will increase roundness + animation = TRUE # FALSE = disabled, TRUE = enabled + } +} + + +style "theme-wide" = "theme-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "theme-wider" = "theme-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "theme-entry" = "theme-wider" +{ + bg[SELECTED] = "#262626" +} + +style "theme-button" = "theme-wider" +{ + bg[NORMAL] = "#38332C" + bg[ACTIVE] = "#2B2621" +} + +style "theme-notebook" = "theme-wide" +{ + + +} + +style "theme-tasklist" = "theme-default" +{ + xthickness = 5 + ythickness = 3 +} + +style "theme-menu" = "theme-default" +{ + xthickness = 2 + ythickness = 1 +} + +style "theme-menu-item" = "theme-default" +{ + ythickness = 3 + fg[PRELIGHT] = "#d34210" + text[PRELIGHT] = "#ffffff" +} + +style "theme-menubar" = "theme-default" +{ + bg[NORMAL] = "#2E2920" +} + +style "theme-menubar-item" +{ + ythickness = 4 + bg[PRELIGHT] = "#2B2822" +} + +style "theme-tree" = "theme-default" +{ + xthickness = 2 + ythickness = 2 +} + +style "theme-frame-title" = "theme-default" +{ + fg[NORMAL] = "#DBCFC1" +} + +style "theme-tooltips" = "theme-default" +{ + xthickness = 4 + ythickness = 4 + bg[NORMAL] = "#2b2822" +} + +style "theme-progressbar" = "theme-wide" +{ + xthickness = 1 + ythickness = 1 + fg[PRELIGHT] = "#d34210" +} + +style "theme-combo" = "theme-button" +{ +} + +# widget styles +class "GtkWidget" style "theme-default" +class "GtkButton" style "theme-button" +class "GtkScale" style "theme-button" +class "GtkCombo" style "theme-button" +class "GtkRange" style "theme-wide" +class "GtkFrame" style "theme-wide" +class "GtkMenu" style "theme-menu" +class "GtkEntry" style "theme-entry" +class "GtkMenuItem" style "theme-menu-item" +class "GtkNotebook" style "theme-notebook" +class "GtkProgressBar" style "theme-progressbar" +class "*MenuBar*" style "theme-menubar" + +widget_class "*MenuItem.*" style "theme-menu-item" +widget_class "*MenuBar.*" style "theme-menubar-item" + +# combobox stuff +widget_class "*.GtkComboBox.GtkButton" style "theme-combo" +widget_class "*.GtkCombo.GtkButton" style "theme-combo" +# tooltips stuff +widget_class "*.tooltips.*.GtkToggleButton" style "theme-tasklist" +widget "gtk-tooltips" style "theme-tooltips" + +# treeview stuff +widget_class "*.GtkTreeView.GtkButton" style "theme-tree" +widget_class "*.GtkCTree.GtkButton" style "theme-tree" +widget_class "*.GtkList.GtkButton" style "theme-tree" +widget_class "*.GtkCList.GtkButton" style "theme-tree" +widget_class "*.GtkFrame.GtkLabel" style "theme-frame-title" + +# notebook stuff +widget_class "*.GtkNotebook.*.GtkEventBox" style "theme-notebook" +widget_class "*.GtkNotebook.*.GtkViewport" style "theme-notebook" diff --git a/themes/Outcrop/gtk-2.0/arrow.png b/themes/Outcrop/gtk-2.0/arrow.png new file mode 100644 index 0000000..8c00a55 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/arrow.png differ diff --git a/themes/Outcrop/gtk-2.0/bg-czysty.png b/themes/Outcrop/gtk-2.0/bg-czysty.png new file mode 100644 index 0000000..a729c18 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/bg-czysty.png differ diff --git a/themes/Outcrop/gtk-2.0/bg-h.png b/themes/Outcrop/gtk-2.0/bg-h.png new file mode 100644 index 0000000..b7cf23b Binary files /dev/null and b/themes/Outcrop/gtk-2.0/bg-h.png differ diff --git a/themes/Outcrop/gtk-2.0/bg-pasy.png b/themes/Outcrop/gtk-2.0/bg-pasy.png new file mode 100644 index 0000000..7979152 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/bg-pasy.png differ diff --git a/themes/Outcrop/gtk-2.0/bg-v.png b/themes/Outcrop/gtk-2.0/bg-v.png new file mode 100644 index 0000000..91a5fa1 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/bg-v.png differ diff --git a/themes/Outcrop/gtk-2.0/bg.png b/themes/Outcrop/gtk-2.0/bg.png new file mode 100644 index 0000000..c29499d Binary files /dev/null and b/themes/Outcrop/gtk-2.0/bg.png differ diff --git a/themes/Outcrop/gtk-2.0/but-a.png b/themes/Outcrop/gtk-2.0/but-a.png new file mode 100644 index 0000000..78b8672 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-a.png differ diff --git a/themes/Outcrop/gtk-2.0/but-ciemny-i.png b/themes/Outcrop/gtk-2.0/but-ciemny-i.png new file mode 100644 index 0000000..7fa4cb4 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-ciemny-i.png differ diff --git a/themes/Outcrop/gtk-2.0/but-ciemny-p.png b/themes/Outcrop/gtk-2.0/but-ciemny-p.png new file mode 100644 index 0000000..fa99ab7 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-ciemny-p.png differ diff --git a/themes/Outcrop/gtk-2.0/but-ciemny.png b/themes/Outcrop/gtk-2.0/but-ciemny.png new file mode 100644 index 0000000..4025743 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-ciemny.png differ diff --git a/themes/Outcrop/gtk-2.0/but-def.png b/themes/Outcrop/gtk-2.0/but-def.png new file mode 100644 index 0000000..961f128 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-def.png differ diff --git a/themes/Outcrop/gtk-2.0/but-i.png b/themes/Outcrop/gtk-2.0/but-i.png new file mode 100644 index 0000000..d355c5e Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-i.png differ diff --git a/themes/Outcrop/gtk-2.0/but-n.png b/themes/Outcrop/gtk-2.0/but-n.png new file mode 100644 index 0000000..b9ecdad Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-n.png differ diff --git a/themes/Outcrop/gtk-2.0/but-p.png b/themes/Outcrop/gtk-2.0/but-p.png new file mode 100644 index 0000000..54983ce Binary files /dev/null and b/themes/Outcrop/gtk-2.0/but-p.png differ diff --git a/themes/Outcrop/gtk-2.0/check-in.png b/themes/Outcrop/gtk-2.0/check-in.png new file mode 100644 index 0000000..b1b3306 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/check-in.png differ diff --git a/themes/Outcrop/gtk-2.0/check-out.png b/themes/Outcrop/gtk-2.0/check-out.png new file mode 100644 index 0000000..09adf96 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/check-out.png differ diff --git a/themes/Outcrop/gtk-2.0/check-pin.png b/themes/Outcrop/gtk-2.0/check-pin.png new file mode 100644 index 0000000..8eb4d5e Binary files /dev/null and b/themes/Outcrop/gtk-2.0/check-pin.png differ diff --git a/themes/Outcrop/gtk-2.0/check-pout.png b/themes/Outcrop/gtk-2.0/check-pout.png new file mode 100644 index 0000000..005cb06 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/check-pout.png differ diff --git a/themes/Outcrop/gtk-2.0/empty.png b/themes/Outcrop/gtk-2.0/empty.png new file mode 100644 index 0000000..83eff85 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/empty.png differ diff --git a/themes/Outcrop/gtk-2.0/gtkrc b/themes/Outcrop/gtk-2.0/gtkrc new file mode 100644 index 0000000..558bcaa --- /dev/null +++ b/themes/Outcrop/gtk-2.0/gtkrc @@ -0,0 +1,788 @@ +# Written by Witek Tarchalski +# Based on Pixmap engine +# + +style "default" { + GtkFrame::shadow_type = GTK_SHADOW_IN + GtkScrolledWindow::shadow_type = GTK_SHADOW_IN + GtkContainer::shadow_type = GTK_SHADOW_IN + GtkPaned::shadow_type = GTK_SHADOW_IN + GtkRange::slider_width = 19 + GtkRange::stepper_size = 19 + GtkScrollbar::min_slider_length = 36 + + + bg[NORMAL] = "#e8e9ea" + bg[PRELIGHT] = "#ebeced" + bg[ACTIVE] = "#d5dadc" + bg[SELECTED] = "#b7b9bb" + bg[INSENSITIVE] = "#e8e8e8" + bg_pixmap[NORMAL] = "bg-v.png" + + fg[NORMAL] = "#002" +# fg[PRELIGHT] = "#001" + fg[ACTIVE] = "#015" + fg[SELECTED] = "#012" + fg[INSENSITIVE] = "#569" + + base[NORMAL] = "#ffffff" + base[SELECTED] = "#d0e5f8" ##zaznaczenie + base[INSENSITIVE]= "#eff1f2" + base[ACTIVE] = "#d7ecff" ##zaznaczenie unfocused + base[PRELIGHT] = "#c6cde6" + + text[NORMAL] = "#114" + text[ACTIVE] = "#005" + text[PRELIGHT] = "#003" + text[SELECTED] = "#005" + text[INSENSITIVE]= "#888" + + + engine "pixmap" { + image { + function = HANDLE + recolorable = TRUE + overlay_file = "handle-h.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + orientation = VERTICAL + } + image { + function = HANDLE + recolorable = TRUE + overlay_file = "handle-h.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image { + function = SHADOW + recolorable = TRUE + shadow = OUT +# file = "empty.png" + file = "shadow-out.png" + border = { 2,2,2,2 } + stretch = TRUE + } + image { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "shadow.png" + border = { 2,2,2,2 } + stretch = TRUE + } + image { + function = SHADOW + recolorable = TRUE + shadow = ETCHED_IN + file = "shadow.png" + border = { 2,2,2,2 } + stretch = TRUE + } + image { + function = SHADOW + recolorable = TRUE + shadow = ETCHED_OUT + file = "shadow.png" + border = { 2,2,2,2 } + stretch = TRUE + } + image { + function = SHADOW_GAP + recolorable = TRUE + file = "empty.png" + border = { 2,2,2,2 } + stretch = TRUE +# gap_start_file = "shadow-gap-top.png" + gap_start_file = "line-h.png" + gap_start_border = { 0,0,1,0 } +# gap_end_file = "shadow-gap-top.png" + gap_end_file = "line-h.png" + gap_end_border = { 0,0,1,0 } + gap_side = TOP + } + image { + function = VLINE + recolorable = TRUE + file = "line-v.png" + border = { 0,0,0,0 } + stretch = TRUE + } + image { + function = HLINE + recolorable = TRUE + file = "line-h.png" + border = { 0,0,0,0 } + stretch = TRUE + } + image { + function = FOCUS + recolorable = TRUE + overlay_file = "empty.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = TRUE + } + image { + function = BOX + recolorable = TRUE +# shadow = IN # dla metacity button + file = "menuitem.png" +# file = "menubar.png" + state = SELECTED # zeby stalo sie nieuzyteczne + border = { 6,6,6,6 } + stretch = TRUE + } + } +} +class "GtkWidget" style "default" + +style "toolbar" { + xthickness = 1 + ythickness = 1 + engine "pixmap" { + image { + function = BOX +# shadow = ETCHED_OUT +# shadow = NONE + file = "toolbar.png" + border = { 8,8,2,2 } + stretch = TRUE + orientation = HORIZONTAL + } + } +} +class "*Tool*" style "toolbar" + +style "panel" { + engine "pixmap" { + image { + function = BOX + file = "empty.png" + border = { 0,0,0,0 } + stretch = TRUE + } + } + bg_pixmap[NORMAL] = "panel.png" +} +class "Panel*" style "panel" + +style "menubar" { + ythickness = 1 +# bg[NORMAL] = "#dad5da" + engine "pixmap" { + image { + function = BOX + shadow = OUT + file = "menubar.png" + border = { 5,4,4,4 } + stretch = TRUE + } + } +} +class "GtkMenuBar" style "menubar" + +style "menu" { +# bg_pixmap[NORMAL] = "tmp.png" +# bg[SELECTED] = "#dad5da" + engine "pixmap" { + image { + function = BOX + recolorable = TRUE + file = "menubg.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} +class "GtkMenu" style "menu" + +style "menuitem" { + xthickness = 3 + ythickness = 3 + engine "pixmap" { + image { + function = BOX +# file = "progress.png" +# file = "but-ciemny.png" + file = "menuitem.png" + border = { 5,5,5,5 } + stretch = TRUE + } + } +} +class "GtkMenuItem" style "menuitem" + +style "handle" { + engine "pixmap" { + image { + function = SHADOW + } + image { + function = HANDLE + recolorable = TRUE + overlay_file = "handle-h.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + orientation = VERTICAL + } + image { + function = HANDLE + overlay_file = "handle-v.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + orientation = HORIZONTAL + } + } +} +class "GtkPaned" style "handle" +widget_class "*HandleBox*" style "handle" +class "GtkHandleBox" style "handle" + +style "toggle" { + xthickness = 3 + ythickness = 3 + engine "pixmap" { + image { + function = BOX + recolorable = TRUE + shadow = IN +# file = "toggle-in.png" + file = "but-a.png" + border = { 5,5,5,5 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + shadow = OUT +# file = "toggle-out.png" + file = "but-n.png" + border = { 5,5,5,5 } + stretch = TRUE + } + } +} +class "GtkToggleButton" style "toggle" + +style "button" { + xthickness = 3 + ythickness = 3 + engine "pixmap" { + image { + function = BOX + detail = "buttondefault" + recolorable = TRUE + file = "but-def.png" + border = { 2,2,2,2 } + stretch = TRUE + } + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "check-pin.png" + overlay_stretch = FALSE + } + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "check-pout.png" + overlay_stretch = FALSE + } + image { + function = CHECK + recolorable = TRUE + shadow = OUT + overlay_file = "check-out.png" + overlay_stretch = FALSE + } + image { + function = CHECK + recolorable = TRUE + shadow = IN + overlay_file = "check-in.png" + overlay_stretch = FALSE + } + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "option-pin.png" + overlay_stretch = FALSE + } + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "option-pout.png" + overlay_stretch = FALSE + } + image { + function = OPTION + recolorable = TRUE + shadow = OUT + overlay_file = "option-out.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + image { + function = OPTION + recolorable = TRUE + shadow = IN + overlay_file = "option-in.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + image { + function = BOX + file = "but-n.png" + state = NORMAL + border = { 5,5,5,5 } + stretch = TRUE + } + image { + function = BOX + file = "but-i.png" + state = INSENSITIVE + border = { 5,5,5,5 } + stretch = TRUE + } + image { + function = BOX + file = "but-p.png" + state = PRELIGHT + border = { 5,5,5,5 } + stretch = TRUE + } + image { + function = BOX + file = "but-a.png" + state = ACTIVE + border = { 3,3,4,4 } + stretch = TRUE + } + } +} +class "GtkButton" style "button" + +style "list" { + ythickness = 1 + engine "pixmap" { + image { + function = BOX + recolorable = TRUE + shadow = OUT + file = "list-n.png" +# file = "menuitem.png" + border = { 5,5,5,5 } + stretch = TRUE + } + image { ## active ALE pojawia sie rowniez jako miedzka pod suwakami! + function = BOX + recolorable = TRUE + shadow = IN + file = "list-pressed.png" + border = { 5,5,5,5 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "menuitem.png" + border = { 5,5,5,5 } + stretch = TRUE + } + } +} + +widget_class "*List" style "list" +widget_class "*GtkTreeView*" style "list" +widget_class "GtkCList" style "list" + +style "spin" { +# xthickness = 1 +# ythickness = 1 + engine "pixmap" { + image { + function = BOX + recolorable = TRUE + state = ACTIVE +# file = "spin-a.png" + file = "list-pressed.png" + border = { 2,1,2,1 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + state = PRELIGHT + detail = "spinbutton_up" +# file = "spin-pu.png" + file = "but-p.png" + border = { 1,1,1,1 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + state = PRELIGHT + detail = "spinbutton_down" +# file = "spin-pd.png" + file = "but-p.png" + border = { 1,1,1,1 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + state = INSENSITIVE + detail = "spinbutton_up" +# file = "spin-iu.png" + file = "but-i.png" + border = { 1,1,1,1 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + state = INSENSITIVE + detail = "spinbutton_down" +# file = "spin-id.png" + file = "but-i.png" + border = { 1,1,1,1 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + detail = "spinbutton_up" +# file = "spin-nu.png" + file = "but-n.png" + border = { 1,1,1,1 } + stretch = TRUE + } + image { + function = BOX + recolorable = TRUE + detail = "spinbutton_down" +# file = "spin-nd.png" + file = "but-n.png" + border = { 1,1,1,1 } + stretch = TRUE + } + } +} +class "*Spin*" style "spin" + +style "scales" { + + GtkVScale::slider_length = 20 + GtkVScale::slider_width = 20 + GtkHScale::slider_length = 20 + GtkHScale::slider_width = 20 + + engine "pixmap" { + image { + function = BOX + recolorable = TRUE + detail = "trough" + file = "trough-range.png" + border = { 2, 2, 6, 6 } + stretch = TRUE + orientation = VERTICAL + } + image { + function = BOX + recolorable = TRUE + detail = "trough" + file = "trough-range.png" + border = { 6, 6, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "but-ciemny.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "but-ciemny-p.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "but-ciemny-i.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "but-ciemny.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = VERTICAL + } + image { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "but-ciemny-p.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = VERTICAL + } + image { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "but-ciemny-i.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +class "GtkScale" style "scales" + +style "range" { + fg[PRELIGHT]="#77b" + engine "pixmap" { + image { + function = BOX + file = "trough-h.png" +# file = "trough-range.png" + detail = "trough" + border = { 6,6,6,6 } + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = BOX + file = "trough-v.png" +# file = "trough-range.png" + detail = "trough" + border = { 6,6,6,6 } + stretch = TRUE + orientation = VERTICAL + } + image { + function = BOX + file = "empty.png" + state = NORMAL + border = { 0,0,0,0 } + stretch = TRUE + } + image { + function = BOX + file = "empty.png" + state = INSENSITIVE + border = { 0,0,0,0 } + stretch = TRUE + } + image { + function = BOX + file = "empty.png" + state = PRELIGHT + border = { 0,0,0,0 } + stretch = TRUE + } + image { + function = BOX + file = "empty.png" + state = ACTIVE + border = { 0,0,0,0 } + stretch = TRUE + } + image { + function = SLIDER + file = "but-ciemny.png" +# file = "slider-n.png" + border = { 5,5,5,5 } + state = NORMAL + stretch = TRUE + orientation = VERTICAL + } + image { + function = SLIDER + file = "but-ciemny-p.png" +# file = "slider-n.png" + state = PRELIGHT + border = { 5,5,5,5 } + stretch = TRUE + orientation = VERTICAL + } + image { + function = SLIDER + file = "but-ciemny.png" +# file = "slider-n.png" + border = { 5,5,5,5 } + state = NORMAL + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = SLIDER + file = "but-ciemny-p.png" +# file = "slider-n.png" + state = PRELIGHT + border = { 5,5,5,5 } + stretch = TRUE + orientation = HORIZONTAL + } + image { + function = SLIDER + file = "slider-i.png" + state = INSENSITIVE + border = { 5,5,5,5 } + stretch = TRUE + } + } +} +class "GtkRange" style "range" +class "GtkScrollbar" style "range" + +style "notebook" { + ythickness = 1 +# bg[PRELIGHT] = "#f6f5f6" + engine "pixmap" { + image { + function = EXTENSION + state = ACTIVE +# file = "tab-ah.png" + file = "tab-a.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = BOTTOM + } + image { + function = EXTENSION + state = ACTIVE +# file = "tab-ah.png" + file = "tab-a.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = TOP + } + image { + function = EXTENSION + state = ACTIVE +# file = "tab-av.png" + file = "tab-a.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = RIGHT + } + image { + function = EXTENSION + state = ACTIVE +# file = "tab-av.png" + file = "tab-a.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = LEFT + } + image { + function = EXTENSION +# file = "tab-nh.png" + file = "but-n.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = BOTTOM + } + image { + function = EXTENSION +# file = "tab-nh.png" + file = "but-n.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = TOP + } + image { + function = EXTENSION +# file = "tab-nv.png" + file = "but-n.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = RIGHT + } + image { + function = EXTENSION +# file = "tab-nv.png" + file = "but-n.png" + border = { 5,5,5,5 } + stretch = TRUE + gap_side = LEFT + } + image { + function = BOX_GAP +# gap_side = TOP + file = "notebook.png" + border = { 4,4,4,4 } + stretch = TRUE + } + } +} +class "GtkNotebook" style "notebook" + +style "tooltip" { + bg_pixmap[NORMAL] = "tooltip.png" + bg_pixmap[PRELIGHT] = "tooltip.png" + bg_pixmap[ACTIVE] = "tooltip.png" + bg_pixmap[INSENSITIVE] = "tooltip.png" +} +widget "gtk-tooltips" style "tooltip" +class "GtkWidget" style "default" + +style "progressbar" { ## pixmapy uzywane takze w listbutton!! + engine "pixmap" { + image { + function = BOX + recolorable = TRUE + detail = "trough" + file = "progress-trough.png" + border = { 0,0,0,0 } + stretch = TRUE +# orientation = VERTICAL + } + image { + function = BOX + recolorable = TRUE + detail = "bar" + file = "menuitem.png" +# file = "but-ciemny.png" + border = { 4,4,4,4 } + stretch = TRUE + } + } +} +class "GtkProgress*" style "progressbar" + +style "metacity-frame" +{ + bg[INSENSITIVE] = "#dadada" + bg[ACTIVE] = "#cecece" +## bg[NORMAL] = "#307162" + fg[NORMAL] = "#f00" + fg[PRELIGHT] = "#0f0" +} +#class "MetaFrames" style "metacity-frame" +#widget_class "MetaFrames" style "metacity-frame" diff --git a/themes/Outcrop/gtk-2.0/handle-h.png b/themes/Outcrop/gtk-2.0/handle-h.png new file mode 100644 index 0000000..7271801 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/handle-h.png differ diff --git a/themes/Outcrop/gtk-2.0/handle-v.png b/themes/Outcrop/gtk-2.0/handle-v.png new file mode 100644 index 0000000..ea465fb Binary files /dev/null and b/themes/Outcrop/gtk-2.0/handle-v.png differ diff --git a/themes/Outcrop/gtk-2.0/line-h.png b/themes/Outcrop/gtk-2.0/line-h.png new file mode 100644 index 0000000..e11c6bb Binary files /dev/null and b/themes/Outcrop/gtk-2.0/line-h.png differ diff --git a/themes/Outcrop/gtk-2.0/line-v.png b/themes/Outcrop/gtk-2.0/line-v.png new file mode 100644 index 0000000..26f7087 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/line-v.png differ diff --git a/themes/Outcrop/gtk-2.0/list-n.png b/themes/Outcrop/gtk-2.0/list-n.png new file mode 100644 index 0000000..b00f4e6 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/list-n.png differ diff --git a/themes/Outcrop/gtk-2.0/list-pressed.png b/themes/Outcrop/gtk-2.0/list-pressed.png new file mode 100644 index 0000000..d3d3967 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/list-pressed.png differ diff --git a/themes/Outcrop/gtk-2.0/menubar.png b/themes/Outcrop/gtk-2.0/menubar.png new file mode 100644 index 0000000..201d195 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/menubar.png differ diff --git a/themes/Outcrop/gtk-2.0/menubg-wklesle.png b/themes/Outcrop/gtk-2.0/menubg-wklesle.png new file mode 100644 index 0000000..34d16c2 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/menubg-wklesle.png differ diff --git a/themes/Outcrop/gtk-2.0/menubg.png b/themes/Outcrop/gtk-2.0/menubg.png new file mode 100644 index 0000000..41d9bc7 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/menubg.png differ diff --git a/themes/Outcrop/gtk-2.0/menuitem.png b/themes/Outcrop/gtk-2.0/menuitem.png new file mode 100644 index 0000000..a319e32 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/menuitem.png differ diff --git a/themes/Outcrop/gtk-2.0/notebook.png b/themes/Outcrop/gtk-2.0/notebook.png new file mode 100644 index 0000000..3aaeced Binary files /dev/null and b/themes/Outcrop/gtk-2.0/notebook.png differ diff --git a/themes/Outcrop/gtk-2.0/option-in.png b/themes/Outcrop/gtk-2.0/option-in.png new file mode 100644 index 0000000..153d265 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/option-in.png differ diff --git a/themes/Outcrop/gtk-2.0/option-out.png b/themes/Outcrop/gtk-2.0/option-out.png new file mode 100644 index 0000000..b751ea1 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/option-out.png differ diff --git a/themes/Outcrop/gtk-2.0/option-pin.png b/themes/Outcrop/gtk-2.0/option-pin.png new file mode 100644 index 0000000..b029593 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/option-pin.png differ diff --git a/themes/Outcrop/gtk-2.0/option-pout.png b/themes/Outcrop/gtk-2.0/option-pout.png new file mode 100644 index 0000000..7211f1d Binary files /dev/null and b/themes/Outcrop/gtk-2.0/option-pout.png differ diff --git a/themes/Outcrop/gtk-2.0/panel.png b/themes/Outcrop/gtk-2.0/panel.png new file mode 100644 index 0000000..e20701a Binary files /dev/null and b/themes/Outcrop/gtk-2.0/panel.png differ diff --git a/themes/Outcrop/gtk-2.0/progress-trough.png b/themes/Outcrop/gtk-2.0/progress-trough.png new file mode 100644 index 0000000..d34f2ef Binary files /dev/null and b/themes/Outcrop/gtk-2.0/progress-trough.png differ diff --git a/themes/Outcrop/gtk-2.0/shadow-e.png b/themes/Outcrop/gtk-2.0/shadow-e.png new file mode 100644 index 0000000..2b1a40f Binary files /dev/null and b/themes/Outcrop/gtk-2.0/shadow-e.png differ diff --git a/themes/Outcrop/gtk-2.0/shadow-gap-top.png b/themes/Outcrop/gtk-2.0/shadow-gap-top.png new file mode 100644 index 0000000..5a67139 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/shadow-gap-top.png differ diff --git a/themes/Outcrop/gtk-2.0/shadow-out.png b/themes/Outcrop/gtk-2.0/shadow-out.png new file mode 100644 index 0000000..b5d77fc Binary files /dev/null and b/themes/Outcrop/gtk-2.0/shadow-out.png differ diff --git a/themes/Outcrop/gtk-2.0/shadow.png b/themes/Outcrop/gtk-2.0/shadow.png new file mode 100644 index 0000000..1e8e26a Binary files /dev/null and b/themes/Outcrop/gtk-2.0/shadow.png differ diff --git a/themes/Outcrop/gtk-2.0/shadowgap.png b/themes/Outcrop/gtk-2.0/shadowgap.png new file mode 100644 index 0000000..85872fe Binary files /dev/null and b/themes/Outcrop/gtk-2.0/shadowgap.png differ diff --git a/themes/Outcrop/gtk-2.0/slider-i.png b/themes/Outcrop/gtk-2.0/slider-i.png new file mode 100644 index 0000000..67ca529 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/slider-i.png differ diff --git a/themes/Outcrop/gtk-2.0/slider-n.png b/themes/Outcrop/gtk-2.0/slider-n.png new file mode 100644 index 0000000..64711f4 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/slider-n.png differ diff --git a/themes/Outcrop/gtk-2.0/tab-a.png b/themes/Outcrop/gtk-2.0/tab-a.png new file mode 100644 index 0000000..07644f0 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/tab-a.png differ diff --git a/themes/Outcrop/gtk-2.0/tab-ah.png b/themes/Outcrop/gtk-2.0/tab-ah.png new file mode 100644 index 0000000..9ce6077 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/tab-ah.png differ diff --git a/themes/Outcrop/gtk-2.0/tab-av.png b/themes/Outcrop/gtk-2.0/tab-av.png new file mode 100644 index 0000000..d102ecd Binary files /dev/null and b/themes/Outcrop/gtk-2.0/tab-av.png differ diff --git a/themes/Outcrop/gtk-2.0/tab-n.png b/themes/Outcrop/gtk-2.0/tab-n.png new file mode 100644 index 0000000..87ee5de Binary files /dev/null and b/themes/Outcrop/gtk-2.0/tab-n.png differ diff --git a/themes/Outcrop/gtk-2.0/toolbar.png b/themes/Outcrop/gtk-2.0/toolbar.png new file mode 100644 index 0000000..d192571 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/toolbar.png differ diff --git a/themes/Outcrop/gtk-2.0/tooltip.png b/themes/Outcrop/gtk-2.0/tooltip.png new file mode 100644 index 0000000..9a7c38a Binary files /dev/null and b/themes/Outcrop/gtk-2.0/tooltip.png differ diff --git a/themes/Outcrop/gtk-2.0/trough-h.png b/themes/Outcrop/gtk-2.0/trough-h.png new file mode 100644 index 0000000..f6802d7 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/trough-h.png differ diff --git a/themes/Outcrop/gtk-2.0/trough-range.png b/themes/Outcrop/gtk-2.0/trough-range.png new file mode 100644 index 0000000..695ec1c Binary files /dev/null and b/themes/Outcrop/gtk-2.0/trough-range.png differ diff --git a/themes/Outcrop/gtk-2.0/trough-v.png b/themes/Outcrop/gtk-2.0/trough-v.png new file mode 100644 index 0000000..04fd6e9 Binary files /dev/null and b/themes/Outcrop/gtk-2.0/trough-v.png differ diff --git a/themes/Phasex-Dark/gtk-2.0/gtkrc b/themes/Phasex-Dark/gtk-2.0/gtkrc new file mode 100644 index 0000000..bc30fe8 --- /dev/null +++ b/themes/Phasex-Dark/gtk-2.0/gtkrc @@ -0,0 +1,225 @@ +# Phasex-Dark theme + +gtk-color-scheme = "bg1:#200020\nbg1_shade:#300030\nbg1_dark:#100010\nbg2:#000080\nbg2_shade:#000060\nbg2_dark:#000040\nbg3:#000030\nbg3_shade:#000020\nbg3_dark:#000020\nhighlight1:#ffb812\nhighlight2:#ffb812\nhighlight3:#20f0f0\nspecial1:#00f000\nspecial2:#0000b0\nspecial3:#f70000\ntext1:#e0e0e0\ntext2:#c0c0c0\ngrey1:#606060\ngrey2:#404040" + +style "sysex-default" +{ + xthickness = 2 + ythickness = 0 + + GtkTreeView::even_row_color = @bg3 + GtkTreeView::odd_row_color = @bg3_shade + + GtkTreeView::enable_tree_lines = "true" + + bg[NORMAL] = @bg1 # normal background + bg[PRELIGHT] = @bg2 # pane slider highlight + bg[ACTIVE] = @bg2 # selected text background + bg[SELECTED] = @special1 # selected text entry border + bg[INSENSITIVE] = @bg1 # insensitive button background + + base[NORMAL] = @bg3_shade # text entry and toggle button background + base[PRELIGHT] = @highlight2 # + base[ACTIVE] = @bg2 # active text background (not selected) + base[SELECTED] = @bg2_shade # active and selected text background + base[INSENSITIVE] = @bg1 # + + fg[NORMAL] = @text1 # main text + fg[PRELIGHT] = @highlight2 # button text highlight + fg[ACTIVE] = @highlight1 # toggled-on button text + fg[SELECTED] = @highlight2 # + fg[INSENSITIVE] = @grey2 # + + text[NORMAL] = @text1 # text entry and widget arrow + text[PRELIGHT] = @highlight2 # text entry and widget arrow highlight + text[ACTIVE] = @highlight1 # active entry text (not selected) + text[SELECTED] = @highlight1 # active and selected entry text + text[INSENSITIVE] = @grey1 # insensitive widget arrow and button text +} + +style "sysex-tree" = "sysex-default" +{ + text[NORMAL] = @highlight1 + fg[NORMAL] = @highlight1 +} + +style "sysex-combo" = "sysex-default" +{ + bg[SELECTED] = @highlight2 # selected text entry border + text[PRELIGHT] = @highlight2 # text entry and widget arrow highlight + fg[PRELIGHT] = @highlight2 # + fg[ACTIVE] = @highlight2 # toggled on button text + base[ACTIVE] = @highlight2 # active text background (not selected) +} + +style "sysex-menubar" = "sysex-default" +{ + xthickness = 2 + ythickness = 0 + + bg[PRELIGHT] = @special2 # menu item background highlight + bg[ACTIVE] = @bg2 # active menu item background + bg[SELECTED] = @bg2 # selected menu item background + bg[INSENSITIVE] = @bg3_shade # insensitive menu item background + + fg[PRELIGHT] = @highlight2 + fg[ACTIVE] = @highlight2 # toggled on button text + + base[NORMAL] = @bg3 # + base[INSENSITIVE] = @bg3 # + + text[PRELIGHT] = @highlight2 # + text[ACTIVE] = @highlight2 # +} + +style "sysex-menu" = "sysex-default" +{ + xthickness = 2 + ythickness = 2 + + bg[NORMAL] = @bg3 # menu item background + bg[PRELIGHT] = @special2 # menu item background highlight + bg[ACTIVE] = @bg2 # active menu item background + bg[SELECTED] = @bg2 # selected menu item background + bg[INSENSITIVE] = @bg3_shade # insensitive menu item background + + fg[PRELIGHT] = @highlight2 + fg[ACTIVE] = @highlight2 # toggled on button text + + base[NORMAL] = @bg3 # + base[INSENSITIVE] = @bg3 # + + text[PRELIGHT] = @highlight2 # + text[ACTIVE] = @highlight2 # +} + +style "sysex-button" = "sysex-default" +{ + bg[NORMAL] = @bg3_dark # button background & toggle button border + bg[PRELIGHT] = @bg2 # button highlight background + bg[ACTIVE] = @bg2 # button selected / activated background + bg[SELECTED] = @special1 # selected button border & toggle button border highlight + + base[NORMAL] = @bg1_dark # toggle button inset background + base[PRELIGHT] = @bg1_shade # toggle button highlight inset background + base[ACTIVE] = @highlight2 # toggle button activating inset background + base[SELECTED] = @highlight2 # toggle button ? + + fg[NORMAL] = @text1 # normal button text and toggle button outer ring + fg[PRELIGHT] = @highlight2 # button highlight text + fg[ACTIVE] = @highlight2 # toggled-on button text + fg[SELECTED] = @special1 # + fg[INSENSITIVE] = @grey2 # + + text[NORMAL] = @highlight2 + text[PRELIGHT] = @highlight2 # combobox button arrow highlight + text[ACTIVE] = @highlight2 + text[SELECTED] = @highlight2 + text[INSENSITIVE] = @bg2_dark +} + +style "sysex-radio" = "sysex-button" +{ + bg[SELECTED] = @special1 # selected button border & toggle button border highlight + bg[PRELIGHT] = @bg1 + + base[ACTIVE] = @special3 # toggle button activating inset background + base[PRELIGHT] = @bg1_dark # toggle button highlight inset background + + text[NORMAL] = @special1 # toggle button inset light color + text[PRELIGHT] = @special2 + + fg[PRELIGHT] = @highlight2 # toggle button border and text prelight + fg[ACTIVE] = @highlight1 # toggled-on button text +} + +style "sysex-spin" = "sysex-default" +{ + xthickness = 3 + ythickness = 3 +} + +style "sysex-scroll" = "sysex-default" +{ + text[NORMAL] = @bg1 # + fg[SELECTED] = @bg1 # + bg[NORMAL] = @grey1 # scrollbar handle + bg[ACTIVE] = @bg1 # scrollbar background + bg[PRELIGHT] = @special2 # scrollbar handle highlight +} + +style "sysex-frame" = "sysex-default" +{ + xthickness = 1 + ythickness = 0 + + bg[NORMAL] = @bg1_shade # frame border +} + +style "sysex-notebook" = "sysex-default" +{ + bg[SELECTED] = "#0000c0" # active tab top gradient + fg[SELECTED] = @text1 # + + #bg[NORMAL] = "#000000" # active tab background + fg[NORMAL] = @highlight2 # + text[NORMAL] = @highlight2 # + + bg[ACTIVE] = @bg1_shade # non-active tab background + fg[ACTIVE] = @text1 # non-active tab text + + fg[INSENSITIVE] = @highlight2 # + text[INSENSITIVE] = @highlight2 # +} + +style "sysex-tooltip" +{ + bg[NORMAL] = @bg3 # + fg[NORMAL] = @text1 # + text[NORMAL] = @text1 # +} + + +class "GtkWidget" style "sysex-default" + +class "GtkStatusbar" style "sysex-default" + +class "GtkCombo" style "sysex-combo" +class "GtkComboBox" style "sysex-combo" +widget_class "*GtkComboBox.GtkButton" style "sysex-combo" +widget_class "*GtkCombo.GtkButton" style "sysex-combo" +widget_class "*GtkComboBox*" style "sysex-combo" + +class "GtkButton" style "sysex-button" +class "GtkToggleButton" style "sysex-button" +widget_class "*GtkToggleButton*" style "sysex-button" + +class "GtkCheckButton" style "sysex-radio" +class "GtkRadioButton" style "sysex-radio" +widget_class "*GtkRadioButton*" style "sysex-radio" + +class "GtkSpinButton" style "sysex-spin" + +class "GtkRange" style "sysex-scroll" +class "GtkScale" style "sysex-scroll" +class "*Scrollbar*" style "sysex-scroll" + +class "GtkEntry" style "sysex-spin" + +class "GtkNotebook" style "sysex-notebook" +widget_class "GtkNotebook" style "sysex-notebook" +widget_class "*.GtkNotebook.GtkLabel*" style "sysex-notebook" + +widget_class "**" style "sysex-menu" +widget_class "**" style "sysex-menu" +class "GtkMenuBar" style "sysex-menubar" +widget_class "**" style "sysex-menubar" + +class "GtkTooltip" style "sysex-tooltip" +widget "*gtk-tooltip*" style "sysex-tooltip" + +class "GtkFrame" style "sysex-frame" +class "MetaFrames" style "sysex-frame" +widget_class "BasePWidget.GtkEventBox.GtkTable.GtkFrame" style "sysex-frame" + +#class "GtkTreeView" style "sysex-tree" diff --git a/themes/Smooth-Mech/gtk-2.0/gtkrc b/themes/Smooth-Mech/gtk-2.0/gtkrc new file mode 100644 index 0000000..12081e6 --- /dev/null +++ b/themes/Smooth-Mech/gtk-2.0/gtkrc @@ -0,0 +1,305 @@ +# Smooth-Mech 1.1 +# Copyleft: Lucas Lommer +# Based on Ken Joseph's Smooth-Desert theme +# Anyone is permitted to modify this file or theme in whatever way +# or for whatever purpose he or she wants to do. + +# Last modified Nov. 4, 2005 +# GTK2 theme using smooth engine +# Features "flat" line style with ivory/#d6aa4c/lemonchiffon colors +# "It's thinner than thin, it's FLAT!!" :) + +style "default" { + GtkButton::default_border = {0, 0, 0, 0} + GtkButton::default_outside_border = {0, 0, 0, 0} + + GtkCheckButton::indicator_size = 13 + GtkRadioButton::indicator_size = 12 + + GtkPaned::handle_size = 6 + + GtkRange::trough_border = 0 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + + GtkScrollbar::min_slider_length = 30 + GtkScrollbar::has_backward_stepper = 1 + GtkScrollbar::has_secondary_forward_stepper = 0 + GtkScrollbar::has_forward_stepper = 1 + GtkScrollbar::has_secondary_backward_stepper = 0 + + bg[NORMAL] = "ivory2" + bg[ACTIVE] = "ivory3" + bg[INSENSITIVE] = "ivory2" + bg[PRELIGHT] = "khaki" + bg[SELECTED] = "#d6aa4c" + + fg[NORMAL] = "black" + fg[ACTIVE] = "black" + fg[INSENSITIVE] = "LemonChiffon4" + fg[PRELIGHT] = "black" + fg[SELECTED] = "gray95" + + base[NORMAL] = "gray95" + base[ACTIVE] = "#d3c996" + base[INSENSITIVE] = "ivory3" + base[PRELIGHT] = "khaki" + base[SELECTED] = "#d6aa4c" + + text[NORMAL] = "black" + text[ACTIVE] = "black" + text[INSENSITIVE] = "gray45" + text[PRELIGHT] = "black" + text[SELECTED] = "black" + + engine "smooth" { + fill { + style = shade + hdirection = vertical + vdirection = horizontal + shade1 = 0.85 + shade2 = 1.0 + } + line { + style = flat + thickness = 2 + } + grip { + style = slashes + count = 3 + spacing = 2 + toolbar_overlap = FALSE + } + check { + style = fast + motif = FALSE + } + option { + style = circle + motif = FALSE + } + arrow { + style = wonderland + solid = TRUE + etched = FALSE + } + tab_style = square + } +} widget_class "*" style "default" + +style "toolbar" { + bg[ACTIVE] = "LemonChiffon3" + bg[PRELIGHT] = "#d6aa4c" + fg[ACTIVE] = "black" + fg[PRELIGHT] = "gray95" + engine "smooth" { + fill { + style = solid + } + line { + style = flat + thickness =2 + } + grip { + style = slashes + count = 3 + spacing = 3 + toolbar_overlap = FALSE + } + } +} +widget_class "*BonoboDockItem*" style "toolbar" +class "*BonoboDockItem*" style "toolbar" + +widget_class "*HandleBox*" style "toolbar" +class "*HandleBox*" style "toolbar" + +widget_class "*Tool*" style "toolbar" +class "*Tool*" style "toolbar" + +widget_class "*MenuBar*" style "toolbar" +class "*MenuBar*" style "toolbar" + +style "menuitem" { + bg[PRELIGHT] = "#d6aa4c" + fg[PRELIGHT] = "black" + + # Radio/Check items use text[state] for the check colour + text[NORMAL] = "black" + text[PRELIGHT] = "black" + + engine "smooth" { + fill { + style = shade + hdirection = vertical + vdirection = horizontal + shade1 = 0.85 + shade2 = 1.0 + } + line { + style = flat + thickness = 2 + } + check { + style = fast + motif = FALSE + } + option { + style = circle + motif = FALSE + } + arrow { + style = wonderland + solid = TRUE + etched = FALSE + } + } +} class "*MenuItem*" style "menuitem" +widget_class "*MenuItem*" style "menuitem" + +style "button" = "default" { + bg[NORMAL] = "LemonChiffon2" + bg[ACTIVE] = "LemonChiffon3" + bg[INSENSITIVE] = "LemonChiffon2" + bg[PRELIGHT] = "#d6aa4c" + bg[SELECTED] = "OrangeRed" + + fg[ACTIVE] = "black" + fg[PRELIGHT] = "black" + + base[PRELIGHT] = "gray95" + + #radio buttons use text[state] for the check colour + text[NORMAL] = "#d6aa4c" + text[ACTIVE] = "black" + text[PRELIGHT] = "#d6aa4c" +} +class "GtkButton" style "button" +widget_class "*GtkButton*" style "button" + +class "*OptionMenu*" style "button" +widget_class "*OptionMenu*" style "button" + +class "GtkToggleButton" style "button" +widget_class "*RadioButton*" style "button" +widget_class "*CheckButton*" style "button" + +style "scrollbar" { + bg[NORMAL] = "ivory2" + bg[ACTIVE] = "ivory3" + bg[PRELIGHT] = "khaki" + + engine "smooth" { + fill { + style = shade + hdirection = vertical + vdirection = horizontal + shade1 = 0.85 + shade2 = 1.0 + } + line { + style = flat + thickness = 2 + } + trough { + fill { + style = solid + } + } + grip { + style = slashes + count = 3 + spacing = 2 + } + arrow { + style= wonderland + solid = TRUE + etched = FALSE + } + } +} +widget_class "*Scrollbar*" style "scrollbar" +class "*Scrollbar*" style "scrollbar" + +style "paned" { + engine "smooth" { + line { + style = flat + thickness = 2 + } + grip { + style = lines + } + } +} +class "*Paned*" style "paned" + +style "scales" { + bg[NORMAL] = "LemonChiffon2" + bg[PRELIGHT] = "khaki" + bg[SELECTED] = "#d6aa4c" #scroll bar background + + GtkRange::trough_border = 0 + GtkRange::slider-width = 13 + GtkScale::slider-length = 29 + + engine "smooth" + { + real_sliders = FALSE + fill { + style = shade + hdirection = vertical + vdirection = horizontal + shade1 = 0.85 + shade2 = 1.0 + } + line { + style = flat + thickness = 2 + } + trough { + xpadding = 3 + ypadding = 3 + show_value = TRUE + fill { + style = solid + } + } + grip { + style = slashes + count = 3 + spacing = 2 + } + } +} +widget_class "*Scale*" style "scales" +class "*Scale*" style "scales" + +style "infobar" { + bg[NORMAL] = "#d3c996" + bg[PRELIGHT] = "#d6aa4c" + fg[PRELIGHT] = "black" + xthickness = 2 + ythickness = 2 + engine "smooth" { + real_sliders = FALSE + fill { + style = shade + hdirection = vertical + vdirection = horizontal + shade1 = 0.73 + shade2 = 1.195 + } + line { + style = flat + thickness = 2 + } + trough { + fill { + style = solid + } + } + } +} +class "*Progress*" style "infobar" +widget_class "*Progress*" style "infobar" diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-down-insens.png b/themes/Spreen/gtk-2.0/Arrows/arrow-down-insens.png new file mode 100755 index 0000000..6b8b560 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-down-insens.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-down-prelight.png b/themes/Spreen/gtk-2.0/Arrows/arrow-down-prelight.png new file mode 100755 index 0000000..6b8b560 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-down-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-down-pressed.png b/themes/Spreen/gtk-2.0/Arrows/arrow-down-pressed.png new file mode 100755 index 0000000..6b8b560 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-down-pressed.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-down.png b/themes/Spreen/gtk-2.0/Arrows/arrow-down.png new file mode 100755 index 0000000..e9ec111 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-down.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-left.png b/themes/Spreen/gtk-2.0/Arrows/arrow-left.png new file mode 100755 index 0000000..681fbbf Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-left.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-right-norm.png b/themes/Spreen/gtk-2.0/Arrows/arrow-right-norm.png new file mode 100755 index 0000000..ac42cff Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-right-norm.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-right-prelight.png b/themes/Spreen/gtk-2.0/Arrows/arrow-right-prelight.png new file mode 100755 index 0000000..37dfbc9 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-right-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-right.png b/themes/Spreen/gtk-2.0/Arrows/arrow-right.png new file mode 100755 index 0000000..ac42cff Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-right.png differ diff --git a/themes/Spreen/gtk-2.0/Arrows/arrow-up.png b/themes/Spreen/gtk-2.0/Arrows/arrow-up.png new file mode 100755 index 0000000..2d973e4 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Arrows/arrow-up.png differ diff --git a/themes/Spreen/gtk-2.0/Buttons/button-default.png b/themes/Spreen/gtk-2.0/Buttons/button-default.png new file mode 100755 index 0000000..fe17bde Binary files /dev/null and b/themes/Spreen/gtk-2.0/Buttons/button-default.png differ diff --git a/themes/Spreen/gtk-2.0/Buttons/button-insensitive.png b/themes/Spreen/gtk-2.0/Buttons/button-insensitive.png new file mode 100755 index 0000000..92585e3 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Buttons/button-insensitive.png differ diff --git a/themes/Spreen/gtk-2.0/Buttons/button-normal.png b/themes/Spreen/gtk-2.0/Buttons/button-normal.png new file mode 100644 index 0000000..ed39143 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Buttons/button-normal.png differ diff --git a/themes/Spreen/gtk-2.0/Buttons/button-prelight.png b/themes/Spreen/gtk-2.0/Buttons/button-prelight.png new file mode 100755 index 0000000..c0b6623 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Buttons/button-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Buttons/button-pressed.png b/themes/Spreen/gtk-2.0/Buttons/button-pressed.png new file mode 100755 index 0000000..3b15fee Binary files /dev/null and b/themes/Spreen/gtk-2.0/Buttons/button-pressed.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/check1.png b/themes/Spreen/gtk-2.0/Check-Radio/check1.png new file mode 100755 index 0000000..a956059 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/check1.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/check2.png b/themes/Spreen/gtk-2.0/Check-Radio/check2.png new file mode 100755 index 0000000..16d7dc3 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/check2.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/check3.png b/themes/Spreen/gtk-2.0/Check-Radio/check3.png new file mode 100755 index 0000000..26653a1 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/check3.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/check4.png b/themes/Spreen/gtk-2.0/Check-Radio/check4.png new file mode 100755 index 0000000..87d4932 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/check4.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/checklight.png b/themes/Spreen/gtk-2.0/Check-Radio/checklight.png new file mode 100755 index 0000000..ba53742 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/checklight.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/highlight.png b/themes/Spreen/gtk-2.0/Check-Radio/highlight.png new file mode 100755 index 0000000..2923ec3 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/highlight.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/option1.png b/themes/Spreen/gtk-2.0/Check-Radio/option1.png new file mode 100755 index 0000000..b7d0f2e Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/option1.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/option2.png b/themes/Spreen/gtk-2.0/Check-Radio/option2.png new file mode 100755 index 0000000..f12bea8 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/option2.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/option3.png b/themes/Spreen/gtk-2.0/Check-Radio/option3.png new file mode 100755 index 0000000..952e23b Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/option3.png differ diff --git a/themes/Spreen/gtk-2.0/Check-Radio/option4.png b/themes/Spreen/gtk-2.0/Check-Radio/option4.png new file mode 100755 index 0000000..35ef4c3 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Check-Radio/option4.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-arrow-insens.png b/themes/Spreen/gtk-2.0/Combo/combo-arrow-insens.png new file mode 100755 index 0000000..6b8b560 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-arrow-insens.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-arrow-prelight.png b/themes/Spreen/gtk-2.0/Combo/combo-arrow-prelight.png new file mode 100755 index 0000000..6b8b560 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-arrow-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-arrow.png b/themes/Spreen/gtk-2.0/Combo/combo-arrow.png new file mode 100755 index 0000000..e9ec111 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-arrow.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-inaktiv.png b/themes/Spreen/gtk-2.0/Combo/combo-inaktiv.png new file mode 100755 index 0000000..92585e3 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-inaktiv.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-normal.png b/themes/Spreen/gtk-2.0/Combo/combo-normal.png new file mode 100644 index 0000000..ed39143 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-normal.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-prelight.png b/themes/Spreen/gtk-2.0/Combo/combo-prelight.png new file mode 100755 index 0000000..c0b6623 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/combo-pressed.png b/themes/Spreen/gtk-2.0/Combo/combo-pressed.png new file mode 100755 index 0000000..3b15fee Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/combo-pressed.png differ diff --git a/themes/Spreen/gtk-2.0/Combo/text-entry.png b/themes/Spreen/gtk-2.0/Combo/text-entry.png new file mode 100755 index 0000000..fa10825 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Combo/text-entry.png differ diff --git a/themes/Spreen/gtk-2.0/Frame-Gap/frame-gap-end.png b/themes/Spreen/gtk-2.0/Frame-Gap/frame-gap-end.png new file mode 100755 index 0000000..60ea4da Binary files /dev/null and b/themes/Spreen/gtk-2.0/Frame-Gap/frame-gap-end.png differ diff --git a/themes/Spreen/gtk-2.0/Frame-Gap/frame-gap-start.png b/themes/Spreen/gtk-2.0/Frame-Gap/frame-gap-start.png new file mode 100755 index 0000000..da52f7c Binary files /dev/null and b/themes/Spreen/gtk-2.0/Frame-Gap/frame-gap-start.png differ diff --git a/themes/Spreen/gtk-2.0/Frame-Gap/frame1.png b/themes/Spreen/gtk-2.0/Frame-Gap/frame1.png new file mode 100755 index 0000000..041b437 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Frame-Gap/frame1.png differ diff --git a/themes/Spreen/gtk-2.0/Frame-Gap/frame2.png b/themes/Spreen/gtk-2.0/Frame-Gap/frame2.png new file mode 100755 index 0000000..69981fc Binary files /dev/null and b/themes/Spreen/gtk-2.0/Frame-Gap/frame2.png differ diff --git a/themes/Spreen/gtk-2.0/Handles/handle-h.png b/themes/Spreen/gtk-2.0/Handles/handle-h.png new file mode 100755 index 0000000..5e836af Binary files /dev/null and b/themes/Spreen/gtk-2.0/Handles/handle-h.png differ diff --git a/themes/Spreen/gtk-2.0/Handles/handle-v.png b/themes/Spreen/gtk-2.0/Handles/handle-v.png new file mode 100755 index 0000000..b923f29 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Handles/handle-v.png differ diff --git a/themes/Spreen/gtk-2.0/Handles/resize-grip.png b/themes/Spreen/gtk-2.0/Handles/resize-grip.png new file mode 100755 index 0000000..1d5b960 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Handles/resize-grip.png differ diff --git a/themes/Spreen/gtk-2.0/Lines/line-h.png b/themes/Spreen/gtk-2.0/Lines/line-h.png new file mode 100755 index 0000000..0a45288 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Lines/line-h.png differ diff --git a/themes/Spreen/gtk-2.0/Lines/line-v.png b/themes/Spreen/gtk-2.0/Lines/line-v.png new file mode 100755 index 0000000..753b11f Binary files /dev/null and b/themes/Spreen/gtk-2.0/Lines/line-v.png differ diff --git a/themes/Spreen/gtk-2.0/Menu-Menubar/menuitem.png b/themes/Spreen/gtk-2.0/Menu-Menubar/menuitem.png new file mode 100644 index 0000000..ee3c76a Binary files /dev/null and b/themes/Spreen/gtk-2.0/Menu-Menubar/menuitem.png differ diff --git a/themes/Spreen/gtk-2.0/Others/focus.png b/themes/Spreen/gtk-2.0/Others/focus.png new file mode 100755 index 0000000..c41abe1 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Others/focus.png differ diff --git a/themes/Spreen/gtk-2.0/Others/null.png b/themes/Spreen/gtk-2.0/Others/null.png new file mode 100755 index 0000000..9d7e6be Binary files /dev/null and b/themes/Spreen/gtk-2.0/Others/null.png differ diff --git a/themes/Spreen/gtk-2.0/Others/ruler.png b/themes/Spreen/gtk-2.0/Others/ruler.png new file mode 100755 index 0000000..28c47bf Binary files /dev/null and b/themes/Spreen/gtk-2.0/Others/ruler.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/handle-h.png b/themes/Spreen/gtk-2.0/Panel/handle-h.png new file mode 100755 index 0000000..30230fe Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/handle-h.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/handle-v.png b/themes/Spreen/gtk-2.0/Panel/handle-v.png new file mode 100755 index 0000000..d2c363c Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/handle-v.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/panel-bg.png b/themes/Spreen/gtk-2.0/Panel/panel-bg.png new file mode 100644 index 0000000..aff4d20 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/panel-bg.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/panelbutton1.png b/themes/Spreen/gtk-2.0/Panel/panelbutton1.png new file mode 100755 index 0000000..92585e3 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/panelbutton1.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/panelbutton2.png b/themes/Spreen/gtk-2.0/Panel/panelbutton2.png new file mode 100644 index 0000000..ed39143 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/panelbutton2.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/panelbutton3.png b/themes/Spreen/gtk-2.0/Panel/panelbutton3.png new file mode 100755 index 0000000..c0b6623 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/panelbutton3.png differ diff --git a/themes/Spreen/gtk-2.0/Panel/panelbutton4.png b/themes/Spreen/gtk-2.0/Panel/panelbutton4.png new file mode 100755 index 0000000..3b15fee Binary files /dev/null and b/themes/Spreen/gtk-2.0/Panel/panelbutton4.png differ diff --git a/themes/Spreen/gtk-2.0/ProgressBar/progressbar-horiz.png b/themes/Spreen/gtk-2.0/ProgressBar/progressbar-horiz.png new file mode 100644 index 0000000..eda9796 Binary files /dev/null and b/themes/Spreen/gtk-2.0/ProgressBar/progressbar-horiz.png differ diff --git a/themes/Spreen/gtk-2.0/ProgressBar/progressbar-vert.png b/themes/Spreen/gtk-2.0/ProgressBar/progressbar-vert.png new file mode 100644 index 0000000..f66aec2 Binary files /dev/null and b/themes/Spreen/gtk-2.0/ProgressBar/progressbar-vert.png differ diff --git a/themes/Spreen/gtk-2.0/ProgressBar/trough-progressbar-horiz.png b/themes/Spreen/gtk-2.0/ProgressBar/trough-progressbar-horiz.png new file mode 100755 index 0000000..1d419d7 Binary files /dev/null and b/themes/Spreen/gtk-2.0/ProgressBar/trough-progressbar-horiz.png differ diff --git a/themes/Spreen/gtk-2.0/Range/null.png b/themes/Spreen/gtk-2.0/Range/null.png new file mode 100755 index 0000000..4136605 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/null.png differ diff --git a/themes/Spreen/gtk-2.0/Range/slider-horiz-prelight.png b/themes/Spreen/gtk-2.0/Range/slider-horiz-prelight.png new file mode 100755 index 0000000..eee8079 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/slider-horiz-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Range/slider-horiz.png b/themes/Spreen/gtk-2.0/Range/slider-horiz.png new file mode 100755 index 0000000..63fea91 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/slider-horiz.png differ diff --git a/themes/Spreen/gtk-2.0/Range/slider-vert-prelight.png b/themes/Spreen/gtk-2.0/Range/slider-vert-prelight.png new file mode 100755 index 0000000..a6135e5 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/slider-vert-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Range/slider-vert.png b/themes/Spreen/gtk-2.0/Range/slider-vert.png new file mode 100755 index 0000000..8ef0422 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/slider-vert.png differ diff --git a/themes/Spreen/gtk-2.0/Range/trough-horizontal.png b/themes/Spreen/gtk-2.0/Range/trough-horizontal.png new file mode 100755 index 0000000..a4a00a7 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/trough-horizontal.png differ diff --git a/themes/Spreen/gtk-2.0/Range/trough-vertical.png b/themes/Spreen/gtk-2.0/Range/trough-vertical.png new file mode 100755 index 0000000..e8fa859 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Range/trough-vertical.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz-insens.png b/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz-insens.png new file mode 100755 index 0000000..0dec719 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz-insens.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz-prelight.png b/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz-prelight.png new file mode 100755 index 0000000..ab08fab Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz.png b/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz.png new file mode 100755 index 0000000..1f0d2e2 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/slider-horiz.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/slider-vert-insens.png b/themes/Spreen/gtk-2.0/Scrollbars/slider-vert-insens.png new file mode 100755 index 0000000..9ac2f6b Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/slider-vert-insens.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/slider-vert-prelight.png b/themes/Spreen/gtk-2.0/Scrollbars/slider-vert-prelight.png new file mode 100755 index 0000000..37d9c5d Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/slider-vert-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/slider-vert.png b/themes/Spreen/gtk-2.0/Scrollbars/slider-vert.png new file mode 100755 index 0000000..3f45647 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/slider-vert.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/stepper-down.png b/themes/Spreen/gtk-2.0/Scrollbars/stepper-down.png new file mode 100755 index 0000000..2b561ca Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/stepper-down.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/stepper-left.png b/themes/Spreen/gtk-2.0/Scrollbars/stepper-left.png new file mode 100755 index 0000000..2b561ca Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/stepper-left.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/stepper-right.png b/themes/Spreen/gtk-2.0/Scrollbars/stepper-right.png new file mode 100755 index 0000000..2b561ca Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/stepper-right.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/stepper-up.png b/themes/Spreen/gtk-2.0/Scrollbars/stepper-up.png new file mode 100755 index 0000000..2b561ca Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/stepper-up.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png b/themes/Spreen/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png new file mode 100755 index 0000000..a4a00a7 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png differ diff --git a/themes/Spreen/gtk-2.0/Scrollbars/trough-scrollbar-vert.png b/themes/Spreen/gtk-2.0/Scrollbars/trough-scrollbar-vert.png new file mode 100755 index 0000000..e8fa859 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Scrollbars/trough-scrollbar-vert.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/entry-shadow-in.png b/themes/Spreen/gtk-2.0/Shadows/entry-shadow-in.png new file mode 100755 index 0000000..a0ba4a5 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/entry-shadow-in.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/shadow-etched-out.png b/themes/Spreen/gtk-2.0/Shadows/shadow-etched-out.png new file mode 100755 index 0000000..668310a Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/shadow-etched-out.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/shadow-in.png b/themes/Spreen/gtk-2.0/Shadows/shadow-in.png new file mode 100755 index 0000000..0820c35 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/shadow-in.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/shadow-none.png b/themes/Spreen/gtk-2.0/Shadows/shadow-none.png new file mode 100755 index 0000000..a02b0b2 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/shadow-none.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/shadow-out.png b/themes/Spreen/gtk-2.0/Shadows/shadow-out.png new file mode 100755 index 0000000..ba1facb Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/shadow-out.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/text-entry.png b/themes/Spreen/gtk-2.0/Shadows/text-entry.png new file mode 100755 index 0000000..04f0de4 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/text-entry.png differ diff --git a/themes/Spreen/gtk-2.0/Shadows/text.png b/themes/Spreen/gtk-2.0/Shadows/text.png new file mode 100755 index 0000000..6da90b4 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Shadows/text.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/arrow-down-disable.png b/themes/Spreen/gtk-2.0/Spin/arrow-down-disable.png new file mode 100755 index 0000000..468d728 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/arrow-down-disable.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/arrow-down-prelight.png b/themes/Spreen/gtk-2.0/Spin/arrow-down-prelight.png new file mode 100755 index 0000000..c960f23 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/arrow-down-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/arrow-down.png b/themes/Spreen/gtk-2.0/Spin/arrow-down.png new file mode 100755 index 0000000..6427066 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/arrow-down.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/arrow-up-disable.png b/themes/Spreen/gtk-2.0/Spin/arrow-up-disable.png new file mode 100755 index 0000000..084467f Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/arrow-up-disable.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/arrow-up-prelight.png b/themes/Spreen/gtk-2.0/Spin/arrow-up-prelight.png new file mode 100755 index 0000000..61a8290 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/arrow-up-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/arrow-up.png b/themes/Spreen/gtk-2.0/Spin/arrow-up.png new file mode 100755 index 0000000..ca70460 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/arrow-up.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/entry-shadow-in.png b/themes/Spreen/gtk-2.0/Spin/entry-shadow-in.png new file mode 100755 index 0000000..d87816d Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/entry-shadow-in.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/spin-down-bg.png b/themes/Spreen/gtk-2.0/Spin/spin-down-bg.png new file mode 100755 index 0000000..c23de8d Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/spin-down-bg.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/spin-up-bg.png b/themes/Spreen/gtk-2.0/Spin/spin-up-bg.png new file mode 100755 index 0000000..4ea7950 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/spin-up-bg.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/text-entry-focus.png b/themes/Spreen/gtk-2.0/Spin/text-entry-focus.png new file mode 100755 index 0000000..52134cb Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/text-entry-focus.png differ diff --git a/themes/Spreen/gtk-2.0/Spin/text-entry.png b/themes/Spreen/gtk-2.0/Spin/text-entry.png new file mode 100755 index 0000000..ce32f14 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Spin/text-entry.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/gap-bottom.png b/themes/Spreen/gtk-2.0/Tabs/gap-bottom.png new file mode 100755 index 0000000..1baa1fb Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/gap-bottom.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/gap-left.png b/themes/Spreen/gtk-2.0/Tabs/gap-left.png new file mode 100755 index 0000000..091cf3d Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/gap-left.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/gap-right.png b/themes/Spreen/gtk-2.0/Tabs/gap-right.png new file mode 100755 index 0000000..b2a158a Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/gap-right.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/gap-top.png b/themes/Spreen/gtk-2.0/Tabs/gap-top.png new file mode 100755 index 0000000..ab1d12f Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/gap-top.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/notebook.png b/themes/Spreen/gtk-2.0/Tabs/notebook.png new file mode 100755 index 0000000..3a51ba2 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/notebook.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/null.png b/themes/Spreen/gtk-2.0/Tabs/null.png new file mode 100755 index 0000000..079a05a Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/null.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-bottom-active.png b/themes/Spreen/gtk-2.0/Tabs/tab-bottom-active.png new file mode 100755 index 0000000..716bff4 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-bottom-active.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-bottom.png b/themes/Spreen/gtk-2.0/Tabs/tab-bottom.png new file mode 100644 index 0000000..5d915c0 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-bottom.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-left-active.png b/themes/Spreen/gtk-2.0/Tabs/tab-left-active.png new file mode 100755 index 0000000..a612cab Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-left-active.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-left.png b/themes/Spreen/gtk-2.0/Tabs/tab-left.png new file mode 100755 index 0000000..30ad669 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-left.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-right-active.png b/themes/Spreen/gtk-2.0/Tabs/tab-right-active.png new file mode 100755 index 0000000..6ef19c2 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-right-active.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-right.png b/themes/Spreen/gtk-2.0/Tabs/tab-right.png new file mode 100755 index 0000000..683205e Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-right.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-top-active.png b/themes/Spreen/gtk-2.0/Tabs/tab-top-active.png new file mode 100755 index 0000000..d2f00fe Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-top-active.png differ diff --git a/themes/Spreen/gtk-2.0/Tabs/tab-top.png b/themes/Spreen/gtk-2.0/Tabs/tab-top.png new file mode 100755 index 0000000..056adc5 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Tabs/tab-top.png differ diff --git a/themes/Spreen/gtk-2.0/Toolbar/toolbutton-normal.png b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-normal.png new file mode 100755 index 0000000..6b53f2b Binary files /dev/null and b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-normal.png differ diff --git a/themes/Spreen/gtk-2.0/Toolbar/toolbutton-prelight.png b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-prelight.png new file mode 100755 index 0000000..f0b9a02 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-prelight.png differ diff --git a/themes/Spreen/gtk-2.0/Toolbar/toolbutton-pressed.png b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-pressed.png new file mode 100755 index 0000000..edc7c30 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-pressed.png differ diff --git a/themes/Spreen/gtk-2.0/Toolbar/toolbutton-toggled.png b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-toggled.png new file mode 100755 index 0000000..f8304d0 Binary files /dev/null and b/themes/Spreen/gtk-2.0/Toolbar/toolbutton-toggled.png differ diff --git a/themes/Spreen/gtk-2.0/gtkrc b/themes/Spreen/gtk-2.0/gtkrc new file mode 100755 index 0000000..0413b3e --- /dev/null +++ b/themes/Spreen/gtk-2.0/gtkrc @@ -0,0 +1,1711 @@ + +# spreen 0.1 +# by msart2k (ms_art) msart2k.deviantart.com +# inspired by EVER GREEN by SwaySo (swayso.deviantart.com) + + +include "panel.rc" +include "menubar.rc" + + + +gtk-icon-sizes = "panel-menu=16,16:panel=16,16:gtk-button=16,16:gtk-large-toolbar=16,16" +gtk-button-images = 0 +gtk-menu-images = 0 +gtk-panel-images = 0 + +style "default" +{ + GtkWidget::interior_focus = 1 + GtkWidget::focus_padding = 0 + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::default_outside_border = { 0, 0, 0, 0 } + + GtkRange::trough_border =0 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + + GtkVScale::slider_length = 25 + GtkVScale::slider_width = 25 + GtkHScale::slider_length = 25 + GtkHScale::slider_width = 25 + + GtkPaned::handle_size = 6 + GtkScrollbar::min_slider_length = 35 + GtkCheckButton::indicator_size = 12 + GtkCheckButton::indicator_spacing = 3 + GtkMenuBar::internal_padding = 1 + GtkOptionMenu::indicator_size = { 15, 8 } + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + +GtkScrolledWindow::scrollbars-within-bevel = 1 +GtkScrolledWindow::scrollbar-spacing = 0 + + + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = "#555555" # light blue + fg[PRELIGHT] = "#555555" # text on buttons (hover) + fg[ACTIVE] = "#555555" # text on unfocused tabs + fg[SELECTED] = "#555555" # selected text on lists + fg[INSENSITIVE] = "#eae8cf" # greyed "unused" text + + bg[NORMAL] = "#fdfcea" # entire background + bg[PRELIGHT] = "#fdfcea" # button prelights + bg[ACTIVE] = "#fdfcea" # selected taskbar items + bg[SELECTED] = "#fdfcea" # menu selected background + bg[INSENSITIVE] = "#eae8cf" # greyed buttons + + base[NORMAL] = "#fdfcea" # window background + base[PRELIGHT] = "#fdfcea" # menubar outline colour + base[ACTIVE] = "#fdfcea" # selected item background (out of focus) + base[SELECTED] = "#F5F595" # selected hilight,tab/slider background, & menu stripe + base[INSENSITIVE] = "#eae8cf" # greyed sliders + + text[NORMAL] = "#555555" # text in general + text[PRELIGHT] = "#555555" # hover text (on buttons) + text[ACTIVE] = "#555555" # greyed text out of use (on highlight) + text[SELECTED] = "#555555" # selected text (on highlight) + text[INSENSITIVE] = "#eae8cf" # greyed text + + + engine "pixmap" + { + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Panel/handle-v.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Panel/handle-h.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + +####################### SHADOWS ############################x + + image + { + function = SHADOW + shadow = IN + recolorable = FALSE + file = "Shadows/shadow-in.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = OUT + recolorable = TRUE + file = "Shadows/shadow-out.png" + stretch = TRUE + } + + image + { + function = SHADOW + shadow = ETCHED_IN + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = ETCHED_OUT + recolorable = TRUE + file = "Shadows/shadow-none.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW_GAP + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + gap_start_file = "Frame-Gap/frame-gap-start.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Frame-Gap/frame-gap-end.png" + gap_end_border = { 0, 2, 2, 0 } + gap_side = TOP + } + + image + { + function = VLINE + recolorable = TRUE + file = "Lines/line-v.png" + border = { 1, 1, 0, 0 } + stretch = TRUE + } + image + { + function = HLINE + recolorable = TRUE + file = "Lines/line-h.png" + border = { 0, 0, 1, 1 } + stretch = TRUE + } + + # focus + + image + { + function = FOCUS + recolorable = TRUE + file = "Others/focus.png" + border = { 6, 0, 6, 0 } + stretch = TRUE + } + + # arrows + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + state = NORMAL + recolorable = TRUE + overlay_file = "Arrows/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + state = PRELIGHT + recolorable = TRUE + overlay_file = "Arrows/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + state = ACTIVE + recolorable = TRUE + overlay_file = "Arrows/arrow-down-pressed.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image + { + function = ARROW + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Arrows/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = BOX + recolorable = TRUE + file = "Others/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } + +} + +class "GtkWidget" style "default" + +style "inactivetext" +{ + +engine "mist" + { + } +} + +widget_class "*." style "inactivetext" +widget_class "*." style "inactivetext" +#widget_class "*." style "inactivetext" + +style "inactivetext2" +{ + +engine "mist" + { + } +} + +widget_class "*..*" style "inactivetext2" + + +#################### BUTTONS ####################### + +style "button" = "default" +{ + + engine "pixmap" + { + image + { + function = BOX + detail = "buttondefault" + recolorable = TRUE + file = "Buttons/button-default.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "Buttons/button-prelight.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = ACTIVE + file = "Buttons/button-pressed.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + file = "Buttons/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + file = "Buttons/button-normal.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + + + + +style "checkradiobutton" { + engine "pixmap" { + image + { + function = FLAT_BOX + recolorable = TRUE + file = "Check-Radio/highlight.png" + border = { 2, 5, 2, 5 } + stretch = TRUE + } + } +} + +class "GtkRadioButton" style "checkradiobutton" +class "GtkCheckButton" style "checkradiobutton" + +style "optionmenu" = "default" + +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Combo/combo-prelight.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Combo/combo-normal.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Combo/combo-pressed.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Combo/combo-inactive.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = TAB + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Combo/combo-arrow-insens.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = NORMAL + overlay_file = "Combo/combo-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = PRELIGHT + overlay_file = "Combo/combo-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + } +} + +widget_class "*Combo*" style "optionmenu" + +style "radiobutton" = "default" +{ + engine "pixmap" + { + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/option3.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/option3.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/option2.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + } +} + + +style "checkbutton" = "default" +{ + engine "pixmap" + { + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/check3.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/check3.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/check2.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + } +} + + +####################### ENTRY #####################xx + +style "entry" = "default" +{ + + xthickness = 3 + ythickness = 2 + GtkWidget::interior_focus = 0 + + engine "pixmap" + { + image + { + function = FOCUS + recolorable = TRUE + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = NORMAL + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = NORMAL + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} + +################x SPINBUTTONS ################ + +style "spinbutton" = "default" +{ + + #xthickness = 3 + #ythickness = 1 + GtkWidget::interior_focus = 0 + + engine "pixmap" + { + image + { + function = ARROW + } + +############################# UP ######################xx + image + { + function = BOX + state = NORMAL + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 2, 2, 4, 4 } + stretch = TRUE + overlay_file = "Spin/arrow-up.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-up-prelight.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-up-disable.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + +########################x DOWN ######################## + image + { + function = BOX + state = NORMAL + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down-prelight.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down-disable.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down-prelight.png" + overlay_stretch = FALSE + } +########################## SPIN ENTRY ########################### + image + { + function = FOCUS + recolorable = TRUE + file = "Spin/text-entry-focus.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Spin/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} + + +############################# SCROLLBAR #################### + +style "scrollbar" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + +###########x SLIDERS ##################x + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-horiz.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-horiz.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-horiz-prelight.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-horiz-insens.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + + } + +#############x verticals################xx + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 5, 5} + stretch = TRUE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 5, 5} + stretch = TRUE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-vert-prelight.png" + border ={ 2, 2, 5, 5} + stretch = TRUE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-vert-insens.png" + border = { 2, 2, 5, 5} + stretch = TRUE + orientation = VERTICAL + + } + +###########x END SLIDERS ##################x + +########### Steppers ###################### +#### UP ####### + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-up.png" + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-up.png" + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-up.png" + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-up.png" + stretch = TRUE + arrow_direction = UP + } + + ######### DOWN ############ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-down.png" + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-down.png" + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-down.png" + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-down.png" + stretch = TRUE + arrow_direction = DOWN + } + +############ RIGHT ################ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-right.png" + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-right.png" + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-right.png" + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-right.png" + stretch = TRUE + arrow_direction = RIGHT + } + +############### LEFT ################### + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-left.png" + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-left.png" + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-left.png" + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-left.png" + stretch = TRUE + arrow_direction = LEFT + } + } +} + +##################### PROGRESSBAR ################### + +style "progressbar" { + + fg[PRELIGHT] = "#555555" + + xthickness = 1 + ythickness = 1 + + engine "pixmap" + { + image + { + function = BOX + detail = "trough" + file = "ProgressBar/trough-progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + detail = "bar" + file = "ProgressBar/progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + detail = "bar" + file = "ProgressBar/progressbar-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + } +} + + +############################# RANGE ####################### + +style "range" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-horizontal.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-vertical.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + +############### the sliders ############### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + overlay_file = "Range/slider-horiz-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 5, 5, 2, 2 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + +######################### VERTICAL ########################### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 2, 2, 5, 5 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 2, 2, 5, 5 } + stretch = TRUE + overlay_file = "Range/slider-vert-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 2, 2, 5, 5 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + +################### TOOLBAR ########################### + +style "toolbar" +{ + engine "pixmap" + { + image + { + function = BOX + file = "Others/null.png" + border = { 4, 4, 4, 4} + stretch = TRUE + } + } +} +widget_class "*BonoboDockItem" style "toolbar" +class "*BonoboDockItem" style "toolbar" + +widget_class "*HandleBox" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*Toolbar" style "toolbar" +class "*Toolbar" style "toolbar" + +##################### TOOLBAR BUTTONS ############################### + +style "toolbuttons" = "default" +{ + xthickness = 1 + ythickness = 0 + GtkWidget::focus_padding = 2 + + engine "pixmap" { + +image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Toolbar/toolbutton-prelight.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Toolbar/toolbutton-pressed.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} +widget_class "*Tool*GtkToggleButton" style "toolbuttons" +widget_class "*Tool*GtkButton" style "toolbuttons" + +################### PANEL GRAPHICS ################################# +################### MENU ################################# + +style "menu" = "default" +{ +xthickness = 2 +ythickness = 4 + + engine "pixmap" + { +} +} + + ########################### Menuitem ############################# +style "menuitem" = "default" +{ + xthickness = 2 + ythickness = 4 + + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "Menu-Menubar/menuitem.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "Arrows/arrow-right-norm.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "Arrows/arrow-right-prelight.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + +style "tearoffmenuitem" = "menuitem" +{ + engine "pixmap" + { + image + { + function = ARROW + file = "Arrows/arrow-left.png" + stretch = TRUE + arrow_direction = LEFT + } + } +} + +style "notebook" = "default" +{ + + xthickness = 0 + ythickness = 0 + engine "pixmap" + { + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-bottom.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-top.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-left.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-right.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-top-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-bottom-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-left-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-right-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + +# How to draw boxes with a gap on one side (ie the page of a notebook) + + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-top.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = TOP + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-bottom.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = BOTTOM + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-left.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-right.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = RIGHT + } + +# How to draw the box of a notebook when it isnt attached to a tab + + image + { + function = BOX + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 6,6,6,6 } + stretch = TRUE + } + } +} + +style "tooltips" = "default" +{ + bg[NORMAL] = "#fdfcea" +} + +##################### RULER ################## + +style "ruler" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "vruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + detail = "hruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +################# HANDLES ###################x + + +style "handlebox" = "default" +{ + engine "pixmap" + { + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Others/null.png" +# overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = HANDLE + overlay_file = "Others/null.png" +# overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + } +} + +style "flat" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + } + } +} + +style "layout" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = BOX + detail = "button" + state = NORMAL + file = "Buttons/button-normal.png" + recolorable = TRUE + border = { 2, 3, 2, 3 } + stretch = TRUE + } + } +} + +##################### STATUSBAR ############################### + +style "statusbar" = "default" +{ + +# xthickness = 1 +# ythickness = 1 + + engine "pixmap" + { + image + { + function = RESIZE_GRIP + recolorable = TRUE + #state = NORMAL + detail = "statusbar" + overlay_file = "Handles/resize-grip.png" + + overlay_border = {0,0,0,0 } + overlay_stretch = FALSE + } + } +} + +# This prevents Sodipodi from crashing while opening the +# Object-Style dialog. + +style "unstyle" +{ + engine "" + { + } +} + +# recognizable pressed toggle buttons +# SPIcons seem to erase the background first. That's why I can't use +# the button style. + +style "SPbutton" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "Shadows/shadow-out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + } + } +} + + + + +# widget styles +class "GtkButton" style "button" +class "GtkRadioButton" style "radiobutton" +class "GtkRadioMenuItem" style "radiobutton" +class "GtkCheckButton" style "checkbutton" +class "GtkCheckMenuItem" style "checkbutton" +class "GtkOptionMenu" style "optionmenu" +class "GtkCombo*" style "optionmenu" +class "*Font*" style "optionmenu" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkRuler" style "ruler" +class "GtkScrollbar" style "scrollbar" +class "GtkStatusbar" style "statusbar" +class "GtkProgressBar" style "progressbar" +class "GtkRange" style "range" +class "GtkMenu" style "menu" +class "GtkMenuBar*" style "menubar" +widget_class "*MenuBar.*" style "menubar" +widget_class "*.." style "menuitem" +class "GtkMenuItem" style "menuitem" +class "GtkTearoffMenuItem" style "menuitem" +class "GtkNotebook" style "notebook" +class "GtkToolbar" style "flat" +class "GtkHandleBox" style "handlebox" +class "GtkEventBox" style "flat" +class "GtkPaned" style "handlebox" +class "GtkLayout" style "layout" +class "SPButton" style "SPbutton" +widget "gtk-tooltips" style "tooltips" + +# prevent Sodipodi from crashing +class "SPColorSlider" style "unstyle" + diff --git a/themes/Spreen/gtk-2.0/menubar.rc b/themes/Spreen/gtk-2.0/menubar.rc new file mode 100755 index 0000000..3fff564 --- /dev/null +++ b/themes/Spreen/gtk-2.0/menubar.rc @@ -0,0 +1,54 @@ +#################### MENUBAR ################### + + +style "menubar" + +{ + fg[NORMAL] = "#555555" + + xthickness = 2 + ythickness = 4 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Others/null.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Others/null.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Others/null.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menuitem.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/themes/Spreen/gtk-2.0/panel.rc b/themes/Spreen/gtk-2.0/panel.rc new file mode 100755 index 0000000..8ee0281 --- /dev/null +++ b/themes/Spreen/gtk-2.0/panel.rc @@ -0,0 +1,129 @@ +#################### PANEL BACKGROUND #########################xx + +style "panelbg" +{ + + xthickness = 0 + ythickness = 0 +bg_pixmap[NORMAL] = "Panel/panel-bg.png" +#bg_pixmap[SELECTED] = "Panel/panel-bg.png" +#bg_pixmap[INSENSITIVE] = "Panel/panel-bg.png" +#bg_pixmap[PRELIGHT] = "Panel/panel-bg.png" +#bg_pixmap[ACTIVE] = "Panel/panel-bg.png" +} + +class "*Panel*" style "panelbg" +widget_class "*notif*" style "panelbg" +widget_class "*Notif*" style "panelbg" +widget_class "*Tray*" style "panelbg" +widget_class "*tray*" style "panelbg" + +##################### PANEL BUTTONS ############################### + +style "panelbuttons" +{ + + fg[NORMAL] = "#555555" # + fg[PRELIGHT] = "#555555" # text on buttons (hover) + fg[ACTIVE] = "#555555" # text on unfocused tabs + bg[NORMAL] = "#555555" # + bg[PRELIGHT] = "#555555" # text on buttons (hover) + bg[ACTIVE] = "#555555" # text on unfocused tabs + + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = FALSE + state = NORMAL + file = "Panel/panelbutton2.png" + border = { 8, 8, 9, 10 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = FALSE + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 8, 8, 9, 10 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = FALSE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 8, 8, 9, 10 } + stretch = TRUE + + } + + image + { + function = BOX + recolorable = FALSE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 8, 8, 9, 10 } + stretch = TRUE + + } + + image + { + function = BOX + recolorable = FALSE + state = ACTIVE + file = "Panel/panelbutton4.png" + border = { 8, 8, 9, 10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = FALSE + state = INSENSITIVE + file = "Panel/panelbutton1.png" + border = { 8, 8, 9, 10 } + stretch = TRUE + } +/* image + { + function = HANDLE + recolorable = FALSE + overlay_file = "Panel/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = HANDLE + overlay_file = "Panel/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } +*/ + } + +} + +widget "*PanelWidget*" style "panelbuttons" +widget "*PanelApplet*" style "panelbuttons" +widget_class "*Panel*GtkToggleButton*" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" +widget_class "*PanelButton*." style "panelbuttons" +widget_class "*Panel*" style "panelbg" + diff --git a/themes/Unity/gtk-2.0/gtkrc b/themes/Unity/gtk-2.0/gtkrc new file mode 100644 index 0000000..348d55b --- /dev/null +++ b/themes/Unity/gtk-2.0/gtkrc @@ -0,0 +1,453 @@ +# Set GtkSettings color scheme property. +# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties. +gtk_color_scheme = "fg_color:#0A0A0A\nbg_color:#D6D6D6\nbase_color:#FFFFFF\ntext_color:#000\nselected_bg_color:#95B0DB\nselected_fg_color:#fff\ntooltip_bg_color:#F5F5B5\ntooltip_fg_color:#000" + +style "clearlooks-default" +{ + ######## + # Style Properties + ######## + GtkButton ::child-displacement-x = 1 + GtkButton ::child-displacement-y = 1 + GtkButton ::default-border = { 0, 0, 0, 0 } + GtkCheckButton ::indicator-size = 14 + + GtkPaned ::handle-size = 6 + + GtkRange ::trough-border = 0 + GtkRange ::slider-width = 15 + GtkRange ::stepper-size = 15 + + GtkScale ::slider-length = 23 + GtkScale ::trough-side-details = 1 + GtkScrollbar ::min-slider-length = 30 + + GtkMenuBar ::internal-padding = 0 + GtkExpander ::expander-size = 14 + GtkToolbar ::internal-padding = 1 + GtkTreeView ::expander-size = 12 + GtkTreeView ::vertical-separator = 0 + + GtkMenu ::horizontal-padding = 0 + GtkMenu ::vertical-padding = 0 + + # Glow the tasklist by changing the color, instead of overlaying it with a rectangle + WnckTasklist ::fade-overlay-rect = 0 + + xthickness = 1 + ythickness = 1 + + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[ACTIVE] = shade (0.9, @selected_bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = darker (@bg_color) + + engine "clearlooks" + { + colorize_scrollbar = TRUE + reliefstyle = 1 + menubarstyle = 2 # 0 = flat, 1 = sunken, 2 = flat gradient + toolbarstyle = 1 # 0 = flat, 1 = enable effects + animation = FALSE + style = GUMMY + radius = 4.0 + + # Set a hint to disable backward compatibility fallbacks. + hint = "use-hints" + } +} + +style "clearlooks-wide" +{ + xthickness = 2 + ythickness = 2 +} + +style "clearlooks-wider" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-button" +{ + xthickness = 3 + ythickness = 3 + + bg[NORMAL] = shade (1.07, @bg_color) + bg[PRELIGHT] = shade (1.09, @bg_color) + bg[ACTIVE] = shade (0.85, @bg_color) + + engine "clearlooks" + { + hint = "scrollbar" + radius = 5.0 + } +} + +style "clearlooks-notebook-bg" +{ + bg[NORMAL] = shade (1.05, @bg_color) + bg[ACTIVE] = shade (0.98, @bg_color) +} + +style "clearlooks-notebook" = "clearlooks-notebook-bg" +{ + xthickness = 3 + ythickness = 3 +} + +style "clearlooks-tasklist" +{ + xthickness = 5 + ythickness = 3 +} + +style "clearlooks-menu" +{ + xthickness = 0 + ythickness = 0 + + bg[NORMAL] = shade (1.09, @bg_color) + + # Radius of the menu items (inside menus) + engine "clearlooks" + { + radius = 0.0 + } +} + +style "clearlooks-menu-item" +{ + xthickness = 2 + ythickness = 3 + + fg[PRELIGHT] = @selected_fg_color +} + +style "clearlooks-separator-menu-item" +{ + GtkSeparatorMenuItem::horizontal-padding = 0 + # We are setting the desired height by using wide-separators + # There is no other way to get the odd height ... + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 5 + xthickness = 1 + ythickness = 0 +} + +style "clearlooks-treeview" +{ + engine "clearlooks" { + hint = "treeview" + } +} + +# Based on the default style so that the colors from the button +# style are overriden again. +style "clearlooks-treeview-header" = "clearlooks-default" +{ + xthickness = 2 + ythickness = 1 + + bg[NORMAL] = shade (1.07, @bg_color) + + engine "clearlooks" { + hint = "treeview-header" + } +} + +style "clearlooks-frame-title" +{ + fg[NORMAL] = lighter (@fg_color) +} + +style "clearlooks-tooltips" +{ + xthickness = 4 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color +} + +style "clearlooks-progressbar" +{ + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" + { + # Explicitly set the radius, for progress + # bars inside menuitems + radius = 3.0 + + hint = "progressbar" + } +} + +style "clearlooks-statusbar" +{ + engine "clearlooks" + { + hint = "statusbar" + } +} + +style "clearlooks-comboboxentry" +{ + # NOTE: + # If you set the appears-as-list option on comboboxes in the theme + # you should set this hint on the combobox instead. + engine "clearlooks" + { + hint = "comboboxentry" + } +} + +style "clearlooks-spinbutton" +{ + engine "clearlooks" + { + hint = "spinbutton" + } +} + +style "clearlooks-scale-bg" +{ + bg[NORMAL] = shade (1.07, @bg_color) + bg[PRELIGHT] = shade (1.09, @bg_color) +} + +style "clearlooks-scale" = "clearlooks-scale-bg" +{ + engine "clearlooks" + { + hint = "scale" + } +} + +style "clearlooks-hscale" = "clearlooks-scale-bg" +{ + engine "clearlooks" + { + hint = "hscale" + } +} + +style "clearlooks-vscale" = "clearlooks-scale-bg" +{ + engine "clearlooks" + { + hint = "vscale" + } +} + +style "clearlooks-scrollbar" +{ + bg[NORMAL] = shade (1.07, @bg_color) + + engine "clearlooks" + { + hint = "scrollbar" + } +} + +style "clearlooks-hscrollbar" +{ + engine "clearlooks" + { + hint = "hscrollbar" + } +} + +style "clearlooks-vscrollbar" +{ + engine "clearlooks" + { + hint = "vscrollbar" + } +} + +style "clearlooks-toolbar" +{ + bg[NORMAL] = shade (1.07, @bg_color) + + engine "clearlooks" { + contrast = 1.16 + } +} + +style "clearlooks-menubar" +{ + engine "clearlooks" + { + contrast = 1.1 + hint = "menubar" + } +} + +style "clearlooks-nautilus-location" +{ + bg[NORMAL] = mix(0.60, shade (1.05,@bg_color), @selected_bg_color) +} + + +######################################### +# Matches +######################################### + +# Clearlooks default style is applied to every widget +class "GtkWidget" style "clearlooks-default" + +# Increase the x/ythickness in some widgets +class "GtkToolbar" style "clearlooks-toolbar" +class "GtkRange" style "clearlooks-wide" +class "GtkFrame" style "clearlooks-wide" +class "GtkSeparator" style "clearlooks-wide" +class "GtkEntry" style "clearlooks-wider" + +class "GtkSpinButton" style "clearlooks-spinbutton" +class "GtkScale" style "clearlooks-scale" +class "GtkVScale" style "clearlooks-vscale" +class "GtkHScale" style "clearlooks-hscale" +class "GtkScrollbar" style "clearlooks-scrollbar" +class "GtkVScrollbar" style "clearlooks-vscrollbar" +class "GtkHScrollbar" style "clearlooks-hscrollbar" + +# General matching following, the order is choosen so that the right styles override each other +# eg. progressbar needs to be more important then the menu match. + +# This is not perfect, it could be done better +# (That is modify *every* widget in the notebook, and change those back that +# we really don't want changed) +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" + +widget_class "*" style "clearlooks-button" +widget_class "*" style "clearlooks-notebook" +widget_class "**" style "clearlooks-statusbar" + +widget_class "**" style "clearlooks-comboboxentry" +widget_class "**" style "clearlooks-comboboxentry" + +widget_class "**" style "clearlooks-menubar" +widget_class "**" style "clearlooks-menu" +widget_class "**" style "clearlooks-menu-item" +widget_class "**" style "clearlooks-separator-menu-item" + +widget_class "*.." style "clearlooks-frame-title" +widget_class "*.*" style "clearlooks-treeview" + +widget_class "*" style "clearlooks-progressbar" + +# Treeview header +widget_class "*.." style "clearlooks-treeview-header" +widget_class "*.." style "clearlooks-treeview-header" +widget_class "*.." style "clearlooks-treeview-header" +widget_class "*.." style "clearlooks-treeview-header" + +# Workarounds for Evolution +widget_class "*.ETable.ECanvas" style "clearlooks-treeview-header" +widget_class "*.ETree.ECanvas" style "clearlooks-treeview-header" + +# The window of the tooltip is called "gtk-tooltip" +################################ +# FIXME: +# This will not work if one embeds eg. a button into the tooltip. +# As far as I can tell right now we will need to rework the theme +# quite a bit to get this working correctly. +# (It will involve setting different priorities, etc.) +################################ +widget "gtk-tooltip*" style "clearlooks-tooltips" + +################################################### +# Special cases and work arounds +################################################### + +# Special case the nautilus-extra-view-widget +# ToDo: A more generic approach for all applications that have a widget like this. +widget "*.nautilus-extra-view-widget" style : highest "clearlooks-nautilus-location" + +# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 +# Note that the work around assumes that the combobox is _not_ in +# appears-as-list mode. +# Similar hack also in the menuitem style. +# This style does not affect GtkComboBoxEntry, it does have an effect +# on comboboxes in appears-as-list mode though. +style "clearlooks-text-is-fg-color-workaround" +{ + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} +widget_class "*.." style "clearlooks-text-is-fg-color-workaround" + +style "clearlooks-menuitem-text-is-fg-color-workaround" +{ + text[NORMAL] = @fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} +widget "*.gtk-combobox-popup-menu.*" style "clearlooks-menuitem-text-is-fg-color-workaround" + +# Work around the usage of GtkLabel inside GtkListItems to display text. +# This breaks because the label is shown on a background that is based on the +# base color set. +style "clearlooks-fg-is-text-color-workaround" +{ + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = darker (@bg_color) +} +widget_class "**" style "clearlooks-fg-is-text-color-workaround" +# The same problem also exists for GtkCList and GtkCTree +# Only match GtkCList and not the parent widgets, because that would also change the headers. +widget_class "*" style "clearlooks-fg-is-text-color-workaround" + +# Work around the evolution "New" button bug by making the toolbar flat. +# http://bugzilla.gnome.org/show_bug.cgi?id=446953 +# Maybe remove this workaround in unstable releases. +style "clearlooks-evo-new-button-workaround" +{ + GtkMenuBar ::shadow-type = GTK_SHADOW_NONE + GtkToolbar ::shadow-type = GTK_SHADOW_NONE + + bg[NORMAL] = @bg_color + + engine "clearlooks" + { + toolbarstyle = 0 + } +} +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "clearlooks-evo-new-button-workaround" diff --git a/themes/Water-Vapor/gtk-2.0/Changelog b/themes/Water-Vapor/gtk-2.0/Changelog new file mode 100755 index 0000000..9bc0d6c --- /dev/null +++ b/themes/Water-Vapor/gtk-2.0/Changelog @@ -0,0 +1,65 @@ +v. 0.70: +----------------- +- New Tab Graphics +- Tabs all same size now +- Added a Menu Background Gradient +- Gave tooltips a little more gloss + + +v. 0.60: +----------------- +- New Scrollbars (not final, just trying some ideas) +- New Tooltips (mimics menu somewhat) +- Small Performance Fixes +- Water Vapor Background now available +- New List Header + +v. 0.51: +----------------- +- Fixed Gray Buttons that Weren't Showing +- Sharpened Bottom of Highlighted Buttons +- New Progressbar +- New Toolbar Background + +v. 0.50: +----------------- +- Option Menu Improvements +- Scrollbar Improvements +- Removed Iconrc / Stock Buttons +- New Radio Buttons +- Gray-Button Borders Fixed +- Separated Metacity Theme + +v. 0.42: +----------------- +- Some Small Fixes with Tabs & Buttons +- Small Progress Bar fix + +v. 0.40: +----------------- +- New Progress Bar +- Less Saturated Colors +- Flatter Buttons +- New Stock Icons +- New Text Field +- New Notebook Tabs +- New Spin Boxes +- Many Additional Changes + +v. 0.30: +----------------- +- New Scrollbars +- New OptionMenu +- Reworked Menu Background + +v. 0.20: +----------------- +- Updated fg color issues (thanks toby) +- Changed default buttons to gray +- Steepened Menu background gradient +- Added Prelight for Option Menus +- Some other crap, etc etc. + +v. 0.10: +----------------- +Initial Release. diff --git a/themes/Water-Vapor/gtk-2.0/NormalTabBottom.png b/themes/Water-Vapor/gtk-2.0/NormalTabBottom.png new file mode 100755 index 0000000..7d16387 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/NormalTabBottom.png differ diff --git a/themes/Water-Vapor/gtk-2.0/NormalTabTop.png b/themes/Water-Vapor/gtk-2.0/NormalTabTop.png new file mode 100755 index 0000000..4f430b1 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/NormalTabTop.png differ diff --git a/themes/Water-Vapor/gtk-2.0/OptionMenu.png b/themes/Water-Vapor/gtk-2.0/OptionMenu.png new file mode 100755 index 0000000..e78f5d8 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/OptionMenu.png differ diff --git a/themes/Water-Vapor/gtk-2.0/OptionMenuA.png b/themes/Water-Vapor/gtk-2.0/OptionMenuA.png new file mode 100755 index 0000000..8b393e6 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/OptionMenuA.png differ diff --git a/themes/Water-Vapor/gtk-2.0/OptionMenuP.png b/themes/Water-Vapor/gtk-2.0/OptionMenuP.png new file mode 100755 index 0000000..f34fcbe Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/OptionMenuP.png differ diff --git a/themes/Water-Vapor/gtk-2.0/SelectedTabBottom.png b/themes/Water-Vapor/gtk-2.0/SelectedTabBottom.png new file mode 100755 index 0000000..d5e564f Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/SelectedTabBottom.png differ diff --git a/themes/Water-Vapor/gtk-2.0/SelectedTabTop.png b/themes/Water-Vapor/gtk-2.0/SelectedTabTop.png new file mode 100755 index 0000000..1e08076 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/SelectedTabTop.png differ diff --git a/themes/Water-Vapor/gtk-2.0/border.png b/themes/Water-Vapor/gtk-2.0/border.png new file mode 100755 index 0000000..62142e7 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/border.png differ diff --git a/themes/Water-Vapor/gtk-2.0/brushed.png b/themes/Water-Vapor/gtk-2.0/brushed.png new file mode 100755 index 0000000..865eb4d Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/brushed.png differ diff --git a/themes/Water-Vapor/gtk-2.0/checked_box.png b/themes/Water-Vapor/gtk-2.0/checked_box.png new file mode 100755 index 0000000..d9956da Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/checked_box.png differ diff --git a/themes/Water-Vapor/gtk-2.0/gnome-main-menu.png b/themes/Water-Vapor/gtk-2.0/gnome-main-menu.png new file mode 100755 index 0000000..035c9b7 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/gnome-main-menu.png differ diff --git a/themes/Water-Vapor/gtk-2.0/gray_button.png b/themes/Water-Vapor/gtk-2.0/gray_button.png new file mode 100755 index 0000000..fa8486f Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/gray_button.png differ diff --git a/themes/Water-Vapor/gtk-2.0/gtkrc b/themes/Water-Vapor/gtk-2.0/gtkrc new file mode 100755 index 0000000..8d5b8a4 --- /dev/null +++ b/themes/Water-Vapor/gtk-2.0/gtkrc @@ -0,0 +1,1362 @@ +# +# Water Vapor GTK 2.0 Theme by bladrasame@gmail.com +# +# This is a shameless (but extensive) hack of the excellent +# Glossy P them by m5brane (m5brane_AT_tolman.physics.lsa.umich.edu) + +#gtk-icon-sizes = "gtk-large-toolbar=24,24:panel-menu=24,24" +#include "iconrc" + +style "wv-default" +{ + #Yes or No? + GtkWidget::focus_padding = 1 + + GtkFrame::shadow_type = GTK_SHADOW_OUT + GtkScrolledWindow::shadow_type = GTK_SHADOW_OUT + GtkTreeView::odd_row_color = "#e4ebf5" + + fg[NORMAL] = "#040c29" + fg[ACTIVE] = "#000000" + fg[PRELIGHT] = "#000000" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#747474" + + bg[NORMAL] = "#ececed" + bg[ACTIVE] = "#bbbbbb" + bg[PRELIGHT] = "#ececed" + bg[SELECTED] = "#bbc8d3" + bg[INSENSITIVE] = "#ececed" + + base[NORMAL] = "#ffffff" + base[ACTIVE] = "#d4d4d4" + base[PRELIGHT] = "#cccccc" + base[INSENSITIVE]= "#dddddd" + base[SELECTED] = "#777777" + + text[INSENSITIVE]= "#747474" + text[SELECTED] = "#ededed" + text[ACTIVE] = "#040404" + + #A semi-transparent hi-light for files selected in Nautilus + NautilusIconContainer::highlight_alpha=160 + + #This sets the color used for the text under the icons in nautilus when they are not highlighted. + NautilusIconContainer::dark_info_color="#000000" + #This is the color of the text under an icon in Nautilus when it is highlighted. + NautilusIconContainer::light_info_color="#ececed" + + engine "pixmap" + { + #This defines how the focus is drawn. Using a transparent image means there is + #no line around a widget when it is in focus. + image + { + function = FOCUS + recolorable = TRUE + overlay_file = "transparent.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = TRUE + } + + #The following four entries describe how the different types of shadows + #are drawn + image + { + function = SHADOW + recolorable = TRUE + shadow = OUT + file = "shadow_etched_out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + # Tooltips + image { + function = FLAT_BOX + recolorable = TRUE + detail = "tooltip" + file = "tooltip.png" + border = { 7, 7, 5, 5 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "shadow_in.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = ETCHED_IN + file = "shadow_etched_in.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = ETCHED_OUT + file = "shadow_etched_out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + #How to draw horizontal lines + image + { + function = HLINE + recolorable = TRUE + file = "hline.png" + border = { 1, 1, 1, 0 } + stretch = TRUE + } + + #How to draw vertical lines + image + { + function = VLINE + recolorable = TRUE + file = "vline.png" + border = { 1, 0, 1, 1 } + stretch = TRUE + } + + #The following two entries describe how handles (grippers) are drawn. + image + { + function = HANDLE + orientation = HORIZONTAL + recolorable = TRUE + #The background image on boxes with horizontal handles. + file = "toolbar.png" + border = { 1,1,1,1 } + stretch = TRUE + #The overlay on horizontal handles + overlay_file = "vertical_handle.png" + overlay_border = { 0,0,0,0 } + overlay_stretch = FALSE + } + + + image + { + function = HANDLE + recolorable = TRUE + #The background on vertical handles + file = "toolbar.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + #The overlay on vertical handles. + overlay_file = "horizontal_handle.png" + overlay_border = {0,0,0,0} + overlay_stretch = FALSE + orientation = VERTICAL + shadow = OUT + } + + #This tells gtk how to draw the base of a handlebox; i.e. the bin that the + #buttons sit in. + image + { + function = BOX + recolorable = TRUE + detail = "handlebox_bin" + file = "transparent.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + } + +} + +##################################################### +#Buttons +##################################################### + +style "button" +{ + + GtkButton::default_border = { 0, 0, 0, 0 } + #GtkButton::default_outside_border = { 2, 2, 2, 2 } + + #This adds a little extra horizontal thickness to the buttons. I've added this so + #the label on a button has a little room on either side. + xthickness=2 + ythickness=1 + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = OUT + detail = "buttondefault" + file = "gray_button.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + #shadow = IN + file = "gray_button.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = OUT + file = "menu_hi-light_3.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + shadow = IN + file = "tooltippy.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + shadow = OUT + file = "menu_hi-light_2.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + file = "tooltippyi.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + file = "tooltippyi.png" + border = { 9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = SELECTED + shadow = OUT + file = "insens.png" + border = {9,9,10,10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "tooltippy.png" + border = { 9,9,10,10 } + stretch = TRUE + } + + } +} + +class "GtkButton" style "button" + +################################################ +# Paned Widgets: Windows divided into two or more sections, which can be +# resized by dragging handles. +################################################ + +style "wv-paned" = "wv-default" +{ + #This defines the thickness of the bar that divides the window. + GtkPaned::handle_size = 8 + + engine "pixmap" + { + # The handle on horizontal dividers + image + { + function = HANDLE + recolorable = TRUE + file = "transparent.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + overlay_file = "horizontal_paned_handle.png" + overlay_border = {0,0,0,0} + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + # The handle on vertical dividers + image + { + function = HANDLE + recolorable = TRUE + file = "transparent.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + overlay_file = "vertical_paned_handle.png" + overlay_border = {0,0,0,0} + overlay_stretch = FALSE + orientation = VERTICAL + } + + + } +} + +class "Gtk*Paned" style "wv-paned" + +################################################ +# Toolbars drawn by gtk +################################################ +style "wv-toolbar"="wv-default" +{ + + engine "pixmap" + { + + # This tells gtk how to draw the toolbar + image + { + function = BOX + recolorable = TRUE + shadow = OUT + file = "toolbar.png" + border = { 2,2,1,1 } + stretch = TRUE + } + + } +} + +widget_class "GtkToolBar" style "wv-toolbar" +class "*Tool*" style "wv-toolbar" + + +############################################### +# Menus +############################################### + +style "wv-menu" +{ + ythickness=3 + xthickness=5 + + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + file = "menu_background.png" + border = {4,4,2,3} + stretch = TRUE + } + + image + { + function = HLINE + recolorable = TRUE + file = "hline.png" + border = { 1, 1, 1, 0 } + stretch = TRUE + } + + } +} + +#widget_class "*Menu*" style "wv-menu" +class "GtkMenu" style "wv-menu" + + +############################################### +# Menu Items +############################################### + +style "MenuItem" +{ + + #This sets the thickness of a buffer between the side of the menu + #and where the mouse-over image (set below) is drawn. The side of + #the menu is defined by the border set in the menu style above. + xthickness = 4 + ythickness = 3 + + + engine "pixmap" + { + + #This image is used to draw the highlight on a menu entry when it is + #moused over. + image + { + function = BOX + recolorable = TRUE + file = "menu_hi-light_2.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = HLINE + recolorable = TRUE + file = "hline.png" + border = { 1, 1, 1, 0 } + stretch = TRUE + } + + } +} + +widget_class "*.GtkMenuItem.*" style "MenuItem" +class "GtkMenuItem" style "MenuItem" + +############################################### +# Styles and Controls for Option Menus +############################################### + +style "OptionMenu" +{ + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "OptionMenu.png" + border = { 12, 22, 10, 10 } + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "OptionMenuP.png" + border = { 12, 22, 10, 10 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = SELECTED + file = "OptionMenuA.png" + border = { 12, 22, 10, 10 } + stretch = TRUE + } + image + { + function = TAB + recolorable = TRUE + overlay_file = "menubar_option_arrow.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = INSENSITIVE + overlay_file = "menubar_option_arrow_insensitive.png" + overlay_stretch = FALSE + } + } +} + +class "GtkOptionMenu" style "OptionMenu" + +##################################################### +#Notebook: How to draw the tabs, spacings, and backgrounds for notebooks. +##################################################### + +style "notebook" +{ + #These thickness settings make sure that we see the whole thin blue line at the top + #of the notebook page. + xthickness = 1 + ythickness = 1 + + engine "pixmap" + { + + + # NOTEBOOK TABS + + ##################### + #Tabs at the top of the notebook. + ##################### + #This is the image used for the selected tab. + image + { + function = EXTENSION + state = NORMAL + gap_side = BOTTOM + file = "SelectedTabTop.png" + border = {9,9,9,1} + stretch = TRUE + } + #This is the image used for tabs in the background. + image + { + function = EXTENSION + state = ACTIVE + gap_side = BOTTOM + file = "NormalTabTop.png" + border = {9,9,9,1} + stretch = TRUE + } + + ######################## + # Tabs at the bottom of the notebook. + ######################## + # The image used for background tabs. + image + { + function = EXTENSION + state = ACTIVE + gap_side = TOP + file = "NormalTabBottom.png" + border = {8,8,1,9} + stretch = TRUE + } + + # The image for selected tabs. + image + { + function = EXTENSION + state = NORMAL + gap_side = TOP + file = "SelectedTabBottom.png" + border = {8,8,1,9} + stretch = TRUE + } + + #Use this image when the tabs are at the top of the notebook. + image + { + function = BOX_GAP + gap_side = TOP + file = "notebook_top_flat.png" + border = {1,1,4,1} + + stretch = TRUE + } + # use this image when the tabs are on the bottom of the notebook. + image + { + function = BOX_GAP + gap_side = BOTTOM + file = "notebook_bottom_flat.png" + border = {1,1,1,4} + stretch = TRUE + } + # Use this when the tabs are on the left + image + { + function = BOX_GAP + gap_side = LEFT + file = "notebook_left_flat.png" + border = {4,1,1,1} + stretch = TRUE + } + # Use this when the tabs are on the right + image + { + function = BOX_GAP + gap_side = RIGHT + file = "notebook_right_flat.png" + border = {1,4,1,1} + stretch = TRUE + } + + #For drawing notebook pages when they are not attached to a tab. When does + #this happen? + image + { + function = BOX + file = "notebook_top_flat.png" + border = {1,1,4,1} + stretch = TRUE + gap_side = TOP + } + + + } +} +class "GtkNotebook" style "notebook" + +##################################################### +# Text Entries +##################################################### + + +style "entry" +{ + base[NORMAL] = "#ececed" + + engine "pixmap" + { + + image + { + function = FLAT_BOX + recolorable = TRUE + state = INSENSITIVE + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = SELECTED + detail = "entry_bg" + file = "out_sel.png" + border = { 1,1,8,8 } + stretch = TRUE + } + + #This is a transparent shadow. + image + { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "transparent.png" + border = { 2,2,2,2 } + stretch = TRUE + } + + } +} + +class "GtkEntry" style "entry" + +############################################### +# Gtk Lists, like the Rhythmbox playlist or Nautilus Listview +############################################### +style "list-header" +{ + #Comment out the ythickness setting below for thicker column headers. + ythickness = 2 + GtkTreeView::odd_row_color = "#dddddd" + GtkTreeView::even_row_color = "#ffffff" + + engine "pixmap" + { + + #This image is used to draw the headers of columns in list views when they are + #not selected. + image + { + function = BOX + recolorable = TRUE + shadow = OUT + file = "list_header.png" + border = { 3,3,3,3 } + stretch = TRUE + } + + #This image is used to draw the column headers in list views when they are + #clicked. + image + { + function = BOX + recolorable = TRUE + shadow = IN + file = "list_header_clicked.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} + +widget_class "*List" style "list-header" +widget_class "*Tree*" style "list-header" +widget_class "GtkCList" style "list-header" + +############################################### +# GtkScrollbar: The scrollbars on windows +############################################### + +style "Scrollbar" { + + + GtkRange::trough_border = 1 + GtkRange::slider_width = 16 + + + GtkRange::stepper_size = 16 + + GtkScrollbar::min_slider_length = 30 + + engine "pixmap" + { + + #The trough for vertical scrollbars. This is the region in which the slider moves. + image + { + function = BOX + recolorable = FALSE + detail = "trough" + file = "vertical_trough.png" + border = { 3, 3, 18, 18 } + stretch = TRUE + orientation = VERTICAL + } + + #The trough for horizontal scrollbars. + image + { + function = BOX + recolorable = FALSE + detail = "trough" + file = "horizontal_trough.png" + border = { 17, 17, 1, 1 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in the NORMAL state. + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in their prelight state. + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_active_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in their ACTIVE (pressed?) state. + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for horizontal scrollbars + #in their INSENSITIVE state. + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_horizontal.png" + border = { 15, 15, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + #The image used to draw the slider for vertical scrollbars + #in their NORMAL state. + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + + #The image used to draw the slider for vertical scrollbars + #in their prelight state. + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_active_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + + + #The image used to draw the slider for vertical scrollbars + #in their INSENSITIVE state. + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + +} +} + +class "GtkScrollbar" style "Scrollbar" + +########################################### +# Scales: The sliders used for volume, track position, etc. Drawn without +# arrow boxes on the end. +########################################### + +#Problem: scales in some apps, like the Gimp, dont look right when they +#are small. The slider is too thin and has two overlapping pieces and looks +#like crap. + +style "Scales" +{ + GtkRange::trough_border = 0 + GtkRange::slider_width = 15 + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "vertical_trough_3.png" + border = { 1, 1, 3, 3 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "horizontal_trough_3.png" + border = { 3, 3, 1, 1 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_horizontal.png" + border = { 14, 14, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_active_horizontal.png" + border = { 14, 14, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_active_horizontal.png" + border = { 14, 14, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_horizontal.png" + border = { 14, 14, 6, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "scrollbar_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "scrollbar_active_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + file = "scrollbar_active_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "scrollbar_vertical.png" + border = { 6, 6, 14, 14 } + stretch = TRUE + orientation = VERTICAL + } + + } +} + +class "GtkScale" style "Scales" + +################################################## +#Spin Controls +#--------------- +#These are buttons with two arrows that let you set some value by clicking the +#the arrows. The widget might also have a text entry box for setting the value +#directly by typing it in. +################################################## + +style "spin" +{ + engine "pixmap" + { + + #First we set the images for drawing different parts of a text entry that + #might be attached to the widget. This could be done by inheriting from the + #style used for GtkEntry, but we just set everything here explicitly. Still having + #the same problem as with GtkEntry with the white outline if we do not draw + #a shadow with a thick enough border. + + image + { + function = FLAT_BOX + recolorable = TRUE + state = NORMAL + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = SELECTED + detail = "entry_bg" + file = "out_sel.png" + border = { 1,1,8,8 } + stretch = TRUE + } + + image + { + function = FLAT_BOX + recolorable = TRUE + state = INSENSITIVE + detail = "entry_bg" + file = "text_entry.png" + border = {6,6,6,6 } + stretch = TRUE + } + + image + { + function = SHADOW + recolorable = TRUE + shadow = IN + file = "transparent.png" + border = { 1,1,1,1 } + stretch = TRUE + } + + + #The following two sections define the images used to draw the up and + #down spin buttons in the INSENSITIVE state. + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + detail = "spinbutton_up" + file = "spin_button_up.png" + border = { 7,7,6,0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + detail = "spinbutton_down" + file = "spin_button_down.png" + border = { 7,7,0,6 } + stretch = TRUE + } + + #The following two sections define the images used to draw the up and + #down spin buttons in the PRELIGHT state. + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + detail = "spinbutton_up" + file = "spin_button_up_prelight.png" + border = { 7,7,6,0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + detail = "spinbutton_down" + file = "spin_button_down_prelight.png" + border = { 7,7,0,6 } + stretch = TRUE + } + + #The following two sections define the images used to draw the up and + #down spin buttons in any states that we have not already defined. + image + { + function = BOX + recolorable = TRUE + detail = "spinbutton_up" + file = "spin_button_up_active.png" + border = { 7,7,6,0 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + detail = "spinbutton_down" + file = "spin_button_down_active.png" + border = { 7,7,0,6 } + stretch = TRUE + } + + #The arrows drawn on the spinbuttons are set by the next two + #entries. Different types of arrows can be used for different + #states by setting images for each state. + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "spin_button_up_arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "spin_button_down_arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + } +} + +class "GtkSpin*" style "spin" + +############################################ +# Check Boxes +# -------------- +# This section tells GTK how to draw check boxes. +############################################ + +style "CheckBox" +{ + + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = CHECK + recolorable = TRUE + shadow = OUT + overlay_file = "unchecked_box.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + image + { + function = CHECK + recolorable = TRUE + shadow = IN + overlay_file = "checked_box.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + file = "menu_hi-light_2.png" + border = { 1, 1, 1, 1 } + } + + } +} + +class "GtkCheckButton" style "CheckBox" + +############################################ +# Radio Buttons +############################################ + +style "RadioButton" +{ + + engine "pixmap" + { + + image + { + function = OPTION + recolorable = TRUE + shadow = OUT + overlay_file = "option_out_2.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + shadow = IN + overlay_file = "option_in_2.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a radio box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + file = "menu_hi-light_2.png" + border = { 1, 1, 1, 1 } + } + + } +} + +class "GtkRadioButton" style "RadioButton" + +################################################ +# Statusbars Drawn by gtk (info bar on the bottom of the window) +################################################ +style "wv-GtkStatusbar" = "wv-default" +{ + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + + engine "pixmap" + { + + #This does not seem to be working. It seems that you can tell gtk how + #to draw the resizing grip in the bottom right corner of the window, which + #seems to be part of the status bar. Not sure why it is not working. + image + { + function = RESIZE_GRIP + recolorable = TRUE + #state = NORMAL + detail = "statusbar" + overlay_file = "menu_hi-light_2.png" + overlay_border = {1,1,1,1 } + overlay_stretch = FALSE + } + } + + +} + +class "GtkStatusbar" style "wv-GtkStatusbar" + +########################################### +#Progress Bars +########################################### + +style "ProgressBar" +{ + #xthickness = 1 + #ythickness = 1 + GtkProgressBar::trough_border = 0 + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "bar" + file = "progressbar.png" + border = { 1, 2, 1, 1} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "trough.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + orientation = HORIZONTAL + } + } +} + +class "GtkProgressBar" style "ProgressBar" + +########################################### +#Text Boxes in Notebooks +########################################### + +#Notebook pages have a darker background than the normal base color. This +#section sets the appropriate background colors for widgets with text entries +#so they blend in with the darker grey background. This isn't a complete fix +#for the problem, since some programs seem to use notebook pages (without +#tabs) in such a way that they don't pick up the dark grey background. + +style "DarkTextEntry" +{ + #xthickness = 1 + #ythickness = 1 + + #font_name = "Bold" + + base[NORMAL] = "#CBCBCB" + base[INSENSITIVE] = "#CBCBCB" + +} +widget_class "*Notebook*Entry" style "DarkTextEntry" +widget_class "*Notebook*ComboBox" style "DarkTextEntry" +widget_class "*Notebook*SpinButton" style "DarkTextEntry" + + + +############################################# +#Gnome Panel +############################################# + + +style "panelbg" { + bg_pixmap[NORMAL] = "panel_background.png" + bg_pixmap[INSENSITIVE] = "" + bg_pixmap[PRELIGHT] = "" + bg_pixmap[SELECTED] = "" + bg_pixmap[ACTIVE] = "" +} +class "Panel*" style "panelbg" + + +#Widgets that have not been defined yet +class "GtkWidget" style "wv-default" + diff --git a/themes/Water-Vapor/gtk-2.0/hline.png b/themes/Water-Vapor/gtk-2.0/hline.png new file mode 100755 index 0000000..2efb61f Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/hline.png differ diff --git a/themes/Water-Vapor/gtk-2.0/horizontal_handle.png b/themes/Water-Vapor/gtk-2.0/horizontal_handle.png new file mode 100755 index 0000000..a37cad6 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/horizontal_handle.png differ diff --git a/themes/Water-Vapor/gtk-2.0/horizontal_paned_handle.png b/themes/Water-Vapor/gtk-2.0/horizontal_paned_handle.png new file mode 100755 index 0000000..a37cad6 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/horizontal_paned_handle.png differ diff --git a/themes/Water-Vapor/gtk-2.0/horizontal_trough.png b/themes/Water-Vapor/gtk-2.0/horizontal_trough.png new file mode 100755 index 0000000..992cf10 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/horizontal_trough.png differ diff --git a/themes/Water-Vapor/gtk-2.0/horizontal_trough_3.png b/themes/Water-Vapor/gtk-2.0/horizontal_trough_3.png new file mode 100755 index 0000000..b87369d Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/horizontal_trough_3.png differ diff --git a/themes/Water-Vapor/gtk-2.0/hscroll_left.png b/themes/Water-Vapor/gtk-2.0/hscroll_left.png new file mode 100755 index 0000000..428fba0 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/hscroll_left.png differ diff --git a/themes/Water-Vapor/gtk-2.0/hscroll_left_focus.png b/themes/Water-Vapor/gtk-2.0/hscroll_left_focus.png new file mode 100755 index 0000000..eaef099 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/hscroll_left_focus.png differ diff --git a/themes/Water-Vapor/gtk-2.0/hscroll_right.png b/themes/Water-Vapor/gtk-2.0/hscroll_right.png new file mode 100755 index 0000000..4459e6b Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/hscroll_right.png differ diff --git a/themes/Water-Vapor/gtk-2.0/hscroll_right_focus.png b/themes/Water-Vapor/gtk-2.0/hscroll_right_focus.png new file mode 100755 index 0000000..2952efa Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/hscroll_right_focus.png differ diff --git a/themes/Water-Vapor/gtk-2.0/iconrc b/themes/Water-Vapor/gtk-2.0/iconrc new file mode 100755 index 0000000..7f9f90a --- /dev/null +++ b/themes/Water-Vapor/gtk-2.0/iconrc @@ -0,0 +1,64 @@ +pixmap_path "/usr/share/themes/hicolor/icons/stock" +style "glossy-icons" +{ + stock["gtk-add"] = {{ "stock_add.png", *, *, * }} + stock["gtk-apply"] = {{ "stock_apply.png", *, *, *}} + stock["gtk-cancel"] = {{ "stock_cancel.png", *, *, *}} + stock["gtk-cdrom"] = {{ "stock_cdrom.png", *, *, *}} + stock["gtk-close"] = {{ "stock_cancel.png", *, *, * }} + stock["gtk-copy"] = {{ "stock_copy.png", *, *, * }} + stock["gtk-cut"] = {{ "stock_cut.png", *, *, * }} + stock["gtk-paste"] = {{ "stock_paste.png", *, *, * }} + stock["gtk-find"] = {{ "stock_find.png", *, *, * }} + stock["gtk-folder"] = {{ "stock_folder.png", *, *, * }} + stock["gtk-go-back"] = { { "stock_back.png", *, *, *} } + stock["gtk-go-down"] ={ { "stock_down.png", *, *, *}} + stock["gtk-go-forward"] ={{ "stock_forward.png", *, *, *}} + stock["gtk-go-up"] ={{ "stock_up.png", *, *, *}} + stock["gtk-goto-bottom"] = { { "stock_bottom.png", *, *, *} } + stock["gtk-goto-first"] = {{ "stock_goto_first.png", *, *, * }} + stock["gtk-goto-last"] = {{ "stock_goto_last.png", *, *, * }} + stock["gtk-goto-top"] = {{ "stock_top.png", *, *, *}} + stock["gtk-help"] = {{ "stock_help.png", *, *, * }} + stock["gtk-home"] = {{ "stock_home.png", *, *, * }} + stock["gtk-jump-to"] = {{ "stock_jump_to.png", *, *, * }} + stock["gtk-new"] = {{ "stock_new.png", *, *, *}} + stock["gtk-no"] = {{ "stock_cancel.png", *, *, *}} + stock["gtk-ok"] ={{ "stock_ok.png", *, *, *}} + stock["gtk-open"] ={{ "stock_open.png", *, *, *}} + stock["gtk-print"] ={{ "stock_print.png", *, *, *}} + stock["gtk-quit"] = {{ "stock_quit.png", *, *, * }} + stock["gtk-redo"] = {{ "stock_redo.png", *, *, * }} + stock["gtk-refresh"] = {{ "stock_refresh.png", *, *, *}} + stock["gtk-save"] = {{ "stock_save.png", *, *, * }} + stock["gtk-save-as"] = {{ "stock_save.png", *, *, * }} + stock["gtk-stop"] = {{ "stock_cancel.png", *, *, * }} + stock["gtk-undo"] = {{ "stock_undo.png", *, *, * }} + stock["gtk-yes"] = { { "stock_apply.png", *, *, *} } + stock["gtk-zoom-100"] = {{ "stock_zoom_one_to_one.png", *, *, * }} + stock["gtk-zoom-fit"] = {{ "stock_zoom_fit_width.png", *, *, * }} + stock["gtk-zoom-fit-width"] = {{ "stock_zoom_fit_width.png", *, *, * }} + stock["gtk-zoom-in"] = {{ "stock_zoom_in.png", *, *, * }} + stock["gtk-zoom-out"] = {{ "stock_zoom_out.png", *, *, * }} + + stock ["panel-gnome-logo"] = {{"gnome-main-menu.png",*,*,*}} + stock ["panel-main-menu"] = {{"gnome-main-menu.png",*,*,*}} +} +class "GtkWidget" style "glossy-icons" + +#style "rhythmbox" +#{ +# stock["rhythmbox-play"] = {{ "rhythmbox-play.png", *, *, * }} +# stock["rhythmbox-stop"] = {{ "rhythmbox-stop.png", *, *, * }} +# stock["rhythmbox-previous"] = {{ "rhythmbox-previous.png", *, *, * }} +# stock["rhythmbox-next"] = {{ "rhythmbox-next.png", *, *, * }} +# stock["rhythmbox-pause"] = {{ "rhythmbox-pause.png", *, *, * }} +# stock["rhythmbox-volume-max"] = {{ "volume-max.png", *, *, * }} +# stock["rhythmbox-volume-medium"] = {{ "volume-med.png", *, *, * }} +# stock["rhythmbox-volume-min"] = {{ "volume-min.png", *, *, * }} +# stock["rhythmbox-volume-zero"] = {{ "volume-zero.png", *, *, * }} +# stock["rhythmbox-volume-mute"] = {{ "volume-mute.png", *, *, * }} +#} +#class "GtkWidget" style "rhythmbox" + + diff --git a/themes/Water-Vapor/gtk-2.0/icons/button_back.png b/themes/Water-Vapor/gtk-2.0/icons/button_back.png new file mode 100755 index 0000000..7c680ca Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/button_back.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_add.png b/themes/Water-Vapor/gtk-2.0/icons/stock_add.png new file mode 100755 index 0000000..b602f06 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_add.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_apply.png b/themes/Water-Vapor/gtk-2.0/icons/stock_apply.png new file mode 100755 index 0000000..9918487 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_apply.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_back.png b/themes/Water-Vapor/gtk-2.0/icons/stock_back.png new file mode 100755 index 0000000..1882a0c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_back.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_bottom.png b/themes/Water-Vapor/gtk-2.0/icons/stock_bottom.png new file mode 100755 index 0000000..e2a4205 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_bottom.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_cancel.png b/themes/Water-Vapor/gtk-2.0/icons/stock_cancel.png new file mode 100755 index 0000000..45b112d Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_cancel.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_cd.png b/themes/Water-Vapor/gtk-2.0/icons/stock_cd.png new file mode 100755 index 0000000..7d2919c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_cd.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_cdrom.png b/themes/Water-Vapor/gtk-2.0/icons/stock_cdrom.png new file mode 100755 index 0000000..7d2919c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_cdrom.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_copy.png b/themes/Water-Vapor/gtk-2.0/icons/stock_copy.png new file mode 100755 index 0000000..1058077 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_copy.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_cut.png b/themes/Water-Vapor/gtk-2.0/icons/stock_cut.png new file mode 100755 index 0000000..ee4693f Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_cut.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_down.png b/themes/Water-Vapor/gtk-2.0/icons/stock_down.png new file mode 100755 index 0000000..3b4f5a6 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_down.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_find.png b/themes/Water-Vapor/gtk-2.0/icons/stock_find.png new file mode 100755 index 0000000..0d1edf8 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_find.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_folder.png b/themes/Water-Vapor/gtk-2.0/icons/stock_folder.png new file mode 100755 index 0000000..f15dec3 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_folder.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_forward.png b/themes/Water-Vapor/gtk-2.0/icons/stock_forward.png new file mode 100755 index 0000000..db925e3 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_forward.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_goto_first.png b/themes/Water-Vapor/gtk-2.0/icons/stock_goto_first.png new file mode 100755 index 0000000..93e1ab6 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_goto_first.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_goto_last.png b/themes/Water-Vapor/gtk-2.0/icons/stock_goto_last.png new file mode 100755 index 0000000..b409e8d Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_goto_last.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_help.png b/themes/Water-Vapor/gtk-2.0/icons/stock_help.png new file mode 100755 index 0000000..119cf0b Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_help.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_home.png b/themes/Water-Vapor/gtk-2.0/icons/stock_home.png new file mode 100755 index 0000000..0a4302e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_home.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_jump_to.png b/themes/Water-Vapor/gtk-2.0/icons/stock_jump_to.png new file mode 100755 index 0000000..24b4f81 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_jump_to.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_new.png b/themes/Water-Vapor/gtk-2.0/icons/stock_new.png new file mode 100755 index 0000000..a162c85 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_new.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_ok.png b/themes/Water-Vapor/gtk-2.0/icons/stock_ok.png new file mode 100755 index 0000000..5987232 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_ok.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_open.png b/themes/Water-Vapor/gtk-2.0/icons/stock_open.png new file mode 100755 index 0000000..0a9193e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_open.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_paste.png b/themes/Water-Vapor/gtk-2.0/icons/stock_paste.png new file mode 100755 index 0000000..1679a4e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_paste.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_print.png b/themes/Water-Vapor/gtk-2.0/icons/stock_print.png new file mode 100755 index 0000000..90a7ec3 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_print.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_quit.png b/themes/Water-Vapor/gtk-2.0/icons/stock_quit.png new file mode 100755 index 0000000..5b29fea Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_quit.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_redo.png b/themes/Water-Vapor/gtk-2.0/icons/stock_redo.png new file mode 100755 index 0000000..4429c83 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_redo.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_refresh.png b/themes/Water-Vapor/gtk-2.0/icons/stock_refresh.png new file mode 100755 index 0000000..d12a652 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_refresh.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_save.png b/themes/Water-Vapor/gtk-2.0/icons/stock_save.png new file mode 100755 index 0000000..2bb10f3 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_save.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_top.png b/themes/Water-Vapor/gtk-2.0/icons/stock_top.png new file mode 100755 index 0000000..92bfa45 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_top.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_trash.png b/themes/Water-Vapor/gtk-2.0/icons/stock_trash.png new file mode 100755 index 0000000..fbf620a Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_trash.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_undo.png b/themes/Water-Vapor/gtk-2.0/icons/stock_undo.png new file mode 100755 index 0000000..59ad4c2 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_undo.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_up.png b/themes/Water-Vapor/gtk-2.0/icons/stock_up.png new file mode 100755 index 0000000..e2859d9 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_up.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_fit_width.png b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_fit_width.png new file mode 100755 index 0000000..39334c4 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_fit_width.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_in.png b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_in.png new file mode 100755 index 0000000..a477316 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_in.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_one_to_one.png b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_one_to_one.png new file mode 100755 index 0000000..5551ead Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_one_to_one.png differ diff --git a/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_out.png b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_out.png new file mode 100755 index 0000000..3108742 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/icons/stock_zoom_out.png differ diff --git a/themes/Water-Vapor/gtk-2.0/insens.png b/themes/Water-Vapor/gtk-2.0/insens.png new file mode 100755 index 0000000..28446d1 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/insens.png differ diff --git a/themes/Water-Vapor/gtk-2.0/list_header.png b/themes/Water-Vapor/gtk-2.0/list_header.png new file mode 100755 index 0000000..1fa6371 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/list_header.png differ diff --git a/themes/Water-Vapor/gtk-2.0/list_header_clicked.png b/themes/Water-Vapor/gtk-2.0/list_header_clicked.png new file mode 100755 index 0000000..2e1cc90 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/list_header_clicked.png differ diff --git a/themes/Water-Vapor/gtk-2.0/menu_background.png b/themes/Water-Vapor/gtk-2.0/menu_background.png new file mode 100755 index 0000000..2180d2c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/menu_background.png differ diff --git a/themes/Water-Vapor/gtk-2.0/menu_hi-light_2.png b/themes/Water-Vapor/gtk-2.0/menu_hi-light_2.png new file mode 100755 index 0000000..9547d41 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/menu_hi-light_2.png differ diff --git a/themes/Water-Vapor/gtk-2.0/menu_hi-light_3.png b/themes/Water-Vapor/gtk-2.0/menu_hi-light_3.png new file mode 100755 index 0000000..5c347e0 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/menu_hi-light_3.png differ diff --git a/themes/Water-Vapor/gtk-2.0/menubar_option_arrow.png b/themes/Water-Vapor/gtk-2.0/menubar_option_arrow.png new file mode 100755 index 0000000..f2cbbd0 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/menubar_option_arrow.png differ diff --git a/themes/Water-Vapor/gtk-2.0/menubar_option_arrow_insensitive.png b/themes/Water-Vapor/gtk-2.0/menubar_option_arrow_insensitive.png new file mode 100755 index 0000000..8261b62 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/menubar_option_arrow_insensitive.png differ diff --git a/themes/Water-Vapor/gtk-2.0/notebook_bottom_flat.png b/themes/Water-Vapor/gtk-2.0/notebook_bottom_flat.png new file mode 100755 index 0000000..13f2f22 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/notebook_bottom_flat.png differ diff --git a/themes/Water-Vapor/gtk-2.0/notebook_left_flat.png b/themes/Water-Vapor/gtk-2.0/notebook_left_flat.png new file mode 100755 index 0000000..a19e7db Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/notebook_left_flat.png differ diff --git a/themes/Water-Vapor/gtk-2.0/notebook_right_flat.png b/themes/Water-Vapor/gtk-2.0/notebook_right_flat.png new file mode 100755 index 0000000..11d5fae Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/notebook_right_flat.png differ diff --git a/themes/Water-Vapor/gtk-2.0/notebook_top_flat.png b/themes/Water-Vapor/gtk-2.0/notebook_top_flat.png new file mode 100755 index 0000000..90e3e42 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/notebook_top_flat.png differ diff --git a/themes/Water-Vapor/gtk-2.0/option_in_2.png b/themes/Water-Vapor/gtk-2.0/option_in_2.png new file mode 100755 index 0000000..459f12f Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/option_in_2.png differ diff --git a/themes/Water-Vapor/gtk-2.0/option_out_2.png b/themes/Water-Vapor/gtk-2.0/option_out_2.png new file mode 100755 index 0000000..cfa0e23 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/option_out_2.png differ diff --git a/themes/Water-Vapor/gtk-2.0/out_sel.png b/themes/Water-Vapor/gtk-2.0/out_sel.png new file mode 100755 index 0000000..7975f05 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/out_sel.png differ diff --git a/themes/Water-Vapor/gtk-2.0/panel_background.png b/themes/Water-Vapor/gtk-2.0/panel_background.png new file mode 100755 index 0000000..39ea6b1 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/panel_background.png differ diff --git a/themes/Water-Vapor/gtk-2.0/progressbar.png b/themes/Water-Vapor/gtk-2.0/progressbar.png new file mode 100755 index 0000000..d75d599 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/progressbar.png differ diff --git a/themes/Water-Vapor/gtk-2.0/progressbarb.png b/themes/Water-Vapor/gtk-2.0/progressbarb.png new file mode 100755 index 0000000..f0290d7 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/progressbarb.png differ diff --git a/themes/Water-Vapor/gtk-2.0/scrollbar_active_horizontal.png b/themes/Water-Vapor/gtk-2.0/scrollbar_active_horizontal.png new file mode 100755 index 0000000..f1951ec Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/scrollbar_active_horizontal.png differ diff --git a/themes/Water-Vapor/gtk-2.0/scrollbar_active_vertical.png b/themes/Water-Vapor/gtk-2.0/scrollbar_active_vertical.png new file mode 100755 index 0000000..955967c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/scrollbar_active_vertical.png differ diff --git a/themes/Water-Vapor/gtk-2.0/scrollbar_horizontal.png b/themes/Water-Vapor/gtk-2.0/scrollbar_horizontal.png new file mode 100755 index 0000000..df79ce2 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/scrollbar_horizontal.png differ diff --git a/themes/Water-Vapor/gtk-2.0/scrollbar_vertical.png b/themes/Water-Vapor/gtk-2.0/scrollbar_vertical.png new file mode 100755 index 0000000..63fe72a Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/scrollbar_vertical.png differ diff --git a/themes/Water-Vapor/gtk-2.0/shadow_etched_in.png b/themes/Water-Vapor/gtk-2.0/shadow_etched_in.png new file mode 100755 index 0000000..981815d Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/shadow_etched_in.png differ diff --git a/themes/Water-Vapor/gtk-2.0/shadow_etched_out.png b/themes/Water-Vapor/gtk-2.0/shadow_etched_out.png new file mode 100755 index 0000000..e58a88e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/shadow_etched_out.png differ diff --git a/themes/Water-Vapor/gtk-2.0/shadow_in.png b/themes/Water-Vapor/gtk-2.0/shadow_in.png new file mode 100755 index 0000000..b164b01 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/shadow_in.png differ diff --git a/themes/Water-Vapor/gtk-2.0/shadow_out.png b/themes/Water-Vapor/gtk-2.0/shadow_out.png new file mode 100755 index 0000000..f6760bf Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/shadow_out.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_down.png b/themes/Water-Vapor/gtk-2.0/spin_button_down.png new file mode 100755 index 0000000..1ed0ea1 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_down.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_down_active.png b/themes/Water-Vapor/gtk-2.0/spin_button_down_active.png new file mode 100755 index 0000000..7fde782 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_down_active.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_down_arrow.png b/themes/Water-Vapor/gtk-2.0/spin_button_down_arrow.png new file mode 100755 index 0000000..cbe8ad3 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_down_arrow.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_down_prelight.png b/themes/Water-Vapor/gtk-2.0/spin_button_down_prelight.png new file mode 100755 index 0000000..052cb1e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_down_prelight.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_up.png b/themes/Water-Vapor/gtk-2.0/spin_button_up.png new file mode 100755 index 0000000..a36775c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_up.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_up_active.png b/themes/Water-Vapor/gtk-2.0/spin_button_up_active.png new file mode 100755 index 0000000..d08ac90 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_up_active.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_up_arrow.png b/themes/Water-Vapor/gtk-2.0/spin_button_up_arrow.png new file mode 100755 index 0000000..750dbcb Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_up_arrow.png differ diff --git a/themes/Water-Vapor/gtk-2.0/spin_button_up_prelight.png b/themes/Water-Vapor/gtk-2.0/spin_button_up_prelight.png new file mode 100755 index 0000000..74007fa Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/spin_button_up_prelight.png differ diff --git a/themes/Water-Vapor/gtk-2.0/text_entry.png b/themes/Water-Vapor/gtk-2.0/text_entry.png new file mode 100755 index 0000000..6c726cf Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/text_entry.png differ diff --git a/themes/Water-Vapor/gtk-2.0/toolbar.png b/themes/Water-Vapor/gtk-2.0/toolbar.png new file mode 100755 index 0000000..6002d9e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/toolbar.png differ diff --git a/themes/Water-Vapor/gtk-2.0/toolbar_background.png b/themes/Water-Vapor/gtk-2.0/toolbar_background.png new file mode 100755 index 0000000..75a06f7 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/toolbar_background.png differ diff --git a/themes/Water-Vapor/gtk-2.0/toolbar_backup.png b/themes/Water-Vapor/gtk-2.0/toolbar_backup.png new file mode 100755 index 0000000..72d782c Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/toolbar_backup.png differ diff --git a/themes/Water-Vapor/gtk-2.0/tooltip.png b/themes/Water-Vapor/gtk-2.0/tooltip.png new file mode 100755 index 0000000..0b655d8 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/tooltip.png differ diff --git a/themes/Water-Vapor/gtk-2.0/tooltippy.png b/themes/Water-Vapor/gtk-2.0/tooltippy.png new file mode 100755 index 0000000..c47ecd3 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/tooltippy.png differ diff --git a/themes/Water-Vapor/gtk-2.0/tooltippyi.png b/themes/Water-Vapor/gtk-2.0/tooltippyi.png new file mode 100755 index 0000000..2a301a2 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/tooltippyi.png differ diff --git a/themes/Water-Vapor/gtk-2.0/transparent.png b/themes/Water-Vapor/gtk-2.0/transparent.png new file mode 100755 index 0000000..62d3c58 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/transparent.png differ diff --git a/themes/Water-Vapor/gtk-2.0/trough.png b/themes/Water-Vapor/gtk-2.0/trough.png new file mode 100755 index 0000000..3a3ea86 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/trough.png differ diff --git a/themes/Water-Vapor/gtk-2.0/unchecked_box.png b/themes/Water-Vapor/gtk-2.0/unchecked_box.png new file mode 100755 index 0000000..63b1aa9 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/unchecked_box.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vertical_handle.png b/themes/Water-Vapor/gtk-2.0/vertical_handle.png new file mode 100755 index 0000000..46a78be Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vertical_handle.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vertical_paned_handle.png b/themes/Water-Vapor/gtk-2.0/vertical_paned_handle.png new file mode 100755 index 0000000..46a78be Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vertical_paned_handle.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vertical_trough.png b/themes/Water-Vapor/gtk-2.0/vertical_trough.png new file mode 100755 index 0000000..af93a2e Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vertical_trough.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vertical_trough_3.png b/themes/Water-Vapor/gtk-2.0/vertical_trough_3.png new file mode 100755 index 0000000..3bada80 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vertical_trough_3.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vline.png b/themes/Water-Vapor/gtk-2.0/vline.png new file mode 100755 index 0000000..2e10921 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vline.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vscroll_down.png b/themes/Water-Vapor/gtk-2.0/vscroll_down.png new file mode 100755 index 0000000..aad8f5b Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vscroll_down.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vscroll_down_focus.png b/themes/Water-Vapor/gtk-2.0/vscroll_down_focus.png new file mode 100755 index 0000000..a8fda23 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vscroll_down_focus.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vscroll_up.png b/themes/Water-Vapor/gtk-2.0/vscroll_up.png new file mode 100755 index 0000000..72317b6 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vscroll_up.png differ diff --git a/themes/Water-Vapor/gtk-2.0/vscroll_up_focus.png b/themes/Water-Vapor/gtk-2.0/vscroll_up_focus.png new file mode 100755 index 0000000..9530d65 Binary files /dev/null and b/themes/Water-Vapor/gtk-2.0/vscroll_up_focus.png differ diff --git a/themes/Wii-Black/gtk-2.0/Arrows/arrow-down.png b/themes/Wii-Black/gtk-2.0/Arrows/arrow-down.png new file mode 100644 index 0000000..30134b0 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Arrows/arrow-down.png differ diff --git a/themes/Wii-Black/gtk-2.0/Arrows/arrow-left.png b/themes/Wii-Black/gtk-2.0/Arrows/arrow-left.png new file mode 100644 index 0000000..b811e47 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Arrows/arrow-left.png differ diff --git a/themes/Wii-Black/gtk-2.0/Arrows/arrow-right-norm.png b/themes/Wii-Black/gtk-2.0/Arrows/arrow-right-norm.png new file mode 100644 index 0000000..1640835 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Arrows/arrow-right-norm.png differ diff --git a/themes/Wii-Black/gtk-2.0/Arrows/arrow-right-prelight.png b/themes/Wii-Black/gtk-2.0/Arrows/arrow-right-prelight.png new file mode 100644 index 0000000..1640835 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Arrows/arrow-right-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Arrows/arrow-right.png b/themes/Wii-Black/gtk-2.0/Arrows/arrow-right.png new file mode 100644 index 0000000..1640835 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Arrows/arrow-right.png differ diff --git a/themes/Wii-Black/gtk-2.0/Arrows/arrow-up.png b/themes/Wii-Black/gtk-2.0/Arrows/arrow-up.png new file mode 100644 index 0000000..d256e79 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Arrows/arrow-up.png differ diff --git a/themes/Wii-Black/gtk-2.0/Buttons/button-default.png b/themes/Wii-Black/gtk-2.0/Buttons/button-default.png new file mode 100755 index 0000000..bdfe9c8 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Buttons/button-default.png differ diff --git a/themes/Wii-Black/gtk-2.0/Buttons/button-insensitive.png b/themes/Wii-Black/gtk-2.0/Buttons/button-insensitive.png new file mode 100644 index 0000000..4f26b34 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Buttons/button-insensitive.png differ diff --git a/themes/Wii-Black/gtk-2.0/Buttons/button-normal.png b/themes/Wii-Black/gtk-2.0/Buttons/button-normal.png new file mode 100755 index 0000000..28266f7 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Buttons/button-normal.png differ diff --git a/themes/Wii-Black/gtk-2.0/Buttons/button-prelight.png b/themes/Wii-Black/gtk-2.0/Buttons/button-prelight.png new file mode 100755 index 0000000..1646b71 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Buttons/button-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Buttons/button-pressed.png b/themes/Wii-Black/gtk-2.0/Buttons/button-pressed.png new file mode 100755 index 0000000..edbe0ee Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Buttons/button-pressed.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/check1.png b/themes/Wii-Black/gtk-2.0/Check-Radio/check1.png new file mode 100644 index 0000000..3e211af Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/check1.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/check2.png b/themes/Wii-Black/gtk-2.0/Check-Radio/check2.png new file mode 100644 index 0000000..50d5ce6 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/check2.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/check3.png b/themes/Wii-Black/gtk-2.0/Check-Radio/check3.png new file mode 100644 index 0000000..dce1793 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/check3.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/check4.png b/themes/Wii-Black/gtk-2.0/Check-Radio/check4.png new file mode 100644 index 0000000..9d9f0ff Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/check4.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/checklight.png b/themes/Wii-Black/gtk-2.0/Check-Radio/checklight.png new file mode 100644 index 0000000..2b8964b Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/checklight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/highlight.png b/themes/Wii-Black/gtk-2.0/Check-Radio/highlight.png new file mode 100644 index 0000000..a8b71b3 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/highlight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/option1.png b/themes/Wii-Black/gtk-2.0/Check-Radio/option1.png new file mode 100644 index 0000000..da6a04d Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/option1.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/option2.png b/themes/Wii-Black/gtk-2.0/Check-Radio/option2.png new file mode 100644 index 0000000..108b674 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/option2.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/option3.png b/themes/Wii-Black/gtk-2.0/Check-Radio/option3.png new file mode 100644 index 0000000..21aca83 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/option3.png differ diff --git a/themes/Wii-Black/gtk-2.0/Check-Radio/option4.png b/themes/Wii-Black/gtk-2.0/Check-Radio/option4.png new file mode 100644 index 0000000..7e9842d Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Check-Radio/option4.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-active.png b/themes/Wii-Black/gtk-2.0/Combo/combo-active.png new file mode 100644 index 0000000..1feaef3 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-active.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-arrow-insens.png b/themes/Wii-Black/gtk-2.0/Combo/combo-arrow-insens.png new file mode 100755 index 0000000..6e35994 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-arrow-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-arrow-prelight.png b/themes/Wii-Black/gtk-2.0/Combo/combo-arrow-prelight.png new file mode 100644 index 0000000..6cde112 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-arrow-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-arrow.png b/themes/Wii-Black/gtk-2.0/Combo/combo-arrow.png new file mode 100644 index 0000000..f3c7cb1 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-arrow.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-inactive.png b/themes/Wii-Black/gtk-2.0/Combo/combo-inactive.png new file mode 100755 index 0000000..6e35994 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-inactive.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-normal.png b/themes/Wii-Black/gtk-2.0/Combo/combo-normal.png new file mode 100755 index 0000000..6e35994 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-normal.png differ diff --git a/themes/Wii-Black/gtk-2.0/Combo/combo-prelight.png b/themes/Wii-Black/gtk-2.0/Combo/combo-prelight.png new file mode 100755 index 0000000..66bec74 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Combo/combo-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Frame-Gap/frame-gap-end.png b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame-gap-end.png new file mode 100644 index 0000000..b4561e6 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame-gap-end.png differ diff --git a/themes/Wii-Black/gtk-2.0/Frame-Gap/frame-gap-start.png b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame-gap-start.png new file mode 100644 index 0000000..203decc Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame-gap-start.png differ diff --git a/themes/Wii-Black/gtk-2.0/Frame-Gap/frame1.png b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame1.png new file mode 100644 index 0000000..0de5805 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame1.png differ diff --git a/themes/Wii-Black/gtk-2.0/Frame-Gap/frame2.png b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame2.png new file mode 100644 index 0000000..278bcff Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Frame-Gap/frame2.png differ diff --git a/themes/Wii-Black/gtk-2.0/Handles/handle-h.png b/themes/Wii-Black/gtk-2.0/Handles/handle-h.png new file mode 100644 index 0000000..dd1e37c Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Handles/handle-h.png differ diff --git a/themes/Wii-Black/gtk-2.0/Handles/handle-v.png b/themes/Wii-Black/gtk-2.0/Handles/handle-v.png new file mode 100644 index 0000000..6f8b83a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Handles/handle-v.png differ diff --git a/themes/Wii-Black/gtk-2.0/Lines/line-h.png b/themes/Wii-Black/gtk-2.0/Lines/line-h.png new file mode 100644 index 0000000..991ae71 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Lines/line-h.png differ diff --git a/themes/Wii-Black/gtk-2.0/Lines/line-v.png b/themes/Wii-Black/gtk-2.0/Lines/line-v.png new file mode 100644 index 0000000..e1c3191 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Lines/line-v.png differ diff --git a/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-insens.png b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-insens.png new file mode 100644 index 0000000..7f6e16a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-prelight.png b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-prelight.png new file mode 100644 index 0000000..9042d39 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-pressed.png b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-pressed.png new file mode 100644 index 0000000..7e29d00 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header-pressed.png differ diff --git a/themes/Wii-Black/gtk-2.0/ListHeaders/list_header.png b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header.png new file mode 100644 index 0000000..9c0e476 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ListHeaders/list_header.png differ diff --git a/themes/Wii-Black/gtk-2.0/Menu-Menubar/menu.png b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menu.png new file mode 100644 index 0000000..c6b3449 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menu.png differ diff --git a/themes/Wii-Black/gtk-2.0/Menu-Menubar/menubar-item.png b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menubar-item.png new file mode 100644 index 0000000..7bd552b Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menubar-item.png differ diff --git a/themes/Wii-Black/gtk-2.0/Menu-Menubar/menubar.png b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menubar.png new file mode 100644 index 0000000..cef7b75 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menubar.png differ diff --git a/themes/Wii-Black/gtk-2.0/Menu-Menubar/menuitem.png b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menuitem.png new file mode 100644 index 0000000..7a29d13 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menuitem.png differ diff --git a/themes/Wii-Black/gtk-2.0/Menu-Menubar/menuline.png b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menuline.png new file mode 100755 index 0000000..77b4679 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Menu-Menubar/menuline.png differ diff --git a/themes/Wii-Black/gtk-2.0/Others/focus.png b/themes/Wii-Black/gtk-2.0/Others/focus.png new file mode 100644 index 0000000..c41abe1 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Others/focus.png differ diff --git a/themes/Wii-Black/gtk-2.0/Others/null.png b/themes/Wii-Black/gtk-2.0/Others/null.png new file mode 100644 index 0000000..9d7e6be Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Others/null.png differ diff --git a/themes/Wii-Black/gtk-2.0/Others/ruler.png b/themes/Wii-Black/gtk-2.0/Others/ruler.png new file mode 100644 index 0000000..6370fb6 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Others/ruler.png differ diff --git a/themes/Wii-Black/gtk-2.0/Panel/panel-bg.png b/themes/Wii-Black/gtk-2.0/Panel/panel-bg.png new file mode 100644 index 0000000..6b3c7cb Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Panel/panel-bg.png differ diff --git a/themes/Wii-Black/gtk-2.0/Panel/panelbutton1.png b/themes/Wii-Black/gtk-2.0/Panel/panelbutton1.png new file mode 100644 index 0000000..c49c962 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Panel/panelbutton1.png differ diff --git a/themes/Wii-Black/gtk-2.0/Panel/panelbutton2.png b/themes/Wii-Black/gtk-2.0/Panel/panelbutton2.png new file mode 100755 index 0000000..958feb2 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Panel/panelbutton2.png differ diff --git a/themes/Wii-Black/gtk-2.0/Panel/panelbutton3.png b/themes/Wii-Black/gtk-2.0/Panel/panelbutton3.png new file mode 100755 index 0000000..eb3e100 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Panel/panelbutton3.png differ diff --git a/themes/Wii-Black/gtk-2.0/Panel/panelbutton4.png b/themes/Wii-Black/gtk-2.0/Panel/panelbutton4.png new file mode 100755 index 0000000..be172af Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Panel/panelbutton4.png differ diff --git a/themes/Wii-Black/gtk-2.0/ProgressBar/progressbar-horiz.png b/themes/Wii-Black/gtk-2.0/ProgressBar/progressbar-horiz.png new file mode 100644 index 0000000..f13b534 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ProgressBar/progressbar-horiz.png differ diff --git a/themes/Wii-Black/gtk-2.0/ProgressBar/trough-progressbar-horiz.png b/themes/Wii-Black/gtk-2.0/ProgressBar/trough-progressbar-horiz.png new file mode 100644 index 0000000..8e92439 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ProgressBar/trough-progressbar-horiz.png differ diff --git a/themes/Wii-Black/gtk-2.0/ProgressBar/trough-progressbar-vert.png b/themes/Wii-Black/gtk-2.0/ProgressBar/trough-progressbar-vert.png new file mode 100644 index 0000000..18ac7aa Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/ProgressBar/trough-progressbar-vert.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/null.png b/themes/Wii-Black/gtk-2.0/Range/null.png new file mode 100644 index 0000000..4136605 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/null.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/slider-horiz-prelight.png b/themes/Wii-Black/gtk-2.0/Range/slider-horiz-prelight.png new file mode 100644 index 0000000..6baa2af Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/slider-horiz-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/slider-horiz.png b/themes/Wii-Black/gtk-2.0/Range/slider-horiz.png new file mode 100644 index 0000000..c3f4f28 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/slider-horiz.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/slider-vert-prelight.png b/themes/Wii-Black/gtk-2.0/Range/slider-vert-prelight.png new file mode 100644 index 0000000..dcf94b7 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/slider-vert-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/slider-vert.png b/themes/Wii-Black/gtk-2.0/Range/slider-vert.png new file mode 100644 index 0000000..23bf6aa Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/slider-vert.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/trough-horizontal.png b/themes/Wii-Black/gtk-2.0/Range/trough-horizontal.png new file mode 100644 index 0000000..a72c84a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/trough-horizontal.png differ diff --git a/themes/Wii-Black/gtk-2.0/Range/trough-vertical.png b/themes/Wii-Black/gtk-2.0/Range/trough-vertical.png new file mode 100644 index 0000000..9d6fc70 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Range/trough-vertical.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/scroll-thumb-horiz.png b/themes/Wii-Black/gtk-2.0/Scrollbars/scroll-thumb-horiz.png new file mode 100644 index 0000000..c6530e0 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/scroll-thumb-horiz.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/scroll-thumb-vert.png b/themes/Wii-Black/gtk-2.0/Scrollbars/scroll-thumb-vert.png new file mode 100644 index 0000000..1285ff6 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/scroll-thumb-vert.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz-insens.png b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz-insens.png new file mode 100644 index 0000000..be17c3a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz-prelight.png b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz-prelight.png new file mode 100644 index 0000000..a6d9a18 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz.png b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz.png new file mode 100644 index 0000000..be17c3a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-horiz.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert-insens.png b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert-insens.png new file mode 100644 index 0000000..e4c1b24 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert-prelight.png b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert-prelight.png new file mode 100644 index 0000000..811e1a9 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert.png b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert.png new file mode 100644 index 0000000..e4c1b24 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/slider-vert.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down-insens.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down-insens.png new file mode 100644 index 0000000..b0ce805 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down-prelight.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down-prelight.png new file mode 100644 index 0000000..9419393 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down.png new file mode 100644 index 0000000..6c59a0d Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-down.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left-insens.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left-insens.png new file mode 100644 index 0000000..bd088b4 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left-prelight.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left-prelight.png new file mode 100644 index 0000000..aaab59a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left.png new file mode 100644 index 0000000..c41eff9 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-left.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right-insens.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right-insens.png new file mode 100644 index 0000000..3a7798e Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right-prelight.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right-prelight.png new file mode 100644 index 0000000..9c7222e Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right.png new file mode 100644 index 0000000..b8ba6d2 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-right.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up-insens.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up-insens.png new file mode 100644 index 0000000..bcb1366 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up-insens.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up-prelight.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up-prelight.png new file mode 100644 index 0000000..afc1451 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up.png b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up.png new file mode 100644 index 0000000..fd7ea2b Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/stepper-up.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png b/themes/Wii-Black/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png new file mode 100644 index 0000000..9a88834 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png differ diff --git a/themes/Wii-Black/gtk-2.0/Scrollbars/trough-scrollbar-vert.png b/themes/Wii-Black/gtk-2.0/Scrollbars/trough-scrollbar-vert.png new file mode 100644 index 0000000..62a0c6c Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Scrollbars/trough-scrollbar-vert.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/entry-shadow-in.png b/themes/Wii-Black/gtk-2.0/Shadows/entry-shadow-in.png new file mode 100755 index 0000000..41cf4e4 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/entry-shadow-in.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/shadow-etched-out.png b/themes/Wii-Black/gtk-2.0/Shadows/shadow-etched-out.png new file mode 100644 index 0000000..ff99a0c Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/shadow-etched-out.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/shadow-in.png b/themes/Wii-Black/gtk-2.0/Shadows/shadow-in.png new file mode 100644 index 0000000..a15f977 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/shadow-in.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/shadow-none.png b/themes/Wii-Black/gtk-2.0/Shadows/shadow-none.png new file mode 100644 index 0000000..ae81b63 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/shadow-none.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/shadow-out.png b/themes/Wii-Black/gtk-2.0/Shadows/shadow-out.png new file mode 100644 index 0000000..4bcdff9 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/shadow-out.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/text-entry.png b/themes/Wii-Black/gtk-2.0/Shadows/text-entry.png new file mode 100755 index 0000000..6511043 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/text-entry.png differ diff --git a/themes/Wii-Black/gtk-2.0/Shadows/text.png b/themes/Wii-Black/gtk-2.0/Shadows/text.png new file mode 100644 index 0000000..a2125b3 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Shadows/text.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin-down-disable.png b/themes/Wii-Black/gtk-2.0/Spin/spin-down-disable.png new file mode 100644 index 0000000..44dd966 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin-down-disable.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin-down-prelight.png b/themes/Wii-Black/gtk-2.0/Spin/spin-down-prelight.png new file mode 100644 index 0000000..46e5029 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin-down-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin-down.png b/themes/Wii-Black/gtk-2.0/Spin/spin-down.png new file mode 100644 index 0000000..f17a6c7 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin-down.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin-up-disable.png b/themes/Wii-Black/gtk-2.0/Spin/spin-up-disable.png new file mode 100644 index 0000000..f3e66a6 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin-up-disable.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin-up-prelight.png b/themes/Wii-Black/gtk-2.0/Spin/spin-up-prelight.png new file mode 100644 index 0000000..37cbcf7 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin-up-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin-up.png b/themes/Wii-Black/gtk-2.0/Spin/spin-up.png new file mode 100644 index 0000000..4b94bfc Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin-up.png differ diff --git a/themes/Wii-Black/gtk-2.0/Spin/spin.png b/themes/Wii-Black/gtk-2.0/Spin/spin.png new file mode 100644 index 0000000..f5a8219 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Spin/spin.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/notebook.png b/themes/Wii-Black/gtk-2.0/Tabs/notebook.png new file mode 100755 index 0000000..a142225 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/notebook.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/null.png b/themes/Wii-Black/gtk-2.0/Tabs/null.png new file mode 100755 index 0000000..079a05a Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/null.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-bottom-active.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-bottom-active.png new file mode 100644 index 0000000..d0c78d8 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-bottom-active.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-bottom.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-bottom.png new file mode 100644 index 0000000..d68588e Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-bottom.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-left-active.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-left-active.png new file mode 100644 index 0000000..b408314 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-left-active.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-left.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-left.png new file mode 100644 index 0000000..3da43d0 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-left.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-right-active.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-right-active.png new file mode 100644 index 0000000..c49bcbd Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-right-active.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-right.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-right.png new file mode 100644 index 0000000..9a0f07c Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-right.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-top-active.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-top-active.png new file mode 100755 index 0000000..0d46fdb Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-top-active.png differ diff --git a/themes/Wii-Black/gtk-2.0/Tabs/tab-top.png b/themes/Wii-Black/gtk-2.0/Tabs/tab-top.png new file mode 100755 index 0000000..8d2eb81 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Tabs/tab-top.png differ diff --git a/themes/Wii-Black/gtk-2.0/Toolbar/toolbar.png b/themes/Wii-Black/gtk-2.0/Toolbar/toolbar.png new file mode 100644 index 0000000..3ab8fce Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Toolbar/toolbar.png differ diff --git a/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-normal.png b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-normal.png new file mode 100755 index 0000000..d062281 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-normal.png differ diff --git a/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-prelight.png b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-prelight.png new file mode 100755 index 0000000..65c6abb Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-prelight.png differ diff --git a/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-pressed.png b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-pressed.png new file mode 100644 index 0000000..2274d74 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-pressed.png differ diff --git a/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-toggled.png b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-toggled.png new file mode 100755 index 0000000..d062281 Binary files /dev/null and b/themes/Wii-Black/gtk-2.0/Toolbar/toolbutton-toggled.png differ diff --git a/themes/Wii-Black/gtk-2.0/gtkrc b/themes/Wii-Black/gtk-2.0/gtkrc new file mode 100644 index 0000000..6dc4b2d --- /dev/null +++ b/themes/Wii-Black/gtk-2.0/gtkrc @@ -0,0 +1,1774 @@ +include "menubar.rc" +#include "panel.rc" + +#################### PANEL BACKGROUND #########################xx + +style "panelbg" +{ + xthickness = 0 + ythickness = 0 + bg_pixmap[NORMAL] = "Panel/panel-bg.png" + bg_pixmap[SELECTED] = "Panel/panel-bg.png" + bg_pixmap[INSENSITIVE] = "Panel/panel-bg.png" + bg_pixmap[PRELIGHT] = "Panel/panel-bg.png" + +} +class "*Panel*" style "panelbg" +class "*notif*" style "panelbg" +class "*Notif*" style "panelbg" +class "*Tray*" style "panelbg" +class "*tray*" style "panelbg" + +gtk-menu-drop-shadow = 1 +gtk-menu-shadow-delay = 0 +#gtk-icon-sizes = "panel-menu=24,24:panel=24,24:gtk-button=16,16:gtk-large-toolbar=24,24" +#gtk-icon-sizes = "gtk-large-toolbar=16,16:gtk-small-toolbar=16,16" + +style "default" +{ + GtkWidget::interior_focus = 7 + GtkWidget::focus_padding = 0 + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::default_outside_border = { 0, 0, 0, 0 } + + GtkRange::trough_border = 1 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + + GtkVScale::slider_length = 29 + GtkVScale::slider_width = 13 + GtkHScale::slider_length = 29 + GtkHScale::slider_width = 13 + + GtkPaned::handle_size = 6 + GtkScrollbar::min_slider_length = 50 + GtkCheckButton::indicator_size = 12 + GtkCheckButton::indicator_spacing = 3 + GtkMenuBar::internal_padding = 1 + GtkOptionMenu::indicator_size = { 15, 8 } + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + + xthickness = 2 + ythickness = 2 + + GtkEntry::cursor_color = "#0dd2e5" + GtkTextView::cursor_color = "#0dd2e5" + + fg[NORMAL] = "#0dd2e5" + fg[PRELIGHT] = "#0dd2e5" + fg[ACTIVE] = "#0dd2e5" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#333333" + + bg[NORMAL] = "#000000" + bg[PRELIGHT] = "#000000" + bg[ACTIVE] = "#222222" + bg[SELECTED] = "#444444" + bg[INSENSITIVE] = "#222222" + + base[NORMAL] = "#313131" + base[PRELIGHT] = "#313131" + base[ACTIVE] = "#033336" + # This affects selected icons in nautilus and selected text background + base[SELECTED] = "#05565d" + base[INSENSITIVE] = "#141414" + + text[NORMAL] = "#0dd2e5" + text[PRELIGHT] = "#0dd2e5" + text[ACTIVE] = "#0dd2e5" + text[SELECTED] = "#0dd2e5" + text[INSENSITIVE] = "#333333" + + + engine "pixmap" + { + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + +####################### SHADOWS ############################x + + image + { + function = SHADOW + shadow = IN + recolorable = FALSE + file = "Shadows/shadow-in.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = OUT + recolorable = TRUE + file = "Shadows/shadow-out.png" + #border = { 1, 1, 1, 1 } + stretch = TRUE + } + + image + { + function = SHADOW + shadow = ETCHED_IN + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = ETCHED_OUT + recolorable = TRUE + file = "Shadows/shadow-none.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW_GAP + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + gap_start_file = "Frame-Gap/frame-gap-start.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Frame-Gap/frame-gap-end.png" + gap_end_border = { 0, 2, 2, 0 } + gap_side = TOP + } + image + { + function = VLINE + recolorable = TRUE + file = "Lines/line-v.png" + border = { 1, 1, 0, 0 } + stretch = TRUE + } + image + { + function = HLINE + recolorable = TRUE + file = "Lines/line-h.png" + border = { 0, 0, 1, 1 } + stretch = TRUE + } + + # focus + + image + { + function = FOCUS + recolorable = TRUE + file = "Others/focus.png" + border = { 6, 0, 6, 0 } + stretch = TRUE + } + + # arrows + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = BOX + recolorable = TRUE + file = "Toolbar/toolbar.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +class "GtkWidget" style "default" + +#################### BUTTONS ####################### + +style "button" = "default" +{ + + engine "pixmap" + { + image + { + function = BOX + detail = "buttondefault" + recolorable = TRUE + file = "Buttons/button-default.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "Buttons/button-prelight.png" + border = { 4, 6, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = ACTIVE + file = "Buttons/button-pressed.png" + border = { 4, 6, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + file = "Buttons/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + file = "Buttons/button-normal.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "checkradiobutton" { + engine "pixmap" { + image + { + function = FLAT_BOX + recolorable = TRUE + file = "Check-Radio/highlight.png" + border = { 2, 5, 2, 5 } + stretch = TRUE + } + } +} + +class "GtkRadioButton" style "checkradiobutton" +class "GtkCheckButton" style "checkradiobutton" + + +style "optionmenu" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Combo/combo-prelight.png" + border = { 5, 7, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Combo/combo-normal.png" + border = { 5, 7, 5, 5} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Combo/combo-prelight.png" + border = { 5, 7, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Combo/combo-normal.png" + border = { 5, 7, 5, 5} + stretch = TRUE + } + image + { + function = TAB + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Combo/combo-arrow-insens.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = NORMAL + overlay_file = "Combo/combo-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = PRELIGHT + overlay_file = "Combo/combo-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + } +} + +widget_class "*Combo*" style "optionmenu" + +####################################################### + +style "radiobutton" = "default" +{ + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/option2.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + } +} + +########################################## + +#################################################### +style "checkbutton" = "default" +{ + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/check2.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + } +} + +####################### ENTRY #####################xx + +style "entry" = "default" +{ + + xthickness = 3 + ythickness = 1 + + GtkWidget::interior_focus = 0 + #GtkEntry::shadow_type = GTK_SHADOW_NONE + engine "pixmap" + { + image + { + function = FOCUS + recolorable = TRUE + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = NORMAL + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = NORMAL + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} + +################x SPINBUTTONS ################ + +style "spinbutton" = "entry" +{ + + + engine "pixmap" + { + image + { + function = ARROW + } + +############################# UP ######################xx + image + { + function = BOX + state = NORMAL + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-prelight.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-disable.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-prelight.png" + overlay_stretch = FALSE + } + +########################x DOWN ######################## + image + { + function = BOX + state = NORMAL + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-prelight.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-disable.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-prelight.png" + overlay_stretch = FALSE + } + } +} + +############################# SCROLLBAR #################### + +style "scrollbar" = "default" +{ + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-horiz.png" + border = { 19, 19, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-vert.png" + border = { 2, 2, 19, 19 } + stretch = TRUE + orientation = VERTICAL + } + +###########x SLIDERS ##################x + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-horiz.png" + border = { 10, 10, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-horiz.png" + border = { 10, 10, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-horiz-prelight.png" + border = { 10, 10, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-horiz-insens.png" + border = { 10, 10, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + +#############x verticals################xx + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 10, 10 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 10, 10 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-vert-prelight.png" + border = { 2, 2, 10, 10 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-vert-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + +###########x END SLIDERS ##################x + +########### Steppers ###################### +#### UP ####### + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-up.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-up-prelight.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-up-prelight.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-up-insens.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + + ######### DOWN ############ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-down.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-down-prelight.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-down-prelight.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-down-insens.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + +############ RIGHT ################ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-right.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-right-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-right-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-right-insens.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + +############### LEFT ################### + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-left.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-left-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-left-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-left-insens.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + } +} + +##################### PROGRESSBAR ###################x + +style "progressbar" { + fg[PRELIGHT] = "#333333" + text[PRELIGHT] = "#333333" + xthickness = 1 + ythickness = 1 + engine "pixmap" + { + image + { + function = BOX + detail = "trough" + file = "ProgressBar/trough-progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE +# orientation = HORIZONTAL + } + image + { + function = BOX + detail = "bar" + file = "ProgressBar/progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE +# orientation = HORIZONTAL + } + } +} + +############################# RANGE ####################### + +style "range" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-horizontal.png" + border = { 10, 10, 0, 19 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-vertical.png" + border = { 0, 19, 10, 10 } + stretch = TRUE + orientation = VERTICAL + } + +############### the sliders ############### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + +######################### VERTICAL ########################### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + +################### TOOLBAR ########################### + +style "toolbar" +{ + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar.png" + border = { 4, 4, 4, 4} + stretch = TRUE + } + } +} +widget_class "*BonoboDockItem" style "toolbar" +class "*BonoboDockItem" style "toolbar" + +widget_class "*HandleBox" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*Toolbar" style "toolbar" +class "*Toolbar" style "toolbar" + +##################### TOOLBAR BUTTONS ############################### + +style "toolbuttons" = "default" +{ + xthickness = 1 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + +image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Toolbar/toolbutton-prelight.png" + border = { 5, 6, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Toolbar/toolbutton-pressed.png" + border = {5, 6, 5, 5} + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} +widget_class "*Tool*GtkToggleButton" style "toolbuttons" +widget_class "*Tool*GtkButton" style "toolbuttons" + +################### PANEL GRAPHICS ################################# +################### MENU ################################# + +style "menu" = "default" +{ +#bg_pixmap[NORMAL] = "Menu-Menubar/menu-overlay.png" +xthickness = 3 +ythickness = 1 + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "menu" + file = "Menu-Menubar/menu.png" + border = { 34, 3, 3, 3 } + stretch = TRUE + } + } +} + +########################### Menuitem ############################# +style "menuitem" = "default" +{ + xthickness = 1 + fg[PRELIGHT] = "#000000" + text[PRELIGHT] = "#000000" + + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "Menu-Menubar/menuitem.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "Arrows/arrow-right-norm.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "Arrows/arrow-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + + +style "tearoffmenuitem" = "menuitem" +{ + engine "pixmap" + { + image + { + function = ARROW + file = "Arrows/arrow-left.png" + stretch = TRUE + arrow_direction = LEFT + } +# image +# { +# function = HLINE +# file = "cuthere.png" +# border = { 0, 0, 0, 0 } +# stretch = TRUE +# } + } +} + +style "notebook" = "default" +{ + + xthickness = 2 + ythickness = 2 + engine "pixmap" + { + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-bottom.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-top.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-left.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-right.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-top-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-bottom-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-left-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-right-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + +# How to draw boxes with a gap on one side (ie the page of a notebook) + + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 0, 0, 0, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = TOP + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 10, 10,5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 10, 10, 5, 5 } + gap_end_file = "Others/null.png" + gap_end_border = { 10, 10, 5, 5 } + gap_side = BOTTOM + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 0, 1, 0, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 2, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 2, 1, 0 } + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 0, 0, 1, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 2 } + gap_side = RIGHT + } + +# How to draw the box of a notebook when it isnt attached to a tab + + image + { + function = BOX + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 6,6,6,6 } + stretch = TRUE + #gap_side = TOP + } + } +} + +style "tooltips" = "default" +{ +# bg[NORMAL] = "#d3d89c" + bg[NORMAL] = "#000000" +} + +##################### RULER ################## + +style "ruler" = "default" +{ + engine "pixmap" { + image + { + function = BOX + recolorable = TRUE + detail = "vruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + detail = "hruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +################# HANDLES ###################x + + +style "handlebox" = "default" +{ + engine "pixmap" + { + image + { + #function = SHADOW + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = HANDLE + overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + } +} + +style "flat" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + } + } +} + +style "layout" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = BOX + detail = "button" + state = NORMAL + file = "Buttons/button-normal.png" + recolorable = TRUE + border = { 2, 3, 2, 3 } + stretch = TRUE + } + } +} + +##################### LISTHEADERS ###################x + +style "list-header" +{ + #Comment out the ythickness setting below for thicker column headers. + #ythickness = 0 + GtkTreeView::odd_row_color = "#313131" + GtkTreeView::even_row_color = "#1c1c1c" + +# fg[NORMAL] = "#0dd2e5" +# text[NORMAL] = "#0dd2e5" + + engine "pixmap" + { + + #This image is used to draw the headers of columns in list views when they are + #not selected. + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "ListHeaders/list_header.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #This image is used to draw the column headers in list views when they are + #clicked. + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "ListHeaders/list_header-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #Does this do anything? + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "ListHeaders/list_header-pressed.png" + border = { 2, 2, 2, 2} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = SELECTED + file = "ListHeaders/list_header-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "ListHeaders/list_header-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +widget_class "*List" style "list-header" +widget_class "*GtkTree*" style "list-header" +widget_class "*GtkCList*" style "list-header" +#widget_class "*Tree*" style "list-header" + +# This prevents Sodipodi from crashing while opening the +# Object-Style dialog. + +style "unstyle" +{ + engine "" + { + } +} + +# recognizable pressed toggle buttons +# SPIcons seem to erase the background first. That's why I can't use +# the button style. + +style "SPbutton" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "Shadows/shadow-out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + } + } +} + +style "treecol" +{ + bg[NORMAL] = "#000000" +} + + +# widget styles +class "GtkButton" style "button" +class "GtkRadioButton" style "radiobutton" +class "GtkRadioMenuItem" style "radiobutton" +class "GtkCheckButton" style "checkbutton" +class "GtkCheckMenuItem" style "checkbutton" +class "GtkOptionMenu" style "optionmenu" +class "GtkCombo*" style "optionmenu" +class "*Font*" style "optionmenu" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkRuler" style "ruler" +class "GtkScrollbar" style "scrollbar" + +class "GtkProgressBar" style "progressbar" +class "GtkRange" style "range" +class "GtkMenu" style "menu" + +class "GtkMenuBar*" style "menubar" + +widget_class "*MenuBar.*" style "menubar" + +#class "GtkImageMenuItem" style "menubar" + +class "GtkMenuItem" style "menuitem" +class "GtkTearoffMenuItem" style "menuitem" +class "GtkNotebook" style "notebook" +#class "GtkTextView" style "textview" +#class "GtkTreeView" style "treeview" +class "GtkToolbar" style "flat" +class "GtkHandleBox" style "handlebox" +class "GtkEventBox" style "flat" +class "GtkPaned" style "handlebox" +class "GtkLayout" style "layout" +class "SPButton" style "SPbutton" +widget "gtk-tooltips" style "tooltips" + +# prevent Sodipodi from crashing +class "SPColorSlider" style "unstyle" + +# colorize ugly white line at the top of the vertical scrollbar in Nautilus +style "searchbar" { +bg[NORMAL] = "#000000" +} +widget "*.nautilus-extra-view-widget" style:highest "searchbar" diff --git a/themes/Wii-Black/gtk-2.0/menubar.rc b/themes/Wii-Black/gtk-2.0/menubar.rc new file mode 100644 index 0000000..49221ff --- /dev/null +++ b/themes/Wii-Black/gtk-2.0/menubar.rc @@ -0,0 +1,57 @@ +#################### MENUBAR ################### + + +style "menubar" +{ + fg[NORMAL] = "#0dd2e5" + text[NORMAL] = "#0dd2e5" + fg[PRELIGHT] = "#0dd2e5" + fg[ACTIVE] = "#0dd2e5" + fg[INSENSITIVE] = "#0dd2e5" + text[PRELIGHT] = "#0dd2e5" + +xthickness = 1 +ythickness = 2 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/themes/Wii-Black/gtk-2.0/panel.rc b/themes/Wii-Black/gtk-2.0/panel.rc new file mode 100644 index 0000000..0662c2c --- /dev/null +++ b/themes/Wii-Black/gtk-2.0/panel.rc @@ -0,0 +1,108 @@ +#################### PANEL BACKGROUND #########################xx + +style "panelbg" +{ + xthickness = 0 + ythickness = 0 + bg_pixmap[NORMAL] = "Panel/panel-bg.png" + bg_pixmap[SELECTED] = "Panel/panel-bg.png" + bg_pixmap[INSENSITIVE] = "Panel/panel-bg.png" + bg_pixmap[PRELIGHT] = "Panel/panel-bg.png" + +} +class "*Panel*" style "panelbg" +class "*notif*" style "panelbg" +class "*Notif*" style "panelbg" +class "*Tray*" style "panelbg" +class "*tray*" style "panelbg" + +##################### PANEL BUTTONS ############################### + +style "panelbuttons" = "default" +{ + + fg[NORMAL] = "#ffffff" # very dark brown + fg[PRELIGHT] = "#ffffff" # text on buttons (hover) + fg[ACTIVE] = "#ffffff" # text on unfocused tabs + fg[SELECTED] = "#ffffff" # selected text on lists + fg[INSENSITIVE] = "#ffffff" # greyed "unused" text + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton3.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + } + +} +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" diff --git a/themes/Win7-Basic/gtk-2.0/Arrows/arrow-down.png b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-down.png new file mode 100755 index 0000000..0d6fe48 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-down.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Arrows/arrow-left.png b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-left.png new file mode 100755 index 0000000..ac5731d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-left.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right-norm.png b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right-norm.png new file mode 100755 index 0000000..2971a42 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right-norm.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right-prelight.png b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right-prelight.png new file mode 100755 index 0000000..9e2aeaf Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right.png b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right.png new file mode 100755 index 0000000..bb090da Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-right.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Arrows/arrow-up.png b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-up.png new file mode 100755 index 0000000..54d42dd Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Arrows/arrow-up.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Buttons/button-default.png b/themes/Win7-Basic/gtk-2.0/Buttons/button-default.png new file mode 100755 index 0000000..e3e8bb7 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Buttons/button-default.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Buttons/button-insensitive.png b/themes/Win7-Basic/gtk-2.0/Buttons/button-insensitive.png new file mode 100755 index 0000000..cfc673e Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Buttons/button-insensitive.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Buttons/button-normal.png b/themes/Win7-Basic/gtk-2.0/Buttons/button-normal.png new file mode 100755 index 0000000..3c99d93 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Buttons/button-normal.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Buttons/button-prelight.png b/themes/Win7-Basic/gtk-2.0/Buttons/button-prelight.png new file mode 100755 index 0000000..0831f1b Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Buttons/button-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Buttons/button-pressed.png b/themes/Win7-Basic/gtk-2.0/Buttons/button-pressed.png new file mode 100755 index 0000000..e2f8c6a Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Buttons/button-pressed.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/check1.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/check1.png new file mode 100755 index 0000000..0b3eac1 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/check1.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/check2.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/check2.png new file mode 100755 index 0000000..d56551d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/check2.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/check3.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/check3.png new file mode 100755 index 0000000..22f15a3 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/check3.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/check4.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/check4.png new file mode 100755 index 0000000..ae66ee7 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/check4.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/checklight.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/checklight.png new file mode 100755 index 0000000..2b8964b Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/checklight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/highlight.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/highlight.png new file mode 100755 index 0000000..a8b71b3 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/highlight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/option1.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/option1.png new file mode 100755 index 0000000..14877a7 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/option1.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/option2.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/option2.png new file mode 100755 index 0000000..09e1398 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/option2.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Check-Radio/option4.png b/themes/Win7-Basic/gtk-2.0/Check-Radio/option4.png new file mode 100755 index 0000000..01ee35f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Check-Radio/option4.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/button-pressed.png b/themes/Win7-Basic/gtk-2.0/Combo/button-pressed.png new file mode 100755 index 0000000..e96f66f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/button-pressed.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-active.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-active.png new file mode 100755 index 0000000..e30c5b2 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-active.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow-insens.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow-insens.png new file mode 100755 index 0000000..63d4616 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow-prelight.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow-prelight.png new file mode 100755 index 0000000..84732c6 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow.png new file mode 100755 index 0000000..7f14b13 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-arrow.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-inactive.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-inactive.png new file mode 100755 index 0000000..cfc673e Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-inactive.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-normal.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-normal.png new file mode 100755 index 0000000..3c99d93 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-normal.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Combo/combo-prelight.png b/themes/Win7-Basic/gtk-2.0/Combo/combo-prelight.png new file mode 100755 index 0000000..85cf7de Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Combo/combo-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame-gap-end.png b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame-gap-end.png new file mode 100755 index 0000000..5bf2523 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame-gap-end.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame-gap-start.png b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame-gap-start.png new file mode 100755 index 0000000..7afa18d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame-gap-start.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame1.png b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame1.png new file mode 100755 index 0000000..95bb7c1 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame1.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame2.png b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame2.png new file mode 100755 index 0000000..f1dcc39 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Frame-Gap/frame2.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Handles/handle-h.png b/themes/Win7-Basic/gtk-2.0/Handles/handle-h.png new file mode 100755 index 0000000..de2dc0b Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Handles/handle-h.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Handles/handle-v.png b/themes/Win7-Basic/gtk-2.0/Handles/handle-v.png new file mode 100755 index 0000000..e90ae2e Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Handles/handle-v.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Lines/line-h.png b/themes/Win7-Basic/gtk-2.0/Lines/line-h.png new file mode 100755 index 0000000..0fa7444 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Lines/line-h.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Lines/line-v.png b/themes/Win7-Basic/gtk-2.0/Lines/line-v.png new file mode 100755 index 0000000..0de8814 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Lines/line-v.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-insens.png b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-insens.png new file mode 100755 index 0000000..1183169 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-prelight.png b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-prelight.png new file mode 100755 index 0000000..4959673 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-pressed.png b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-pressed.png new file mode 100755 index 0000000..2bd6fc9 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header-pressed.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header.png b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header.png new file mode 100755 index 0000000..1e51459 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ListHeaders/list_header.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menu.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menu.png new file mode 100755 index 0000000..7829612 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menu.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-blue.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-blue.png new file mode 100755 index 0000000..082e3ee Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-blue.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-inactive.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-inactive.png new file mode 100755 index 0000000..082e3ee Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-inactive.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-item.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-item.png new file mode 100755 index 0000000..68a3461 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-item.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-light.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-light.png new file mode 100755 index 0000000..5c4bbad Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menubar-light.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menuitem.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menuitem.png new file mode 100755 index 0000000..82aa276 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menuitem.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menuline.png b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menuline.png new file mode 100755 index 0000000..77b4679 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Menu-Menubar/menuline.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Others/focus.png b/themes/Win7-Basic/gtk-2.0/Others/focus.png new file mode 100755 index 0000000..c41abe1 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Others/focus.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Others/null.png b/themes/Win7-Basic/gtk-2.0/Others/null.png new file mode 100755 index 0000000..9d7e6be Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Others/null.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Others/ruler.png b/themes/Win7-Basic/gtk-2.0/Others/ruler.png new file mode 100755 index 0000000..678ee3c Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Others/ruler.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Panel/panel-bg.png b/themes/Win7-Basic/gtk-2.0/Panel/panel-bg.png new file mode 100644 index 0000000..e104b40 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Panel/panel-bg.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Panel/panelbutton1.png b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton1.png new file mode 100644 index 0000000..8abed76 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton1.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Panel/panelbutton2.png b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton2.png new file mode 100644 index 0000000..8abed76 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton2.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Panel/panelbutton3.png b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton3.png new file mode 100644 index 0000000..8abed76 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton3.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Panel/panelbutton4.png b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton4.png new file mode 100755 index 0000000..0be7d89 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Panel/panelbutton4.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ProgressBar/progressbar-horiz.png b/themes/Win7-Basic/gtk-2.0/ProgressBar/progressbar-horiz.png new file mode 100755 index 0000000..9a19b6d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ProgressBar/progressbar-horiz.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ProgressBar/progressbar-vert.png b/themes/Win7-Basic/gtk-2.0/ProgressBar/progressbar-vert.png new file mode 100755 index 0000000..22ac7bb Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ProgressBar/progressbar-vert.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ProgressBar/trough-progressbar-horiz.png b/themes/Win7-Basic/gtk-2.0/ProgressBar/trough-progressbar-horiz.png new file mode 100755 index 0000000..f4427be Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ProgressBar/trough-progressbar-horiz.png differ diff --git a/themes/Win7-Basic/gtk-2.0/ProgressBar/trough-progressbar-vert.png b/themes/Win7-Basic/gtk-2.0/ProgressBar/trough-progressbar-vert.png new file mode 100755 index 0000000..c69a387 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/ProgressBar/trough-progressbar-vert.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/null.png b/themes/Win7-Basic/gtk-2.0/Range/null.png new file mode 100755 index 0000000..4136605 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/null.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/slider-horiz-prelight.png b/themes/Win7-Basic/gtk-2.0/Range/slider-horiz-prelight.png new file mode 100755 index 0000000..d7aaf88 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/slider-horiz-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/slider-horiz.png b/themes/Win7-Basic/gtk-2.0/Range/slider-horiz.png new file mode 100755 index 0000000..602fc70 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/slider-horiz.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/slider-vert-prelight.png b/themes/Win7-Basic/gtk-2.0/Range/slider-vert-prelight.png new file mode 100755 index 0000000..b48d1f1 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/slider-vert-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/slider-vert.png b/themes/Win7-Basic/gtk-2.0/Range/slider-vert.png new file mode 100755 index 0000000..f8dfa88 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/slider-vert.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/trough-horizontal.png b/themes/Win7-Basic/gtk-2.0/Range/trough-horizontal.png new file mode 100755 index 0000000..6801570 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/trough-horizontal.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Range/trough-vertical.png b/themes/Win7-Basic/gtk-2.0/Range/trough-vertical.png new file mode 100755 index 0000000..14b72c6 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Range/trough-vertical.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/scroll-thumb-horiz.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/scroll-thumb-horiz.png new file mode 100755 index 0000000..cd89086 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/scroll-thumb-horiz.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/scroll-thumb-vert.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/scroll-thumb-vert.png new file mode 100755 index 0000000..45ff471 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/scroll-thumb-vert.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz-insens.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz-insens.png new file mode 100755 index 0000000..7758f98 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz-prelight.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz-prelight.png new file mode 100755 index 0000000..4d9ace6 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz.png new file mode 100755 index 0000000..a0ec27d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-horiz.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert-insens.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert-insens.png new file mode 100755 index 0000000..064364e Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert-prelight.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert-prelight.png new file mode 100755 index 0000000..bc4e62c Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert.png new file mode 100755 index 0000000..df1805c Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/slider-vert.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down-insens.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down-insens.png new file mode 100755 index 0000000..c8cd94f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down-prelight.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down-prelight.png new file mode 100755 index 0000000..b1e2608 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down.png new file mode 100755 index 0000000..489641c Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-down.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left-insens.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left-insens.png new file mode 100755 index 0000000..219f7a7 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left-prelight.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left-prelight.png new file mode 100755 index 0000000..b9eb381 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left.png new file mode 100755 index 0000000..adc46e0 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-left.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right-insens.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right-insens.png new file mode 100755 index 0000000..d8d3b5e Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right-prelight.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right-prelight.png new file mode 100755 index 0000000..be8a755 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right.png new file mode 100755 index 0000000..0d761c4 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-right.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up-insens.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up-insens.png new file mode 100755 index 0000000..b09966f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up-insens.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up-prelight.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up-prelight.png new file mode 100755 index 0000000..162ab07 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up.png new file mode 100755 index 0000000..eae274f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/stepper-up.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png new file mode 100755 index 0000000..21dfbe9 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Scrollbars/trough-scrollbar-vert.png b/themes/Win7-Basic/gtk-2.0/Scrollbars/trough-scrollbar-vert.png new file mode 100755 index 0000000..dcf5619 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Scrollbars/trough-scrollbar-vert.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/entry-shadow-in.png b/themes/Win7-Basic/gtk-2.0/Shadows/entry-shadow-in.png new file mode 100755 index 0000000..c8dccd5 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/entry-shadow-in.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/shadow-etched-out.png b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-etched-out.png new file mode 100755 index 0000000..d6cb805 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-etched-out.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/shadow-in.png b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-in.png new file mode 100755 index 0000000..6f04972 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-in.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/shadow-none.png b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-none.png new file mode 100755 index 0000000..f28ca27 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-none.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/shadow-out.png b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-out.png new file mode 100755 index 0000000..f02b72a Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/shadow-out.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/text-entry.png b/themes/Win7-Basic/gtk-2.0/Shadows/text-entry.png new file mode 100755 index 0000000..06db589 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/text-entry.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Shadows/text.png b/themes/Win7-Basic/gtk-2.0/Shadows/text.png new file mode 100755 index 0000000..0f0434f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Shadows/text.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin-down-disable.png b/themes/Win7-Basic/gtk-2.0/Spin/spin-down-disable.png new file mode 100755 index 0000000..3aa8e7d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin-down-disable.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin-down-prelight.png b/themes/Win7-Basic/gtk-2.0/Spin/spin-down-prelight.png new file mode 100755 index 0000000..0020b78 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin-down-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin-down.png b/themes/Win7-Basic/gtk-2.0/Spin/spin-down.png new file mode 100755 index 0000000..c6e68e2 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin-down.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin-up-disable.png b/themes/Win7-Basic/gtk-2.0/Spin/spin-up-disable.png new file mode 100755 index 0000000..85b8abb Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin-up-disable.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin-up-prelight.png b/themes/Win7-Basic/gtk-2.0/Spin/spin-up-prelight.png new file mode 100755 index 0000000..bd3bfc6 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin-up-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin-up.png b/themes/Win7-Basic/gtk-2.0/Spin/spin-up.png new file mode 100755 index 0000000..1868462 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin-up.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Spin/spin.png b/themes/Win7-Basic/gtk-2.0/Spin/spin.png new file mode 100755 index 0000000..f5a8219 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Spin/spin.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/notebook.png b/themes/Win7-Basic/gtk-2.0/Tabs/notebook.png new file mode 100755 index 0000000..827c9b0 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/notebook.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/null.png b/themes/Win7-Basic/gtk-2.0/Tabs/null.png new file mode 100755 index 0000000..079a05a Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/null.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-bottom-active.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-bottom-active.png new file mode 100755 index 0000000..b7244be Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-bottom-active.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-bottom.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-bottom.png new file mode 100755 index 0000000..c5059b6 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-bottom.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-left-active.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-left-active.png new file mode 100755 index 0000000..8732a21 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-left-active.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-left.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-left.png new file mode 100755 index 0000000..0824246 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-left.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-right-active.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-right-active.png new file mode 100755 index 0000000..d00bc6c Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-right-active.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-right.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-right.png new file mode 100755 index 0000000..1f923b5 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-right.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-top-active.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-top-active.png new file mode 100755 index 0000000..4703714 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-top-active.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Tabs/tab-top.png b/themes/Win7-Basic/gtk-2.0/Tabs/tab-top.png new file mode 100755 index 0000000..53a1c20 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Tabs/tab-top.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Toolbar/toolbar.png b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbar.png new file mode 100755 index 0000000..a39741e Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbar.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-normal.png b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-normal.png new file mode 100755 index 0000000..ab210df Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-normal.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-prelight.png b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-prelight.png new file mode 100755 index 0000000..ab210df Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-prelight.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-pressed.png b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-pressed.png new file mode 100755 index 0000000..ece6300 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-pressed.png differ diff --git a/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-toggled.png b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-toggled.png new file mode 100755 index 0000000..48b466f Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/Toolbar/toolbutton-toggled.png differ diff --git a/themes/Win7-Basic/gtk-2.0/gtkrc b/themes/Win7-Basic/gtk-2.0/gtkrc new file mode 100755 index 0000000..7ebf1c7 --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/gtkrc @@ -0,0 +1,1912 @@ +# Azur 0.4 +################Comment out if you don't need################################################ +include "icons/iconrc" +include "menubar-blue.rc" +include "panel.rc" +#gtk-menu-drop-shadow = 1 +#gtk-menu-shadow-delay = 0 +gtk-icon-sizes = "panel-menu=24,24:panel=24,24:gtk-button=16,16:gtk-large-toolbar=24,24" +#:gtk-large-toolbar=28,28:gtk-small-toolbar=24,24" +############################################################################################# + +style "default" +{ + GtkWidget::interior_focus = 7 + GtkWidget::focus_padding = 0 + GtkButton::default_border = { 1, 1, 1, 1 } + GtkButton::default_outside_border = { 2, 2, 2, 2 } + + GtkRange::trough_border = 1 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + + GtkVScale::slider_length = 11 + GtkVScale::slider_width = 21 + GtkHScale::slider_length = 11 + GtkHScale::slider_width = 21 + + GtkPaned::handle_size = 6 + GtkScrollbar::min_slider_length = 50 + GtkCheckButton::indicator_size = 12 + GtkCheckButton::indicator_spacing = 3 + GtkMenuBar::internal_padding = 1 + GtkOptionMenu::indicator_size = { 15, 8 } + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } +GtkStatusbar::shadow_type = GTK_SHADOW_NONE +GtkSpinButton::shadow_type = GTK_SHADOW_NONE + + + xthickness = 1 + ythickness = 1 + + + fg[NORMAL] = "#353535" + fg[ACTIVE] = "#353535" + fg[PRELIGHT] = "#000000" + fg[SELECTED] = "#000000" + fg[INSENSITIVE] = "#9B9B9B" + + bg[NORMAL] = "#ebebeb" + bg[ACTIVE] = "#ebebeb" + bg[PRELIGHT] = "#FFFFFF" + bg[SELECTED] = "#B2C3D0" + bg[INSENSITIVE] = "#ffffff" + + base[NORMAL] = "#ffffff" + base[ACTIVE] = "#5fb9ed" + base[PRELIGHT] = "#FFFFFF" + base[INSENSITIVE]= "#f4f4f4" + base[SELECTED] = "#5fb9ed" + + text[INSENSITIVE]= "#9B9B9B" + text[SELECTED] = "#ffffff" + text[ACTIVE] = "#ffffff" + text[PRELIGHT] = "#353535" + + + + engine "pixmap" + { + + + + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + +####################### SHADOWS ############################x + + image + { + function = SHADOW + shadow = IN + recolorable = FALSE + file = "Shadows/shadow-in.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = OUT + recolorable = TRUE + file = "Shadows/shadow-out.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + + + + image + { + function = SHADOW + shadow = ETCHED_IN + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = ETCHED_OUT + recolorable = TRUE + file = "Shadows/shadow-none.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW_GAP + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + gap_start_file = "Frame-Gap/frame-gap-start.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Frame-Gap/frame-gap-end.png" + gap_end_border = { 0, 2, 2, 0 } + gap_side = TOP + } + image + { + function = VLINE + recolorable = TRUE + file = "Lines/line-v.png" + border = { 1, 1, 0, 0 } + stretch = TRUE + } + image + { + function = HLINE + recolorable = TRUE + file = "Lines/line-h.png" + border = { 0, 0, 1, 1 } + stretch = TRUE + } + + # focus + + image + { + function = FOCUS + recolorable = TRUE + file = "Others/focus.png" + border = { 6, 0, 6, 0 } + stretch = TRUE + } + + # arrows + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = BOX + recolorable = TRUE + file = "Toolbar/toolbar.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } +} + +class "GtkWidget" style "default" + +#################### BUTTONS ####################### + +style "button" = "default" +{ + + + + engine "pixmap" + { + image + { + function = BOX + detail = "buttondefault" + recolorable = TRUE + file = "Buttons/button-default.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "Buttons/button-prelight.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = ACTIVE + file = "Buttons/button-pressed.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + file = "Buttons/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + file = "Buttons/button-normal.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + +style "checkradiobutton" { + engine "pixmap" { + image + { + function = FLAT_BOX + recolorable = TRUE + file = "Check-Radio/highlight.png" + border = { 2, 5, 2, 5 } + stretch = TRUE + } + } +} + +class "GtkRadioButton" style "checkradiobutton" +class "GtkCheckButton" style "checkradiobutton" + + +style "optionmenu" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Combo/combo-prelight.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Combo/combo-normal.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Combo/combo-prelight.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Combo/combo-normal.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = TAB + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Combo/combo-arrow-insens.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = NORMAL + overlay_file = "Combo/combo-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = PRELIGHT + overlay_file = "Combo/combo-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + } +} + +widget_class "*Combo*" style "optionmenu" + +############################################################################### +###Check vagy mi.... ######## + +style "radiobutton" = "default" +{ + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/option2.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + + + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + + } +} + + + + + + + +################################################################################ + + + + + + + +################################################################################ +style "checkbutton" = "default" +{ + engine "pixmap" + { + #This is the image used to draw an unchecked box. + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + #This is the image used to draw a selected (checked) box. + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/check2.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + + + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + + #Use this image to draw the highlight when a line with a check box + #is moused over. + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + + } +} + + +####################### ENTRY #####################xx + +style "entry" = "default" +{ + + xthickness = 3 + ythickness = 1 + + GtkWidget::interior_focus = 0 + #GtkEntry::shadow_type = GTK_SHADOW_NONE + engine "pixmap" + { + image + { + function = FOCUS + recolorable = TRUE + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = NORMAL + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = NORMAL + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + + } +} + +################x SPINBUTTONS ################ + +style "spinbutton" = "entry" +{ + + + engine "pixmap" + { + image + { + function = ARROW + } + +############################# UP ######################xx + image + { + function = BOX + state = NORMAL + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-prelight.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-disable.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-up-prelight.png" + overlay_stretch = FALSE + } + + +###########################################x DOWN ######################## + image + { + function = BOX + state = NORMAL + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-prelight.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-disable.png" + overlay_stretch = FALSE + } + + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Spin/spin-down-prelight.png" + overlay_stretch = FALSE + } + + + + + + } +} + +############################# SCROLLBAR #################### + +style "scrollbar" = "default" +{ + engine "pixmap" + { + + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-horiz.png" + border = { 19, 19, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-vert.png" + border = { 2, 2, 19, 19 } + stretch = TRUE + orientation = VERTICAL + } + + +###########x SLIDERS ##################x + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-horiz-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-horiz-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + overlay_file = "Scrollbars/scroll-thumb-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + + } + +#############x verticals################xx + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-vert-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-vert-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + overlay_file = "Scrollbars/scroll-thumb-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + + } + + +###########x END SLIDERS ##################x + +########### Steppers ###################### +#### UP ####### + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-up.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-up-prelight.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-up-prelight.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-up-insens.png" + #border = { 12, 2, 2, 9 } + stretch = TRUE + arrow_direction = UP + } + + ######### DOWN ############ + + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-down.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-down-prelight.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-down-prelight.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-down-insens.png" + #border = { 12, 2, 10, 2 } + stretch = TRUE + arrow_direction = DOWN + } + +############ RIGHT ################ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-right.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-right-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-right-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-right-insens.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = RIGHT + } + +############### LEFT ################### + + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-left.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-left-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-left-prelight.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-left-insens.png" + #border = { 2, 9, 2, 13 } + stretch = TRUE + arrow_direction = LEFT + } + + + + } +} + +##################### PROGRESSBAR ###################x + +style "progressbar" { + fg[PRELIGHT] = "#ffffff" + text[PRELIGHT] = "#ffffff" + xthickness = 1 + ythickness = 1 + engine "pixmap" + { + image + { + function = BOX + + detail = "trough" + file = "ProgressBar/trough-progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE +# orientation = HORIZONTAL + } + + image + { + function = BOX + + detail = "bar" + file = "ProgressBar/progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE +# orientation = HORIZONTAL + } + + + + + + + } +} + +############################# RANGE ####################### + +style "range" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-horizontal.png" + border = { 10, 10, 1, 19 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-vertical.png" + border = { 0, 19, 10, 10 } + stretch = TRUE + orientation = VERTICAL + } +############### the sliders ############### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + +######################### VERTICAL ########################### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + + + + + + +################### TOOLBAR ########################### + + +style "toolbar" +{ + + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar.png" + border = { 4, 4, 4, 4} + stretch = TRUE + } + } +} +widget_class "*BonoboDockItem" style "toolbar" +class "*BonoboDockItem" style "toolbar" + +widget_class "*HandleBox" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*Toolbar" style "toolbar" +class "*Toolbar" style "toolbar" + + + +##################### TOOLBAR BUTTONS ############################### + + + + + +style "toolbuttons" = "default" +{ + + + + xthickness = 1 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + +image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Toolbar/toolbutton-prelight.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Toolbar/toolbutton-pressed.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + + } + +} +widget_class "*Tool*GtkToggleButton" style "toolbuttons" +widget_class "*Tool*GtkButton" style "toolbuttons" + + + + + + + + +############################# PANEL GRAPHICS ################################# + + + + + +############################# MENU ################################# + + + + + +style "menu" = "default" +{ +#bg_pixmap[NORMAL] = "Menu-Menubar/menu-overlay.png" +xthickness = 3 +ythickness = 1 + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "menu" + file = "Menu-Menubar/menu.png" + border = { 34, 3, 3, 3 } + stretch = TRUE + } + } +} + + +########################### Menuitem ############################# +style "menuitem" = "default" +{ + xthickness = 1 + fg[PRELIGHT] = "#000000" + text[PRELIGHT] = "#000000" + + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "Menu-Menubar/menuitem.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "Arrows/arrow-right-norm.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "Arrows/arrow-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + } +} + + +style "tearoffmenuitem" = "menuitem" +{ + engine "pixmap" + { + image + { + function = ARROW + file = "Arrows/arrow-left.png" + stretch = TRUE + arrow_direction = LEFT + } +# image +# { +# function = HLINE +# file = "cuthere.png" +# border = { 0, 0, 0, 0 } +# stretch = TRUE +# } + } +} + + + + + + + + + + + + + + + +style "notebook" = "default" +{ + + xthickness = 2 + ythickness = 2 + engine "pixmap" + { + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-bottom.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-top.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-left.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-right.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-top-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-bottom-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-left-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + + file = "Tabs/tab-right-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } +# +# How to draw boxes with a gap on one side (ie the page of a notebook) +# + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 0, 0, 0, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = TOP + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 10, 10,5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 10, 10, 5, 5 } + gap_end_file = "Others/null.png" + gap_end_border = { 10, 10, 5, 5 } + gap_side = BOTTOM + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 0, 1, 0, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 2, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 2, 1, 0 } + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Others/null.png" + gap_border = { 0, 0, 1, 0 } + gap_start_file = "Others/null.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 2 } + gap_side = RIGHT + } +# +# How to draw the box of a notebook when it isnt attached to a tab +# + image + { + function = BOX + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 6,6,6,6 } + stretch = TRUE + #gap_side = TOP + } + } +} + + + + + + + + + + + + + + + + +style "tooltips" = "default" +{ + bg[NORMAL] = "#fffcdb" +} + +##################### RULER ################## + +style "ruler" = "default" +{ + engine "pixmap" { + image + { + function = BOX + recolorable = TRUE + detail = "vruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + detail = "hruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +################# HANDLES ###################x + + +style "handlebox" = "default" +{ + engine "pixmap" + { + image + { + #function = SHADOW + } + + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = HANDLE + overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + } +} + + +style "flat" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + } + } +} + + +style "layout" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = BOX + detail = "button" + state = NORMAL + file = "Buttons/button-normal.png" + recolorable = TRUE + border = { 2, 3, 2, 3 } + stretch = TRUE + } + } +} + +##################### LISTHEADERS ###################x + +style "list-header" +{ + #Comment out the ythickness setting below for thicker column headers. + #ythickness = 0 + GtkTreeView::odd_row_color = "#f4f4f4" + GtkTreeView::even_row_color = "#f4f4f4" + +# fg[NORMAL] = "#ffffff" +# text[NORMAL] = "#ffffff" + + engine "pixmap" + { + + #This image is used to draw the headers of columns in list views when they are + #not selected. + image + { + function = BOX + recolorable = TRUE + + state = NORMAL + file = "ListHeaders/list_header.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #This image is used to draw the column headers in list views when they are + #clicked. + image + { + function = BOX + recolorable = TRUE + + state = PRELIGHT + file = "ListHeaders/list_header-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + #Does this do anything? + image + { + function = BOX + recolorable = TRUE + + state = ACTIVE + file = "ListHeaders/list_header-pressed.png" + border = { 2, 2, 2, 2} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + + state = SELECTED + file = "ListHeaders/list_header-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + + state = INSENSITIVE + file = "ListHeaders/list_header-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + + } + +} + +widget_class "*List" style "list-header" +widget_class "*GtkTree*" style "list-header" +widget_class "*GtkCList*" style "list-header" +#widget_class "*Tree*" style "list-header" + + +# This prevents Sodipodi from crashing while opening the +# Object-Style dialog. + + +style "unstyle" +{ + engine "" + { + } +} + +# recognizable pressed toggle buttons +# SPIcons seem to erase the background first. That's why I can't use +# the button style. + + +style "SPbutton" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "Shadows/shadow-out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + } + } +} + + +style "treecol" +{ + bg[NORMAL] = "#000000" +} + + +class "GtkButton" style "button" +class "GtkRadioButton" style "radiobutton" +class "GtkRadioMenuItem" style "radiobutton" +class "GtkCheckButton" style "checkbutton" +class "GtkCheckMenuItem" style "checkbutton" +class "GtkOptionMenu" style "optionmenu" +class "GtkCombo*" style "optionmenu" +class "*Font*" style "optionmenu" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkRuler" style "ruler" +class "GtkScrollbar" style "scrollbar" + +class "GtkProgressBar" style "progressbar" +class "GtkRange" style "range" +class "GtkMenu" style "menu" + +class "GtkMenuBar*" style "menubar" + + +widget_class "*MenuBar.*" style "menubar" + + + +#class "GtkImageMenuItem" style "menubar" + +class "GtkMenuItem" style "menuitem" +class "GtkTearoffMenuItem" style "menuitem" +class "GtkNotebook" style "notebook" +#class "GtkTextView" style "textview" +#class "GtkTreeView" style "treeview" +class "GtkToolbar" style "flat" +class "GtkHandleBox" style "handlebox" +class "GtkEventBox" style "flat" +class "GtkPaned" style "handlebox" +class "GtkLayout" style "layout" +class "SPButton" style "SPbutton" +widget "gtk-tooltips" style "tooltips" +# prevent Sodipodi from crashing +class "SPColorSlider" style "unstyle" diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-go-back.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-back.png new file mode 100755 index 0000000..39c58b3 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-back.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-go-down.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-down.png new file mode 100755 index 0000000..5f47840 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-down.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-go-forward.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-forward.png new file mode 100755 index 0000000..89a0627 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-forward.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-go-up.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-up.png new file mode 100755 index 0000000..ab2aebc Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-go-up.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-home.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-home.png new file mode 100755 index 0000000..53cb29d Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-home.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-refresh.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-refresh.png new file mode 100755 index 0000000..da87767 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-refresh.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-stop.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-stop.png new file mode 100755 index 0000000..9fee0a7 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-stop.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-zoom-in.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-zoom-in.png new file mode 100755 index 0000000..e7949c5 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-zoom-in.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/gtk-zoom-out.png b/themes/Win7-Basic/gtk-2.0/icons/gtk-zoom-out.png new file mode 100755 index 0000000..a4888ed Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/gtk-zoom-out.png differ diff --git a/themes/Win7-Basic/gtk-2.0/icons/iconrc b/themes/Win7-Basic/gtk-2.0/icons/iconrc new file mode 100755 index 0000000..f4b7be5 --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/icons/iconrc @@ -0,0 +1,19 @@ +#pixmap_path "icons" +style "icon-style" +{ + + stock["gtk-go-back"] = {{ "gtk-go-back.png", *, *, * }} + stock["gtk-go-down"] = {{ "gtk-go-down.png", *, *, * }} + stock["gtk-go-forward"] = {{ "gtk-go-forward.png", *, *, * }} + + stock["gtk-go-up"] = {{ "gtk-go-up.png", *, *, * }} + stock["gtk-refresh"] = {{ "gtk-refresh.png", *, *, * }} + stock["gtk-stop"] = {{ "gtk-stop.png", *, *, * }} + stock["gtk-home"] = {{ "gtk-home.png", *, *, * }} + stock["gtk-home"] = {{ "gtk-home.png", *, *, * }} + stock["gtk-zoom-in"] = {{ "gtk-zoom-in.png", *, *, * }} + stock["gtk-zoom-out"] = {{ "gtk-zoom-out.png", *, *, * }} + + +} +class "GtkWidget" style "icon-style" diff --git a/themes/Win7-Basic/gtk-2.0/icons/logo.png b/themes/Win7-Basic/gtk-2.0/icons/logo.png new file mode 100755 index 0000000..39c58b3 Binary files /dev/null and b/themes/Win7-Basic/gtk-2.0/icons/logo.png differ diff --git a/themes/Win7-Basic/gtk-2.0/menubar-blue.rc b/themes/Win7-Basic/gtk-2.0/menubar-blue.rc new file mode 100755 index 0000000..6212d3a --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/menubar-blue.rc @@ -0,0 +1,59 @@ +#################### MENUBAR ################### + + +style "menubar" +{ +#font_name = "Segoe UI Bold 9" +#font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#ffffff" + fg[ACTIVE] = "#ffffff" +# fg[INSENSITIVE] = "#DDE4FF" +# text[PRELIGHT] = "#DDE4FF" + +xthickness = 1 +ythickness = 2 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-blue.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/themes/Win7-Basic/gtk-2.0/menubar-green.rc b/themes/Win7-Basic/gtk-2.0/menubar-green.rc new file mode 100755 index 0000000..53cb713 --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/menubar-green.rc @@ -0,0 +1,59 @@ +#################### MENUBAR ################### + + +style "menubar" +{ +#font_name = "Segoe UI Bold 9" +font_name = "Sans 8" + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#9DDBA4" + fg[ACTIVE] = "#9DDBA4" +# fg[INSENSITIVE] = "#DDE4FF" +# text[PRELIGHT] = "#DDE4FF" + +xthickness = 1 +ythickness = 2 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-green.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/themes/Win7-Basic/gtk-2.0/menubar-light.rc b/themes/Win7-Basic/gtk-2.0/menubar-light.rc new file mode 100755 index 0000000..129f6ce --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/menubar-light.rc @@ -0,0 +1,59 @@ +#################### MENUBAR ################### + + +style "menubar" +{ +#font_name = "Segoe UI Bold 9" +font_name = "Sans 8" + fg[NORMAL] = "#000000" + text[NORMAL] = "#000000" + fg[PRELIGHT] = "#404040" + fg[ACTIVE] = "#404040" + fg[INSENSITIVE] = "#DDE4FF" + text[PRELIGHT] = "#DDE4FF" + +xthickness = 1 +ythickness = 2 + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-light.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-light.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-inactive.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/themes/Win7-Basic/gtk-2.0/panel-light.rc b/themes/Win7-Basic/gtk-2.0/panel-light.rc new file mode 100755 index 0000000..fa1873a --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/panel-light.rc @@ -0,0 +1,111 @@ + + +##################### PANEL BACKGROUND ############################### + + + +style "panelbg" +{ + xthickness = 0 + ythickness = 0 + bg_pixmap[NORMAL] = "Panel/panel-bg-light.png" + + + +} +class "*Panel*" style "panelbg" + +widget_class "*Mail*" style "panelbg" + +#widget_class "*applet*" style "panelbg" +#widget_class "*Applet*" style "panelbg" +#widget_class "*manager*" style "panelbg" + +##################### PANEL BUTTONS ############################### + +style "panelbuttons" = "default" +{ + + + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton1.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton2.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton1.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton3.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton2.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } + +} +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" + + diff --git a/themes/Win7-Basic/gtk-2.0/panel.rc b/themes/Win7-Basic/gtk-2.0/panel.rc new file mode 100755 index 0000000..24f8241 --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/panel.rc @@ -0,0 +1,128 @@ +#################### PANEL BACKGROUND #########################xx + +style "panelbg" +{ + xthickness = 0 + ythickness = 0 +bg_pixmap[NORMAL] = "Panel/panel-bg.png" +#bg_pixmap[SELECTED] = "Panel/panel-bg.png" +#bg_pixmap[INSENSITIVE] = "Panel/panel-bg.png" +#bg_pixmap[PRELIGHT] = "Panel/panel-bg.png" + + + +} +class "*Panel*" style "panelbg" +class "*notif*" style "panelbg" +class "*Notif*" style "panelbg" +class "*Tray*" style "panelbg" +class "*tray*" style "panelbg" + +style "panel" +{ + fg[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#ffffff" + fg[ACTIVE] = "#ffffff" + fg[SELECTED] = "#ffffff" + + +} +class "*Panel*" style "panel" +widget_class "*Panel*GtkToggleButton" style "panel" +widget_class "*Panel*GtkButton" style "panel" +widget_class "*.Panel*Button*GtkLabel" style "panel" +widget_class "*.Panel*GtkLabel" style "panel" +widget_class "*applet*" style "panelbg" +widget_class "*Applet*" style "panelbg" + +##################### PANEL BUTTONS ############################### + +style "panelbuttons" = "default" +{ + + fg[NORMAL] = "#ffffff" # very dark brown + fg[PRELIGHT] = "#ffffff" # text on buttons (hover) + fg[ACTIVE] = "#ffffff" # text on unfocused tabs + fg[SELECTED] = "#ffffff" # selected text on lists + fg[INSENSITIVE] = "#ffffff" # greyed "unused" text + + xthickness = 1 + ythickness = 1 + + GtkWidget::focus_padding = 0 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton3.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton2.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + } + +} +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" + diff --git a/themes/Win7-Basic/gtk-2.0/panelbuttons.rc b/themes/Win7-Basic/gtk-2.0/panelbuttons.rc new file mode 100755 index 0000000..439bc97 --- /dev/null +++ b/themes/Win7-Basic/gtk-2.0/panelbuttons.rc @@ -0,0 +1,86 @@ + +style "panelbuttons" = "default" +{ + + + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton2.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton3.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + #overlay_file = "panelbutton2.png" + #overlay_border = { 4, 4, 4, 4 } + #overlay_stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton3.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton2.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + } + +} +widget_class "*Panel*GtkToggleButton" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" + diff --git a/themes/Windows-Default/gtk-2.0/gtkrc b/themes/Windows-Default/gtk-2.0/gtkrc new file mode 100644 index 0000000..89e3763 --- /dev/null +++ b/themes/Windows-Default/gtk-2.0/gtkrc @@ -0,0 +1,37 @@ +gtk-icon-sizes = "gtk-menu=13,13:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32" +gtk-toolbar-icon-size = small-toolbar + +# disable images in buttons. i've only seen ugly delphi apps use this feature. +gtk-button-images = 0 + +# enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly. +# the office apps use them heavily, though. +gtk-menu-images = 1 + +# use the win32 button ordering instead of the GNOME HIG one, where applicable +gtk-alternative-button-order = 1 + +style "msw-default" +{ + GtkWidget::interior-focus = 1 + GtkOptionMenu::indicator-size = { 9, 5 } + GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 } + GtkSpinButton::shadow-type = in + + # Owen and I disagree that these should be themable + #GtkUIManager::add-tearoffs = 0 + #GtkComboBox::add-tearoffs = 0 + + GtkComboBox::appears-as-list = 1 + GtkComboBox::focus-on-click = 1 + + GOComboBox::add_tearoffs = 0 + + GtkTreeView::allow-rules = 0 + GtkTreeView::expander-size = 12 + + engine "wimp" + { + } +} +class "*" style "msw-default" diff --git a/version b/version new file mode 160000 index 0000000..cc462a4 --- /dev/null +++ b/version @@ -0,0 +1 @@ +Subproject commit cc462a4bc12ef3d7af7579a5ef83edd27f8865a2