./0000700000175000017500000000000011322064012007314 5ustar neoneo./PyPI-Browser-1.5/0000775000175000017500000000000011322064012012073 5ustar neoneo./PyPI-Browser-1.5/setup.py0000664000175000017500000000311110477123546013623 0ustar neoneo#! /usr/bin/env python """ setup.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ from distutils.core import setup from PyPIBrowser.constants import __version__ setup( name="PyPI-Browser", version=__version__, author="David Boddie", author_email="david@boddie.org.uk", url="http://www.boddie.org.uk/david/Projects/Python/PyPI-Browser/", description="A GUI browser for the Python Package Index", long_description="PyPI Browser is a PyQt4-based GUI browser for the " "Python Package Index that retrieves package information " "an XML-RPC interface.", download_url="http://cheeseshop.python.org/packages/source/P/PyPI-Browser/PyPI-Browser-%s.zip" % __version__, scripts=["pypibrowser.py"], packages=["PyPIBrowser"], package_data={"PyPIBrowser": ["Documents/*.html"]} ) ./PyPI-Browser-1.5/PyPIBrowser/0000775000175000017500000000000011322064012014260 5ustar neoneo./PyPI-Browser-1.5/PyPIBrowser/pypi.py0000664000175000017500000002565610553005002015630 0ustar neoneo#!/usr/bin/env python """ pypi.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ import os, urlparse, xmlrpclib class Package: """Package Describes a package in the package index. Initially, the package has a name but, unless specified when created, no release information. Release information is added as required, typically by models that incrementally populate their internal structure. """ def __init__(self, name, releases = None): self.name = name self.releases = releases self.new = True class Release: """Release Describes a single release of a package. Initially, the release contains a reference to the relevant package and a version string. The description, unless specified on creation, is added as required. """ def __init__(self, package, version, description = None): self.package = package self.version = version self.description = description class Description: """Description Provides a description of a single release of a package. By default, descriptions are created with a reference to the release they describe and an empty set of metadata. The metadata dictionary can be accessed via the instance's metadata attribute. """ template_metadata = { "name": None, "version": None, "stable_version": None, "author": None, "author_email": None, "maintainer": None, "maintainer_email": None, "home_page": None, "license": None, "summary": None, "description": None, "keywords": None, "platform": None, "download_url": None, "classifiers": None, "release_urls": None } def __init__(self, release, metadata = {}): self.release = release self.metadata = self.template_metadata.copy() for key in metadata.keys(): if self.metadata.has_key(key): self.metadata[key] = metadata[key] def metaData(self, field): """data(self, field) Returns data corresponding to a given field in the description's metadata. """ try: value = self.metadata[field] except KeyError: return None if field == "classifiers": return u", ".join(value) else: return value def setMetaData(self, field, data): if data is None: return elif field == u"home_page": if not urlparse.urlsplit(data)[0]: data = None elif field == u"download_url": pieces = urlparse.urlsplit(data) path = pieces[2] if not path or path.endswith(u".html") or path.endswith(u"/"): data = None elif u"." not in path.split(u"/")[-1]: data = None else: data = [u"url", data, u"packagetype", u"default"] urls = self.metadata[u"release_urls"] if not urls: self.metadata[u"release_urls"] = data else: urls.append(data) elif field == u"release_urls": # Convert the dictionary into a list for serialisation. lists = [] for url_dict in data: lists += [(u"url", url_dict[u"url"]), (u"packagetype", url_dict[u"packagetype"])] data = reduce(lambda x, y: x + list(y), lists, []) self.metadata[field] = data class AbstractServer: """AbstractServer A base class for classes representing XML-RPC interfaces to package indexes. """ def __init__(self, url = None): self.url = url def name(self): if self.url: return urlparse.urlsplit(self.url)[1] else: return None def list_packages(self): return [] class PackageServer(AbstractServer): """PackageServer(AbstractServer) Provides an XML-RPC interface to a package index with a thin API over the methods exported by the remote XML-RPC server. """ def __init__(self, url): AbstractServer.__init__(self, url) self.server = xmlrpclib.Server(url) def list_packages(self): """list_packages(self) Returns a sorted list of package name strings or an empty list if the server could not be accessed successfully. """ try: names = self.server.list_packages() names.sort() return map(Package, names) except xmlrpclib.Error: return [] def package_releases(self, package): """package_releases(self, package) Returns a list of version strings describing the available releases of the package specified by a Package object. An empty list is returned if the call was unsuccessful. """ try: return map(lambda x: Release(package, x), self.server.package_releases(package.name)) except xmlrpclib.Error: print "missing release:", package.name return [] def package_stable_release(self, package): """package_stable_release(self, package) Returns a version string describing the stable release of the package specified by a Package object. No exception handling is performed. """ return Release(package, self.server.package_stable_release(package.name)) def release_urls(self, release): """release_urls(self, release) Returns a list of dictionaries containing download information for a given release specified by a Release object. If the information could not be retrieved from the server, None is returned. """ try: return self.server.release_urls(release.package.name, release.version) except xmlrpclib.Error: return None def release_data(self, release): """release_data(self, release) Returns a Description object containing information about a given release specified by a Release object. If the information could not be retrieved from the server, None is returned. """ try: description = Description(release) metadata = self.server.release_data(release.package.name, release.version) for field, data in metadata.items(): description.setMetaData(field, data) return description except xmlrpclib.Error: print "missing data:", release.package.name, release.version return None def release_full_data(self, release): """release_full_data(self, release) Returns a Description object containing information about a given release specified by a Release object. If the information could not be retrieved from the server, None is returned. """ try: description = Description(release) metadata = self.server.release_data(release.package.name, release.version) for field, data in metadata.items(): description.setMetaData(field, data) # Add additional information about download URLs for this release # to the description. urls = self.release_urls(release) if urls: description.setMetaData("release_urls", urls) return description except xmlrpclib.Error: print "missing data:", release.package.name, release.version return None def search(self, specification, operator = "and"): """search(self, specification, operator = "and") Searches the package index using the specified operator to combine words in the given specification, returning a list of dictionaries each containing the name, version and summary of each matching package. """ # Possibly add a name: Package dictionary so that we can relate the # descriptions returned to existing packages. return self.server.search(specification, operator) class TestServer(AbstractServer): """TestServer(AbstractServer) A test server for simple GUI testing purposes. """ def __init__(self): AbstractServer.__init__(self) package = Package("Test package") release1 = Release(package, "0.1") description1 = Description(release1, { "name": "Test package", "author": "David Boddie", "version": "0.1", "download_url": "file://%s" % os.path.abspath(__file__), "home_page": "file://"}) release1.description = description1 package.releases = [release1] self.packages = [package] def list_packages(self): return self.packages def package_releases(self, package): try: return map(lambda x: Release(package, x), self.server.package_releases(package.name)) except xmlrpclib.Error: print "missing release:", package.name return [] def package_stable_release(self, package): return Release(package, self.server.package_stable_release(package.name)) def release_urls(self, release): return self.server.release_urls(release.package.name, release.version) def release_data(self, release): try: description = Description(release) metadata = self.server.release_data(release.package.name, release.version) for field, data in metadata.items(): description.setMetaData(field, data) return description except xmlrpclib.Error: print "missing data:", release.package.name, release.version return None def search(self, spec, operator = "and"): return self.server.search(spec, operator) ./PyPI-Browser-1.5/PyPIBrowser/downloaddialog.ui0000664000175000017500000000476710463454614017644 0ustar neoneo DownloadDialog 0 0 512 320 Download Packages 9 6 0 Qt::Horizontal 0 6 Qt::Horizontal 131 31 &Open Directory &Stop Esc false &Close closeButton clicked() DownloadDialog reject() 369 253 179 282 ./PyPI-Browser-1.5/PyPIBrowser/pypi_resources.qrc0000664000175000017500000000026010507772054020060 0ustar neoneo translations/pypibrowser_en_gb.qm translations/pypibrowser_en_us.qm ./PyPI-Browser-1.5/PyPIBrowser/desktop.py0000644000175000017500000001412610463454610016321 0ustar neoneo#!/usr/bin/env python """ Simple desktop integration for Python. This module provides desktop environment detection and resource opening support for a selection of common and standardised desktop environments. Copyright (C) 2005, 2006 Paul Boddie This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -------- Desktop Detection ----------------- To detect a specific desktop environment, use the get_desktop function. To detect whether the desktop environment is standardised (according to the proposed DESKTOP_LAUNCH standard), use the is_standard function. Opening URLs ------------ To open a URL in the current desktop environment, relying on the automatic detection of that environment, use the desktop.open function as follows: desktop.open("http://www.python.org") To override the detected desktop, specify the desktop parameter to the open function as follows: desktop.open("http://www.python.org", "KDE") # Insists on KDE desktop.open("http://www.python.org", "GNOME") # Insists on GNOME Without overriding using the desktop parameter, the open function will attempt to use the "standard" desktop opening mechanism which is controlled by the DESKTOP_LAUNCH environment variable as described below. The DESKTOP_LAUNCH Environment Variable --------------------------------------- The DESKTOP_LAUNCH environment variable must be shell-quoted where appropriate, as shown in some of the following examples: DESKTOP_LAUNCH="kdialog --msgbox" Should present any opened URLs in their entirety in a KDE message box. (Command "kdialog" plus parameter.) DESKTOP_LAUNCH="my\ opener" Should run the "my opener" program to open URLs. (Command "my opener", no parameters.) DESKTOP_LAUNCH="my\ opener --url" Should run the "my opener" program to open URLs. (Command "my opener" plus parameter.) Details of the DESKTOP_LAUNCH environment variable convention can be found here: http://lists.freedesktop.org/archives/xdg/2004-August/004489.html """ __version__ = "0.2.3" import os import sys try: import subprocess def _run(cmd, shell, wait): opener = subprocess.Popen(cmd, shell=shell) if wait: opener.wait() return opener.pid except ImportError: import popen2 def _run(cmd, shell, wait): opener = popen2.Popen3(cmd) if wait: opener.wait() return opener.pid import commands def get_desktop(): """ Detect the current desktop environment, returning the name of the environment. If no environment could be detected, None is returned. """ if os.environ.has_key("KDE_FULL_SESSION") or \ os.environ.has_key("KDE_MULTIHEAD"): return "KDE" elif os.environ.has_key("GNOME_DESKTOP_SESSION_ID") or \ os.environ.has_key("GNOME_KEYRING_SOCKET"): return "GNOME" elif sys.platform == "darwin": return "Mac OS X" elif hasattr(os, "startfile"): return "Windows" else: return None def is_standard(): """ Return whether the current desktop supports standardised application launching. """ return os.environ.has_key("DESKTOP_LAUNCH") def open(url, desktop=None, wait=0): """ Open the 'url' in the current desktop's preferred file browser. If the optional 'desktop' parameter is specified then attempt to use that particular desktop environment's mechanisms to open the 'url' instead of guessing or detecting which environment is being used. Suggested values for 'desktop' are "standard", "KDE", "GNOME", "Mac OS X", "Windows" where "standard" employs a DESKTOP_LAUNCH environment variable to open the specified 'url'. DESKTOP_LAUNCH should be a command, possibly followed by arguments, and must have any special characters shell-escaped. The process identifier of the "opener" (ie. viewer, editor, browser or program) associated with the 'url' is returned by this function. If the process identifier cannot be determined, None is returned. An optional 'wait' parameter is also available for advanced usage and, if 'wait' is set to a true value, this function will wait for the launching mechanism to complete before returning (as opposed to immediately returning as is the default behaviour). """ # Attempt to detect a desktop environment. detected = get_desktop() # Start with desktops whose existence can be easily tested. if (desktop is None or desktop == "standard") and is_standard(): arg = "".join([os.environ["DESKTOP_LAUNCH"], commands.mkarg(url)]) return _run(arg, 1, wait) elif (desktop is None or desktop == "Windows") and detected == "Windows": # NOTE: This returns None in current implementations. return os.startfile(url) # Test for desktops where the overriding is not verified. elif (desktop or detected) == "KDE": cmd = ["kfmclient", "exec", url] elif (desktop or detected) == "GNOME": cmd = ["gnome-open", url] elif (desktop or detected) == "Mac OS X": cmd = ["open", url] # Finish with an error where no suitable desktop was identified. else: raise OSError, "Desktop not supported (neither DESKTOP_LAUNCH nor os.startfile could be used)" return _run(cmd, 0, wait) # vim: tabstop=4 expandtab shiftwidth=4 ./PyPI-Browser-1.5/PyPIBrowser/searchmodel.py0000664000175000017500000004323410565427110017140 0ustar neoneo#!/usr/bin/env python """ searchmodel.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ import pypi from PyQt4.QtCore import * from PyQt4.QtGui import QFont, QSortFilterProxyModel from packagemodel import PackageModel, ProxyModelMixIn class SearchModel(QSortFilterProxyModel, ProxyModelMixIn): """SearchModel(QSortFilterProxyModel, ProxyModelMixIn) A model for providing search results from a package index based on searches for packages using standard fields and user-specified text. This model is a filtering proxy model, meaning that it filters communication between a source model and any other components, such as views and delegates. It performs two functions, providing filtering of items based on the results of package index searches and optional filtering of items based on whether they are checked or not. Internal Implementation: When the search() method is called, a dictionary is compiled that relates package names to dictionaries containing information about each matching package release. When the filterAcceptsRow() method is called to filter rows out of the information supplied by the package model, the data in the first column of the relevant row (the package name) is checked against the results dictionary, and the row is discarded if the package name is not in the dictionary. Similarly, when the setData() method is called with an index corresponding to a release and a value for the CheckStateRole, the state of the markedReleases dictionary is updated to include the relevant package and releases so that the filterAcceptsRow() method can discard packages that have no marked releases if the filter is enabled. Note that the filterAcceptsRow() method checks for marked packages before examining the results dictionary and checks for a special None value for the results to ensure that no filtering is performed if no valid search has been made. """ fields = \ ( "name", "version", "author", "summary", "description", "stable_version", "author_email", "maintainer", "maintainer_email", "license", "platform", "download_url", "home_page", "keywords", "classifiers" ) def __init__(self, server, parent = None): QSortFilterProxyModel.__init__(self, parent) self.package_server = server self.field = "name" self.terms = "" self.results = None self.markedPackages = {} self.markedFilter = False self.newFilter = False self.displayFields = \ { "name": self.tr("Name"), "version": self.tr("Version"), "author": self.tr("Author"), "summary": self.tr("Summary"), "description": self.tr("Description"), "stable_version": self.tr("Stable version"), "author_email": self.tr("Author e-mail"), "maintainer": self.tr("Maintainer"), "maintainer_email": self.tr("Maintainer e-mail"), "license": self.tr("License"), "platform": self.tr("Platform"), "download_url": self.tr("Download URL"), "home_page": self.tr("Home page"), "keywords": self.tr("Keywords"), "classifiers": self.tr("Classifiers") } font = QFont() font.setBold(True) self.newPackageFont = QVariant(font) def clear(self): """clear(self) Clears any internal mappings defined by the model and additionally resets the results and marked packages dictionaries. """ self.results = None self.markedPackages = {} QSortFilterProxyModel.clear(self) def columnCount(self, index): return 3 def data(self, index, role): """data(self, index, role) Returns the data described by the given role for the item corresponding to the specified index. The method only provides information for indexes where the CheckStateRole is relevant. All other requests are passed to the base class which ensures that data from the source model is passed through correctly to views and delegates. """ sourceIndex = self.mapToSource(index) parent = sourceIndex.parent() if role == Qt.CheckStateRole: if parent.isValid() and sourceIndex.column() == 0: # Quick test: If the package name is not in the marked # packages dictionary then return an unchecked state. # We need to check for invalid download roles here because # it's not enough to return the correct flags in the flags() # method. try: packageName = unicode(parent.data().toString()) package, markedReleases = self.markedPackages[packageName] except KeyError: if index.data(PackageModel.DownloadRole).isValid(): return QVariant(Qt.Unchecked) else: return QVariant() # If the release name is in the list of marked releases for # the package then return a checked state; otherwise return # an unchecked state. We need to check for invalid download # roles here because it's not enough to return the correct # flags in the flags() method. releaseName = unicode(sourceIndex.data().toString()) if releaseName in markedReleases: return QVariant(Qt.Checked) elif index.data(PackageModel.DownloadRole).isValid(): return QVariant(Qt.Unchecked) else: return QVariant() elif role == Qt.FontRole and not parent.isValid() and \ sourceIndex.data(PackageModel.NewPackageRole).toBool(): return self.newPackageFont return QSortFilterProxyModel.data(self, index, role) def filterAcceptsRow(self, source_row, source_parent): """filterAcceptsRow(self, source_row, source_parent) Returns true if the model exposes the given source_row containing child items corresponding to child indexes of the source_parent model index; otherwise returns false. If the marked package filter is enabled, this method first filters out rows corresponding to packages if there are no marked releases for those packages. If a search has been performed, the first column of each unfiltered row (corresponding to a package name for a top-level item and a release version for a first-level item) is checked against the results dictionary. Those releases that are not in the dictionary and packages with no marked releases are discarded. """ # If the marked or new package filters are being applied then filter # out top-level items that aren't in either the marked packages or # the new packages dictionaries. if not source_parent.isValid(): index = self.sourceModel().index(source_row, 0, source_parent) if self.markedFilter: if unicode(index.data().toString()) not in self.markedPackages: return False if self.newFilter: if not index.data(PackageModel.NewPackageRole).toBool(): return False if self.results is None: return True elif source_parent.isValid(): return True index = self.sourceModel().index(source_row, 0, source_parent) name = unicode(index.data().toString()) if name in self.results: # Add the information returned from the search to the item from # the source model. details = self.results[name] package = index.internalPointer() if package.releases is not None: for release in package.releases: if release.version == details["version"]: break else: release = pypi.Release(package, details["version"]) package.releases.append(release) if not release.description: release.description = pypi.Description(release, details) return True else: return False def flags(self, index): """flags(self, index) Returns the flags for the item corresponding to the specified index. All items are enabled, and the first column of rows containing release information are also checkable. """ if not index.isValid(): return QSortFilterProxyModel.flags(self, index) parent = index.parent() if not parent.isValid(): # Top-level packages are enabled only. return Qt.ItemIsEnabled else: # The first column of release items are enabled and checkable. if index.column() == 0: if index.data(PackageModel.DownloadRole).isValid(): return Qt.ItemIsEnabled | Qt.ItemIsUserCheckable else: return Qt.ItemIsEnabled else: return Qt.ItemIsEnabled def hasChildren(self, index): """hasChildren(self, index) Returns true if the item in the source model corresponding to the given index has child items; otherwise returns false. This reimplemented method is necessary to ensure that views do not call rowCount() for each top-level index and cause the source model to query the server for each package. """ return self.sourceModel().hasChildren(self.mapToSource(index)) def listPackages(self): """listPackages(self) Convenience method that resets the model and requests a new list of packages via the source model. """ QSortFilterProxyModel.reset(self) self.sourceModel().listPackages() def search(self): """search(self) Searches the package index using the search field and terms, then resets the model to ensure that attached components are updated to take account of the new search results. The results are processed to make a dictionary mapping package names to the match for each package. """ if self.terms.strip() == u"": self.results = None self.reset() self.sendMessage() return self.emit(SIGNAL("operationStarted()")) self.results = {} for result in self.package_server.search( {self.field: self.terms}): self.results[result["name"]] = result self.reset() self.sendMessage() self.emit(SIGNAL("operationFinished()")) def sendMessage(self): """sendMessage(self) Inform attached components about the results of a search or filtering operation. """ if self.results is None: if self.markedFilter and self.newFilter: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing all new marked packages.")) elif self.markedFilter: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing all marked packages.")) elif self.newFilter: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing all new packages.")) else: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing all packages.")) else: if self.markedFilter and self.newFilter: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing new marked packages from a set of %1 with '%2' matching '%3'.").arg( str(len(self.results)), self.displayFields[self.field], self.terms)) elif self.markedFilter: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing marked packages from a set of %1 with '%2' matching '%3'.").arg( str(len(self.results)), self.displayFields[self.field], self.terms)) elif self.newFilter: self.emit(SIGNAL("resultsFound(const QString &)"), self.tr("Showing new packages from a set of %1 with '%2' matching '%3'.").arg( str(len(self.results)), self.displayFields[self.field], self.terms)) else: if QT_VERSION & 0xffff00 < 0x40200: text = self.tr("Showing %1 package(s) with '%2' matching '%3'.", "Number of packages") else: text = self.tr("Showing %1 package(s) with '%2' matching '%3'.", "Number of packages", len(self.results)) self.emit(SIGNAL("resultsFound(const QString &)"), text.arg(str(len(self.results)), self.displayFields[self.field], self.terms)) def setData(self, index, value, role): """setData(self, index, value, role) Sets the data for the item corresponding to the given index and role to the specified value. This model only intercepts the CheckStateRole to ensure that, when releases are marked, the internal dictionary of marked packages is updated. For all other roles, the data is passed through to the source model. """ if not index.isValid(): return QSortFilterProxyModel.setData(self, index, value, role) elif role != Qt.CheckStateRole: return QSortFilterProxyModel.setData(self, index, value, role) # The dictionary contains rows of top-level items in the model, # so don't try and store rows of child items as it will only # lead to confusion. sourceIndex = self.mapToSource(index) parent = sourceIndex.parent() if parent.isValid(): packageName = unicode(parent.data().toString()) package, markedReleases = self.markedPackages.get(packageName, (parent.internalPointer(), {})) releaseName = unicode(sourceIndex.data().toString()) if value.toBool(): markedReleases[releaseName] = True elif releaseName in markedReleases: del markedReleases[releaseName] if markedReleases != {}: self.markedPackages[packageName] = package, markedReleases elif self.markedPackages.has_key(packageName): del self.markedPackages[packageName] self.emit(SIGNAL("markedChanged(bool)"), self.markedPackages != {}) self.emit(SIGNAL("dataChanged(const QModelIndex &, const QModelIndex &)"), index, index) return True return False def setMarkedFilter(self, enable): """setMarkedFilter(self, enable) Enables or disables the marked package filter. """ self.markedFilter = enable self.reset() self.sendMessage() def setNewFilter(self, enable): """setNewFilter(self, enable) Enables or disables the new package filter. """ self.newFilter = enable self.reset() self.sendMessage() def setSearchField(self, row): """setSearchField(self, row) Sets the search field to the text in the field list specified by the row and updates the model with the results of a new search. """ self.field = self.fields[row] self.search() def setSearchTerms(self, text): """setSearchTerms(self, text) Sets the search terms to the text specified. No search is performed since the text supplied may be incomplete. When the text is complete, it is expected that another component will call the search() method when a suitable user action occurs. """ self.terms = unicode(text) def setServer(self, server): self.package_server = server ./PyPI-Browser-1.5/PyPIBrowser/constants.py0000664000175000017500000000153110565427246016672 0ustar neoneo#! /usr/bin/env python """ constants.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ __version__ = "1.5" ./PyPI-Browser-1.5/PyPIBrowser/Documents/0000775000175000017500000000000011322064012016221 5ustar neoneo./PyPI-Browser-1.5/PyPIBrowser/Documents/Manual.html0000664000175000017500000002653110477132446020354 0ustar neoneo PyPI Browser

PyPI Browser

Author: David Boddie <david@boddie.org.uk>
Date: 2006-09-05

Note: This text is marked up using reStructuredText formatting. It should be readable in a text editor but can be processed to produce versions of this document in other formats.

Introduction

PyPI Browser is a graphical user interface (GUI) browser for the Python Package Index (PyPI) that aims to make it easier for users to find and download useful Python software from a central repository. It provides facilities for searching the package index, can display information about individual packages, allows packages to be marked so that they can be downloaded together, and records information about existing packages so that new ones can be highlighted.

Installing and Running the Browser

PyPI Browser is designed to be installed using a standard setup.py script to install the Python sources in the correct places on your system, but it can also be run from within the directory that is created when its archive is unpacked.

To build and install the browser, enter the unpacked directory and type the following at a command prompt:

python setup.py build

Then, with suitable privileges, install the application like this:

python setup.py install

The pypibrowser.py executable should now be available for use.

To run the browser from within the unpacked source directory, just type the following instead:

python pypibrowser.py

Alternatively, this file can be run from within a suitable file manager.

Configuring the Browser

The first thing you should do once the browser is running is to open the Configure Browser dialog by opening the Settings menu and selecting the Configure Browser... menu item. In this dialog, you should specify the download directory you want to use for software you request from the package index.

You can also specify some preferences for the package formats you want software to be supplied in. By default, the package index URL is the one used for the Python Package Index at python.org - you only need to customize this if you have a private package index.

The shortcuts used for the menu items can be customized in the browser's Edit Shortcuts dialog. To change any of the shortcuts for the items in the Description column, double click on the item next to it in the Shortcut column to activate it, then type the key combination you want to use. If you want to clear a shortcut, activate its item in the same way and simply click on the cancel symbol (an X) in the item. Click OK to keep any changes you make to the shortcuts, or click Cancel to discard them.

Using the Browser

The browser is arranged in the same way as most applications:

  • The menu bar provides access to application-wide actions, such as opening a connection and exiting.
  • The region in the centre of the window is a view onto the contents of a package index and is disabled until you open a connection.
  • The controls at the bottom of the window are used to search the package index.

Searches restrict the packages shown in the main view to include only those that are relevant.

Opening a Connection

To open a connection to the package index, open the File menu and select the Open... item, or press Ctrl O on the keyboard (Command O on Mac OS X). The Open Index dialog should automatically contain a suitable URL for a package index, and you can accept this by clicking the OK button. The browser will fetch information about all available packages and update the main window - this may take a moment.

Examining and Downloading Packages

Each item in the main window represents a package in the index. Since these may have more than one release associated with them, they are shown as parent items in a tree view. Clicking on the node next to a package name will cause the list of releases for that package to be displayed. You can double-click on a package or a release to see more information about it.

Releases that have associated download information are shown as checkable items in the tree view. You can check as many of these as you like to indicate that you want to download them later. The list of marked releases can be shown by applying the marked package filter: open the Packages menu and check the Filter Marked item. Uncheck this menu item to switch this filter off.

If you have run PyPI Browser before, you can check to see if any new packages have been added to the package index by applying the new package filter: open the Packages menu and check the Filter New item. Uncheck this menu item to switch this filter off.

Searching the Package Index

Each release of a package in the package index has several fields associated with it that can be searched for a series of search terms. The combobox at the bottom of the main window allows you to select which field should be searched in the index. The line edit next to the combobox is used to enter a space-separated set of words that must appear in the field of any matching releases.

The current search is executed when you click the Search button, press the Return key in the line edit, or change the current search field in the combobox. The contents of the main view will be updated to show any packages that match your search terms.

Downloading Packages

Once you have selected all the packages you want to download, open the Packages menu and select the Download... item, or press Ctrl Return (Command Return on Mac OS X). The Download Packages dialog will open and the browser will begin to download the releases that you marked earlier from the package index. The progress of each download operation is shown alongside its name and the name of the file that will be saved in the configured download directory.

Click the Stop button at any time to stop the download operations.

If a package cannot be downloaded, either Failed or the URL of its home page will be shown in its progress indicator. You can launch a web browser by clicking on any home page URLs shown, or return to the main window and get more information about the packages that could not be downloaded. Any partially downloaded packages will be deleted.

Click Open Directory to open the download directory using your system's web or file browser.

Exiting the Browser

Exit the browser by opening the File menu and selecting the Exit item or by pressing Ctrl Q (Command Q on Mac OS X). Alternatively, you can simply close the main window to exit.

Currently, the browser will notify you if you try to exit while there are marked packages. Future releases of the browser may prompt you to save this information or automatically save it along with other package information in its configuration file.

Architecture

PyPI Browser uses the PyQt4 bindings to the Qt 4 framework for its graphical user interface. Behind the scenes, it uses xmlrpclib to access the Python Package Index's XML-RPC interface to obtain information about available packages.

./PyPI-Browser-1.5/PyPIBrowser/Documents/Manual.txt0000664000175000017500000001647210477132356020232 0ustar neoneoPyPI Browser ============ :Author: David Boddie :Date: 2006-09-05 *Note: This text is marked up using reStructuredText formatting. It should be readable in a text editor but can be processed to produce versions of this document in other formats.* .. contents:: Introduction ------------ PyPI Browser is a graphical user interface (GUI) browser for the `Python Package Index`_ (PyPI) that aims to make it easier for users to find and download useful Python software from a central repository. It provides facilities for searching the package index, can display information about individual packages, allows packages to be marked so that they can be downloaded together, and records information about existing packages so that new ones can be highlighted. .. _`Python Package Index`: http://www.python.org/pypi Installing and Running the Browser ---------------------------------- PyPI Browser is designed to be installed using a standard `setup.py` script to install the Python sources in the correct places on your system, but it can also be run from within the directory that is created when its archive is unpacked. To build and install the browser, enter the unpacked directory and type the following at a command prompt:: python setup.py build Then, with suitable privileges, install the application like this:: python setup.py install The *pypibrowser.py* executable should now be available for use. To run the browser from within the unpacked source directory, just type the following instead:: python pypibrowser.py Alternatively, this file can be run from within a suitable file manager. Configuring the Browser ----------------------- The first thing you should do once the browser is running is to open the **Configure Browser** dialog by opening the **Settings** menu and selecting the **Configure Browser...** menu item. In this dialog, you should specify the download directory you want to use for software you request from the package index. You can also specify some preferences for the package formats you want software to be supplied in. By default, the package index URL is the one used for the Python Package Index at *python.org* - you only need to customize this if you have a private package index. The shortcuts used for the menu items can be customized in the browser's **Edit Shortcuts** dialog. To change any of the shortcuts for the items in the **Description** column, double click on the item next to it in the **Shortcut** column to activate it, then type the key combination you want to use. If you want to clear a shortcut, activate its item in the same way and simply click on the cancel symbol (an **X**) in the item. Click **OK** to keep any changes you make to the shortcuts, or click **Cancel** to discard them. Using the Browser ----------------- The browser is arranged in the same way as most applications: * The menu bar provides access to application-wide actions, such as opening a connection and exiting. * The region in the centre of the window is a view onto the contents of a package index and is disabled until you open a connection. * The controls at the bottom of the window are used to search the package index. Searches restrict the packages shown in the main view to include only those that are relevant. Opening a Connection ~~~~~~~~~~~~~~~~~~~~ To open a connection to the package index, open the **File** menu and select the **Open...** item, or press **Ctrl O** on the keyboard (**Command O** on Mac OS X). The **Open Index** dialog should automatically contain a suitable URL for a package index, and you can accept this by clicking the **OK** button. The browser will fetch information about all available packages and update the main window - this may take a moment. Examining and Downloading Packages ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Each item in the main window represents a package in the index. Since these may have more than one release associated with them, they are shown as parent items in a tree view. Clicking on the node next to a package name will cause the list of releases for that package to be displayed. You can double-click on a package or a release to see more information about it. Releases that have associated download information are shown as checkable items in the tree view. You can check as many of these as you like to indicate that you want to download them later. The list of marked releases can be shown by applying the marked package filter: open the **Packages** menu and check the **Filter Marked** item. Uncheck this menu item to switch this filter off. If you have run PyPI Browser before, you can check to see if any new packages have been added to the package index by applying the new package filter: open the **Packages** menu and check the **Filter New** item. Uncheck this menu item to switch this filter off. Searching the Package Index ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Each release of a package in the package index has several fields associated with it that can be searched for a series of search terms. The combobox at the bottom of the main window allows you to select which field should be searched in the index. The line edit next to the combobox is used to enter a space-separated set of words that must appear in the field of any matching releases. The current search is executed when you click the **Search** button, press the **Return** key in the line edit, or change the current search field in the combobox. The contents of the main view will be updated to show any packages that match your search terms. Downloading Packages ~~~~~~~~~~~~~~~~~~~~ Once you have selected all the packages you want to download, open the **Packages** menu and select the **Download...** item, or press **Ctrl Return** (**Command Return** on Mac OS X). The **Download Packages** dialog will open and the browser will begin to download the releases that you marked earlier from the package index. The progress of each download operation is shown alongside its name and the name of the file that will be saved in the configured download directory. Click the **Stop** button at any time to stop the download operations. If a package cannot be downloaded, either **Failed** or the URL of its home page will be shown in its progress indicator. You can launch a web browser by clicking on any home page URLs shown, or return to the main window and get more information about the packages that could not be downloaded. Any partially downloaded packages will be deleted. Click **Open Directory** to open the download directory using your system's web or file browser. Exiting the Browser ------------------- Exit the browser by opening the **File** menu and selecting the **Exit** item or by pressing **Ctrl Q** (**Command Q** on Mac OS X). Alternatively, you can simply close the main window to exit. Currently, the browser will notify you if you try to exit while there are marked packages. Future releases of the browser may prompt you to save this information or automatically save it along with other package information in its configuration file. Architecture ------------ PyPI Browser uses the PyQt4_ bindings to the `Qt 4`_ framework for its graphical user interface. Behind the scenes, it uses *xmlrpclib* to access the Python Package Index's XML-RPC interface to obtain information about available packages. .. _PyQt4: http://www.riverbankcomputing.co.uk/pyqt/ .. _`Qt 4`: http://www.trolltech.com/products/qt/ ./PyPI-Browser-1.5/PyPIBrowser/pypi_resources.py0000664000175000017500000027512310553007730017730 0ustar neoneo# -*- coding: utf-8 -*- # Resource object code # # Created: Tue Jan 16 00:35:53 2007 # by: The Resource Compiler for PyQt (Qt v4.2.0) # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore qt_resource_data = "\ \x00\x00\x2d\x38\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ \x00\x00\x03\x80\x00\x00\x2b\x3b\x00\x00\x00\x00\x00\x00\x2b\x3b\ \x00\x00\x00\x30\x00\x00\x31\x0e\x00\x00\x00\x61\x00\x00\x4c\x93\ \x00\x00\x00\x92\x00\x00\x4c\x93\x00\x00\x00\xc1\x00\x05\x48\x35\ \x00\x00\x00\xf3\x00\x05\x48\x35\x00\x00\x01\x22\x00\x05\x48\x35\ \x00\x00\x01\x4e\x00\x2a\xd0\x25\x00\x00\x01\x75\x00\x2a\xec\x30\ \x00\x00\x01\x9f\x00\x2a\xef\xa5\x00\x00\x01\xc9\x00\x2b\xab\x60\ \x00\x00\x02\x00\x00\x47\xdf\x04\x00\x00\x02\x35\x00\x4a\x36\x95\ \x00\x00\x02\x5f\x00\x4b\x2c\x08\x00\x00\x02\x97\x00\x55\xcf\x67\ \x00\x00\x02\xd0\x00\xa4\x34\x0e\x00\x00\x03\x07\x00\xac\x33\xb9\ \x00\x00\x03\x5e\x00\xc6\x04\x7e\x00\x00\x03\xd1\x00\xf3\x2d\xea\ \x00\x00\x04\x0d\x01\xc0\xbf\x5c\x00\x00\x04\x62\x01\xc0\xbf\x5c\ \x00\x00\x04\xa6\x02\x77\x0b\x35\x00\x00\x04\xe5\x02\x8a\xd3\xfd\ \x00\x00\x05\x23\x02\x8a\xd3\xfd\x00\x00\x05\x5b\x02\xaa\x36\x95\ \x00\x00\x05\x8e\x02\xaa\x36\x95\x00\x00\x05\xc6\x02\xf9\xc5\xc5\ \x00\x00\x06\x01\x02\xf9\xc5\xc5\x00\x00\x06\x36\x03\x1c\x1f\x5e\ \x00\x00\x06\x66\x03\x77\x28\xb5\x00\x00\x06\xa2\x03\x77\x28\xb5\ \x00\x00\x06\xdd\x03\x8c\xa8\xae\x00\x00\x07\x13\x04\x08\x52\x03\ \x00\x00\x07\xf6\x04\x8c\xaf\x62\x00\x00\x08\x36\x04\x8c\xaf\x62\ \x00\x00\x08\x68\x04\x9d\x76\xf3\x00\x00\x08\x95\x04\xab\x8e\xff\ \x00\x00\x08\xee\x04\xab\x8f\x01\x00\x00\x09\x1b\x04\xab\x8f\x02\ \x00\x00\x09\x48\x04\xc8\x02\xb4\x00\x00\x09\x75\x05\x49\x9b\x9e\ \x00\x00\x09\xaa\x05\x62\x37\x7c\x00\x00\x0a\x1e\x05\x75\xce\xee\ \x00\x00\x0a\x5a\x05\x84\xd6\x8e\x00\x00\x0b\x49\x05\x99\x31\x5a\ \x00\x00\x0c\x4a\x05\xa2\xdc\xc2\x00\x00\x0c\xae\x05\xa2\xdc\xc2\ \x00\x00\x0c\xec\x05\xdd\xf3\xf4\x00\x00\x0d\x25\x05\xf8\x33\x4e\ \x00\x00\x0d\x64\x06\x20\x07\xce\x00\x00\x11\x75\x06\x25\x21\x93\ \x00\x00\x11\xb1\x06\x25\x9c\xce\x00\x00\x12\x14\x06\x30\x0a\x42\ \x00\x00\x12\xee\x06\x6c\x13\xbe\x00\x00\x13\x49\x06\xb0\xbe\x8e\ \x00\x00\x13\x7c\x06\xb0\xbe\x8e\x00\x00\x13\xc6\x06\xc7\x2e\x80\ \x00\x00\x14\x0b\x07\x2f\xf0\x1e\x00\x00\x14\x4b\x07\x58\xf2\x71\ \x00\x00\x14\x91\x07\xa1\x56\xa3\x00\x00\x14\xf3\x08\x7d\x76\xba\ \x00\x00\x15\x29\x08\x92\x78\xa1\x00\x00\x15\x90\x08\xad\x40\x2a\ \x00\x00\x15\xde\x09\x4d\x67\xfe\x00\x00\x16\x21\x09\x4d\x67\xfe\ \x00\x00\x16\x69\x09\x4d\x67\xfe\x00\x00\x16\xaa\x09\x5e\x89\xd3\ \x00\x00\x16\xe6\x09\x61\x7e\x69\x00\x00\x17\x21\x09\x68\xe3\x3e\ \x00\x00\x17\x9e\x09\x6c\x5b\x7e\x00\x00\x17\xe8\x09\x7d\xbe\x5e\ \x00\x00\x18\x1e\x09\x96\xeb\x62\x00\x00\x18\x9c\x09\xb6\xd4\x33\ \x00\x00\x18\xdc\x09\xb6\xd4\x33\x00\x00\x19\x1d\x09\xe3\x50\xb9\ \x00\x00\x19\x59\x0a\x3b\x3d\xb4\x00\x00\x1a\xbb\x0a\x98\x49\x9c\ \x00\x00\x1a\xfd\x0a\x98\x49\x9c\x00\x00\x1b\x39\x0a\xc0\xa4\xf7\ \x00\x00\x1b\x76\x0a\xc4\x38\xc9\x00\x00\x1b\xaf\x0a\xc4\x38\xc9\ \x00\x00\x1b\xe4\x0a\xcf\xc2\x5a\x00\x00\x1c\x14\x0b\x26\xe5\x8a\ \x00\x00\x1c\x44\x0b\x80\xaf\x7e\x00\x00\x1c\xa8\x0b\x9b\x88\xb8\ \x00\x00\x1c\xe5\x0b\xdb\xc9\xde\x00\x00\x1d\x15\x0c\x30\x75\x7e\ \x00\x00\x1f\x64\x0c\x39\xac\xae\x00\x00\x20\x7e\x0c\x3e\x0b\xda\ \x00\x00\x22\xdc\x0c\x62\x04\xca\x00\x00\x23\x1b\x0c\x6f\xfb\xec\ \x00\x00\x23\x6a\x0c\x6f\xfb\xec\x00\x00\x23\xbd\x0c\xac\x6e\xa5\ \x00\x00\x24\x0b\x0c\xba\xef\x73\x00\x00\x24\x71\x0c\xc9\xa0\x0e\ \x00\x00\x24\xa7\x0c\xc9\xa0\x0e\x00\x00\x24\xdc\x0c\xd5\xc9\x24\ \x00\x00\x25\x0c\x0c\xd9\xba\xbe\x00\x00\x25\x4b\x0c\xee\xcb\x91\ \x00\x00\x25\xaa\x0d\x08\xa2\x82\x00\x00\x26\x04\x0d\x0e\x6d\xa3\ \x00\x00\x26\x43\x0d\x0e\x6d\xa3\x00\x00\x26\x7b\x0d\x9c\xf1\xd3\ \x00\x00\x26\xae\x0e\x1a\x7a\xfe\x00\x00\x26\xff\x0e\x4c\x64\xae\ \x00\x00\x27\x7f\x0e\x7a\xd4\xf9\x00\x00\x27\xea\x0e\xc8\x6b\x9e\ \x00\x00\x28\x3d\x0e\xca\xc1\xfc\x00\x00\x28\x81\x0e\xca\xc1\xfc\ \x00\x00\x28\xc8\x0f\x1d\x9a\xce\x00\x00\x29\x0a\x0f\x69\xaf\x54\ \x00\x00\x29\x58\x69\x00\x00\x29\x97\x03\x00\x00\x00\x06\x00\x26\ \x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x26\x4f\ \x4b\x07\x00\x00\x00\x12\x41\x63\x74\x69\x6f\x6e\x45\x64\x69\x74\ \x6f\x72\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\x00\x26\ \x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x26\x4f\ \x4b\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\x00\ \x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x2e\ \x2e\x2e\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\ \x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\ \x00\x45\x00\x73\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ \x45\x73\x63\x07\x00\x00\x00\x11\x55\x69\x5f\x44\x6f\x77\x6e\x6c\ \x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\x00\ \x45\x00\x73\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x45\ \x73\x63\x07\x00\x00\x00\x14\x55\x69\x5f\x49\x6e\x66\x6f\x72\x6d\ \x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x08\x00\x4e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\ \x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x08\ \x00\x4e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\ \x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x08\x00\x4e\x00\x61\ \x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\ \x6d\x65\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0a\x00\x26\x00\x46\x00\x69\x00\x6c\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x05\x26\x46\x69\x6c\x65\x07\x00\x00\x00\ \x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x26\x00\ \x48\x00\x65\x00\x6c\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x05\x26\x48\x65\x6c\x70\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x48\x00\x69\x00\x64\x00\ \x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x48\x69\x64\x65\ \x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\ \x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x0a\x00\x26\ \x00\x53\x00\x74\x00\x6f\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x26\x53\x74\x6f\x70\x07\x00\x00\x00\x11\x55\x69\x5f\x44\ \x6f\x77\x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\ \x00\x00\x0a\x00\x45\x00\x26\x00\x78\x00\x69\x00\x74\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x05\x45\x26\x78\x69\x74\x07\x00\x00\x00\ \x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x43\x00\ \x6c\x00\x6f\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x05\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x14\x55\x69\x5f\x49\x6e\ \x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x14\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\ \x49\x00\x6e\x00\x64\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0a\x4f\x70\x65\x6e\x20\x49\x6e\x64\x65\x78\x07\x00\x00\ \x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x53\ \x00\x26\x00\x68\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x53\x26\x68\x6f\x77\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\ \x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\ \x03\x00\x00\x00\x28\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\ \x67\x00\x75\x00\x72\x00\x65\x00\x20\x00\x42\x00\x72\x00\x6f\x00\ \x77\x00\x73\x00\x65\x00\x72\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x14\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\ \x20\x42\x72\x6f\x77\x73\x65\x72\x2e\x2e\x2e\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x32\x00\x43\x00\x68\ \x00\x6f\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x44\x00\x6f\x00\x77\ \x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x20\x00\x44\x00\x69\ \x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x19\x43\x68\x6f\x6f\x73\x65\x20\x44\ \x6f\x77\x6e\x6c\x6f\x61\x64\x20\x44\x69\x72\x65\x63\x74\x6f\x72\ \x79\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\ \x43\x00\x74\x00\x72\x00\x6c\x00\x2b\x00\x52\x00\x65\x00\x74\x00\ \x75\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ \x74\x72\x6c\x2b\x52\x65\x74\x75\x72\x6e\x07\x00\x00\x00\x06\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x61\x00\ \x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x26\x00\x49\x00\ \x6e\x00\x64\x00\x65\x00\x78\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0f\x50\x61\x63\x6b\x61\x67\x65\x20\x26\x49\x6e\x64\x65\ \x78\x3a\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\ \x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x18\ \x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\ \x00\x20\x00\x55\x00\x52\x00\x4c\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0c\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x55\x52\x4c\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x18\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x20\x00\x55\x00\x52\x00\x4c\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0c\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x55\ \x52\x4c\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x12\x00\x46\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\ \x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\ \x69\x6c\x65\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\x0e\x44\x6f\x77\ \x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\ \x10\x00\x50\x00\x6c\x00\x61\x00\x74\x00\x66\x00\x6f\x00\x72\x00\ \x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x6c\x61\x74\x66\ \x6f\x72\x6d\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\ \x64\x65\x6c\x01\x03\x00\x00\x00\x10\x00\x50\x00\x6c\x00\x61\x00\ \x74\x00\x66\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x50\x6c\x61\x74\x66\x6f\x72\x6d\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x43\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x11\x55\x69\x5f\ \x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\ \x00\x00\x00\x0c\x00\x26\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\ \x07\x00\x00\x00\x14\x55\x69\x5f\x49\x6e\x66\x6f\x72\x6d\x61\x74\ \x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\ \x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x07\x4c\x69\x63\x65\x6e\x73\x65\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x0e\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\ \x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4c\x69\x63\x65\ \x6e\x73\x65\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x16\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0b\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x2e\x2e\x2e\x07\ \x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\ \x00\x48\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x67\ \x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x48\x6f\x6d\x65\ \x20\x70\x61\x67\x65\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\ \x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x12\x00\x48\x00\x6f\x00\ \x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x67\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x09\x48\x6f\x6d\x65\x20\x70\x61\x67\x65\ \x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x82\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ \x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\ \x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\ \x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ \x73\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x25\x00\ \x31\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\ \x25\x00\x32\x00\x27\x00\x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\ \x68\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\ \x27\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\x53\x68\x6f\ \x77\x69\x6e\x67\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\x63\x6b\ \x61\x67\x65\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x74\x20\ \x6f\x66\x20\x25\x31\x20\x77\x69\x74\x68\x20\x27\x25\x32\x27\x20\ \x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x27\x25\x33\x27\x2e\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x10\x00\x25\x00\x31\x00\x2e\x00\x25\x00\x32\x00\x2e\ \x00\x25\x00\x33\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x25\x31\ \x2e\x25\x32\x2e\x25\x33\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\ \x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\ \x00\x00\x00\x0c\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x41\x75\x74\x68\x6f\x72\ \x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\ \x01\x03\x00\x00\x00\x0c\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x41\x75\x74\x68\ \x6f\x72\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x22\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\ \x61\x00\x64\x00\x20\x00\x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\ \x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ \x6f\x77\x6e\x6c\x6f\x61\x64\x20\x50\x61\x63\x6b\x61\x67\x65\x73\ \x07\x00\x00\x00\x11\x55\x69\x5f\x44\x6f\x77\x6e\x6c\x6f\x61\x64\ \x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x0c\x00\x43\x00\x74\ \x00\x72\x00\x6c\x00\x2b\x00\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x43\x74\x72\x6c\x2b\x4f\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x43\x00\x74\x00\x72\x00\ \x6c\x00\x2b\x00\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ \x74\x72\x6c\x2b\x51\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x0c\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x2b\ \x00\x52\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x74\x72\x6c\ \x2b\x52\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0c\x00\x46\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x06\x46\x61\x69\x6c\x65\x64\x07\ \x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\ \x6f\x67\x01\x03\x00\x00\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ \x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\ \x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\x6f\x77\x69\x6e\ \x67\x20\x61\x6c\x6c\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\x63\ \x6b\x61\x67\x65\x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\ \x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x16\x00\x4f\x00\x70\ \x00\x65\x00\x6e\x00\x20\x00\x4d\x00\x61\x00\x6e\x00\x75\x00\x61\ \x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x4f\x70\x65\x6e\ \x20\x4d\x61\x6e\x75\x61\x6c\x07\x00\x00\x00\x06\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x8a\x00\x53\x00\x68\x00\x6f\x00\x77\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\ \x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\ \x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\ \x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\ \x00\x65\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x25\x00\x31\ \x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\x25\ \x00\x32\x00\x27\x00\x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\x68\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\x27\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x45\x53\x68\x6f\x77\ \x69\x6e\x67\x20\x6e\x65\x77\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\ \x61\x63\x6b\x61\x67\x65\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ \x65\x74\x20\x6f\x66\x20\x25\x31\x20\x77\x69\x74\x68\x20\x27\x25\ \x32\x27\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x27\x25\x33\x27\ \x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\ \x6c\x01\x03\x00\x00\x00\x56\x00\x53\x00\x68\x00\x6f\x00\x77\x00\ \x69\x00\x6e\x00\x67\x00\x20\x00\x25\x00\x31\x00\x20\x00\x70\x00\ \x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x77\x00\ \x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\x25\x00\x32\x00\x27\x00\ \x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\x68\x00\x69\x00\x6e\x00\ \x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\x27\x00\x2e\x03\x00\x00\ \x00\x58\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x25\x00\x31\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\ \x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\ \x00\x68\x00\x20\x00\x27\x00\x25\x00\x32\x00\x27\x00\x20\x00\x6d\ \x00\x61\x00\x74\x00\x63\x00\x68\x00\x69\x00\x6e\x00\x67\x00\x20\ \x00\x27\x00\x25\x00\x33\x00\x27\x00\x2e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x2e\x53\x68\x6f\x77\x69\x6e\x67\x20\x25\x31\x20\x70\ \x61\x63\x6b\x61\x67\x65\x28\x73\x29\x20\x77\x69\x74\x68\x20\x27\ \x25\x32\x27\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x27\x25\x33\ \x27\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x28\x00\x49\x00\x6e\x00\x74\x00\x65\ \x00\x72\x00\x70\x00\x72\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\ \x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x3a\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x49\x6e\x74\x65\x72\x70\ \x72\x65\x74\x65\x72\x20\x76\x65\x72\x73\x69\x6f\x6e\x3a\x07\x00\ \x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\ \x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x61\ \x00\x69\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x69\x6e\x74\x61\ \x69\x6e\x65\x72\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\ \x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x61\x00\x69\ \x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x69\x6e\x74\x61\x69\x6e\ \x65\x72\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x18\x00\x26\x00\x52\x00\x65\x00\x6c\x00\x6f\x00\x61\x00\ \x64\x00\x20\x00\x4c\x00\x69\x00\x73\x00\x74\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0c\x26\x52\x65\x6c\x6f\x61\x64\x20\x4c\x69\x73\ \x74\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x02\xa4\x00\x3c\x00\x71\x00\x74\x00\x3e\x00\x3c\x00\x68\x00\x33\ \x00\x3e\x00\x41\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x20\x00\x50\ \x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\ \x00\x73\x00\x65\x00\x72\x00\x20\x00\x25\x00\x31\x00\x3c\x00\x2f\ \x00\x68\x00\x33\x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\x50\x00\x79\ \x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\ \x00\x65\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\ \x00\x73\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x65\x00\x78\x00\x61\x00\x6d\x00\x69\x00\x6e\x00\x65\ \x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\ \x00\x6c\x00\x65\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\ \x00\x67\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x50\x00\x79\x00\x74\x00\x68\x00\x6f\ \x00\x6e\x00\x20\x00\x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\ \x00\x65\x00\x20\x00\x49\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x20\ \x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\ \x00\x72\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\ \x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x65\ \x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x65\ \x00\x78\x00\x70\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x61\x00\x20\ \x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x61\x00\x74\x00\x69\x00\x62\ \x00\x6c\x00\x65\x00\x20\x00\x58\x00\x4d\x00\x4c\x00\x2d\x00\x52\ \x00\x50\x00\x43\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ \x00\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x00\x3c\x00\x2f\x00\x70\ \x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\x55\x00\x73\x00\x65\x00\x73\ \x00\x20\x00\x64\x00\x65\x00\x73\x00\x6b\x00\x74\x00\x6f\x00\x70\ \x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x67\x00\x72\x00\x61\ \x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x66\x00\x65\x00\x61\ \x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x70\x00\x72\ \x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\x00\x20\x00\x62\ \x00\x79\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ \x00\x6e\x00\x20\x00\x25\x00\x32\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x3c\x00\x69\x00\x3e\x00\x64\ \x00\x65\x00\x73\x00\x6b\x00\x74\x00\x6f\x00\x70\x00\x3c\x00\x2f\ \x00\x69\x00\x3e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\ \x00\x65\x00\x20\x00\x28\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\ \x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x61\ \x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x69\x00\x6e\ \x00\x64\x00\x65\x00\x78\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ \x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x66\ \x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x29\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x00\x3c\x00\x2f\ \x00\x71\x00\x74\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x01\x52\ \x3c\x71\x74\x3e\x3c\x68\x33\x3e\x41\x62\x6f\x75\x74\x20\x50\x79\ \x50\x49\x20\x42\x72\x6f\x77\x73\x65\x72\x20\x25\x31\x3c\x2f\x68\ \x33\x3e\x3c\x70\x3e\x50\x79\x50\x49\x20\x42\x72\x6f\x77\x73\x65\ \x72\x20\x61\x6c\x6c\x6f\x77\x73\x20\x79\x6f\x75\x20\x74\x6f\x20\ \x65\x78\x61\x6d\x69\x6e\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\ \x65\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6e\x20\x74\x68\ \x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x50\x61\x63\x6b\x61\x67\x65\ \x20\x49\x6e\x64\x65\x78\x20\x61\x6e\x64\x20\x6f\x74\x68\x65\x72\ \x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x6e\x64\x65\x78\x65\x73\ \x20\x74\x68\x61\x74\x20\x65\x78\x70\x6f\x73\x65\x20\x61\x20\x63\ \x6f\x6d\x70\x61\x74\x69\x62\x6c\x65\x20\x58\x4d\x4c\x2d\x52\x50\ \x43\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x2e\x3c\x2f\x70\x3e\ \x3c\x70\x3e\x55\x73\x65\x73\x20\x64\x65\x73\x6b\x74\x6f\x70\x20\ \x69\x6e\x74\x65\x67\x72\x61\x74\x69\x6f\x6e\x20\x66\x65\x61\x74\ \x75\x72\x65\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x62\x79\ \x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x25\x32\x20\x6f\x66\x20\x74\ \x68\x65\x20\x3c\x69\x3e\x64\x65\x73\x6b\x74\x6f\x70\x3c\x2f\x69\ \x3e\x20\x6d\x6f\x64\x75\x6c\x65\x20\x28\x73\x65\x61\x72\x63\x68\ \x20\x74\x68\x65\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x6e\x64\ \x65\x78\x20\x66\x6f\x72\x20\x6d\x6f\x72\x65\x20\x69\x6e\x66\x6f\ \x72\x6d\x61\x74\x69\x6f\x6e\x29\x2e\x3c\x2f\x70\x3e\x3c\x2f\x71\ \x74\x3e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x16\x00\x41\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x20\x00\ \x51\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0b\x41\x62\x6f\x75\x74\x20\x51\x74\x2e\x2e\x2e\x07\x00\ \x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x30\x00\ \x43\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x44\x00\ \x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x20\x00\ \x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x18\x43\x61\x6e\x6e\x6f\x74\x20\ \x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x50\x61\x63\x6b\x61\x67\x65\ \x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x7c\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x70\x00\x61\x00\x63\ \x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\ \x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x74\ \x00\x20\x00\x6f\x00\x66\x00\x20\x00\x25\x00\x31\x00\x20\x00\x77\ \x00\x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\x25\x00\x32\x00\x27\ \x00\x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\x68\x00\x69\x00\x6e\ \x00\x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\x27\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x3e\x53\x68\x6f\x77\x69\x6e\x67\x20\ \x6e\x65\x77\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x66\x72\x6f\ \x6d\x20\x61\x20\x73\x65\x74\x20\x6f\x66\x20\x25\x31\x20\x77\x69\ \x74\x68\x20\x27\x25\x32\x27\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\ \x20\x27\x25\x33\x27\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\ \x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x22\x00\x43\x00\x6f\ \x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x20\ \x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x11\x43\x6f\x6e\x66\x69\x67\x75\x72\ \x65\x20\x42\x72\x6f\x77\x73\x65\x72\x07\x00\x00\x00\x13\x43\x6f\ \x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\ \x67\x01\x03\x00\x00\x00\x10\x00\x26\x00\x4f\x00\x70\x00\x65\x00\ \x6e\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x08\x26\x4f\x70\x65\x6e\x2e\x2e\x2e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x53\x00\x74\x00\x61\ \x00\x62\x00\x6c\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\ \x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ \x53\x74\x61\x62\x6c\x65\x20\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x1c\x00\x53\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\ \x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x53\x74\x61\x62\x6c\x65\ \x20\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x4d\x00\x6f\x00\x76\x00\ \x65\x00\x20\x00\x26\x00\x55\x00\x70\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x4d\x6f\x76\x65\x20\x26\x55\x70\x07\x00\x00\x00\x13\ \x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\ \x6c\x6f\x67\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x6f\x00\x76\x00\ \x65\x00\x20\x00\x26\x00\x44\x00\x6f\x00\x77\x00\x6e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0a\x4d\x6f\x76\x65\x20\x26\x44\x6f\x77\ \x6e\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x28\x00\ \x49\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\ \x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x62\x00\x6f\x00\x75\x00\ \x74\x00\x20\x00\x25\x00\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x14\x49\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62\x6f\ \x75\x74\x20\x25\x31\x07\x00\x00\x00\x11\x49\x6e\x66\x6f\x72\x6d\ \x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x12\x00\x26\x00\x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\ \x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x50\x61\ \x63\x6b\x61\x67\x65\x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x2a\x00\x26\x00\x50\x00\x61\x00\x63\x00\ \x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\ \x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\ \x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x26\x50\x61\x63\x6b\ \x61\x67\x65\x20\x70\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x73\x3a\ \x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\ \x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x22\x00\x50\ \x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\ \x00\x73\x00\x65\x00\x72\x00\x20\x00\x2d\x00\x20\x00\x25\x00\x31\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x79\x50\x49\x20\x42\ \x72\x6f\x77\x73\x65\x72\x20\x2d\x20\x25\x31\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x50\x00\x6c\ \x00\x61\x00\x74\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x09\x50\x6c\x61\x74\x66\x6f\x72\x6d\ \x3a\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\ \x44\x00\x65\x00\x73\x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\ \x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\ \x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x07\x00\x00\x00\x12\x41\ \x63\x74\x69\x6f\x6e\x45\x64\x69\x74\x6f\x72\x44\x69\x61\x6c\x6f\ \x67\x01\x03\x00\x00\x00\x16\x00\x44\x00\x65\x00\x73\x00\x63\x00\ \x72\x00\x69\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0b\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x16\x00\x44\x00\x65\x00\x73\x00\x63\ \x00\x72\x00\x69\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0b\x44\x65\x73\x63\x72\x69\x70\x74\ \x69\x6f\x6e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x10\x00\x50\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x65\ \x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\ \x6f\x67\x72\x65\x73\x73\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\ \x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x20\x00\ \x25\x00\x31\x00\x2f\x00\x25\x00\x32\x00\x20\x00\x62\x00\x79\x00\ \x74\x00\x65\x00\x20\x00\x28\x00\x25\x00\x33\x00\x25\x00\x29\x03\ \x00\x00\x00\x22\x00\x25\x00\x31\x00\x2f\x00\x25\x00\x32\x00\x20\ \x00\x62\x00\x79\x00\x74\x00\x65\x00\x73\x00\x20\x00\x28\x00\x25\ \x00\x33\x00\x25\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ \x25\x31\x2f\x25\x32\x20\x62\x79\x74\x65\x28\x73\x29\x20\x28\x25\ \x33\x25\x29\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\x6f\x61\x64\ \x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\x49\x00\x6e\ \x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x49\x6e\x66\x6f\ \x72\x6d\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x14\x55\x69\x5f\x49\ \x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x12\x00\x26\x00\x41\x00\x62\x00\x6f\x00\x75\ \x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x09\x26\x41\x62\x6f\x75\x74\x2e\x2e\x2e\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x42\x00\x45\x00\x6e\ \x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x55\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\ \x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\ \x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x21\x45\x6e\x74\x65\x72\x20\x74\x68\ \x65\x20\x55\x52\x4c\x20\x6f\x66\x20\x61\x20\x70\x61\x63\x6b\x61\ \x67\x65\x20\x69\x6e\x64\x65\x78\x2e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x26\x00\x42\x00\x72\ \x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x08\x26\x42\x72\x6f\x77\x73\x65\x72\x07\x00\x00\x00\ \x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\ \x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\x61\ \x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x73\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x61\x73\x73\x69\ \x66\x69\x65\x72\x73\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\ \x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\ \x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x61\x73\x73\ \x69\x66\x69\x65\x72\x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\xda\x00\x54\x00\x68\x00\x65\x00\x20\x00\ \x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\ \x69\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x20\x00\x79\x00\x6f\x00\ \x75\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ \x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x6c\x00\x79\x00\ \x20\x00\x75\x00\x6e\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\ \x61\x00\x62\x00\x6c\x00\x65\x00\x2e\x00\x0a\x00\x28\x00\x49\x00\ \x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x74\x00\x61\x00\x69\x00\ \x6e\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x73\x00\x74\x00\ \x20\x00\x6f\x00\x66\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\ \x61\x00\x67\x00\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\ \x73\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x73\x00\x2e\x00\ \x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6d\x54\x68\x65\x20\x70\ \x61\x63\x6b\x61\x67\x65\x20\x69\x6e\x64\x65\x78\x20\x79\x6f\x75\ \x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x69\x73\x20\x63\x75\ \x72\x72\x65\x6e\x74\x6c\x79\x20\x75\x6e\x61\x76\x61\x69\x6c\x61\ \x62\x6c\x65\x2e\x0a\x28\x49\x20\x66\x61\x69\x6c\x65\x64\x20\x74\ \x6f\x20\x6f\x62\x74\x61\x69\x6e\x20\x61\x20\x6c\x69\x73\x74\x20\ \x6f\x66\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x6c\x61\x73\x73\ \x69\x66\x69\x65\x72\x73\x2e\x29\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x46\x00\x69\x00\x6c\x00\ \x74\x00\x65\x00\x72\x00\x20\x00\x4d\x00\x61\x00\x72\x00\x6b\x00\ \x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x46\x69\x6c\ \x74\x65\x72\x20\x4d\x61\x72\x6b\x65\x64\x07\x00\x00\x00\x06\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x43\x00\ \x61\x00\x6e\x00\x63\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x07\x26\x43\x61\x6e\x63\x65\x6c\x07\x00\x00\x00\x12\x41\ \x63\x74\x69\x6f\x6e\x45\x64\x69\x74\x6f\x72\x44\x69\x61\x6c\x6f\ \x67\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x43\x00\x61\x00\x6e\x00\ \x63\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\ \x43\x61\x6e\x63\x65\x6c\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\ \x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\ \x00\x00\x00\x14\x00\x46\x00\x69\x00\x6c\x00\x74\x00\x65\x00\x72\ \x00\x20\x00\x4e\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0a\x46\x69\x6c\x74\x65\x72\x20\x4e\x65\x77\x07\x00\x00\x00\ \x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x53\x00\ \x75\x00\x6d\x00\x6d\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x07\x53\x75\x6d\x6d\x61\x72\x79\x07\x00\x00\x00\ \x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\ \x00\x0e\x00\x53\x00\x75\x00\x6d\x00\x6d\x00\x61\x00\x72\x00\x79\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x75\x6d\x6d\x61\x72\ \x79\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0e\x00\x26\x00\x46\x00\x69\x00\x65\x00\x6c\x00\x64\x00\x3a\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x65\x6c\x64\ \x3a\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x28\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\ \x00\x64\x00\x20\x00\x64\x00\x69\x00\x26\x00\x72\x00\x65\x00\x63\ \x00\x74\x00\x6f\x00\x72\x00\x79\x00\x3a\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x14\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x64\x69\x26\ \x72\x65\x63\x74\x6f\x72\x79\x3a\x07\x00\x00\x00\x13\x43\x6f\x6e\ \x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\ \x01\x03\x00\x00\x00\x0e\x00\x26\x00\x50\x00\x79\x00\x74\x00\x68\ \x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x50\ \x79\x74\x68\x6f\x6e\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\ \x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\ \x00\x00\x0e\x00\x26\x00\x53\x00\x65\x00\x61\x00\x72\x00\x63\x00\ \x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x53\x65\x61\x72\ \x63\x68\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x01\x78\x00\x3c\x00\x71\x00\x74\x00\x3e\x00\x59\x00\x6f\x00\ \x75\x00\x20\x00\x6e\x00\x65\x00\x65\x00\x64\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\ \x75\x00\x72\x00\x65\x00\x20\x00\x61\x00\x20\x00\x64\x00\x6f\x00\ \x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x20\x00\x64\x00\ \x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x00\ \x20\x00\x62\x00\x65\x00\x66\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ \x79\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\ \x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\ \x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\ \x73\x00\x2e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x3c\x00\x62\x00\x3e\x00\x53\x00\ \x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x3c\x00\ \x2f\x00\x62\x00\x3e\x00\x20\x00\x6d\x00\x65\x00\x6e\x00\x75\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ \x65\x00\x63\x00\x74\x00\x20\x00\x3c\x00\x62\x00\x3e\x00\x43\x00\ \x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\ \x20\x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\ \x2e\x00\x2e\x00\x2e\x00\x3c\x00\x2f\x00\x62\x00\x3e\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x63\x00\x65\x00\x73\x00\ \x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x72\x00\ \x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x27\x00\x73\x00\x20\x00\ \x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\ \x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\xbc\x3c\x71\x74\x3e\x59\x6f\x75\x20\x6e\x65\x65\ \x64\x20\x74\x6f\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\ \x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x64\x69\x72\x65\x63\x74\ \x6f\x72\x79\x20\x62\x65\x66\x6f\x72\x65\x20\x79\x6f\x75\x20\x63\ \x61\x6e\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x70\x61\x63\x6b\ \x61\x67\x65\x73\x2e\x20\x4f\x70\x65\x6e\x20\x74\x68\x65\x20\x3c\ \x62\x3e\x53\x65\x74\x74\x69\x6e\x67\x73\x3c\x2f\x62\x3e\x20\x6d\ \x65\x6e\x75\x20\x61\x6e\x64\x20\x73\x65\x6c\x65\x63\x74\x20\x3c\ \x62\x3e\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x42\x72\x6f\x77\ \x73\x65\x72\x2e\x2e\x2e\x3c\x2f\x62\x3e\x20\x74\x6f\x20\x61\x63\ \x63\x65\x73\x73\x20\x74\x68\x65\x20\x62\x72\x6f\x77\x73\x65\x72\ \x27\x73\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\ \x2e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\xaa\x00\x3c\x00\x71\x00\x74\x00\x3e\x00\x59\x00\x6f\x00\x75\ \x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x6d\x00\x61\ \x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\x00\x61\x00\x63\ \x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\ \x00\x72\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x2e\x00\x0a\x00\x43\x00\x6c\x00\x69\x00\x63\ \x00\x6b\x00\x20\x00\x3c\x00\x62\x00\x3e\x00\x4f\x00\x4b\x00\x3c\ \x00\x2f\x00\x62\x00\x3e\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x64\ \x00\x69\x00\x73\x00\x63\x00\x61\x00\x72\x00\x64\x00\x20\x00\x74\ \x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x73\x00\x74\ \x00\x2e\x00\x3c\x00\x2f\x00\x71\x00\x74\x00\x3e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x55\x3c\x71\x74\x3e\x59\x6f\x75\x20\x68\x61\ \x76\x65\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\x63\x6b\x61\x67\ \x65\x73\x20\x66\x6f\x72\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2e\ \x0a\x43\x6c\x69\x63\x6b\x20\x3c\x62\x3e\x4f\x4b\x3c\x2f\x62\x3e\ \x20\x74\x6f\x20\x64\x69\x73\x63\x61\x72\x64\x20\x74\x68\x69\x73\ \x20\x6c\x69\x73\x74\x2e\x3c\x2f\x71\x74\x3e\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x01\x82\x00\x3c\x00\x71\ \x00\x74\x00\x3e\x00\x59\x00\x6f\x00\x75\x00\x20\x00\x6e\x00\x65\ \x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\ \x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x20\ \x00\x70\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\ \x00\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ \x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x70\x00\x61\x00\x63\ \x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x79\x00\x6f\ \x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x2e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x3c\x00\x62\x00\x3e\ \x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ \x00\x3c\x00\x2f\x00\x62\x00\x3e\x00\x20\x00\x6d\x00\x65\x00\x6e\ \x00\x75\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\ \x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x3c\x00\x62\x00\x3e\ \x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\ \x00\x65\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\ \x00\x72\x00\x2e\x00\x2e\x00\x2e\x00\x3c\x00\x2f\x00\x62\x00\x3e\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x63\x00\x65\ \x00\x73\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\ \x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x27\x00\x73\ \x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ \x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\xc1\x3c\x71\x74\x3e\x59\x6f\x75\x20\ \x6e\x65\x65\x64\x20\x74\x6f\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\ \x65\x20\x70\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x66\x6f\ \x72\x20\x74\x68\x65\x20\x74\x79\x70\x65\x73\x20\x6f\x66\x20\x70\ \x61\x63\x6b\x61\x67\x65\x73\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ \x20\x74\x6f\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2e\x20\x4f\x70\ \x65\x6e\x20\x74\x68\x65\x20\x3c\x62\x3e\x53\x65\x74\x74\x69\x6e\ \x67\x73\x3c\x2f\x62\x3e\x20\x6d\x65\x6e\x75\x20\x61\x6e\x64\x20\ \x73\x65\x6c\x65\x63\x74\x20\x3c\x62\x3e\x43\x6f\x6e\x66\x69\x67\ \x75\x72\x65\x20\x42\x72\x6f\x77\x73\x65\x72\x2e\x2e\x2e\x3c\x2f\ \x62\x3e\x20\x74\x6f\x20\x61\x63\x63\x65\x73\x73\x20\x74\x68\x65\ \x20\x62\x72\x6f\x77\x73\x65\x72\x27\x73\x20\x63\x6f\x6e\x66\x69\ \x67\x75\x72\x61\x74\x69\x6f\x6e\x2e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x53\x00\x65\x00\x61\ \x00\x26\x00\x72\x00\x63\x00\x68\x00\x20\x00\x66\x00\x6f\x00\x72\ \x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x61\x26\ \x72\x63\x68\x20\x66\x6f\x72\x3a\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x79\x00\x73\x00\ \x74\x00\x65\x00\x6d\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\ \x73\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x79\x73\ \x74\x65\x6d\x20\x70\x61\x74\x68\x73\x3a\x07\x00\x00\x00\x13\x43\ \x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\ \x6f\x67\x01\x03\x00\x00\x00\x22\x00\x4d\x00\x61\x00\x69\x00\x6e\ \x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x65\ \x00\x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x4d\x61\x69\x6e\x74\x61\x69\x6e\x65\x72\x20\x65\ \x2d\x6d\x61\x69\x6c\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\ \x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x22\x00\x4d\x00\x61\x00\ \x69\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\x00\ \x20\x00\x65\x00\x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x11\x4d\x61\x69\x6e\x74\x61\x69\x6e\x65\ \x72\x20\x65\x2d\x6d\x61\x69\x6c\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x32\x00\x50\x00\x61\x00\x63\x00\ \x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x49\x00\x6e\x00\x64\x00\ \x65\x00\x78\x00\x20\x00\x55\x00\x6e\x00\x61\x00\x76\x00\x61\x00\ \x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x19\x50\x61\x63\x6b\x61\x67\x65\x20\x49\x6e\x64\ \x65\x78\x20\x55\x6e\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\ \x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\ \x26\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x53\x65\x74\x74\ \x69\x6e\x67\x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\ \x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x65\x72\ \x73\x69\x6f\x6e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\ \x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x07\x56\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x44\x00\x69\x00\x73\ \x00\x63\x00\x61\x00\x72\x00\x64\x00\x20\x00\x4c\x00\x69\x00\x73\ \x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x44\x69\x73\x63\ \x61\x72\x64\x20\x4c\x69\x73\x74\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x53\x00\x68\x00\x6f\x00\ \x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ \x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\ \x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x53\x68\x6f\ \x77\x69\x6e\x67\x20\x61\x6c\x6c\x20\x70\x61\x63\x6b\x61\x67\x65\ \x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x2a\x00\x41\x00\x62\x00\x6f\x00\x75\ \x00\x74\x00\x20\x00\x50\x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\ \x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x20\x00\x25\ \x00\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x41\x62\x6f\x75\ \x74\x20\x50\x79\x50\x49\x20\x42\x72\x6f\x77\x73\x65\x72\x20\x25\ \x31\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x18\x00\x50\x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\ \x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0c\x50\x79\x50\x49\x20\x42\x72\x6f\x77\x73\x65\x72\ \x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x10\x00\x4b\x00\x65\x00\x79\x00\x77\x00\x6f\x00\x72\x00\x64\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x4b\x65\x79\x77\x6f\ \x72\x64\x73\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\ \x64\x65\x6c\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x65\x00\x79\x00\ \x77\x00\x6f\x00\x72\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x4b\x65\x79\x77\x6f\x72\x64\x73\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x45\x00\x64\ \x00\x69\x00\x74\x00\x20\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\ \x00\x63\x00\x75\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0e\x45\x64\x69\x74\x20\x53\x68\x6f\x72\x74\x63\x75\x74\x73\ \x07\x00\x00\x00\x12\x41\x63\x74\x69\x6f\x6e\x45\x64\x69\x74\x6f\ \x72\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x40\x00\x53\x00\ \x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ \x6c\x00\x6c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x6d\x00\ \x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\x00\x61\x00\ \x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x20\x53\x68\x6f\x77\x69\x6e\x67\x20\x61\ \x6c\x6c\x20\x6e\x65\x77\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\ \x63\x6b\x61\x67\x65\x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\ \x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x32\x00\x53\x00\ \x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ \x6c\x00\x6c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x70\x00\ \x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x68\x6f\x77\x69\x6e\x67\ \x20\x61\x6c\x6c\x20\x6e\x65\x77\x20\x70\x61\x63\x6b\x61\x67\x65\ \x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x1e\x00\x26\x00\x4f\x00\x70\x00\x65\ \x00\x6e\x00\x20\x00\x44\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\ \x00\x6f\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ \x26\x4f\x70\x65\x6e\x20\x44\x69\x72\x65\x63\x74\x6f\x72\x79\x07\ \x00\x00\x00\x11\x55\x69\x5f\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\ \x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\x46\x00\x65\x00\ \x74\x00\x63\x00\x68\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x2e\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x65\x74\x63\x68\ \x69\x6e\x67\x2e\x2e\x2e\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\ \x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x1a\x00\ \x41\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x20\x00\x65\x00\ \x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0d\x41\x75\x74\x68\x6f\x72\x20\x65\x2d\x6d\x61\x69\x6c\ \x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\ \x01\x03\x00\x00\x00\x1a\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x20\x00\x65\x00\x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x75\x74\x68\x6f\x72\ \x20\x65\x2d\x6d\x61\x69\x6c\x07\x00\x00\x00\x06\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x22\x00\x45\x00\x64\x00\x69\x00\x74\ \x00\x20\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\ \x00\x74\x00\x73\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x45\x64\x69\x74\x20\x53\x68\x6f\x72\x74\x63\x75\ \x74\x73\x2e\x2e\x2e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x10\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\ \x00\x63\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ \x53\x68\x6f\x72\x74\x63\x75\x74\x07\x00\x00\x00\x12\x41\x63\x74\ \x69\x6f\x6e\x45\x64\x69\x74\x6f\x72\x44\x69\x61\x6c\x6f\x67\x01\ \x88\x00\x00\x00\x02\x01\x01\ \x00\x00\x2d\x38\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ \x00\x00\x03\x80\x00\x00\x2b\x3b\x00\x00\x00\x00\x00\x00\x2b\x3b\ \x00\x00\x00\x30\x00\x00\x31\x0e\x00\x00\x00\x61\x00\x00\x4c\x93\ \x00\x00\x00\x92\x00\x00\x4c\x93\x00\x00\x00\xc1\x00\x05\x48\x35\ \x00\x00\x00\xf3\x00\x05\x48\x35\x00\x00\x01\x22\x00\x05\x48\x35\ \x00\x00\x01\x4e\x00\x2a\xd0\x25\x00\x00\x01\x75\x00\x2a\xec\x30\ \x00\x00\x01\x9f\x00\x2a\xef\xa5\x00\x00\x01\xc9\x00\x2b\xab\x60\ \x00\x00\x02\x00\x00\x47\xdf\x04\x00\x00\x02\x35\x00\x4a\x36\x95\ \x00\x00\x02\x5f\x00\x4b\x2c\x08\x00\x00\x02\x97\x00\x55\xcf\x67\ \x00\x00\x02\xd0\x00\xa4\x34\x0e\x00\x00\x03\x07\x00\xac\x33\xb9\ \x00\x00\x03\x5e\x00\xc6\x04\x7e\x00\x00\x03\xd1\x00\xf3\x2d\xea\ \x00\x00\x04\x0d\x01\xc0\xbf\x5c\x00\x00\x04\x62\x01\xc0\xbf\x5c\ \x00\x00\x04\xa6\x02\x77\x0b\x35\x00\x00\x04\xe5\x02\x8a\xd3\xfd\ \x00\x00\x05\x23\x02\x8a\xd3\xfd\x00\x00\x05\x5b\x02\xaa\x36\x95\ \x00\x00\x05\x8e\x02\xaa\x36\x95\x00\x00\x05\xc6\x02\xf9\xc5\xc5\ \x00\x00\x06\x01\x02\xf9\xc5\xc5\x00\x00\x06\x36\x03\x1c\x1f\x5e\ \x00\x00\x06\x66\x03\x77\x28\xb5\x00\x00\x06\xa2\x03\x77\x28\xb5\ \x00\x00\x06\xdd\x03\x8c\xa8\xae\x00\x00\x07\x13\x04\x08\x52\x03\ \x00\x00\x07\xf6\x04\x8c\xaf\x62\x00\x00\x08\x36\x04\x8c\xaf\x62\ \x00\x00\x08\x68\x04\x9d\x76\xf3\x00\x00\x08\x95\x04\xab\x8e\xff\ \x00\x00\x08\xee\x04\xab\x8f\x01\x00\x00\x09\x1b\x04\xab\x8f\x02\ \x00\x00\x09\x48\x04\xc8\x02\xb4\x00\x00\x09\x75\x05\x49\x9b\x9e\ \x00\x00\x09\xaa\x05\x62\x37\x7c\x00\x00\x0a\x1e\x05\x75\xce\xee\ \x00\x00\x0a\x5a\x05\x84\xd6\x8e\x00\x00\x0b\x49\x05\x99\x31\x5a\ \x00\x00\x0c\x4a\x05\xa2\xdc\xc2\x00\x00\x0c\xae\x05\xa2\xdc\xc2\ \x00\x00\x0c\xec\x05\xdd\xf3\xf4\x00\x00\x0d\x25\x05\xf8\x33\x4e\ \x00\x00\x0d\x64\x06\x20\x07\xce\x00\x00\x11\x75\x06\x25\x21\x93\ \x00\x00\x11\xb1\x06\x25\x9c\xce\x00\x00\x12\x14\x06\x30\x0a\x42\ \x00\x00\x12\xee\x06\x6c\x13\xbe\x00\x00\x13\x49\x06\xb0\xbe\x8e\ \x00\x00\x13\x7c\x06\xb0\xbe\x8e\x00\x00\x13\xc6\x06\xc7\x2e\x80\ \x00\x00\x14\x0b\x07\x2f\xf0\x1e\x00\x00\x14\x4b\x07\x58\xf2\x71\ \x00\x00\x14\x91\x07\xa1\x56\xa3\x00\x00\x14\xf3\x08\x7d\x76\xba\ \x00\x00\x15\x29\x08\x92\x78\xa1\x00\x00\x15\x90\x08\xad\x40\x2a\ \x00\x00\x15\xde\x09\x4d\x67\xfe\x00\x00\x16\x21\x09\x4d\x67\xfe\ \x00\x00\x16\x69\x09\x4d\x67\xfe\x00\x00\x16\xaa\x09\x5e\x89\xd3\ \x00\x00\x16\xe6\x09\x61\x7e\x69\x00\x00\x17\x21\x09\x68\xe3\x3e\ \x00\x00\x17\x9e\x09\x6c\x5b\x7e\x00\x00\x17\xe8\x09\x7d\xbe\x5e\ \x00\x00\x18\x1e\x09\x96\xeb\x62\x00\x00\x18\x9c\x09\xb6\xd4\x33\ \x00\x00\x18\xdc\x09\xb6\xd4\x33\x00\x00\x19\x1d\x09\xe3\x50\xb9\ \x00\x00\x19\x59\x0a\x3b\x3d\xb4\x00\x00\x1a\xbb\x0a\x98\x49\x9c\ \x00\x00\x1a\xfd\x0a\x98\x49\x9c\x00\x00\x1b\x39\x0a\xc0\xa4\xf7\ \x00\x00\x1b\x76\x0a\xc4\x38\xc9\x00\x00\x1b\xaf\x0a\xc4\x38\xc9\ \x00\x00\x1b\xe4\x0a\xcf\xc2\x5a\x00\x00\x1c\x14\x0b\x26\xe5\x8a\ \x00\x00\x1c\x44\x0b\x80\xaf\x7e\x00\x00\x1c\xa8\x0b\x9b\x88\xb8\ \x00\x00\x1c\xe5\x0b\xdb\xc9\xde\x00\x00\x1d\x15\x0c\x30\x75\x7e\ \x00\x00\x1f\x64\x0c\x39\xac\xae\x00\x00\x20\x7e\x0c\x3e\x0b\xda\ \x00\x00\x22\xdc\x0c\x62\x04\xca\x00\x00\x23\x1b\x0c\x6f\xfb\xec\ \x00\x00\x23\x6a\x0c\x6f\xfb\xec\x00\x00\x23\xbd\x0c\xac\x6e\xa5\ \x00\x00\x24\x0b\x0c\xba\xef\x73\x00\x00\x24\x71\x0c\xc9\xa0\x0e\ \x00\x00\x24\xa7\x0c\xc9\xa0\x0e\x00\x00\x24\xdc\x0c\xd5\xc9\x24\ \x00\x00\x25\x0c\x0c\xd9\xba\xbe\x00\x00\x25\x4b\x0c\xee\xcb\x91\ \x00\x00\x25\xaa\x0d\x08\xa2\x82\x00\x00\x26\x04\x0d\x0e\x6d\xa3\ \x00\x00\x26\x43\x0d\x0e\x6d\xa3\x00\x00\x26\x7b\x0d\x9c\xf1\xd3\ \x00\x00\x26\xae\x0e\x1a\x7a\xfe\x00\x00\x26\xff\x0e\x4c\x64\xae\ \x00\x00\x27\x7f\x0e\x7a\xd4\xf9\x00\x00\x27\xea\x0e\xc8\x6b\x9e\ \x00\x00\x28\x3d\x0e\xca\xc1\xfc\x00\x00\x28\x81\x0e\xca\xc1\xfc\ \x00\x00\x28\xc8\x0f\x1d\x9a\xce\x00\x00\x29\x0a\x0f\x69\xaf\x54\ \x00\x00\x29\x58\x69\x00\x00\x29\x97\x03\x00\x00\x00\x06\x00\x26\ \x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x26\x4f\ \x4b\x07\x00\x00\x00\x12\x41\x63\x74\x69\x6f\x6e\x45\x64\x69\x74\ \x6f\x72\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\x00\x26\ \x00\x4f\x00\x4b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x26\x4f\ \x4b\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\x00\ \x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x2e\ \x2e\x2e\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\ \x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\ \x00\x45\x00\x73\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ \x45\x73\x63\x07\x00\x00\x00\x11\x55\x69\x5f\x44\x6f\x77\x6e\x6c\ \x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x06\x00\ \x45\x00\x73\x00\x63\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x45\ \x73\x63\x07\x00\x00\x00\x14\x55\x69\x5f\x49\x6e\x66\x6f\x72\x6d\ \x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x08\x00\x4e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\ \x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x08\ \x00\x4e\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x04\x4e\x61\x6d\x65\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\ \x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x08\x00\x4e\x00\x61\ \x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x61\ \x6d\x65\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0a\x00\x26\x00\x46\x00\x69\x00\x6c\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x05\x26\x46\x69\x6c\x65\x07\x00\x00\x00\ \x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x26\x00\ \x48\x00\x65\x00\x6c\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x05\x26\x48\x65\x6c\x70\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x0a\x00\x26\x00\x48\x00\x69\x00\x64\x00\ \x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x48\x69\x64\x65\ \x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\ \x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x0a\x00\x26\ \x00\x53\x00\x74\x00\x6f\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x26\x53\x74\x6f\x70\x07\x00\x00\x00\x11\x55\x69\x5f\x44\ \x6f\x77\x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\ \x00\x00\x0a\x00\x45\x00\x26\x00\x78\x00\x69\x00\x74\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x05\x45\x26\x78\x69\x74\x07\x00\x00\x00\ \x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x43\x00\ \x6c\x00\x6f\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x05\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x14\x55\x69\x5f\x49\x6e\ \x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x14\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\ \x49\x00\x6e\x00\x64\x00\x65\x00\x78\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0a\x4f\x70\x65\x6e\x20\x49\x6e\x64\x65\x78\x07\x00\x00\ \x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0a\x00\x53\ \x00\x26\x00\x68\x00\x6f\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x05\x53\x26\x68\x6f\x77\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\ \x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\ \x03\x00\x00\x00\x28\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\ \x67\x00\x75\x00\x72\x00\x65\x00\x20\x00\x42\x00\x72\x00\x6f\x00\ \x77\x00\x73\x00\x65\x00\x72\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x14\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\ \x20\x42\x72\x6f\x77\x73\x65\x72\x2e\x2e\x2e\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x32\x00\x43\x00\x68\ \x00\x6f\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x44\x00\x6f\x00\x77\ \x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x20\x00\x44\x00\x69\ \x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x19\x43\x68\x6f\x6f\x73\x65\x20\x44\ \x6f\x77\x6e\x6c\x6f\x61\x64\x20\x44\x69\x72\x65\x63\x74\x6f\x72\ \x79\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\ \x43\x00\x74\x00\x72\x00\x6c\x00\x2b\x00\x52\x00\x65\x00\x74\x00\ \x75\x00\x72\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\ \x74\x72\x6c\x2b\x52\x65\x74\x75\x72\x6e\x07\x00\x00\x00\x06\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x61\x00\ \x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x26\x00\x49\x00\ \x6e\x00\x64\x00\x65\x00\x78\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0f\x50\x61\x63\x6b\x61\x67\x65\x20\x26\x49\x6e\x64\x65\ \x78\x3a\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\ \x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x18\ \x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\ \x00\x20\x00\x55\x00\x52\x00\x4c\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0c\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x55\x52\x4c\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x18\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x20\x00\x55\x00\x52\x00\x4c\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x0c\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x55\ \x52\x4c\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x12\x00\x46\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\ \x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\ \x69\x6c\x65\x20\x6e\x61\x6d\x65\x07\x00\x00\x00\x0e\x44\x6f\x77\ \x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\ \x10\x00\x50\x00\x6c\x00\x61\x00\x74\x00\x66\x00\x6f\x00\x72\x00\ \x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x6c\x61\x74\x66\ \x6f\x72\x6d\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\ \x64\x65\x6c\x01\x03\x00\x00\x00\x10\x00\x50\x00\x6c\x00\x61\x00\ \x74\x00\x66\x00\x6f\x00\x72\x00\x6d\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x50\x6c\x61\x74\x66\x6f\x72\x6d\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x43\ \x00\x6c\x00\x6f\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x11\x55\x69\x5f\ \x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\ \x00\x00\x00\x0c\x00\x26\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\ \x07\x00\x00\x00\x14\x55\x69\x5f\x49\x6e\x66\x6f\x72\x6d\x61\x74\ \x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\ \x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x07\x4c\x69\x63\x65\x6e\x73\x65\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x0e\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\x73\ \x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x4c\x69\x63\x65\ \x6e\x73\x65\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x16\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0b\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x2e\x2e\x2e\x07\ \x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\ \x00\x48\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x67\ \x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x48\x6f\x6d\x65\ \x20\x70\x61\x67\x65\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\ \x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x12\x00\x48\x00\x6f\x00\ \x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\x67\x00\x65\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x09\x48\x6f\x6d\x65\x20\x70\x61\x67\x65\ \x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x82\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ \x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\ \x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\ \x20\x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\ \x73\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x25\x00\ \x31\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\ \x25\x00\x32\x00\x27\x00\x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\ \x68\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\ \x27\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\x53\x68\x6f\ \x77\x69\x6e\x67\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\x63\x6b\ \x61\x67\x65\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\x65\x74\x20\ \x6f\x66\x20\x25\x31\x20\x77\x69\x74\x68\x20\x27\x25\x32\x27\x20\ \x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x27\x25\x33\x27\x2e\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x10\x00\x25\x00\x31\x00\x2e\x00\x25\x00\x32\x00\x2e\ \x00\x25\x00\x33\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x25\x31\ \x2e\x25\x32\x2e\x25\x33\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\ \x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\ \x00\x00\x00\x0c\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x41\x75\x74\x68\x6f\x72\ \x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\ \x01\x03\x00\x00\x00\x0c\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x41\x75\x74\x68\ \x6f\x72\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x22\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\ \x61\x00\x64\x00\x20\x00\x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\ \x67\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\ \x6f\x77\x6e\x6c\x6f\x61\x64\x20\x50\x61\x63\x6b\x61\x67\x65\x73\ \x07\x00\x00\x00\x11\x55\x69\x5f\x44\x6f\x77\x6e\x6c\x6f\x61\x64\ \x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x0c\x00\x43\x00\x74\ \x00\x72\x00\x6c\x00\x2b\x00\x4f\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x06\x43\x74\x72\x6c\x2b\x4f\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x0c\x00\x43\x00\x74\x00\x72\x00\ \x6c\x00\x2b\x00\x51\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ \x74\x72\x6c\x2b\x51\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x0c\x00\x43\x00\x74\x00\x72\x00\x6c\x00\x2b\ \x00\x52\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x74\x72\x6c\ \x2b\x52\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x0c\x00\x46\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x06\x46\x61\x69\x6c\x65\x64\x07\ \x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x69\x61\x6c\ \x6f\x67\x01\x03\x00\x00\x00\x38\x00\x53\x00\x68\x00\x6f\x00\x77\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\ \x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\ \x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x68\x6f\x77\x69\x6e\ \x67\x20\x61\x6c\x6c\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\x63\ \x6b\x61\x67\x65\x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\ \x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x16\x00\x4f\x00\x70\ \x00\x65\x00\x6e\x00\x20\x00\x4d\x00\x61\x00\x6e\x00\x75\x00\x61\ \x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x4f\x70\x65\x6e\ \x20\x4d\x61\x6e\x75\x61\x6c\x07\x00\x00\x00\x06\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x8a\x00\x53\x00\x68\x00\x6f\x00\x77\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\ \x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\ \x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\ \x00\x66\x00\x72\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\ \x00\x65\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x25\x00\x31\ \x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\x25\ \x00\x32\x00\x27\x00\x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\x68\ \x00\x69\x00\x6e\x00\x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\x27\ \x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x45\x53\x68\x6f\x77\ \x69\x6e\x67\x20\x6e\x65\x77\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\ \x61\x63\x6b\x61\x67\x65\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x73\ \x65\x74\x20\x6f\x66\x20\x25\x31\x20\x77\x69\x74\x68\x20\x27\x25\ \x32\x27\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x27\x25\x33\x27\ \x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\ \x6c\x01\x03\x00\x00\x00\x56\x00\x53\x00\x68\x00\x6f\x00\x77\x00\ \x69\x00\x6e\x00\x67\x00\x20\x00\x25\x00\x31\x00\x20\x00\x70\x00\ \x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x77\x00\ \x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\x25\x00\x32\x00\x27\x00\ \x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\x68\x00\x69\x00\x6e\x00\ \x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\x27\x00\x2e\x03\x00\x00\ \x00\x58\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x25\x00\x31\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\ \x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\ \x00\x68\x00\x20\x00\x27\x00\x25\x00\x32\x00\x27\x00\x20\x00\x6d\ \x00\x61\x00\x74\x00\x63\x00\x68\x00\x69\x00\x6e\x00\x67\x00\x20\ \x00\x27\x00\x25\x00\x33\x00\x27\x00\x2e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x2e\x53\x68\x6f\x77\x69\x6e\x67\x20\x25\x31\x20\x70\ \x61\x63\x6b\x61\x67\x65\x28\x73\x29\x20\x77\x69\x74\x68\x20\x27\ \x25\x32\x27\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x27\x25\x33\ \x27\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x28\x00\x49\x00\x6e\x00\x74\x00\x65\ \x00\x72\x00\x70\x00\x72\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\ \x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x3a\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x49\x6e\x74\x65\x72\x70\ \x72\x65\x74\x65\x72\x20\x76\x65\x72\x73\x69\x6f\x6e\x3a\x07\x00\ \x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\ \x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x61\ \x00\x69\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x69\x6e\x74\x61\ \x69\x6e\x65\x72\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\ \x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x61\x00\x69\ \x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0a\x4d\x61\x69\x6e\x74\x61\x69\x6e\ \x65\x72\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x18\x00\x26\x00\x52\x00\x65\x00\x6c\x00\x6f\x00\x61\x00\ \x64\x00\x20\x00\x4c\x00\x69\x00\x73\x00\x74\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x0c\x26\x52\x65\x6c\x6f\x61\x64\x20\x4c\x69\x73\ \x74\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x02\xa4\x00\x3c\x00\x71\x00\x74\x00\x3e\x00\x3c\x00\x68\x00\x33\ \x00\x3e\x00\x41\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x20\x00\x50\ \x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\ \x00\x73\x00\x65\x00\x72\x00\x20\x00\x25\x00\x31\x00\x3c\x00\x2f\ \x00\x68\x00\x33\x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\x50\x00\x79\ \x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\ \x00\x65\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x6f\x00\x77\ \x00\x73\x00\x20\x00\x79\x00\x6f\x00\x75\x00\x20\x00\x74\x00\x6f\ \x00\x20\x00\x65\x00\x78\x00\x61\x00\x6d\x00\x69\x00\x6e\x00\x65\ \x00\x20\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\x61\x00\x62\ \x00\x6c\x00\x65\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\ \x00\x67\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x74\ \x00\x68\x00\x65\x00\x20\x00\x50\x00\x79\x00\x74\x00\x68\x00\x6f\ \x00\x6e\x00\x20\x00\x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\ \x00\x65\x00\x20\x00\x49\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x20\ \x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x74\x00\x68\x00\x65\ \x00\x72\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\ \x00\x65\x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x65\ \x00\x73\x00\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x65\ \x00\x78\x00\x70\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x61\x00\x20\ \x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x61\x00\x74\x00\x69\x00\x62\ \x00\x6c\x00\x65\x00\x20\x00\x58\x00\x4d\x00\x4c\x00\x2d\x00\x52\ \x00\x50\x00\x43\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ \x00\x66\x00\x61\x00\x63\x00\x65\x00\x2e\x00\x3c\x00\x2f\x00\x70\ \x00\x3e\x00\x3c\x00\x70\x00\x3e\x00\x55\x00\x73\x00\x65\x00\x73\ \x00\x20\x00\x64\x00\x65\x00\x73\x00\x6b\x00\x74\x00\x6f\x00\x70\ \x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x67\x00\x72\x00\x61\ \x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x66\x00\x65\x00\x61\ \x00\x74\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x70\x00\x72\ \x00\x6f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x64\x00\x20\x00\x62\ \x00\x79\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\ \x00\x6e\x00\x20\x00\x25\x00\x32\x00\x20\x00\x6f\x00\x66\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x3c\x00\x69\x00\x3e\x00\x64\ \x00\x65\x00\x73\x00\x6b\x00\x74\x00\x6f\x00\x70\x00\x3c\x00\x2f\ \x00\x69\x00\x3e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\ \x00\x65\x00\x20\x00\x28\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\ \x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x70\x00\x61\ \x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x69\x00\x6e\ \x00\x64\x00\x65\x00\x78\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ \x00\x6d\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x66\ \x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ \x00\x29\x00\x2e\x00\x3c\x00\x2f\x00\x70\x00\x3e\x00\x3c\x00\x2f\ \x00\x71\x00\x74\x00\x3e\x08\x00\x00\x00\x00\x06\x00\x00\x01\x52\ \x3c\x71\x74\x3e\x3c\x68\x33\x3e\x41\x62\x6f\x75\x74\x20\x50\x79\ \x50\x49\x20\x42\x72\x6f\x77\x73\x65\x72\x20\x25\x31\x3c\x2f\x68\ \x33\x3e\x3c\x70\x3e\x50\x79\x50\x49\x20\x42\x72\x6f\x77\x73\x65\ \x72\x20\x61\x6c\x6c\x6f\x77\x73\x20\x79\x6f\x75\x20\x74\x6f\x20\ \x65\x78\x61\x6d\x69\x6e\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\ \x65\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6e\x20\x74\x68\ \x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x50\x61\x63\x6b\x61\x67\x65\ \x20\x49\x6e\x64\x65\x78\x20\x61\x6e\x64\x20\x6f\x74\x68\x65\x72\ \x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x6e\x64\x65\x78\x65\x73\ \x20\x74\x68\x61\x74\x20\x65\x78\x70\x6f\x73\x65\x20\x61\x20\x63\ \x6f\x6d\x70\x61\x74\x69\x62\x6c\x65\x20\x58\x4d\x4c\x2d\x52\x50\ \x43\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x2e\x3c\x2f\x70\x3e\ \x3c\x70\x3e\x55\x73\x65\x73\x20\x64\x65\x73\x6b\x74\x6f\x70\x20\ \x69\x6e\x74\x65\x67\x72\x61\x74\x69\x6f\x6e\x20\x66\x65\x61\x74\ \x75\x72\x65\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x62\x79\ \x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x25\x32\x20\x6f\x66\x20\x74\ \x68\x65\x20\x3c\x69\x3e\x64\x65\x73\x6b\x74\x6f\x70\x3c\x2f\x69\ \x3e\x20\x6d\x6f\x64\x75\x6c\x65\x20\x28\x73\x65\x61\x72\x63\x68\ \x20\x74\x68\x65\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x6e\x64\ \x65\x78\x20\x66\x6f\x72\x20\x6d\x6f\x72\x65\x20\x69\x6e\x66\x6f\ \x72\x6d\x61\x74\x69\x6f\x6e\x29\x2e\x3c\x2f\x70\x3e\x3c\x2f\x71\ \x74\x3e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x00\x16\x00\x41\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x20\x00\ \x51\x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0b\x41\x62\x6f\x75\x74\x20\x51\x74\x2e\x2e\x2e\x07\x00\ \x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x30\x00\ \x43\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x44\x00\ \x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x20\x00\ \x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x18\x43\x61\x6e\x6e\x6f\x74\x20\ \x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x50\x61\x63\x6b\x61\x67\x65\ \x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x7c\x00\x53\x00\x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\ \x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x70\x00\x61\x00\x63\ \x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x66\x00\x72\ \x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x20\x00\x73\x00\x65\x00\x74\ \x00\x20\x00\x6f\x00\x66\x00\x20\x00\x25\x00\x31\x00\x20\x00\x77\ \x00\x69\x00\x74\x00\x68\x00\x20\x00\x27\x00\x25\x00\x32\x00\x27\ \x00\x20\x00\x6d\x00\x61\x00\x74\x00\x63\x00\x68\x00\x69\x00\x6e\ \x00\x67\x00\x20\x00\x27\x00\x25\x00\x33\x00\x27\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x3e\x53\x68\x6f\x77\x69\x6e\x67\x20\ \x6e\x65\x77\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x66\x72\x6f\ \x6d\x20\x61\x20\x73\x65\x74\x20\x6f\x66\x20\x25\x31\x20\x77\x69\ \x74\x68\x20\x27\x25\x32\x27\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\ \x20\x27\x25\x33\x27\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\ \x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x22\x00\x43\x00\x6f\ \x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x20\ \x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x11\x43\x6f\x6e\x66\x69\x67\x75\x72\ \x65\x20\x42\x72\x6f\x77\x73\x65\x72\x07\x00\x00\x00\x13\x43\x6f\ \x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\ \x67\x01\x03\x00\x00\x00\x10\x00\x26\x00\x4f\x00\x70\x00\x65\x00\ \x6e\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x08\x26\x4f\x70\x65\x6e\x2e\x2e\x2e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x53\x00\x74\x00\x61\ \x00\x62\x00\x6c\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\ \x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ \x53\x74\x61\x62\x6c\x65\x20\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\ \x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\ \x00\x00\x00\x1c\x00\x53\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\ \x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x53\x74\x61\x62\x6c\x65\ \x20\x76\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x4d\x00\x6f\x00\x76\x00\ \x65\x00\x20\x00\x26\x00\x55\x00\x70\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x4d\x6f\x76\x65\x20\x26\x55\x70\x07\x00\x00\x00\x13\ \x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\ \x6c\x6f\x67\x01\x03\x00\x00\x00\x14\x00\x4d\x00\x6f\x00\x76\x00\ \x65\x00\x20\x00\x26\x00\x44\x00\x6f\x00\x77\x00\x6e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0a\x4d\x6f\x76\x65\x20\x26\x44\x6f\x77\ \x6e\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x28\x00\ \x49\x00\x6e\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\ \x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x62\x00\x6f\x00\x75\x00\ \x74\x00\x20\x00\x25\x00\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\ \x14\x49\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62\x6f\ \x75\x74\x20\x25\x31\x07\x00\x00\x00\x11\x49\x6e\x66\x6f\x72\x6d\ \x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x12\x00\x26\x00\x50\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\ \x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x50\x61\ \x63\x6b\x61\x67\x65\x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\x2a\x00\x26\x00\x50\x00\x61\x00\x63\x00\ \x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\ \x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\ \x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x26\x50\x61\x63\x6b\ \x61\x67\x65\x20\x70\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x73\x3a\ \x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\ \x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x22\x00\x50\ \x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\ \x00\x73\x00\x65\x00\x72\x00\x20\x00\x2d\x00\x20\x00\x25\x00\x31\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x79\x50\x49\x20\x42\ \x72\x6f\x77\x73\x65\x72\x20\x2d\x20\x25\x31\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\x50\x00\x6c\ \x00\x61\x00\x74\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x3a\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x09\x50\x6c\x61\x74\x66\x6f\x72\x6d\ \x3a\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\ \x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\ \x44\x00\x65\x00\x73\x00\x63\x00\x72\x00\x69\x00\x70\x00\x74\x00\ \x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\ \x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x07\x00\x00\x00\x12\x41\ \x63\x74\x69\x6f\x6e\x45\x64\x69\x74\x6f\x72\x44\x69\x61\x6c\x6f\ \x67\x01\x03\x00\x00\x00\x16\x00\x44\x00\x65\x00\x73\x00\x63\x00\ \x72\x00\x69\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x0b\x44\x65\x73\x63\x72\x69\x70\x74\x69\ \x6f\x6e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x16\x00\x44\x00\x65\x00\x73\x00\x63\ \x00\x72\x00\x69\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x0b\x44\x65\x73\x63\x72\x69\x70\x74\ \x69\x6f\x6e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\ \x00\x00\x00\x10\x00\x50\x00\x72\x00\x6f\x00\x67\x00\x72\x00\x65\ \x00\x73\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x50\x72\ \x6f\x67\x72\x65\x73\x73\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\ \x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x20\x00\ \x25\x00\x31\x00\x2f\x00\x25\x00\x32\x00\x20\x00\x62\x00\x79\x00\ \x74\x00\x65\x00\x20\x00\x28\x00\x25\x00\x33\x00\x25\x00\x29\x03\ \x00\x00\x00\x22\x00\x25\x00\x31\x00\x2f\x00\x25\x00\x32\x00\x20\ \x00\x62\x00\x79\x00\x74\x00\x65\x00\x73\x00\x20\x00\x28\x00\x25\ \x00\x33\x00\x25\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\ \x25\x31\x2f\x25\x32\x20\x62\x79\x74\x65\x28\x73\x29\x20\x28\x25\ \x33\x25\x29\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\x6f\x61\x64\ \x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\x49\x00\x6e\ \x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x6f\ \x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x49\x6e\x66\x6f\ \x72\x6d\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x14\x55\x69\x5f\x49\ \x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x12\x00\x26\x00\x41\x00\x62\x00\x6f\x00\x75\ \x00\x74\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x09\x26\x41\x62\x6f\x75\x74\x2e\x2e\x2e\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x42\x00\x45\x00\x6e\ \x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ \x00\x55\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\ \x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\ \x00\x20\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\x21\x45\x6e\x74\x65\x72\x20\x74\x68\ \x65\x20\x55\x52\x4c\x20\x6f\x66\x20\x61\x20\x70\x61\x63\x6b\x61\ \x67\x65\x20\x69\x6e\x64\x65\x78\x2e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x10\x00\x26\x00\x42\x00\x72\ \x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x08\x26\x42\x72\x6f\x77\x73\x65\x72\x07\x00\x00\x00\ \x13\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\ \x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\x61\ \x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x73\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x61\x73\x73\x69\ \x66\x69\x65\x72\x73\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\ \x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6c\x00\ \x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x43\x6c\x61\x73\x73\ \x69\x66\x69\x65\x72\x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\ \x77\x01\x03\x00\x00\x00\xda\x00\x54\x00\x68\x00\x65\x00\x20\x00\ \x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\ \x69\x00\x6e\x00\x64\x00\x65\x00\x78\x00\x20\x00\x79\x00\x6f\x00\ \x75\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\ \x69\x00\x65\x00\x64\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ \x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x6c\x00\x79\x00\ \x20\x00\x75\x00\x6e\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\x00\ \x61\x00\x62\x00\x6c\x00\x65\x00\x2e\x00\x0a\x00\x28\x00\x49\x00\ \x20\x00\x66\x00\x61\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x74\x00\x61\x00\x69\x00\ \x6e\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x73\x00\x74\x00\ \x20\x00\x6f\x00\x66\x00\x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\ \x61\x00\x67\x00\x65\x00\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\ \x73\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\x00\x73\x00\x2e\x00\ \x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6d\x54\x68\x65\x20\x70\ \x61\x63\x6b\x61\x67\x65\x20\x69\x6e\x64\x65\x78\x20\x79\x6f\x75\ \x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x69\x73\x20\x63\x75\ \x72\x72\x65\x6e\x74\x6c\x79\x20\x75\x6e\x61\x76\x61\x69\x6c\x61\ \x62\x6c\x65\x2e\x0a\x28\x49\x20\x66\x61\x69\x6c\x65\x64\x20\x74\ \x6f\x20\x6f\x62\x74\x61\x69\x6e\x20\x61\x20\x6c\x69\x73\x74\x20\ \x6f\x66\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x6c\x61\x73\x73\ \x69\x66\x69\x65\x72\x73\x2e\x29\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x46\x00\x69\x00\x6c\x00\ \x74\x00\x65\x00\x72\x00\x20\x00\x4d\x00\x61\x00\x72\x00\x6b\x00\ \x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x46\x69\x6c\ \x74\x65\x72\x20\x4d\x61\x72\x6b\x65\x64\x07\x00\x00\x00\x06\x57\ \x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x43\x00\ \x61\x00\x6e\x00\x63\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x07\x26\x43\x61\x6e\x63\x65\x6c\x07\x00\x00\x00\x12\x41\ \x63\x74\x69\x6f\x6e\x45\x64\x69\x74\x6f\x72\x44\x69\x61\x6c\x6f\ \x67\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x43\x00\x61\x00\x6e\x00\ \x63\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\ \x43\x61\x6e\x63\x65\x6c\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\ \x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\ \x00\x00\x00\x14\x00\x46\x00\x69\x00\x6c\x00\x74\x00\x65\x00\x72\ \x00\x20\x00\x4e\x00\x65\x00\x77\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0a\x46\x69\x6c\x74\x65\x72\x20\x4e\x65\x77\x07\x00\x00\x00\ \x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x0e\x00\x53\x00\ \x75\x00\x6d\x00\x6d\x00\x61\x00\x72\x00\x79\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x07\x53\x75\x6d\x6d\x61\x72\x79\x07\x00\x00\x00\ \x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\ \x00\x0e\x00\x53\x00\x75\x00\x6d\x00\x6d\x00\x61\x00\x72\x00\x79\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x75\x6d\x6d\x61\x72\ \x79\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x0e\x00\x26\x00\x46\x00\x69\x00\x65\x00\x6c\x00\x64\x00\x3a\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x65\x6c\x64\ \x3a\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x28\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\ \x00\x64\x00\x20\x00\x64\x00\x69\x00\x26\x00\x72\x00\x65\x00\x63\ \x00\x74\x00\x6f\x00\x72\x00\x79\x00\x3a\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x14\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x64\x69\x26\ \x72\x65\x63\x74\x6f\x72\x79\x3a\x07\x00\x00\x00\x13\x43\x6f\x6e\ \x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\ \x01\x03\x00\x00\x00\x0e\x00\x26\x00\x50\x00\x79\x00\x74\x00\x68\ \x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x50\ \x79\x74\x68\x6f\x6e\x07\x00\x00\x00\x13\x43\x6f\x6e\x66\x69\x67\ \x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\ \x00\x00\x0e\x00\x26\x00\x53\x00\x65\x00\x61\x00\x72\x00\x63\x00\ \x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x53\x65\x61\x72\ \x63\x68\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\ \x00\x01\x78\x00\x3c\x00\x71\x00\x74\x00\x3e\x00\x59\x00\x6f\x00\ \x75\x00\x20\x00\x6e\x00\x65\x00\x65\x00\x64\x00\x20\x00\x74\x00\ \x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\ \x75\x00\x72\x00\x65\x00\x20\x00\x61\x00\x20\x00\x64\x00\x6f\x00\ \x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x20\x00\x64\x00\ \x69\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x79\x00\ \x20\x00\x62\x00\x65\x00\x66\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ \x79\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x61\x00\x6e\x00\x20\x00\ \x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\ \x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\ \x73\x00\x2e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x20\x00\ \x74\x00\x68\x00\x65\x00\x20\x00\x3c\x00\x62\x00\x3e\x00\x53\x00\ \x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x3c\x00\ \x2f\x00\x62\x00\x3e\x00\x20\x00\x6d\x00\x65\x00\x6e\x00\x75\x00\ \x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ \x65\x00\x63\x00\x74\x00\x20\x00\x3c\x00\x62\x00\x3e\x00\x43\x00\ \x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\ \x20\x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\ \x2e\x00\x2e\x00\x2e\x00\x3c\x00\x2f\x00\x62\x00\x3e\x00\x20\x00\ \x74\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x63\x00\x65\x00\x73\x00\ \x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x72\x00\ \x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x27\x00\x73\x00\x20\x00\ \x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\ \x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\xbc\x3c\x71\x74\x3e\x59\x6f\x75\x20\x6e\x65\x65\ \x64\x20\x74\x6f\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x61\ \x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x64\x69\x72\x65\x63\x74\ \x6f\x72\x79\x20\x62\x65\x66\x6f\x72\x65\x20\x79\x6f\x75\x20\x63\ \x61\x6e\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x20\x70\x61\x63\x6b\ \x61\x67\x65\x73\x2e\x20\x4f\x70\x65\x6e\x20\x74\x68\x65\x20\x3c\ \x62\x3e\x53\x65\x74\x74\x69\x6e\x67\x73\x3c\x2f\x62\x3e\x20\x6d\ \x65\x6e\x75\x20\x61\x6e\x64\x20\x73\x65\x6c\x65\x63\x74\x20\x3c\ \x62\x3e\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x20\x42\x72\x6f\x77\ \x73\x65\x72\x2e\x2e\x2e\x3c\x2f\x62\x3e\x20\x74\x6f\x20\x61\x63\ \x63\x65\x73\x73\x20\x74\x68\x65\x20\x62\x72\x6f\x77\x73\x65\x72\ \x27\x73\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\ \x2e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\xaa\x00\x3c\x00\x71\x00\x74\x00\x3e\x00\x59\x00\x6f\x00\x75\ \x00\x20\x00\x68\x00\x61\x00\x76\x00\x65\x00\x20\x00\x6d\x00\x61\ \x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\x00\x61\x00\x63\ \x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\ \x00\x72\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x2e\x00\x0a\x00\x43\x00\x6c\x00\x69\x00\x63\ \x00\x6b\x00\x20\x00\x3c\x00\x62\x00\x3e\x00\x4f\x00\x4b\x00\x3c\ \x00\x2f\x00\x62\x00\x3e\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x64\ \x00\x69\x00\x73\x00\x63\x00\x61\x00\x72\x00\x64\x00\x20\x00\x74\ \x00\x68\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x73\x00\x74\ \x00\x2e\x00\x3c\x00\x2f\x00\x71\x00\x74\x00\x3e\x08\x00\x00\x00\ \x00\x06\x00\x00\x00\x55\x3c\x71\x74\x3e\x59\x6f\x75\x20\x68\x61\ \x76\x65\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\x63\x6b\x61\x67\ \x65\x73\x20\x66\x6f\x72\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2e\ \x0a\x43\x6c\x69\x63\x6b\x20\x3c\x62\x3e\x4f\x4b\x3c\x2f\x62\x3e\ \x20\x74\x6f\x20\x64\x69\x73\x63\x61\x72\x64\x20\x74\x68\x69\x73\ \x20\x6c\x69\x73\x74\x2e\x3c\x2f\x71\x74\x3e\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x01\x82\x00\x3c\x00\x71\ \x00\x74\x00\x3e\x00\x59\x00\x6f\x00\x75\x00\x20\x00\x6e\x00\x65\ \x00\x65\x00\x64\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\ \x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x20\ \x00\x70\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\ \x00\x63\x00\x65\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\ \x00\x74\x00\x68\x00\x65\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\ \x00\x73\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x70\x00\x61\x00\x63\ \x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x79\x00\x6f\ \x00\x75\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x74\ \x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\ \x00\x61\x00\x64\x00\x2e\x00\x20\x00\x4f\x00\x70\x00\x65\x00\x6e\ \x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x3c\x00\x62\x00\x3e\ \x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\ \x00\x3c\x00\x2f\x00\x62\x00\x3e\x00\x20\x00\x6d\x00\x65\x00\x6e\ \x00\x75\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\ \x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x3c\x00\x62\x00\x3e\ \x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\ \x00\x65\x00\x20\x00\x42\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\ \x00\x72\x00\x2e\x00\x2e\x00\x2e\x00\x3c\x00\x2f\x00\x62\x00\x3e\ \x00\x20\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x63\x00\x65\ \x00\x73\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x62\ \x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x27\x00\x73\ \x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ \x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x08\x00\ \x00\x00\x00\x06\x00\x00\x00\xc1\x3c\x71\x74\x3e\x59\x6f\x75\x20\ \x6e\x65\x65\x64\x20\x74\x6f\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\ \x65\x20\x70\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x66\x6f\ \x72\x20\x74\x68\x65\x20\x74\x79\x70\x65\x73\x20\x6f\x66\x20\x70\ \x61\x63\x6b\x61\x67\x65\x73\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ \x20\x74\x6f\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x2e\x20\x4f\x70\ \x65\x6e\x20\x74\x68\x65\x20\x3c\x62\x3e\x53\x65\x74\x74\x69\x6e\ \x67\x73\x3c\x2f\x62\x3e\x20\x6d\x65\x6e\x75\x20\x61\x6e\x64\x20\ \x73\x65\x6c\x65\x63\x74\x20\x3c\x62\x3e\x43\x6f\x6e\x66\x69\x67\ \x75\x72\x65\x20\x42\x72\x6f\x77\x73\x65\x72\x2e\x2e\x2e\x3c\x2f\ \x62\x3e\x20\x74\x6f\x20\x61\x63\x63\x65\x73\x73\x20\x74\x68\x65\ \x20\x62\x72\x6f\x77\x73\x65\x72\x27\x73\x20\x63\x6f\x6e\x66\x69\ \x67\x75\x72\x61\x74\x69\x6f\x6e\x2e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x53\x00\x65\x00\x61\ \x00\x26\x00\x72\x00\x63\x00\x68\x00\x20\x00\x66\x00\x6f\x00\x72\ \x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x61\x26\ \x72\x63\x68\x20\x66\x6f\x72\x3a\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x1a\x00\x53\x00\x79\x00\x73\x00\ \x74\x00\x65\x00\x6d\x00\x20\x00\x70\x00\x61\x00\x74\x00\x68\x00\ \x73\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x79\x73\ \x74\x65\x6d\x20\x70\x61\x74\x68\x73\x3a\x07\x00\x00\x00\x13\x43\ \x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x44\x69\x61\x6c\ \x6f\x67\x01\x03\x00\x00\x00\x22\x00\x4d\x00\x61\x00\x69\x00\x6e\ \x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x65\ \x00\x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x4d\x61\x69\x6e\x74\x61\x69\x6e\x65\x72\x20\x65\ \x2d\x6d\x61\x69\x6c\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\ \x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x22\x00\x4d\x00\x61\x00\ \x69\x00\x6e\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x65\x00\x72\x00\ \x20\x00\x65\x00\x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x11\x4d\x61\x69\x6e\x74\x61\x69\x6e\x65\ \x72\x20\x65\x2d\x6d\x61\x69\x6c\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x32\x00\x50\x00\x61\x00\x63\x00\ \x6b\x00\x61\x00\x67\x00\x65\x00\x20\x00\x49\x00\x6e\x00\x64\x00\ \x65\x00\x78\x00\x20\x00\x55\x00\x6e\x00\x61\x00\x76\x00\x61\x00\ \x69\x00\x6c\x00\x61\x00\x62\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ \x06\x00\x00\x00\x19\x50\x61\x63\x6b\x61\x67\x65\x20\x49\x6e\x64\ \x65\x78\x20\x55\x6e\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x07\x00\ \x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x12\x00\ \x26\x00\x53\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x53\x65\x74\x74\ \x69\x6e\x67\x73\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\ \x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x72\x00\x73\x00\x69\x00\ \x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x56\x65\x72\ \x73\x69\x6f\x6e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\ \x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x0e\x00\x56\x00\x65\x00\x72\ \x00\x73\x00\x69\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x07\x56\x65\x72\x73\x69\x6f\x6e\x07\x00\x00\x00\x06\x57\x69\ \x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x18\x00\x44\x00\x69\x00\x73\ \x00\x63\x00\x61\x00\x72\x00\x64\x00\x20\x00\x4c\x00\x69\x00\x73\ \x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x44\x69\x73\x63\ \x61\x72\x64\x20\x4c\x69\x73\x74\x07\x00\x00\x00\x06\x57\x69\x6e\ \x64\x6f\x77\x01\x03\x00\x00\x00\x2a\x00\x53\x00\x68\x00\x6f\x00\ \x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ \x20\x00\x70\x00\x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\ \x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x53\x68\x6f\ \x77\x69\x6e\x67\x20\x61\x6c\x6c\x20\x70\x61\x63\x6b\x61\x67\x65\ \x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x2a\x00\x41\x00\x62\x00\x6f\x00\x75\ \x00\x74\x00\x20\x00\x50\x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\ \x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x20\x00\x25\ \x00\x31\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x41\x62\x6f\x75\ \x74\x20\x50\x79\x50\x49\x20\x42\x72\x6f\x77\x73\x65\x72\x20\x25\ \x31\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\ \x00\x18\x00\x50\x00\x79\x00\x50\x00\x49\x00\x20\x00\x42\x00\x72\ \x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x0c\x50\x79\x50\x49\x20\x42\x72\x6f\x77\x73\x65\x72\ \x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\ \x10\x00\x4b\x00\x65\x00\x79\x00\x77\x00\x6f\x00\x72\x00\x64\x00\ \x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x4b\x65\x79\x77\x6f\ \x72\x64\x73\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\ \x64\x65\x6c\x01\x03\x00\x00\x00\x10\x00\x4b\x00\x65\x00\x79\x00\ \x77\x00\x6f\x00\x72\x00\x64\x00\x73\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x08\x4b\x65\x79\x77\x6f\x72\x64\x73\x07\x00\x00\x00\x06\ \x57\x69\x6e\x64\x6f\x77\x01\x03\x00\x00\x00\x1c\x00\x45\x00\x64\ \x00\x69\x00\x74\x00\x20\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\ \x00\x63\x00\x75\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ \x00\x0e\x45\x64\x69\x74\x20\x53\x68\x6f\x72\x74\x63\x75\x74\x73\ \x07\x00\x00\x00\x12\x41\x63\x74\x69\x6f\x6e\x45\x64\x69\x74\x6f\ \x72\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x40\x00\x53\x00\ \x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ \x6c\x00\x6c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x6d\x00\ \x61\x00\x72\x00\x6b\x00\x65\x00\x64\x00\x20\x00\x70\x00\x61\x00\ \x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x08\x00\x00\ \x00\x00\x06\x00\x00\x00\x20\x53\x68\x6f\x77\x69\x6e\x67\x20\x61\ \x6c\x6c\x20\x6e\x65\x77\x20\x6d\x61\x72\x6b\x65\x64\x20\x70\x61\ \x63\x6b\x61\x67\x65\x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\ \x63\x68\x4d\x6f\x64\x65\x6c\x01\x03\x00\x00\x00\x32\x00\x53\x00\ \x68\x00\x6f\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\ \x6c\x00\x6c\x00\x20\x00\x6e\x00\x65\x00\x77\x00\x20\x00\x70\x00\ \x61\x00\x63\x00\x6b\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x08\ \x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x68\x6f\x77\x69\x6e\x67\ \x20\x61\x6c\x6c\x20\x6e\x65\x77\x20\x70\x61\x63\x6b\x61\x67\x65\ \x73\x2e\x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\ \x65\x6c\x01\x03\x00\x00\x00\x1e\x00\x26\x00\x4f\x00\x70\x00\x65\ \x00\x6e\x00\x20\x00\x44\x00\x69\x00\x72\x00\x65\x00\x63\x00\x74\ \x00\x6f\x00\x72\x00\x79\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\ \x26\x4f\x70\x65\x6e\x20\x44\x69\x72\x65\x63\x74\x6f\x72\x79\x07\ \x00\x00\x00\x11\x55\x69\x5f\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\ \x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x16\x00\x46\x00\x65\x00\ \x74\x00\x63\x00\x68\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x2e\x00\ \x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x65\x74\x63\x68\ \x69\x6e\x67\x2e\x2e\x2e\x07\x00\x00\x00\x0e\x44\x6f\x77\x6e\x6c\ \x6f\x61\x64\x44\x69\x61\x6c\x6f\x67\x01\x03\x00\x00\x00\x1a\x00\ \x41\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x20\x00\x65\x00\ \x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\x08\x00\x00\x00\x00\x06\x00\ \x00\x00\x0d\x41\x75\x74\x68\x6f\x72\x20\x65\x2d\x6d\x61\x69\x6c\ \x07\x00\x00\x00\x0b\x53\x65\x61\x72\x63\x68\x4d\x6f\x64\x65\x6c\ \x01\x03\x00\x00\x00\x1a\x00\x41\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x20\x00\x65\x00\x2d\x00\x6d\x00\x61\x00\x69\x00\x6c\ \x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x41\x75\x74\x68\x6f\x72\ \x20\x65\x2d\x6d\x61\x69\x6c\x07\x00\x00\x00\x06\x57\x69\x6e\x64\ \x6f\x77\x01\x03\x00\x00\x00\x22\x00\x45\x00\x64\x00\x69\x00\x74\ \x00\x20\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\ \x00\x74\x00\x73\x00\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\ \x00\x00\x00\x11\x45\x64\x69\x74\x20\x53\x68\x6f\x72\x74\x63\x75\ \x74\x73\x2e\x2e\x2e\x07\x00\x00\x00\x06\x57\x69\x6e\x64\x6f\x77\ \x01\x03\x00\x00\x00\x10\x00\x53\x00\x68\x00\x6f\x00\x72\x00\x74\ \x00\x63\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ \x53\x68\x6f\x72\x74\x63\x75\x74\x07\x00\x00\x00\x12\x41\x63\x74\ \x69\x6f\x6e\x45\x64\x69\x74\x6f\x72\x44\x69\x61\x6c\x6f\x67\x01\ \x88\x00\x00\x00\x02\x01\x01\ " qt_resource_name = "\ \x00\x0c\ \x0d\xfc\x11\x13\ \x00\x74\ \x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ \x00\x14\ \x00\xea\xb6\x3d\ \x00\x70\ \x00\x79\x00\x70\x00\x69\x00\x62\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x5f\x00\x65\x00\x6e\x00\x5f\x00\x75\x00\x73\ \x00\x2e\x00\x71\x00\x6d\ \x00\x14\ \x00\xdb\x86\x3d\ \x00\x70\ \x00\x79\x00\x70\x00\x69\x00\x62\x00\x72\x00\x6f\x00\x77\x00\x73\x00\x65\x00\x72\x00\x5f\x00\x65\x00\x6e\x00\x5f\x00\x67\x00\x62\ \x00\x2e\x00\x71\x00\x6d\ " qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\ \x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x3c\ \x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ " def qInitResources(): QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources() ./PyPI-Browser-1.5/PyPIBrowser/ui_informationwindow.py0000664000175000017500000000423510460745472021132 0ustar neoneo# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'informationwindow.ui' # # Created: Sun Jul 23 21:17:15 2006 # by: PyQt4 UI code generator 4.0-snapshot-20060619 # # WARNING! All changes made in this file will be lost! import sys from PyQt4 import QtCore, QtGui class Ui_InformationWindow(object): def setupUi(self, InformationWindow): InformationWindow.setObjectName("InformationWindow") InformationWindow.resize(QtCore.QSize(QtCore.QRect(0,0,400,300).size()).expandedTo(InformationWindow.minimumSizeHint())) self.vboxlayout = QtGui.QVBoxLayout(InformationWindow) self.vboxlayout.setMargin(9) self.vboxlayout.setSpacing(6) self.vboxlayout.setObjectName("vboxlayout") self.textBrowser = QtGui.QTextBrowser(InformationWindow) self.textBrowser.setObjectName("textBrowser") self.vboxlayout.addWidget(self.textBrowser) self.hboxlayout = QtGui.QHBoxLayout() self.hboxlayout.setMargin(0) self.hboxlayout.setSpacing(6) self.hboxlayout.setObjectName("hboxlayout") spacerItem = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum) self.hboxlayout.addItem(spacerItem) self.closeButton = QtGui.QPushButton(InformationWindow) self.closeButton.setObjectName("closeButton") self.hboxlayout.addWidget(self.closeButton) self.vboxlayout.addLayout(self.hboxlayout) self.closeAction = QtGui.QAction(InformationWindow) self.closeAction.setObjectName("closeAction") self.retranslateUi(InformationWindow) QtCore.QObject.connect(self.closeButton,QtCore.SIGNAL("clicked()"),InformationWindow.close) QtCore.QMetaObject.connectSlotsByName(InformationWindow) def tr(self, string): return QtGui.QApplication.translate("InformationWindow", string, None, QtGui.QApplication.UnicodeUTF8) def retranslateUi(self, InformationWindow): InformationWindow.setWindowTitle(self.tr("Information")) self.closeButton.setText(self.tr("&Close")) self.closeAction.setText(self.tr("Close")) self.closeAction.setShortcut(self.tr("Esc")) ./PyPI-Browser-1.5/PyPIBrowser/configurationdialog.ui0000664000175000017500000002171510463454614020674 0ustar neoneo ConfigurationDialog 0 0 291 323 Configure Browser 9 6 0 &Browser 9 6 0 6 false Download di&rectory: downloadLineEdit true Package &Index: packageIndexLineEdit ... &Package preferences: preferencesList 0 6 7 7 0 0 0 6 false Move &Up false Move &Down false &Hide Qt::Vertical 20 40 &Python 9 6 Platform: System paths: Qt::Vertical 20 40 Interpreter version: Qt::Vertical 273 16 0 6 Qt::Horizontal 131 31 &OK &Cancel okButton clicked() ConfigurationDialog accept() 278 253 96 254 cancelButton clicked() ConfigurationDialog reject() 369 253 179 282 ./PyPI-Browser-1.5/PyPIBrowser/packagemodel.py0000664000175000017500000003120010553004526017253 0ustar neoneo#!/usr/bin/env python """ packagemodel.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ import base64 from PyQt4.QtCore import * from PyQt4.QtGui import QAbstractProxyModel import pypi class PackageModel(QAbstractItemModel): """PackageModel(QAbstractItemModel) A model for obtaining package information from a package index. """ headers = ( "Package", "Author", "Summary", "Description", "Author e-mail", "Maintainer", "Maintainer e-mail", "License", "Platform", "Home page", "Keywords", "Stable version" ) section_list = ( "version", "author", "summary", "description", "author_email", "maintainer", "maintainer_email", "license", "platform", "home_page", "keywords", "stable_version" ) DownloadRole = Qt.UserRole HomePageRole = Qt.UserRole + 1 NewPackageRole = Qt.UserRole + 2 UnusedRole = Qt.UserRole + 3 def __init__(self, server, parent = None): QAbstractItemModel.__init__(self, parent) self.package_server = server self.listPackages() def listPackages(self): """listPackages(self) Returns a list of available packages and resets the model, informing other components that the underlying structure and data provided by the model has changed. """ self.emit(SIGNAL("operationStarted()")) self.packages = self.package_server.list_packages() self.reverse = {} for i in range(len(self.packages)): self.reverse[self.packages[i]] = i self.reset() self.emit(SIGNAL("operationFinished()")) def hasChildren(self, parent): """hasChildren(self, parent) Returns true if the item corresponding to the parent index has child items; otherwise returns false. To begin with, we assume that all top-level items (packages) have children to reduce calls to the server. Once these items have been opened, more precise information will be provided by the rowCount() method. First level items (releases) have no children. """ if not parent.isValid(): # Top-level items return True parent_item = parent.internalPointer() if isinstance(parent_item, pypi.Package): # Items under packages return True else: return False def rowCount(self, parent): """rowCount(self, parent) Returns the number of rows containing child items corresponding to children of the given parent index. """ if not parent.isValid(): # Top-level items return len(self.packages) parent_item = parent.internalPointer() if isinstance(parent_item, pypi.Package): # Items under packages package = parent_item if package.releases is None: self.emit(SIGNAL("operationStarted()")) package.releases = self.package_server.package_releases(package) self.emit(SIGNAL("operationFinished()")) return len(package.releases) else: return 0 def columnCount(self, parent): """columnCount(self, parent) Returns the number of columns in the model regardless of the number of columns containing items corresponding to children of the parent index. The number returned is based on the number of sections we want to expose to views. """ return len(self.section_list) def flags(self, index): """flags(self, index) Returns the flags for the item corresponding to the given index. All items are enabled by default. """ if not index.isValid(): return QAbstractItemModel.flags(self, index) return Qt.ItemIsEnabled def index(self, row, column, parent): """index(self, row, column, parent) Returns the model index for the item whose parent item corresponds to the given parent index, and that resides in the specified row and column. """ if not parent.isValid(): # Top-level items parent_item = None else: parent_item = parent.internalPointer() if parent_item is None: try: package = self.packages[row] except IndexError: return QModelIndex() return self.createIndex(row, column, package) elif isinstance(parent_item, pypi.Package): # Items under packages package = parent_item try: release = package.releases[row] except IndexError: return QModelIndex() return self.createIndex(row, column, release) return QModelIndex() def parent(self, index): """parent(self, index) Returns the model index for the parent item of the item corresponding to the specified index. """ if not index.isValid(): return QModelIndex() item = index.internalPointer() if isinstance(item, pypi.Package): # Top-level packages have no parent. return QModelIndex() elif isinstance(item, pypi.Release): return self.createIndex(self.reverse[item.package], 0, item.package) else: return QModelIndex() def headerData(self, section, orientation, role = Qt.DisplayRole): """headerData(self, section, orientation, role = Qt.DisplayRole) Returns the header titles for each column in the model. """ if orientation != Qt.Horizontal or role != Qt.DisplayRole: return QVariant() try: text = self.headers[section] except IndexError: return QVariant() return QVariant(self.tr(text)) def data(self, index, role): """data(self, index, role) Returns the data described by the given role for the item corresponding to the specified index. For top-level items, this model only returns data for the DisplayRole in the first column since this corresponds to the name of each package. For first-level items, the version, author and a summary for each release is returned for the DisplayRole in each column. In the first column, the download URL is returned for the UserRole, and the home page URL is returned for UserRole+1. """ if not index.isValid(): return QVariant() elif role == Qt.DisplayRole: pass elif Qt.UserRole <= role < self.UnusedRole: pass else: return QVariant() row = index.row() if not 0 <= row < self.rowCount(index.parent()): return QVariant() column = index.column() item = index.internalPointer() if isinstance(item, pypi.Package): if column != 0: return QVariant() elif role == Qt.DisplayRole: return QVariant(item.name) elif role == self.NewPackageRole: return QVariant(item.new) else: return QVariant() elif isinstance(item, pypi.Release): if not 0 <= column < len(self.section_list): return QVariant() release = item if release.description is None: self.emit(SIGNAL("operationStarted()")) release.description = self.package_server.release_full_data(release) self.emit(SIGNAL("operationFinished()")) if column == 0: if role == Qt.DisplayRole: return QVariant(release.version) elif role == self.DownloadRole: value = release.description.metaData(u"release_urls") if value: return QVariant(value) else: return QVariant() elif role == self.HomePageRole: value = release.description.metaData(u"home_page") if value: return QVariant(value) else: return QVariant() else: return QVariant() if release.description: field = self.section_list[column] value = release.description.metaData(field) else: return QVariant() if value is None: return QVariant() elif role == Qt.DisplayRole: return QVariant(value) else: return QVariant() return QVariant() def load(self, settings): """load(self, settings) Loads information about the packages in the application's settings. """ name = self.package_server.name() if not name: return settings.beginGroup("Servers") url = settings.value(name) settings.endGroup() if not url.isValid(): return settings.beginGroup("Packages") settings.beginGroup(name) packageNames = {} for unique_string in settings.childKeys(): packageName = unicode(base64.decodestring(str(unique_string)), "utf_8") releases = settings.value(packageName) # We don't use the release information at the moment. if releases.isValid(): releases = unicode(releases).split(",") packageNames[unicode(packageName)] = releases else: packageNames[unicode(packageName)] = None for package in self.packages: if package.name in packageNames: package.new = False settings.endGroup() settings.endGroup() def save(self, settings): """save(self, settings) Saves information about the packages in the application's settings. """ name = self.package_server.name() if not name: return settings.beginGroup("Servers") settings.setValue(name, QVariant(self.package_server.url)) settings.endGroup() settings.beginGroup("Packages") settings.beginGroup(name) for package in self.packages: unique_string = base64.encodestring(package.name.encode("utf_8")) if package.releases: settings.setValue(unique_string, QVariant( ",".join(map(lambda p: p.version, package.releases)))) else: settings.setValue(unique_string, QVariant()) settings.endGroup() settings.endGroup() def setServer(self, server): self.package_server = server class ProxyModelMixIn: def getObject(self, index): """getObject(self, index) Returns the internal object in the source model corresponding to the model index previously issued by this model. """ return self.sourceIndex(index).internalPointer() def sourceIndex(self, index): while isinstance(index.model(), QAbstractProxyModel): index = index.model().mapToSource(index) return index ./PyPI-Browser-1.5/PyPIBrowser/ui_downloaddialog.py0000664000175000017500000000534110460770214020333 0ustar neoneo# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'downloaddialog.ui' # # Created: Sun Jul 23 23:56:29 2006 # by: PyQt4 UI code generator 4.0-snapshot-20060619 # # WARNING! All changes made in this file will be lost! import sys from PyQt4 import QtCore, QtGui class Ui_DownloadDialog(object): def setupUi(self, DownloadDialog): DownloadDialog.setObjectName("DownloadDialog") DownloadDialog.resize(QtCore.QSize(QtCore.QRect(0,0,512,320).size()).expandedTo(DownloadDialog.minimumSizeHint())) self.vboxlayout = QtGui.QVBoxLayout(DownloadDialog) self.vboxlayout.setMargin(9) self.vboxlayout.setSpacing(6) self.vboxlayout.setObjectName("vboxlayout") self.treeWidget = QtGui.QTreeWidget(DownloadDialog) self.treeWidget.setObjectName("treeWidget") self.vboxlayout.addWidget(self.treeWidget) self.progressBar = QtGui.QProgressBar(DownloadDialog) self.progressBar.setProperty("value",QtCore.QVariant(0)) self.progressBar.setOrientation(QtCore.Qt.Horizontal) self.progressBar.setObjectName("progressBar") self.vboxlayout.addWidget(self.progressBar) self.hboxlayout = QtGui.QHBoxLayout() self.hboxlayout.setMargin(0) self.hboxlayout.setSpacing(6) self.hboxlayout.setObjectName("hboxlayout") spacerItem = QtGui.QSpacerItem(131,31,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum) self.hboxlayout.addItem(spacerItem) self.openDirButton = QtGui.QPushButton(DownloadDialog) self.openDirButton.setObjectName("openDirButton") self.hboxlayout.addWidget(self.openDirButton) self.stopButton = QtGui.QPushButton(DownloadDialog) self.stopButton.setObjectName("stopButton") self.hboxlayout.addWidget(self.stopButton) self.closeButton = QtGui.QPushButton(DownloadDialog) self.closeButton.setEnabled(False) self.closeButton.setObjectName("closeButton") self.hboxlayout.addWidget(self.closeButton) self.vboxlayout.addLayout(self.hboxlayout) self.retranslateUi(DownloadDialog) QtCore.QObject.connect(self.closeButton,QtCore.SIGNAL("clicked()"),DownloadDialog.reject) QtCore.QMetaObject.connectSlotsByName(DownloadDialog) def tr(self, string): return QtGui.QApplication.translate("DownloadDialog", string, None, QtGui.QApplication.UnicodeUTF8) def retranslateUi(self, DownloadDialog): DownloadDialog.setWindowTitle(self.tr("Download Packages")) self.openDirButton.setText(self.tr("&Open Directory")) self.stopButton.setText(self.tr("&Stop")) self.stopButton.setShortcut(self.tr("Esc")) self.closeButton.setText(self.tr("&Close")) ./PyPI-Browser-1.5/PyPIBrowser/translations/0000775000175000017500000000000011322064012017001 5ustar neoneo./PyPI-Browser-1.5/PyPIBrowser/translations/pypibrowser_en_gb.qm0000664000175000017500000002647010553007712023101 0ustar neoneo<¸dÊÍ!¿`¡½ÝB€+;+;01aL“’L“ÁH5óH5"H5N*Ð%u*ì0Ÿ*ï¥É+«`Gß5J6•_K,—UÏgФ4¬3¹^Æ~Ñó-ê À¿\bÀ¿\¦w 5åŠÓý#ŠÓý[ª6•Žª6•ÆùÅÅùÅÅ6^fw(µ¢w(µÝŒ¨®RöŒ¯b6Œ¯bhvó•«Žÿî« « HÈ´ uI›ž ªb7| uÎî Z„ÖŽ I™1Z J¢Ü ®¢Ü ìÝóô %ø3N d Îu%!“±%œÎ0 Bîl¾I°¾Ž|°¾ŽÆÇ.€ /ðKXòq‘¡V£ó}vº)’x¡­@*Þ Mgþ! Mgþi Mgþª ^‰Óæ a~i! hã>ž l[~è }¾^ –ëbœ ¶Ô3Ü ¶Ô3 ãP¹Y ;=´» ˜Iœý ˜Iœ9 À¤÷v Ä8ɯ Ä8Éä ÏÂZ &åŠD €¯~¨ ›ˆ¸å ÛÉÞ 0u~d 9¬® ~ > Ú"Ü bÊ# oûì#j oûì#½ ¬n¥$ ºïs$q É $§ É $Ü ÕÉ$% Ùº¾%K îË‘%ª ¢‚& m£&C m£&{ œñÓ&®zþ&ÿLd®'zÔù'êÈkž(=ÊÁü(ÊÁü(ÈšÎ) i¯T)Xi)—&OK&OKActionEditorDialog&OK&OKConfigurationDialog......ConfigurationDialogEscEscUi_DownloadDialogEscEscUi_InformationWindowNameNameDownloadDialogNameName SearchModelNameNameWindow &File&FileWindow &Help&HelpWindow &Hide&HideConfigurationDialog &Stop&StopUi_DownloadDialog E&xitE&xitWindow CloseCloseUi_InformationWindowOpen Index Open IndexWindow S&howS&howConfigurationDialog(Configure Browser...Configure Browser...Window2Choose Download DirectoryChoose Download DirectoryConfigurationDialogCtrl+Return Ctrl+ReturnWindowPackage &Index:Package &Index:ConfigurationDialogDownload URL Download URL SearchModelDownload URL Download URLWindowFile name File nameDownloadDialogPlatformPlatform SearchModelPlatformPlatformWindow &Close&CloseUi_DownloadDialog &Close&CloseUi_InformationWindowLicenseLicense SearchModelLicenseLicenseWindowDownload... Download...WindowHome page Home page SearchModelHome page Home pageWindow‚Showing marked packages from a set of %1 with '%2' matching '%3'.AShowing marked packages from a set of %1 with '%2' matching '%3'. SearchModel%1.%2.%3%1.%2.%3ConfigurationDialog AuthorAuthor SearchModel AuthorAuthorWindow"Download PackagesDownload PackagesUi_DownloadDialog Ctrl+OCtrl+OWindow Ctrl+QCtrl+QWindow Ctrl+RCtrl+RWindow FailedFailedDownloadDialog8Showing all marked packages.Showing all marked packages. SearchModelOpen Manual Open ManualWindowŠShowing new marked packages from a set of %1 with '%2' matching '%3'.EShowing new marked packages from a set of %1 with '%2' matching '%3'. SearchModelVShowing %1 package with '%2' matching '%3'.XShowing %1 packages with '%2' matching '%3'..Showing %1 package(s) with '%2' matching '%3'. SearchModel(Interpreter version:Interpreter version:ConfigurationDialogMaintainer Maintainer SearchModelMaintainer MaintainerWindow&Reload List &Reload ListWindow¤<qt><h3>About PyPI Browser %1</h3><p>PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.</p><p>Uses desktop integration features provided by version %2 of the <i>desktop</i> module (search the package index for more information).</p></qt>R

About PyPI Browser %1

PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.

Uses desktop integration features provided by version %2 of the desktop module (search the package index for more information).

WindowAbout Qt... About Qt...Window0Cannot Download PackagesCannot Download PackagesWindow|Showing new packages from a set of %1 with '%2' matching '%3'.>Showing new packages from a set of %1 with '%2' matching '%3'. SearchModel"Configure BrowserConfigure BrowserConfigurationDialog&Open...&Open...WindowStable versionStable version SearchModelStable versionStable versionWindowMove &UpMove &UpConfigurationDialogMove &Down Move &DownConfigurationDialog(Information about %1Information about %1InformationWindow&Packages &PackagesWindow*&Package preferences:&Package preferences:ConfigurationDialog"PyPI Browser - %1PyPI Browser - %1WindowPlatform: Platform:ConfigurationDialogDescription DescriptionActionEditorDialogDescription Description SearchModelDescription DescriptionWindowProgressProgressDownloadDialog %1/%2 byte (%3%)"%1/%2 bytes (%3%)%1/%2 byte(s) (%3%)DownloadDialogInformation InformationUi_InformationWindow&About... &About...WindowBEnter the URL of a package index.!Enter the URL of a package index.Window&Browser&BrowserConfigurationDialogClassifiers Classifiers SearchModelClassifiers ClassifiersWindowÚThe package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.)mThe package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.)WindowFilter Marked Filter MarkedWindow&Cancel&CancelActionEditorDialog&Cancel&CancelConfigurationDialogFilter New Filter NewWindowSummarySummary SearchModelSummarySummaryWindow&Field:&Field:Window(Download di&rectory:Download di&rectory:ConfigurationDialog&Python&PythonConfigurationDialog&Search&SearchWindowx<qt>You need to configure a download directory before you can download packages. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration.¼You need to configure a download directory before you can download packages. Open the Settings menu and select Configure Browser... to access the browser's configuration.Windowª<qt>You have marked packages for download. Click <b>OK</b> to discard this list.</qt>UYou have marked packages for download. Click OK to discard this list.Window‚<qt>You need to configure preferences for the types of packages you want to download. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration.ÁYou need to configure preferences for the types of packages you want to download. Open the Settings menu and select Configure Browser... to access the browser's configuration.WindowSea&rch for: Sea&rch for:WindowSystem paths: System paths:ConfigurationDialog"Maintainer e-mailMaintainer e-mail SearchModel"Maintainer e-mailMaintainer e-mailWindow2Package Index UnavailablePackage Index UnavailableWindow&Settings &SettingsWindowVersionVersion SearchModelVersionVersionWindowDiscard List Discard ListWindow*Showing all packages.Showing all packages. SearchModel*About PyPI Browser %1About PyPI Browser %1WindowPyPI Browser PyPI BrowserWindowKeywordsKeywords SearchModelKeywordsKeywordsWindowEdit ShortcutsEdit ShortcutsActionEditorDialog@Showing all new marked packages. Showing all new marked packages. SearchModel2Showing all new packages.Showing all new packages. SearchModel&Open Directory&Open DirectoryUi_DownloadDialogFetching... Fetching...DownloadDialogAuthor e-mail Author e-mail SearchModelAuthor e-mail Author e-mailWindow"Edit Shortcuts...Edit Shortcuts...WindowShortcutShortcutActionEditorDialogˆ./PyPI-Browser-1.5/PyPIBrowser/translations/pypibrowser_en_gb.ts0000664000175000017500000005064210552777046023125 0ustar neoneo ActionEditorDialog Description Description Shortcut Shortcut &OK &OK &Cancel &Cancel Edit Shortcuts Edit Shortcuts ConfigurationDialog Choose Download Directory Choose Download Directory %1.%2.%3 %1.%2.%3 &Hide &Hide S&how S&how Configure Browser Configure Browser Download di&rectory: Download di&rectory: Package &Index: Package &Index: ... ... &Package preferences: &Package preferences: Move &Up Move &Up Move &Down Move &Down &Browser &Browser Platform: Platform: System paths: System paths: Interpreter version: Interpreter version: &Python &Python &OK &OK &Cancel &Cancel DownloadDialog Name Name File name File name Progress Progress %1/%2 byte(s) (%3%) %1/%2 byte (%3%) %1/%2 bytes (%3%) Fetching... Fetching... Failed Failed InformationWindow Information about %1 Information about %1 SearchModel Name Name Version Version Author Author Summary Summary Description Description Stable version Stable version Author e-mail Author e-mail Maintainer Maintainer Maintainer e-mail Maintainer e-mail License License Platform Platform Download URL Download URL Home page Home page Keywords Keywords Classifiers Classifiers Showing all new marked packages. Showing all new marked packages. Showing all marked packages. Showing all marked packages. Showing all new packages. Showing all new packages. Showing all packages. Showing all packages. Showing new marked packages from a set of %1 with '%2' matching '%3'. Showing new marked packages from a set of %1 with '%2' matching '%3'. Showing marked packages from a set of %1 with '%2' matching '%3'. Showing marked packages from a set of %1 with '%2' matching '%3'. Showing new packages from a set of %1 with '%2' matching '%3'. Showing new packages from a set of %1 with '%2' matching '%3'. Showing %1 package(s) with '%2' matching '%3'. Showing %1 package with '%2' matching '%3'. Showing %1 packages with '%2' matching '%3'. Ui_DownloadDialog Download Packages Download Packages &Open Directory &Open Directory &Stop &Stop Esc Esc &Close &Close Ui_InformationWindow Information Information &Close &Close Close Close Esc Esc Window PyPI Browser PyPI Browser &Field: &Field: Name Name Version Version Author Author Summary Summary Description Description Stable version Stable version Author e-mail Author e-mail Maintainer Maintainer Maintainer e-mail Maintainer e-mail License License Platform Platform Download URL Download URL Home page Home page Keywords Keywords Classifiers Classifiers Sea&rch for: Sea&rch for: &Search &Search &File &File &Packages &Packages &Help &Help &Settings &Settings &Open... &Open... Ctrl+O Ctrl+O E&xit E&xit Ctrl+Q Ctrl+Q &Reload List &Reload List Ctrl+R Ctrl+R Download... Download... Ctrl+Return Ctrl+Return Filter Marked Filter Marked Configure Browser... Configure Browser... Filter New Filter New &About... &About... About Qt... About Qt... Open Manual Open Manual Edit Shortcuts... Edit Shortcuts... About PyPI Browser %1 About PyPI Browser %1 <qt><h3>About PyPI Browser %1</h3><p>PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.</p><p>Uses desktop integration features provided by version %2 of the <i>desktop</i> module (search the package index for more information).</p></qt> <qt><h3>About PyPI Browser %1</h3><p>PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.</p><p>Uses desktop integration features provided by version %2 of the <i>desktop</i> module (search the package index for more information).</p></qt> Discard List Discard List <qt>You have marked packages for download. Click <b>OK</b> to discard this list.</qt> <qt>You have marked packages for download. Click <b>OK</b> to discard this list.</qt> Cannot Download Packages Cannot Download Packages <qt>You need to configure a download directory before you can download packages. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. <qt>You need to configure a download directory before you can download packages. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. <qt>You need to configure preferences for the types of packages you want to download. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. <qt>You need to configure preferences for the types of packages you want to download. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. Open Index Open Index Enter the URL of a package index. Enter the URL of a package index. PyPI Browser - %1 PyPI Browser - %1 Package Index Unavailable Package Index Unavailable The package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.) The package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.) ./PyPI-Browser-1.5/PyPIBrowser/translations/pypibrowser_en_us.ts0000664000175000017500000005244210552775144023161 0ustar neoneo ActionEditorDialog Description Description Shortcut Shortcut &OK &OK &Cancel &Cancel Edit Shortcuts Edit Shortcuts ConfigurationDialog Choose Download Directory Choose Download Directory %1.%2.%3 %1.%2.%3 &Hide &Hide S&how S&how Configure Browser Configure Browser Download di&rectory: Download di&rectory: Package &Index: Package &Index: ... ... &Package preferences: &Package preferences: Move &Up Move &Up Move &Down Move &Down &Browser &Browser Platform: Platform: System paths: System paths: Interpreter version: Interpreter version: &Python &Python &OK &OK &Cancel &Cancel DownloadDialog Name Name File name File name Progress Progress %1/%2 byte(s) (%3%) %1/%2 byte (%3%) %1/%2 bytes (%3%) Fetching... Fetching... Failed Failed InformationWindow Information about %1 Information about %1 SearchModel Name Name Version Version Author Author Summary Summary Description Description Stable version Stable version Author e-mail Author e-mail Maintainer Maintainer Maintainer e-mail Maintainer e-mail License License Platform Platform Download URL Download URL Home page Home page Keywords Keywords Classifiers Classifiers Showing all new marked packages. Showing all new marked packages. Showing all marked packages. Showing all marked packages. Showing all new packages. Showing all new packages. Showing all packages. Showing all packages. Showing new marked packages from a set of %1 with '%2' matching '%3'. Showing new marked packages from a set of %1 with '%2' matching '%3'. Showing marked packages from a set of %1 with '%2' matching '%3'. Showing marked packages from a set of %1 with '%2' matching '%3'. Showing new packages from a set of %1 with '%2' matching '%3'. Showing new packages from a set of %1 with '%2' matching '%3'. Showing %1 package(s) with '%2' matching '%3'. Showing %1 package with '%2' matching '%3'. Showing %1 packages with '%2' matching '%3'. Ui_DownloadDialog Download Packages Download Packages &Open Directory &Open Directory &Stop &Stop Esc Esc &Close &Close Ui_InformationWindow Information Information &Close &Close Close Close Esc Esc Window PyPI Browser PyPI Browser &Field: &Field: Name Name Version Version Author Author Summary Summary Description Description Stable version Stable version Author e-mail Author e-mail Maintainer Maintainer Maintainer e-mail Maintainer e-mail License License Platform Platform Download URL Download URL Home page Home page Keywords Keywords Classifiers Classifiers Sea&rch for: Sea&rch for: &Search &Search &File &File &Packages &Packages &Help &Help &Settings &Settings &Open... &Open... Ctrl+O Ctrl+O E&xit E&xit Ctrl+Q Ctrl+Q &Reload List &Reload List Ctrl+R Ctrl+R Download... Download... Ctrl+Return Ctrl+Return Filter Marked Filter Marked Configure Browser... Configure Browser... Filter New Filter New &About... &About... About Qt... About Qt... Open Manual Open Manual Edit Shortcuts... Edit Shortcuts... About PyPI Browser %1 About PyPI Browser %1 <qt><h3>About PyPI Browser %1</h3><p>PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.</p><p>Uses desktop integration features provided by version %2 of the <i>desktop</i> module (search the package index for more information).</p></qt> <qt><h3>About PyPI Browser %1</h3><p>PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.</p><p>Uses desktop integration features provided by version %2 of the <i>desktop</i> module (search the package index for more information).</p></qt> Discard List Discard List <qt>You have marked packages for download. Click <b>OK</b> to discard this list.</qt> <qt>You have marked packages for download. Click <b>OK</b> to discard this list.</qt> Cannot Download Packages Cannot Download Packages <qt>You need to configure a download directory before you can download packages. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. <qt>You need to configure a download directory before you can download packages. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. <qt>You need to configure preferences for the types of packages you want to download. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. <qt>You need to configure preferences for the types of packages you want to download. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration. Open Index Open Index Enter the URL of a package index. Enter the URL of a package index. PyPI Browser - %1 PyPI Browser - %1 Package Index Unavailable Package Index Unavailable The package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.) The package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.) ./PyPI-Browser-1.5/PyPIBrowser/translations/pypibrowser_en_us.qm0000664000175000017500000002647010553007722023141 0ustar neoneo<¸dÊÍ!¿`¡½ÝB€+;+;01aL“’L“ÁH5óH5"H5N*Ð%u*ì0Ÿ*ï¥É+«`Gß5J6•_K,—UÏgФ4¬3¹^Æ~Ñó-ê À¿\bÀ¿\¦w 5åŠÓý#ŠÓý[ª6•Žª6•ÆùÅÅùÅÅ6^fw(µ¢w(µÝŒ¨®RöŒ¯b6Œ¯bhvó•«Žÿî« « HÈ´ uI›ž ªb7| uÎî Z„ÖŽ I™1Z J¢Ü ®¢Ü ìÝóô %ø3N d Îu%!“±%œÎ0 Bîl¾I°¾Ž|°¾ŽÆÇ.€ /ðKXòq‘¡V£ó}vº)’x¡­@*Þ Mgþ! Mgþi Mgþª ^‰Óæ a~i! hã>ž l[~è }¾^ –ëbœ ¶Ô3Ü ¶Ô3 ãP¹Y ;=´» ˜Iœý ˜Iœ9 À¤÷v Ä8ɯ Ä8Éä ÏÂZ &åŠD €¯~¨ ›ˆ¸å ÛÉÞ 0u~d 9¬® ~ > Ú"Ü bÊ# oûì#j oûì#½ ¬n¥$ ºïs$q É $§ É $Ü ÕÉ$% Ùº¾%K îË‘%ª ¢‚& m£&C m£&{ œñÓ&®zþ&ÿLd®'zÔù'êÈkž(=ÊÁü(ÊÁü(ÈšÎ) i¯T)Xi)—&OK&OKActionEditorDialog&OK&OKConfigurationDialog......ConfigurationDialogEscEscUi_DownloadDialogEscEscUi_InformationWindowNameNameDownloadDialogNameName SearchModelNameNameWindow &File&FileWindow &Help&HelpWindow &Hide&HideConfigurationDialog &Stop&StopUi_DownloadDialog E&xitE&xitWindow CloseCloseUi_InformationWindowOpen Index Open IndexWindow S&howS&howConfigurationDialog(Configure Browser...Configure Browser...Window2Choose Download DirectoryChoose Download DirectoryConfigurationDialogCtrl+Return Ctrl+ReturnWindowPackage &Index:Package &Index:ConfigurationDialogDownload URL Download URL SearchModelDownload URL Download URLWindowFile name File nameDownloadDialogPlatformPlatform SearchModelPlatformPlatformWindow &Close&CloseUi_DownloadDialog &Close&CloseUi_InformationWindowLicenseLicense SearchModelLicenseLicenseWindowDownload... Download...WindowHome page Home page SearchModelHome page Home pageWindow‚Showing marked packages from a set of %1 with '%2' matching '%3'.AShowing marked packages from a set of %1 with '%2' matching '%3'. SearchModel%1.%2.%3%1.%2.%3ConfigurationDialog AuthorAuthor SearchModel AuthorAuthorWindow"Download PackagesDownload PackagesUi_DownloadDialog Ctrl+OCtrl+OWindow Ctrl+QCtrl+QWindow Ctrl+RCtrl+RWindow FailedFailedDownloadDialog8Showing all marked packages.Showing all marked packages. SearchModelOpen Manual Open ManualWindowŠShowing new marked packages from a set of %1 with '%2' matching '%3'.EShowing new marked packages from a set of %1 with '%2' matching '%3'. SearchModelVShowing %1 package with '%2' matching '%3'.XShowing %1 packages with '%2' matching '%3'..Showing %1 package(s) with '%2' matching '%3'. SearchModel(Interpreter version:Interpreter version:ConfigurationDialogMaintainer Maintainer SearchModelMaintainer MaintainerWindow&Reload List &Reload ListWindow¤<qt><h3>About PyPI Browser %1</h3><p>PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.</p><p>Uses desktop integration features provided by version %2 of the <i>desktop</i> module (search the package index for more information).</p></qt>R

About PyPI Browser %1

PyPI Browser allows you to examine available packages in the Python Package Index and other package indexes that expose a compatible XML-RPC interface.

Uses desktop integration features provided by version %2 of the desktop module (search the package index for more information).

WindowAbout Qt... About Qt...Window0Cannot Download PackagesCannot Download PackagesWindow|Showing new packages from a set of %1 with '%2' matching '%3'.>Showing new packages from a set of %1 with '%2' matching '%3'. SearchModel"Configure BrowserConfigure BrowserConfigurationDialog&Open...&Open...WindowStable versionStable version SearchModelStable versionStable versionWindowMove &UpMove &UpConfigurationDialogMove &Down Move &DownConfigurationDialog(Information about %1Information about %1InformationWindow&Packages &PackagesWindow*&Package preferences:&Package preferences:ConfigurationDialog"PyPI Browser - %1PyPI Browser - %1WindowPlatform: Platform:ConfigurationDialogDescription DescriptionActionEditorDialogDescription Description SearchModelDescription DescriptionWindowProgressProgressDownloadDialog %1/%2 byte (%3%)"%1/%2 bytes (%3%)%1/%2 byte(s) (%3%)DownloadDialogInformation InformationUi_InformationWindow&About... &About...WindowBEnter the URL of a package index.!Enter the URL of a package index.Window&Browser&BrowserConfigurationDialogClassifiers Classifiers SearchModelClassifiers ClassifiersWindowÚThe package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.)mThe package index you specified is currently unavailable. (I failed to obtain a list of package classifiers.)WindowFilter Marked Filter MarkedWindow&Cancel&CancelActionEditorDialog&Cancel&CancelConfigurationDialogFilter New Filter NewWindowSummarySummary SearchModelSummarySummaryWindow&Field:&Field:Window(Download di&rectory:Download di&rectory:ConfigurationDialog&Python&PythonConfigurationDialog&Search&SearchWindowx<qt>You need to configure a download directory before you can download packages. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration.¼You need to configure a download directory before you can download packages. Open the Settings menu and select Configure Browser... to access the browser's configuration.Windowª<qt>You have marked packages for download. Click <b>OK</b> to discard this list.</qt>UYou have marked packages for download. Click OK to discard this list.Window‚<qt>You need to configure preferences for the types of packages you want to download. Open the <b>Settings</b> menu and select <b>Configure Browser...</b> to access the browser's configuration.ÁYou need to configure preferences for the types of packages you want to download. Open the Settings menu and select Configure Browser... to access the browser's configuration.WindowSea&rch for: Sea&rch for:WindowSystem paths: System paths:ConfigurationDialog"Maintainer e-mailMaintainer e-mail SearchModel"Maintainer e-mailMaintainer e-mailWindow2Package Index UnavailablePackage Index UnavailableWindow&Settings &SettingsWindowVersionVersion SearchModelVersionVersionWindowDiscard List Discard ListWindow*Showing all packages.Showing all packages. SearchModel*About PyPI Browser %1About PyPI Browser %1WindowPyPI Browser PyPI BrowserWindowKeywordsKeywords SearchModelKeywordsKeywordsWindowEdit ShortcutsEdit ShortcutsActionEditorDialog@Showing all new marked packages. Showing all new marked packages. SearchModel2Showing all new packages.Showing all new packages. SearchModel&Open Directory&Open DirectoryUi_DownloadDialogFetching... Fetching...DownloadDialogAuthor e-mail Author e-mail SearchModelAuthor e-mail Author e-mailWindow"Edit Shortcuts...Edit Shortcuts...WindowShortcutShortcutActionEditorDialogˆ./PyPI-Browser-1.5/PyPIBrowser/ui_window.py0000664000175000017500000002477410506061072016662 0ustar neoneo# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'PyPIBrowser/window.ui' # # Created: Tue Sep 26 01:11:54 2006 # by: PyQt4 UI code generator 4.0.1 # # WARNING! All changes made in this file will be lost! import sys from PyQt4 import QtCore, QtGui class Ui_Window(object): def setupUi(self, Window): Window.setObjectName("Window") Window.resize(QtCore.QSize(QtCore.QRect(0,0,543,443).size()).expandedTo(Window.minimumSizeHint())) self.centralwidget = QtGui.QWidget(Window) self.centralwidget.setObjectName("centralwidget") self.vboxlayout = QtGui.QVBoxLayout(self.centralwidget) self.vboxlayout.setMargin(9) self.vboxlayout.setSpacing(6) self.vboxlayout.setObjectName("vboxlayout") self.treeView = QtGui.QTreeView(self.centralwidget) self.treeView.setEnabled(False) self.treeView.setObjectName("treeView") self.vboxlayout.addWidget(self.treeView) self.hboxlayout = QtGui.QHBoxLayout() self.hboxlayout.setMargin(0) self.hboxlayout.setSpacing(6) self.hboxlayout.setObjectName("hboxlayout") self.label = QtGui.QLabel(self.centralwidget) self.label.setObjectName("label") self.hboxlayout.addWidget(self.label) self.fieldComboBox = QtGui.QComboBox(self.centralwidget) self.fieldComboBox.setEnabled(False) self.fieldComboBox.setObjectName("fieldComboBox") self.hboxlayout.addWidget(self.fieldComboBox) self.label_2 = QtGui.QLabel(self.centralwidget) self.label_2.setObjectName("label_2") self.hboxlayout.addWidget(self.label_2) self.searchLineEdit = QtGui.QLineEdit(self.centralwidget) self.searchLineEdit.setEnabled(False) self.searchLineEdit.setObjectName("searchLineEdit") self.hboxlayout.addWidget(self.searchLineEdit) self.searchButton = QtGui.QPushButton(self.centralwidget) self.searchButton.setEnabled(False) self.searchButton.setFocusPolicy(QtCore.Qt.NoFocus) self.searchButton.setObjectName("searchButton") self.hboxlayout.addWidget(self.searchButton) self.vboxlayout.addLayout(self.hboxlayout) Window.setCentralWidget(self.centralwidget) self.menubar = QtGui.QMenuBar(Window) self.menubar.setGeometry(QtCore.QRect(0,0,543,27)) self.menubar.setObjectName("menubar") self.menu_File = QtGui.QMenu(self.menubar) self.menu_File.setObjectName("menu_File") self.menu_Packages = QtGui.QMenu(self.menubar) self.menu_Packages.setObjectName("menu_Packages") self.menu_Help = QtGui.QMenu(self.menubar) self.menu_Help.setObjectName("menu_Help") self.menu_Settings = QtGui.QMenu(self.menubar) self.menu_Settings.setObjectName("menu_Settings") Window.setMenuBar(self.menubar) self.statusbar = QtGui.QStatusBar(Window) self.statusbar.setObjectName("statusbar") Window.setStatusBar(self.statusbar) self.openAction = QtGui.QAction(Window) self.openAction.setObjectName("openAction") self.exitAction = QtGui.QAction(Window) self.exitAction.setObjectName("exitAction") self.reloadListAction = QtGui.QAction(Window) self.reloadListAction.setEnabled(False) self.reloadListAction.setObjectName("reloadListAction") self.downloadAction = QtGui.QAction(Window) self.downloadAction.setEnabled(False) self.downloadAction.setObjectName("downloadAction") self.filterMarkedAction = QtGui.QAction(Window) self.filterMarkedAction.setCheckable(True) self.filterMarkedAction.setEnabled(False) self.filterMarkedAction.setObjectName("filterMarkedAction") self.configureBrowserAction = QtGui.QAction(Window) self.configureBrowserAction.setObjectName("configureBrowserAction") self.filterNewAction = QtGui.QAction(Window) self.filterNewAction.setCheckable(True) self.filterNewAction.setEnabled(False) self.filterNewAction.setObjectName("filterNewAction") self.aboutAction = QtGui.QAction(Window) self.aboutAction.setObjectName("aboutAction") self.aboutQtAction = QtGui.QAction(Window) self.aboutQtAction.setIcon(QtGui.QIcon("../../../../../../../:/trolltech/formeditor/images/qtlogo.png")) self.aboutQtAction.setObjectName("aboutQtAction") self.openManualAction = QtGui.QAction(Window) self.openManualAction.setObjectName("openManualAction") self.editShortcutsAction = QtGui.QAction(Window) self.editShortcutsAction.setObjectName("editShortcutsAction") self.menu_File.addAction(self.openAction) self.menu_File.addAction(self.exitAction) self.menu_Packages.addAction(self.reloadListAction) self.menu_Packages.addAction(self.downloadAction) self.menu_Packages.addAction(self.filterMarkedAction) self.menu_Packages.addAction(self.filterNewAction) self.menu_Help.addAction(self.aboutAction) self.menu_Help.addAction(self.aboutQtAction) self.menu_Help.addAction(self.openManualAction) self.menu_Settings.addAction(self.configureBrowserAction) self.menu_Settings.addAction(self.editShortcutsAction) self.menubar.addAction(self.menu_File.menuAction()) self.menubar.addAction(self.menu_Packages.menuAction()) self.menubar.addAction(self.menu_Settings.menuAction()) self.menubar.addAction(self.menu_Help.menuAction()) self.label.setBuddy(self.fieldComboBox) self.label_2.setBuddy(self.searchLineEdit) self.retranslateUi(Window) QtCore.QObject.connect(self.exitAction,QtCore.SIGNAL("triggered()"),Window.close) QtCore.QMetaObject.connectSlotsByName(Window) def retranslateUi(self, Window): Window.setWindowTitle(QtGui.QApplication.translate("Window", "PyPI Browser", None, QtGui.QApplication.UnicodeUTF8)) self.label.setText(QtGui.QApplication.translate("Window", "&Field:", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Name", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Version", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Author", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Summary", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Description", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Stable version", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Author e-mail", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Maintainer", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Maintainer e-mail", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "License", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Platform", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Download URL", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Home page", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Keywords", None, QtGui.QApplication.UnicodeUTF8)) self.fieldComboBox.addItem(QtGui.QApplication.translate("Window", "Classifiers", None, QtGui.QApplication.UnicodeUTF8)) self.label_2.setText(QtGui.QApplication.translate("Window", "Sea&rch for:", None, QtGui.QApplication.UnicodeUTF8)) self.searchButton.setText(QtGui.QApplication.translate("Window", "&Search", None, QtGui.QApplication.UnicodeUTF8)) self.menu_File.setTitle(QtGui.QApplication.translate("Window", "&File", None, QtGui.QApplication.UnicodeUTF8)) self.menu_Packages.setTitle(QtGui.QApplication.translate("Window", "&Packages", None, QtGui.QApplication.UnicodeUTF8)) self.menu_Help.setTitle(QtGui.QApplication.translate("Window", "&Help", None, QtGui.QApplication.UnicodeUTF8)) self.menu_Settings.setTitle(QtGui.QApplication.translate("Window", "&Settings", None, QtGui.QApplication.UnicodeUTF8)) self.openAction.setText(QtGui.QApplication.translate("Window", "&Open...", None, QtGui.QApplication.UnicodeUTF8)) self.openAction.setShortcut(QtGui.QApplication.translate("Window", "Ctrl+O", None, QtGui.QApplication.UnicodeUTF8)) self.exitAction.setText(QtGui.QApplication.translate("Window", "E&xit", None, QtGui.QApplication.UnicodeUTF8)) self.exitAction.setShortcut(QtGui.QApplication.translate("Window", "Ctrl+Q", None, QtGui.QApplication.UnicodeUTF8)) self.reloadListAction.setText(QtGui.QApplication.translate("Window", "&Reload List", None, QtGui.QApplication.UnicodeUTF8)) self.reloadListAction.setShortcut(QtGui.QApplication.translate("Window", "Ctrl+R", None, QtGui.QApplication.UnicodeUTF8)) self.downloadAction.setText(QtGui.QApplication.translate("Window", "Download...", None, QtGui.QApplication.UnicodeUTF8)) self.downloadAction.setShortcut(QtGui.QApplication.translate("Window", "Ctrl+Return", None, QtGui.QApplication.UnicodeUTF8)) self.filterMarkedAction.setText(QtGui.QApplication.translate("Window", "Filter Marked", None, QtGui.QApplication.UnicodeUTF8)) self.configureBrowserAction.setText(QtGui.QApplication.translate("Window", "Configure Browser...", None, QtGui.QApplication.UnicodeUTF8)) self.filterNewAction.setText(QtGui.QApplication.translate("Window", "Filter New", None, QtGui.QApplication.UnicodeUTF8)) self.aboutAction.setText(QtGui.QApplication.translate("Window", "&About...", None, QtGui.QApplication.UnicodeUTF8)) self.aboutQtAction.setText(QtGui.QApplication.translate("Window", "About Qt...", None, QtGui.QApplication.UnicodeUTF8)) self.openManualAction.setText(QtGui.QApplication.translate("Window", "Open Manual", None, QtGui.QApplication.UnicodeUTF8)) self.editShortcutsAction.setText(QtGui.QApplication.translate("Window", "Edit Shortcuts...", None, QtGui.QApplication.UnicodeUTF8)) ./PyPI-Browser-1.5/PyPIBrowser/window.ui0000664000175000017500000001774310506061052016146 0ustar neoneo Window 0 0 543 443 PyPI Browser 9 6 false 0 6 &Field: fieldComboBox false Name Version Author Summary Description Stable version Author e-mail Maintainer Maintainer e-mail License Platform Download URL Home page Keywords Classifiers Sea&rch for: searchLineEdit false false Qt::NoFocus &Search 0 0 543 27 &File &Packages &Help &Settings &Open... Ctrl+O E&xit Ctrl+Q false &Reload List Ctrl+R false Download... Ctrl+Return true false Filter Marked Configure Browser... true false Filter New &About... ../../../../../../../:/trolltech/formeditor/images/qtlogo.png About Qt... Open Manual Edit Shortcuts... exitAction triggered() Window close() -1 -1 271 221 ./PyPI-Browser-1.5/PyPIBrowser/window.py0000664000175000017500000003736010553011630016155 0ustar neoneo#!/usr/bin/env python """ window.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ from PyQt4.QtCore import * from PyQt4.QtGui import * from constants import __version__ import desktop from dialogs import ActionEditorDialog, ConfigurationDialog, DownloadDialog, \ InformationWindow from packagemodel import PackageModel import os import pypi from searchmodel import SearchModel import sys from ui_window import Ui_Window import urllib2 class Window(QMainWindow, Ui_Window): """Window(QMainWindow, Ui_Window) A class to provide the main application window and contain the infrastructure used by components to communicate with each other. """ def __init__(self, parent = None): QMainWindow.__init__(self, parent) self.setupUi(self) # Create a settings object that will be shared between # application components. self.settings = QSettings("boddie.org.uk", "PyPI Browser") # We use two models: an underlying package model and a search # model that filters packages based on whether they match search # terms and whether they are marked. The tree view shows the # contents of the search model. self.package_server = pypi.AbstractServer() self.packageModel = PackageModel(self.package_server) self.searchModel = SearchModel(self.package_server) self.searchModel.setSourceModel(self.packageModel) self.treeView.setModel(self.searchModel) self.markedPackages = 0 self.matchingPackages = 0 self.windows = [] # Set up signal-slot connections defined in the .ui files and # those providing higher-level functionality. QMetaObject.connectSlotsByName(self) # Load user-defined actions. ActionEditorDialog.loadSettings(self.settings, self.findChildren(QAction)) self.connect(self.openAction, SIGNAL("triggered()"), self.openIndex) self.connect(self.downloadAction, SIGNAL("triggered()"), self.download) self.connect(self.reloadListAction, SIGNAL("triggered()"), self.reloadPackages) self.connect(self.filterMarkedAction, SIGNAL("triggered(bool)"), self.setMarkedFilter) self.connect(self.filterNewAction, SIGNAL("triggered(bool)"), self.setNewFilter) self.connect(self.searchModel, SIGNAL("resultsFound(const QString &)"), self.showResults) self.connect(self.searchModel, SIGNAL("markedChanged(bool)"), self.downloadAction, SLOT("setEnabled(bool)")) self.connect(self.packageModel, SIGNAL("operationStarted()"), self.showWaitCursor) self.connect(self.packageModel, SIGNAL("operationFinished()"), self.unsetCursor) self.connect(self.searchModel, SIGNAL("operationStarted()"), self.showWaitCursor) self.connect(self.searchModel, SIGNAL("operationFinished()"), self.unsetCursor) self.connect(self.treeView, SIGNAL("activated(const QModelIndex &)"), self.showInformation) self.connect(self.treeView, SIGNAL("expanded(const QModelIndex &)"), self.resizeColumns) #self.connect(self.treeView, SIGNAL("collapsed(const QModelIndex &)"), # self.resizeColumns) self.connect(self.fieldComboBox, SIGNAL("currentIndexChanged(int)"), self.searchModel.setSearchField) self.connect(self.searchLineEdit, SIGNAL("textChanged(const QString &)"), self.searchModel.setSearchTerms) self.connect(self.searchLineEdit, SIGNAL("returnPressed()"), self.searchModel.search) self.connect(self.searchButton, SIGNAL("clicked()"), self.searchModel.search) self.connect(self.configureBrowserAction, SIGNAL("triggered()"), self.configureBrowser) self.connect(self.editShortcutsAction, SIGNAL("triggered()"), self.editShortcuts) self.connect(self.aboutAction, SIGNAL("triggered()"), self.about) self.connect(self.aboutQtAction, SIGNAL("triggered()"), self.aboutQt) self.connect(self.openManualAction, SIGNAL("triggered()"), self.openManual) def about(self): QMessageBox.about(self, self.tr("About PyPI Browser %1").arg(__version__), self.tr("

About PyPI Browser %1

" "

PyPI Browser allows you to examine available " "packages in the Python Package Index and other package " "indexes that expose a compatible XML-RPC interface.

" "

Uses desktop integration features provided by version " "%2 of the desktop module (search the package " "index for more information).

").arg(__version__) .arg(desktop.__version__)) def aboutQt(self): QMessageBox.aboutQt(self) def changeServer(self): """changeModel(self, newModel) Replace the existing package model and set up the search model to filter the contents of the new model. """ self.packageModel.setServer(self.package_server) self.searchModel.setServer(self.package_server) def closeEvent(self, event): """closeEvent(self, event) Checks for marked packages and accepts the close event only if there are either no marked packages or if the user discards them. """ gen = self.marked() try: gen.next() if not self.confirmDiscard(): event.ignore() return except StopIteration: pass self.packageModel.save(self.settings) for widget in qApp.topLevelWidgets(): widget.close() def configureBrowser(self): """configureBrowser(self) Opens a configuration dialog to allow the user to change the behaviour of the application. """ dialog = ConfigurationDialog(self.settings, self) if dialog.exec_() == QDialog.Accepted: dialog.saveSettings() self.settings.sync() def confirmDiscard(self): """confirmDiscard(self) Opens a message dialog asking whether the user wants to discard the current list of marked packages. Returns true if the user discards the packages; otherwise returns false. """ answer = QMessageBox.warning(self, self.tr("Discard List"), self.tr("You have marked packages for download.\n" "Click OK to discard this list."), QMessageBox.Ok, QMessageBox.Cancel) if answer == QMessageBox.Ok: return True else: return False def deleteWindow(self): self.windows.remove(self.sender()) def download(self): """download(self) If a download directory has been configured, a download dialog is opened and the current list of marked packages is submitted for retrieval. If no valid download directory is configured, the user is asked to configure one in the configuration dialog. """ if not self.settings.value("Download directory").isValid(): QMessageBox.information(self, self.tr("Cannot Download Packages"), self.tr("You need to configure a download directory " "before you can download packages. Open the " "Settings menu and select " "Configure Browser... to access the " "browser's configuration."), QMessageBox.Ok) elif not self.settings.value("Package preferences").isValid(): QMessageBox.information(self, self.tr("Cannot Download Packages"), self.tr("You need to configure preferences for the " "types of packages you want to download. Open the " "Settings menu and select " "Configure Browser... to access the " "browser's configuration."), QMessageBox.Ok) else: dialog = DownloadDialog(self.settings, self) dialog.show() dialog.execute(list(self.marked())) def editShortcuts(self): """editShortcuts(self) Opens a dialog to allow the user to edit the shortcuts used in the application. """ actions = self.findChildren(QAction) dialog = ActionEditorDialog(actions, self) if dialog.exec_() == QDialog.Accepted: dialog.saveSettings(self.settings, actions) self.settings.sync() def listClassifiers(self, url): """listClassifiers(self, url) Returns true if the list of known classifiers from the current package index can be obtained; otherwise returns false. This test is used to check whether the URL used for the package index is valid. (It would be better if we could check for the presence of a usable XML-RPC server.) The URL used to obtain a list of classifiers is based on the Python Package Index URL: http://www.python.org/pypi?%3Aaction=list_classifiers The query may possibly be used with other package indexes. """ try: u = urllib2.urlopen(url+u"?%3Aaction=list_classifiers") line = None while line != "": line = u.readline() qApp.processEvents() u.close() except: return False return True def marked(self): """marked(self) This generator returns marked packages one at a time. """ for packageName in self.searchModel.markedPackages: package, versions = self.searchModel.markedPackages[packageName] for release in package.releases: if release.version in versions: name = release.description.metadata["name"] release_urls = release.description.metadata["release_urls"] home_url = release.description.metadata["home_page"] yield (name, release.version, release_urls, home_url) def openIndex(self): """openIndex(self) Opens a new package index specified by the user in an input dialog, checking first that the URL given corresponds to the location of a usable XML-RPC server. If the URL is invalid, the current package index is not replaced. """ gen = self.marked() try: gen.next() if not self.confirmDiscard(): return except StopIteration: pass url = unicode(self.settings.value("Package index").toString()) if not url: url = u"http://cheeseshop.python.org/pypi" url, valid = QInputDialog.getText(self, self.tr("Open Index"), self.tr("Enter the URL of a package index."), QLineEdit.Normal, url) if not valid: return self.settings.setValue("Package index", QVariant(url)) # Fetch a list of classifiers. if not self.listClassifiers(unicode(url)): QMessageBox.information(self, self.tr("Package Index Unavailable"), self.tr("The package index you specified is currently " "unavailable.\n" "(I failed to obtain a list of package classifiers.)")) return self.fieldComboBox.setEnabled(True) self.searchLineEdit.setEnabled(True) self.searchButton.setEnabled(True) self.reloadListAction.setEnabled(True) self.filterMarkedAction.setEnabled(True) self.filterNewAction.setEnabled(True) self.package_server = pypi.PackageServer(unicode(url)) self.changeServer() self.searchModel.clear() self.reloadPackages() self.windows = [] self.treeView.setEnabled(True) self.treeView.resizeColumnToContents(0) self.searchLineEdit.setFocus(Qt.OtherFocusReason) self.setWindowTitle(self.tr("PyPI Browser - %1").arg(url)) def openManual(self): """openManual(self) Opens the manual supplied with this application in the user's web browser. """ directory = os.path.join(os.path.split(__file__)[0], "Documents") desktop.open(os.path.join(directory, "Manual"+os.extsep+"html")) def reloadPackages(self): """reloadPackages(self) Reloads information about the packages in the current package index while retaining search and marked package information held by the search model. """ # Clear the search model first to prevent old indexes from # being referenced when they are invalidated in the underlying # source model. self.searchModel.reset() self.packageModel.listPackages() self.packageModel.load(self.settings) self.searchModel.search() def resizeColumns(self): self.treeView.resizeColumnToContents(0) def setMarkedFilter(self, enable): self.searchModel.setMarkedFilter(enable) #self.treeView.resizeColumnToContents(0) def setNewFilter(self, enable): self.searchModel.setNewFilter(enable) #elf.treeView.resizeColumnToContents(0) def showInformation(self, index): if not index.isValid(): return elif not index.parent().isValid(): self.showPackageInformation(index) else: self.showReleaseInformation(index) def showPackageInformation(self, index): window = InformationWindow() window.setPackageInfo(index) window.show() self.windows.append(window) self.connect(window, SIGNAL("closed()"), self.deleteWindow) def showReleaseInformation(self, index): window = InformationWindow() window.setPackageInfo(index.parent(), index) window.show() self.windows.append(window) self.connect(window, SIGNAL("closed()"), self.deleteWindow) def showResults(self, message): self.statusBar().showMessage(message) self.treeView.resizeColumnToContents(0) def showWaitCursor(self): self.setCursor(Qt.WaitCursor) ./PyPI-Browser-1.5/PyPIBrowser/delegates.py0000664000175000017500000001014310464210746016603 0ustar neoneo#!/usr/bin/env python """ delegates.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ from PyQt4.QtCore import Qt from PyQt4.QtGui import QItemDelegate, QPalette, QPen, QStyle try: from PyQt4.QtGui import QStylePainter, QStyleOptionProgressBarV2 with_style = True except ImportError: with_style = False class ProgressDelegate(QItemDelegate): """ProgressDelegate(QItemDelegate) A custom delegate that displays data obtained from a model in the form of a progress bar. The text used on the bar is obtained for a given model index using the standard DisplayRole, and the percentage value indicating the progress of some operation is obtained using the UserRole. """ def __init__(self, parent = None): QItemDelegate.__init__(self, parent) def paint(self, painter, option, index): """paint(self, painter, option, index) Paints the contents of the delegate using the given painter to perform painting operations. The specified option contains information about the paint device. The contents of the delegate are obtained from a model using the specified model index. """ value = index.data(Qt.UserRole) if not value.isValid(): return QItemDelegate.paint(self, painter, option, index) else: percentage = value.toDouble()[0] painter.setPen(Qt.NoPen) if option.state & QStyle.State_Selected: backgroundBrush = option.palette.alternateBase() labelBrush = option.palette.highlight() color = labelBrush.color() color.setAlpha(127) labelBrush.setColor(color) else: backgroundBrush = option.palette.base() labelBrush = option.palette.highlight() color = labelBrush.color() color.setAlpha(127) labelBrush.setColor(color) painter.setBrush(backgroundBrush) painter.drawRect(option.rect) if with_style: stylePainter = QStylePainter() stylePainter.begin(painter.device(), self.parent()) progressOption = QStyleOptionProgressBarV2() progressOption.initFrom(self.parent()) progressOption.rect = option.rect progressOption.minimum = 0 progressOption.maximum = 100 progressOption.progress = int(percentage) progressOption.text = index.data(Qt.DisplayRole).toString() progressOption.textAlignment = Qt.AlignCenter progressOption.textVisible = True stylePainter.drawControl(QStyle.CE_ProgressBar, progressOption) stylePainter.end() else: painter.setBrush(labelBrush) w = option.rect.width() * percentage/100.0 painter.drawRect(option.rect.x(), option.rect.y(), w, option.rect.height()) if option.state & QStyle.State_Selected: painter.setPen(QPen(option.palette.color(QPalette.HighlightedText))) else: painter.setPen(QPen(option.palette.color(QPalette.Text))) painter.setFont(option.font) painter.drawText(option.rect, Qt.AlignCenter, index.data(Qt.DisplayRole).toString()) ./PyPI-Browser-1.5/PyPIBrowser/__init__.py0000664000175000017500000000152010463455154016407 0ustar neoneo#!/usr/bin/env python """ __init__.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ __all__ = [] ./PyPI-Browser-1.5/PyPIBrowser/ui_configurationdialog.py0000664000175000017500000002273510463146230021377 0ustar neoneo# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'configurationdialog.ui' # # Created: Sun Jul 30 17:13:28 2006 # by: PyQt4 UI code generator 4.0.1 # # WARNING! All changes made in this file will be lost! import sys from PyQt4 import QtCore, QtGui class Ui_ConfigurationDialog(object): def setupUi(self, ConfigurationDialog): ConfigurationDialog.setObjectName("ConfigurationDialog") ConfigurationDialog.resize(QtCore.QSize(QtCore.QRect(0,0,291,323).size()).expandedTo(ConfigurationDialog.minimumSizeHint())) self.vboxlayout = QtGui.QVBoxLayout(ConfigurationDialog) self.vboxlayout.setMargin(9) self.vboxlayout.setSpacing(6) self.vboxlayout.setObjectName("vboxlayout") self.tabWidget = QtGui.QTabWidget(ConfigurationDialog) self.tabWidget.setObjectName("tabWidget") self.browserTab = QtGui.QWidget() self.browserTab.setObjectName("browserTab") self.vboxlayout1 = QtGui.QVBoxLayout(self.browserTab) self.vboxlayout1.setMargin(9) self.vboxlayout1.setSpacing(6) self.vboxlayout1.setObjectName("vboxlayout1") self.gridlayout = QtGui.QGridLayout() self.gridlayout.setMargin(0) self.gridlayout.setSpacing(6) self.gridlayout.setObjectName("gridlayout") self.packageIndexLineEdit = QtGui.QLineEdit(self.browserTab) self.packageIndexLineEdit.setReadOnly(False) self.packageIndexLineEdit.setObjectName("packageIndexLineEdit") self.gridlayout.addWidget(self.packageIndexLineEdit,0,1,1,2) self.downloadLabel = QtGui.QLabel(self.browserTab) self.downloadLabel.setObjectName("downloadLabel") self.gridlayout.addWidget(self.downloadLabel,1,0,1,1) self.downloadLineEdit = QtGui.QLineEdit(self.browserTab) self.downloadLineEdit.setReadOnly(True) self.downloadLineEdit.setObjectName("downloadLineEdit") self.gridlayout.addWidget(self.downloadLineEdit,1,1,1,1) self.packageIndexLabel = QtGui.QLabel(self.browserTab) self.packageIndexLabel.setObjectName("packageIndexLabel") self.gridlayout.addWidget(self.packageIndexLabel,0,0,1,1) self.downloadButton = QtGui.QToolButton(self.browserTab) self.downloadButton.setObjectName("downloadButton") self.gridlayout.addWidget(self.downloadButton,1,2,1,1) self.vboxlayout1.addLayout(self.gridlayout) self.label = QtGui.QLabel(self.browserTab) self.label.setObjectName("label") self.vboxlayout1.addWidget(self.label) self.hboxlayout = QtGui.QHBoxLayout() self.hboxlayout.setMargin(0) self.hboxlayout.setSpacing(6) self.hboxlayout.setObjectName("hboxlayout") self.preferencesList = QtGui.QListWidget(self.browserTab) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(7),QtGui.QSizePolicy.Policy(7)) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.preferencesList.sizePolicy().hasHeightForWidth()) self.preferencesList.setSizePolicy(sizePolicy) self.preferencesList.setObjectName("preferencesList") self.hboxlayout.addWidget(self.preferencesList) self.vboxlayout2 = QtGui.QVBoxLayout() self.vboxlayout2.setMargin(0) self.vboxlayout2.setSpacing(6) self.vboxlayout2.setObjectName("vboxlayout2") self.upButton = QtGui.QPushButton(self.browserTab) self.upButton.setEnabled(False) self.upButton.setObjectName("upButton") self.vboxlayout2.addWidget(self.upButton) self.downButton = QtGui.QPushButton(self.browserTab) self.downButton.setEnabled(False) self.downButton.setObjectName("downButton") self.vboxlayout2.addWidget(self.downButton) self.hideButton = QtGui.QPushButton(self.browserTab) self.hideButton.setEnabled(False) self.hideButton.setObjectName("hideButton") self.vboxlayout2.addWidget(self.hideButton) spacerItem = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) self.vboxlayout2.addItem(spacerItem) self.hboxlayout.addLayout(self.vboxlayout2) self.vboxlayout1.addLayout(self.hboxlayout) self.tabWidget.addTab(self.browserTab, "") self.pythonTab = QtGui.QWidget() self.pythonTab.setObjectName("pythonTab") self.gridlayout1 = QtGui.QGridLayout(self.pythonTab) self.gridlayout1.setMargin(9) self.gridlayout1.setSpacing(6) self.gridlayout1.setObjectName("gridlayout1") self.systemPathsList = QtGui.QListWidget(self.pythonTab) self.systemPathsList.setObjectName("systemPathsList") self.gridlayout1.addWidget(self.systemPathsList,3,0,1,2) self.platformLabel = QtGui.QLabel(self.pythonTab) self.platformLabel.setObjectName("platformLabel") self.gridlayout1.addWidget(self.platformLabel,1,0,1,1) self.platformPlaceholder = QtGui.QLabel(self.pythonTab) self.platformPlaceholder.setObjectName("platformPlaceholder") self.gridlayout1.addWidget(self.platformPlaceholder,1,1,1,1) self.sysPathsLabel = QtGui.QLabel(self.pythonTab) self.sysPathsLabel.setObjectName("sysPathsLabel") self.gridlayout1.addWidget(self.sysPathsLabel,2,0,1,1) spacerItem1 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) self.gridlayout1.addItem(spacerItem1,4,0,1,1) self.versionPlaceholder = QtGui.QLabel(self.pythonTab) self.versionPlaceholder.setObjectName("versionPlaceholder") self.gridlayout1.addWidget(self.versionPlaceholder,0,1,1,1) self.versionLabel = QtGui.QLabel(self.pythonTab) self.versionLabel.setObjectName("versionLabel") self.gridlayout1.addWidget(self.versionLabel,0,0,1,1) self.tabWidget.addTab(self.pythonTab, "") self.vboxlayout.addWidget(self.tabWidget) spacerItem2 = QtGui.QSpacerItem(273,16,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) self.vboxlayout.addItem(spacerItem2) self.hboxlayout1 = QtGui.QHBoxLayout() self.hboxlayout1.setMargin(0) self.hboxlayout1.setSpacing(6) self.hboxlayout1.setObjectName("hboxlayout1") spacerItem3 = QtGui.QSpacerItem(131,31,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum) self.hboxlayout1.addItem(spacerItem3) self.okButton = QtGui.QPushButton(ConfigurationDialog) self.okButton.setObjectName("okButton") self.hboxlayout1.addWidget(self.okButton) self.cancelButton = QtGui.QPushButton(ConfigurationDialog) self.cancelButton.setObjectName("cancelButton") self.hboxlayout1.addWidget(self.cancelButton) self.vboxlayout.addLayout(self.hboxlayout1) self.downloadLabel.setBuddy(self.downloadLineEdit) self.packageIndexLabel.setBuddy(self.packageIndexLineEdit) self.label.setBuddy(self.preferencesList) self.retranslateUi(ConfigurationDialog) self.tabWidget.setCurrentIndex(0) QtCore.QObject.connect(self.okButton,QtCore.SIGNAL("clicked()"),ConfigurationDialog.accept) QtCore.QObject.connect(self.cancelButton,QtCore.SIGNAL("clicked()"),ConfigurationDialog.reject) QtCore.QMetaObject.connectSlotsByName(ConfigurationDialog) def retranslateUi(self, ConfigurationDialog): ConfigurationDialog.setWindowTitle(QtGui.QApplication.translate("ConfigurationDialog", "Configure Browser", None, QtGui.QApplication.UnicodeUTF8)) self.downloadLabel.setText(QtGui.QApplication.translate("ConfigurationDialog", "Download di&rectory:", None, QtGui.QApplication.UnicodeUTF8)) self.packageIndexLabel.setText(QtGui.QApplication.translate("ConfigurationDialog", "Package &Index:", None, QtGui.QApplication.UnicodeUTF8)) self.downloadButton.setText(QtGui.QApplication.translate("ConfigurationDialog", "...", None, QtGui.QApplication.UnicodeUTF8)) self.label.setText(QtGui.QApplication.translate("ConfigurationDialog", "&Package preferences:", None, QtGui.QApplication.UnicodeUTF8)) self.upButton.setText(QtGui.QApplication.translate("ConfigurationDialog", "Move &Up", None, QtGui.QApplication.UnicodeUTF8)) self.downButton.setText(QtGui.QApplication.translate("ConfigurationDialog", "Move &Down", None, QtGui.QApplication.UnicodeUTF8)) self.hideButton.setText(QtGui.QApplication.translate("ConfigurationDialog", "&Hide", None, QtGui.QApplication.UnicodeUTF8)) self.tabWidget.setTabText(self.tabWidget.indexOf(self.browserTab), QtGui.QApplication.translate("ConfigurationDialog", "&Browser", None, QtGui.QApplication.UnicodeUTF8)) self.platformLabel.setText(QtGui.QApplication.translate("ConfigurationDialog", "Platform:", None, QtGui.QApplication.UnicodeUTF8)) self.sysPathsLabel.setText(QtGui.QApplication.translate("ConfigurationDialog", "System paths:", None, QtGui.QApplication.UnicodeUTF8)) self.versionLabel.setText(QtGui.QApplication.translate("ConfigurationDialog", "Interpreter version:", None, QtGui.QApplication.UnicodeUTF8)) self.tabWidget.setTabText(self.tabWidget.indexOf(self.pythonTab), QtGui.QApplication.translate("ConfigurationDialog", "&Python", None, QtGui.QApplication.UnicodeUTF8)) self.okButton.setText(QtGui.QApplication.translate("ConfigurationDialog", "&OK", None, QtGui.QApplication.UnicodeUTF8)) self.cancelButton.setText(QtGui.QApplication.translate("ConfigurationDialog", "&Cancel", None, QtGui.QApplication.UnicodeUTF8)) ./PyPI-Browser-1.5/PyPIBrowser/informationwindow.ui0000664000175000017500000000364110463454614020420 0ustar neoneo InformationWindow 0 0 400 300 Information 9 6 0 6 Qt::Horizontal 40 20 &Close Close Esc closeButton clicked() InformationWindow close() 337 283 329 237 ./PyPI-Browser-1.5/PyPIBrowser/actioneditor.py0000664000175000017500000002612410477634222017343 0ustar neoneo#!/usr/bin/env python """ actioneditor.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ from PyQt4.QtCore import QEvent, QRect, QString, Qt, QVariant, SIGNAL from PyQt4.QtGui import qApp, QBrush, QColor, QDialog, QHBoxLayout, \ QItemDelegate, QKeySequence, QLabel, QPainter, QPalette, QPen, \ QPushButton, QStyle, QTableWidget, QTableWidgetItem, QVBoxLayout class ActionEditorWidget(QLabel): # Redefine the tr() function for this class. def tr(self, text): return qApp.translate("ActionEditorWidget", text) def __init__(self, text, parent): QLabel.__init__(self, text, parent) self.key = "" self.modifiers = {} self.setAutoFillBackground(True) palette = self.palette() palette.setBrush(palette.Base, palette.brush(palette.AlternateBase)) self.setPalette(palette) self.valid = False def keyPressEvent(self, event): other = None if event.key() == Qt.Key_Shift: self.modifiers[Qt.Key_Shift] = u"Shift" elif event.key() == Qt.Key_Control: self.modifiers[Qt.Key_Control] = u"Ctrl" elif event.key() == Qt.Key_Meta: self.modifiers[Qt.Key_Meta] = u"Meta" elif event.key() == Qt.Key_Alt: self.modifiers[Qt.Key_Alt] = u"Alt" else: other = QString(QKeySequence(event.key())) if other: key_string = u"+".join(self.modifiers.values() + [unicode(other),]) self.valid = True else: key_string = u"+".join(self.modifiers.values()) self.setText(key_string) def keyReleaseEvent(self, event): if self.valid: return if event.key() == Qt.Key_Shift: if self.modifiers.has_key(Qt.Key_Shift): del self.modifiers[Qt.Key_Shift] elif event.key() == Qt.Key_Control: if self.modifiers.has_key(Qt.Key_Control): del self.modifiers[Qt.Key_Control] elif event.key() == Qt.Key_Meta: if self.modifiers.has_key(Qt.Key_Meta): del self.modifiers[Qt.Key_Meta] elif event.key() == Qt.Key_Alt: if self.modifiers.has_key(Qt.Key_Alt): del self.modifiers[Qt.Key_Alt] self.setText(u"+".join(self.modifiers.values())) if len(self.modifiers) == 0: self.releaseKeyboard() def mousePressEvent(self, event): if event.button() != Qt.LeftButton: return size = self.height() / 2.0 rect = QRect(self.width() - size, size * 0.5, size, size) if rect.contains(event.pos()): self.clear() self.valid = True event.accept() def paintEvent(self, event): if not self.text().isEmpty(): painter = QPainter() painter.begin(self) painter.setRenderHint(QPainter.Antialiasing) color = self.palette().color(QPalette.Highlight) color.setAlpha(127) painter.setBrush(QBrush(color)) color = self.palette().color(QPalette.HighlightedText) color.setAlpha(127) painter.setPen(QPen(color)) size = self.height() / 2.0 painter.drawRect(self.width() - size, size * 0.5, size, size) painter.drawLine(self.width() - size * 0.75, size * 0.75, self.width() - size * 0.25, size * 1.25) painter.drawLine(self.width() - size * 0.25, size * 0.75, self.width() - size * 0.75, size * 1.25) painter.end() QLabel.paintEvent(self, event) def showEvent(self, event): self.grabKeyboard() class ActionEditorDelegate(QItemDelegate): def __init__(self, parent = None): QItemDelegate.__init__(self, parent) def createEditor(self, parent, option, index): self.editor = ActionEditorWidget(index.data().toString(), parent) self.editor.installEventFilter(self) return self.editor def eventFilter(self, obj, event): if obj == self.editor: if event.type() == QEvent.KeyPress: obj.keyPressEvent(event) if obj.valid: self.emit(SIGNAL("commitData(QWidget *)"), self.editor) self.emit(SIGNAL("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)"), self.editor, QItemDelegate.NoHint) return True elif event.type() == QEvent.KeyRelease: obj.keyReleaseEvent(event) if obj.text().isEmpty(): self.emit(SIGNAL("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)"), self.editor, QItemDelegate.NoHint) return True elif event.type() == QEvent.MouseButtonPress: obj.mousePressEvent(event) if obj.valid: self.emit(SIGNAL("commitData(QWidget *)"), self.editor) self.emit(SIGNAL("closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint)"), self.editor, QItemDelegate.NoHint) return True return False def paint(self, painter, option, index): if index.column() != 0: QItemDelegate.paint(self, painter, option, index) return painter.fillRect(option.rect, option.palette.brush(QPalette.Base)) painter.setPen(QPen(option.palette.color(QPalette.Text))) painter.drawText(option.rect.adjusted(4, 4, -4, -4), Qt.TextShowMnemonic | Qt.AlignLeft | Qt.AlignVCenter, index.data().toString()) def setEditorData(self, editor, index): editor.setText(index.data().toString()) def setModelData(self, editor, model, index): model.setData(index, QVariant(editor.text())) def updateEditorGeometry(self, editor, option, index): editor.setGeometry(option.rect) class ActionEditorDialog(QDialog): # Redefine the tr() function for this class. def tr(self, text): return qApp.translate("ActionEditorDialog", text) def __init__(self, actions, parent): QDialog.__init__(self, parent) self.actions = filter(lambda action: action.parent() == parent, actions) self.actionTable = QTableWidget(self) self.actionTable.setColumnCount(2) self.actionTable.setHorizontalHeaderLabels( [self.tr("Description"), self.tr("Shortcut")] ) self.actionTable.horizontalHeader().setStretchLastSection(True) self.actionTable.verticalHeader().hide() self.actionTable.setItemDelegate(ActionEditorDelegate(self)) self.connect(self.actionTable, SIGNAL("cellChanged(int, int)"), self.validateAction) row = 0 for action in self.actions: if action.text().isEmpty(): continue self.actionTable.insertRow(self.actionTable.rowCount()) item = QTableWidgetItem() item.setText(action.text()) item.setFlags(Qt.ItemIsEnabled) self.actionTable.setItem(row, 0, item) item = QTableWidgetItem() item.setText(action.shortcut().toString()) item.setFlags(Qt.ItemIsEnabled | Qt.ItemIsEditable) item.oldShortcutText = item.text() self.actionTable.setItem(row, 1, item) row += 1 self.actionTable.resizeColumnsToContents() ok_button = QPushButton(self.tr("&OK")) cancel_button = QPushButton(self.tr("&Cancel")) self.connect(ok_button, SIGNAL("clicked()"), self.accept) self.connect(cancel_button, SIGNAL("clicked()"), self.reject) button_layout = QHBoxLayout() button_layout.setSpacing(8) button_layout.addStretch(1) button_layout.addWidget(ok_button) button_layout.addWidget(cancel_button) mainLayout = QVBoxLayout() mainLayout.setMargin(8) mainLayout.setSpacing(8) mainLayout.addWidget(self.actionTable) mainLayout.addLayout(button_layout) self.setLayout(mainLayout) self.setWindowTitle(self.tr("Edit Shortcuts")) def accept(self): row = 0 for action in self.actions: if not action.text().isEmpty(): action.setText(self.actionTable.item(row, 0).text()) action.setShortcut(QKeySequence(self.actionTable.item(row, 1).text())) row += 1 QDialog.accept(self) def loadSettings(self, settings, actions): settings.beginGroup("Actions") for action in actions: shortcutText = settings.value(action.text()).toString() if not shortcutText.isEmpty(): action.setShortcut(QKeySequence(shortcutText)) settings.endGroup() loadSettings = classmethod(loadSettings) def saveSettings(self, settings, actions): settings.beginGroup("Actions") for action in actions: shortcutText = action.shortcut().toString() settings.setValue(action.text(), QVariant(shortcutText)) settings.endGroup() saveSettings = classmethod(saveSettings) def validateAction(self, row, column): if column != 1: return item = self.actionTable.item(row, column) shortcutText = QKeySequence(item.text()).toString() thisRow = self.actionTable.row(item) if not shortcutText.isEmpty(): for row in range(self.actionTable.rowCount()): if row == thisRow: continue other = self.actionTable.item(row, 1) if other.text() == shortcutText: other.setText(item.oldShortcutText) break item.setText(shortcutText) item.oldShortcutText = shortcutText self.actionTable.resizeColumnToContents(1) ./PyPI-Browser-1.5/PyPIBrowser/dialogs.py0000664000175000017500000005635310565427234016311 0ustar neoneo#!/usr/bin/env python """ dialogs.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ from actioneditor import ActionEditorDialog import distutils.command, distutils.util, os, sys, urllib2, urlparse from PyQt4.QtCore import * from PyQt4.QtGui import * from ui_configurationdialog import Ui_ConfigurationDialog from ui_downloaddialog import Ui_DownloadDialog from ui_informationwindow import Ui_InformationWindow from delegates import ProgressDelegate from packagemodel import PackageModel import desktop class ConfigurationDialog(QDialog, Ui_ConfigurationDialog): """ConfigurationDialog(QDialog, Ui_ConfigurationDialog) Provides a configuration dialog with basic functionality for changing settings used by various components of the browser. """ def __init__(self, settings, parent = None): QDialog.__init__(self, parent) self.setupUi(self) self.settings = settings self.setPythonPlaceholders() directory = self.settings.value("Download directory") self.setDownloadDirectory(directory) self.getPackagePreferences() self.setPackagePreferences() self.getPackageIndex() self.connect(self.packageIndexLineEdit, SIGNAL("textChanged(const QString &)"), self.validatePackageIndex) self.connect(self.downloadButton, SIGNAL("clicked()"), self.getDownloadDirectory) self.connect(self.preferencesList, SIGNAL("itemSelectionChanged()"), self.updatePreferencesButtons) self.connect(self.upButton, SIGNAL("clicked()"), self.movePreferenceUp) self.connect(self.downButton, SIGNAL("clicked()"), self.movePreferenceDown) self.connect(self.hideButton, SIGNAL("clicked()"), self.hidePreference) self.connect(self.systemPathsList, SIGNAL("itemActivated(QListWidgetItem *)"), self.openSystemPath) def getDownloadDirectory(self): """getDownloadDirectory(self) Ask the user to specify an existing directory using a standard file dialog for the browser to use when saving downloaded packages. If the new directory path is not valid, the current directory is retained. """ path = QFileDialog.getExistingDirectory(self, self.tr("Choose Download Directory")) if not path.isNull(): self.setDownloadDirectory(path) def getPackageIndex(self): packageIndex = self.settings.value("Package index") if packageIndex.isValid(): self.packageIndexLineEdit.setText(packageIndex.toString()) else: self.packageIndexLineEdit.setText(u"http://cheeseshop.python.org/pypi") self.packageIndexLineEdit.setCursorPosition(0) def getPackagePreferences(self): preferences = self.settings.value("Package preferences") if preferences.isValid(): commands = preferences.toStringList() else: commands = filter(lambda command: command.find("dist") != -1, distutils.command.__all__) commands.insert(0, "default") for command in commands: if u"|" in command: text, state = unicode(command).split(u"|") else: text = command state = u"E" item = QListWidgetItem(self.preferencesList) item.setText(text) if state == u"H": item.setFlags(item.flags() ^ Qt.ItemIsEnabled) def movePreferenceUp(self): item = self.preferencesList.selectedItems()[0] row = self.preferencesList.row(item) if row > 0: item = self.preferencesList.takeItem(row) self.preferencesList.insertItem(row - 1, item) self.preferencesList.setCurrentRow(row - 1) def movePreferenceDown(self): item = self.preferencesList.selectedItems()[0] row = self.preferencesList.row(item) if row < self.preferencesList.count() - 1: item = self.preferencesList.takeItem(row) self.preferencesList.insertItem(row + 1, item) self.preferencesList.setCurrentRow(row + 1) def hidePreference(self): item = self.preferencesList.selectedItems()[0] row = self.preferencesList.row(item) item.setFlags(item.flags() ^ Qt.ItemIsEnabled) self.updatePreferencesButtons() def openSystemPath(self, item): desktop.open(unicode(item.text())) def saveSettings(self): self.settings.setValue("Download directory", QVariant(self.downloadLineEdit.text())) self.setPackagePreferences() self.setPackageIndex() def setDownloadDirectory(self, directory): """setDownloadDirectory(self, directory) Sets the directory used by the browser to hold downloaded packages and updates the relevant field in the dialog. The directory must be specified using either a string or a QVariant that holds a string. If the directory is not valid, the field in the dialog is disabled, indicating that package downloading is disabled. """ if isinstance(directory, QVariant): directory = directory.toString() if directory.isNull(): self.downloadLineEdit.setEnabled(False) else: self.downloadLineEdit.setEnabled(True) self.downloadLineEdit.setText(directory) self.downloadLineEdit.setCursorPosition(0) def setPackageIndex(self): url = self.packageIndexLineEdit.text() if self.validateURL(url): self.settings.setValue("Package index", QVariant(url)) def setPackagePreferences(self): commands = [] for row in range(self.preferencesList.count()): item = self.preferencesList.item(row) text = unicode(item.text()) if item.flags() & Qt.ItemIsEnabled: state = u"E" else: state = u"H" commands.append(u"|".join((text, state))) self.settings.setValue("Package preferences", QVariant(commands)) def setPythonPlaceholders(self): self.versionPlaceholder.setText( self.tr("%1.%2.%3").arg(sys.version_info[0]).arg( sys.version_info[1]).arg(sys.version_info[2])) self.platformPlaceholder.setText(distutils.util.get_platform()) for path in sys.path: item = QListWidgetItem(self.systemPathsList) item.setText(path) def updatePreferencesButtons(self): enable = len(self.preferencesList.selectedItems()) > 0 self.upButton.setEnabled(enable) self.downButton.setEnabled(enable) self.hideButton.setEnabled(enable) if enable: item = self.preferencesList.selectedItems()[0] if item.flags() & Qt.ItemIsEnabled: self.hideButton.setText(self.tr("&Hide")) else: self.hideButton.setText(self.tr("S&how")) def validateURL(self, text): pieces = filter(lambda piece: piece.strip() != u"", urlparse.urlsplit(unicode(text))[:2]) return len(pieces) == 2 def validatePackageIndex(self, text): palette = self.packageIndexLineEdit.palette() if not self.validateURL(text): palette.setColor(QPalette.Text, Qt.red) palette.setColor(QPalette.Base, Qt.white) else: palette.setColor(QPalette.Text, QPalette().color(QPalette.Text)) palette.setColor(QPalette.Base, QPalette().color(QPalette.Base)) self.packageIndexLineEdit.setPalette(palette) class DownloadDialog(QDialog, Ui_DownloadDialog): """DownloadDialog(QDialog, Ui_DownloadDialog) Provides a dialog that shows the progress of a series of download operations. Each package file that is successfully (or partially) downloaded is stored in a directory defined in the settings object specified when the dialog is created. """ def __init__(self, settings, parent = None): QDialog.__init__(self, parent) self.setupUi(self) QMetaObject.connectSlotsByName(self) self.settings = settings self.stopped = False self.treeWidget.setColumnCount(3) self.treeWidget.setHeaderLabels( QStringList() << self.tr("Name") << self.tr("File name") << self.tr("Progress") ) delegate = ProgressDelegate(self) self.treeWidget.setItemDelegate(delegate) self.treeWidget.setMouseTracking(True) self.treeWidget.mouseMoveEvent = self._mouseMoveEvent font = QFont() font.setUnderline(True) self.linkFont = QVariant(font) self.connect(self.stopButton, SIGNAL("clicked()"), self.stopDownload) self.connect(self.openDirButton, SIGNAL("clicked()"), self.openDirectory) self.connect(self.treeWidget, SIGNAL("itemEntered(QTreeWidgetItem *, int)"), self.changeCursor) self.connect(self.treeWidget, SIGNAL("itemClicked(QTreeWidgetItem *, int)"), self.launchBrowser) def _mouseMoveEvent(self, event): item = self.treeWidget.itemAt(event.pos()) if not item: self.treeWidget.unsetCursor() QTreeWidget.mouseMoveEvent(self.treeWidget, event) def changeCursor(self, item, column): if column == 1 and item.data(column, Qt.UserRole+1).isValid(): self.treeWidget.setCursor(Qt.PointingHandCursor) else: self.treeWidget.unsetCursor() def downloadPackage(self, item, directory, download_urls, completed, packages): for url in download_urls: try: path = urllib2.urlparse.urlsplit(url)[2] filename = path.split("/")[-1] savePath = os.path.join(directory, filename) item.setText(1, filename) f = open(savePath, "wb") u = urllib2.urlopen(url) info = u.info() length = int(info.getheader("Content-length")) digits = len("%i" % length) total = 0 while True: bytes = u.read(4096) read = len(bytes) f.write(bytes) total += read if QT_VERSION & 0xffff00 < 0x40200: text = self.tr("%1/%2 byte(s) (%3%)", "Total number of bytes") else: text = self.tr("%1/%2 byte(s) (%3%)", "Total number of bytes", length) item.setText(2, text.arg(total, digits).arg(length) .arg(int(100*float(total)/length))) item.setData(2, Qt.UserRole, QVariant(100*float(total)/length)) self.progressBar.setValue(100*(float(completed) + float(total)/length)/packages) qApp.processEvents() if read < 4096 or self.stopped: break u.close() f.close() if self.stopped and total < length: # Remove the file if it was only partially downloaded. os.remove(savePath) # We successfully downloaded a package, or the download was # stopped, so break out of the loop. break except: # Try the next URL in the list. pass else: # All URLs were tried, but none could be used to obtain a package. return False return True def execute(self, packages): """execute(self, packages) Download each of the packages in a list to a directory specified in the application's settings. If no suitable download directory is defined in the settings, the method returns immediately. The event loop is run periodically, enabling the progress of the download operation to be reporting and allowing the user to cancel the operation if required. """ if not self.settings.value("Download directory").isValid(): return if not self.settings.value("Package preferences").isValid(): return directory = unicode(self.settings.value("Download directory").toString()) if not os.path.isdir(directory): return self.startDownload() qApp.processEvents() # Compile a dictionary of hidden package types from the package # preferences. hidden = {} ordered = [] for command in self.settings.value("Package preferences").toStringList(): text, state = unicode(command).split(u"|") if state == u"H": hidden[text] = None else: ordered.append(text) completed = 0 for name, version, release_urls, home_url in packages: item = QTreeWidgetItem(self.treeWidget) item.setText(0, name) item.setText(2, self.tr("Fetching...")) item.setData(2, Qt.UserRole, QVariant(0)) item.setFlags(Qt.ItemIsEnabled) qApp.processEvents() download_urls = {} for i in range(0, len(release_urls), 4): release_url = {} release_url[release_urls[i]] = release_urls[i+1] release_url[release_urls[i+2]] = release_urls[i+3] if release_url[u"packagetype"] not in hidden: download_urls[release_url[u"packagetype"]] = release_url[u"url"] if download_urls: # Create an ordered list of URLs by filtering the ordered list # to include only keys that are available in the dictionary # supplied for this package, then use those keys to access the # dictionary. ordered_urls = map(lambda k: download_urls[k], filter(lambda k: k in download_urls, ordered)) downloaded = self.downloadPackage(item, directory, ordered_urls, completed, len(packages)) else: downloaded = False if not downloaded: if not home_url or not urlparse.urlsplit(home_url)[0]: item.setText(2, self.tr("Failed")) else: item.setText(2, home_url) item.setData(2, Qt.UserRole, QVariant()) item.setData(2, Qt.UserRole+1, QVariant(home_url)) item.setData(2, Qt.FontRole, self.linkFont) completed += 1 self.progressBar.setValue(100*float(completed)/len(packages)) if self.stopped: break self.stopDownload() def launchBrowser(self, item, column): if column == 1: variant = item.data(column, Qt.UserRole+1) if variant.isValid(): home_url = unicode(variant.toString()) desktop.open(home_url) def startDownload(self): """startDownload(self) Prepares the user interface for use during a download operation. """ self.stopped = False self.stopButton.setEnabled(True) self.closeButton.setEnabled(False) self.treeWidget.clear() def openDirectory(self): desktop.open(unicode(self.settings.value("Download directory").toString())) def stopDownload(self): """stopDownload(self) Resets the user interface after a download operation. """ self.stopped = True self.stopButton.setEnabled(False) self.closeButton.setEnabled(True) def reject(self): """reject(self) Stops any current download operation and rejects the dialog in the standard way. """ self.stopDownload() QDialog.reject(self) class InformationWindow(QWidget, Ui_InformationWindow): releaseFieldColumns = (1, 4, 2, 3, 5, 6, 7, 8, 10, 11) def __init__(self, parent = None): QWidget.__init__(self, parent) self.setupUi(self) self.connect(self.textBrowser, SIGNAL("anchorClicked(const QUrl &)"), self.openURL) self.connect(self.closeAction, SIGNAL("triggered()"), self.close) self.addAction(self.closeAction) self.textCharFormat = QTextCharFormat() self.textCharFormat.setFont(QFont()) self.textBlockFormat = QTextBlockFormat() self.textBlockFormat.setAlignment(Qt.AlignJustify) self.titleCharFormat = QTextCharFormat(self.textCharFormat) self.titleCharFormat.setFontWeight(QFont.Bold) self.titleCharFormat.setFontPointSize(self.titleCharFormat.fontPointSize()*2) self.titleBlockFormat = QTextBlockFormat() self.titleBlockFormat.setAlignment(Qt.AlignHCenter) self.subtitleCharFormat = QTextCharFormat(self.titleCharFormat) self.subtitleCharFormat.setFontPointSize(self.subtitleCharFormat.fontPointSize()*0.8) self.tableHeaderFormat = QTextCharFormat(self.textCharFormat) self.tableHeaderFormat.setFontWeight(QFont.Bold) self.anchorCharFormat = QTextCharFormat(self.textCharFormat) self.anchorCharFormat.setForeground(QBrush(Qt.blue)) self.anchorCharFormat.setFontUnderline(True) self.releaseTableFormat = QTextTableFormat() self.releaseTableFormat.setAlignment(Qt.AlignLeft) self.releaseTableFormat.setBorder(0) self.releaseTableFormat.setCellSpacing(0) self.releaseTableFormat.setCellPadding(4) self.releaseTableFormat.setColumnWidthConstraints( [QTextLength(QTextLength.PercentageLength, 20), QTextLength(QTextLength.PercentageLength, 80)]) self.markedReleaseFrameFormat = QTextFrameFormat() self.markedReleaseFrameFormat.setBackground(QBrush(QColor(238,224,224))) self.currentReleaseFrameFormat = QTextFrameFormat() self.currentReleaseFrameFormat.setBackground(QBrush(QColor(224,224,238))) self.currentReleaseFrameFormat.setBorder(1) self.evenRowBlockFormat = QTextBlockFormat() self.evenRowBlockFormat.setBackground(QBrush(QColor(238,238,238))) self.oddRowBlockFormat = QTextBlockFormat() self.oddRowBlockFormat.setBackground(QBrush(QColor(224,224,224))) def closeEvent(self, event): event.accept() self.emit(SIGNAL("closed()")) def openURL(self, url): desktop.open(unicode(url.toString())) self.textBrowser.setSource(QUrl()) def setPackageInfo(self, index, releaseIndex = None): cursor = self.textBrowser.textCursor() cursor.insertBlock(self.titleBlockFormat) cursor.insertText(index.data().toString(), self.titleCharFormat) self.setWindowTitle(self.tr("Information about %1").arg(index.data().toString())) for row in range(index.model().rowCount(index)): version = index.child(row, 0).data().toString() cursor.insertBlock(self.textBlockFormat) cursor.insertText(version, self.subtitleCharFormat) topLevelCursor = QTextCursor(cursor) checkState, valid = index.child(row, 0).data(Qt.CheckStateRole).toInt() if valid and checkState == Qt.Checked: frame = cursor.insertFrame(self.markedReleaseFrameFormat) elif releaseIndex and releaseIndex.row() == row: frame = cursor.insertFrame(self.currentReleaseFrameFormat) else: frame = cursor.insertFrame(QTextFrameFormat()) table = cursor.insertTable(len(self.releaseFieldColumns), 2, self.releaseTableFormat) tableRow = 0 rowFormats = [self.evenRowBlockFormat, self.oddRowBlockFormat] for column in self.releaseFieldColumns: #rowFormat = rowFormats[tableRow % 2] fieldName = index.model().headerData(column, Qt.Horizontal, Qt.DisplayRole).toString() cell = table.cellAt(tableRow, 0) cursor = cell.firstCursorPosition() #cursor.setBlockFormat(rowFormat) cursor.insertText(fieldName, self.tableHeaderFormat) fieldValue = index.child(row, column).data().toString() cell = table.cellAt(tableRow, 1) cursor = cell.firstCursorPosition() #cursor.setBlockFormat(rowFormat) cursor.insertText(fieldValue) tableRow += 1 # Add home page and download information. homePage = index.child(row, 9).data().toString() homePageURL = index.child(row, 0).data(PackageModel.HomePageRole) homePageHeader = index.model().headerData(9, Qt.Horizontal, Qt.DisplayRole).toString() if homePageURL.isValid(): table.insertRows(table.rows(), 1) cell = table.cellAt(table.rows()-1, 0) cursor = cell.firstCursorPosition() cursor.insertText(homePageHeader, self.tableHeaderFormat) cell = table.cellAt(table.rows()-1, 1) cursor = cell.firstCursorPosition() anchorFormat = QTextCharFormat(self.anchorCharFormat) anchorFormat.setAnchorHref(homePageURL.toString()) anchorFormat.setAnchor(True) cursor.insertText(homePage, anchorFormat) cursor = topLevelCursor cursor.movePosition(QTextCursor.End) ./PyPI-Browser-1.5/README.txt0000664000175000017500000000143410477125676013623 0ustar neoneoIntroduction ------------ PyPI Browser is a graphical user interface (GUI) browser for the Python Package Index (PyPI) that aims to make it easier for users to find and download useful Python software from a central repository. It provides facilities for searching the package index, can display information about individual packages, allows packages to be marked so that they can be downloaded together, and records information about existing packages so that new ones can be highlighted. Installation ------------ To install the browser, run the setup.py script in a console with the appropriate privileges by typing python setup.py install Once installed, it should be possible to run the browser by typing pypibrowser.py in a console, or by launching the file from a file manager. ./PyPI-Browser-1.5/pypibrowser.py0000664000175000017500000000250610553010270015037 0ustar neoneo#!/usr/bin/env python """ pypibrowser.py Copyright (C) 2006 David Boddie This file is part of PyPI Browser, a GUI browser for the Python Package Index. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ import sys from PyQt4.QtCore import QString, QLocale, QTranslator from PyQt4.QtGui import QApplication from PyPIBrowser.window import Window from PyPIBrowser import pypi_resources if __name__ == "__main__": app = QApplication(sys.argv) translator = QTranslator() locale = QLocale.system().name().toLower() translator.load(QString(":/translations/pypibrowser_%1.qm").arg(locale)) app.installTranslator(translator) window = Window() window.show() sys.exit(app.exec_()) ./PyPI-Browser-1.5/COPYING0000664000175000017500000004310310456174500013142 0ustar neoneo GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser General Public License instead of this License. ./PyPI-Browser-1.5/MANIFEST0000664000175000017500000000154710510040754013240 0ustar neoneoChangeLog COPYING MANIFEST README.txt PyPIBrowser/__init__.py PyPIBrowser/actioneditor.py PyPIBrowser/configurationdialog.ui PyPIBrowser/constants.py PyPIBrowser/delegates.py PyPIBrowser/desktop.py PyPIBrowser/dialogs.py PyPIBrowser/downloaddialog.ui PyPIBrowser/informationwindow.ui PyPIBrowser/packagemodel.py PyPIBrowser/pypi.py PyPIBrowser/pypi_resources.py PyPIBrowser/pypi_resources.qrc PyPIBrowser/searchmodel.py PyPIBrowser/ui_configurationdialog.py PyPIBrowser/ui_downloaddialog.py PyPIBrowser/ui_informationwindow.py PyPIBrowser/ui_window.py PyPIBrowser/window.py PyPIBrowser/window.ui PyPIBrowser/Documents/Manual.txt PyPIBrowser/Documents/Manual.html PyPIBrowser/translations/pypibrowser_en_gb.qm PyPIBrowser/translations/pypibrowser_en_gb.ts PyPIBrowser/translations/pypibrowser_en_us.qm PyPIBrowser/translations/pypibrowser_en_us.ts pypibrowser.py setup.py ./PyPI-Browser-1.5/PKG-INFO0000664000175000017500000000077010565430336013212 0ustar neoneoMetadata-Version: 1.0 Name: PyPI-Browser Version: 1.5 Summary: A GUI browser for the Python Package Index Home-page: http://www.boddie.org.uk/david/Projects/Python/PyPI-Browser/ Author: David Boddie Author-email: david@boddie.org.uk License: UNKNOWN Download-URL: http://cheeseshop.python.org/packages/source/P/PyPI-Browser/PyPI-Browser-1.5.zip Description: PyPI Browser is a PyQt4-based GUI browser for the Python Package Index that retrieves package information an XML-RPC interface. Platform: UNKNOWN ./PyPI-Browser-1.5/ChangeLog0000664000175000017500000002136710565430276013677 0ustar neoneoVersion history: 1.5 (2007-02-16) Limited use of the plural form of tr() when the available version of Qt is less than 4.2. 1.4 (2007-01-16) Added support for plural forms in translations, supported by the new facilities in Qt 4.2. Improved the resize behaviour of columns in the tree view by resizing them only when making a query or expanding a package node to view the associated list of releases. Fixed incorrect handling of unexpected release information caused by the introduction of new fields in responses from the XML-RPC server. 1.3 (2006-09-12) Updated the action editor to show underlined characters. The manual is now installed in a subdirectory of the package so that it can be found more easily at run-time. 1.2 (2006-08-20) Added a simple action editor based on the one described in Qt Quarterly 14 (see http://doc.trolltech.com/qq/qq14-actioneditor.html for more information). 1.1 (2006-08-02) Moved files into a package directory. Put progress information in the correct column in the download dialog. Fixed potential errors with styled painting in the ProgressDelegate. 1.0 (2006-07-31) Added basic documentation. Added signals to the package model to allow it to indicate when blocking operations are in progress. The window shows the wait cursor during blocking operations. Ensured that the search model is cleared when a new package index is opened. Put the wait cursor related connections for the package model in the correct place, adding appropriate ones for the search model at the same time. The search model now requests the wait cursor when a search has been started. Add information about the desktop module to the about dialog. Added an Open Manual item to the Help menu that opens the README.html file in the user's web browser. Added more information about the Python interpreter to the configuration dialog. 0.9 (2006-07-25) Merged the release_urls and download_url so that packages that are available are shown and can be downloaded. Doing this in the pypi module ensures that it is handled consistently at higher levels. Handle application exiting more consistently, closing all other windows when the main window is closed. Remove incompletely downloaded files when the download process is stopped. Added configuration support for the package index URL. Double-clicking is better than clicking for opening information windows. 0.8 (2006-07-24) More configuration options, better window handling on exit, better handling of stopped downloads. Moved the checks for valid download URLs into the Description class in the PyPI communication module and changed the package and search modules so that the release information for packages can reflect whether a package can be downloaded or not. Releases with download URLs have checkboxes. Note that we not only need to provide the correct flags in the search model for release items, but we also need to return invalid variants in the data() method for those that don't have associated download URLs. It seems that returning the appropriate flags for items is not enough. As suggested by Paul, check for more comprehensive download information by using the XML-RPC package_urls() method to obtain a list of URLs rather than rely on the incomplete information supplied in the "download_url" key of the dictionary returned by release_data(). Restrict the number of columns in the search model not in the package model. Added a window to show information about packages and releases. Moved the configuration dialog into the dialogs module. Allow the types of preferred packages to be specified in the configuration dialog. The download dialog was updated to try to download packages of the allowed types in the order specified by the user. Don't modify a Description's meta-data if the specified value is None. Merge download_url information into the release_urls entry in the meta-data for each Description. This enables us to fall back to the "default" download URL if the package doesn't have release URLs. 0.6 (2006-07-19) No longer rely on certain field names to be supplied from a combobox when setting the field name for a search. Hopefully, this will make the application more translation-aware. Added help menu entries and message boxes. Added support for opening home page URLs and HTML download URLs using Paul's desktop module. Short circuit download URLs that look like they refer to web pages or other user-readable resources. 0.5 (2006-07-18) Moved the version information into a new constants module and added Paul's desktop module. The package model now saves the list of packages to the application's settings when exiting so that it can be used to determine which packages are new the next time the same index is opened. Moved the code to change the appearance of new package items from the package model to the search model. The settings loading and saving methods remain in the package model because the information is more useful there. The package names are now encoded as UTF-8 and base64 encoded before begin saved to the settings file. This avoids problems with case-insensitivity that would cause names that differ only in case from an existing name to be omitted from the settings file. Added a filter new menu item to the main window and connected it to an additional slot in the search model. 0.4 (2006-07-16) Reverted the unnecessary change to avoid problems fixed in the previous commit where the package list was loaded when the package model was created instead of when its top-level row count was requested. Fixed a bug where opening an index when the search model contained some internal state left the view with old persistent indexes. We call reset() instead of clear() on the search model before changing the underlying model in openIndex(). Added documentation. 0.3 (2006-07-15) Added license information and moved version and application details into the setup.py file. Added persistent package and release marking, a configuration dialog and downloading to a user-specified directory. Added a clear() method to the search model that clears the internal dictionaries and resets the model to inform views that the model has changed. This is called when we reload the list of packages from the current package index. Moved the check state handling from the package model into the search model. Record package versions instead of row numbers in the search model. The search model's internal data is also cleared when a new model is opened. Fixed the marked() method in the Window class to work with a changed dictionary of marked packages in the search model. Now, the packages themselves are used as keys into the dictionary. Added a configuration dialog so that the installation directory can be set. Reverted the change that used packages as keys into the marked packages directionary as the packages become invalid if the index is re-read. The marked package dictionary now contains a reference to each package as well as a dictionary containing marked releases for each package name key. Update the progress bar during file transfers as well as after each one. 0.2 (2006-07-14) Added filtering of marked items. Refactored the main window's interaction with the search model. The model now reports how many matches it found, requiring the field map to be moved into it to ensure that the correct user-visible field names are used. We also listen for signals from the underlying in order to be able to know at any point whether there are any marked packages. This enables the download menu item to be correctly enabled or disabled. 0.1 (2006-07-12) Initial creation of a working PyPI XML-RPC convenience class and model. Added version information and files for distutils. Added more user interface features, but fetching package information is too slow. Added support for package downloading with an interactive dialog. Added a method to reset the interface so that the dialog can be reused. Added a Stop button and made Stop/Close button behavior consistent. Added a search facility by placing a filtering proxy model between the view and the package model. When a search occurs, the XML-RPC server is asked for a list of matching packages, and these names are used to filter the existing list of packages. Any existing information about these is also augmented by the results of the search. Note that the proxy model needs to be cleared and reset after each search. The clear() call ensures that existing mappings are removed; the reset() call ensures that the view clears any information about open branches. Added a sanity check for suitable servers in the open connection dialog (we try to download a list of classifiers). Maybe a more specific check for XML-RPC capabilities would be better. Added better exception handling for xmlrpclib exceptions in the PackageServer class and improved the user interface slightly. Added a simple test server.