././@PaxHeader 0000000 0000000 0000000 00000000034 00000000000 010212 x ustar 00 28 mtime=1722935059.1807055
guidata-3.6.2/ 0000755 0001751 0000177 00000000000 14654363423 012557 5 ustar 00runner docker ././@PaxHeader 0000000 0000000 0000000 00000000026 00000000000 010213 x ustar 00 22 mtime=1722935054.0
guidata-3.6.2/CHANGELOG.md 0000644 0001751 0000177 00000111225 14654363416 014374 0 ustar 00runner docker # Changelog #
## Version 3.6.2 ##
In this release, test coverage is 74%.
ЁЯЫая╕П Bug fixes:
* Light/dark theme support:
* Fix default color mode issues
* Color theme test: allow to derive from, so that the test may be completed by other widgets
## Version 3.6.1 ##
In this release, test coverage is 74%.
ЁЯЫая╕П Bug fixes:
* Light/dark theme support:
* Auto light/dark theme: quering OS setting only once, or each time the `set_color_mode('auto')` function is called
* Fix console widget color theme: existing text in console widget was not updated when changing color theme
* Fixed issue with dark theme on Windows: the windows title bar background was not updated when the theme was changed from dark to light (the inverse was working) - this is now fixed in `guidata.qthelpers.win32_fix_title_bar_background` function
* Added `guidata.qthelpers.set_color_mode` function to set the color mode ('dark', 'light' or 'auto' for system default)
* Added `guidata.qthelpers.get_color_mode` function to get the current color mode ('dark', 'light' or 'auto' for system default)
* Added `guidata.qthelpers.get_color_theme` function to get the current color theme ('dark' or 'light')
* Added `guidata.qthelpers.get_background_color` function to get the current background `QColor` associated with the current color theme
* Added `guidata.qthelpers.get_foreground_color` function to get the current foreground `QColor` associated with the current color theme
* Added `guidata.qthelpers.is_dark_theme` function to check if the current theme is dark)
* As a consequence, `guidata.qthelpers.is_dark_mode` and `guidata.qthelpers.set_dark_mode` functions are deprecated, respectively in favor of `guidata.qthelpers.is_dark_theme` and `guidata.qthelpers.set_color_mode`
## Version 3.6.0 ##
In this release, test coverage is 74%.
ЁЯТе New features:
* Improved dark/light mode theme update:
* The theme mode may be changed during the application lifetime
* Added methods `update_color_mode` on `CodeEditor` and `ConsoleBaseWidget` widgets
## Version 3.5.3 ##
In this release, test coverage is 74%.
ЁЯЫая╕П Bug fixes:
* Configuration initialization on Windows:
* For various reasons, a `PermissionError` exception may be raised when trying to remove the configuration file on Windows, just after having created it for the first time. This is due to the fact that the file is still locked by the file system, even if the file has been closed. This is a known issue with Windows file system, and the solution is to wait a little bit before trying to remove the file.
* To fix this issue, a new `try_remove_file` function has been added to the `userconfig` module, which tries multiple times to remove the file before raising an exception.
* Moved back `conftest.py` to the `tests` folder (was in the root folder), so that `pytest` can be executed with proper configuration when running the test suite from the installed package
## Version 3.5.2 ##
In this release, test coverage is 74%.
ЁЯЫая╕П Bug fixes:
* Add support for NumPy 2.0:
* Use `numpy.asarray` instead of `numpy.array(..., copy=False)`
* Remove deprecated `numpy.core.multiarray` module import
## Version 3.5.1 ##
In this release, test coverage is 74%.
ЁЯЫая╕П Bug fixes:
* [PR #74](https://github.com/PlotPyStack/guidata/pull/74) - `configtools.font_is_installed`: fix PySide2 compat. issue (thanks to @xiaodaxia-2008)
* Creating a dataset using the `create` class method:
* Before, passing unknown keyword arguments failed silently (e.g. `MyParameters.create(unknown=42)`).
* Now, an `AttributeError` exception is raised when passing unknown keyword arguments, as expected.
* Processing Qt event loop in unattended mode before closing widgets and quitting the
application, so that all pending events are processed before quitting: this includes
for instance the drawing events of widgets, which may be necessary to avoid a crash
when closing the application (e.g. if drawing the widget is required for some
reason before closing it) or at least to ensure that test coverage includes all
possible code paths.
тД╣я╕П Other changes:
* Preparing for NumPy V2 compatibility: this is a work in progress, as NumPy V2 is not
yet released. In the meantime, requirements have been updated to exclude NumPy V2.
* Internal package reorganization: moved icons to `guidata/data/icons` folder
* The `delay` command line option for environment execution object `execenv` is now
expressed in milliseconds (before it was in seconds), for practical reasons
* Explicitely exclude NumPy V2 from the dependencies (not compatible yet)
## Version 3.5.0 ##
In this release, test coverage is 74%.
ЁЯТе New features:
* New Sphinx autodoc extension:
* Allows to document dataset classes and functions using Sphinx directives, thus generating a comprehensive documentation for datasets with labels, descriptions, default values, etc.
* The extension is available in the `guidata.dataset.autodoc` module
* Directives:
* `autodataset`: document a dataset class
* `autodataset_create`: document a dataset creation function
* `datasetnote`: add a note explaining how to use a dataset
* `BoolItem`/`TextItem`: add support for callbacks when the item value changes
ЁЯЫая╕П Bug fixes:
* Documentation generation: automatic requirement table generation feature was failing
when using version conditions in the `pyproject.toml` file (e.g. `pyqt5 >= 5.15`).
* [Issue #72](https://github.com/PlotPyStack/guidata/issues/72) - unit test leave files during the build usr/lib/python3/dist-packages/test.json
* [Issue #73](https://github.com/PlotPyStack/guidata/issues/73) - `ChoiceItem` radio buttons are duplicated when using callbacks
## Version 3.4.1 ##
In this release, test coverage is 76%.
ЁЯЫая╕П Bug fixes:
* [Issue #71](https://github.com/PlotPyStack/guidata/issues/71) - Random segmentation faults with applications embedding `CodeEditor`
* [Issue #70](https://github.com/PlotPyStack/guidata/issues/70) - PermissionError: [Errno 13] Permission denied: '/usr/lib/python3/dist-packages/guidata/tests/data/genreqs/requirements.rst'
## Version 3.4.0 ##
In this release, test coverage is 76%.
ЁЯТе New features:
* `dataset.io.h5fmt.HDF5Reader.read` method: added new `default` argument to set
default value for missing data in the HDF5 file (backward compatible). The default
value of `default` is `NoDefault` (a special value to indicate that no default value
should be used, and that an exception should be raised if the data is missing).
* `widgets.codeeditor.CodeEditor`: added new `inactivity_timeout` argument to set
the time (in milliseconds) to wait after the user has stopped typing before
emitting the `CodeEditor.SIG_EDIT_STOPPED` signal.
* Added `execenv.accept_dialogs` attribute to control whether dialogs should be
automatically accepted or not (default is `None`, meaning no automatic acceptance):
this allows more coverage of the test suite. For now, this attribute has only been
proven useful in `tests/dataset/test_all_features.py`.
* Added unit tests for HDF5 and JSON serialization/deserialization:
* Testing an arbitrary data model saved/loaded to/from HDF5 and JSON files,
with various data sets and other data types.
* Testing for backward compatibility with previous versions of the data model
(e.g. new attributes, removed attributes, etc.)
тЪая╕П API breaking changes:
* `guidata.dataset.io` module is now deprecated and will be removed in a future
release. Please use `guidata.io` instead. This change is backward compatible
(the old module is still available and will be removed in a future release).
The motivation for this change is to simplify the module structure and to help
understand that the scope of the `io` module is not limited to `dataset.DataSet`
objects, but may be used for any kind of data serialization/deserialization.
ЁЯУЦ Documentation:
* Added missing `DataSetEditDialog` and `DataSetEditLayout` classes
* Added missing inheritance/member details on some classes
* Reduced table of contents depth in left sidebar for better readability
## Version 3.3.0 ##
In this release, test coverage is 72%.
ЁЯТе New features:
* Array editor now supports row/column insertion/deletion:
* Added `variable_size` argument to `setup_and_check` method
* The feature is disabled by default (backward compatible)
* It supports standard arrays, masked arrays, record arrays and N-dimensional arrays
* New dataset read-only mode:
* Added `readonly` argument to `DataSet` constructor
* This is useful to create a dataset that will be displayed in read-only mode
(e.g. string editing widgets will be in read-only mode: text will be selectable
but not editable)
* The items remain modifiable programmatically (e.g. `dataset.item = 42`)
* New dataset group edit mode:
* Added `mode` argument to `DataSetGroup.edit` method, with the following options:
* `mode='tabs'` (default): each dataset is displayed in a separate tab
* `mode='table'`: all datasets are displayed in a single table
* In the new table mode, the datasets are displayed in a single table with
one row per dataset and one column per item
* Clicking on a row will display the corresponding dataset in a modal dialog box
ЁЯЫая╕П Bug fixes:
* Qt console:
* Fixed `RuntimeError: wrapped C/C++ object of type DockableConsole has been deleted`
when closing the console widget (parent widget, e.g. a `QMainWindow`, was deleted)
while an output stream is still writing to the console (e.g. a `logging` handler
which will flush the output stream when closing the application)
* This concerns all console-related widgets: `DockableConsole`, `Console`,
`InternalShell`, `PythonShellWidget` and `ShellBaseWidget`
* Code editor: fixed compatibility issue with PySide6
(`AttributeError: 'QFont' object has no attribute 'Bold'`)
## Version 3.2.2 ##
ЁЯЫая╕П Bug fixes:
* Fixed translation support (`gettext`):
* Locale detection has been fixed in 3.1.1 (deprecation of `locale.getdefaultlocale`)
* However, on frozen distributions on Windows (e.g. with `pyinstaller`), function
`locale.getlocale` is returning `(None, None)` instead of proper locale infos
* Added a workaround: on Windows, if locale can't be detected, we now use the
Windows API to retrieve it (using the `GetUserDefaultLocaleName` function)
* [Issue #68](https://github.com/PlotPyStack/guidata/issues/68) - Windows: gettext translation is not working on frozen applications
* Embedded Qt console:
* Fixed default encoding detection on frozen applications on Windows
* [Issue #69](https://github.com/PlotPyStack/guidata/issues/69) - Windows/Qt console: output encoding is not detected on frozen applications
## Version 3.2.1 ##
ЁЯЫая╕П Bug fixes:
* Tests only: `qthelpers.close_widgets_and_quit` now ignores deleted widgets
ЁЯТе Changes:
* `dataset.ImageChoiceItem` and `dataset.ButtonItem`: added `size` argument to set the icon size
* `dataset.io` reader and writer classes: removed deprecated `write_unicode` method
## Version 3.2.0 ##
ЁЯЫая╕П Bug fixes:
* [Issue #67](https://github.com/PlotPyStack/guidata/issues/67) - JSONReader/Deserializing object list: TypeError: 'NoneType' object is not subscriptable
ЁЯТе Changes:
* `qthelpers.qt_wait`: added `show_message` and `parent` arguments (backward compatible)
* `qthelpers.qt_app_context`: removed `faulthandler` support (this need to be handled at the application level, see for example [DataLab's implementation](https://github.com/Codra-Ingenierie-Informatique/DataLab/blob/2a7e95477a8dfd827b037b39ef5e045309760dc8/cdlapp/utils/qthelpers.py#L87))
* Disabled command line argument parsing in `guidata.env` module:
* The `guidata` library is parsing command line arguments for the purpose of creating the environment execution object named `execenv` (see `guidata.env` module). This object is used to determine the execution environment mainly for testing purposes: for example, to bypass the Qt event loop when running tests thanks to the `--unattended` command line option.
* However this argument parsing is not always desirable, for example when using `guidata` as a dependency in another library or application. This is why the parsing mechanism is now disabled by default, and may be enabled by setting the environment variable `GUIDATA_PARSE_ARGS` to `1` (or any other non-empty value). As of today, it is still unclear if there will be a need to enable this mechanism in the future, so this is why the environment variable is used instead of a function argument.
* Removed deprecated `guidata.disthelpers` module (we recommend using [PyInstaller](https://www.pyinstaller.org/) instead)
## Version 3.1.1 ##
ЁЯЫая╕П Bug fixes:
* 'Apply' button state is now correctly updated when modifying one of the following items:
* `dataset.MultipleChoiceItem`
* `dataset.dataitems.DictItem`
* `dataset.dataitems.FloatArrayItem`
* Fixed minor deprecation and other issues related to locale
ЁЯТе Changes:
* Removed `--unattended` command line option for `pytest`:
* Before: `pytest --unattended guidata` (to run tests without Qt event loop)
* Now: `pytest guidata` (there is no use case for running tests with Qt event loop,
so the `--unattended` option was removed and the *unattended* mode is now the default)
* Removed CHM documentation (obsolete format)
## Version 3.1.0 ##
тЪа Exceptionally, this release contains the following API breaking changes:
* Moved `utils.update_dataset` to `dataset.conv.update_dataset`
* Moved `utils.restore_dataset` to `dataset.conv.restore_dataset`
тЬФ API simplification (backward compatible):
* Dataset items may now be imported from `guidata.dataset` instead of `guidata.dataset.dataitems`
* Dataset types may now be imported from `guidata.dataset` instead of `guidata.dataset.datatypes`
* Examples:
* `from guidata.dataset.dataitems import FloatItem` becomes `from guidata.dataset import FloatItem`
* `from guidata.dataset.datatypes import DataSet` becomes `from guidata.dataset import DataSet`
* Or you may now write:
```python
import guidata.dataset as gds
class MyParameters(gds.DataSet):
"""My parameters"""
freq = gds.FloatItem("Frequency", default=1.0, min=0.0, nonzero=True)
amp = gds.FloatItem("Amplitude", default=1.0, min=0.0)
```
ЁЯТе New features:
* New `dataset.create_dataset_from_dict`: create a dataset from a dictionary,
using keys and values to create the dataset items
* New `dataset.create_dataset_from_func`: create a dataset from a function signature,
using type annotations and default values to create the dataset items
* `dataset.dataitems.StringItem`:
* Added argument `password` to hide text (useful for passwords)
* Added argument `regexp` to validate text using a regular expression
* `dataset.dataitems.FileSaveItem`, `dataset.dataitems.FileOpenItem`,
`dataset.dataitems.FilesOpenItem` and `dataset.dataitems.DirectoryItem`:
added argument `regexp` to validate file/dir name using a regular expression
* `dataset.dataitems.DictItem`: added support for HDF5 and JSON serialization
* `dataset.io.h5fmt` and `dataset.io.jsonfmt`: added support for lists and dictionnaries serialization
тЩ╗ New PlotPyStack internal features:
* `widgets.about`: handle about dialog box informations (Python, Qt, Qt bindings, ...)
* Renamed development environment variable `GUIDATA_PYTHONEXE` to `PPSTACK_PYTHONEXE`
ЁЯз╣ Bug fixes:
* Fixed Qt6 compatibility issue with `QFontDatabase`
## Version 3.0.6 ##
Bug fixes:
* `widgets.console.interpreter`: replaced threading.Thread.isAlive (deprecated since Python 3.8)
Other changes:
* `DataSet.edit`, `DataSet.view` and `DataSetGroup.edit`: added missing arguments `size` and `wordwrap`
* Documentation: added check-list before submitting a patch (see [`contribute.rst`](https://github.com/PlotPyStack/guidata/blob/master/doc/dev/contribute.rst) file)
* Fixed some typing annotations and docstrings, as well as Pylint false positives
* Removed unused functions from `guidata.utils.encoding` module:
* `transcode`
* `getfilesystemencoding`
* Added missing docstrings and typing annotations in modules:
* `guidata.dataset.qtitemwidgets`
* `guidata.dataset.qtwidgets`
* `guidata.utils.encoding`
* `guidata.utils.misc`
## Version 3.0.5 ##
Bug fixes:
* [Issue #65](https://github.com/PlotPyStack/guidata/issues/65) - QVariant import erroneously used in typing annotations
Other changes:
* `tests.test_callbacks`: added an example of a callback function for dynamically
changing the list of choices of a `ChoiceItem` object
## Version 3.0.4 ##
Bug fixes:
* [Issue #63](https://github.com/PlotPyStack/guidata/issues/63) - [3.0.2] there is no more guidata-test script
* [Issue #62](https://github.com/PlotPyStack/guidata/issues/62) - [3.0.2] sphinx doc hang when building on the Debian infra
Other changes:
* [Issue #64](https://github.com/PlotPyStack/guidata/issues/64) - Add guidata-tests.desktop file to repository
## Version 3.0.3 ##
Fixed project description:
* This could be seen as a detail, but as this description text is used by PyPI,
it is important to have a correct description.
* Of course, nobody reads the description text, so it was not noticed since the
first release of guidata v3.0.
## Version 3.0.2 ##
Bug fixes:
* [Pull Request #61](https://github.com/PlotPyStack/guidata/pull/61) - Make the build reproducible, by [@lamby](https://github.com/lamby)
* [Issue #59](https://github.com/PlotPyStack/guidata/issues/59) - [3.0.1] the doc is missing
* [Issue #60](https://github.com/PlotPyStack/guidata/issues/60) - [3.0.1] pyproject.toml/setuptools: automatic package discovery does not work on debian
## Version 3.0.1 ##
API changes (fixes inconsistencies in API):
* Moved `guidata.dataset.iniio.WriterMixin` to `guidata.dataset.io.WriterMixin`
* Moved `guidata.dataset.iniio.BaseIOHandler` to `guidata.dataset.io.BaseIOHandler`
* Moved `guidata.dataset.iniio` to `guidata.dataset.io.inifmt` and renamed:
* `UserConfigIOHandler` to `INIHandler`
* `UserConfigWriter` to `INIWriter`
* `UserConfigReader` to `INIReader`
* Moved `guidata.dataset.jsonio` to `guidata.dataset.io.jsonfmt`
* Moved `guidata.dataset.hdf5io` to `guidata.dataset.io.h5fmt`
Bug fixes:
* [Issue #57](https://github.com/PlotPyStack/guidata/issues/57) - [Errno 2] No such file or directory: 'doc/dev/v2_to_v3.csv'
* [Issue #58](https://github.com/PlotPyStack/guidata/issues/58) - Test suite: missing dependencies (pandas, Pillow)
* Modules `guidata.dataset.datatypes` and `guidata.dataset.dataitems` should not
critically depend on Qt (only modules specific to GUI should depend on Qt, such
as `guidata.dataset.qtwidgets`). This was a regression introduced in version 3.0.0.
A new unit test was added to prevent this kind of regression in the future.
* Fixed documentation generation `.readthedocs.yaml` file (Qt 5.15 was not
installed on ReadTheDocs servers, causing documentation build to fail)
Other changes:
* [Pull Request #55](https://github.com/PlotPyStack/guidata/pull/55) - DateItem and DateTimeItem: added 'format' parameter for formatting, by [@robochat](https://github.com/robochat)
* Packaging: still using `setuptools`, switched from `setup.cfg` to `pyproject.toml`
for configuration (see [PEP 517](https://www.python.org/dev/peps/pep-0517/))
## Version 3.0.0 ##
New major release:
* New BSD 3-Clause License
* Black code formatting on all Python files
* New automated test suite:
* Added module `guidata.env` to handle execution environment
* Added support for an "unattended" execution mode (Qt loop is bypassed)
* Added support for pytest fixtures
* Added support for coverage testing: 70% coverage to date
* Documentation was entirely rewritten using Sphinx
* Reorganized modules:
* Moved `guidata.hd5io` to `guidata.dataset.hdf5io`
* Moved `guidata.jsonio` to `guidata.dataset.jsonio`
* Renamed `guidata.userconfigio` to `guidata.dataset.iniio`
* New package `guidata.utils` for utility functions:
* Removed deprecated or unused functions in old `guidata.utils` module
* Moved old `guidata.utils` module to `guidata.utils.misc`, except the
functions `update_dataset` and `restore_dataset` which are still in
`guidata.utils` (root module)
* Moved `guidata.encoding` to `guidata.utils.encoding`
* Moved `guidata.gettext_helpers` to `guidata.utils.gettext_helpers`
* Splitted `guidata.qtwidgets` in two modules:
* `guidata.widgets.dockable` for dockable widgets
* `guidata.widgets.rotatedlabel` for rotated label
* Other changes:
* `guidata.guitest`:
* Added support for subpackages
* New comment directive (`# guitest: show`) to add test module to test suite or
to show test module in test launcher (this replaces the old `SHOW = True` line)
* `guidata.dataset.datatypes.DataSet`: new `create` class method for concise
dataset creation, allowing to create a dataset with a single line of code by
passing default item values as keyword arguments
## Older releases ##
### Version 2.3.1 ###
Bug fixes:
* Fixed critical compatibility issue with Python 3.11 (`codeset` argument was removed
from `gettext.translation` function)
* Fixed support for `DateTimeItem` and `DateItem` objects serializing (HDF5 and JSON)
* Fixed JSONReader constructor documentation: more explicit docstring
* Fixed test_dataframeeditor.py test script (issue with QApplication creation)
### Version 2.3.0 ###
Changes:
* Added JSON serialize/deserialize support for `DataSet` objects (from CodraFT project,
)
* Array editor: switching to read-only mode when array is not writeable
* Object editor (`oedit` function): cleaner implementation, handling widget
parenting (code specifically related to Spyder internal shell was removed)
Bug fixes:
* Array editor: fixed error when NumPy array flag "writeable" is False,
do not try to change flag value since it's a deprecated feature since NumPy v1.17
* Do not install Qt translator and set color mode (dark/light) on Qt application if
it already has been initialized (QApplication instance is not None)
### Version 2.2.1 ###
Bug fixes:
* Collection editor: fixed "Save array" feature
* Console widget context menu: added missing icons
### Version 2.2.0 ###
Changes:
* FloatArrayItem: added data type information on associated widget
* guitest.TestModule.run: added timeout argument to wait for process termination
Bug fixes:
* FloatArrayItem: avoid RuntimeWarning when dealing with complex data
* external/darkdetect: fixed compatibility issue with Windows Server 2008 R2
### Version 2.1.1 ###
Bug fixes:
* win32_fix_title_bar_background: not working in 32bits
### Version 2.1.0 ###
Changes:
* Dark mode may be overriden by QT_COLOR_MODE environment variable
### Version 2.0.4 ###
Bug fixes:
* Fixed missing import for DictItem callback
### Version 2.0.3 ###
Changes:
* Code editor: added support for other languages than Python (C++, XML, ...)
Bug fixes:
* Fixed Qt5 translation standard support
* Fixed code editor/console widgets dark mode default settings
### Version 2.0.2 ###
Bug fixes:
* Fixed PySide6 compatibility issues
* Fixed remaining Python 3 compatibility issues
### Version 2.0.1 ###
Bug fixes:
* Fixed Python 3 compatibility issues
### Version 2.0.0 ###
Changes:
* Removed support for Python 2.7 and PyQt4 (guidata supports Python >=3.6 and PyQt5, PySide2, PyQt6, PySide6 through QtPy 2)
* Added support for dark theme mode on Windows (including windows title bar background),
MacOS and GNU/Linux.
* Added embbeded Qt-based Python console widget
* Dataset edit layout: now disabling/enabling "Apply" button depending on widget value changes
* Code editor: widget minimum size area may now be set using rows and columns size
* Test launcher: redesigned, added support for dark mode
### Version 1.8.0 ###
Changes:
* Added generic widgets: array, dictionary, text and code editors.
* Removed `spyderlib`/`spyder` dependency.
* Added setter method on DataItem object for "help" text (fixed part of the tooltip).
### Version 1.7.9 ###
Changes:
* Added PySide2 support: guidata is now compatible with Python 2.7, Python 3.4+, PyQt4,
PyQt5 and PySide2!
### Version 1.7.8 ###
Changes:
* Added PyQt4/PyQt5/PySide automatic switch depending on installed libraries
* Moved documentation to
### Version 1.7.7 ###
Bug fixes:
* Fixed Spyder v4.0 compatibility issues.
### Version 1.7.6 ###
Bug fixes:
* Fixed Spyder v3.0 compatibility issues.
### Version 1.7.5 ###
Bug fixes:
* `FilesOpenItem.check_value` : if value is None, return False (avoids "None Type object is not iterable" error)
### Version 1.7.4 ###
Bug fixes:
* Fixed compatibility issue with Python 3.5.1rc1 (Issue #32: RecursionError in `userconfig.UserConfig.get`)
* `HDF5Reader.read_object_list`: fixed division by zero (when count was 1)
* `hdf5io`: fixed Python3 compatibility issue with unicode_hdf type converter
### Version 1.7.3 ###
Features:
* Added CHM documentation to wheel package
* hdf5io: added support for a progress bar callback in "read_object_list" (this allows implementing a progress dialog widget showing the progress when reading an object list in an HDF5 file)
Bug fixes:
* Python 3 compatibility: fixed `hdf5io.HDF5Writer.write_object_list` method
* data items:
* StringItem: when `notempty` parameter was set to True, item value was not checked at startup (expected orange background)
* disthelpers:
* Supporting recent versions of SciPy, h5py and IPython
* Fixed compatibility issue (workaround) with IPython on Python 2.7 (that is the "collection.sys cx_Freeze error")
### Version 1.7.2 ###
Bug fixes:
* Fixed compatibility issues with old versions of Spyder ()
* disthelpers:
* vs2008 option was ignored
* added 'C:\Program Files (x86)' to bin includes (cx_Freeze)
* Data items/callbacks: fixed callbacks for ChoiceItem (or derived items) which were triggered when other widgets were triggering their own callbacks...
Other changes:
* Added test for item callbacks
* dataset.datatypes.FormatProp/new behavior: added `ignore_error` argument, default to True (ignores string formatting error: ValueError)
* disthelpers:
* Distribution.Setup: added `target_dir` option
* Distribution.build: added `create_archive` option to create a ZIP archive after building the package
* cx_Freeze: added support for multiple executables
* added support for h5py 2.0
* added support for Maplotlib 1.1
* Allow DateTime edit widgets to popup calendar
### Version 1.4.0 ###
Possible API compatibility issues:
* disthelpers: removed functions remove_build_dist, add_module_data_files,
add_text_data_file, get_default_excludes, get_default_includes,
get_default_dll_excludes, create_vs2008_data_files (...) which were
replaced by a class named Distribution,
see the new disthelpers test for more details (tests/dishelpers.py)
* reorganized utils and configtools modules
Other changes:
* disthelpers: replaced almost all functions by a class named Distribution,
and added support for cx_Freeze (module remains compatible with py2exe),
see the new disthelpers test for more details (tests/dishelpers.py)
* reorganized utils and configtools modules
### Version 1.3.2 ###
Since this version, `guidata` is compatible with PyQt4 API #1 *and* API #2.
Please read carefully the coding guidelines which have been recently added to
the documentation.
Possible API compatibility issues:
* Removed deprecated wrappers around QFileDialog's static methods (use the wrappers provided by `guidata.qt.compat` instead):
* getExistingDirectory, getOpenFileName, getOpenFileNames, getSaveFileName
Bug fixes:
* qtwidgets.ShowFloatArrayWidget: fixed string float formatting issue (replaced %f by %g)
* Fixed compatiblity issues with PyQt v4.4 (Contributor: Carlos Pascual)
* Fixed missing 'child_title' attribute error with FileOpenItem, FilesOpenItem, FileSaveItem and DirectoryItem
* (Fixes Issue 8) disthelpers.add_modules was failing when vs2008=False
Other changes:
* added *this* changelog
* qtwidgets: removed ProgressPopUp dialog (it is now recommended to use QProgressDialog instead, which is pretty much identical)
* Replaced QScintilla by spyderlib (as a dependency for array editor, code editor (test launcher) and dict editor)
* qtwidgets.DockWidgetMixin: added method 'setup_dockwidget' to change dockwidget's features, location and allowed areas after class instantiation
* guidata.utils.utf8_to_unicode: translated error message in english
* Add support for 'int' in hdf5 save function
* guidata.dataset/Numeric items (FloatItem, IntItem): added option 'unit' (automatically add suffix ' (unit)' to label in edit mode and suffix ' unit' to value in read-only mode)
* Improved dataset __str__ method: code refactoring with read-only dataset widgets (DataItem: added methods 'format_string' and 'get_string_value', DataSet: added method 'to_string')
* Added coding guidelines to the documentation
* guidata.dataset.qtwidget: added specific widget (ShowBooleanWidget) for read-only display of bool items (text is striked out when value is False)
* guidata.hdf5io.Dset: added missing keyword argument 'optional' (same effect as parent class Attr)
* guidata.dataset.dataitems.IntItem objects: added support for sliders (fixes Issue 9) with option slider=True (see documentation)
### Version 1.3.1 ###
Bug fixes:
* setup.py: added svg icons to data files
* gettext helpers were not working on Linux (Windows install pygettext was hardcoded)
Other changes:
* hdf5io: printing error messages in sys.stderr + added more infos when failing to load attribute
### Version 1.3.0 ###
Bug fixes:
* setup.py: added svg icons to data files
* gettext helpers were not working on Linux (Windows install pygettext was hardcoded)
* DataSet/bugfix: comment/title options now override the DataSet class __doc__ attribute
* Added missing option 'basedir' for FilesOpenItem
* DirectoryItem: fixed missing child_title attribute bug
* For all DataSet GUI representation, the comment text is now word-wrapped
* Bugfix: recent versions of PyQt don't like the QApplication reference to be stored in modules (why is that?)
* Bugfix/tests: always keep a reference to the QApplication instance
Other changes:
* setup.py: added source archive download url
* Tests: now creating real temporary files and cleaning up at exit
* qtAllow a callback on LineEditWidget to notify about text changes (use set_prop("display", "callback", callback))
* qthelpers: provide wrapper for qt.getOpen/SaveFileName to work around win32 bug
* qtwidgets: optionally hide apply button in DataSetEditGroupBox
* added module guidata.qtwidgets (moved some generic widgets from guidata.qthelpers and from other external packages)
* qthelpers: added helper 'create_groupbox' (QGroupBox object creation)
* Array editor: updated code from Spyder's array editor (original code)
* Added package guidata.editors: contains editor widgets derived from Spyder editor widgets (array editor, dictionary editor, text editor)
* Array editor: added option to set row/col labels (resp. ylabels and xlabels)
* ButtonItem: changed callback arguments to*instance* (DataSet object), *value* (item value), *parent* (button's parent widget)
* editors.DictEditor.DictEditor: moved options from constructor to 'setup' method (like ArrayEditor's setup_and_check), added parent widget to constructor options
* Added DictItem type: simple button to edit a dictionary
* editors.DictEditor.DictEditor/bugfixes: added action "Insert" to context menu for an empty dictionary + fixed inline unicode editing (was showing the error message "Unable to assign data to item")
* guidata.qtwidgets: added 'DockableWidgetMixin' to fabricate any dockable QWidget class
* gettext helpers: added support for individual module translation (until now, only whole packages were supported)
* DataSetShowGroupBox/DataSetEditGroupBox: **kwargs may now be passed to the DataSet constructor
* disthelpers: added 'scipy.io' to supported modules (includes)
* Added new "value_callback" display property: this function is called when QLineEdit text has changed (item value is passed)
* Added option to pass a text formatting function in DataSetShowWidget
././@PaxHeader 0000000 0000000 0000000 00000000026 00000000000 010213 x ustar 00 22 mtime=1722935054.0
guidata-3.6.2/LICENSE 0000644 0001751 0000177 00000002776 14654363416 013602 0 ustar 00runner docker BSD 3-Clause License
Copyright (c) 2023, CEA-Codra, Pierre Raybaut.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
././@PaxHeader 0000000 0000000 0000000 00000000026 00000000000 010213 x ustar 00 22 mtime=1722935054.0
guidata-3.6.2/MANIFEST.in 0000644 0001751 0000177 00000000111 14654363416 014310 0 ustar 00runner docker graft doc
include *.desktop
include CHANGELOG.md
include requirements.txt ././@PaxHeader 0000000 0000000 0000000 00000000034 00000000000 010212 x ustar 00 28 mtime=1722935059.1807055
guidata-3.6.2/PKG-INFO 0000644 0001751 0000177 00000015011 14654363423 013652 0 ustar 00runner docker Metadata-Version: 2.1
Name: guidata
Version: 3.6.2
Summary: Automatic GUI generation for easy dataset editing and display
Author-email: Codra
License: BSD 3-Clause License
Copyright (c) 2023, CEA-Codra, Pierre Raybaut.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Project-URL: Homepage, https://github.com/PlotPyStack/guidata/
Project-URL: Documentation, https://guidata.readthedocs.io/en/latest/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows 8
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Software Development :: Widget Sets
Classifier: Topic :: Utilities
Requires-Python: <4,>=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: h5py>=3.0
Requires-Dist: NumPy>=1.21
Requires-Dist: QtPy>=1.9
Requires-Dist: requests
Requires-Dist: tomli
Provides-Extra: dev
Requires-Dist: ruff; extra == "dev"
Requires-Dist: pylint; extra == "dev"
Requires-Dist: Coverage; extra == "dev"
Provides-Extra: doc
Requires-Dist: PyQt5; extra == "doc"
Requires-Dist: pillow; extra == "doc"
Requires-Dist: pandas; extra == "doc"
Requires-Dist: sphinx>6; extra == "doc"
Requires-Dist: myst_parser; extra == "doc"
Requires-Dist: sphinx-copybutton; extra == "doc"
Requires-Dist: sphinx_qt_documentation; extra == "doc"
Requires-Dist: python-docs-theme; extra == "doc"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-xvfb; extra == "test"
# guidata: Automatic GUI generation for easy dataset editing and display with Python
[](https://pypi.org/project/guidata/)
[](https://github.com/PlotPyStack/guidata/)
[](https://pypi.python.org/pypi/guidata/)
[](https://www.anaconda.com/download/)
тД╣я╕П Created in 2009 by [Pierre Raybaut](https://github.com/PierreRaybaut) and maintained by the [PlotPyStack](https://github.com/PlotPyStack) organization.
## Overview
The `guidata` package is a Python library generating Qt graphical user interfaces.
It is part of the [PlotPyStack](https://github.com/PlotPyStack) project, aiming at
providing a unified framework for creating scientific GUIs with Python and Qt.
Simple example of `guidata` datasets embedded in an application window:

See [documentation](https://guidata.readthedocs.io/en/latest/) for more details on
the library and [changelog](https://github.com/PlotPyStack/guidata/blob/master/CHANGELOG.md) for recent history of changes.
Copyrights and licensing:
* Copyright ┬й 2023 [CEA](https://www.cea.fr), [Codra](https://codra.net/), [Pierre Raybaut](https://github.com/PierreRaybaut).
* Licensed under the terms of the BSD 3-Clause (see [LICENSE](https://github.com/PlotPyStack/guidata/blob/master/LICENSE)).
## Features
Based on the Qt library, `guidata` is a Python library generating graphical user
interfaces for easy dataset editing and display. It also provides helpers and
application development tools for Qt (PyQt5, PySide2, PyQt6, PySide6).
Generate GUIs to edit and display all kind of objects regrouped in datasets:
* Integers, floats, strings
* Lists (single/multiple choices)
* Dictionaries
* `ndarrays` (NumPy's N-dimensional arrays)
* Etc.
Save and load datasets to/from HDF5, JSON or INI files.
Application development tools:
* Data model (internal data structure, serialization, etc.)
* Configuration management
* Internationalization (`gettext`)
* Deployment tools
* HDF5, JSON and INI I/O helpers
* Qt helpers
* Ready-to-use Qt widgets: Python console, source code editor, array editor, etc.
## Dependencies and installation
See [Installation](https://guidata.readthedocs.io/en/latest/installation.html)
section in the documentation for more details.
././@PaxHeader 0000000 0000000 0000000 00000000026 00000000000 010213 x ustar 00 22 mtime=1722935054.0
guidata-3.6.2/README.md 0000644 0001751 0000177 00000005113 14654363416 014040 0 ustar 00runner docker # guidata: Automatic GUI generation for easy dataset editing and display with Python
[](https://pypi.org/project/guidata/)
[](https://github.com/PlotPyStack/guidata/)
[](https://pypi.python.org/pypi/guidata/)
[](https://www.anaconda.com/download/)
тД╣я╕П Created in 2009 by [Pierre Raybaut](https://github.com/PierreRaybaut) and maintained by the [PlotPyStack](https://github.com/PlotPyStack) organization.
## Overview
The `guidata` package is a Python library generating Qt graphical user interfaces.
It is part of the [PlotPyStack](https://github.com/PlotPyStack) project, aiming at
providing a unified framework for creating scientific GUIs with Python and Qt.
Simple example of `guidata` datasets embedded in an application window:

See [documentation](https://guidata.readthedocs.io/en/latest/) for more details on
the library and [changelog](https://github.com/PlotPyStack/guidata/blob/master/CHANGELOG.md) for recent history of changes.
Copyrights and licensing:
* Copyright ┬й 2023 [CEA](https://www.cea.fr), [Codra](https://codra.net/), [Pierre Raybaut](https://github.com/PierreRaybaut).
* Licensed under the terms of the BSD 3-Clause (see [LICENSE](https://github.com/PlotPyStack/guidata/blob/master/LICENSE)).
## Features
Based on the Qt library, `guidata` is a Python library generating graphical user
interfaces for easy dataset editing and display. It also provides helpers and
application development tools for Qt (PyQt5, PySide2, PyQt6, PySide6).
Generate GUIs to edit and display all kind of objects regrouped in datasets:
* Integers, floats, strings
* Lists (single/multiple choices)
* Dictionaries
* `ndarrays` (NumPy's N-dimensional arrays)
* Etc.
Save and load datasets to/from HDF5, JSON or INI files.
Application development tools:
* Data model (internal data structure, serialization, etc.)
* Configuration management
* Internationalization (`gettext`)
* Deployment tools
* HDF5, JSON and INI I/O helpers
* Qt helpers
* Ready-to-use Qt widgets: Python console, source code editor, array editor, etc.
## Dependencies and installation
See [Installation](https://guidata.readthedocs.io/en/latest/installation.html)
section in the documentation for more details.
././@PaxHeader 0000000 0000000 0000000 00000000033 00000000000 010211 x ustar 00 27 mtime=1722935059.140705
guidata-3.6.2/doc/ 0000755 0001751 0000177 00000000000 14654363423 013324 5 ustar 00runner docker ././@PaxHeader 0000000 0000000 0000000 00000000033 00000000000 010211 x ustar 00 27 mtime=1722935059.140705
guidata-3.6.2/doc/_static/ 0000755 0001751 0000177 00000000000 14654363423 014752 5 ustar 00runner docker ././@PaxHeader 0000000 0000000 0000000 00000000026 00000000000 010213 x ustar 00 22 mtime=1722935054.0
guidata-3.6.2/doc/_static/favicon.ico 0000644 0001751 0000177 00000276137 14654363416 017115 0 ustar 00runner docker АА ( f h О И Ў С/ ~ и F 00 и% ╖V ( А N N ╝╝╝╗╗╗t╗╗╗│║║║╘╜╜╜2 ╣╣╣!╝╝╝г╗╗╗·╗╗╗ ╗╗╗ ╗╗╗ь───
┐┐┐║║║Н╗╗╗∙╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║Y ║║║?╗╗╗┌╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝Ф ╢╢╢╗╗╗Т╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗└╠╠╠ ╣╣╣!╗╗╗╩╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝▀╢╢╢ ╣╣╣M╗╗╗э╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Є╝╝╝. ┐┐┐╗╗╗А╗╗╗¤╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗№╝╝╝L ╢╢╢╗╗╗├╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗i ╣╣╣,╗╗╗▐╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Х ╗╗╗G╗╗╗Ё╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║┼ккк ╝╝╝f╗╗╗√╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ц║║║ ╠╠╠╗╗╗Щ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗∙╜╜╜6 ┐┐┐╗╗╗╡╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║w ╣╣╣╗╗╗╥╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║┼ААА ╗╗╗1╗╗╗х╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗√╝╝╝. ╝╝╝E╗╗╗ё╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝г ║║║h╗╗╗√╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╣╣╣7 ккк║║║Н╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Їккк ┐┐┐╝╝╝▓╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗·┐┐┐ ┐┐┐╗╗╗╧╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Зккк ║║║4╗╗╗х╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╩╜╜╜2 ║║║\╗╗╗ї╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗■╗╗╗╣║║║J╠╠╠ ╢╢╢║║║С╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝ю╗╗╗в╣╣╣M╢╢╢ ╜╜╜#╗╗╗═╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗я╝╝╝г╗╗╗R│││
╝╝╝T╗╗╗я╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Ў╗╗╗░╝╝╝_╝╝╝ ╜╜╜╗╗╗░╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗√╝╝╝╜╝╝╝c╗╗╗ ╗╗╗8╗╗╗в╗╗╗·╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Ў║║║з╜╜╜IААА ┐┐┐╗╗╗q║║║╘╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝▀║║║w┐┐┐ ╝╝╝&╗╗╗Щ╗╗╗ў╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ў╗╗╗в╜╜╜2 ╜╜╜2╗╗╗п╗╗╗¤╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗■╗╗╗│╜╜╜6 ╛╛╛'╗╗╗в╗╗╗¤╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗─╣╣╣B ┐┐┐╗╗╗Ъ╗╗╗√╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╣╣╣╣, ААА╗╗╗^╗╗╗ъ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗√╗╗╗Щ╢╢╢ ╗╗╗-╗╗╗╦╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╣┬─ ╢╟╦ │╠╥ ▓╤┘ п╪с м▄ч л▌ш крь йсэ зтя мзМ ░М_ ░Оc ░Пg ░Тl ▒Цt │ЬА ┤вМ ╡иЧ ╕пд ║╖┤ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗э║║║k┐┐┐ ккк║║║w╗╗╗°╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║╝╜ ╖╚╠ ┤╥┘ ░┌ф офё кэ№ ию зю жю жю ею дю гю гю вю бю змТ м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; к~I лИ\ пТp ▓ЮД ╢лЮ ║╣╖ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╙╝╝╝A ╝╝╝"║║║┼╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╜╛ ╕╩╬ ┤╓▐ ░уя нэ¤ мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю е╖е м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 еv< йГS нСo │вН ╣╡▒ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗■║║║Ш╢╢╢ ╝╝╝L╝╝╝ю╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗┐└ ╖╬╘ ┤▀ъ ▒ю¤ пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю д├╕ м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr8 иВS оЦy ╢лЯ ╗╗║ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗с╝╝╝E ккк╝╝╝Е╗╗╗■╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╜╛ ╣╧╒ ╡тэ ▓я■ ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю г╧╠ м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 гxD мТr ╢ог ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗■║║║Нккк ┐┐┐╗╗╗╡╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗┼╚ ╖┘т ┤э√ ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю в┌▐ м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 д|L нЧ| ╣╡▒ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗═╛╛╛' ╕╕╕╗╗╗═╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║╦╨ ╕фЁ ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю ахЄ м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Яq9 кОl ╖░з ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗є╗╗╗S ╣╣╣(╝╝╝▀╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╝╝ ║═╥ ╣чє ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ м~D л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm4 жЕ] ╡ла ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗■╝╝╝ЕААА ╝╝╝*╗╗╗ш╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╠╤ ╗щї ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ лКW л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl4 зИc ╖▒к ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║╢───
╝╝╝*╗╗╗ш╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗┼╟ ╗фю ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ кХi л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ьn6 йПp ╣╢│ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╬╕╕╕ ╣╣╣(╗╗╗ш╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝┐└ ╝┌т ╝Ё■ ╝ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ иЯ| л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 ЮtA ▓еЦ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝▀╣╣╣( ╝╝╝╗╗╗▐╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╔═ ╛ь° ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ жлР л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щk2 зМk ║╕╡ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ы╕╕╕/ │││
╗╗╗╩╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╜╜ ╛┘с ╛Ё■ ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ е╢в л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 ЭuC │╡▒ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ы╗╗╗- ААА╗╗╗░╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝├┼ ┐шє ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ д┬╢ л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 ХИb й╩╨ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗щ╛╛╛+ ╝╝╝y╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜╩═ └э· └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ в╠╚ л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 ЦuC Ащ■ Я╤█ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ц╗╗╗ ╗╗╗<╗╗╗№╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛╨╒ ┬ё■ ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ в╪█ л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шj1 Ац° щ Ч╓у ║╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╥╢╢╢ ╝╝╝╗╗╗щ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┐╫▐ ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ афю л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Г┌х щ ~щ Щ╒с ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╣┐┐┐ ╜╜╜▒╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ └╫▐ ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яь¤ л~B лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Д╙┌ щ ~щ }щ Ы╙▐ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗П ╗╗╗O╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┐╒█ ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╝ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ кИT лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Ж╦═ щ ~щ }щ |щ Я╧┘ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗■╝╝╝L │││
╜╜╜ё╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ └╥╪ ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ иТe лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 З╟╞ щ ~щ }щ |щ ~ш■ м┼╩ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ы╜╜╜ └└└е╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛╩═ ┼ё■ ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ иЭy лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 З─├ щ ~щ }щ |щ |щ Вуў ╢╛└ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╝ ┼┼┼#╝╝╝■╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝└┴ ┼э∙ ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ звА лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 З├└ щ ~щ }щ |щ |щ {щ Н█ы ║╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝[ ───╥╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╝╝ ─хя ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ звА лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 З├┴ щ ~щ }щ |щ |щ {щ zщ б═╓ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ч╗╗╗ ╦╦╦;╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┴╓▌ ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ звА лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Ж╔╩ щ ~щ }щ |щ |щ {щ zщ ц· ╖╛└ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝Р ┼┼┼╓╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜┬├ ╟Ё№ ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ звА лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Е╧╘ щ ~щ }щ |щ |щ {щ zщ yщ Ц╘р ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗·╜╜╜ ╤╤╤2╛╛╛ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─▀ш ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜щЄ ╜╓╧ ╝╓╧ ╝╓╧ ║╓╧ ║╒╧ ╣╒╬ ╣╒╬ ╕╒╬ ╖╘╬ ╖╘╬ ╢╘╬ ╡╘╬ ┤╘╬ ┤╘╬ │╙╬ │╥╬ ▓╥═ ▒╥═ ▒╥═ п╥═ п╥═ о╥═ н╥═ н╤═ н╤═ л╤═ к╤═ й╤═ й╤╠ й╤╠ и╤╠ з╤╠ ж╨╠ ж╨╠ е╨╠ д╨╠ г╧╠ г╧╠ иЧn лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Д╘▌ щ ~щ }щ |щ |щ {щ zщ yщ {ш¤ │└┬ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║С ╚╚╚╔╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┐╚╦ ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Г┌ч щ ~щ }щ |щ |щ {щ zщ yщ yщ Ч╘р ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ї╢╢╢ ╓╓╓┴┴┴■╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╟цЁ ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 ВрЁ щ ~щ }щ |щ |щ {щ zщ yщ yщ }ц· ╣╜╛ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝Б ╧╧╧Е╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛╟╩ ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шi0 Ач∙ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ в╠╘ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗▐ ╩╩╩с╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┼▐ц ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Шk3 Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ Й█ь ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╣╣╣7 ╒╒╒$├├├ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╜╛ ╔ё№ ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Цs@ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ xч■ ╢╛└ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗О ╧╧╧j╜╜╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ └═╤ ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 ФU Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш д╩╥ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗т ═══╢╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─▌ф ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 СНj Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш Т╓ф ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╣╣╣╩╩╩ч╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╔ьЎ ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 ПЫА Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш Г▀Є ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗R╞╞╞■╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜┐└ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 МиХ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш xч■ ╕╝╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗З┴┴┴ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ └╔╠ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╖С\ ┤кЗ ┤┤Ч │мК ╡Чf ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 К╡й Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш п├╟ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╣┐┐┐ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┴╨╘ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╕Щh ┤╙═ ▒Ё ▒я ░я пя оя о▄▐ │вx ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 И┬╛ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш ж╔╨ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╥╛╛╛ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─╓▄ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╕йВ ┤э∙ ▓Ё ▒Ё ▒я ░я пя оя ня ня■ ░╖а ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 Е╬╙ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Ю╬╪ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ч╝╝╝ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─┘▀ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ╣Эo ┤э· │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ▒мЛ │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шi0 В▄щ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Щ╥▌ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗·╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┼█т ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜╒╬ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИI ╡┘╪ ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя лшє ▓ЙP │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Шj2 Аш№ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Ф╘с ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─┘р ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╛╓╧ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ╣аr ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля ппУ │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 ЦuC Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Х╘с ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ├╫▌ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜┘╒ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ╖╝в ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля н═┼ │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Ф|O Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Ш╥▐ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ├╒┌ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╛▐▄ ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ╖╟╖ ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля м┌▄ │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 УЖ^ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Ъ╧┌ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗∙╝╝╝ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┬╥╫ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜су ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ╖┼│ ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля м╫╫ │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 РЩ~ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш Ю╬╪ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝ю╜╜╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ └═╤ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜шя ┐МK ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ╕╢Щ ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля н╚╝ │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Л▓е Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш в╦╙ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║у┐┐┐ў╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛┼╟ ╦є ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ┐ТV ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ╣Шc ┤Ё■ ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля ░жД │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Щj1 Е╘▌ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш м┼╩ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╩└└└▀╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╜╜ ╦Є■ ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╛вs ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ╢╬├ ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя м▀ф ▓ГG │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 ХR Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш vш ╢╛└ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗и┴┴┴▓╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╔ыї ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╛│П ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ╣С[ ╡ць │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мь· ▓Ъm │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Щj1 Н░б Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш {х√ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║Ж╛╛╛q╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╞сщ ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╜╦╗ ╛ЛK ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣Щe ┤тч ▓Ё ▒Ё ▒я ░я пя оя ня ощї ▒бz ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Чt@ ГуЇ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш Ж▐Ё ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗e║║║;╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┴╤╓ ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╜щЁ ╛НO ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЛP ┤╝е ▒хы ▒я ░я пя ошє ░─╢ ┤ПY ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 Ъk1 Н░б Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш Ц╙▀ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝A┐┐┐╗╗╗√╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝┴┬ ╩є ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╜оЙ ╛ЛJ ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕG ╢Ф_ ╡Ьo ╡Хc ╢ЗI ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Ъk2 ЦВW Гш№ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ wш и╚╬ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗№╗╗╗ ╗╗╗╟╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╚ъЇ ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╝рт ╛НM ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыk2 Щp; З╒▄ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ xч■ ╖╜╛ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝╠ ║║║В╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┬╫▌ ╩Є ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╝╣Ь ╜КJ ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыl2 Ыl4 М└╗ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ К▄э ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝Р ╝╝╝D╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜┴┬ ╔Ё¤ ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ю√ ╜гu ╜КJ ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьl3 Ыm3 О╖л Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ xщ д╩╥ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗R ╞╞╞ ╗╗╗Ё╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─▐ц ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ыЇ ╝Яp ╝КI ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 Ьm3 Ьn6 О╗│ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ }ц· ╣╝╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗∙╕╕╕ ║║║Ш╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛╞╔ ╔Є ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣ь° ║пЛ ╝ЙI ╗ЙI ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эn4 Эm3 ЪxE Н╩╦ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ yщ Х╒с ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝о ╗╗╗8╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ─▀ч ╚Є ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ║╨┼ ║Ф] ╗ИH ║ИH ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 Юn4 Эo5 ЦЪ| Й▐ь Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ |ш¤ │└┬ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║Q ╗╗╗╓╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝└┴ ╟я√ ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖ь∙ ╕─▒ ║Х_ ║ЗH ╣ЗG ╣ЖG ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яp5 Яo5 Юo4 ЪДX О═╬ Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ yщ Ъ╥▌ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝ю╢╢╢ ╗╗╗p╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ┴╙┘ ╟Є ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡я■ ╢╙╠ ╖мЗ ╣МR ╕ЖF ╕ЕF ╖ЕF ╖ЕE ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бq6 аp6 аp5 Яq6 ЪПi С┬╗ Кщ№ Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ zщ Ах∙ ╕╜╛ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║С ┐┐┐╗╗╗т╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╝╝ ─уь ╞Є ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │э√ ┤╙═ ┤╗в ╢вy ╢ЛP ╢ДE ╢ДE ╡ГD ╡ГD ┤ВD ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 гs8 гs8 вr7 вr7 бq7 бs8 ЭЗ\ ШйТ П╪р Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ {щ ж╔╨ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ў┐┐┐ ╝╝╝f╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝┐└ ─ъї ╞Є ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░ю■ ░▌р ▒┼╢ ▓░Т ▓аu │ОY ┤ВC │БC │БC ▓АB ▓АB ▒АB ▒A ░A п~@ п~@ о}@ о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< йx< иx; иw; зw; зv: жv: жu: еu9 еu9 дt9 дt8 вxA ЯЙ] ЭЪy ЩлЧ Ф╟─ Пфє Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ {щ Ч╘р ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗О ┐┐┐╗╗╗┌╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜─╞ ╞Ё№ ┼Є ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╝ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя лъЎ м┌▄ м╬╟ н┬│ н╖Я нкЙ обz оЩn нС` оЙS нБG о}? н|? н|? м{> м{> л{> лz= кz= кy= йy< и}E зДO жЙZ дРe гЧq бвГ ЯмЦ Ь╕й Ы├╝ Ш╧╨ Хры Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ |щ Йрё ║╝╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Ї╝╝╝ ╗╗╗O╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛╚╦ ─я√ ─Є ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бщЎ ахЄ ЯхЄ ЯхЄ ЮхЄ ЮхЄ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ |щ ЗтЇ ╢┐┴ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║Ь╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜┼╚ ├э∙ ├Є ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ }щ Жтї ╡└┬ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╬ккк ┐┐┐╗╗╗┌╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╜─╞ ┬ыЎ ├Є ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ ~щ ИрЄ ╡┐┴ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ў╛╛╛+ ╣╣╣3╗╗╗·╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╛┐ └▀ч ┬Є ┴ё └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Аъ щ Ф┘ч ╕╜╛ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝r ╗╗╗a╗╗╗■╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╛╨╒ ┴я№ └ё ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Аъ Бщ¤ г╬╫ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗жААА ║║║s╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝┬─ ╛▀ш ┐ё ┐ё ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Въ Бъ Р▌ь ▓┬┼ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║║ккк ║║║Ж╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╞╔ ╛фя ╛ё ╜ё ╝ё ╗ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Гъ Гъ Их° ж╠╘ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝╠───
║║║Й╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╝═╤ ╝ую ╝ё ╝ё ╗ё ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Еъ Дъ Луї д╬╓ ╣╝╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗═╣╣╣ ╗╗╗a╗╗╗∙╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗┼╚ ╗▄х ╗я¤ ║ё ╣Ё ╕Ё ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы Зъ Зъ Жъ Т▀я й╔╨ ╗╝╝ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗░╣╣╣ ╜╜╜:╗╗╗ш╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗┐└ ╗╧╘ ╣ръ ╕ю¤ ╕Ё ╖Ё ╢Ё ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Кы Кы Йы Иы РтЇ б╙▌ │┬┼ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║Сккк ╣╣╣!╗╗╗├╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗┐└ ║╬╘ ╕▐ш ╖ы∙ ╡Ё ┤Ё ┤Ё │Ё ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Оы Ны Мы Лы Мъ¤ Ц▐э г╥▄ ▓─╟ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ё╗╗╗a ААА║║║k╗╗╗Є╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║─╞ ╕╨╓ ╢▄ц ┤щЎ ▓Ё ▒Ё ▒я ░я пя оя ня ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уь Ть Сь Сь Ры Пы Оы Тч∙ Ъ▐э г╙▌ п╟╠ ╣╝╜ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗╕╗╗╗ ╗╗╗╗╗╗╖╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║╜╛ ╕╞╔ ╖╧╒ ╡╪с ▓сэ ░шЎ нэ¤ ня мя ля кя кя йя ию зю жю жю ею дю гю гю вю бю аэ Яэ Яэ Юэ Ээ Ьэ Ьэ Ыэ Ъэ Щэ Шэ Шь Чь Ць Хь Хь Фь Уы■ Ццў Ыря а┌ц з╤┌ п╚╬ ╖└┬ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗Ё╝╝╝c ╣╣╣M╝╝╝╠╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║└┴ ╕╞╔ ╢╦╨ ┤╤╪ ▓╒▌ ▒╪с п┌х н▌щ лрэ куё ичЎ зчЎ жчЎ жщ° гъ· въ· бщ· ащ· ащ· бш° бцЎ ацЎ буЄ буё вся г▌ъ е█ц з╓с й╙▄ м╨╪ о╠╙ ▓╞╦ ╢┴├ ║╝╝ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ў╝╝╝Р┐┐┐ ╝╝╝D╗╗╗╩╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗·╗╗╗Щ┐┐┐ ║║║N╗╗╗╣╗╗╗¤╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗э╝╝╝Р╗╗╗ ╜╜╜║║║w╗╗╗▄╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗¤╗╗╗─╝╝╝f│││
ААА╣╣╣B╗╗╗Щ╗╗╗т╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗¤╗╗╗╩║║║~╣╣╣! ╝╝╝"║║║o╗╗╗╗╗╗╗°╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗є╗╗╗│╝╝╝f║║║ ┐┐┐╝╝╝D╝╝╝y╗╗╗н╗╗╗с╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗№║║║╘║║║а║║║k╜╜╜6┐┐┐ ╝╝╝╗╗╗K╗╗╗{╝╝╝Я╝╝╝┴╗╗╗ф╗╗╗■╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗√╗╗╗▌║║║║║║║Ш╝╝╝r║║║?───
┐┐┐╗╗╗)╗╗╗K╗╗╗m╗╗╗А╗╗╗У╗╗╗ж╜╜╜└╜╜╜╫╜╜╜ъ╗╗╗∙╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗є╗╗╗▐║║║╔║║║╢╝╝╝г╝╝╝Р╝╝╝}╝╝╝g╝╝╝E╜╜╜#┐┐┐ ╢╢╢┤┤┤┤┤┤║║║╝╝╝"╝╝╝"╗╗╗-╣╣╣3╛╛╛+╝╝╝"╝╝╝"┐┐┐┤┤┤┤┤┤╠╠╠ ┴ № ° р └ А ■ ? № ° Ё р А ■ № ° Ё └ А ■ № Ё р └ № р А ■ ° р А № ° Ё └ А ■ № ° Ё ? р └ А А ■ ■ № ° ?° Ё Ё р р └ └ А А А А А А А └ └ р р р Ё Ё ° № № ?■ А └ р Ё ° № ? ■ А р ° № ? А р ■ ? └ ■ ? ° А ( Й Й ┐┐┐╗╗╗O ╝╝╝=╝╝╝╨║║║ ╗╗╗a╗╗╗∙╗╗╗^ ╗╗╗╗╗╗Ч╗╗╗ ╗╗╗ ╝╝╝ю╗╗╗П╜╜╜2 ккк╜╜╜И╜╜╜Ў╗╝╝■╝─╞№║╩╬■╕┤й■╣║╖■╗╗╗■╛└└▀└└└E ┬┬┬╛└└с╛┴┬■╣█у ▒ь√ кя дю йИU зv: дu; зНi ╖┤н■┼╟╟│ккк ╠╠╠
╛╛╛Ё┐╦╧ ╜я№ ╢Ё ░я кя дю иУh зv: гs7 Яo5 Ъl3 м┼╞ ─╚╚╤ ───▓└╞╚ ├ё■ ╜ъЄ ╖тч ▒сц лрц е▀ц иЦn зv: гs7 Яo5 Ъk2 Е╟╚ ╡╩╬ ╬╬╬Г╛┐┐·┼уь ├Є ╛╗Я ╗ИH ╖ЕF │БC п}@ лz= зv: гs7 Яo5 Ъk2 Г╬╒ Л▌э ┬──я╗╗╗ ╚э∙ ├Є ╛╗а ║Ц` ▒▄▐ ▒Ыp п}@ лz= зv: гs7 Яo5 Ъk2 Б┌ц ~х∙ ╝╜╜■╜╜╜■╟ъї ├Є ╜┼▒ ╗Х_ ▒┘┘ ▒Ъn п}@ лz= зv: гs7 Яo5 ШyH ш■ Втї ╛┐┐·└└└┌┼╘┌ ├Є ╜ыЇ ║е{ ╖ЕG │БC п}@ лz= зv: гs7 Э}K К╠╧ ~щ е╫р ┬┬┬╔╛╛╛?╝╝╝№┬уь ╜ё ╢Ё ▒хя м╒╥ и╩┴ в├╕ Ь╩╟ Ф╒┘ Лщ¤ Еъ РсЄ ╝╜╛∙╝╝╝= ╛╛╛^╝╝╝·╛═╨ ╖ры ▒ы· кя дю Юэ Чь Ущ√ Ц▀ю н╨╫■╜╛╛ў╗╗╗a ╕╕╕┐┴┴Ф╛┬├ю╝╛╛■║╜╛ ╣└┬ ╕└┬ ╣╛┐ ╗╜╜■╗┬├э┐┴┴Р╗╗╗ ┤┤┤╞╞╞1╚╚╚.╕╕╕ккк ? ■? № Ё └ А А └ ° ( 0 N N ╝╝╝╝╝╝5 ║║║U╗╗╗р╣╣╣, ккк╗╗╗З╗╗╗■║║║Q ┐┐┐╗╗╗│╗╗╗ ╗╗╗Э ┐┐┐╗╗╗╬╗╗╗ ╗╗╗ ╗╗╗м┐┐┐ ╠╠╠╝╝╝_╗╗╗ъ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗№╝╝╝╜╗╗╗a╗╗╗ ╠╠╠╗╗╗m╝╝╝ш╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ╗╗╗ ║║║∙╝╝╝Р┐┐┐ ╝╝╝&╝╝╝╓╗╗╗ ╗╗╗ ║─╟ ╡╫▀ птю ищ∙ гэ■ кЖS л~F лЖW лЫ~ ││к ╗╗║ ╝╝╗∙┬┬┬p ╛╛╛;╜╜╜ў╗╗╗ ╝╔═ ╕цЄ │Ё пя ля зю гю иТf йx< жv: гs8 бq6 бu@ нШ~ ╗╗╗ ├├├┼╞╞╞ ┬┬┬.╝╝╝√╝╜╜ ╛▌ц ╝ё ╖Ё │Ё пя ля зю гю иЭy йx< жv: гs8 бq6 Юn4 Ыl2 ЭРo ╗┴├ ┼┼┼┌ккк ┐┐┐ь╗╗╝ ┴уэ └ё ╝ё ╖Ё │Ё пя ля зю гю жйМ йx< жv: гs8 бq6 Юn4 Ыl2 ХyH ЖсЇ ╝┐└ ╞╞╞╣ ┼┼┼Й╗╗╗ ┬╪▐ ─Є └ё ╝█┘ ╕╒╬ ┤╘╬ ▒╥═ н╥═ й╤╠ ж╨╠ зЯ| йx< жv: гs8 бq6 Юn4 Ыl2 ЦvE }щ Ц╫ф ╗╗╗ ───A┬┬┬ы╜╛╛ ╟Ё№ ─Є └ё ╛Яo ╝ЙI ╣ЗG ╢ДE │ВC ▒A о}? лz> йx< жv: гs8 бq6 Юn4 Ыl2 ФU }щ {ш¤ ╗┐└ ╟╟╟╩╛╛╛■└╚╦ ╚Є ─Є └ё ╛Яo ╝ЙI ╕У\ ┤йД ▓ЕI ▒A о}? лz> йx< жv: гs8 бq6 Юn4 Ыl2 УКd }щ yщ ░╚═ └└└Ї╗╗╗ ┬╧╙ ╚Є ─Є └ё ╛бq ╝ЙI ┤сф пя п┴п ▒A о}? лz> йx< жv: гs8 бq6 Юn4 Ыl2 СУt }щ yщ з╬╓ ╝╝╝■╝╝╝¤┬╩═ ╚Є ─Є └ё ╛й ╝ЙI ┤▀с пя п┐м ▒A о}? лz> йx< жv: гs8 бq6 Юn4 Ыl2 НйШ }щ yщ п╦╤ ╜╜╜ў╛╛╛щ╜┐└ ╚ё■ ─Є └ё ╜╔║ ╝ЙI ╕СX ┤д} │ЕG ▒A о}? лz> йx< жv: гs8 бq6 Юn4 ЩzI Гсё }щ zщ ║┴├ └└└╓╛╛╛О╗╗╗ ─▀ч ─Є └ё ╝Ё■ ╣╜ж ╕СX ╢ДE │ВC ▒A о}? лz> йx< жv: гs8 бq6 ЪМe Й┘у Въ }щ Н▌э ╗╗╗ ╗╗╗{┐┐┐╝╝╝Є╜╛┐ ├ыЎ └ё ╝ё ╖Ё │Ё■ ░█▄ о╞╣ м╖а й▓Щ жлР впЧ Ю┤в Ш┬║ С█у Кы Жъ Въ Вц· ╝├─■╝╝╝я╝╝╝ ╜╜╜I╝╝╝√╜╛╛ ╛▌ц ╝Ё■ ╖Ё │Ё пя ля зю гю Яэ Ъэ Ць Ть Оы Кы Жъ П▀я ║├┼¤╗╗╗№╗╗╗R ╝╝╝A╗╗╗щ╗╗╗ ╝├┼ ╣╒▄ ┤ую ░ъ∙ ля зю гю Яэ Ъэ Ць Фъ№ Чсё а╓с ▓╟╠ ╗╗╗ ╗╗╗ъ║║║N ╞╞╞ ╝╝╝v╜╛╛р╗╗╗ ╗╗╗ ╗╗╗ ║╜╛ ╕┬─ ╕├┼ ╢├╞ ╖┬─ ╣┐└ ╗╗╗ ╗╗╗ ╗╗╗ ╝╝╝т╗╗╗╗╗╗ ╜╜╜╜╜╜]─┼╟д└╚╩╫╜╚╩ч╜╔╦я╝╞╩я╝╚╦ч╜╔╦╘┴─╞б╜╜╜Y╣╣╣( ∙ ё ├ З № Ё р └ А А └ р № ? ЙPNG
IHDR \rиf /XIDATx┌эЭy|WХячVUпZ║eI▐╖─Iь8qВЭ &Ща╕[2ЪШ%ААф2dШ╟300!└L^ЄKИH К╒jG,vBЗ$ОЭ┼√╛╚┌Чnuw▌є■Рф┤d╔ЦT╒]╒ъ√¤|ьnUwЭ:U]ўWчnч3CбP'┬i
Еs(P(К%
Eг@б(bФ (EМ ЕвИQаP1J К"F АBQ─(P(К%
Eг@б(btзPXзйййLJйЖ╥u]d2ЩРоы3ЧАФ2 └;v?!DЎЎ~)ejє¤BИФiЪ@73gt]я╒4-╒▀▀▀_QQС\╗vm┬щkаШдf║Зцццj├0кдФ╒╠<@5U1s@@93З ФQ@9Аз¤ "ъ─Р@tш╨5Є7u╤ GдФm NЖq┤жжж╧i┐Л% y"П╧░ИЩXHDK ,▐6@К/" p└! √ в 8РH$Ўm╪░a└i'g2J lдйй╔ыє∙Цe2ЩЬCD+ЙшBf╛ .yR├С┼f▐┴╠█ь╤u}╟╔У'_ihh0ЭЎп╨Q0
n╜їVqхХW.УR^"Д╕ФЩ/aцKИhБ╙╛) █Йш)хєDЇВоы╧╫╘╘t9эX!б`477/╘4э
)хZ"║└┼POt╖▓ЧИЮgц-╠№дa[kjjТN;хVФ Мб▒▒QлииX═╠W2є[Иh-А∙N√еШ6) [Щ∙I"┌LD┐ПD"эN;хФ И╟уч ИИ2s@Е╙>)rЖ$в┐ h╨вi┌ЯК9B(JxЄ╔'¤╜╜╜QM╙▐!е|Ык╗5 dцЗ
├xижжцР╙хУвАН7V!"DЇv яPъ┤O
W▓@гФЄС║║║нN;Уkf┤ l▐╝╣4СH\рГ " 4з}R/3є╧4M√∙║uыЎ;эL.Шq0▄Иw53└╡Pнї
внR╩{
├°yMM═Iз¤▒э╝fК ─b▒y >DDЯ ░╨i3ЦA"zШИ╛╖n▌║-N;cХВАс9ы №3_ЛтJлp"┌
рО@ poбNИ*HhjjЄЖёa ЯpЮ╙■(КЮDЇ=f■Q4эv┌ЩйPP╨┌┌ZТNзo ЁПкыNсBzЩ∙n)х7╫п_╘ig&CA└pk■ч |C╙b
73@D?ЁяnuшjhllЇTTT▄─╠_╞╨t┘вD╫Ж╬049ЇкKhB┬╨M0ДР╨5@╫$Ih ¤о@г'═iC╨Ёя╬Абks(A╚я"%A2 2&aфv∙оdB╞∙'Р1╡мўщМЖTжh{_╗Ш∙Ы%%%╖╣╡Н└н@ёx№oЩ∙ы Ц:эLо╨5Ж▀╦Ёy$| П┴ЁцЁлД╫#ahtк░Ю·/ыuвўУ▄╞6┘╗-╦Wf m
д3:RБTZ├`ZG2нc0еa0c`0нc0еЯЫ╞Af■╩Ц-[~z╦-╖HзЭ╔╞u░qу╞KД?"в╖8эЛxF╨╟°L╝■S ЖЮ║п3Й┬Uа0┘}ШБ┴┤ОD╩@b╨ГD╩└└аББд¤I/$|
╦'ЙшжH$Єв╙ОМрhjj*3уV ЯDvчi( HФе%~F└k┬╨╟▐ь
▄А3mcТ)·Cb╨?шCo┬З■д.╣Е'K└ўдФ_нллыw┌W@,╗ЦИn0╧i_&PтЧХ2╩ГCЕ>р3Aзв╫3 % ╙╢=ОMS
Ї&╝шM╨3рGw┐Г> Ш∙╞┌┌┌f'ЭpT ЪЪЪ╩<╧ўЩ∙z'/┬┘─Х2┬еCЕ╛,(бЭКFзZ Ф ╪) уэУ╩шшъал┐]¤Ї&`w╢-0▌жi┌ЭЪТьШ ─b▒╖
!юaц%О8pИА╥ cV9.5*a1┼ЫY А}>NQ ╞n╦Ш}еhя)E{oТ)\╞KDЇA'┌Є. НННZ8■*АЖЛ&╤PQ╞и
Хх&<╞╚'╙,pJ ьє╤в М▌╓ЯЇбн╗'║Cш┬%╤з#С╚ фєаyАx<>ЛЩа.Я'9B U!╞ЬYCЕ_S╜б╬Ё╣ √|┤Y ▓▀'=hы сxW]¤оHqg:Э╛╣╛╛~0╦Ы ─b▒╦Иш╫ чхАЭ0e└ЬYМъ
В&d╓}б`┌v
T ▓m&R^эЬЕгХH8[MxТЩ▀[[[{$╫╩Л ─уёў3є= kЮїzА∙U└№j└k гn
% ╓э╠ ╚■╝│пЗ┌лqв;ьTт"к╧u╗@╬аеех3 ╛Зъ√│╩ кБ╩^Q@ АА╔\╙┴┤З┌лq╕╜йL▐ЗзtI)▀YWWўЗ\ gpын╖К+о╕т; >У+ч'<)fW╧J┘Я(8mЫАIэ#Yрp{Ў╖═╦w/B└в╤шC╣0ЮN╦u3_ЧылУН└№*БEs й╡p'q*░ngЖ└╚{) G;л░я─|$Rз-╕Ь+L"·H$∙╣▌ЖmАс' = >ФзЛ"а:,░l!НSЁХ (░O F^Щ G:к▒√╪в|U
L"║.Й▄gзQ[`╕Ё▀
р├∙╕" PX╢@ шж]рФ X╖Sd0B:#░ў─BjЯ)s▐XШ"вўD"СGэ2hз PKK╦] >Ъыл Е°,╓P░\pХ X╖Sд0Є╛?щ╟╦З╬EWrLRJyM]]▌&;М┘&